]> git.mxchange.org Git - friendica.git/commitdiff
Merge pull request #1596 from rabuzarus/event-preview
authorfabrixxm <fabrix.xm@gmail.com>
Sat, 23 May 2015 18:15:10 +0000 (20:15 +0200)
committerfabrixxm <fabrix.xm@gmail.com>
Sat, 23 May 2015 18:15:10 +0000 (20:15 +0200)
event preview for frost theme

22 files changed:
doc/BBCode.md
include/bbcode.php
include/diaspora.php
include/event.php
include/group.php
include/map.php [new file with mode: 0644]
include/network.php
include/plaintext.php
include/text.php
mod/settings.php
util/messages.po
util/run_xgettext.sh
view/de/messages.po
view/de/strings.php
view/it/messages.po
view/it/strings.php
view/nl/messages.po
view/nl/strings.php
view/pt-br/messages.po
view/pt-br/strings.php
view/templates/event_head.tpl
view/templates/group_side.tpl

index c84308e5b7c95f93a8103406e481f7e9754311b9..7068f1691133b476c7c64603a0e6cf4d3aa401b7 100644 (file)
@@ -7,25 +7,25 @@ Inline
 -----\r
 \r
 \r
-<pre>[b]bold[/b]</pre> : <strong>bold</strong>
+<pre>[b]bold[/b]</pre> : <strong>bold</strong>\r
 \r
-<pre>[i]italic[/i]</pre> : <em>italic</em>
+<pre>[i]italic[/i]</pre> : <em>italic</em>\r
 \r
-<pre>[u]underlined[/u]</pre> : <u>underlined</u>
+<pre>[u]underlined[/u]</pre> : <u>underlined</u>\r
 \r
-<pre>[s]strike[/s]</pre> : <strike>strike</strike>
+<pre>[s]strike[/s]</pre> : <strike>strike</strike>\r
 \r
-<pre>[color=red]red[/color]</pre> : <span style="color:  red;">red</span>
+<pre>[color=red]red[/color]</pre> : <span style="color:  red;">red</span>\r
 \r
-<pre>[url=http://www.friendica.com]Friendica[/url]</pre> : <a href="http://www.friendica.com" target="external-link">Friendica</a>
+<pre>[url=http://www.friendica.com]Friendica[/url]</pre> : <a href="http://www.friendica.com" target="external-link">Friendica</a>\r
 \r
-<pre>[img]http://friendica.com/sites/default/files/friendika-32.png[/img]</pre> : <img src="http://friendica.com/sites/default/files/friendika-32.png" alt="Immagine/foto">
+<pre>[img]http://friendica.com/sites/default/files/friendika-32.png[/img]</pre> : <img src="http://friendica.com/sites/default/files/friendika-32.png" alt="Immagine/foto">\r
 \r
-<pre>[size=xx-small]small text[/size]</pre> : <span style="font-size: xx-small;">small text</span>
+<pre>[size=xx-small]small text[/size]</pre> : <span style="font-size: xx-small;">small text</span>\r
 \r
-<pre>[size=xx-large]big text[/size]</pre> : <span style="font-size: xx-large;">big text</span>
+<pre>[size=xx-large]big text[/size]</pre> : <span style="font-size: xx-large;">big text</span>\r
 \r
-<pre>[size=20]exact size[/size] (size can be any number, in pixel)</pre> :  <span style="font-size: 20px;">exact size</span>
+<pre>[size=20]exact size[/size] (size can be any number, in pixel)</pre> :  <span style="font-size: 20px;">exact size</span>\r
 \r
 \r
 \r
@@ -126,6 +126,14 @@ Where *url* can be an url to youtube, vimeo, soundcloud, or other sites wich sup
 If *url* supports oembed or opengraph specifications the embedded object will be shown (eg, documents from scribd).\r
 Page title with a link to *url* will be shown.\r
 \r
+Map\r
+---\r
+\r
+<pre>[map]address[/map]</pre>\r
+<pre>[map=lat,long]</pre>\r
+\r
+You can embed maps from coordinates or addresses. \r
+This require "openstreetmap" addon version 1.3 or newer.\r
 \r
 \r
 Special\r
index 1eac012c3e7c92d07a6812a03939de3683fd16dc..b47a514320d638e3a5a649fdd74ad4d49b2e3580 100644 (file)
@@ -1,6 +1,17 @@
 <?php
 require_once("include/oembed.php");
 require_once('include/event.php');
+require_once('include/map.php');
+
+
+function bb_map_coords($match) {
+       // the extra space in the following line is intentional
+       return str_replace($match[0],'<div class="map"  >' . generate_map(str_replace('/',' ',$match[1])) . '</div>', $match[0]);
+}
+function bb_map_location($match) {
+       // the extra space in the following line is intentional
+       return str_replace($match[0],'<div class="map"  >' . generate_named_map($match[1]) . '</div>', $match[0]);
+}
 
 function bb_attachment($Text, $plaintext = false, $tryoembed = true) {
        $Text = preg_replace_callback("/(.*?)\[attachment(.*?)\](.*?)\[\/attachment\]/ism",
@@ -932,7 +943,20 @@ function bbcode($Text,$preserve_nl = false, $tryoembed = true, $simplehtml = fal
        // Perform MAIL Search
        $Text = preg_replace("/\[mail\]([$MAILSearchString]*)\[\/mail\]/", '<a href="mailto:$1">$1</a>', $Text);
        $Text = preg_replace("/\[mail\=([$MAILSearchString]*)\](.*?)\[\/mail\]/", '<a href="mailto:$1">$2</a>', $Text);
+       
+       // leave open the posibility of [map=something]
+       // this is replaced in prepare_body() which has knowledge of the item location
 
+       if (strpos($Text,'[/map]') !== false) {
+               $Text = preg_replace_callback("/\[map\](.*?)\[\/map\]/ism", 'bb_map_location', $Text);
+       }
+       if (strpos($Text,'[map=') !== false) {
+               $Text = preg_replace_callback("/\[map=(.*?)\]/ism", 'bb_map_coords', $Text);
+       }
+       if (strpos($Text,'[map]') !== false) {
+               $Text = preg_replace("/\[map\]/", '<div class="map"></div>', $Text);
+       }       
+       
        // Check for headers
        $Text = preg_replace("(\[h1\](.*?)\[\/h1\])ism",'<h1>$1</h1>',$Text);
        $Text = preg_replace("(\[h2\](.*?)\[\/h2\])ism",'<h2>$1</h2>',$Text);
index c8674e985d6ba11a66ee882993ad7ae15f21e100..04588dffe6bee58661a06e19f57bf79210cbcaf7 100755 (executable)
@@ -724,16 +724,17 @@ function diaspora_request($importer,$xml) {
                else
                        $new_relation = CONTACT_IS_FOLLOWER;
 
-               $r = q("UPDATE `contact` SET 
-                       `photo` = '%s', 
+               $r = q("UPDATE `contact` SET
+                       `photo` = '%s',
                        `thumb` = '%s',
-                       `micro` = '%s', 
-                       `rel` = %d, 
-                       `name-date` = '%s', 
-                       `uri-date` = '%s', 
-                       `avatar-date` = '%s', 
-                       `blocked` = 0, 
-                       `pending` = 0
+                       `micro` = '%s',
+                       `rel` = %d,
+                       `name-date` = '%s',
+                       `uri-date` = '%s',
+                       `avatar-date` = '%s',
+                       `blocked` = 0,
+                       `pending` = 0,
+                       `writable` = 1
                        WHERE `id` = %d
                        ",
                        dbesc($photos[0]),
index f9f3b1320465c3b817a397329a12101b05395c13..fedbe24468ab67a4085422375974013e279bd77e 100644 (file)
@@ -1,9 +1,11 @@
 <?php
 
+require_once('include/bbcode.php');
+require_once('include/map.php');
 
 function format_event_html($ev) {
 
-       require_once('include/bbcode.php');
+
 
        if(! ((is_array($ev)) && count($ev)))
                return '';
@@ -36,10 +38,17 @@ function format_event_html($ev) {
                                $ev['finish'] , $bd_format )))
                        . '</abbr></p>'  . "\r\n";
 
-       if(strlen($ev['location']))
+       if(strlen($ev['location'])){
                $o .= '<p class="event-location"> ' . t('Location:') . ' <span class="location">' 
                        . bbcode($ev['location']) 
                        . '</span></p>' . "\r\n";
+               
+               if (strpos($ev['location'], "[map")===False) {
+                       $map = generate_named_map($ev['location']);
+                       if ($map!==$ev['location']) $o.=$map;
+               }
+               
+       }
 
        $o .= '</div>' . "\r\n";
        return $o;
index 380c4eecc9c0c7b5fb99ffb1c229fb4254139f01..bbfac7ac1d6819e77d2b592e4b96102e673a2fbd 100644 (file)
@@ -270,6 +270,8 @@ function group_side($every="contacts",$each="group",$edit = false, $group_id = 0
                '$title'                => t('Groups'),
                '$edittext'     => t('Edit group'),
                '$createtext'   => t('Create a new group'),
+    '$creategroup' => t('Group Name: '),
+    '$form_security_token' => get_form_security_token("group_edit"),
                '$ungrouped'    => (($every === 'contacts') ? t('Contacts not in any group') : ''),
                '$groups'               => $groups,
                '$add'                  => t('add'),
diff --git a/include/map.php b/include/map.php
new file mode 100644 (file)
index 0000000..e2398b2
--- /dev/null
@@ -0,0 +1,18 @@
+<?php
+
+/**
+ * Leaflet Map related functions
+ */
+ function generate_map($coord) {
+       $coord = trim($coord);
+       $coord = str_replace(array(',','/','  '),array(' ',' ',' '),$coord);
+       $arr = array('lat' => trim(substr($coord,0,strpos($coord,' '))), 'lon' => trim(substr($coord,strpos($coord,' ')+1)), 'html' => '');
+       call_hooks('generate_map',$arr);
+       return (($arr['html']) ? $arr['html'] : $coord);
+}
+function generate_named_map($location) {
+       $arr = array('location' => $location, 'html' => '');
+       call_hooks('generate_named_map',$arr);
+       return (($arr['html']) ? $arr['html'] : $location);
+}
index a07507da1fa09a51a277400d52b70d58fa1bffec..02b2d7c2aed1c25325754b154a8677d6dcf6e8d7 100644 (file)
@@ -9,6 +9,47 @@
 if(! function_exists('fetch_url')) {
 function fetch_url($url,$binary = false, &$redirects = 0, $timeout = 0, $accept_content=Null, $cookiejar = 0) {
 
+       $ret = z_fetch_url(
+               $url,
+               $binary,
+               $redirects,
+               array('timeout'=>$timeout,
+               'accept_content'=>$accept_content,
+               'cookiejar'=>$cookiejar
+               ));
+
+       return($ret['body']);
+}}
+
+if(!function_exists('z_fetch_url')){
+/**
+ * @brief fetches an URL.
+ *
+ * @param string $url
+ *    URL to fetch
+ * @param boolean $binary default false
+ *    TRUE if asked to return binary results (file download)
+ * @param int $redirects default 0
+ *    internal use, recursion counter
+ * @param array $opts (optional parameters) assoziative array with:
+ *  * \b accept_content => supply Accept: header with 'accept_content' as the value
+ *  * \b timeout => int seconds, default system config value or 60 seconds
+ *  * \b http_auth => username:password
+ *  * \b novalidate => do not validate SSL certs, default is to validate using our CA list
+ *  * \b nobody => only return the header
+ *     * \b cookiejar => path to cookie jar file
+ *
+ * @return array an assoziative array with:
+ *  * \e int \b return_code => HTTP return code or 0 if timeout or failure
+ *  * \e boolean \b success => boolean true (if HTTP 2xx result) or false
+ *  * \e string \b header => HTTP headers
+ *  * \e string \b body => fetched content
+ */
+function z_fetch_url($url,$binary = false, &$redirects = 0, $opts=array()) {
+
+       $ret = array('return_code' => 0, 'success' => false, 'header' => "", 'body' => "");
+
+
        $stamp1 = microtime(true);
 
        $a = get_app();
@@ -19,18 +60,18 @@ function fetch_url($url,$binary = false, &$redirects = 0, $timeout = 0, $accept_
 
        @curl_setopt($ch, CURLOPT_HEADER, true);
 
-       if($cookiejar) {
-               curl_setopt($ch, CURLOPT_COOKIEJAR, $cookiejar);
-               curl_setopt($ch, CURLOPT_COOKIEFILE, $cookiejar);
+       if(x($opts,"cookiejar")) {
+               curl_setopt($ch, CURLOPT_COOKIEJAR, $opts["cookiejar"]);
+               curl_setopt($ch, CURLOPT_COOKIEFILE, $opts["cookiejar"]);
        }
 
 //  These settings aren't needed. We're following the location already.
 //     @curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);
 //     @curl_setopt($ch, CURLOPT_MAXREDIRS, 5);
 
-       if (!is_null($accept_content)){
+       if (x($opts,'accept_content')){
                curl_setopt($ch,CURLOPT_HTTPHEADER, array (
-                       "Accept: " . $accept_content
+                       "Accept: " . $opts['accept_content']
                ));
        }
 
@@ -38,6 +79,13 @@ function fetch_url($url,$binary = false, &$redirects = 0, $timeout = 0, $accept_
        @curl_setopt($ch, CURLOPT_USERAGENT, $a->get_useragent());
 
 
+
+       if(x($opts,'headers')){
+               @curl_setopt($ch, CURLOPT_HTTPHEADER, $opts['headers']);
+       }
+       if(x($opts,'nobody')){
+               @curl_setopt($ch, CURLOPT_NOBODY, $opts['nobody']);
+       }
        if(intval($timeout)) {
                @curl_setopt($ch, CURLOPT_TIMEOUT, $timeout);
        }
@@ -72,7 +120,7 @@ function fetch_url($url,$binary = false, &$redirects = 0, $timeout = 0, $accept_
 
        $base = $s;
        $curl_info = @curl_getinfo($ch);
-       @curl_close($ch);
+
        $http_code = $curl_info['http_code'];
        logger('fetch_url '.$url.': '.$http_code." ".$s, LOGGER_DATA);
        $header = '';
@@ -103,19 +151,40 @@ function fetch_url($url,$binary = false, &$redirects = 0, $timeout = 0, $accept_
                        $newurl = $old_location_info["scheme"]."://".$old_location_info["host"].$newurl;
                if (filter_var($newurl, FILTER_VALIDATE_URL)) {
                        $redirects++;
-                       return fetch_url($newurl,$binary,$redirects,$timeout,$accept_content,$cookiejar);
+                       @curl_close($ch);
+                       return z_fetch_url($newurl,$binary, $redirects, $opts);
                }
        }
 
+
        $a->set_curl_code($http_code);
        $a->set_curl_content_type($curl_info['content_type']);
 
        $body = substr($s,strlen($header));
        $a->set_curl_headers($header);
 
+
+
+       $rc = intval($http_code);
+       $ret['return_code'] = $rc;
+       $ret['success'] = (($rc >= 200 && $rc <= 299) ? true : false);
+       if(! $ret['success']) {
+               $ret['error'] = curl_error($ch);
+               $ret['debug'] = $curl_info;
+               logger('z_fetch_url: error: ' . $url . ': ' . $ret['error'], LOGGER_DEBUG);
+               logger('z_fetch_url: debug: ' . print_r($curl_info,true), LOGGER_DATA);
+       }
+       $ret['body'] = substr($s,strlen($header));
+       $ret['header'] = $header;
+       if(x($opts,'debug')) {
+               $ret['debug'] = $curl_info;
+       }
+       @curl_close($ch);
+
        $a->save_timestamp($stamp1, "network");
 
-       return($body);
+       return($ret);
+
 }}
 
 // post request to $url. $params is an array of post variables.
index 88febbfff858449fdec687cd35e6ac945e904eb0..c8cdfa57dfecc8c22184138bf2a488ed85fc43d9 100644 (file)
@@ -182,6 +182,8 @@ function plaintext($a, $b, $limit = 0, $includedlinks = false, $htmlmode = 2) {
                                $post["url"] = $b["plink"];
                        } elseif (strpos($b["body"], "[share") !== false)
                                $post["url"] = $b["plink"];
+                       elseif (get_pconfig($b["uid"], "system", "no_intelligent_shortening"))
+                               $post["url"] = $b["plink"];
 
                        $msg = shortenmsg($msg, $limit);
                }
index fd5ae0a2b67e646ca652465ce1449de51ba41625..dcc73087233af3b51f893cee8632016d1b9e370b 100644 (file)
@@ -2,8 +2,10 @@
 
 require_once("include/template_processor.php");
 require_once("include/friendica_smarty.php");
+require_once("include/map.php");
 require_once("mod/proxy.php");
 
+
 if(! function_exists('replace_macros')) {
 /**
  * This is our template processor
@@ -1461,6 +1463,14 @@ function prepare_body(&$item,$attach = false, $preview = false) {
        }
        $s = $s . $as;
 
+       // map
+       if(strpos($s,'<div class="map">') !== false && $item['coord']) {
+               $x = generate_map(trim($item['coord']));
+               if($x) {
+                       $s = preg_replace('/\<div class\=\"map\"\>/','$0' . $x,$s);
+               }
+       }               
+
 
        // Look for spoiler
        $spoilersearch = '<blockquote class="spoiler">';
index 7db196b0308c6dd112f135520ccef519e37c3c26..a003401dffeccd39c3ebfa387a415120713d19f6 100644 (file)
@@ -177,7 +177,9 @@ function settings_post(&$a) {
 
                check_form_security_token_redirectOnErr('/settings/connectors', 'settings_connectors');
 
-               if(x($_POST, 'imap-submit')) {
+               if(x($_POST, 'general-submit')) {
+                       set_pconfig(local_user(), 'system', 'no_intelligent_shortening', $_POST['no_intelligent_shortening']);
+               } elseif(x($_POST, 'imap-submit')) {
 
                        $mail_server       = ((x($_POST,'mail_server')) ? $_POST['mail_server'] : '');
                        $mail_port         = ((x($_POST,'mail_port')) ? $_POST['mail_port'] : '');
@@ -733,7 +735,25 @@ function settings_content(&$a) {
 
        if(($a->argc > 1) && ($a->argv[1] === 'connectors')) {
 
-               $settings_connectors = "";
+               $settings_connectors = '<span id="settings_general_inflated" class="settings-block fakelink" style="display: block;" onclick="openClose(\'settings_general_expanded\'); openClose(\'settings_general_inflated\');">';
+               $settings_connectors .= '<h3 class="connector">'. t('General Social Media Settings').'</h3>';
+               $settings_connectors .= '</span>';
+               $settings_connectors .= '<div id="settings_general_expanded" class="settings-block" style="display: none;">';
+               $settings_connectors .= '<span class="fakelink" onclick="openClose(\'settings_general_expanded\'); openClose(\'settings_general_inflated\');">';
+               $settings_connectors .= '<h3 class="connector">'. t('General Social Media Settings').'</h3>';
+               $settings_connectors .= '</span>';
+
+               $checked = ((get_pconfig(local_user(), 'system', 'no_intelligent_shortening')) ? ' checked="checked" ' : '');
+
+               $settings_connectors .= '<div id="no_intelligent_shortening" class="field checkbox">';
+               $settings_connectors .= '<label id="no_intelligent_shortening-label" for="shortening-checkbox">'. t('Disable intelligent shortening'). '</label>';
+               $settings_connectors .= '<input id="shortening-checkbox" type="checkbox" name="no_intelligent_shortening" value="1" ' . $checked . '/>';
+               $settings_connectors .= '<span class="field_help">'.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.').'</span>';
+               $settings_connectors .= '</div>';
+
+               $settings_connectors .= '<div class="settings-submit-wrapper" ><input type="submit" name="general-submit" class="settings-submit" value="' . t('Save Settings') . '" /></div>';
+
+               $settings_connectors .= '</div><div class="clear"></div>';
 
                call_hooks('connector_settings', $settings_connectors);
 
index 390b2c3a3648903a0dbf52d3cd20a78b4b4f7add..8303b778bedc7bc73e4478974e060632538687f7 100644 (file)
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: 3.4.0\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-04-04 17:54+0200\n"
+"POT-Creation-Date: 2015-05-21 10:43+0200\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
 "Language-Team: LANGUAGE <LL@li.org>\n"
@@ -24,15 +24,15 @@ msgstr ""
 #: ../../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
+#: ../../object/Item.php:681 ../../mod/contacts.php:562
 #: ../../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/invite.php:140 ../../mod/events.php:491 ../../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/install.php:286 ../../mod/crepair.php:190
 #: ../../mod/content.php:710 ../../mod/poke.php:199 ../../mod/localtime.php:45
 msgid "Submit"
 msgstr ""
@@ -68,7 +68,7 @@ msgstr ""
 msgid "Set style"
 msgstr ""
 
-#: ../../view/theme/duepuntozero/config.php:44 ../../include/text.php:1719
+#: ../../view/theme/duepuntozero/config.php:44 ../../include/text.php:1729
 #: ../../include/user.php:247
 msgid "default"
 msgstr ""
@@ -203,9 +203,9 @@ msgstr ""
 msgid "Your posts and conversations"
 msgstr ""
 
-#: ../../view/theme/diabook/theme.php:124 ../../boot.php:2133
+#: ../../view/theme/diabook/theme.php:124 ../../boot.php:2132
 #: ../../include/profile_advanced.php:7 ../../include/profile_advanced.php:87
-#: ../../include/nav.php:77 ../../mod/profperm.php:103
+#: ../../include/nav.php:77 ../../mod/profperm.php:104
 #: ../../mod/newmember.php:32
 msgid "Profile"
 msgstr ""
@@ -214,8 +214,8 @@ msgstr ""
 msgid "Your profile page"
 msgstr ""
 
-#: ../../view/theme/diabook/theme.php:125 ../../include/nav.php:177
-#: ../../mod/contacts.php:718
+#: ../../view/theme/diabook/theme.php:125 ../../include/nav.php:178
+#: ../../mod/contacts.php:788
 msgid "Contacts"
 msgstr ""
 
@@ -223,7 +223,7 @@ msgstr ""
 msgid "Your contacts"
 msgstr ""
 
-#: ../../view/theme/diabook/theme.php:126 ../../boot.php:2140
+#: ../../view/theme/diabook/theme.php:126 ../../boot.php:2139
 #: ../../include/nav.php:78 ../../mod/fbrowser.php:25
 msgid "Photos"
 msgstr ""
@@ -232,8 +232,8 @@ msgstr ""
 msgid "Your photos"
 msgstr ""
 
-#: ../../view/theme/diabook/theme.php:127 ../../boot.php:2157
-#: ../../include/nav.php:80 ../../mod/events.php:370
+#: ../../view/theme/diabook/theme.php:127 ../../boot.php:2156
+#: ../../include/nav.php:80 ../../mod/events.php:382
 msgid "Events"
 msgstr ""
 
@@ -255,12 +255,12 @@ msgid "Community"
 msgstr ""
 
 #: ../../view/theme/diabook/theme.php:463 ../../include/conversation.php:118
-#: ../../include/conversation.php:245 ../../include/text.php:1983
+#: ../../include/conversation.php:245 ../../include/text.php:1993
 msgid "event"
 msgstr ""
 
 #: ../../view/theme/diabook/theme.php:466
-#: ../../view/theme/diabook/theme.php:475 ../../include/diaspora.php:2011
+#: ../../view/theme/diabook/theme.php:475 ../../include/diaspora.php:2060
 #: ../../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
@@ -268,14 +268,14 @@ msgstr ""
 msgid "status"
 msgstr ""
 
-#: ../../view/theme/diabook/theme.php:471 ../../include/diaspora.php:2011
+#: ../../view/theme/diabook/theme.php:471 ../../include/diaspora.php:2060
 #: ../../include/conversation.php:126 ../../include/conversation.php:253
-#: ../../include/text.php:1985 ../../mod/like.php:149
+#: ../../include/text.php:1995 ../../mod/like.php:149
 #: ../../mod/subthread.php:87 ../../mod/tagger.php:62
 msgid "photo"
 msgstr ""
 
-#: ../../view/theme/diabook/theme.php:480 ../../include/diaspora.php:2027
+#: ../../view/theme/diabook/theme.php:480 ../../include/diaspora.php:2076
 #: ../../include/conversation.php:137 ../../mod/like.php:166
 #, php-format
 msgid "%1$s likes %2$s's %3$s"
@@ -320,8 +320,8 @@ msgid "Invite Friends"
 msgstr ""
 
 #: ../../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
+#: ../../view/theme/diabook/theme.php:648 ../../include/nav.php:173
+#: ../../mod/settings.php:90 ../../mod/admin.php:1107 ../../mod/admin.php:1328
 #: ../../mod/newmember.php:22
 msgid "Settings"
 msgstr ""
@@ -358,40 +358,42 @@ msgstr ""
 msgid "Set colour scheme"
 msgstr ""
 
-#: ../../index.php:211 ../../mod/apps.php:7
+#: ../../index.php:225 ../../mod/apps.php:7
 msgid "You must be logged in to use addons. "
 msgstr ""
 
-#: ../../index.php:255 ../../mod/help.php:42
+#: ../../index.php:269 ../../mod/p.php:16 ../../mod/p.php:25
+#: ../../mod/help.php:42
 msgid "Not Found"
 msgstr ""
 
-#: ../../index.php:258 ../../mod/help.php:45
+#: ../../index.php:272 ../../mod/help.php:45
 msgid "Page not found."
 msgstr ""
 
-#: ../../index.php:367 ../../mod/group.php:72 ../../mod/profperm.php:19
+#: ../../index.php:381 ../../mod/group.php:72 ../../mod/profperm.php:19
 msgid "Permission denied"
 msgstr ""
 
-#: ../../index.php:368 ../../include/items.php:4815 ../../mod/attach.php:33
+#: ../../index.php:382 ../../include/items.php:4838 ../../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/settings.php:107 ../../mod/settings.php:608
+#: ../../mod/contacts.php:322 ../../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/photos.php:1050 ../../mod/follow.php:9 ../../mod/follow.php:39
+#: ../../mod/follow.php:78 ../../mod/uimport.php:23 ../../mod/invite.php:15
+#: ../../mod/invite.php:101 ../../mod/events.php:152 ../../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/display.php:501 ../../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
@@ -399,53 +401,22 @@ msgstr ""
 msgid "Permission denied."
 msgstr ""
 
-#: ../../index.php:427
+#: ../../index.php:441
 msgid "toggle mobile"
 msgstr ""
 
-#: ../../addon-wrk/openidserver/lib/render/trust.php:30
-#, php-format
-msgid "Do you wish to confirm your identity (<tt>%s</tt>) with <tt>%s</tt>"
-msgstr ""
-
-#: ../../addon-wrk/openidserver/lib/render/trust.php:43
-#: ../../mod/dfrn_request.php:676
-msgid "Confirm"
-msgstr ""
-
-#: ../../addon-wrk/openidserver/lib/render/trust.php:44
-msgid "Do not confirm"
-msgstr ""
-
-#: ../../addon-wrk/openidserver/lib/render/trust.php:48
-msgid "Trust This Site"
-msgstr ""
-
-#: ../../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 ""
 
-#: ../../boot.php:750 ../../object/Item.php:361 ../../object/Item.php:677
+#: ../../boot.php:750 ../../object/Item.php:364 ../../object/Item.php:680
 #: ../../mod/photos.php:1564 ../../mod/photos.php:1608
 #: ../../mod/photos.php:1696 ../../mod/content.php:709
 msgid "Comment"
 msgstr ""
 
 #: ../../boot.php:751 ../../include/contact_widgets.php:205
-#: ../../object/Item.php:390 ../../mod/content.php:606
+#: ../../object/Item.php:393 ../../mod/content.php:606
 msgid "show more"
 msgstr ""
 
@@ -528,7 +499,7 @@ msgid "Edit profile"
 msgstr ""
 
 #: ../../boot.php:1557 ../../include/contact_widgets.php:10
-#: ../../mod/suggest.php:90 ../../mod/match.php:58
+#: ../../mod/suggest.php:90 ../../mod/match.php:63
 msgid "Connect"
 msgstr ""
 
@@ -536,7 +507,7 @@ msgstr ""
 msgid "Message"
 msgstr ""
 
-#: ../../boot.php:1595 ../../include/nav.php:175
+#: ../../boot.php:1595 ../../include/nav.php:176
 msgid "Profiles"
 msgstr ""
 
@@ -564,8 +535,8 @@ msgstr ""
 msgid "Edit visibility"
 msgstr ""
 
-#: ../../boot.php:1637 ../../include/event.php:40
-#: ../../include/bb2diaspora.php:155 ../../mod/events.php:471
+#: ../../boot.php:1637 ../../include/event.php:42
+#: ../../include/bb2diaspora.php:155 ../../mod/events.php:483
 #: ../../mod/directory.php:136
 msgid "Location:"
 msgstr ""
@@ -590,71 +561,71 @@ msgstr ""
 msgid "About:"
 msgstr ""
 
-#: ../../boot.php:1711
+#: ../../boot.php:1710
 msgid "Network:"
 msgstr ""
 
-#: ../../boot.php:1743 ../../boot.php:1829
+#: ../../boot.php:1742 ../../boot.php:1828
 msgid "g A l F d"
 msgstr ""
 
-#: ../../boot.php:1744 ../../boot.php:1830
+#: ../../boot.php:1743 ../../boot.php:1829
 msgid "F d"
 msgstr ""
 
-#: ../../boot.php:1789 ../../boot.php:1877
+#: ../../boot.php:1788 ../../boot.php:1876
 msgid "[today]"
 msgstr ""
 
-#: ../../boot.php:1801
+#: ../../boot.php:1800
 msgid "Birthday Reminders"
 msgstr ""
 
-#: ../../boot.php:1802
+#: ../../boot.php:1801
 msgid "Birthdays this week:"
 msgstr ""
 
-#: ../../boot.php:1864
+#: ../../boot.php:1863
 msgid "[No description]"
 msgstr ""
 
-#: ../../boot.php:1888
+#: ../../boot.php:1887
 msgid "Event Reminders"
 msgstr ""
 
-#: ../../boot.php:1889
+#: ../../boot.php:1888
 msgid "Events this week:"
 msgstr ""
 
-#: ../../boot.php:2126 ../../include/nav.php:76
+#: ../../boot.php:2125 ../../include/nav.php:76
 msgid "Status"
 msgstr ""
 
-#: ../../boot.php:2129
+#: ../../boot.php:2128
 msgid "Status Messages and Posts"
 msgstr ""
 
-#: ../../boot.php:2136
+#: ../../boot.php:2135
 msgid "Profile Details"
 msgstr ""
 
-#: ../../boot.php:2143 ../../mod/photos.php:52
+#: ../../boot.php:2142 ../../mod/photos.php:52
 msgid "Photo Albums"
 msgstr ""
 
-#: ../../boot.php:2147 ../../boot.php:2150 ../../include/nav.php:79
+#: ../../boot.php:2146 ../../boot.php:2149 ../../include/nav.php:79
 msgid "Videos"
 msgstr ""
 
-#: ../../boot.php:2160
+#: ../../boot.php:2159
 msgid "Events and Calendar"
 msgstr ""
 
-#: ../../boot.php:2164 ../../mod/notes.php:44
+#: ../../boot.php:2163 ../../mod/notes.php:44
 msgid "Personal Notes"
 msgstr ""
 
-#: ../../boot.php:2167
+#: ../../boot.php:2166
 msgid "Only You Can See This"
 msgstr ""
 
@@ -832,57 +803,57 @@ msgstr ""
 msgid "Ability to mute notifications for a thread"
 msgstr ""
 
-#: ../../include/items.php:2307 ../../include/datetime.php:477
+#: ../../include/items.php:2330 ../../include/datetime.php:477
 #, php-format
 msgid "%s's birthday"
 msgstr ""
 
-#: ../../include/items.php:2308 ../../include/datetime.php:478
+#: ../../include/items.php:2331 ../../include/datetime.php:478
 #, php-format
 msgid "Happy Birthday %s"
 msgstr ""
 
-#: ../../include/items.php:4111 ../../mod/dfrn_request.php:717
-#: ../../mod/dfrn_confirm.php:752
+#: ../../include/items.php:4135 ../../mod/dfrn_request.php:732
+#: ../../mod/dfrn_confirm.php:753
 msgid "[Name Withheld]"
 msgstr ""
 
-#: ../../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
+#: ../../include/items.php:4642 ../../mod/admin.php:169
+#: ../../mod/admin.php:1055 ../../mod/admin.php:1268 ../../mod/viewsrc.php:15
+#: ../../mod/notice.php:15 ../../mod/display.php:82 ../../mod/display.php:286
+#: ../../mod/display.php:505
 msgid "Item not found."
 msgstr ""
 
-#: ../../include/items.php:4658
+#: ../../include/items.php:4681
 msgid "Do you really want to delete this item?"
 msgstr ""
 
-#: ../../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
+#: ../../include/items.php:4683 ../../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:1106
+#: ../../mod/settings.php:1107 ../../mod/settings.php:1108
+#: ../../mod/settings.php:1109 ../../mod/settings.php:1110
+#: ../../mod/contacts.php:411 ../../mod/register.php:233
+#: ../../mod/dfrn_request.php:845 ../../mod/api.php:105
+#: ../../mod/suggest.php:29 ../../mod/follow.php:54 ../../mod/message.php:209
 #: ../../mod/profiles.php:661 ../../mod/profiles.php:664
 msgid "Yes"
 msgstr ""
 
-#: ../../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
+#: ../../include/items.php:4686 ../../include/conversation.php:1128
+#: ../../mod/settings.php:622 ../../mod/settings.php:648
+#: ../../mod/contacts.php:414 ../../mod/editpost.php:148
+#: ../../mod/dfrn_request.php:859 ../../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
+#: ../../mod/photos.php:203 ../../mod/photos.php:292 ../../mod/follow.php:65
+#: ../../mod/tagrm.php:11 ../../mod/tagrm.php:94 ../../mod/message.php:212
 msgid "Cancel"
 msgstr ""
 
-#: ../../include/items.php:4881
+#: ../../include/items.php:4904
 msgid "Archives"
 msgstr ""
 
@@ -917,18 +888,22 @@ msgstr ""
 msgid "Create a new group"
 msgstr ""
 
-#: ../../include/group.php:273
+#: ../../include/group.php:273 ../../mod/group.php:94 ../../mod/group.php:180
+msgid "Group Name: "
+msgstr ""
+
+#: ../../include/group.php:275
 msgid "Contacts not in any group"
 msgstr ""
 
-#: ../../include/group.php:275 ../../mod/network.php:195
+#: ../../include/group.php:277 ../../mod/network.php:195
 msgid "add"
 msgstr ""
 
 #: ../../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/Photo.php:951 ../../include/Photo.php:966
+#: ../../include/Photo.php:973 ../../include/Photo.php:995
 #: ../../include/message.php:144 ../../mod/wall_upload.php:169
 #: ../../mod/wall_upload.php:178 ../../mod/wall_upload.php:185
 #: ../../mod/item.php:485
@@ -975,7 +950,7 @@ msgstr ""
 msgid "Examples: Robert Morgenstein, Fishing"
 msgstr ""
 
-#: ../../include/contact_widgets.php:34 ../../mod/contacts.php:724
+#: ../../include/contact_widgets.php:34 ../../mod/contacts.php:794
 #: ../../mod/directory.php:63
 msgid "Find"
 msgstr ""
@@ -1000,7 +975,7 @@ msgstr ""
 msgid "Categories"
 msgstr ""
 
-#: ../../include/contact_widgets.php:200 ../../mod/contacts.php:439
+#: ../../include/contact_widgets.php:200 ../../mod/contacts.php:509
 #, php-format
 msgid "%d contact in common"
 msgid_plural "%d contacts in common"
@@ -1030,233 +1005,233 @@ msgstr ""
 msgid "%s <!item_type!>"
 msgstr ""
 
-#: ../../include/enotify.php:68
+#: ../../include/enotify.php:78
 #, php-format
 msgid "[Friendica:Notify] New mail received at %s"
 msgstr ""
 
-#: ../../include/enotify.php:70
+#: ../../include/enotify.php:80
 #, php-format
 msgid "%1$s sent you a new private message at %2$s."
 msgstr ""
 
-#: ../../include/enotify.php:71
+#: ../../include/enotify.php:81
 #, php-format
 msgid "%1$s sent you %2$s."
 msgstr ""
 
-#: ../../include/enotify.php:71
+#: ../../include/enotify.php:81
 msgid "a private message"
 msgstr ""
 
-#: ../../include/enotify.php:72
+#: ../../include/enotify.php:82
 #, php-format
 msgid "Please visit %s to view and/or reply to your private messages."
 msgstr ""
 
-#: ../../include/enotify.php:124
+#: ../../include/enotify.php:134
 #, php-format
 msgid "%1$s commented on [url=%2$s]a %3$s[/url]"
 msgstr ""
 
-#: ../../include/enotify.php:131
+#: ../../include/enotify.php:141
 #, php-format
 msgid "%1$s commented on [url=%2$s]%3$s's %4$s[/url]"
 msgstr ""
 
-#: ../../include/enotify.php:139
+#: ../../include/enotify.php:149
 #, php-format
 msgid "%1$s commented on [url=%2$s]your %3$s[/url]"
 msgstr ""
 
-#: ../../include/enotify.php:149
+#: ../../include/enotify.php:159
 #, php-format
 msgid "[Friendica:Notify] Comment to conversation #%1$d by %2$s"
 msgstr ""
 
-#: ../../include/enotify.php:150
+#: ../../include/enotify.php:160
 #, php-format
 msgid "%s commented on an item/conversation you have been following."
 msgstr ""
 
-#: ../../include/enotify.php:153 ../../include/enotify.php:168
-#: ../../include/enotify.php:181 ../../include/enotify.php:194
-#: ../../include/enotify.php:212 ../../include/enotify.php:225
+#: ../../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 ""
 
-#: ../../include/enotify.php:160
+#: ../../include/enotify.php:170
 #, php-format
 msgid "[Friendica:Notify] %s posted to your profile wall"
 msgstr ""
 
-#: ../../include/enotify.php:162
+#: ../../include/enotify.php:172
 #, php-format
 msgid "%1$s posted to your profile wall at %2$s"
 msgstr ""
 
-#: ../../include/enotify.php:164
+#: ../../include/enotify.php:174
 #, php-format
 msgid "%1$s posted to [url=%2$s]your wall[/url]"
 msgstr ""
 
-#: ../../include/enotify.php:175
+#: ../../include/enotify.php:185
 #, php-format
 msgid "[Friendica:Notify] %s tagged you"
 msgstr ""
 
-#: ../../include/enotify.php:176
+#: ../../include/enotify.php:186
 #, php-format
 msgid "%1$s tagged you at %2$s"
 msgstr ""
 
-#: ../../include/enotify.php:177
+#: ../../include/enotify.php:187
 #, php-format
 msgid "%1$s [url=%2$s]tagged you[/url]."
 msgstr ""
 
-#: ../../include/enotify.php:188
+#: ../../include/enotify.php:198
 #, php-format
 msgid "[Friendica:Notify] %s shared a new post"
 msgstr ""
 
-#: ../../include/enotify.php:189
+#: ../../include/enotify.php:199
 #, php-format
 msgid "%1$s shared a new post at %2$s"
 msgstr ""
 
-#: ../../include/enotify.php:190
+#: ../../include/enotify.php:200
 #, php-format
 msgid "%1$s [url=%2$s]shared a post[/url]."
 msgstr ""
 
-#: ../../include/enotify.php:202
+#: ../../include/enotify.php:212
 #, php-format
 msgid "[Friendica:Notify] %1$s poked you"
 msgstr ""
 
-#: ../../include/enotify.php:203
+#: ../../include/enotify.php:213
 #, php-format
 msgid "%1$s poked you at %2$s"
 msgstr ""
 
-#: ../../include/enotify.php:204
+#: ../../include/enotify.php:214
 #, php-format
 msgid "%1$s [url=%2$s]poked you[/url]."
 msgstr ""
 
-#: ../../include/enotify.php:219
+#: ../../include/enotify.php:229
 #, php-format
 msgid "[Friendica:Notify] %s tagged your post"
 msgstr ""
 
-#: ../../include/enotify.php:220
+#: ../../include/enotify.php:230
 #, php-format
 msgid "%1$s tagged your post at %2$s"
 msgstr ""
 
-#: ../../include/enotify.php:221
+#: ../../include/enotify.php:231
 #, php-format
 msgid "%1$s tagged [url=%2$s]your post[/url]"
 msgstr ""
 
-#: ../../include/enotify.php:232
+#: ../../include/enotify.php:242
 msgid "[Friendica:Notify] Introduction received"
 msgstr ""
 
-#: ../../include/enotify.php:233
+#: ../../include/enotify.php:243
 #, php-format
 msgid "You've received an introduction from '%1$s' at %2$s"
 msgstr ""
 
-#: ../../include/enotify.php:234
+#: ../../include/enotify.php:244
 #, php-format
 msgid "You've received [url=%1$s]an introduction[/url] from %2$s."
 msgstr ""
 
-#: ../../include/enotify.php:237 ../../include/enotify.php:279
+#: ../../include/enotify.php:247 ../../include/enotify.php:289
 #, php-format
 msgid "You may visit their profile at %s"
 msgstr ""
 
-#: ../../include/enotify.php:239
+#: ../../include/enotify.php:249
 #, php-format
 msgid "Please visit %s to approve or reject the introduction."
 msgstr ""
 
-#: ../../include/enotify.php:247
+#: ../../include/enotify.php:257
 msgid "[Friendica:Notify] A new person is sharing with you"
 msgstr ""
 
-#: ../../include/enotify.php:248 ../../include/enotify.php:249
+#: ../../include/enotify.php:258 ../../include/enotify.php:259
 #, php-format
 msgid "%1$s is sharing with you at %2$s"
 msgstr ""
 
-#: ../../include/enotify.php:255
+#: ../../include/enotify.php:265
 msgid "[Friendica:Notify] You have a new follower"
 msgstr ""
 
-#: ../../include/enotify.php:256 ../../include/enotify.php:257
+#: ../../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:270
+#: ../../include/enotify.php:280
 msgid "[Friendica:Notify] Friend suggestion received"
 msgstr ""
 
-#: ../../include/enotify.php:271
+#: ../../include/enotify.php:281
 #, php-format
 msgid "You've received a friend suggestion from '%1$s' at %2$s"
 msgstr ""
 
-#: ../../include/enotify.php:272
+#: ../../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:277
+#: ../../include/enotify.php:287
 msgid "Name:"
 msgstr ""
 
-#: ../../include/enotify.php:278
+#: ../../include/enotify.php:288
 msgid "Photo:"
 msgstr ""
 
-#: ../../include/enotify.php:281
+#: ../../include/enotify.php:291
 #, php-format
 msgid "Please visit %s to approve or reject the suggestion."
 msgstr ""
 
-#: ../../include/enotify.php:289 ../../include/enotify.php:302
+#: ../../include/enotify.php:299 ../../include/enotify.php:312
 msgid "[Friendica:Notify] Connection accepted"
 msgstr ""
 
-#: ../../include/enotify.php:290 ../../include/enotify.php:303
+#: ../../include/enotify.php:300 ../../include/enotify.php:313
 #, php-format
 msgid "'%1$s' has acepted your connection request at %2$s"
 msgstr ""
 
-#: ../../include/enotify.php:291 ../../include/enotify.php:304
+#: ../../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:294
+#: ../../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:297 ../../include/enotify.php:311
+#: ../../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:307
+#: ../../include/enotify.php:317
 #, php-format
 msgid ""
 "'%1$s' has chosen to accept you a \"fan\", which restricts some forms of "
@@ -1265,83 +1240,83 @@ msgid ""
 "automatically."
 msgstr ""
 
-#: ../../include/enotify.php:309
+#: ../../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:322
+#: ../../include/enotify.php:332
 msgid "[Friendica System:Notify] registration request"
 msgstr ""
 
-#: ../../include/enotify.php:323
+#: ../../include/enotify.php:333
 #, php-format
 msgid "You've received a registration request from '%1$s' at %2$s"
 msgstr ""
 
-#: ../../include/enotify.php:324
+#: ../../include/enotify.php:334
 #, php-format
 msgid "You've received a [url=%1$s]registration request[/url] from %2$s."
 msgstr ""
 
-#: ../../include/enotify.php:327
+#: ../../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:330
+#: ../../include/enotify.php:340
 #, 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
+#: ../../include/api.php:310 ../../include/api.php:321
+#: ../../include/api.php:422 ../../include/api.php:1116
+#: ../../include/api.php:1118
 msgid "User not found."
 msgstr ""
 
-#: ../../include/api.php:770
+#: ../../include/api.php:776
 #, php-format
 msgid "Daily posting limit of %d posts reached. The post was rejected."
 msgstr ""
 
-#: ../../include/api.php:789
+#: ../../include/api.php:795
 #, php-format
 msgid "Weekly posting limit of %d posts reached. The post was rejected."
 msgstr ""
 
-#: ../../include/api.php:808
+#: ../../include/api.php:814
 #, php-format
 msgid "Monthly posting limit of %d posts reached. The post was rejected."
 msgstr ""
 
-#: ../../include/api.php:1271
+#: ../../include/api.php:1325
 msgid "There is no status with this id."
 msgstr ""
 
-#: ../../include/api.php:1341
+#: ../../include/api.php:1399
 msgid "There is no conversation with this id."
 msgstr ""
 
-#: ../../include/api.php:1613
+#: ../../include/api.php:1669
 msgid "Invalid request."
 msgstr ""
 
-#: ../../include/api.php:1624
+#: ../../include/api.php:1680
 msgid "Invalid item."
 msgstr ""
 
-#: ../../include/api.php:1634
+#: ../../include/api.php:1690
 msgid "Invalid action. "
 msgstr ""
 
-#: ../../include/api.php:1642
+#: ../../include/api.php:1698
 msgid "DB error"
 msgstr ""
 
-#: ../../include/network.php:890
+#: ../../include/network.php:959
 msgid "view full size"
 msgstr ""
 
@@ -1349,7 +1324,7 @@ msgstr ""
 msgid " on Last.fm"
 msgstr ""
 
-#: ../../include/profile_advanced.php:15 ../../mod/settings.php:1133
+#: ../../include/profile_advanced.php:15 ../../mod/settings.php:1153
 msgid "Full Name:"
 msgstr ""
 
@@ -1486,8 +1461,8 @@ msgstr ""
 msgid "Addon applications, utilities, games"
 msgstr ""
 
-#: ../../include/nav.php:119 ../../include/text.php:968
-#: ../../include/text.php:969 ../../mod/search.php:99
+#: ../../include/nav.php:119 ../../include/text.php:970
+#: ../../include/text.php:971 ../../mod/search.php:99
 msgid "Search"
 msgstr ""
 
@@ -1535,87 +1510,87 @@ msgstr ""
 msgid "Load Network page with no filters"
 msgstr ""
 
-#: ../../include/nav.php:154 ../../mod/notifications.php:98
+#: ../../include/nav.php:153 ../../mod/notifications.php:98
 msgid "Introductions"
 msgstr ""
 
-#: ../../include/nav.php:154
+#: ../../include/nav.php:153
 msgid "Friend Requests"
 msgstr ""
 
-#: ../../include/nav.php:155 ../../mod/notifications.php:224
+#: ../../include/nav.php:156 ../../mod/notifications.php:224
 msgid "Notifications"
 msgstr ""
 
-#: ../../include/nav.php:156
+#: ../../include/nav.php:157
 msgid "See all notifications"
 msgstr ""
 
-#: ../../include/nav.php:157
+#: ../../include/nav.php:158
 msgid "Mark all system notifications seen"
 msgstr ""
 
-#: ../../include/nav.php:161 ../../mod/message.php:182
+#: ../../include/nav.php:162 ../../mod/message.php:182
 msgid "Messages"
 msgstr ""
 
-#: ../../include/nav.php:161
+#: ../../include/nav.php:162
 msgid "Private mail"
 msgstr ""
 
-#: ../../include/nav.php:162
+#: ../../include/nav.php:163
 msgid "Inbox"
 msgstr ""
 
-#: ../../include/nav.php:163
+#: ../../include/nav.php:164
 msgid "Outbox"
 msgstr ""
 
-#: ../../include/nav.php:164 ../../mod/message.php:9
+#: ../../include/nav.php:165 ../../mod/message.php:9
 msgid "New Message"
 msgstr ""
 
-#: ../../include/nav.php:167
+#: ../../include/nav.php:168
 msgid "Manage"
 msgstr ""
 
-#: ../../include/nav.php:167
+#: ../../include/nav.php:168
 msgid "Manage other pages"
 msgstr ""
 
-#: ../../include/nav.php:170 ../../mod/settings.php:67
+#: ../../include/nav.php:171 ../../mod/settings.php:67
 msgid "Delegations"
 msgstr ""
 
-#: ../../include/nav.php:170 ../../mod/delegate.php:130
+#: ../../include/nav.php:171 ../../mod/delegate.php:130
 msgid "Delegate Page Management"
 msgstr ""
 
-#: ../../include/nav.php:172
+#: ../../include/nav.php:173
 msgid "Account settings"
 msgstr ""
 
-#: ../../include/nav.php:175
+#: ../../include/nav.php:176
 msgid "Manage/Edit Profiles"
 msgstr ""
 
-#: ../../include/nav.php:177
+#: ../../include/nav.php:178
 msgid "Manage/edit friends and contacts"
 msgstr ""
 
-#: ../../include/nav.php:184 ../../mod/admin.php:130
+#: ../../include/nav.php:185 ../../mod/admin.php:130
 msgid "Admin"
 msgstr ""
 
-#: ../../include/nav.php:184
+#: ../../include/nav.php:185
 msgid "Site setup and configuration"
 msgstr ""
 
-#: ../../include/nav.php:188
+#: ../../include/nav.php:189
 msgid "Navigation"
 msgstr ""
 
-#: ../../include/nav.php:188
+#: ../../include/nav.php:189
 msgid "Site map"
 msgstr ""
 
@@ -1726,16 +1701,16 @@ msgstr[1] ""
 msgid "Done. You can now login with your username and password"
 msgstr ""
 
-#: ../../include/event.php:11 ../../include/bb2diaspora.php:133
+#: ../../include/event.php:13 ../../include/bb2diaspora.php:133
 #: ../../mod/localtime.php:12
 msgid "l F d, Y \\@ g:i A"
 msgstr ""
 
-#: ../../include/event.php:20 ../../include/bb2diaspora.php:139
+#: ../../include/event.php:22 ../../include/bb2diaspora.php:139
 msgid "Starts:"
 msgstr ""
 
-#: ../../include/event.php:30 ../../include/bb2diaspora.php:147
+#: ../../include/event.php:32 ../../include/bb2diaspora.php:147
 msgid "Finishes:"
 msgstr ""
 
@@ -1796,11 +1771,11 @@ msgid ""
 "[pre]%s[/pre]"
 msgstr ""
 
-#: ../../include/dbstructure.php:150
+#: ../../include/dbstructure.php:152
 msgid "Errors encountered creating database tables."
 msgstr ""
 
-#: ../../include/dbstructure.php:208
+#: ../../include/dbstructure.php:210
 msgid "Errors encountered performing database changes."
 msgstr ""
 
@@ -1909,19 +1884,19 @@ msgstr ""
 msgid "Reputable, has my trust"
 msgstr ""
 
-#: ../../include/contact_selectors.php:56 ../../mod/admin.php:571
+#: ../../include/contact_selectors.php:56 ../../mod/admin.php:573
 msgid "Frequently"
 msgstr ""
 
-#: ../../include/contact_selectors.php:57 ../../mod/admin.php:572
+#: ../../include/contact_selectors.php:57 ../../mod/admin.php:574
 msgid "Hourly"
 msgstr ""
 
-#: ../../include/contact_selectors.php:58 ../../mod/admin.php:573
+#: ../../include/contact_selectors.php:58 ../../mod/admin.php:575
 msgid "Twice daily"
 msgstr ""
 
-#: ../../include/contact_selectors.php:59 ../../mod/admin.php:574
+#: ../../include/contact_selectors.php:59 ../../mod/admin.php:576
 msgid "Daily"
 msgstr ""
 
@@ -1933,7 +1908,7 @@ msgstr ""
 msgid "Monthly"
 msgstr ""
 
-#: ../../include/contact_selectors.php:76 ../../mod/dfrn_request.php:836
+#: ../../include/contact_selectors.php:76 ../../mod/dfrn_request.php:851
 msgid "Friendica"
 msgstr ""
 
@@ -1946,13 +1921,13 @@ msgid "RSS/Atom"
 msgstr ""
 
 #: ../../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
+#: ../../include/contact_selectors.php:86 ../../mod/admin.php:1006
+#: ../../mod/admin.php:1018 ../../mod/admin.php:1019 ../../mod/admin.php:1034
 msgid "Email"
 msgstr ""
 
-#: ../../include/contact_selectors.php:80 ../../mod/settings.php:741
-#: ../../mod/dfrn_request.php:838
+#: ../../include/contact_selectors.php:80 ../../mod/settings.php:761
+#: ../../mod/dfrn_request.php:853
 msgid "Diaspora"
 msgstr ""
 
@@ -2001,17 +1976,17 @@ msgstr ""
 msgid "App.net"
 msgstr ""
 
-#: ../../include/diaspora.php:621 ../../include/conversation.php:172
-#: ../../mod/dfrn_confirm.php:486
+#: ../../include/diaspora.php:622 ../../include/conversation.php:172
+#: ../../mod/dfrn_confirm.php:487
 #, php-format
 msgid "%1$s is now friends with %2$s"
 msgstr ""
 
-#: ../../include/diaspora.php:704
+#: ../../include/diaspora.php:705
 msgid "Sharing notification from Diaspora network"
 msgstr ""
 
-#: ../../include/diaspora.php:2444
+#: ../../include/diaspora.php:2493
 msgid "Attachments:"
 msgstr ""
 
@@ -2044,36 +2019,36 @@ msgstr ""
 msgid "%1$s marked %2$s's %3$s as favorite"
 msgstr ""
 
-#: ../../include/conversation.php:612 ../../object/Item.php:129
+#: ../../include/conversation.php:612 ../../object/Item.php:130
 #: ../../mod/photos.php:1653 ../../mod/content.php:437
 #: ../../mod/content.php:740
 msgid "Select"
 msgstr ""
 
-#: ../../include/conversation.php:613 ../../object/Item.php:130
-#: ../../mod/group.php:171 ../../mod/settings.php:682
-#: ../../mod/contacts.php:733 ../../mod/admin.php:1007
+#: ../../include/conversation.php:613 ../../object/Item.php:131
+#: ../../mod/group.php:171 ../../mod/settings.php:684
+#: ../../mod/contacts.php:803 ../../mod/admin.php:1010
 #: ../../mod/photos.php:1654 ../../mod/content.php:438
 #: ../../mod/content.php:741
 msgid "Delete"
 msgstr ""
 
-#: ../../include/conversation.php:653 ../../object/Item.php:326
-#: ../../object/Item.php:327 ../../mod/content.php:471
+#: ../../include/conversation.php:653 ../../object/Item.php:329
+#: ../../object/Item.php:330 ../../mod/content.php:471
 #: ../../mod/content.php:852 ../../mod/content.php:853
 #, php-format
 msgid "View %s's profile @ %s"
 msgstr ""
 
-#: ../../include/conversation.php:665 ../../object/Item.php:316
+#: ../../include/conversation.php:665 ../../object/Item.php:319
 msgid "Categories:"
 msgstr ""
 
-#: ../../include/conversation.php:666 ../../object/Item.php:317
+#: ../../include/conversation.php:666 ../../object/Item.php:320
 msgid "Filed under:"
 msgstr ""
 
-#: ../../include/conversation.php:673 ../../object/Item.php:340
+#: ../../include/conversation.php:673 ../../object/Item.php:343
 #: ../../mod/content.php:481 ../../mod/content.php:864
 #, php-format
 msgid "%s from %s"
@@ -2084,7 +2059,7 @@ msgid "View in context"
 msgstr ""
 
 #: ../../include/conversation.php:691 ../../include/conversation.php:1108
-#: ../../object/Item.php:364 ../../mod/wallmessage.php:156
+#: ../../object/Item.php:367 ../../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
@@ -2187,7 +2162,7 @@ msgstr ""
 msgid "Connectors disabled, since \"%s\" is enabled."
 msgstr ""
 
-#: ../../include/conversation.php:1056 ../../mod/settings.php:1033
+#: ../../include/conversation.php:1056 ../../mod/settings.php:1053
 msgid "Hide your profile details from unknown viewers?"
 msgstr ""
 
@@ -2283,10 +2258,10 @@ msgstr ""
 msgid "Example: bob@example.com, mary@example.com"
 msgstr ""
 
-#: ../../include/conversation.php:1125 ../../object/Item.php:687
+#: ../../include/conversation.php:1125 ../../object/Item.php:690
 #: ../../mod/editpost.php:145 ../../mod/photos.php:1566
 #: ../../mod/photos.php:1610 ../../mod/photos.php:1698
-#: ../../mod/content.php:719
+#: ../../mod/events.php:489 ../../mod/content.php:719
 msgid "Preview"
 msgstr ""
 
@@ -2302,299 +2277,299 @@ msgstr ""
 msgid "Private post"
 msgstr ""
 
-#: ../../include/text.php:297
+#: ../../include/text.php:299
 msgid "newer"
 msgstr ""
 
-#: ../../include/text.php:299
+#: ../../include/text.php:301
 msgid "older"
 msgstr ""
 
-#: ../../include/text.php:304
+#: ../../include/text.php:306
 msgid "prev"
 msgstr ""
 
-#: ../../include/text.php:306
+#: ../../include/text.php:308
 msgid "first"
 msgstr ""
 
-#: ../../include/text.php:338
+#: ../../include/text.php:340
 msgid "last"
 msgstr ""
 
-#: ../../include/text.php:341
+#: ../../include/text.php:343
 msgid "next"
 msgstr ""
 
-#: ../../include/text.php:396
+#: ../../include/text.php:398
 msgid "Loading more entries..."
 msgstr ""
 
-#: ../../include/text.php:397
+#: ../../include/text.php:399
 msgid "The end"
 msgstr ""
 
-#: ../../include/text.php:870
+#: ../../include/text.php:872
 msgid "No contacts"
 msgstr ""
 
-#: ../../include/text.php:879
+#: ../../include/text.php:881
 #, php-format
 msgid "%d Contact"
 msgid_plural "%d Contacts"
 msgstr[0] ""
 msgstr[1] ""
 
-#: ../../include/text.php:891 ../../mod/viewcontacts.php:78
+#: ../../include/text.php:893 ../../mod/viewcontacts.php:78
 msgid "View Contacts"
 msgstr ""
 
-#: ../../include/text.php:971 ../../mod/editpost.php:109
+#: ../../include/text.php:973 ../../mod/editpost.php:109
 #: ../../mod/notes.php:63 ../../mod/filer.php:31
 msgid "Save"
 msgstr ""
 
-#: ../../include/text.php:1020
+#: ../../include/text.php:1022
 msgid "poke"
 msgstr ""
 
-#: ../../include/text.php:1020
+#: ../../include/text.php:1022
 msgid "poked"
 msgstr ""
 
-#: ../../include/text.php:1021
+#: ../../include/text.php:1023
 msgid "ping"
 msgstr ""
 
-#: ../../include/text.php:1021
+#: ../../include/text.php:1023
 msgid "pinged"
 msgstr ""
 
-#: ../../include/text.php:1022
+#: ../../include/text.php:1024
 msgid "prod"
 msgstr ""
 
-#: ../../include/text.php:1022
+#: ../../include/text.php:1024
 msgid "prodded"
 msgstr ""
 
-#: ../../include/text.php:1023
+#: ../../include/text.php:1025
 msgid "slap"
 msgstr ""
 
-#: ../../include/text.php:1023
+#: ../../include/text.php:1025
 msgid "slapped"
 msgstr ""
 
-#: ../../include/text.php:1024
+#: ../../include/text.php:1026
 msgid "finger"
 msgstr ""
 
-#: ../../include/text.php:1024
+#: ../../include/text.php:1026
 msgid "fingered"
 msgstr ""
 
-#: ../../include/text.php:1025
+#: ../../include/text.php:1027
 msgid "rebuff"
 msgstr ""
 
-#: ../../include/text.php:1025
+#: ../../include/text.php:1027
 msgid "rebuffed"
 msgstr ""
 
-#: ../../include/text.php:1039
+#: ../../include/text.php:1041
 msgid "happy"
 msgstr ""
 
-#: ../../include/text.php:1040
+#: ../../include/text.php:1042
 msgid "sad"
 msgstr ""
 
-#: ../../include/text.php:1041
+#: ../../include/text.php:1043
 msgid "mellow"
 msgstr ""
 
-#: ../../include/text.php:1042
+#: ../../include/text.php:1044
 msgid "tired"
 msgstr ""
 
-#: ../../include/text.php:1043
+#: ../../include/text.php:1045
 msgid "perky"
 msgstr ""
 
-#: ../../include/text.php:1044
+#: ../../include/text.php:1046
 msgid "angry"
 msgstr ""
 
-#: ../../include/text.php:1045
+#: ../../include/text.php:1047
 msgid "stupified"
 msgstr ""
 
-#: ../../include/text.php:1046
+#: ../../include/text.php:1048
 msgid "puzzled"
 msgstr ""
 
-#: ../../include/text.php:1047
+#: ../../include/text.php:1049
 msgid "interested"
 msgstr ""
 
-#: ../../include/text.php:1048
+#: ../../include/text.php:1050
 msgid "bitter"
 msgstr ""
 
-#: ../../include/text.php:1049
+#: ../../include/text.php:1051
 msgid "cheerful"
 msgstr ""
 
-#: ../../include/text.php:1050
+#: ../../include/text.php:1052
 msgid "alive"
 msgstr ""
 
-#: ../../include/text.php:1051
+#: ../../include/text.php:1053
 msgid "annoyed"
 msgstr ""
 
-#: ../../include/text.php:1052
+#: ../../include/text.php:1054
 msgid "anxious"
 msgstr ""
 
-#: ../../include/text.php:1053
+#: ../../include/text.php:1055
 msgid "cranky"
 msgstr ""
 
-#: ../../include/text.php:1054
+#: ../../include/text.php:1056
 msgid "disturbed"
 msgstr ""
 
-#: ../../include/text.php:1055
+#: ../../include/text.php:1057
 msgid "frustrated"
 msgstr ""
 
-#: ../../include/text.php:1056
+#: ../../include/text.php:1058
 msgid "motivated"
 msgstr ""
 
-#: ../../include/text.php:1057
+#: ../../include/text.php:1059
 msgid "relaxed"
 msgstr ""
 
-#: ../../include/text.php:1058
+#: ../../include/text.php:1060
 msgid "surprised"
 msgstr ""
 
-#: ../../include/text.php:1228
+#: ../../include/text.php:1230
 msgid "Monday"
 msgstr ""
 
-#: ../../include/text.php:1228
+#: ../../include/text.php:1230
 msgid "Tuesday"
 msgstr ""
 
-#: ../../include/text.php:1228
+#: ../../include/text.php:1230
 msgid "Wednesday"
 msgstr ""
 
-#: ../../include/text.php:1228
+#: ../../include/text.php:1230
 msgid "Thursday"
 msgstr ""
 
-#: ../../include/text.php:1228
+#: ../../include/text.php:1230
 msgid "Friday"
 msgstr ""
 
-#: ../../include/text.php:1228
+#: ../../include/text.php:1230
 msgid "Saturday"
 msgstr ""
 
-#: ../../include/text.php:1228
+#: ../../include/text.php:1230
 msgid "Sunday"
 msgstr ""
 
-#: ../../include/text.php:1232
+#: ../../include/text.php:1234
 msgid "January"
 msgstr ""
 
-#: ../../include/text.php:1232
+#: ../../include/text.php:1234
 msgid "February"
 msgstr ""
 
-#: ../../include/text.php:1232
+#: ../../include/text.php:1234
 msgid "March"
 msgstr ""
 
-#: ../../include/text.php:1232
+#: ../../include/text.php:1234
 msgid "April"
 msgstr ""
 
-#: ../../include/text.php:1232
+#: ../../include/text.php:1234
 msgid "May"
 msgstr ""
 
-#: ../../include/text.php:1232
+#: ../../include/text.php:1234
 msgid "June"
 msgstr ""
 
-#: ../../include/text.php:1232
+#: ../../include/text.php:1234
 msgid "July"
 msgstr ""
 
-#: ../../include/text.php:1232
+#: ../../include/text.php:1234
 msgid "August"
 msgstr ""
 
-#: ../../include/text.php:1232
+#: ../../include/text.php:1234
 msgid "September"
 msgstr ""
 
-#: ../../include/text.php:1232
+#: ../../include/text.php:1234
 msgid "October"
 msgstr ""
 
-#: ../../include/text.php:1232
+#: ../../include/text.php:1234
 msgid "November"
 msgstr ""
 
-#: ../../include/text.php:1232
+#: ../../include/text.php:1234
 msgid "December"
 msgstr ""
 
-#: ../../include/text.php:1422 ../../mod/videos.php:301
+#: ../../include/text.php:1424 ../../mod/videos.php:301
 msgid "View Video"
 msgstr ""
 
-#: ../../include/text.php:1454
+#: ../../include/text.php:1456
 msgid "bytes"
 msgstr ""
 
-#: ../../include/text.php:1478 ../../include/text.php:1490
+#: ../../include/text.php:1488 ../../include/text.php:1500
 msgid "Click to open/close"
 msgstr ""
 
-#: ../../include/text.php:1664 ../../include/text.php:1674
-#: ../../mod/events.php:335
+#: ../../include/text.php:1674 ../../include/text.php:1684
+#: ../../mod/events.php:347
 msgid "link to source"
 msgstr ""
 
-#: ../../include/text.php:1731
+#: ../../include/text.php:1741
 msgid "Select an alternate language"
 msgstr ""
 
-#: ../../include/text.php:1987
+#: ../../include/text.php:1997
 msgid "activity"
 msgstr ""
 
-#: ../../include/text.php:1989 ../../object/Item.php:389
-#: ../../object/Item.php:402 ../../mod/content.php:605
+#: ../../include/text.php:1999 ../../object/Item.php:392
+#: ../../object/Item.php:405 ../../mod/content.php:605
 msgid "comment"
 msgid_plural "comments"
 msgstr[0] ""
 msgstr[1] ""
 
-#: ../../include/text.php:1990
+#: ../../include/text.php:2000
 msgid "post"
 msgstr ""
 
-#: ../../include/text.php:2158
+#: ../../include/text.php:2168
 msgid "Item filed"
 msgstr ""
 
@@ -2617,28 +2592,28 @@ msgstr ""
 msgid "The error message was:"
 msgstr ""
 
-#: ../../include/bbcode.php:433 ../../include/bbcode.php:1066
-#: ../../include/bbcode.php:1067
+#: ../../include/bbcode.php:448 ../../include/bbcode.php:1094
+#: ../../include/bbcode.php:1095
 msgid "Image/photo"
 msgstr ""
 
-#: ../../include/bbcode.php:531
+#: ../../include/bbcode.php:546
 #, php-format
 msgid "<a href=\"%1$s\" target=\"_blank\">%2$s</a> %3$s"
 msgstr ""
 
-#: ../../include/bbcode.php:565
+#: ../../include/bbcode.php:580
 #, php-format
 msgid ""
 "<span><a href=\"%s\" target=\"_blank\">%s</a> wrote the following <a href="
 "\"%s\" target=\"_blank\">post</a>"
 msgstr ""
 
-#: ../../include/bbcode.php:1030 ../../include/bbcode.php:1050
+#: ../../include/bbcode.php:1058 ../../include/bbcode.php:1078
 msgid "$1 wrote:"
 msgstr ""
 
-#: ../../include/bbcode.php:1075 ../../include/bbcode.php:1076
+#: ../../include/bbcode.php:1103 ../../include/bbcode.php:1104
 msgid "Encrypted content"
 msgstr ""
 
@@ -2654,17 +2629,17 @@ msgstr ""
 msgid "Welcome back "
 msgstr ""
 
-#: ../../include/security.php:366
+#: ../../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/oembed.php:213
+#: ../../include/oembed.php:218
 msgid "Embedded content"
 msgstr ""
 
-#: ../../include/oembed.php:222
+#: ../../include/oembed.php:227
 msgid "Embedding disabled"
 msgstr ""
 
@@ -3013,7 +2988,7 @@ msgid ""
 "\t\tThank you and welcome to %2$s."
 msgstr ""
 
-#: ../../include/user.php:413 ../../mod/admin.php:838
+#: ../../include/user.php:413 ../../mod/admin.php:841
 #, php-format
 msgid "Registration details for %s"
 msgstr ""
@@ -3022,144 +2997,144 @@ msgstr ""
 msgid "Visible to everybody"
 msgstr ""
 
-#: ../../object/Item.php:94
+#: ../../object/Item.php:95
 msgid "This entry was edited"
 msgstr ""
 
-#: ../../object/Item.php:116 ../../mod/photos.php:1359
+#: ../../object/Item.php:117 ../../mod/photos.php:1359
 #: ../../mod/content.php:620
 msgid "Private Message"
 msgstr ""
 
-#: ../../object/Item.php:120 ../../mod/settings.php:681
+#: ../../object/Item.php:121 ../../mod/settings.php:683
 #: ../../mod/content.php:728
 msgid "Edit"
 msgstr ""
 
-#: ../../object/Item.php:133 ../../mod/content.php:763
+#: ../../object/Item.php:134 ../../mod/content.php:763
 msgid "save to folder"
 msgstr ""
 
-#: ../../object/Item.php:195 ../../mod/content.php:753
+#: ../../object/Item.php:196 ../../mod/content.php:753
 msgid "add star"
 msgstr ""
 
-#: ../../object/Item.php:196 ../../mod/content.php:754
+#: ../../object/Item.php:197 ../../mod/content.php:754
 msgid "remove star"
 msgstr ""
 
-#: ../../object/Item.php:197 ../../mod/content.php:755
+#: ../../object/Item.php:198 ../../mod/content.php:755
 msgid "toggle star status"
 msgstr ""
 
-#: ../../object/Item.php:200 ../../mod/content.php:758
+#: ../../object/Item.php:201 ../../mod/content.php:758
 msgid "starred"
 msgstr ""
 
-#: ../../object/Item.php:208
+#: ../../object/Item.php:209
 msgid "ignore thread"
 msgstr ""
 
-#: ../../object/Item.php:209
+#: ../../object/Item.php:210
 msgid "unignore thread"
 msgstr ""
 
-#: ../../object/Item.php:210
+#: ../../object/Item.php:211
 msgid "toggle ignore status"
 msgstr ""
 
-#: ../../object/Item.php:213
+#: ../../object/Item.php:214
 msgid "ignored"
 msgstr ""
 
-#: ../../object/Item.php:220 ../../mod/content.php:759
+#: ../../object/Item.php:221 ../../mod/content.php:759
 msgid "add tag"
 msgstr ""
 
-#: ../../object/Item.php:231 ../../mod/photos.php:1542
+#: ../../object/Item.php:232 ../../mod/photos.php:1542
 #: ../../mod/content.php:684
 msgid "I like this (toggle)"
 msgstr ""
 
-#: ../../object/Item.php:231 ../../mod/content.php:684
+#: ../../object/Item.php:232 ../../mod/content.php:684
 msgid "like"
 msgstr ""
 
-#: ../../object/Item.php:232 ../../mod/photos.php:1543
+#: ../../object/Item.php:233 ../../mod/photos.php:1543
 #: ../../mod/content.php:685
 msgid "I don't like this (toggle)"
 msgstr ""
 
-#: ../../object/Item.php:232 ../../mod/content.php:685
+#: ../../object/Item.php:233 ../../mod/content.php:685
 msgid "dislike"
 msgstr ""
 
-#: ../../object/Item.php:234 ../../mod/content.php:687
+#: ../../object/Item.php:235 ../../mod/content.php:687
 msgid "Share this"
 msgstr ""
 
-#: ../../object/Item.php:234 ../../mod/content.php:687
+#: ../../object/Item.php:235 ../../mod/content.php:687
 msgid "share"
 msgstr ""
 
-#: ../../object/Item.php:328 ../../mod/content.php:854
+#: ../../object/Item.php:331 ../../mod/content.php:854
 msgid "to"
 msgstr ""
 
-#: ../../object/Item.php:329
+#: ../../object/Item.php:332
 msgid "via"
 msgstr ""
 
-#: ../../object/Item.php:330 ../../mod/content.php:855
+#: ../../object/Item.php:333 ../../mod/content.php:855
 msgid "Wall-to-Wall"
 msgstr ""
 
-#: ../../object/Item.php:331 ../../mod/content.php:856
+#: ../../object/Item.php:334 ../../mod/content.php:856
 msgid "via Wall-To-Wall:"
 msgstr ""
 
-#: ../../object/Item.php:387 ../../mod/content.php:603
+#: ../../object/Item.php:390 ../../mod/content.php:603
 #, php-format
 msgid "%d comment"
 msgid_plural "%d comments"
 msgstr[0] ""
 msgstr[1] ""
 
-#: ../../object/Item.php:675 ../../mod/photos.php:1562
+#: ../../object/Item.php:678 ../../mod/photos.php:1562
 #: ../../mod/photos.php:1606 ../../mod/photos.php:1694
 #: ../../mod/content.php:707
 msgid "This is you"
 msgstr ""
 
-#: ../../object/Item.php:679 ../../mod/content.php:711
+#: ../../object/Item.php:682 ../../mod/content.php:711
 msgid "Bold"
 msgstr ""
 
-#: ../../object/Item.php:680 ../../mod/content.php:712
+#: ../../object/Item.php:683 ../../mod/content.php:712
 msgid "Italic"
 msgstr ""
 
-#: ../../object/Item.php:681 ../../mod/content.php:713
+#: ../../object/Item.php:684 ../../mod/content.php:713
 msgid "Underline"
 msgstr ""
 
-#: ../../object/Item.php:682 ../../mod/content.php:714
+#: ../../object/Item.php:685 ../../mod/content.php:714
 msgid "Quote"
 msgstr ""
 
-#: ../../object/Item.php:683 ../../mod/content.php:715
+#: ../../object/Item.php:686 ../../mod/content.php:715
 msgid "Code"
 msgstr ""
 
-#: ../../object/Item.php:684 ../../mod/content.php:716
+#: ../../object/Item.php:687 ../../mod/content.php:716
 msgid "Image"
 msgstr ""
 
-#: ../../object/Item.php:685 ../../mod/content.php:717
+#: ../../object/Item.php:688 ../../mod/content.php:717
 msgid "Link"
 msgstr ""
 
-#: ../../object/Item.php:686 ../../mod/content.php:718
+#: ../../object/Item.php:689 ../../mod/content.php:718
 msgid "Video"
 msgstr ""
 
@@ -3250,10 +3225,6 @@ msgstr ""
 msgid "Create a group of contacts/friends."
 msgstr ""
 
-#: ../../mod/group.php:94 ../../mod/group.php:180
-msgid "Group Name: "
-msgstr ""
-
 #: ../../mod/group.php:113
 msgid "Group removed."
 msgstr ""
@@ -3270,11 +3241,11 @@ msgstr ""
 msgid "Members"
 msgstr ""
 
-#: ../../mod/group.php:194 ../../mod/contacts.php:586
+#: ../../mod/group.php:194 ../../mod/contacts.php:656
 msgid "All Contacts"
 msgstr ""
 
-#: ../../mod/group.php:224 ../../mod/profperm.php:105
+#: ../../mod/group.php:224 ../../mod/profperm.php:106
 msgid "Click on a contact to add or remove."
 msgstr ""
 
@@ -3323,8 +3294,8 @@ msgid "Discard"
 msgstr ""
 
 #: ../../mod/notifications.php:51 ../../mod/notifications.php:164
-#: ../../mod/notifications.php:214 ../../mod/contacts.php:455
-#: ../../mod/contacts.php:519 ../../mod/contacts.php:731
+#: ../../mod/notifications.php:214 ../../mod/contacts.php:525
+#: ../../mod/contacts.php:589 ../../mod/contacts.php:801
 msgid "Ignore"
 msgstr ""
 
@@ -3358,7 +3329,7 @@ msgid "suggested by %s"
 msgstr ""
 
 #: ../../mod/notifications.php:157 ../../mod/notifications.php:208
-#: ../../mod/contacts.php:525
+#: ../../mod/contacts.php:595
 msgid "Hide this contact from others"
 msgstr ""
 
@@ -3371,7 +3342,7 @@ msgid "if applicable"
 msgstr ""
 
 #: ../../mod/notifications.php:161 ../../mod/notifications.php:212
-#: ../../mod/admin.php:1005
+#: ../../mod/admin.php:1008
 msgid "Approve"
 msgstr ""
 
@@ -3494,7 +3465,7 @@ msgstr ""
 msgid "everybody"
 msgstr ""
 
-#: ../../mod/settings.php:41 ../../mod/admin.php:1016
+#: ../../mod/settings.php:41 ../../mod/admin.php:1019
 msgid "Account"
 msgstr ""
 
@@ -3506,12 +3477,12 @@ msgstr ""
 msgid "Display"
 msgstr ""
 
-#: ../../mod/settings.php:57 ../../mod/settings.php:785
+#: ../../mod/settings.php:57 ../../mod/settings.php:805
 msgid "Social Networks"
 msgstr ""
 
-#: ../../mod/settings.php:62 ../../mod/admin.php:106 ../../mod/admin.php:1102
-#: ../../mod/admin.php:1155
+#: ../../mod/settings.php:62 ../../mod/admin.php:106 ../../mod/admin.php:1105
+#: ../../mod/admin.php:1158
 msgid "Plugins"
 msgstr ""
 
@@ -3531,619 +3502,649 @@ msgstr ""
 msgid "Missing some important data!"
 msgstr ""
 
-#: ../../mod/settings.php:137 ../../mod/settings.php:645
-#: ../../mod/contacts.php:729
+#: ../../mod/settings.php:137 ../../mod/settings.php:647
+#: ../../mod/contacts.php:799
 msgid "Update"
 msgstr ""
 
-#: ../../mod/settings.php:243
+#: ../../mod/settings.php:245
 msgid "Failed to connect with email account using the settings provided."
 msgstr ""
 
-#: ../../mod/settings.php:248
+#: ../../mod/settings.php:250
 msgid "Email settings updated."
 msgstr ""
 
-#: ../../mod/settings.php:263
+#: ../../mod/settings.php:265
 msgid "Features updated"
 msgstr ""
 
-#: ../../mod/settings.php:326
+#: ../../mod/settings.php:328
 msgid "Relocate message has been send to your contacts"
 msgstr ""
 
-#: ../../mod/settings.php:340
+#: ../../mod/settings.php:342
 msgid "Passwords do not match. Password unchanged."
 msgstr ""
 
-#: ../../mod/settings.php:345
+#: ../../mod/settings.php:347
 msgid "Empty passwords are not allowed. Password unchanged."
 msgstr ""
 
-#: ../../mod/settings.php:353
+#: ../../mod/settings.php:355
 msgid "Wrong password."
 msgstr ""
 
-#: ../../mod/settings.php:364
+#: ../../mod/settings.php:366
 msgid "Password changed."
 msgstr ""
 
-#: ../../mod/settings.php:366
+#: ../../mod/settings.php:368
 msgid "Password update failed. Please try again."
 msgstr ""
 
-#: ../../mod/settings.php:433
+#: ../../mod/settings.php:435
 msgid " Please use a shorter name."
 msgstr ""
 
-#: ../../mod/settings.php:435
+#: ../../mod/settings.php:437
 msgid " Name too short."
 msgstr ""
 
-#: ../../mod/settings.php:444
+#: ../../mod/settings.php:446
 msgid "Wrong Password"
 msgstr ""
 
-#: ../../mod/settings.php:449
+#: ../../mod/settings.php:451
 msgid " Not valid email."
 msgstr ""
 
-#: ../../mod/settings.php:455
+#: ../../mod/settings.php:457
 msgid " Cannot change to that email."
 msgstr ""
 
-#: ../../mod/settings.php:511
+#: ../../mod/settings.php:513
 msgid "Private forum has no privacy permissions. Using default privacy group."
 msgstr ""
 
-#: ../../mod/settings.php:515
+#: ../../mod/settings.php:517
 msgid "Private forum has no privacy permissions and no default privacy group."
 msgstr ""
 
-#: ../../mod/settings.php:545
+#: ../../mod/settings.php:547
 msgid "Settings updated."
 msgstr ""
 
-#: ../../mod/settings.php:618 ../../mod/settings.php:644
-#: ../../mod/settings.php:680
+#: ../../mod/settings.php:620 ../../mod/settings.php:646
+#: ../../mod/settings.php:682
 msgid "Add application"
 msgstr ""
 
-#: ../../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
+#: ../../mod/settings.php:621 ../../mod/settings.php:731
+#: ../../mod/settings.php:754 ../../mod/settings.php:823
+#: ../../mod/settings.php:905 ../../mod/settings.php:1138
+#: ../../mod/admin.php:622 ../../mod/admin.php:1159 ../../mod/admin.php:1361
+#: ../../mod/admin.php:1448
 msgid "Save Settings"
 msgstr ""
 
-#: ../../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
+#: ../../mod/settings.php:623 ../../mod/settings.php:649
+#: ../../mod/admin.php:1006 ../../mod/admin.php:1018 ../../mod/admin.php:1019
+#: ../../mod/admin.php:1032 ../../mod/crepair.php:169
 msgid "Name"
 msgstr ""
 
-#: ../../mod/settings.php:622 ../../mod/settings.php:648
+#: ../../mod/settings.php:624 ../../mod/settings.php:650
 msgid "Consumer Key"
 msgstr ""
 
-#: ../../mod/settings.php:623 ../../mod/settings.php:649
+#: ../../mod/settings.php:625 ../../mod/settings.php:651
 msgid "Consumer Secret"
 msgstr ""
 
-#: ../../mod/settings.php:624 ../../mod/settings.php:650
+#: ../../mod/settings.php:626 ../../mod/settings.php:652
 msgid "Redirect"
 msgstr ""
 
-#: ../../mod/settings.php:625 ../../mod/settings.php:651
+#: ../../mod/settings.php:627 ../../mod/settings.php:653
 msgid "Icon url"
 msgstr ""
 
-#: ../../mod/settings.php:636
+#: ../../mod/settings.php:638
 msgid "You can't edit this application."
 msgstr ""
 
-#: ../../mod/settings.php:679
+#: ../../mod/settings.php:681
 msgid "Connected Apps"
 msgstr ""
 
-#: ../../mod/settings.php:683
+#: ../../mod/settings.php:685
 msgid "Client key starts with"
 msgstr ""
 
-#: ../../mod/settings.php:684
+#: ../../mod/settings.php:686
 msgid "No name"
 msgstr ""
 
-#: ../../mod/settings.php:685
+#: ../../mod/settings.php:687
 msgid "Remove authorization"
 msgstr ""
 
-#: ../../mod/settings.php:697
+#: ../../mod/settings.php:699
 msgid "No Plugin settings configured"
 msgstr ""
 
-#: ../../mod/settings.php:705
+#: ../../mod/settings.php:707
 msgid "Plugin Settings"
 msgstr ""
 
-#: ../../mod/settings.php:719
+#: ../../mod/settings.php:721
 msgid "Off"
 msgstr ""
 
-#: ../../mod/settings.php:719
+#: ../../mod/settings.php:721
 msgid "On"
 msgstr ""
 
-#: ../../mod/settings.php:727
+#: ../../mod/settings.php:729
 msgid "Additional Features"
 msgstr ""
 
-#: ../../mod/settings.php:741 ../../mod/settings.php:742
+#: ../../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 ""
 
-#: ../../mod/settings.php:741 ../../mod/settings.php:742
+#: ../../mod/settings.php:761 ../../mod/settings.php:762
 msgid "enabled"
 msgstr ""
 
-#: ../../mod/settings.php:741 ../../mod/settings.php:742
+#: ../../mod/settings.php:761 ../../mod/settings.php:762
 msgid "disabled"
 msgstr ""
 
-#: ../../mod/settings.php:742
+#: ../../mod/settings.php:762
 msgid "StatusNet"
 msgstr ""
 
-#: ../../mod/settings.php:778
+#: ../../mod/settings.php:798
 msgid "Email access is disabled on this site."
 msgstr ""
 
-#: ../../mod/settings.php:790
+#: ../../mod/settings.php:810
 msgid "Email/Mailbox Setup"
 msgstr ""
 
-#: ../../mod/settings.php:791
+#: ../../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:792
+#: ../../mod/settings.php:812
 msgid "Last successful email check:"
 msgstr ""
 
-#: ../../mod/settings.php:794
+#: ../../mod/settings.php:814
 msgid "IMAP server name:"
 msgstr ""
 
-#: ../../mod/settings.php:795
+#: ../../mod/settings.php:815
 msgid "IMAP port:"
 msgstr ""
 
-#: ../../mod/settings.php:796
+#: ../../mod/settings.php:816
 msgid "Security:"
 msgstr ""
 
-#: ../../mod/settings.php:796 ../../mod/settings.php:801
+#: ../../mod/settings.php:816 ../../mod/settings.php:821
 msgid "None"
 msgstr ""
 
-#: ../../mod/settings.php:797
+#: ../../mod/settings.php:817
 msgid "Email login name:"
 msgstr ""
 
-#: ../../mod/settings.php:798
+#: ../../mod/settings.php:818
 msgid "Email password:"
 msgstr ""
 
-#: ../../mod/settings.php:799
+#: ../../mod/settings.php:819
 msgid "Reply-to address:"
 msgstr ""
 
-#: ../../mod/settings.php:800
+#: ../../mod/settings.php:820
 msgid "Send public posts to all email contacts:"
 msgstr ""
 
-#: ../../mod/settings.php:801
+#: ../../mod/settings.php:821
 msgid "Action after import:"
 msgstr ""
 
-#: ../../mod/settings.php:801
+#: ../../mod/settings.php:821
 msgid "Mark as seen"
 msgstr ""
 
-#: ../../mod/settings.php:801
+#: ../../mod/settings.php:821
 msgid "Move to folder"
 msgstr ""
 
-#: ../../mod/settings.php:802
+#: ../../mod/settings.php:822
 msgid "Move to folder:"
 msgstr ""
 
-#: ../../mod/settings.php:833 ../../mod/admin.php:545
+#: ../../mod/settings.php:853 ../../mod/admin.php:547
 msgid "No special theme for mobile devices"
 msgstr ""
 
-#: ../../mod/settings.php:883
+#: ../../mod/settings.php:903
 msgid "Display Settings"
 msgstr ""
 
-#: ../../mod/settings.php:889 ../../mod/settings.php:904
+#: ../../mod/settings.php:909 ../../mod/settings.php:924
 msgid "Display Theme:"
 msgstr ""
 
-#: ../../mod/settings.php:890
+#: ../../mod/settings.php:910
 msgid "Mobile Theme:"
 msgstr ""
 
-#: ../../mod/settings.php:891
+#: ../../mod/settings.php:911
 msgid "Update browser every xx seconds"
 msgstr ""
 
-#: ../../mod/settings.php:891
+#: ../../mod/settings.php:911
 msgid "Minimum of 10 seconds, no maximum"
 msgstr ""
 
-#: ../../mod/settings.php:892
+#: ../../mod/settings.php:912
 msgid "Number of items to display per page:"
 msgstr ""
 
-#: ../../mod/settings.php:892 ../../mod/settings.php:893
+#: ../../mod/settings.php:912 ../../mod/settings.php:913
 msgid "Maximum of 100 items"
 msgstr ""
 
-#: ../../mod/settings.php:893
+#: ../../mod/settings.php:913
 msgid "Number of items to display per page when viewed from mobile device:"
 msgstr ""
 
-#: ../../mod/settings.php:894
+#: ../../mod/settings.php:914
 msgid "Don't show emoticons"
 msgstr ""
 
-#: ../../mod/settings.php:895
+#: ../../mod/settings.php:915
 msgid "Don't show notices"
 msgstr ""
 
-#: ../../mod/settings.php:896
+#: ../../mod/settings.php:916
 msgid "Infinite scroll"
 msgstr ""
 
-#: ../../mod/settings.php:897
+#: ../../mod/settings.php:917
 msgid "Automatic updates only at the top of the network page"
 msgstr ""
 
-#: ../../mod/settings.php:974
+#: ../../mod/settings.php:994
 msgid "User Types"
 msgstr ""
 
-#: ../../mod/settings.php:975
+#: ../../mod/settings.php:995
 msgid "Community Types"
 msgstr ""
 
-#: ../../mod/settings.php:976
+#: ../../mod/settings.php:996
 msgid "Normal Account Page"
 msgstr ""
 
-#: ../../mod/settings.php:977
+#: ../../mod/settings.php:997
 msgid "This account is a normal personal profile"
 msgstr ""
 
-#: ../../mod/settings.php:980
+#: ../../mod/settings.php:1000
 msgid "Soapbox Page"
 msgstr ""
 
-#: ../../mod/settings.php:981
+#: ../../mod/settings.php:1001
 msgid "Automatically approve all connection/friend requests as read-only fans"
 msgstr ""
 
-#: ../../mod/settings.php:984
+#: ../../mod/settings.php:1004
 msgid "Community Forum/Celebrity Account"
 msgstr ""
 
-#: ../../mod/settings.php:985
+#: ../../mod/settings.php:1005
 msgid "Automatically approve all connection/friend requests as read-write fans"
 msgstr ""
 
-#: ../../mod/settings.php:988
+#: ../../mod/settings.php:1008
 msgid "Automatic Friend Page"
 msgstr ""
 
-#: ../../mod/settings.php:989
+#: ../../mod/settings.php:1009
 msgid "Automatically approve all connection/friend requests as friends"
 msgstr ""
 
-#: ../../mod/settings.php:992
+#: ../../mod/settings.php:1012
 msgid "Private Forum [Experimental]"
 msgstr ""
 
-#: ../../mod/settings.php:993
+#: ../../mod/settings.php:1013
 msgid "Private forum - approved members only"
 msgstr ""
 
-#: ../../mod/settings.php:1005
+#: ../../mod/settings.php:1025
 msgid "OpenID:"
 msgstr ""
 
-#: ../../mod/settings.php:1005
+#: ../../mod/settings.php:1025
 msgid "(Optional) Allow this OpenID to login to this account."
 msgstr ""
 
-#: ../../mod/settings.php:1015
+#: ../../mod/settings.php:1035
 msgid "Publish your default profile in your local site directory?"
 msgstr ""
 
-#: ../../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
+#: ../../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:1106 ../../mod/settings.php:1107
+#: ../../mod/settings.php:1108 ../../mod/settings.php:1109
+#: ../../mod/settings.php:1110 ../../mod/register.php:234
+#: ../../mod/dfrn_request.php:845 ../../mod/api.php:106
+#: ../../mod/follow.php:54 ../../mod/profiles.php:661
+#: ../../mod/profiles.php:665
 msgid "No"
 msgstr ""
 
-#: ../../mod/settings.php:1021
+#: ../../mod/settings.php:1041
 msgid "Publish your default profile in the global social directory?"
 msgstr ""
 
-#: ../../mod/settings.php:1029
+#: ../../mod/settings.php:1049
 msgid "Hide your contact/friend list from viewers of your default profile?"
 msgstr ""
 
-#: ../../mod/settings.php:1033
+#: ../../mod/settings.php:1053
 msgid ""
 "If enabled, posting public messages to Diaspora and other networks isn't "
 "possible."
 msgstr ""
 
-#: ../../mod/settings.php:1038
+#: ../../mod/settings.php:1058
 msgid "Allow friends to post to your profile page?"
 msgstr ""
 
-#: ../../mod/settings.php:1044
+#: ../../mod/settings.php:1064
 msgid "Allow friends to tag your posts?"
 msgstr ""
 
-#: ../../mod/settings.php:1050
+#: ../../mod/settings.php:1070
 msgid "Allow us to suggest you as a potential friend to new members?"
 msgstr ""
 
-#: ../../mod/settings.php:1056
+#: ../../mod/settings.php:1076
 msgid "Permit unknown people to send you private mail?"
 msgstr ""
 
-#: ../../mod/settings.php:1064
+#: ../../mod/settings.php:1084
 msgid "Profile is <strong>not published</strong>."
 msgstr ""
 
-#: ../../mod/settings.php:1067 ../../mod/profile_photo.php:248
+#: ../../mod/settings.php:1087 ../../mod/profile_photo.php:248
 msgid "or"
 msgstr ""
 
-#: ../../mod/settings.php:1072
+#: ../../mod/settings.php:1092
 msgid "Your Identity Address is"
 msgstr ""
 
-#: ../../mod/settings.php:1083
+#: ../../mod/settings.php:1103
 msgid "Automatically expire posts after this many days:"
 msgstr ""
 
-#: ../../mod/settings.php:1083
+#: ../../mod/settings.php:1103
 msgid "If empty, posts will not expire. Expired posts will be deleted"
 msgstr ""
 
-#: ../../mod/settings.php:1084
+#: ../../mod/settings.php:1104
 msgid "Advanced expiration settings"
 msgstr ""
 
-#: ../../mod/settings.php:1085
+#: ../../mod/settings.php:1105
 msgid "Advanced Expiration"
 msgstr ""
 
-#: ../../mod/settings.php:1086
+#: ../../mod/settings.php:1106
 msgid "Expire posts:"
 msgstr ""
 
-#: ../../mod/settings.php:1087
+#: ../../mod/settings.php:1107
 msgid "Expire personal notes:"
 msgstr ""
 
-#: ../../mod/settings.php:1088
+#: ../../mod/settings.php:1108
 msgid "Expire starred posts:"
 msgstr ""
 
-#: ../../mod/settings.php:1089
+#: ../../mod/settings.php:1109
 msgid "Expire photos:"
 msgstr ""
 
-#: ../../mod/settings.php:1090
+#: ../../mod/settings.php:1110
 msgid "Only expire posts by others:"
 msgstr ""
 
-#: ../../mod/settings.php:1116
+#: ../../mod/settings.php:1136
 msgid "Account Settings"
 msgstr ""
 
-#: ../../mod/settings.php:1124
+#: ../../mod/settings.php:1144
 msgid "Password Settings"
 msgstr ""
 
-#: ../../mod/settings.php:1125
+#: ../../mod/settings.php:1145
 msgid "New Password:"
 msgstr ""
 
-#: ../../mod/settings.php:1126
+#: ../../mod/settings.php:1146
 msgid "Confirm:"
 msgstr ""
 
-#: ../../mod/settings.php:1126
+#: ../../mod/settings.php:1146
 msgid "Leave password fields blank unless changing"
 msgstr ""
 
-#: ../../mod/settings.php:1127
+#: ../../mod/settings.php:1147
 msgid "Current Password:"
 msgstr ""
 
-#: ../../mod/settings.php:1127 ../../mod/settings.php:1128
+#: ../../mod/settings.php:1147 ../../mod/settings.php:1148
 msgid "Your current password to confirm the changes"
 msgstr ""
 
-#: ../../mod/settings.php:1128
+#: ../../mod/settings.php:1148
 msgid "Password:"
 msgstr ""
 
-#: ../../mod/settings.php:1132
+#: ../../mod/settings.php:1152
 msgid "Basic Settings"
 msgstr ""
 
-#: ../../mod/settings.php:1134
+#: ../../mod/settings.php:1154
 msgid "Email Address:"
 msgstr ""
 
-#: ../../mod/settings.php:1135
+#: ../../mod/settings.php:1155
 msgid "Your Timezone:"
 msgstr ""
 
-#: ../../mod/settings.php:1136
+#: ../../mod/settings.php:1156
 msgid "Default Post Location:"
 msgstr ""
 
-#: ../../mod/settings.php:1137
+#: ../../mod/settings.php:1157
 msgid "Use Browser Location:"
 msgstr ""
 
-#: ../../mod/settings.php:1140
+#: ../../mod/settings.php:1160
 msgid "Security and Privacy Settings"
 msgstr ""
 
-#: ../../mod/settings.php:1142
+#: ../../mod/settings.php:1162
 msgid "Maximum Friend Requests/Day:"
 msgstr ""
 
-#: ../../mod/settings.php:1142 ../../mod/settings.php:1172
+#: ../../mod/settings.php:1162 ../../mod/settings.php:1192
 msgid "(to prevent spam abuse)"
 msgstr ""
 
-#: ../../mod/settings.php:1143
+#: ../../mod/settings.php:1163
 msgid "Default Post Permissions"
 msgstr ""
 
-#: ../../mod/settings.php:1144
+#: ../../mod/settings.php:1164
 msgid "(click to open/close)"
 msgstr ""
 
-#: ../../mod/settings.php:1153 ../../mod/photos.php:1146
+#: ../../mod/settings.php:1173 ../../mod/photos.php:1146
 #: ../../mod/photos.php:1519
 msgid "Show to Groups"
 msgstr ""
 
-#: ../../mod/settings.php:1154 ../../mod/photos.php:1147
+#: ../../mod/settings.php:1174 ../../mod/photos.php:1147
 #: ../../mod/photos.php:1520
 msgid "Show to Contacts"
 msgstr ""
 
-#: ../../mod/settings.php:1155
+#: ../../mod/settings.php:1175
 msgid "Default Private Post"
 msgstr ""
 
-#: ../../mod/settings.php:1156
+#: ../../mod/settings.php:1176
 msgid "Default Public Post"
 msgstr ""
 
-#: ../../mod/settings.php:1160
+#: ../../mod/settings.php:1180
 msgid "Default Permissions for New Posts"
 msgstr ""
 
-#: ../../mod/settings.php:1172
+#: ../../mod/settings.php:1192
 msgid "Maximum private messages per day from unknown people:"
 msgstr ""
 
-#: ../../mod/settings.php:1175
+#: ../../mod/settings.php:1195
 msgid "Notification Settings"
 msgstr ""
 
-#: ../../mod/settings.php:1176
+#: ../../mod/settings.php:1196
 msgid "By default post a status message when:"
 msgstr ""
 
-#: ../../mod/settings.php:1177
+#: ../../mod/settings.php:1197
 msgid "accepting a friend request"
 msgstr ""
 
-#: ../../mod/settings.php:1178
+#: ../../mod/settings.php:1198
 msgid "joining a forum/community"
 msgstr ""
 
-#: ../../mod/settings.php:1179
+#: ../../mod/settings.php:1199
 msgid "making an <em>interesting</em> profile change"
 msgstr ""
 
-#: ../../mod/settings.php:1180
+#: ../../mod/settings.php:1200
 msgid "Send a notification email when:"
 msgstr ""
 
-#: ../../mod/settings.php:1181
+#: ../../mod/settings.php:1201
 msgid "You receive an introduction"
 msgstr ""
 
-#: ../../mod/settings.php:1182
+#: ../../mod/settings.php:1202
 msgid "Your introductions are confirmed"
 msgstr ""
 
-#: ../../mod/settings.php:1183
+#: ../../mod/settings.php:1203
 msgid "Someone writes on your profile wall"
 msgstr ""
 
-#: ../../mod/settings.php:1184
+#: ../../mod/settings.php:1204
 msgid "Someone writes a followup comment"
 msgstr ""
 
-#: ../../mod/settings.php:1185
+#: ../../mod/settings.php:1205
 msgid "You receive a private message"
 msgstr ""
 
-#: ../../mod/settings.php:1186
+#: ../../mod/settings.php:1206
 msgid "You receive a friend suggestion"
 msgstr ""
 
-#: ../../mod/settings.php:1187
+#: ../../mod/settings.php:1207
 msgid "You are tagged in a post"
 msgstr ""
 
-#: ../../mod/settings.php:1188
+#: ../../mod/settings.php:1208
 msgid "You are poked/prodded/etc. in a post"
 msgstr ""
 
-#: ../../mod/settings.php:1190
+#: ../../mod/settings.php:1210
+msgid "Activate desktop notifications"
+msgstr ""
+
+#: ../../mod/settings.php:1211
+msgid ""
+"Note: This is an experimental feature, as being not supported by each browser"
+msgstr ""
+
+#: ../../mod/settings.php:1212
+msgid "You will now receive desktop notifications!"
+msgstr ""
+
+#: ../../mod/settings.php:1214
 msgid "Text-only notification emails"
 msgstr ""
 
-#: ../../mod/settings.php:1192
+#: ../../mod/settings.php:1216
 msgid "Send text only notification emails, without the html part"
 msgstr ""
 
-#: ../../mod/settings.php:1194
+#: ../../mod/settings.php:1218
 msgid "Advanced Account/Page Type Settings"
 msgstr ""
 
-#: ../../mod/settings.php:1195
+#: ../../mod/settings.php:1219
 msgid "Change the behaviour of this account for special situations"
 msgstr ""
 
-#: ../../mod/settings.php:1198
+#: ../../mod/settings.php:1222
 msgid "Relocate"
 msgstr ""
 
-#: ../../mod/settings.php:1199
+#: ../../mod/settings.php:1223
 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:1200
+#: ../../mod/settings.php:1224
 msgid "Resend relocate message to contacts"
 msgstr ""
 
@@ -4163,337 +4164,337 @@ msgstr ""
 msgid "Visible to:"
 msgstr ""
 
-#: ../../mod/contacts.php:112
+#: ../../mod/contacts.php:114
 #, php-format
 msgid "%d contact edited."
 msgid_plural "%d contacts edited"
 msgstr[0] ""
 msgstr[1] ""
 
-#: ../../mod/contacts.php:143 ../../mod/contacts.php:276
+#: ../../mod/contacts.php:145 ../../mod/contacts.php:340
 msgid "Could not access contact record."
 msgstr ""
 
-#: ../../mod/contacts.php:157
+#: ../../mod/contacts.php:159
 msgid "Could not locate selected profile."
 msgstr ""
 
-#: ../../mod/contacts.php:190
+#: ../../mod/contacts.php:192
 msgid "Contact updated."
 msgstr ""
 
-#: ../../mod/contacts.php:192 ../../mod/dfrn_request.php:576
+#: ../../mod/contacts.php:194 ../../mod/dfrn_request.php:576
 msgid "Failed to update contact record."
 msgstr ""
 
-#: ../../mod/contacts.php:291
+#: ../../mod/contacts.php:361
 msgid "Contact has been blocked"
 msgstr ""
 
-#: ../../mod/contacts.php:291
+#: ../../mod/contacts.php:361
 msgid "Contact has been unblocked"
 msgstr ""
 
-#: ../../mod/contacts.php:302
+#: ../../mod/contacts.php:372
 msgid "Contact has been ignored"
 msgstr ""
 
-#: ../../mod/contacts.php:302
+#: ../../mod/contacts.php:372
 msgid "Contact has been unignored"
 msgstr ""
 
-#: ../../mod/contacts.php:314
+#: ../../mod/contacts.php:384
 msgid "Contact has been archived"
 msgstr ""
 
-#: ../../mod/contacts.php:314
+#: ../../mod/contacts.php:384
 msgid "Contact has been unarchived"
 msgstr ""
 
-#: ../../mod/contacts.php:339 ../../mod/contacts.php:727
+#: ../../mod/contacts.php:409 ../../mod/contacts.php:797
 msgid "Do you really want to delete this contact?"
 msgstr ""
 
-#: ../../mod/contacts.php:356
+#: ../../mod/contacts.php:426
 msgid "Contact has been removed."
 msgstr ""
 
-#: ../../mod/contacts.php:394
+#: ../../mod/contacts.php:464
 #, php-format
 msgid "You are mutual friends with %s"
 msgstr ""
 
-#: ../../mod/contacts.php:398
+#: ../../mod/contacts.php:468
 #, php-format
 msgid "You are sharing with %s"
 msgstr ""
 
-#: ../../mod/contacts.php:403
+#: ../../mod/contacts.php:473
 #, php-format
 msgid "%s is sharing with you"
 msgstr ""
 
-#: ../../mod/contacts.php:423
+#: ../../mod/contacts.php:493
 msgid "Private communications are not available for this contact."
 msgstr ""
 
-#: ../../mod/contacts.php:426 ../../mod/admin.php:569
+#: ../../mod/contacts.php:496 ../../mod/admin.php:571
 msgid "Never"
 msgstr ""
 
-#: ../../mod/contacts.php:430
+#: ../../mod/contacts.php:500
 msgid "(Update was successful)"
 msgstr ""
 
-#: ../../mod/contacts.php:430
+#: ../../mod/contacts.php:500
 msgid "(Update was not successful)"
 msgstr ""
 
-#: ../../mod/contacts.php:432
+#: ../../mod/contacts.php:502
 msgid "Suggest friends"
 msgstr ""
 
-#: ../../mod/contacts.php:436
+#: ../../mod/contacts.php:506
 #, php-format
 msgid "Network type: %s"
 msgstr ""
 
-#: ../../mod/contacts.php:444
+#: ../../mod/contacts.php:514
 msgid "View all contacts"
 msgstr ""
 
-#: ../../mod/contacts.php:449 ../../mod/contacts.php:518
-#: ../../mod/contacts.php:730 ../../mod/admin.php:1009
+#: ../../mod/contacts.php:519 ../../mod/contacts.php:588
+#: ../../mod/contacts.php:800 ../../mod/admin.php:1012
 msgid "Unblock"
 msgstr ""
 
-#: ../../mod/contacts.php:449 ../../mod/contacts.php:518
-#: ../../mod/contacts.php:730 ../../mod/admin.php:1008
+#: ../../mod/contacts.php:519 ../../mod/contacts.php:588
+#: ../../mod/contacts.php:800 ../../mod/admin.php:1011
 msgid "Block"
 msgstr ""
 
-#: ../../mod/contacts.php:452
+#: ../../mod/contacts.php:522
 msgid "Toggle Blocked status"
 msgstr ""
 
-#: ../../mod/contacts.php:455 ../../mod/contacts.php:519
-#: ../../mod/contacts.php:731
+#: ../../mod/contacts.php:525 ../../mod/contacts.php:589
+#: ../../mod/contacts.php:801
 msgid "Unignore"
 msgstr ""
 
-#: ../../mod/contacts.php:458
+#: ../../mod/contacts.php:528
 msgid "Toggle Ignored status"
 msgstr ""
 
-#: ../../mod/contacts.php:462 ../../mod/contacts.php:732
+#: ../../mod/contacts.php:532 ../../mod/contacts.php:802
 msgid "Unarchive"
 msgstr ""
 
-#: ../../mod/contacts.php:462 ../../mod/contacts.php:732
+#: ../../mod/contacts.php:532 ../../mod/contacts.php:802
 msgid "Archive"
 msgstr ""
 
-#: ../../mod/contacts.php:465
+#: ../../mod/contacts.php:535
 msgid "Toggle Archive status"
 msgstr ""
 
-#: ../../mod/contacts.php:468
+#: ../../mod/contacts.php:538
 msgid "Repair"
 msgstr ""
 
-#: ../../mod/contacts.php:471
+#: ../../mod/contacts.php:541
 msgid "Advanced Contact Settings"
 msgstr ""
 
-#: ../../mod/contacts.php:477
+#: ../../mod/contacts.php:547
 msgid "Communications lost with this contact!"
 msgstr ""
 
-#: ../../mod/contacts.php:480
+#: ../../mod/contacts.php:550
 msgid "Fetch further information for feeds"
 msgstr ""
 
-#: ../../mod/contacts.php:481
+#: ../../mod/contacts.php:551
 msgid "Disabled"
 msgstr ""
 
-#: ../../mod/contacts.php:481
+#: ../../mod/contacts.php:551
 msgid "Fetch information"
 msgstr ""
 
-#: ../../mod/contacts.php:481
+#: ../../mod/contacts.php:551
 msgid "Fetch information and keywords"
 msgstr ""
 
-#: ../../mod/contacts.php:490
+#: ../../mod/contacts.php:560
 msgid "Contact Editor"
 msgstr ""
 
-#: ../../mod/contacts.php:493
+#: ../../mod/contacts.php:563
 msgid "Profile Visibility"
 msgstr ""
 
-#: ../../mod/contacts.php:494
+#: ../../mod/contacts.php:564
 #, php-format
 msgid ""
 "Please choose the profile you would like to display to %s when viewing your "
 "profile securely."
 msgstr ""
 
-#: ../../mod/contacts.php:495
+#: ../../mod/contacts.php:565
 msgid "Contact Information / Notes"
 msgstr ""
 
-#: ../../mod/contacts.php:496
+#: ../../mod/contacts.php:566
 msgid "Edit contact notes"
 msgstr ""
 
-#: ../../mod/contacts.php:501 ../../mod/contacts.php:695
+#: ../../mod/contacts.php:571 ../../mod/contacts.php:765
 #: ../../mod/nogroup.php:40 ../../mod/viewcontacts.php:64
 #, php-format
 msgid "Visit %s's profile [%s]"
 msgstr ""
 
-#: ../../mod/contacts.php:502
+#: ../../mod/contacts.php:572
 msgid "Block/Unblock contact"
 msgstr ""
 
-#: ../../mod/contacts.php:503
+#: ../../mod/contacts.php:573
 msgid "Ignore contact"
 msgstr ""
 
-#: ../../mod/contacts.php:504
+#: ../../mod/contacts.php:574
 msgid "Repair URL settings"
 msgstr ""
 
-#: ../../mod/contacts.php:505
+#: ../../mod/contacts.php:575
 msgid "View conversations"
 msgstr ""
 
-#: ../../mod/contacts.php:507
+#: ../../mod/contacts.php:577
 msgid "Delete contact"
 msgstr ""
 
-#: ../../mod/contacts.php:511
+#: ../../mod/contacts.php:581
 msgid "Last update:"
 msgstr ""
 
-#: ../../mod/contacts.php:513
+#: ../../mod/contacts.php:583
 msgid "Update public posts"
 msgstr ""
 
-#: ../../mod/contacts.php:515 ../../mod/admin.php:1503
+#: ../../mod/contacts.php:585 ../../mod/admin.php:1506
 msgid "Update now"
 msgstr ""
 
-#: ../../mod/contacts.php:522
+#: ../../mod/contacts.php:592
 msgid "Currently blocked"
 msgstr ""
 
-#: ../../mod/contacts.php:523
+#: ../../mod/contacts.php:593
 msgid "Currently ignored"
 msgstr ""
 
-#: ../../mod/contacts.php:524
+#: ../../mod/contacts.php:594
 msgid "Currently archived"
 msgstr ""
 
-#: ../../mod/contacts.php:525
+#: ../../mod/contacts.php:595
 msgid ""
 "Replies/likes to your public posts <strong>may</strong> still be visible"
 msgstr ""
 
-#: ../../mod/contacts.php:526
+#: ../../mod/contacts.php:596
 msgid "Notification for new posts"
 msgstr ""
 
-#: ../../mod/contacts.php:526
+#: ../../mod/contacts.php:596
 msgid "Send a notification of every new post of this contact"
 msgstr ""
 
-#: ../../mod/contacts.php:529
+#: ../../mod/contacts.php:599
 msgid "Blacklisted keywords"
 msgstr ""
 
-#: ../../mod/contacts.php:529
+#: ../../mod/contacts.php:599
 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
+#: ../../mod/contacts.php:650
 msgid "Suggestions"
 msgstr ""
 
-#: ../../mod/contacts.php:583
+#: ../../mod/contacts.php:653
 msgid "Suggest potential friends"
 msgstr ""
 
-#: ../../mod/contacts.php:589
+#: ../../mod/contacts.php:659
 msgid "Show all contacts"
 msgstr ""
 
-#: ../../mod/contacts.php:592
+#: ../../mod/contacts.php:662
 msgid "Unblocked"
 msgstr ""
 
-#: ../../mod/contacts.php:595
+#: ../../mod/contacts.php:665
 msgid "Only show unblocked contacts"
 msgstr ""
 
-#: ../../mod/contacts.php:599
+#: ../../mod/contacts.php:669
 msgid "Blocked"
 msgstr ""
 
-#: ../../mod/contacts.php:602
+#: ../../mod/contacts.php:672
 msgid "Only show blocked contacts"
 msgstr ""
 
-#: ../../mod/contacts.php:606
+#: ../../mod/contacts.php:676
 msgid "Ignored"
 msgstr ""
 
-#: ../../mod/contacts.php:609
+#: ../../mod/contacts.php:679
 msgid "Only show ignored contacts"
 msgstr ""
 
-#: ../../mod/contacts.php:613
+#: ../../mod/contacts.php:683
 msgid "Archived"
 msgstr ""
 
-#: ../../mod/contacts.php:616
+#: ../../mod/contacts.php:686
 msgid "Only show archived contacts"
 msgstr ""
 
-#: ../../mod/contacts.php:620
+#: ../../mod/contacts.php:690
 msgid "Hidden"
 msgstr ""
 
-#: ../../mod/contacts.php:623
+#: ../../mod/contacts.php:693
 msgid "Only show hidden contacts"
 msgstr ""
 
-#: ../../mod/contacts.php:671
+#: ../../mod/contacts.php:741
 msgid "Mutual Friendship"
 msgstr ""
 
-#: ../../mod/contacts.php:675
+#: ../../mod/contacts.php:745
 msgid "is a fan of yours"
 msgstr ""
 
-#: ../../mod/contacts.php:679
+#: ../../mod/contacts.php:749
 msgid "you are a fan of"
 msgstr ""
 
-#: ../../mod/contacts.php:696 ../../mod/nogroup.php:41
+#: ../../mod/contacts.php:766 ../../mod/nogroup.php:41
 msgid "Edit contact"
 msgstr ""
 
-#: ../../mod/contacts.php:722
+#: ../../mod/contacts.php:792
 msgid "Search your contacts"
 msgstr ""
 
-#: ../../mod/contacts.php:723 ../../mod/directory.php:61
+#: ../../mod/contacts.php:793 ../../mod/directory.php:61
 msgid "Finding: "
 msgstr ""
 
@@ -4595,7 +4596,7 @@ msgstr ""
 msgid "Your invitation ID: "
 msgstr ""
 
-#: ../../mod/register.php:255 ../../mod/admin.php:621
+#: ../../mod/register.php:255 ../../mod/admin.php:623
 msgid "Registration"
 msgstr ""
 
@@ -4634,7 +4635,7 @@ msgstr ""
 msgid "System down for maintenance"
 msgstr ""
 
-#: ../../mod/profile.php:155 ../../mod/display.php:332
+#: ../../mod/profile.php:155 ../../mod/display.php:334
 msgid "Access to this profile has been restricted."
 msgstr ""
 
@@ -4642,10 +4643,10 @@ msgstr ""
 msgid "Tips for New Members"
 msgstr ""
 
-#: ../../mod/videos.php:115 ../../mod/dfrn_request.php:762
+#: ../../mod/videos.php:115 ../../mod/dfrn_request.php:777
 #: ../../mod/viewcontacts.php:19 ../../mod/photos.php:920
 #: ../../mod/search.php:89 ../../mod/community.php:18
-#: ../../mod/display.php:212 ../../mod/directory.php:33
+#: ../../mod/display.php:214 ../../mod/directory.php:33
 msgid "Public access denied."
 msgstr ""
 
@@ -4695,7 +4696,7 @@ msgstr ""
 msgid "People Search"
 msgstr ""
 
-#: ../../mod/dirfind.php:60 ../../mod/match.php:65
+#: ../../mod/dirfind.php:60 ../../mod/match.php:71
 msgid "No matches"
 msgstr ""
 
@@ -4803,72 +4804,76 @@ msgid ""
 "strong> profile."
 msgstr ""
 
-#: ../../mod/dfrn_request.php:671
+#: ../../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:674
+#: ../../mod/dfrn_request.php:689
 #, php-format
 msgid "Welcome home %s."
 msgstr ""
 
-#: ../../mod/dfrn_request.php:675
+#: ../../mod/dfrn_request.php:690
 #, php-format
 msgid "Please confirm your introduction/connection request to %s."
 msgstr ""
 
-#: ../../mod/dfrn_request.php:804
+#: ../../mod/dfrn_request.php:819
 msgid ""
 "Please enter your 'Identity Address' from one of the following supported "
 "communications networks:"
 msgstr ""
 
-#: ../../mod/dfrn_request.php:824
+#: ../../mod/dfrn_request.php:839
 msgid ""
 "If you are not yet a member of the free social web, <a href=\"http://dir."
 "friendica.com/siteinfo\">follow this link to find a public Friendica site "
 "and join us today</a>."
 msgstr ""
 
-#: ../../mod/dfrn_request.php:827
+#: ../../mod/dfrn_request.php:842
 msgid "Friend/Connection Request"
 msgstr ""
 
-#: ../../mod/dfrn_request.php:828
+#: ../../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:829
+#: ../../mod/dfrn_request.php:844 ../../mod/follow.php:53
 msgid "Please answer the following:"
 msgstr ""
 
-#: ../../mod/dfrn_request.php:830
+#: ../../mod/dfrn_request.php:845 ../../mod/follow.php:54
 #, php-format
 msgid "Does %s know you?"
 msgstr ""
 
-#: ../../mod/dfrn_request.php:834
+#: ../../mod/dfrn_request.php:849 ../../mod/follow.php:55
 msgid "Add a personal note:"
 msgstr ""
 
-#: ../../mod/dfrn_request.php:837
+#: ../../mod/dfrn_request.php:852
 msgid "StatusNet/Federated Social Web"
 msgstr ""
 
-#: ../../mod/dfrn_request.php:839
+#: ../../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:840
+#: ../../mod/dfrn_request.php:855 ../../mod/follow.php:61
 msgid "Your Identity Address:"
 msgstr ""
 
-#: ../../mod/dfrn_request.php:843
+#: ../../mod/dfrn_request.php:858 ../../mod/follow.php:64
 msgid "Submit Request"
 msgstr ""
 
@@ -4930,7 +4935,7 @@ msgstr ""
 msgid "Suggest a friend for %s"
 msgstr ""
 
-#: ../../mod/share.php:44
+#: ../../mod/share.php:38
 msgid "link"
 msgstr ""
 
@@ -4942,15 +4947,15 @@ msgstr ""
 msgid "Theme settings updated."
 msgstr ""
 
-#: ../../mod/admin.php:104 ../../mod/admin.php:619
+#: ../../mod/admin.php:104 ../../mod/admin.php:621
 msgid "Site"
 msgstr ""
 
-#: ../../mod/admin.php:105 ../../mod/admin.php:998 ../../mod/admin.php:1013
+#: ../../mod/admin.php:105 ../../mod/admin.php:1001 ../../mod/admin.php:1016
 msgid "Users"
 msgstr ""
 
-#: ../../mod/admin.php:107 ../../mod/admin.php:1323 ../../mod/admin.php:1357
+#: ../../mod/admin.php:107 ../../mod/admin.php:1326 ../../mod/admin.php:1360
 msgid "Themes"
 msgstr ""
 
@@ -4958,7 +4963,7 @@ msgstr ""
 msgid "DB updates"
 msgstr ""
 
-#: ../../mod/admin.php:123 ../../mod/admin.php:132 ../../mod/admin.php:1444
+#: ../../mod/admin.php:123 ../../mod/admin.php:132 ../../mod/admin.php:1447
 msgid "Logs"
 msgstr ""
 
@@ -4982,19 +4987,19 @@ msgstr ""
 msgid "User registrations waiting for confirmation"
 msgstr ""
 
-#: ../../mod/admin.php:193 ../../mod/admin.php:952
+#: ../../mod/admin.php:193 ../../mod/admin.php:955
 msgid "Normal Account"
 msgstr ""
 
-#: ../../mod/admin.php:194 ../../mod/admin.php:953
+#: ../../mod/admin.php:194 ../../mod/admin.php:956
 msgid "Soapbox Account"
 msgstr ""
 
-#: ../../mod/admin.php:195 ../../mod/admin.php:954
+#: ../../mod/admin.php:195 ../../mod/admin.php:957
 msgid "Community/Celebrity Account"
 msgstr ""
 
-#: ../../mod/admin.php:196 ../../mod/admin.php:955
+#: ../../mod/admin.php:196 ../../mod/admin.php:958
 msgid "Automatic Friend Account"
 msgstr ""
 
@@ -5010,9 +5015,9 @@ msgstr ""
 msgid "Message queues"
 msgstr ""
 
-#: ../../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:620 ../../mod/admin.php:1000
+#: ../../mod/admin.php:1104 ../../mod/admin.php:1157 ../../mod/admin.php:1325
+#: ../../mod/admin.php:1359 ../../mod/admin.php:1446
 msgid "Administration"
 msgstr ""
 
@@ -5040,649 +5045,657 @@ msgstr ""
 msgid "Can not parse base url. Must have at least <scheme>://<domain>"
 msgstr ""
 
-#: ../../mod/admin.php:516
+#: ../../mod/admin.php:518
 msgid "Site settings updated."
 msgstr ""
 
-#: ../../mod/admin.php:562
+#: ../../mod/admin.php:564
 msgid "No community page"
 msgstr ""
 
-#: ../../mod/admin.php:563
+#: ../../mod/admin.php:565
 msgid "Public postings from users of this site"
 msgstr ""
 
-#: ../../mod/admin.php:564
+#: ../../mod/admin.php:566
 msgid "Global community page"
 msgstr ""
 
-#: ../../mod/admin.php:570
+#: ../../mod/admin.php:572
 msgid "At post arrival"
 msgstr ""
 
-#: ../../mod/admin.php:579
+#: ../../mod/admin.php:581
 msgid "Multi user instance"
 msgstr ""
 
-#: ../../mod/admin.php:602
+#: ../../mod/admin.php:604
 msgid "Closed"
 msgstr ""
 
-#: ../../mod/admin.php:603
+#: ../../mod/admin.php:605
 msgid "Requires approval"
 msgstr ""
 
-#: ../../mod/admin.php:604
+#: ../../mod/admin.php:606
 msgid "Open"
 msgstr ""
 
-#: ../../mod/admin.php:608
+#: ../../mod/admin.php:610
 msgid "No SSL policy, links will track page SSL state"
 msgstr ""
 
-#: ../../mod/admin.php:609
+#: ../../mod/admin.php:611
 msgid "Force all links to use SSL"
 msgstr ""
 
-#: ../../mod/admin.php:610
+#: ../../mod/admin.php:612
 msgid "Self-signed certificate, use SSL for local links only (discouraged)"
 msgstr ""
 
-#: ../../mod/admin.php:622
+#: ../../mod/admin.php:624
 msgid "File upload"
 msgstr ""
 
-#: ../../mod/admin.php:623
+#: ../../mod/admin.php:625
 msgid "Policies"
 msgstr ""
 
-#: ../../mod/admin.php:624
+#: ../../mod/admin.php:626
 msgid "Advanced"
 msgstr ""
 
-#: ../../mod/admin.php:625
+#: ../../mod/admin.php:627
 msgid "Performance"
 msgstr ""
 
-#: ../../mod/admin.php:626
+#: ../../mod/admin.php:628
 msgid ""
 "Relocate - WARNING: advanced function. Could make this server unreachable."
 msgstr ""
 
-#: ../../mod/admin.php:629
+#: ../../mod/admin.php:631
 msgid "Site name"
 msgstr ""
 
-#: ../../mod/admin.php:630
+#: ../../mod/admin.php:632
 msgid "Host name"
 msgstr ""
 
-#: ../../mod/admin.php:631
+#: ../../mod/admin.php:633
 msgid "Sender Email"
 msgstr ""
 
-#: ../../mod/admin.php:632
+#: ../../mod/admin.php:634
 msgid "Banner/Logo"
 msgstr ""
 
-#: ../../mod/admin.php:633
+#: ../../mod/admin.php:635
 msgid "Shortcut icon"
 msgstr ""
 
-#: ../../mod/admin.php:634
+#: ../../mod/admin.php:636
 msgid "Touch icon"
 msgstr ""
 
-#: ../../mod/admin.php:635
+#: ../../mod/admin.php:637
 msgid "Additional Info"
 msgstr ""
 
-#: ../../mod/admin.php:635
+#: ../../mod/admin.php:637
 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:638
 msgid "System language"
 msgstr ""
 
-#: ../../mod/admin.php:637
+#: ../../mod/admin.php:639
 msgid "System theme"
 msgstr ""
 
-#: ../../mod/admin.php:637
+#: ../../mod/admin.php:639
 msgid ""
 "Default system theme - may be over-ridden by user profiles - <a href='#' "
 "id='cnftheme'>change theme settings</a>"
 msgstr ""
 
-#: ../../mod/admin.php:638
+#: ../../mod/admin.php:640
 msgid "Mobile system theme"
 msgstr ""
 
-#: ../../mod/admin.php:638
+#: ../../mod/admin.php:640
 msgid "Theme for mobile devices"
 msgstr ""
 
-#: ../../mod/admin.php:639
+#: ../../mod/admin.php:641
 msgid "SSL link policy"
 msgstr ""
 
-#: ../../mod/admin.php:639
+#: ../../mod/admin.php:641
 msgid "Determines whether generated links should be forced to use SSL"
 msgstr ""
 
-#: ../../mod/admin.php:640
+#: ../../mod/admin.php:642
 msgid "Force SSL"
 msgstr ""
 
-#: ../../mod/admin.php:640
+#: ../../mod/admin.php:642
 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:643
 msgid "Old style 'Share'"
 msgstr ""
 
-#: ../../mod/admin.php:641
+#: ../../mod/admin.php:643
 msgid "Deactivates the bbcode element 'share' for repeating items."
 msgstr ""
 
-#: ../../mod/admin.php:642
+#: ../../mod/admin.php:644
 msgid "Hide help entry from navigation menu"
 msgstr ""
 
-#: ../../mod/admin.php:642
+#: ../../mod/admin.php:644
 msgid ""
 "Hides the menu entry for the Help pages from the navigation menu. You can "
 "still access it calling /help directly."
 msgstr ""
 
-#: ../../mod/admin.php:643
+#: ../../mod/admin.php:645
 msgid "Single user instance"
 msgstr ""
 
-#: ../../mod/admin.php:643
+#: ../../mod/admin.php:645
 msgid "Make this instance multi-user or single-user for the named user"
 msgstr ""
 
-#: ../../mod/admin.php:644
+#: ../../mod/admin.php:646
 msgid "Maximum image size"
 msgstr ""
 
-#: ../../mod/admin.php:644
+#: ../../mod/admin.php:646
 msgid ""
 "Maximum size in bytes of uploaded images. Default is 0, which means no "
 "limits."
 msgstr ""
 
-#: ../../mod/admin.php:645
+#: ../../mod/admin.php:647
 msgid "Maximum image length"
 msgstr ""
 
-#: ../../mod/admin.php:645
+#: ../../mod/admin.php:647
 msgid ""
 "Maximum length in pixels of the longest side of uploaded images. Default is "
 "-1, which means no limits."
 msgstr ""
 
-#: ../../mod/admin.php:646
+#: ../../mod/admin.php:648
 msgid "JPEG image quality"
 msgstr ""
 
-#: ../../mod/admin.php:646
+#: ../../mod/admin.php:648
 msgid ""
 "Uploaded JPEGS will be saved at this quality setting [0-100]. Default is "
 "100, which is full quality."
 msgstr ""
 
-#: ../../mod/admin.php:648
+#: ../../mod/admin.php:650
 msgid "Register policy"
 msgstr ""
 
-#: ../../mod/admin.php:649
+#: ../../mod/admin.php:651
 msgid "Maximum Daily Registrations"
 msgstr ""
 
-#: ../../mod/admin.php:649
+#: ../../mod/admin.php:651
 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 ""
 
-#: ../../mod/admin.php:650
+#: ../../mod/admin.php:652
 msgid "Register text"
 msgstr ""
 
-#: ../../mod/admin.php:650
+#: ../../mod/admin.php:652
 msgid "Will be displayed prominently on the registration page."
 msgstr ""
 
-#: ../../mod/admin.php:651
+#: ../../mod/admin.php:653
 msgid "Accounts abandoned after x days"
 msgstr ""
 
-#: ../../mod/admin.php:651
+#: ../../mod/admin.php:653
 msgid ""
 "Will not waste system resources polling external sites for abandonded "
 "accounts. Enter 0 for no time limit."
 msgstr ""
 
-#: ../../mod/admin.php:652
+#: ../../mod/admin.php:654
 msgid "Allowed friend domains"
 msgstr ""
 
-#: ../../mod/admin.php:652
+#: ../../mod/admin.php:654
 msgid ""
 "Comma separated list of domains which are allowed to establish friendships "
 "with this site. Wildcards are accepted. Empty to allow any domains"
 msgstr ""
 
-#: ../../mod/admin.php:653
+#: ../../mod/admin.php:655
 msgid "Allowed email domains"
 msgstr ""
 
-#: ../../mod/admin.php:653
+#: ../../mod/admin.php:655
 msgid ""
 "Comma separated list of domains which are allowed in email addresses for "
 "registrations to this site. Wildcards are accepted. Empty to allow any "
 "domains"
 msgstr ""
 
-#: ../../mod/admin.php:654
+#: ../../mod/admin.php:656
 msgid "Block public"
 msgstr ""
 
-#: ../../mod/admin.php:654
+#: ../../mod/admin.php:656
 msgid ""
 "Check to block public access to all otherwise public personal pages on this "
 "site unless you are currently logged in."
 msgstr ""
 
-#: ../../mod/admin.php:655
+#: ../../mod/admin.php:657
 msgid "Force publish"
 msgstr ""
 
-#: ../../mod/admin.php:655
+#: ../../mod/admin.php:657
 msgid ""
 "Check to force all profiles on this site to be listed in the site directory."
 msgstr ""
 
-#: ../../mod/admin.php:656
+#: ../../mod/admin.php:658
 msgid "Global directory update URL"
 msgstr ""
 
-#: ../../mod/admin.php:656
+#: ../../mod/admin.php:658
 msgid ""
 "URL to update the global directory. If this is not set, the global directory "
 "is completely unavailable to the application."
 msgstr ""
 
-#: ../../mod/admin.php:657
+#: ../../mod/admin.php:659
 msgid "Allow threaded items"
 msgstr ""
 
-#: ../../mod/admin.php:657
+#: ../../mod/admin.php:659
 msgid "Allow infinite level threading for items on this site."
 msgstr ""
 
-#: ../../mod/admin.php:658
+#: ../../mod/admin.php:660
 msgid "Private posts by default for new users"
 msgstr ""
 
-#: ../../mod/admin.php:658
+#: ../../mod/admin.php:660
 msgid ""
 "Set default post permissions for all new members to the default privacy "
 "group rather than public."
 msgstr ""
 
-#: ../../mod/admin.php:659
+#: ../../mod/admin.php:661
 msgid "Don't include post content in email notifications"
 msgstr ""
 
-#: ../../mod/admin.php:659
+#: ../../mod/admin.php:661
 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 ""
 
-#: ../../mod/admin.php:660
+#: ../../mod/admin.php:662
 msgid "Disallow public access to addons listed in the apps menu."
 msgstr ""
 
-#: ../../mod/admin.php:660
+#: ../../mod/admin.php:662
 msgid ""
 "Checking this box will restrict addons listed in the apps menu to members "
 "only."
 msgstr ""
 
-#: ../../mod/admin.php:661
+#: ../../mod/admin.php:663
 msgid "Don't embed private images in posts"
 msgstr ""
 
-#: ../../mod/admin.php:661
+#: ../../mod/admin.php:663
 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 "
 "photos will have to authenticate and load each image, which may take a while."
 msgstr ""
 
-#: ../../mod/admin.php:662
+#: ../../mod/admin.php:664
 msgid "Allow Users to set remote_self"
 msgstr ""
 
-#: ../../mod/admin.php:662
+#: ../../mod/admin.php:664
 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:665
 msgid "Block multiple registrations"
 msgstr ""
 
-#: ../../mod/admin.php:663
+#: ../../mod/admin.php:665
 msgid "Disallow users to register additional accounts for use as pages."
 msgstr ""
 
-#: ../../mod/admin.php:664
+#: ../../mod/admin.php:666
 msgid "OpenID support"
 msgstr ""
 
-#: ../../mod/admin.php:664
+#: ../../mod/admin.php:666
 msgid "OpenID support for registration and logins."
 msgstr ""
 
-#: ../../mod/admin.php:665
+#: ../../mod/admin.php:667
 msgid "Fullname check"
 msgstr ""
 
-#: ../../mod/admin.php:665
+#: ../../mod/admin.php:667
 msgid ""
 "Force users to register with a space between firstname and lastname in Full "
 "name, as an antispam measure"
 msgstr ""
 
-#: ../../mod/admin.php:666
+#: ../../mod/admin.php:668
 msgid "UTF-8 Regular expressions"
 msgstr ""
 
-#: ../../mod/admin.php:666
+#: ../../mod/admin.php:668
 msgid "Use PHP UTF8 regular expressions"
 msgstr ""
 
-#: ../../mod/admin.php:667
+#: ../../mod/admin.php:669
 msgid "Community Page Style"
 msgstr ""
 
-#: ../../mod/admin.php:667
+#: ../../mod/admin.php:669
 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:670
 msgid "Posts per user on community page"
 msgstr ""
 
-#: ../../mod/admin.php:668
+#: ../../mod/admin.php:670
 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:671
 msgid "Enable OStatus support"
 msgstr ""
 
-#: ../../mod/admin.php:669
+#: ../../mod/admin.php:671
 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:672
 msgid "OStatus conversation completion interval"
 msgstr ""
 
-#: ../../mod/admin.php:670
+#: ../../mod/admin.php:672
 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:673
 msgid "Enable Diaspora support"
 msgstr ""
 
-#: ../../mod/admin.php:671
+#: ../../mod/admin.php:673
 msgid "Provide built-in Diaspora network compatibility."
 msgstr ""
 
-#: ../../mod/admin.php:672
+#: ../../mod/admin.php:674
 msgid "Only allow Friendica contacts"
 msgstr ""
 
-#: ../../mod/admin.php:672
+#: ../../mod/admin.php:674
 msgid ""
 "All contacts must use Friendica protocols. All other built-in communication "
 "protocols disabled."
 msgstr ""
 
-#: ../../mod/admin.php:673
+#: ../../mod/admin.php:675
 msgid "Verify SSL"
 msgstr ""
 
-#: ../../mod/admin.php:673
+#: ../../mod/admin.php:675
 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 ""
 
-#: ../../mod/admin.php:674
+#: ../../mod/admin.php:676
 msgid "Proxy user"
 msgstr ""
 
-#: ../../mod/admin.php:675
+#: ../../mod/admin.php:677
 msgid "Proxy URL"
 msgstr ""
 
-#: ../../mod/admin.php:676
+#: ../../mod/admin.php:678
 msgid "Network timeout"
 msgstr ""
 
-#: ../../mod/admin.php:676
+#: ../../mod/admin.php:678
 msgid "Value is in seconds. Set to 0 for unlimited (not recommended)."
 msgstr ""
 
-#: ../../mod/admin.php:677
+#: ../../mod/admin.php:679
 msgid "Delivery interval"
 msgstr ""
 
-#: ../../mod/admin.php:677
+#: ../../mod/admin.php:679
 msgid ""
 "Delay background delivery processes by this many seconds to reduce system "
 "load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 "
 "for large dedicated servers."
 msgstr ""
 
-#: ../../mod/admin.php:678
+#: ../../mod/admin.php:680
 msgid "Poll interval"
 msgstr ""
 
-#: ../../mod/admin.php:678
+#: ../../mod/admin.php:680
 msgid ""
 "Delay background polling processes by this many seconds to reduce system "
 "load. If 0, use delivery interval."
 msgstr ""
 
-#: ../../mod/admin.php:679
+#: ../../mod/admin.php:681
 msgid "Maximum Load Average"
 msgstr ""
 
-#: ../../mod/admin.php:679
+#: ../../mod/admin.php:681
 msgid ""
 "Maximum system load before delivery and poll processes are deferred - "
 "default 50."
 msgstr ""
 
-#: ../../mod/admin.php:681
+#: ../../mod/admin.php:682
+msgid "Maximum Load Average (Frontend)"
+msgstr ""
+
+#: ../../mod/admin.php:682
+msgid "Maximum system load before the frontend quits service - default 50."
+msgstr ""
+
+#: ../../mod/admin.php:684
 msgid "Use MySQL full text engine"
 msgstr ""
 
-#: ../../mod/admin.php:681
+#: ../../mod/admin.php:684
 msgid ""
 "Activates the full text engine. Speeds up search - but can only search for "
 "four and more characters."
 msgstr ""
 
-#: ../../mod/admin.php:682
+#: ../../mod/admin.php:685
 msgid "Suppress Language"
 msgstr ""
 
-#: ../../mod/admin.php:682
+#: ../../mod/admin.php:685
 msgid "Suppress language information in meta information about a posting."
 msgstr ""
 
-#: ../../mod/admin.php:683
+#: ../../mod/admin.php:686
 msgid "Suppress Tags"
 msgstr ""
 
-#: ../../mod/admin.php:683
+#: ../../mod/admin.php:686
 msgid "Suppress showing a list of hashtags at the end of the posting."
 msgstr ""
 
-#: ../../mod/admin.php:684
+#: ../../mod/admin.php:687
 msgid "Path to item cache"
 msgstr ""
 
-#: ../../mod/admin.php:685
+#: ../../mod/admin.php:688
 msgid "Cache duration in seconds"
 msgstr ""
 
-#: ../../mod/admin.php:685
+#: ../../mod/admin.php:688
 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:689
 msgid "Maximum numbers of comments per post"
 msgstr ""
 
-#: ../../mod/admin.php:686
+#: ../../mod/admin.php:689
 msgid "How much comments should be shown for each post? Default value is 100."
 msgstr ""
 
-#: ../../mod/admin.php:687
+#: ../../mod/admin.php:690
 msgid "Path for lock file"
 msgstr ""
 
-#: ../../mod/admin.php:688
+#: ../../mod/admin.php:691
 msgid "Temp path"
 msgstr ""
 
-#: ../../mod/admin.php:689
+#: ../../mod/admin.php:692
 msgid "Base path to installation"
 msgstr ""
 
-#: ../../mod/admin.php:690
+#: ../../mod/admin.php:693
 msgid "Disable picture proxy"
 msgstr ""
 
-#: ../../mod/admin.php:690
+#: ../../mod/admin.php:693
 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:694
 msgid "Enable old style pager"
 msgstr ""
 
-#: ../../mod/admin.php:691
+#: ../../mod/admin.php:694
 msgid ""
 "The old style pager has page numbers but slows down massively the page speed."
 msgstr ""
 
-#: ../../mod/admin.php:692
+#: ../../mod/admin.php:695
 msgid "Only search in tags"
 msgstr ""
 
-#: ../../mod/admin.php:692
+#: ../../mod/admin.php:695
 msgid "On large systems the text search can slow down the system extremely."
 msgstr ""
 
-#: ../../mod/admin.php:694
+#: ../../mod/admin.php:697
 msgid "New base url"
 msgstr ""
 
-#: ../../mod/admin.php:711
+#: ../../mod/admin.php:714
 msgid "Update has been marked successful"
 msgstr ""
 
-#: ../../mod/admin.php:719
+#: ../../mod/admin.php:722
 #, php-format
 msgid "Database structure update %s was successfully applied."
 msgstr ""
 
-#: ../../mod/admin.php:722
+#: ../../mod/admin.php:725
 #, php-format
 msgid "Executing of database structure update %s failed with error: %s"
 msgstr ""
 
-#: ../../mod/admin.php:734
+#: ../../mod/admin.php:737
 #, php-format
 msgid "Executing %s failed with error: %s"
 msgstr ""
 
-#: ../../mod/admin.php:737
+#: ../../mod/admin.php:740
 #, php-format
 msgid "Update %s was successfully applied."
 msgstr ""
 
-#: ../../mod/admin.php:741
+#: ../../mod/admin.php:744
 #, php-format
 msgid "Update %s did not return a status. Unknown if it succeeded."
 msgstr ""
 
-#: ../../mod/admin.php:743
+#: ../../mod/admin.php:746
 #, php-format
 msgid "There was no additional update function %s that needed to be called."
 msgstr ""
 
-#: ../../mod/admin.php:762
+#: ../../mod/admin.php:765
 msgid "No failed updates."
 msgstr ""
 
-#: ../../mod/admin.php:763
+#: ../../mod/admin.php:766
 msgid "Check database structure"
 msgstr ""
 
-#: ../../mod/admin.php:768
+#: ../../mod/admin.php:771
 msgid "Failed Updates"
 msgstr ""
 
-#: ../../mod/admin.php:769
+#: ../../mod/admin.php:772
 msgid ""
 "This does not include updates prior to 1139, which did not return a status."
 msgstr ""
 
-#: ../../mod/admin.php:770
+#: ../../mod/admin.php:773
 msgid "Mark success (if update was manually applied)"
 msgstr ""
 
-#: ../../mod/admin.php:771
+#: ../../mod/admin.php:774
 msgid "Attempt to execute this update step automatically"
 msgstr ""
 
-#: ../../mod/admin.php:803
+#: ../../mod/admin.php:806
 #, php-format
 msgid ""
 "\n"
@@ -5690,7 +5703,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:809
 #, php-format
 msgid ""
 "\n"
@@ -5726,208 +5739,208 @@ msgid ""
 "\t\t\tThank you and welcome to %4$s."
 msgstr ""
 
-#: ../../mod/admin.php:850
+#: ../../mod/admin.php:853
 #, php-format
 msgid "%s user blocked/unblocked"
 msgid_plural "%s users blocked/unblocked"
 msgstr[0] ""
 msgstr[1] ""
 
-#: ../../mod/admin.php:857
+#: ../../mod/admin.php:860
 #, php-format
 msgid "%s user deleted"
 msgid_plural "%s users deleted"
 msgstr[0] ""
 msgstr[1] ""
 
-#: ../../mod/admin.php:896
+#: ../../mod/admin.php:899
 #, php-format
 msgid "User '%s' deleted"
 msgstr ""
 
-#: ../../mod/admin.php:904
+#: ../../mod/admin.php:907
 #, php-format
 msgid "User '%s' unblocked"
 msgstr ""
 
-#: ../../mod/admin.php:904
+#: ../../mod/admin.php:907
 #, php-format
 msgid "User '%s' blocked"
 msgstr ""
 
-#: ../../mod/admin.php:999
+#: ../../mod/admin.php:1002
 msgid "Add User"
 msgstr ""
 
-#: ../../mod/admin.php:1000
+#: ../../mod/admin.php:1003
 msgid "select all"
 msgstr ""
 
-#: ../../mod/admin.php:1001
+#: ../../mod/admin.php:1004
 msgid "User registrations waiting for confirm"
 msgstr ""
 
-#: ../../mod/admin.php:1002
+#: ../../mod/admin.php:1005
 msgid "User waiting for permanent deletion"
 msgstr ""
 
-#: ../../mod/admin.php:1003
+#: ../../mod/admin.php:1006
 msgid "Request date"
 msgstr ""
 
-#: ../../mod/admin.php:1004
+#: ../../mod/admin.php:1007
 msgid "No registrations."
 msgstr ""
 
-#: ../../mod/admin.php:1006
+#: ../../mod/admin.php:1009
 msgid "Deny"
 msgstr ""
 
-#: ../../mod/admin.php:1010
+#: ../../mod/admin.php:1013
 msgid "Site admin"
 msgstr ""
 
-#: ../../mod/admin.php:1011
+#: ../../mod/admin.php:1014
 msgid "Account expired"
 msgstr ""
 
-#: ../../mod/admin.php:1014
+#: ../../mod/admin.php:1017
 msgid "New User"
 msgstr ""
 
-#: ../../mod/admin.php:1015 ../../mod/admin.php:1016
+#: ../../mod/admin.php:1018 ../../mod/admin.php:1019
 msgid "Register date"
 msgstr ""
 
-#: ../../mod/admin.php:1015 ../../mod/admin.php:1016
+#: ../../mod/admin.php:1018 ../../mod/admin.php:1019
 msgid "Last login"
 msgstr ""
 
-#: ../../mod/admin.php:1015 ../../mod/admin.php:1016
+#: ../../mod/admin.php:1018 ../../mod/admin.php:1019
 msgid "Last item"
 msgstr ""
 
-#: ../../mod/admin.php:1015
+#: ../../mod/admin.php:1018
 msgid "Deleted since"
 msgstr ""
 
-#: ../../mod/admin.php:1018
+#: ../../mod/admin.php:1021
 msgid ""
 "Selected users will be deleted!\\n\\nEverything these users had posted on "
 "this site will be permanently deleted!\\n\\nAre you sure?"
 msgstr ""
 
-#: ../../mod/admin.php:1019
+#: ../../mod/admin.php:1022
 msgid ""
 "The user {0} will be deleted!\\n\\nEverything this user has posted on this "
 "site will be permanently deleted!\\n\\nAre you sure?"
 msgstr ""
 
-#: ../../mod/admin.php:1029
+#: ../../mod/admin.php:1032
 msgid "Name of the new user."
 msgstr ""
 
-#: ../../mod/admin.php:1030
+#: ../../mod/admin.php:1033
 msgid "Nickname"
 msgstr ""
 
-#: ../../mod/admin.php:1030
+#: ../../mod/admin.php:1033
 msgid "Nickname of the new user."
 msgstr ""
 
-#: ../../mod/admin.php:1031
+#: ../../mod/admin.php:1034
 msgid "Email address of the new user."
 msgstr ""
 
-#: ../../mod/admin.php:1064
+#: ../../mod/admin.php:1067
 #, php-format
 msgid "Plugin %s disabled."
 msgstr ""
 
-#: ../../mod/admin.php:1068
+#: ../../mod/admin.php:1071
 #, php-format
 msgid "Plugin %s enabled."
 msgstr ""
 
-#: ../../mod/admin.php:1078 ../../mod/admin.php:1294
+#: ../../mod/admin.php:1081 ../../mod/admin.php:1297
 msgid "Disable"
 msgstr ""
 
-#: ../../mod/admin.php:1080 ../../mod/admin.php:1296
+#: ../../mod/admin.php:1083 ../../mod/admin.php:1299
 msgid "Enable"
 msgstr ""
 
-#: ../../mod/admin.php:1103 ../../mod/admin.php:1324
+#: ../../mod/admin.php:1106 ../../mod/admin.php:1327
 msgid "Toggle"
 msgstr ""
 
-#: ../../mod/admin.php:1111 ../../mod/admin.php:1334
+#: ../../mod/admin.php:1114 ../../mod/admin.php:1337
 msgid "Author: "
 msgstr ""
 
-#: ../../mod/admin.php:1112 ../../mod/admin.php:1335
+#: ../../mod/admin.php:1115 ../../mod/admin.php:1338
 msgid "Maintainer: "
 msgstr ""
 
-#: ../../mod/admin.php:1254
+#: ../../mod/admin.php:1257
 msgid "No themes found."
 msgstr ""
 
-#: ../../mod/admin.php:1316
+#: ../../mod/admin.php:1319
 msgid "Screenshot"
 msgstr ""
 
-#: ../../mod/admin.php:1362
+#: ../../mod/admin.php:1365
 msgid "[Experimental]"
 msgstr ""
 
-#: ../../mod/admin.php:1363
+#: ../../mod/admin.php:1366
 msgid "[Unsupported]"
 msgstr ""
 
-#: ../../mod/admin.php:1390
+#: ../../mod/admin.php:1393
 msgid "Log settings updated."
 msgstr ""
 
-#: ../../mod/admin.php:1446
+#: ../../mod/admin.php:1449
 msgid "Clear"
 msgstr ""
 
-#: ../../mod/admin.php:1452
+#: ../../mod/admin.php:1455
 msgid "Enable Debugging"
 msgstr ""
 
-#: ../../mod/admin.php:1453
+#: ../../mod/admin.php:1456
 msgid "Log file"
 msgstr ""
 
-#: ../../mod/admin.php:1453
+#: ../../mod/admin.php:1456
 msgid ""
 "Must be writable by web server. Relative to your Friendica top-level "
 "directory."
 msgstr ""
 
-#: ../../mod/admin.php:1454
+#: ../../mod/admin.php:1457
 msgid "Log level"
 msgstr ""
 
-#: ../../mod/admin.php:1504
+#: ../../mod/admin.php:1507
 msgid "Close"
 msgstr ""
 
-#: ../../mod/admin.php:1510
+#: ../../mod/admin.php:1513
 msgid "FTP Host"
 msgstr ""
 
-#: ../../mod/admin.php:1511
+#: ../../mod/admin.php:1514
 msgid "FTP Path"
 msgstr ""
 
-#: ../../mod/admin.php:1512
+#: ../../mod/admin.php:1515
 msgid "FTP User"
 msgstr ""
 
-#: ../../mod/admin.php:1513
+#: ../../mod/admin.php:1516
 msgid "FTP Password"
 msgstr ""
 
@@ -6012,7 +6025,7 @@ msgstr ""
 msgid "Favourite Posts"
 msgstr ""
 
-#: ../../mod/network.php:463
+#: ../../mod/network.php:458
 #, php-format
 msgid "Warning: This group contains %s member from an insecure network."
 msgid_plural ""
@@ -6020,31 +6033,31 @@ msgid_plural ""
 msgstr[0] ""
 msgstr[1] ""
 
-#: ../../mod/network.php:466
+#: ../../mod/network.php:461
 msgid "Private messages to this group are at risk of public disclosure."
 msgstr ""
 
-#: ../../mod/network.php:520 ../../mod/content.php:119
+#: ../../mod/network.php:524 ../../mod/content.php:119
 msgid "No such group"
 msgstr ""
 
-#: ../../mod/network.php:537 ../../mod/content.php:130
+#: ../../mod/network.php:541 ../../mod/content.php:130
 msgid "Group is empty"
 msgstr ""
 
-#: ../../mod/network.php:544 ../../mod/content.php:134
+#: ../../mod/network.php:548 ../../mod/content.php:134
 msgid "Group: "
 msgstr ""
 
-#: ../../mod/network.php:554
+#: ../../mod/network.php:558
 msgid "Contact: "
 msgstr ""
 
-#: ../../mod/network.php:556
+#: ../../mod/network.php:560
 msgid "Private messages to this person are at risk of public disclosure."
 msgstr ""
 
-#: ../../mod/network.php:561
+#: ../../mod/network.php:565
 msgid "Invalid contact."
 msgstr ""
 
@@ -6262,7 +6275,11 @@ msgstr ""
 msgid "The post was created"
 msgstr ""
 
-#: ../../mod/follow.php:27
+#: ../../mod/follow.php:21
+msgid "You already added this contact."
+msgstr ""
+
+#: ../../mod/follow.php:103
 msgid "Contact added"
 msgstr ""
 
@@ -6567,6 +6584,10 @@ msgstr ""
 msgid "diaspora2bb: "
 msgstr ""
 
+#: ../../mod/p.php:9
+msgid "Not Extended"
+msgstr ""
+
 #: ../../mod/tagrm.php:41
 msgid "Tag removed"
 msgstr ""
@@ -6593,19 +6614,19 @@ msgstr ""
 msgid "Please enter your password for verification:"
 msgstr ""
 
-#: ../../mod/profperm.php:25 ../../mod/profperm.php:55
+#: ../../mod/profperm.php:25 ../../mod/profperm.php:56
 msgid "Invalid profile identifier."
 msgstr ""
 
-#: ../../mod/profperm.php:101
+#: ../../mod/profperm.php:102
 msgid "Profile Visibility Editor"
 msgstr ""
 
-#: ../../mod/profperm.php:114
+#: ../../mod/profperm.php:115
 msgid "Visible To"
 msgstr ""
 
-#: ../../mod/profperm.php:130
+#: ../../mod/profperm.php:131
 msgid "All Contacts (with secure profile access)"
 msgstr ""
 
@@ -6617,121 +6638,121 @@ msgstr ""
 msgid "No keywords to match. Please add keywords to your default profile."
 msgstr ""
 
-#: ../../mod/match.php:57
+#: ../../mod/match.php:62
 msgid "is interested in:"
 msgstr ""
 
-#: ../../mod/events.php:66
+#: ../../mod/events.php:68 ../../mod/events.php:70
 msgid "Event title and start time are required."
 msgstr ""
 
-#: ../../mod/events.php:291
+#: ../../mod/events.php:303
 msgid "l, F j"
 msgstr ""
 
-#: ../../mod/events.php:313
+#: ../../mod/events.php:325
 msgid "Edit event"
 msgstr ""
 
-#: ../../mod/events.php:371
+#: ../../mod/events.php:383
 msgid "Create New Event"
 msgstr ""
 
-#: ../../mod/events.php:372
+#: ../../mod/events.php:384
 msgid "Previous"
 msgstr ""
 
-#: ../../mod/events.php:373 ../../mod/install.php:207
+#: ../../mod/events.php:385 ../../mod/install.php:207
 msgid "Next"
 msgstr ""
 
-#: ../../mod/events.php:446
+#: ../../mod/events.php:458
 msgid "hour:minute"
 msgstr ""
 
-#: ../../mod/events.php:456
+#: ../../mod/events.php:468
 msgid "Event details"
 msgstr ""
 
-#: ../../mod/events.php:457
+#: ../../mod/events.php:469
 #, php-format
 msgid "Format is %s %s. Starting date and Title are required."
 msgstr ""
 
-#: ../../mod/events.php:459
+#: ../../mod/events.php:471
 msgid "Event Starts:"
 msgstr ""
 
-#: ../../mod/events.php:459 ../../mod/events.php:473
+#: ../../mod/events.php:471 ../../mod/events.php:485
 msgid "Required"
 msgstr ""
 
-#: ../../mod/events.php:462
+#: ../../mod/events.php:474
 msgid "Finish date/time is not known or not relevant"
 msgstr ""
 
-#: ../../mod/events.php:464
+#: ../../mod/events.php:476
 msgid "Event Finishes:"
 msgstr ""
 
-#: ../../mod/events.php:467
+#: ../../mod/events.php:479
 msgid "Adjust for viewer timezone"
 msgstr ""
 
-#: ../../mod/events.php:469
+#: ../../mod/events.php:481
 msgid "Description:"
 msgstr ""
 
-#: ../../mod/events.php:473
+#: ../../mod/events.php:485
 msgid "Title:"
 msgstr ""
 
-#: ../../mod/events.php:475
+#: ../../mod/events.php:487
 msgid "Share this event"
 msgstr ""
 
-#: ../../mod/ping.php:240
+#: ../../mod/ping.php:210 ../../mod/ping.php:234
 msgid "{0} wants to be your friend"
 msgstr ""
 
-#: ../../mod/ping.php:245
+#: ../../mod/ping.php:215 ../../mod/ping.php:239
 msgid "{0} sent you a message"
 msgstr ""
 
-#: ../../mod/ping.php:250
+#: ../../mod/ping.php:220 ../../mod/ping.php:244
 msgid "{0} requested registration"
 msgstr ""
 
-#: ../../mod/ping.php:256
+#: ../../mod/ping.php:250
 #, php-format
 msgid "{0} commented %s's post"
 msgstr ""
 
-#: ../../mod/ping.php:261
+#: ../../mod/ping.php:255
 #, php-format
 msgid "{0} liked %s's post"
 msgstr ""
 
-#: ../../mod/ping.php:266
+#: ../../mod/ping.php:260
 #, php-format
 msgid "{0} disliked %s's post"
 msgstr ""
 
-#: ../../mod/ping.php:271
+#: ../../mod/ping.php:265
 #, php-format
 msgid "{0} is now friends with %s"
 msgstr ""
 
-#: ../../mod/ping.php:276
+#: ../../mod/ping.php:270
 msgid "{0} posted"
 msgstr ""
 
-#: ../../mod/ping.php:281
+#: ../../mod/ping.php:275
 #, php-format
 msgid "{0} tagged %s's post with #%s"
 msgstr ""
 
-#: ../../mod/ping.php:287
+#: ../../mod/ping.php:281
 msgid "{0} mentioned you in a post"
 msgstr ""
 
@@ -7455,47 +7476,51 @@ msgstr ""
 msgid "Mirror as my own posting"
 msgstr ""
 
-#: ../../mod/crepair.php:166
+#: ../../mod/crepair.php:168
+msgid "Refetch contact data"
+msgstr ""
+
+#: ../../mod/crepair.php:170
 msgid "Account Nickname"
 msgstr ""
 
-#: ../../mod/crepair.php:167
+#: ../../mod/crepair.php:171
 msgid "@Tagname - overrides Name/Nickname"
 msgstr ""
 
-#: ../../mod/crepair.php:168
+#: ../../mod/crepair.php:172
 msgid "Account URL"
 msgstr ""
 
-#: ../../mod/crepair.php:169
+#: ../../mod/crepair.php:173
 msgid "Friend Request URL"
 msgstr ""
 
-#: ../../mod/crepair.php:170
+#: ../../mod/crepair.php:174
 msgid "Friend Confirm URL"
 msgstr ""
 
-#: ../../mod/crepair.php:171
+#: ../../mod/crepair.php:175
 msgid "Notification Endpoint URL"
 msgstr ""
 
-#: ../../mod/crepair.php:172
+#: ../../mod/crepair.php:176
 msgid "Poll/Feed URL"
 msgstr ""
 
-#: ../../mod/crepair.php:173
+#: ../../mod/crepair.php:177
 msgid "New photo from this URL"
 msgstr ""
 
-#: ../../mod/crepair.php:174
+#: ../../mod/crepair.php:178
 msgid "Remote Self"
 msgstr ""
 
-#: ../../mod/crepair.php:176
+#: ../../mod/crepair.php:180
 msgid "Mirror postings from this contact"
 msgstr ""
 
-#: ../../mod/crepair.php:176
+#: ../../mod/crepair.php:180
 msgid ""
 "Mark this contact as remote_self, this will cause friendica to repost new "
 "entries from this contact."
@@ -7698,7 +7723,7 @@ msgstr ""
 msgid "Make this post private"
 msgstr ""
 
-#: ../../mod/display.php:496
+#: ../../mod/display.php:498
 msgid "Item has been removed."
 msgstr ""
 
@@ -7743,47 +7768,47 @@ msgstr ""
 msgid "Introduction failed or was revoked."
 msgstr ""
 
-#: ../../mod/dfrn_confirm.php:429
+#: ../../mod/dfrn_confirm.php:430
 msgid "Unable to set contact photo."
 msgstr ""
 
-#: ../../mod/dfrn_confirm.php:571
+#: ../../mod/dfrn_confirm.php:572
 #, php-format
 msgid "No user record found for '%s' "
 msgstr ""
 
-#: ../../mod/dfrn_confirm.php:581
+#: ../../mod/dfrn_confirm.php:582
 msgid "Our site encryption key is apparently messed up."
 msgstr ""
 
-#: ../../mod/dfrn_confirm.php:592
+#: ../../mod/dfrn_confirm.php:593
 msgid "Empty site URL was provided or URL could not be decrypted by us."
 msgstr ""
 
-#: ../../mod/dfrn_confirm.php:613
+#: ../../mod/dfrn_confirm.php:614
 msgid "Contact record was not found for you on our site."
 msgstr ""
 
-#: ../../mod/dfrn_confirm.php:627
+#: ../../mod/dfrn_confirm.php:628
 #, php-format
 msgid "Site public key not available in contact record for URL %s."
 msgstr ""
 
-#: ../../mod/dfrn_confirm.php:647
+#: ../../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:658
+#: ../../mod/dfrn_confirm.php:659
 msgid "Unable to set your contact credentials on our system."
 msgstr ""
 
-#: ../../mod/dfrn_confirm.php:725
+#: ../../mod/dfrn_confirm.php:726
 msgid "Unable to update your contact profile details on our system"
 msgstr ""
 
-#: ../../mod/dfrn_confirm.php:797
+#: ../../mod/dfrn_confirm.php:798
 #, php-format
 msgid "%1$s has joined %2$s"
 msgstr ""
index 0ceda68133f4c4e7c52525ce2f48be01c7d3d97a..75f85786a846874d3131865637e1ba7a89945d36 100755 (executable)
@@ -12,7 +12,7 @@ then
 fi
 
 if [ $ADDONMODE ]
-then 
+then
        cd "$FULLPATH/../addon/$ADDONNAME"
        mkdir -p "$FULLPATH/../addon/$ADDONNAME/lang/C"
        OUTFILE="$FULLPATH/../addon/$ADDONNAME/lang/C/messages.po"
@@ -23,7 +23,7 @@ else
        OUTFILE="$FULLPATH/messages.po"
        FINDSTARTDIR="../../"
        # skip addon folder
-       FINDOPTS="-wholename */addon -prune -o"
+       FINDOPTS="( -wholename */addon -or -wholename */smarty3 ) -prune -o"
 fi
 
 F9KVERSION=$(sed -n "s/.*'FRIENDICA_VERSION'.*'\([0-9.]*\)'.*/\1/p" ../../boot.php);
@@ -45,7 +45,7 @@ done
 
 echo "setup base info.."
 if [ $ADDONMODE ]
-then 
+then
        sed -i "s/SOME DESCRIPTIVE TITLE./ADDON $ADDONNAME/g" "$OUTFILE"
        sed -i "s/YEAR THE PACKAGE'S COPYRIGHT HOLDER//g" "$OUTFILE"
        sed -i "s/FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.//g" "$OUTFILE"
index 860087e670392c1598c3e78f72d0616d413397d6..45a754c5d3797bb46ddb49eecc3192b4b8dd862f 100644 (file)
@@ -30,8 +30,8 @@ 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-04-25 08:59+0000\n"
+"POT-Creation-Date: 2015-05-21 10:43+0200\n"
+"PO-Revision-Date: 2015-05-22 14:55+0000\n"
 "Last-Translator: bavatar <tobias.diekershoff@gmx.net>\n"
 "Language-Team: German (http://www.transifex.com/projects/p/friendica/language/de/)\n"
 "MIME-Version: 1.0\n"
@@ -46,15 +46,15 @@ msgstr ""
 #: ../../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
+#: ../../object/Item.php:681 ../../mod/contacts.php:562
 #: ../../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/invite.php:140 ../../mod/events.php:491 ../../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/install.php:286 ../../mod/crepair.php:190
 #: ../../mod/content.php:710 ../../mod/poke.php:199 ../../mod/localtime.php:45
 msgid "Submit"
 msgstr "Senden"
@@ -90,7 +90,7 @@ msgstr "Farbschema"
 msgid "Set style"
 msgstr "Stil auswählen"
 
-#: ../../view/theme/duepuntozero/config.php:44 ../../include/text.php:1719
+#: ../../view/theme/duepuntozero/config.php:44 ../../include/text.php:1729
 #: ../../include/user.php:247
 msgid "default"
 msgstr "Standard"
@@ -225,9 +225,9 @@ msgstr "Pinnwand"
 msgid "Your posts and conversations"
 msgstr "Deine Beiträge und Unterhaltungen"
 
-#: ../../view/theme/diabook/theme.php:124 ../../boot.php:2133
+#: ../../view/theme/diabook/theme.php:124 ../../boot.php:2132
 #: ../../include/profile_advanced.php:7 ../../include/profile_advanced.php:87
-#: ../../include/nav.php:77 ../../mod/profperm.php:103
+#: ../../include/nav.php:77 ../../mod/profperm.php:104
 #: ../../mod/newmember.php:32
 msgid "Profile"
 msgstr "Profil"
@@ -236,8 +236,8 @@ msgstr "Profil"
 msgid "Your profile page"
 msgstr "Deine Profilseite"
 
-#: ../../view/theme/diabook/theme.php:125 ../../include/nav.php:177
-#: ../../mod/contacts.php:718
+#: ../../view/theme/diabook/theme.php:125 ../../include/nav.php:178
+#: ../../mod/contacts.php:788
 msgid "Contacts"
 msgstr "Kontakte"
 
@@ -245,7 +245,7 @@ msgstr "Kontakte"
 msgid "Your contacts"
 msgstr "Deine Kontakte"
 
-#: ../../view/theme/diabook/theme.php:126 ../../boot.php:2140
+#: ../../view/theme/diabook/theme.php:126 ../../boot.php:2139
 #: ../../include/nav.php:78 ../../mod/fbrowser.php:25
 msgid "Photos"
 msgstr "Bilder"
@@ -254,8 +254,8 @@ msgstr "Bilder"
 msgid "Your photos"
 msgstr "Deine Fotos"
 
-#: ../../view/theme/diabook/theme.php:127 ../../boot.php:2157
-#: ../../include/nav.php:80 ../../mod/events.php:370
+#: ../../view/theme/diabook/theme.php:127 ../../boot.php:2156
+#: ../../include/nav.php:80 ../../mod/events.php:382
 msgid "Events"
 msgstr "Veranstaltungen"
 
@@ -277,12 +277,12 @@ msgid "Community"
 msgstr "Gemeinschaft"
 
 #: ../../view/theme/diabook/theme.php:463 ../../include/conversation.php:118
-#: ../../include/conversation.php:245 ../../include/text.php:1983
+#: ../../include/conversation.php:245 ../../include/text.php:1993
 msgid "event"
 msgstr "Veranstaltung"
 
 #: ../../view/theme/diabook/theme.php:466
-#: ../../view/theme/diabook/theme.php:475 ../../include/diaspora.php:2011
+#: ../../view/theme/diabook/theme.php:475 ../../include/diaspora.php:2060
 #: ../../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
@@ -290,14 +290,14 @@ msgstr "Veranstaltung"
 msgid "status"
 msgstr "Status"
 
-#: ../../view/theme/diabook/theme.php:471 ../../include/diaspora.php:2011
+#: ../../view/theme/diabook/theme.php:471 ../../include/diaspora.php:2060
 #: ../../include/conversation.php:126 ../../include/conversation.php:253
-#: ../../include/text.php:1985 ../../mod/like.php:149
+#: ../../include/text.php:1995 ../../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
+#: ../../view/theme/diabook/theme.php:480 ../../include/diaspora.php:2076
 #: ../../include/conversation.php:137 ../../mod/like.php:166
 #, php-format
 msgid "%1$s likes %2$s's %3$s"
@@ -342,8 +342,8 @@ msgid "Invite Friends"
 msgstr "Freunde einladen"
 
 #: ../../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
+#: ../../view/theme/diabook/theme.php:648 ../../include/nav.php:173
+#: ../../mod/settings.php:90 ../../mod/admin.php:1107 ../../mod/admin.php:1328
 #: ../../mod/newmember.php:22
 msgid "Settings"
 msgstr "Einstellungen"
@@ -380,40 +380,42 @@ msgstr "Schriftgröße in Eingabefeldern"
 msgid "Set colour scheme"
 msgstr "Farbschema wählen"
 
-#: ../../index.php:211 ../../mod/apps.php:7
+#: ../../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."
 
-#: ../../index.php:255 ../../mod/help.php:42
+#: ../../index.php:269 ../../mod/p.php:16 ../../mod/p.php:25
+#: ../../mod/help.php:42
 msgid "Not Found"
 msgstr "Nicht gefunden"
 
-#: ../../index.php:258 ../../mod/help.php:45
+#: ../../index.php:272 ../../mod/help.php:45
 msgid "Page not found."
 msgstr "Seite nicht gefunden."
 
-#: ../../index.php:367 ../../mod/group.php:72 ../../mod/profperm.php:19
+#: ../../index.php:381 ../../mod/group.php:72 ../../mod/profperm.php:19
 msgid "Permission denied"
 msgstr "Zugriff verweigert"
 
-#: ../../index.php:368 ../../include/items.php:4815 ../../mod/attach.php:33
+#: ../../index.php:382 ../../include/items.php:4838 ../../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/settings.php:107 ../../mod/settings.php:608
+#: ../../mod/contacts.php:322 ../../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/photos.php:1050 ../../mod/follow.php:9 ../../mod/follow.php:39
+#: ../../mod/follow.php:78 ../../mod/uimport.php:23 ../../mod/invite.php:15
+#: ../../mod/invite.php:101 ../../mod/events.php:152 ../../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/display.php:501 ../../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
@@ -421,53 +423,22 @@ msgstr "Zugriff verweigert"
 msgid "Permission denied."
 msgstr "Zugriff verweigert."
 
-#: ../../index.php:427
+#: ../../index.php:441
 msgid "toggle mobile"
 msgstr "auf/von Mobile Ansicht wechseln"
 
-#: ../../addon-wrk/openidserver/lib/render/trust.php:30
-#, php-format
-msgid "Do you wish to confirm your identity (<tt>%s</tt>) with <tt>%s</tt>"
-msgstr "Möchtest du deine Identität (<tt>%s</tt> mit <tt>%s</tt> bestätigen"
-
-#: ../../addon-wrk/openidserver/lib/render/trust.php:43
-#: ../../mod/dfrn_request.php:676
-msgid "Confirm"
-msgstr "Bestätigen"
-
-#: ../../addon-wrk/openidserver/lib/render/trust.php:44
-msgid "Do not confirm"
-msgstr "Nicht bestätigen"
-
-#: ../../addon-wrk/openidserver/lib/render/trust.php:48
-msgid "Trust This Site"
-msgstr "Dieser Seite vertrauen"
-
-#: ../../addon-wrk/openidserver/lib/render/trust.php:53
-msgid "No Identifier Sent"
-msgstr "Keine Identifikation gesendet"
-
-#: ../../addon-wrk/openidserver/lib/render/wronguser.php:5
-msgid "Requested identity don't match logged in user."
-msgstr "Die angeforderte Identität stimmt nicht mit dem angemeldeten Nutzer überein."
-
-#: ../../addon-wrk/openidserver/lib/render.php:27
-#, php-format
-msgid "Please wait; you are being redirected to <%s>"
-msgstr "Bitte warten, Du wirst nach <%s> umgeleitet."
-
 #: ../../boot.php:749
 msgid "Delete this item?"
 msgstr "Diesen Beitrag löschen?"
 
-#: ../../boot.php:750 ../../object/Item.php:361 ../../object/Item.php:677
+#: ../../boot.php:750 ../../object/Item.php:364 ../../object/Item.php:680
 #: ../../mod/photos.php:1564 ../../mod/photos.php:1608
 #: ../../mod/photos.php:1696 ../../mod/content.php:709
 msgid "Comment"
 msgstr "Kommentar"
 
 #: ../../boot.php:751 ../../include/contact_widgets.php:205
-#: ../../object/Item.php:390 ../../mod/content.php:606
+#: ../../object/Item.php:393 ../../mod/content.php:606
 msgid "show more"
 msgstr "mehr anzeigen"
 
@@ -550,7 +521,7 @@ msgid "Edit profile"
 msgstr "Profil bearbeiten"
 
 #: ../../boot.php:1557 ../../include/contact_widgets.php:10
-#: ../../mod/suggest.php:90 ../../mod/match.php:58
+#: ../../mod/suggest.php:90 ../../mod/match.php:63
 msgid "Connect"
 msgstr "Verbinden"
 
@@ -558,7 +529,7 @@ msgstr "Verbinden"
 msgid "Message"
 msgstr "Nachricht"
 
-#: ../../boot.php:1595 ../../include/nav.php:175
+#: ../../boot.php:1595 ../../include/nav.php:176
 msgid "Profiles"
 msgstr "Profile"
 
@@ -586,8 +557,8 @@ msgstr "sichtbar für jeden"
 msgid "Edit visibility"
 msgstr "Sichtbarkeit bearbeiten"
 
-#: ../../boot.php:1637 ../../include/event.php:40
-#: ../../include/bb2diaspora.php:155 ../../mod/events.php:471
+#: ../../boot.php:1637 ../../include/event.php:42
+#: ../../include/bb2diaspora.php:155 ../../mod/events.php:483
 #: ../../mod/directory.php:136
 msgid "Location:"
 msgstr "Ort:"
@@ -612,71 +583,71 @@ msgstr "Homepage:"
 msgid "About:"
 msgstr "Über:"
 
-#: ../../boot.php:1711
+#: ../../boot.php:1710
 msgid "Network:"
 msgstr "Netzwerk"
 
-#: ../../boot.php:1743 ../../boot.php:1829
+#: ../../boot.php:1742 ../../boot.php:1828
 msgid "g A l F d"
 msgstr "l, d. F G \\U\\h\\r"
 
-#: ../../boot.php:1744 ../../boot.php:1830
+#: ../../boot.php:1743 ../../boot.php:1829
 msgid "F d"
 msgstr "d. F"
 
-#: ../../boot.php:1789 ../../boot.php:1877
+#: ../../boot.php:1788 ../../boot.php:1876
 msgid "[today]"
 msgstr "[heute]"
 
-#: ../../boot.php:1801
+#: ../../boot.php:1800
 msgid "Birthday Reminders"
 msgstr "Geburtstagserinnerungen"
 
-#: ../../boot.php:1802
+#: ../../boot.php:1801
 msgid "Birthdays this week:"
 msgstr "Geburtstage diese Woche:"
 
-#: ../../boot.php:1864
+#: ../../boot.php:1863
 msgid "[No description]"
 msgstr "[keine Beschreibung]"
 
-#: ../../boot.php:1888
+#: ../../boot.php:1887
 msgid "Event Reminders"
 msgstr "Veranstaltungserinnerungen"
 
-#: ../../boot.php:1889
+#: ../../boot.php:1888
 msgid "Events this week:"
 msgstr "Veranstaltungen diese Woche"
 
-#: ../../boot.php:2126 ../../include/nav.php:76
+#: ../../boot.php:2125 ../../include/nav.php:76
 msgid "Status"
 msgstr "Status"
 
-#: ../../boot.php:2129
+#: ../../boot.php:2128
 msgid "Status Messages and Posts"
 msgstr "Statusnachrichten und Beiträge"
 
-#: ../../boot.php:2136
+#: ../../boot.php:2135
 msgid "Profile Details"
 msgstr "Profildetails"
 
-#: ../../boot.php:2143 ../../mod/photos.php:52
+#: ../../boot.php:2142 ../../mod/photos.php:52
 msgid "Photo Albums"
 msgstr "Fotoalben"
 
-#: ../../boot.php:2147 ../../boot.php:2150 ../../include/nav.php:79
+#: ../../boot.php:2146 ../../boot.php:2149 ../../include/nav.php:79
 msgid "Videos"
 msgstr "Videos"
 
-#: ../../boot.php:2160
+#: ../../boot.php:2159
 msgid "Events and Calendar"
 msgstr "Ereignisse und Kalender"
 
-#: ../../boot.php:2164 ../../mod/notes.php:44
+#: ../../boot.php:2163 ../../mod/notes.php:44
 msgid "Personal Notes"
 msgstr "Persönliche Notizen"
 
-#: ../../boot.php:2167
+#: ../../boot.php:2166
 msgid "Only You Can See This"
 msgstr "Nur Du kannst das sehen"
 
@@ -854,57 +825,57 @@ 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/items.php:2307 ../../include/datetime.php:477
+#: ../../include/items.php:2330 ../../include/datetime.php:477
 #, php-format
 msgid "%s's birthday"
 msgstr "%ss Geburtstag"
 
-#: ../../include/items.php:2308 ../../include/datetime.php:478
+#: ../../include/items.php:2331 ../../include/datetime.php:478
 #, php-format
 msgid "Happy Birthday %s"
 msgstr "Herzlichen Glückwunsch %s"
 
-#: ../../include/items.php:4111 ../../mod/dfrn_request.php:717
-#: ../../mod/dfrn_confirm.php:752
+#: ../../include/items.php:4135 ../../mod/dfrn_request.php:732
+#: ../../mod/dfrn_confirm.php:753
 msgid "[Name Withheld]"
 msgstr "[Name unterdrückt]"
 
-#: ../../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
+#: ../../include/items.php:4642 ../../mod/admin.php:169
+#: ../../mod/admin.php:1055 ../../mod/admin.php:1268 ../../mod/viewsrc.php:15
+#: ../../mod/notice.php:15 ../../mod/display.php:82 ../../mod/display.php:286
+#: ../../mod/display.php:505
 msgid "Item not found."
 msgstr "Beitrag nicht gefunden."
 
-#: ../../include/items.php:4658
+#: ../../include/items.php:4681
 msgid "Do you really want to delete this item?"
 msgstr "Möchtest Du wirklich dieses Item löschen?"
 
-#: ../../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
+#: ../../include/items.php:4683 ../../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:1106
+#: ../../mod/settings.php:1107 ../../mod/settings.php:1108
+#: ../../mod/settings.php:1109 ../../mod/settings.php:1110
+#: ../../mod/contacts.php:411 ../../mod/register.php:233
+#: ../../mod/dfrn_request.php:845 ../../mod/api.php:105
+#: ../../mod/suggest.php:29 ../../mod/follow.php:54 ../../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
+#: ../../include/items.php:4686 ../../include/conversation.php:1128
+#: ../../mod/settings.php:622 ../../mod/settings.php:648
+#: ../../mod/contacts.php:414 ../../mod/editpost.php:148
+#: ../../mod/dfrn_request.php:859 ../../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
+#: ../../mod/photos.php:203 ../../mod/photos.php:292 ../../mod/follow.php:65
+#: ../../mod/tagrm.php:11 ../../mod/tagrm.php:94 ../../mod/message.php:212
 msgid "Cancel"
 msgstr "Abbrechen"
 
-#: ../../include/items.php:4881
+#: ../../include/items.php:4904
 msgid "Archives"
 msgstr "Archiv"
 
@@ -939,18 +910,22 @@ msgstr "Gruppe bearbeiten"
 msgid "Create a new group"
 msgstr "Neue Gruppe erstellen"
 
-#: ../../include/group.php:273
+#: ../../include/group.php:273 ../../mod/group.php:94 ../../mod/group.php:180
+msgid "Group Name: "
+msgstr "Gruppenname:"
+
+#: ../../include/group.php:275
 msgid "Contacts not in any group"
 msgstr "Kontakte in keiner Gruppe"
 
-#: ../../include/group.php:275 ../../mod/network.php:195
+#: ../../include/group.php:277 ../../mod/network.php:195
 msgid "add"
 msgstr "hinzufügen"
 
 #: ../../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/Photo.php:951 ../../include/Photo.php:966
+#: ../../include/Photo.php:973 ../../include/Photo.php:995
 #: ../../include/message.php:144 ../../mod/wall_upload.php:169
 #: ../../mod/wall_upload.php:178 ../../mod/wall_upload.php:185
 #: ../../mod/item.php:485
@@ -997,7 +972,7 @@ msgstr "Verbinden/Folgen"
 msgid "Examples: Robert Morgenstein, Fishing"
 msgstr "Beispiel: Robert Morgenstein, Angeln"
 
-#: ../../include/contact_widgets.php:34 ../../mod/contacts.php:724
+#: ../../include/contact_widgets.php:34 ../../mod/contacts.php:794
 #: ../../mod/directory.php:63
 msgid "Find"
 msgstr "Finde"
@@ -1022,7 +997,7 @@ msgstr "Alles"
 msgid "Categories"
 msgstr "Kategorien"
 
-#: ../../include/contact_widgets.php:200 ../../mod/contacts.php:439
+#: ../../include/contact_widgets.php:200 ../../mod/contacts.php:509
 #, php-format
 msgid "%d contact in common"
 msgid_plural "%d contacts in common"
@@ -1052,233 +1027,233 @@ msgstr "noreply"
 msgid "%s <!item_type!>"
 msgstr "%s <!item_type!>"
 
-#: ../../include/enotify.php:68
+#: ../../include/enotify.php:78
 #, php-format
 msgid "[Friendica:Notify] New mail received at %s"
 msgstr "[Friendica-Meldung] Neue Nachricht erhalten von %s"
 
-#: ../../include/enotify.php:70
+#: ../../include/enotify.php:80
 #, php-format
 msgid "%1$s sent you a new private message at %2$s."
 msgstr "%1$s hat Dir eine neue private Nachricht auf %2$s geschickt."
 
-#: ../../include/enotify.php:71
+#: ../../include/enotify.php:81
 #, php-format
 msgid "%1$s sent you %2$s."
 msgstr "%1$s schickte Dir %2$s."
 
-#: ../../include/enotify.php:71
+#: ../../include/enotify.php:81
 msgid "a private message"
 msgstr "eine private Nachricht"
 
-#: ../../include/enotify.php:72
+#: ../../include/enotify.php:82
 #, php-format
 msgid "Please visit %s to view and/or reply to your private messages."
 msgstr "Bitte besuche %s, um Deine privaten Nachrichten anzusehen und/oder zu beantworten."
 
-#: ../../include/enotify.php:124
+#: ../../include/enotify.php:134
 #, php-format
 msgid "%1$s commented on [url=%2$s]a %3$s[/url]"
 msgstr "%1$s kommentierte [url=%2$s]a %3$s[/url]"
 
-#: ../../include/enotify.php:131
+#: ../../include/enotify.php:141
 #, php-format
 msgid "%1$s commented on [url=%2$s]%3$s's %4$s[/url]"
 msgstr "%1$s kommentierte [url=%2$s]%3$ss %4$s[/url]"
 
-#: ../../include/enotify.php:139
+#: ../../include/enotify.php:149
 #, php-format
 msgid "%1$s commented on [url=%2$s]your %3$s[/url]"
 msgstr "%1$s kommentierte [url=%2$s]Deinen %3$s[/url]"
 
-#: ../../include/enotify.php:149
+#: ../../include/enotify.php:159
 #, php-format
 msgid "[Friendica:Notify] Comment to conversation #%1$d by %2$s"
 msgstr "[Friendica-Meldung] Kommentar zum Beitrag #%1$d von %2$s"
 
-#: ../../include/enotify.php:150
+#: ../../include/enotify.php:160
 #, php-format
 msgid "%s commented on an item/conversation you have been following."
 msgstr "%s hat einen Beitrag kommentiert, dem Du folgst."
 
-#: ../../include/enotify.php:153 ../../include/enotify.php:168
-#: ../../include/enotify.php:181 ../../include/enotify.php:194
-#: ../../include/enotify.php:212 ../../include/enotify.php:225
+#: ../../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 "Bitte besuche %s, um die Konversation anzusehen und/oder zu kommentieren."
 
-#: ../../include/enotify.php:160
+#: ../../include/enotify.php:170
 #, php-format
 msgid "[Friendica:Notify] %s posted to your profile wall"
 msgstr "[Friendica-Meldung] %s hat auf Deine Pinnwand geschrieben"
 
-#: ../../include/enotify.php:162
+#: ../../include/enotify.php:172
 #, php-format
 msgid "%1$s posted to your profile wall at %2$s"
 msgstr "%1$s schrieb auf %2$s auf Deine Pinnwand"
 
-#: ../../include/enotify.php:164
+#: ../../include/enotify.php:174
 #, php-format
 msgid "%1$s posted to [url=%2$s]your wall[/url]"
 msgstr "%1$s hat etwas auf [url=%2$s]Deiner Pinnwand[/url] gepostet"
 
-#: ../../include/enotify.php:175
+#: ../../include/enotify.php:185
 #, php-format
 msgid "[Friendica:Notify] %s tagged you"
 msgstr "[Friendica-Meldung] %s hat Dich erwähnt"
 
-#: ../../include/enotify.php:176
+#: ../../include/enotify.php:186
 #, php-format
 msgid "%1$s tagged you at %2$s"
 msgstr "%1$s erwähnte Dich auf %2$s"
 
-#: ../../include/enotify.php:177
+#: ../../include/enotify.php:187
 #, php-format
 msgid "%1$s [url=%2$s]tagged you[/url]."
 msgstr "%1$s [url=%2$s]erwähnte Dich[/url]."
 
-#: ../../include/enotify.php:188
+#: ../../include/enotify.php:198
 #, php-format
 msgid "[Friendica:Notify] %s shared a new post"
 msgstr "[Friendica Benachrichtigung] %s hat einen Beitrag geteilt"
 
-#: ../../include/enotify.php:189
+#: ../../include/enotify.php:199
 #, php-format
 msgid "%1$s shared a new post at %2$s"
 msgstr "%1$s hat einen neuen Beitrag auf %2$s geteilt"
 
-#: ../../include/enotify.php:190
+#: ../../include/enotify.php:200
 #, php-format
 msgid "%1$s [url=%2$s]shared a post[/url]."
 msgstr "%1$s [url=%2$s]hat einen Beitrag geteilt[/url]."
 
-#: ../../include/enotify.php:202
+#: ../../include/enotify.php:212
 #, php-format
 msgid "[Friendica:Notify] %1$s poked you"
 msgstr "[Friendica-Meldung] %1$s hat Dich angestupst"
 
-#: ../../include/enotify.php:203
+#: ../../include/enotify.php:213
 #, php-format
 msgid "%1$s poked you at %2$s"
 msgstr "%1$s hat Dich auf %2$s angestupst"
 
-#: ../../include/enotify.php:204
+#: ../../include/enotify.php:214
 #, php-format
 msgid "%1$s [url=%2$s]poked you[/url]."
 msgstr "%1$s [url=%2$s]hat Dich angestupst[/url]."
 
-#: ../../include/enotify.php:219
+#: ../../include/enotify.php:229
 #, php-format
 msgid "[Friendica:Notify] %s tagged your post"
 msgstr "[Friendica-Meldung] %s hat Deinen Beitrag getaggt"
 
-#: ../../include/enotify.php:220
+#: ../../include/enotify.php:230
 #, php-format
 msgid "%1$s tagged your post at %2$s"
 msgstr "%1$s erwähnte Deinen Beitrag auf %2$s"
 
-#: ../../include/enotify.php:221
+#: ../../include/enotify.php:231
 #, php-format
 msgid "%1$s tagged [url=%2$s]your post[/url]"
 msgstr "%1$s erwähnte [url=%2$s]Deinen Beitrag[/url]"
 
-#: ../../include/enotify.php:232
+#: ../../include/enotify.php:242
 msgid "[Friendica:Notify] Introduction received"
 msgstr "[Friendica-Meldung] Kontaktanfrage erhalten"
 
-#: ../../include/enotify.php:233
+#: ../../include/enotify.php:243
 #, php-format
 msgid "You've received an introduction from '%1$s' at %2$s"
 msgstr "Du hast eine Kontaktanfrage von '%1$s' auf %2$s erhalten"
 
-#: ../../include/enotify.php:234
+#: ../../include/enotify.php:244
 #, php-format
 msgid "You've received [url=%1$s]an introduction[/url] from %2$s."
 msgstr "Du hast eine [url=%1$s]Kontaktanfrage[/url] von %2$s erhalten."
 
-#: ../../include/enotify.php:237 ../../include/enotify.php:279
+#: ../../include/enotify.php:247 ../../include/enotify.php:289
 #, php-format
 msgid "You may visit their profile at %s"
 msgstr "Hier kannst Du das Profil betrachten: %s"
 
-#: ../../include/enotify.php:239
+#: ../../include/enotify.php:249
 #, php-format
 msgid "Please visit %s to approve or reject the introduction."
 msgstr "Bitte besuche %s, um die Kontaktanfrage anzunehmen oder abzulehnen."
 
-#: ../../include/enotify.php:247
+#: ../../include/enotify.php:257
 msgid "[Friendica:Notify] A new person is sharing with you"
 msgstr "[Friendica Benachrichtigung] Eine neue Person teilt mit Dir"
 
-#: ../../include/enotify.php:248 ../../include/enotify.php:249
+#: ../../include/enotify.php:258 ../../include/enotify.php:259
 #, php-format
 msgid "%1$s is sharing with you at %2$s"
 msgstr "%1$s teilt mit Dir auf %2$s"
 
-#: ../../include/enotify.php:255
+#: ../../include/enotify.php:265
 msgid "[Friendica:Notify] You have a new follower"
 msgstr "[Friendica Benachrichtigung] Du hast einen neuen Kontakt auf "
 
-#: ../../include/enotify.php:256 ../../include/enotify.php:257
+#: ../../include/enotify.php:266 ../../include/enotify.php:267
 #, php-format
 msgid "You have a new follower at %2$s : %1$s"
 msgstr "Du hast einen neuen Kontakt auf %2$s: %1$s"
 
-#: ../../include/enotify.php:270
+#: ../../include/enotify.php:280
 msgid "[Friendica:Notify] Friend suggestion received"
 msgstr "[Friendica-Meldung] Kontaktvorschlag erhalten"
 
-#: ../../include/enotify.php:271
+#: ../../include/enotify.php:281
 #, php-format
 msgid "You've received a friend suggestion from '%1$s' at %2$s"
 msgstr "Du hast einen Freunde-Vorschlag von '%1$s' auf %2$s erhalten"
 
-#: ../../include/enotify.php:272
+#: ../../include/enotify.php:282
 #, php-format
 msgid ""
 "You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s."
 msgstr "Du hast einen [url=%1$s]Freunde-Vorschlag[/url] %2$s von %3$s erhalten."
 
-#: ../../include/enotify.php:277
+#: ../../include/enotify.php:287
 msgid "Name:"
 msgstr "Name:"
 
-#: ../../include/enotify.php:278
+#: ../../include/enotify.php:288
 msgid "Photo:"
 msgstr "Foto:"
 
-#: ../../include/enotify.php:281
+#: ../../include/enotify.php:291
 #, php-format
 msgid "Please visit %s to approve or reject the suggestion."
 msgstr "Bitte besuche %s, um den Vorschlag zu akzeptieren oder abzulehnen."
 
-#: ../../include/enotify.php:289 ../../include/enotify.php:302
+#: ../../include/enotify.php:299 ../../include/enotify.php:312
 msgid "[Friendica:Notify] Connection accepted"
 msgstr "[Friendica-Benachrichtigung] Kontaktanfrage bestätigt"
 
-#: ../../include/enotify.php:290 ../../include/enotify.php:303
+#: ../../include/enotify.php:300 ../../include/enotify.php:313
 #, php-format
 msgid "'%1$s' has acepted your connection request at %2$s"
 msgstr "'%1$s' hat Deine Kontaktanfrage auf  %2$s bestätigt"
 
-#: ../../include/enotify.php:291 ../../include/enotify.php:304
+#: ../../include/enotify.php:301 ../../include/enotify.php:314
 #, php-format
 msgid "%2$s has accepted your [url=%1$s]connection request[/url]."
 msgstr "%2$s hat Deine [url=%1$s]Kontaktanfrage[/url] akzeptiert."
 
-#: ../../include/enotify.php:294
+#: ../../include/enotify.php:304
 msgid ""
 "You are now mutual friends and may exchange status updates, photos, and email\n"
 "\twithout restriction."
 msgstr "Ihr seit nun beidseitige Freunde und könnt Statusmitteilungen, Bilder und Emails ohne Einschränkungen austauschen."
 
-#: ../../include/enotify.php:297 ../../include/enotify.php:311
+#: ../../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 "Bitte besuche %s, wenn Du Änderungen an eurer Beziehung vornehmen willst."
 
-#: ../../include/enotify.php:307
+#: ../../include/enotify.php:317
 #, php-format
 msgid ""
 "'%1$s' has chosen to accept you a \"fan\", which restricts some forms of "
@@ -1287,83 +1262,83 @@ msgid ""
 "automatically."
 msgstr "'%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."
 
-#: ../../include/enotify.php:309
+#: ../../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 "'%1$s' kann den Kontaktstatus zu einem späteren Zeitpunkt erweitern und diese Einschränkungen aufheben. "
 
-#: ../../include/enotify.php:322
+#: ../../include/enotify.php:332
 msgid "[Friendica System:Notify] registration request"
 msgstr "[Friendica System:Benachrichtigung] Registrationsanfrage"
 
-#: ../../include/enotify.php:323
+#: ../../include/enotify.php:333
 #, php-format
 msgid "You've received a registration request from '%1$s' at %2$s"
 msgstr "Du hast eine Registrierungsanfrage von %2$s auf '%1$s' erhalten"
 
-#: ../../include/enotify.php:324
+#: ../../include/enotify.php:334
 #, php-format
 msgid "You've received a [url=%1$s]registration request[/url] from %2$s."
 msgstr "Du hast eine [url=%1$s]Registrierungsanfrage[/url] von %2$s erhalten."
 
-#: ../../include/enotify.php:327
+#: ../../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 "Kompletter Name:\t%1$s\\nURL der Seite:\t%2$s\\nLogin Name:\t%3$s (%4$s)"
 
-#: ../../include/enotify.php:330
+#: ../../include/enotify.php:340
 #, php-format
 msgid "Please visit %s to approve or reject the request."
 msgstr "Bitte besuche %s um die Anfrage zu bearbeiten."
 
-#: ../../include/api.php:304 ../../include/api.php:315
-#: ../../include/api.php:416 ../../include/api.php:1063
-#: ../../include/api.php:1065
+#: ../../include/api.php:310 ../../include/api.php:321
+#: ../../include/api.php:422 ../../include/api.php:1116
+#: ../../include/api.php:1118
 msgid "User not found."
 msgstr "Nutzer nicht gefunden."
 
-#: ../../include/api.php:770
+#: ../../include/api.php:776
 #, 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:789
+#: ../../include/api.php:795
 #, 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:808
+#: ../../include/api.php:814
 #, 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:1271
+#: ../../include/api.php:1325
 msgid "There is no status with this id."
 msgstr "Es gibt keinen Status mit dieser ID."
 
-#: ../../include/api.php:1341
+#: ../../include/api.php:1399
 msgid "There is no conversation with this id."
 msgstr "Es existiert keine Unterhaltung mit dieser ID."
 
-#: ../../include/api.php:1613
+#: ../../include/api.php:1669
 msgid "Invalid request."
 msgstr "Ungültige Anfrage"
 
-#: ../../include/api.php:1624
+#: ../../include/api.php:1680
 msgid "Invalid item."
 msgstr "Ungültiges Objekt"
 
-#: ../../include/api.php:1634
+#: ../../include/api.php:1690
 msgid "Invalid action. "
 msgstr "Ungültige Aktion"
 
-#: ../../include/api.php:1642
+#: ../../include/api.php:1698
 msgid "DB error"
 msgstr "DB Error"
 
-#: ../../include/network.php:890
+#: ../../include/network.php:959
 msgid "view full size"
 msgstr "Volle Größe anzeigen"
 
@@ -1371,7 +1346,7 @@ msgstr "Volle Größe anzeigen"
 msgid " on Last.fm"
 msgstr " bei Last.fm"
 
-#: ../../include/profile_advanced.php:15 ../../mod/settings.php:1133
+#: ../../include/profile_advanced.php:15 ../../mod/settings.php:1153
 msgid "Full Name:"
 msgstr "Kompletter Name:"
 
@@ -1508,8 +1483,8 @@ msgstr "Apps"
 msgid "Addon applications, utilities, games"
 msgstr "Addon Anwendungen, Dienstprogramme, Spiele"
 
-#: ../../include/nav.php:119 ../../include/text.php:968
-#: ../../include/text.php:969 ../../mod/search.php:99
+#: ../../include/nav.php:119 ../../include/text.php:970
+#: ../../include/text.php:971 ../../mod/search.php:99
 msgid "Search"
 msgstr "Suche"
 
@@ -1557,87 +1532,87 @@ msgstr "Netzwerk zurücksetzen"
 msgid "Load Network page with no filters"
 msgstr "Netzwerk-Seite ohne Filter laden"
 
-#: ../../include/nav.php:154 ../../mod/notifications.php:98
+#: ../../include/nav.php:153 ../../mod/notifications.php:98
 msgid "Introductions"
 msgstr "Kontaktanfragen"
 
-#: ../../include/nav.php:154
+#: ../../include/nav.php:153
 msgid "Friend Requests"
 msgstr "Kontaktanfragen"
 
-#: ../../include/nav.php:155 ../../mod/notifications.php:224
+#: ../../include/nav.php:156 ../../mod/notifications.php:224
 msgid "Notifications"
 msgstr "Benachrichtigungen"
 
-#: ../../include/nav.php:156
+#: ../../include/nav.php:157
 msgid "See all notifications"
 msgstr "Alle Benachrichtigungen anzeigen"
 
-#: ../../include/nav.php:157
+#: ../../include/nav.php:158
 msgid "Mark all system notifications seen"
 msgstr "Markiere alle Systembenachrichtigungen als gelesen"
 
-#: ../../include/nav.php:161 ../../mod/message.php:182
+#: ../../include/nav.php:162 ../../mod/message.php:182
 msgid "Messages"
 msgstr "Nachrichten"
 
-#: ../../include/nav.php:161
+#: ../../include/nav.php:162
 msgid "Private mail"
 msgstr "Private E-Mail"
 
-#: ../../include/nav.php:162
+#: ../../include/nav.php:163
 msgid "Inbox"
 msgstr "Eingang"
 
-#: ../../include/nav.php:163
+#: ../../include/nav.php:164
 msgid "Outbox"
 msgstr "Ausgang"
 
-#: ../../include/nav.php:164 ../../mod/message.php:9
+#: ../../include/nav.php:165 ../../mod/message.php:9
 msgid "New Message"
 msgstr "Neue Nachricht"
 
-#: ../../include/nav.php:167
+#: ../../include/nav.php:168
 msgid "Manage"
 msgstr "Verwalten"
 
-#: ../../include/nav.php:167
+#: ../../include/nav.php:168
 msgid "Manage other pages"
 msgstr "Andere Seiten verwalten"
 
-#: ../../include/nav.php:170 ../../mod/settings.php:67
+#: ../../include/nav.php:171 ../../mod/settings.php:67
 msgid "Delegations"
 msgstr "Delegationen"
 
-#: ../../include/nav.php:170 ../../mod/delegate.php:130
+#: ../../include/nav.php:171 ../../mod/delegate.php:130
 msgid "Delegate Page Management"
 msgstr "Delegiere das Management für die Seite"
 
-#: ../../include/nav.php:172
+#: ../../include/nav.php:173
 msgid "Account settings"
 msgstr "Kontoeinstellungen"
 
-#: ../../include/nav.php:175
+#: ../../include/nav.php:176
 msgid "Manage/Edit Profiles"
 msgstr "Profile Verwalten/Editieren"
 
-#: ../../include/nav.php:177
+#: ../../include/nav.php:178
 msgid "Manage/edit friends and contacts"
 msgstr "Freunde und Kontakte verwalten/editieren"
 
-#: ../../include/nav.php:184 ../../mod/admin.php:130
+#: ../../include/nav.php:185 ../../mod/admin.php:130
 msgid "Admin"
 msgstr "Administration"
 
-#: ../../include/nav.php:184
+#: ../../include/nav.php:185
 msgid "Site setup and configuration"
 msgstr "Einstellungen der Seite und Konfiguration"
 
-#: ../../include/nav.php:188
+#: ../../include/nav.php:189
 msgid "Navigation"
 msgstr "Navigation"
 
-#: ../../include/nav.php:188
+#: ../../include/nav.php:189
 msgid "Site map"
 msgstr "Sitemap"
 
@@ -1748,16 +1723,16 @@ msgstr[1] "%d Kontakte nicht importiert"
 msgid "Done. You can now login with your username and password"
 msgstr "Erledigt. Du kannst Dich jetzt mit Deinem Nutzernamen und Passwort anmelden"
 
-#: ../../include/event.php:11 ../../include/bb2diaspora.php:133
+#: ../../include/event.php:13 ../../include/bb2diaspora.php:133
 #: ../../mod/localtime.php:12
 msgid "l F d, Y \\@ g:i A"
 msgstr "l, d. F Y\\, H:i"
 
-#: ../../include/event.php:20 ../../include/bb2diaspora.php:139
+#: ../../include/event.php:22 ../../include/bb2diaspora.php:139
 msgid "Starts:"
 msgstr "Beginnt:"
 
-#: ../../include/event.php:30 ../../include/bb2diaspora.php:147
+#: ../../include/event.php:32 ../../include/bb2diaspora.php:147
 msgid "Finishes:"
 msgstr "Endet:"
 
@@ -1817,11 +1792,11 @@ msgid ""
 "[pre]%s[/pre]"
 msgstr "Die Fehlermeldung lautet\n[pre]%s[/pre]"
 
-#: ../../include/dbstructure.php:150
+#: ../../include/dbstructure.php:152
 msgid "Errors encountered creating database tables."
 msgstr "Fehler aufgetreten während der Erzeugung der Datenbanktabellen."
 
-#: ../../include/dbstructure.php:208
+#: ../../include/dbstructure.php:210
 msgid "Errors encountered performing database changes."
 msgstr "Es sind Fehler beim Bearbeiten der Datenbank aufgetreten."
 
@@ -1930,19 +1905,19 @@ msgstr "OK, wahrscheinlich harmlos"
 msgid "Reputable, has my trust"
 msgstr "Seriös, hat mein Vertrauen"
 
-#: ../../include/contact_selectors.php:56 ../../mod/admin.php:571
+#: ../../include/contact_selectors.php:56 ../../mod/admin.php:573
 msgid "Frequently"
 msgstr "immer wieder"
 
-#: ../../include/contact_selectors.php:57 ../../mod/admin.php:572
+#: ../../include/contact_selectors.php:57 ../../mod/admin.php:574
 msgid "Hourly"
 msgstr "Stündlich"
 
-#: ../../include/contact_selectors.php:58 ../../mod/admin.php:573
+#: ../../include/contact_selectors.php:58 ../../mod/admin.php:575
 msgid "Twice daily"
 msgstr "Zweimal täglich"
 
-#: ../../include/contact_selectors.php:59 ../../mod/admin.php:574
+#: ../../include/contact_selectors.php:59 ../../mod/admin.php:576
 msgid "Daily"
 msgstr "Täglich"
 
@@ -1954,7 +1929,7 @@ msgstr "Wöchentlich"
 msgid "Monthly"
 msgstr "Monatlich"
 
-#: ../../include/contact_selectors.php:76 ../../mod/dfrn_request.php:836
+#: ../../include/contact_selectors.php:76 ../../mod/dfrn_request.php:851
 msgid "Friendica"
 msgstr "Friendica"
 
@@ -1967,13 +1942,13 @@ 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
+#: ../../include/contact_selectors.php:86 ../../mod/admin.php:1006
+#: ../../mod/admin.php:1018 ../../mod/admin.php:1019 ../../mod/admin.php:1034
 msgid "Email"
 msgstr "E-Mail"
 
-#: ../../include/contact_selectors.php:80 ../../mod/settings.php:741
-#: ../../mod/dfrn_request.php:838
+#: ../../include/contact_selectors.php:80 ../../mod/settings.php:761
+#: ../../mod/dfrn_request.php:853
 msgid "Diaspora"
 msgstr "Diaspora"
 
@@ -2022,17 +1997,17 @@ msgstr "StatusNet"
 msgid "App.net"
 msgstr "App.net"
 
-#: ../../include/diaspora.php:621 ../../include/conversation.php:172
-#: ../../mod/dfrn_confirm.php:486
+#: ../../include/diaspora.php:622 ../../include/conversation.php:172
+#: ../../mod/dfrn_confirm.php:487
 #, php-format
 msgid "%1$s is now friends with %2$s"
 msgstr "%1$s ist nun mit %2$s befreundet"
 
-#: ../../include/diaspora.php:704
+#: ../../include/diaspora.php:705
 msgid "Sharing notification from Diaspora network"
 msgstr "Freigabe-Benachrichtigung von Diaspora"
 
-#: ../../include/diaspora.php:2444
+#: ../../include/diaspora.php:2493
 msgid "Attachments:"
 msgstr "Anhänge:"
 
@@ -2065,36 +2040,36 @@ msgstr "Nachricht/Beitrag"
 msgid "%1$s marked %2$s's %3$s as favorite"
 msgstr "%1$s hat %2$s\\s %3$s als Favorit markiert"
 
-#: ../../include/conversation.php:612 ../../object/Item.php:129
+#: ../../include/conversation.php:612 ../../object/Item.php:130
 #: ../../mod/photos.php:1653 ../../mod/content.php:437
 #: ../../mod/content.php:740
 msgid "Select"
 msgstr "Auswählen"
 
-#: ../../include/conversation.php:613 ../../object/Item.php:130
-#: ../../mod/group.php:171 ../../mod/settings.php:682
-#: ../../mod/contacts.php:733 ../../mod/admin.php:1007
+#: ../../include/conversation.php:613 ../../object/Item.php:131
+#: ../../mod/group.php:171 ../../mod/settings.php:684
+#: ../../mod/contacts.php:803 ../../mod/admin.php:1010
 #: ../../mod/photos.php:1654 ../../mod/content.php:438
 #: ../../mod/content.php:741
 msgid "Delete"
 msgstr "Löschen"
 
-#: ../../include/conversation.php:653 ../../object/Item.php:326
-#: ../../object/Item.php:327 ../../mod/content.php:471
+#: ../../include/conversation.php:653 ../../object/Item.php:329
+#: ../../object/Item.php:330 ../../mod/content.php:471
 #: ../../mod/content.php:852 ../../mod/content.php:853
 #, php-format
 msgid "View %s's profile @ %s"
 msgstr "Das Profil von %s auf %s betrachten."
 
-#: ../../include/conversation.php:665 ../../object/Item.php:316
+#: ../../include/conversation.php:665 ../../object/Item.php:319
 msgid "Categories:"
 msgstr "Kategorien:"
 
-#: ../../include/conversation.php:666 ../../object/Item.php:317
+#: ../../include/conversation.php:666 ../../object/Item.php:320
 msgid "Filed under:"
 msgstr "Abgelegt unter:"
 
-#: ../../include/conversation.php:673 ../../object/Item.php:340
+#: ../../include/conversation.php:673 ../../object/Item.php:343
 #: ../../mod/content.php:481 ../../mod/content.php:864
 #, php-format
 msgid "%s from %s"
@@ -2105,7 +2080,7 @@ msgid "View in context"
 msgstr "Im Zusammenhang betrachten"
 
 #: ../../include/conversation.php:691 ../../include/conversation.php:1108
-#: ../../object/Item.php:364 ../../mod/wallmessage.php:156
+#: ../../object/Item.php:367 ../../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
@@ -2208,7 +2183,7 @@ msgstr "An E-Mail senden"
 msgid "Connectors disabled, since \"%s\" is enabled."
 msgstr "Konnektoren sind nicht verfügbar, da \"%s\" aktiv ist."
 
-#: ../../include/conversation.php:1056 ../../mod/settings.php:1033
+#: ../../include/conversation.php:1056 ../../mod/settings.php:1053
 msgid "Hide your profile details from unknown viewers?"
 msgstr "Profil-Details vor unbekannten Betrachtern verbergen?"
 
@@ -2304,10 +2279,10 @@ msgstr "Öffentlicher Beitrag"
 msgid "Example: bob@example.com, mary@example.com"
 msgstr "Z.B.: bob@example.com, mary@example.com"
 
-#: ../../include/conversation.php:1125 ../../object/Item.php:687
+#: ../../include/conversation.php:1125 ../../object/Item.php:690
 #: ../../mod/editpost.php:145 ../../mod/photos.php:1566
 #: ../../mod/photos.php:1610 ../../mod/photos.php:1698
-#: ../../mod/content.php:719
+#: ../../mod/events.php:489 ../../mod/content.php:719
 msgid "Preview"
 msgstr "Vorschau"
 
@@ -2323,299 +2298,299 @@ msgstr "Poste an Kontakte"
 msgid "Private post"
 msgstr "Privater Beitrag"
 
-#: ../../include/text.php:297
+#: ../../include/text.php:299
 msgid "newer"
 msgstr "neuer"
 
-#: ../../include/text.php:299
+#: ../../include/text.php:301
 msgid "older"
 msgstr "älter"
 
-#: ../../include/text.php:304
+#: ../../include/text.php:306
 msgid "prev"
 msgstr "vorige"
 
-#: ../../include/text.php:306
+#: ../../include/text.php:308
 msgid "first"
 msgstr "erste"
 
-#: ../../include/text.php:338
+#: ../../include/text.php:340
 msgid "last"
 msgstr "letzte"
 
-#: ../../include/text.php:341
+#: ../../include/text.php:343
 msgid "next"
 msgstr "nächste"
 
-#: ../../include/text.php:396
+#: ../../include/text.php:398
 msgid "Loading more entries..."
 msgstr "lade weitere Einträge..."
 
-#: ../../include/text.php:397
+#: ../../include/text.php:399
 msgid "The end"
 msgstr "Das Ende"
 
-#: ../../include/text.php:870
+#: ../../include/text.php:872
 msgid "No contacts"
 msgstr "Keine Kontakte"
 
-#: ../../include/text.php:879
+#: ../../include/text.php:881
 #, php-format
 msgid "%d Contact"
 msgid_plural "%d Contacts"
 msgstr[0] "%d Kontakt"
 msgstr[1] "%d Kontakte"
 
-#: ../../include/text.php:891 ../../mod/viewcontacts.php:78
+#: ../../include/text.php:893 ../../mod/viewcontacts.php:78
 msgid "View Contacts"
 msgstr "Kontakte anzeigen"
 
-#: ../../include/text.php:971 ../../mod/editpost.php:109
+#: ../../include/text.php:973 ../../mod/editpost.php:109
 #: ../../mod/notes.php:63 ../../mod/filer.php:31
 msgid "Save"
 msgstr "Speichern"
 
-#: ../../include/text.php:1020
+#: ../../include/text.php:1022
 msgid "poke"
 msgstr "anstupsen"
 
-#: ../../include/text.php:1020
+#: ../../include/text.php:1022
 msgid "poked"
 msgstr "stupste"
 
-#: ../../include/text.php:1021
+#: ../../include/text.php:1023
 msgid "ping"
 msgstr "anpingen"
 
-#: ../../include/text.php:1021
+#: ../../include/text.php:1023
 msgid "pinged"
 msgstr "pingte"
 
-#: ../../include/text.php:1022
+#: ../../include/text.php:1024
 msgid "prod"
 msgstr "knuffen"
 
-#: ../../include/text.php:1022
+#: ../../include/text.php:1024
 msgid "prodded"
 msgstr "knuffte"
 
-#: ../../include/text.php:1023
+#: ../../include/text.php:1025
 msgid "slap"
 msgstr "ohrfeigen"
 
-#: ../../include/text.php:1023
+#: ../../include/text.php:1025
 msgid "slapped"
 msgstr "ohrfeigte"
 
-#: ../../include/text.php:1024
+#: ../../include/text.php:1026
 msgid "finger"
 msgstr "befummeln"
 
-#: ../../include/text.php:1024
+#: ../../include/text.php:1026
 msgid "fingered"
 msgstr "befummelte"
 
-#: ../../include/text.php:1025
+#: ../../include/text.php:1027
 msgid "rebuff"
 msgstr "eine Abfuhr erteilen"
 
-#: ../../include/text.php:1025
+#: ../../include/text.php:1027
 msgid "rebuffed"
 msgstr "abfuhrerteilte"
 
-#: ../../include/text.php:1039
+#: ../../include/text.php:1041
 msgid "happy"
 msgstr "glücklich"
 
-#: ../../include/text.php:1040
+#: ../../include/text.php:1042
 msgid "sad"
 msgstr "traurig"
 
-#: ../../include/text.php:1041
+#: ../../include/text.php:1043
 msgid "mellow"
 msgstr "sanft"
 
-#: ../../include/text.php:1042
+#: ../../include/text.php:1044
 msgid "tired"
 msgstr "müde"
 
-#: ../../include/text.php:1043
+#: ../../include/text.php:1045
 msgid "perky"
 msgstr "frech"
 
-#: ../../include/text.php:1044
+#: ../../include/text.php:1046
 msgid "angry"
 msgstr "sauer"
 
-#: ../../include/text.php:1045
+#: ../../include/text.php:1047
 msgid "stupified"
 msgstr "verblüfft"
 
-#: ../../include/text.php:1046
+#: ../../include/text.php:1048
 msgid "puzzled"
 msgstr "verwirrt"
 
-#: ../../include/text.php:1047
+#: ../../include/text.php:1049
 msgid "interested"
 msgstr "interessiert"
 
-#: ../../include/text.php:1048
+#: ../../include/text.php:1050
 msgid "bitter"
 msgstr "verbittert"
 
-#: ../../include/text.php:1049
+#: ../../include/text.php:1051
 msgid "cheerful"
 msgstr "fröhlich"
 
-#: ../../include/text.php:1050
+#: ../../include/text.php:1052
 msgid "alive"
 msgstr "lebendig"
 
-#: ../../include/text.php:1051
+#: ../../include/text.php:1053
 msgid "annoyed"
 msgstr "verärgert"
 
-#: ../../include/text.php:1052
+#: ../../include/text.php:1054
 msgid "anxious"
 msgstr "unruhig"
 
-#: ../../include/text.php:1053
+#: ../../include/text.php:1055
 msgid "cranky"
 msgstr "schrullig"
 
-#: ../../include/text.php:1054
+#: ../../include/text.php:1056
 msgid "disturbed"
 msgstr "verstört"
 
-#: ../../include/text.php:1055
+#: ../../include/text.php:1057
 msgid "frustrated"
 msgstr "frustriert"
 
-#: ../../include/text.php:1056
+#: ../../include/text.php:1058
 msgid "motivated"
 msgstr "motiviert"
 
-#: ../../include/text.php:1057
+#: ../../include/text.php:1059
 msgid "relaxed"
 msgstr "entspannt"
 
-#: ../../include/text.php:1058
+#: ../../include/text.php:1060
 msgid "surprised"
 msgstr "überrascht"
 
-#: ../../include/text.php:1228
+#: ../../include/text.php:1230
 msgid "Monday"
 msgstr "Montag"
 
-#: ../../include/text.php:1228
+#: ../../include/text.php:1230
 msgid "Tuesday"
 msgstr "Dienstag"
 
-#: ../../include/text.php:1228
+#: ../../include/text.php:1230
 msgid "Wednesday"
 msgstr "Mittwoch"
 
-#: ../../include/text.php:1228
+#: ../../include/text.php:1230
 msgid "Thursday"
 msgstr "Donnerstag"
 
-#: ../../include/text.php:1228
+#: ../../include/text.php:1230
 msgid "Friday"
 msgstr "Freitag"
 
-#: ../../include/text.php:1228
+#: ../../include/text.php:1230
 msgid "Saturday"
 msgstr "Samstag"
 
-#: ../../include/text.php:1228
+#: ../../include/text.php:1230
 msgid "Sunday"
 msgstr "Sonntag"
 
-#: ../../include/text.php:1232
+#: ../../include/text.php:1234
 msgid "January"
 msgstr "Januar"
 
-#: ../../include/text.php:1232
+#: ../../include/text.php:1234
 msgid "February"
 msgstr "Februar"
 
-#: ../../include/text.php:1232
+#: ../../include/text.php:1234
 msgid "March"
 msgstr "März"
 
-#: ../../include/text.php:1232
+#: ../../include/text.php:1234
 msgid "April"
 msgstr "April"
 
-#: ../../include/text.php:1232
+#: ../../include/text.php:1234
 msgid "May"
 msgstr "Mai"
 
-#: ../../include/text.php:1232
+#: ../../include/text.php:1234
 msgid "June"
 msgstr "Juni"
 
-#: ../../include/text.php:1232
+#: ../../include/text.php:1234
 msgid "July"
 msgstr "Juli"
 
-#: ../../include/text.php:1232
+#: ../../include/text.php:1234
 msgid "August"
 msgstr "August"
 
-#: ../../include/text.php:1232
+#: ../../include/text.php:1234
 msgid "September"
 msgstr "September"
 
-#: ../../include/text.php:1232
+#: ../../include/text.php:1234
 msgid "October"
 msgstr "Oktober"
 
-#: ../../include/text.php:1232
+#: ../../include/text.php:1234
 msgid "November"
 msgstr "November"
 
-#: ../../include/text.php:1232
+#: ../../include/text.php:1234
 msgid "December"
 msgstr "Dezember"
 
-#: ../../include/text.php:1422 ../../mod/videos.php:301
+#: ../../include/text.php:1424 ../../mod/videos.php:301
 msgid "View Video"
 msgstr "Video ansehen"
 
-#: ../../include/text.php:1454
+#: ../../include/text.php:1456
 msgid "bytes"
 msgstr "Byte"
 
-#: ../../include/text.php:1478 ../../include/text.php:1490
+#: ../../include/text.php:1488 ../../include/text.php:1500
 msgid "Click to open/close"
 msgstr "Zum öffnen/schließen klicken"
 
-#: ../../include/text.php:1664 ../../include/text.php:1674
-#: ../../mod/events.php:335
+#: ../../include/text.php:1674 ../../include/text.php:1684
+#: ../../mod/events.php:347
 msgid "link to source"
 msgstr "Link zum Originalbeitrag"
 
-#: ../../include/text.php:1731
+#: ../../include/text.php:1741
 msgid "Select an alternate language"
 msgstr "Alternative Sprache auswählen"
 
-#: ../../include/text.php:1987
+#: ../../include/text.php:1997
 msgid "activity"
 msgstr "Aktivität"
 
-#: ../../include/text.php:1989 ../../object/Item.php:389
-#: ../../object/Item.php:402 ../../mod/content.php:605
+#: ../../include/text.php:1999 ../../object/Item.php:392
+#: ../../object/Item.php:405 ../../mod/content.php:605
 msgid "comment"
 msgid_plural "comments"
 msgstr[0] "Kommentar"
 msgstr[1] "Kommentare"
 
-#: ../../include/text.php:1990
+#: ../../include/text.php:2000
 msgid "post"
 msgstr "Beitrag"
 
-#: ../../include/text.php:2158
+#: ../../include/text.php:2168
 msgid "Item filed"
 msgstr "Beitrag abgelegt"
 
@@ -2638,28 +2613,28 @@ msgstr "Beim Versuch Dich mit der von Dir angegebenen OpenID anzumelden trat ein
 msgid "The error message was:"
 msgstr "Die Fehlermeldung lautete:"
 
-#: ../../include/bbcode.php:433 ../../include/bbcode.php:1066
-#: ../../include/bbcode.php:1067
+#: ../../include/bbcode.php:448 ../../include/bbcode.php:1094
+#: ../../include/bbcode.php:1095
 msgid "Image/photo"
 msgstr "Bild/Foto"
 
-#: ../../include/bbcode.php:531
+#: ../../include/bbcode.php:546
 #, php-format
 msgid "<a href=\"%1$s\" target=\"_blank\">%2$s</a> %3$s"
 msgstr "<a href=\"%1$s\" target=\"_blank\">%2$s</a> %3$s"
 
-#: ../../include/bbcode.php:565
+#: ../../include/bbcode.php:580
 #, php-format
 msgid ""
 "<span><a href=\"%s\" target=\"_blank\">%s</a> wrote the following <a "
 "href=\"%s\" target=\"_blank\">post</a>"
 msgstr "<span><a href=\"%s\" target=\"_blank\">%s</a> schrieb den folgenden <a href=\"%s\" target=\"_blank\">Beitrag</a>"
 
-#: ../../include/bbcode.php:1030 ../../include/bbcode.php:1050
+#: ../../include/bbcode.php:1058 ../../include/bbcode.php:1078
 msgid "$1 wrote:"
 msgstr "$1 hat geschrieben:"
 
-#: ../../include/bbcode.php:1075 ../../include/bbcode.php:1076
+#: ../../include/bbcode.php:1103 ../../include/bbcode.php:1104
 msgid "Encrypted content"
 msgstr "Verschlüsselter Inhalt"
 
@@ -2675,17 +2650,17 @@ msgstr "Bitte lade ein Profilbild hoch."
 msgid "Welcome back "
 msgstr "Willkommen zurück "
 
-#: ../../include/security.php:366
+#: ../../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/oembed.php:213
+#: ../../include/oembed.php:218
 msgid "Embedded content"
 msgstr "Eingebetteter Inhalt"
 
-#: ../../include/oembed.php:222
+#: ../../include/oembed.php:227
 msgid "Embedding disabled"
 msgstr "Einbettungen deaktiviert"
 
@@ -3029,7 +3004,7 @@ msgid ""
 "\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/user.php:413 ../../mod/admin.php:838
+#: ../../include/user.php:413 ../../mod/admin.php:841
 #, php-format
 msgid "Registration details for %s"
 msgstr "Details der Registration von %s"
@@ -3038,144 +3013,144 @@ msgstr "Details der Registration von %s"
 msgid "Visible to everybody"
 msgstr "Für jeden sichtbar"
 
-#: ../../object/Item.php:94
+#: ../../object/Item.php:95
 msgid "This entry was edited"
 msgstr "Dieser Beitrag wurde bearbeitet."
 
-#: ../../object/Item.php:116 ../../mod/photos.php:1359
+#: ../../object/Item.php:117 ../../mod/photos.php:1359
 #: ../../mod/content.php:620
 msgid "Private Message"
 msgstr "Private Nachricht"
 
-#: ../../object/Item.php:120 ../../mod/settings.php:681
+#: ../../object/Item.php:121 ../../mod/settings.php:683
 #: ../../mod/content.php:728
 msgid "Edit"
 msgstr "Bearbeiten"
 
-#: ../../object/Item.php:133 ../../mod/content.php:763
+#: ../../object/Item.php:134 ../../mod/content.php:763
 msgid "save to folder"
 msgstr "In Ordner speichern"
 
-#: ../../object/Item.php:195 ../../mod/content.php:753
+#: ../../object/Item.php:196 ../../mod/content.php:753
 msgid "add star"
 msgstr "markieren"
 
-#: ../../object/Item.php:196 ../../mod/content.php:754
+#: ../../object/Item.php:197 ../../mod/content.php:754
 msgid "remove star"
 msgstr "Markierung entfernen"
 
-#: ../../object/Item.php:197 ../../mod/content.php:755
+#: ../../object/Item.php:198 ../../mod/content.php:755
 msgid "toggle star status"
 msgstr "Markierung umschalten"
 
-#: ../../object/Item.php:200 ../../mod/content.php:758
+#: ../../object/Item.php:201 ../../mod/content.php:758
 msgid "starred"
 msgstr "markiert"
 
-#: ../../object/Item.php:208
+#: ../../object/Item.php:209
 msgid "ignore thread"
 msgstr "Thread ignorieren"
 
-#: ../../object/Item.php:209
+#: ../../object/Item.php:210
 msgid "unignore thread"
 msgstr "Thread nicht mehr ignorieren"
 
-#: ../../object/Item.php:210
+#: ../../object/Item.php:211
 msgid "toggle ignore status"
 msgstr "Ignoriert-Status ein-/ausschalten"
 
-#: ../../object/Item.php:213
+#: ../../object/Item.php:214
 msgid "ignored"
 msgstr "Ignoriert"
 
-#: ../../object/Item.php:220 ../../mod/content.php:759
+#: ../../object/Item.php:221 ../../mod/content.php:759
 msgid "add tag"
 msgstr "Tag hinzufügen"
 
-#: ../../object/Item.php:231 ../../mod/photos.php:1542
+#: ../../object/Item.php:232 ../../mod/photos.php:1542
 #: ../../mod/content.php:684
 msgid "I like this (toggle)"
 msgstr "Ich mag das (toggle)"
 
-#: ../../object/Item.php:231 ../../mod/content.php:684
+#: ../../object/Item.php:232 ../../mod/content.php:684
 msgid "like"
 msgstr "mag ich"
 
-#: ../../object/Item.php:232 ../../mod/photos.php:1543
+#: ../../object/Item.php:233 ../../mod/photos.php:1543
 #: ../../mod/content.php:685
 msgid "I don't like this (toggle)"
 msgstr "Ich mag das nicht (toggle)"
 
-#: ../../object/Item.php:232 ../../mod/content.php:685
+#: ../../object/Item.php:233 ../../mod/content.php:685
 msgid "dislike"
 msgstr "mag ich nicht"
 
-#: ../../object/Item.php:234 ../../mod/content.php:687
+#: ../../object/Item.php:235 ../../mod/content.php:687
 msgid "Share this"
 msgstr "Weitersagen"
 
-#: ../../object/Item.php:234 ../../mod/content.php:687
+#: ../../object/Item.php:235 ../../mod/content.php:687
 msgid "share"
 msgstr "Teilen"
 
-#: ../../object/Item.php:328 ../../mod/content.php:854
+#: ../../object/Item.php:331 ../../mod/content.php:854
 msgid "to"
 msgstr "zu"
 
-#: ../../object/Item.php:329
+#: ../../object/Item.php:332
 msgid "via"
 msgstr "via"
 
-#: ../../object/Item.php:330 ../../mod/content.php:855
+#: ../../object/Item.php:333 ../../mod/content.php:855
 msgid "Wall-to-Wall"
 msgstr "Wall-to-Wall"
 
-#: ../../object/Item.php:331 ../../mod/content.php:856
+#: ../../object/Item.php:334 ../../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:603
 #, php-format
 msgid "%d comment"
 msgid_plural "%d comments"
 msgstr[0] "%d Kommentar"
 msgstr[1] "%d Kommentare"
 
-#: ../../object/Item.php:675 ../../mod/photos.php:1562
+#: ../../object/Item.php:678 ../../mod/photos.php:1562
 #: ../../mod/photos.php:1606 ../../mod/photos.php:1694
 #: ../../mod/content.php:707
 msgid "This is you"
 msgstr "Das bist Du"
 
-#: ../../object/Item.php:679 ../../mod/content.php:711
+#: ../../object/Item.php:682 ../../mod/content.php:711
 msgid "Bold"
 msgstr "Fett"
 
-#: ../../object/Item.php:680 ../../mod/content.php:712
+#: ../../object/Item.php:683 ../../mod/content.php:712
 msgid "Italic"
 msgstr "Kursiv"
 
-#: ../../object/Item.php:681 ../../mod/content.php:713
+#: ../../object/Item.php:684 ../../mod/content.php:713
 msgid "Underline"
 msgstr "Unterstrichen"
 
-#: ../../object/Item.php:682 ../../mod/content.php:714
+#: ../../object/Item.php:685 ../../mod/content.php:714
 msgid "Quote"
 msgstr "Zitat"
 
-#: ../../object/Item.php:683 ../../mod/content.php:715
+#: ../../object/Item.php:686 ../../mod/content.php:715
 msgid "Code"
 msgstr "Code"
 
-#: ../../object/Item.php:684 ../../mod/content.php:716
+#: ../../object/Item.php:687 ../../mod/content.php:716
 msgid "Image"
 msgstr "Bild"
 
-#: ../../object/Item.php:685 ../../mod/content.php:717
+#: ../../object/Item.php:688 ../../mod/content.php:717
 msgid "Link"
 msgstr "Link"
 
-#: ../../object/Item.php:686 ../../mod/content.php:718
+#: ../../object/Item.php:689 ../../mod/content.php:718
 msgid "Video"
 msgstr "Video"
 
@@ -3266,10 +3241,6 @@ msgstr "Gruppe speichern"
 msgid "Create a group of contacts/friends."
 msgstr "Eine Gruppe von Kontakten/Freunden anlegen."
 
-#: ../../mod/group.php:94 ../../mod/group.php:180
-msgid "Group Name: "
-msgstr "Gruppenname:"
-
 #: ../../mod/group.php:113
 msgid "Group removed."
 msgstr "Gruppe entfernt."
@@ -3286,11 +3257,11 @@ msgstr "Gruppeneditor"
 msgid "Members"
 msgstr "Mitglieder"
 
-#: ../../mod/group.php:194 ../../mod/contacts.php:586
+#: ../../mod/group.php:194 ../../mod/contacts.php:656
 msgid "All Contacts"
 msgstr "Alle Kontakte"
 
-#: ../../mod/group.php:224 ../../mod/profperm.php:105
+#: ../../mod/group.php:224 ../../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"
 
@@ -3339,8 +3310,8 @@ msgid "Discard"
 msgstr "Verwerfen"
 
 #: ../../mod/notifications.php:51 ../../mod/notifications.php:164
-#: ../../mod/notifications.php:214 ../../mod/contacts.php:455
-#: ../../mod/contacts.php:519 ../../mod/contacts.php:731
+#: ../../mod/notifications.php:214 ../../mod/contacts.php:525
+#: ../../mod/contacts.php:589 ../../mod/contacts.php:801
 msgid "Ignore"
 msgstr "Ignorieren"
 
@@ -3374,7 +3345,7 @@ msgid "suggested by %s"
 msgstr "vorgeschlagen von %s"
 
 #: ../../mod/notifications.php:157 ../../mod/notifications.php:208
-#: ../../mod/contacts.php:525
+#: ../../mod/contacts.php:595
 msgid "Hide this contact from others"
 msgstr "Verbirg diesen Kontakt von anderen"
 
@@ -3387,7 +3358,7 @@ msgid "if applicable"
 msgstr "falls anwendbar"
 
 #: ../../mod/notifications.php:161 ../../mod/notifications.php:212
-#: ../../mod/admin.php:1005
+#: ../../mod/admin.php:1008
 msgid "Approve"
 msgstr "Genehmigen"
 
@@ -3510,7 +3481,7 @@ msgstr "Kein Profil"
 msgid "everybody"
 msgstr "jeder"
 
-#: ../../mod/settings.php:41 ../../mod/admin.php:1016
+#: ../../mod/settings.php:41 ../../mod/admin.php:1019
 msgid "Account"
 msgstr "Nutzerkonto"
 
@@ -3522,12 +3493,12 @@ msgstr "Zusätzliche Features"
 msgid "Display"
 msgstr "Anzeige"
 
-#: ../../mod/settings.php:57 ../../mod/settings.php:785
+#: ../../mod/settings.php:57 ../../mod/settings.php:805
 msgid "Social Networks"
 msgstr "Soziale Netzwerke"
 
-#: ../../mod/settings.php:62 ../../mod/admin.php:106 ../../mod/admin.php:1102
-#: ../../mod/admin.php:1155
+#: ../../mod/settings.php:62 ../../mod/admin.php:106 ../../mod/admin.php:1105
+#: ../../mod/admin.php:1158
 msgid "Plugins"
 msgstr "Plugins"
 
@@ -3547,620 +3518,651 @@ msgstr "Konto löschen"
 msgid "Missing some important data!"
 msgstr "Wichtige Daten fehlen!"
 
-#: ../../mod/settings.php:137 ../../mod/settings.php:645
-#: ../../mod/contacts.php:729
+#: ../../mod/settings.php:137 ../../mod/settings.php:647
+#: ../../mod/contacts.php:799
 msgid "Update"
 msgstr "Aktualisierungen"
 
-#: ../../mod/settings.php:243
+#: ../../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:248
+#: ../../mod/settings.php:250
 msgid "Email settings updated."
 msgstr "E-Mail Einstellungen bearbeitet."
 
-#: ../../mod/settings.php:263
+#: ../../mod/settings.php:265
 msgid "Features updated"
 msgstr "Features aktualisiert"
 
-#: ../../mod/settings.php:326
+#: ../../mod/settings.php:328
 msgid "Relocate message has been send to your contacts"
 msgstr "Die Umzugsbenachrichtigung wurde an Deine Kontakte versendet."
 
-#: ../../mod/settings.php:340
+#: ../../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:345
+#: ../../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:353
+#: ../../mod/settings.php:355
 msgid "Wrong password."
 msgstr "Falsches Passwort."
 
-#: ../../mod/settings.php:364
+#: ../../mod/settings.php:366
 msgid "Password changed."
 msgstr "Passwort geändert."
 
-#: ../../mod/settings.php:366
+#: ../../mod/settings.php:368
 msgid "Password update failed. Please try again."
 msgstr "Aktualisierung des Passworts gescheitert, bitte versuche es noch einmal."
 
-#: ../../mod/settings.php:433
+#: ../../mod/settings.php:435
 msgid " Please use a shorter name."
 msgstr " Bitte verwende einen kürzeren Namen."
 
-#: ../../mod/settings.php:435
+#: ../../mod/settings.php:437
 msgid " Name too short."
 msgstr " Name ist zu kurz."
 
-#: ../../mod/settings.php:444
+#: ../../mod/settings.php:446
 msgid "Wrong Password"
 msgstr "Falsches Passwort"
 
-#: ../../mod/settings.php:449
+#: ../../mod/settings.php:451
 msgid " Not valid email."
 msgstr " Keine gültige E-Mail."
 
-#: ../../mod/settings.php:455
+#: ../../mod/settings.php:457
 msgid " Cannot change to that email."
 msgstr "Ändern der E-Mail nicht möglich. "
 
-#: ../../mod/settings.php:511
+#: ../../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:515
+#: ../../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:545
+#: ../../mod/settings.php:547
 msgid "Settings updated."
 msgstr "Einstellungen aktualisiert."
 
-#: ../../mod/settings.php:618 ../../mod/settings.php:644
-#: ../../mod/settings.php:680
+#: ../../mod/settings.php:620 ../../mod/settings.php:646
+#: ../../mod/settings.php:682
 msgid "Add application"
 msgstr "Programm hinzufügen"
 
-#: ../../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
+#: ../../mod/settings.php:621 ../../mod/settings.php:731
+#: ../../mod/settings.php:754 ../../mod/settings.php:823
+#: ../../mod/settings.php:905 ../../mod/settings.php:1138
+#: ../../mod/admin.php:622 ../../mod/admin.php:1159 ../../mod/admin.php:1361
+#: ../../mod/admin.php:1448
 msgid "Save Settings"
 msgstr "Einstellungen speichern"
 
-#: ../../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
+#: ../../mod/settings.php:623 ../../mod/settings.php:649
+#: ../../mod/admin.php:1006 ../../mod/admin.php:1018 ../../mod/admin.php:1019
+#: ../../mod/admin.php:1032 ../../mod/crepair.php:169
 msgid "Name"
 msgstr "Name"
 
-#: ../../mod/settings.php:622 ../../mod/settings.php:648
+#: ../../mod/settings.php:624 ../../mod/settings.php:650
 msgid "Consumer Key"
 msgstr "Consumer Key"
 
-#: ../../mod/settings.php:623 ../../mod/settings.php:649
+#: ../../mod/settings.php:625 ../../mod/settings.php:651
 msgid "Consumer Secret"
 msgstr "Consumer Secret"
 
-#: ../../mod/settings.php:624 ../../mod/settings.php:650
+#: ../../mod/settings.php:626 ../../mod/settings.php:652
 msgid "Redirect"
 msgstr "Umleiten"
 
-#: ../../mod/settings.php:625 ../../mod/settings.php:651
+#: ../../mod/settings.php:627 ../../mod/settings.php:653
 msgid "Icon url"
 msgstr "Icon URL"
 
-#: ../../mod/settings.php:636
+#: ../../mod/settings.php:638
 msgid "You can't edit this application."
 msgstr "Du kannst dieses Programm nicht bearbeiten."
 
-#: ../../mod/settings.php:679
+#: ../../mod/settings.php:681
 msgid "Connected Apps"
 msgstr "Verbundene Programme"
 
-#: ../../mod/settings.php:683
+#: ../../mod/settings.php:685
 msgid "Client key starts with"
 msgstr "Anwenderschlüssel beginnt mit"
 
-#: ../../mod/settings.php:684
+#: ../../mod/settings.php:686
 msgid "No name"
 msgstr "Kein Name"
 
-#: ../../mod/settings.php:685
+#: ../../mod/settings.php:687
 msgid "Remove authorization"
 msgstr "Autorisierung entziehen"
 
-#: ../../mod/settings.php:697
+#: ../../mod/settings.php:699
 msgid "No Plugin settings configured"
 msgstr "Keine Plugin-Einstellungen konfiguriert"
 
-#: ../../mod/settings.php:705
+#: ../../mod/settings.php:707
 msgid "Plugin Settings"
 msgstr "Plugin-Einstellungen"
 
-#: ../../mod/settings.php:719
+#: ../../mod/settings.php:721
 msgid "Off"
 msgstr "Aus"
 
-#: ../../mod/settings.php:719
+#: ../../mod/settings.php:721
 msgid "On"
 msgstr "An"
 
-#: ../../mod/settings.php:727
+#: ../../mod/settings.php:729
 msgid "Additional Features"
 msgstr "Zusätzliche Features"
 
-#: ../../mod/settings.php:741 ../../mod/settings.php:742
+#: ../../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:741 ../../mod/settings.php:742
+#: ../../mod/settings.php:761 ../../mod/settings.php:762
 msgid "enabled"
 msgstr "eingeschaltet"
 
-#: ../../mod/settings.php:741 ../../mod/settings.php:742
+#: ../../mod/settings.php:761 ../../mod/settings.php:762
 msgid "disabled"
 msgstr "ausgeschaltet"
 
-#: ../../mod/settings.php:742
+#: ../../mod/settings.php:762
 msgid "StatusNet"
 msgstr "StatusNet"
 
-#: ../../mod/settings.php:778
+#: ../../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:790
+#: ../../mod/settings.php:810
 msgid "Email/Mailbox Setup"
 msgstr "E-Mail/Postfach-Einstellungen"
 
-#: ../../mod/settings.php:791
+#: ../../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:792
+#: ../../mod/settings.php:812
 msgid "Last successful email check:"
 msgstr "Letzter erfolgreicher E-Mail Check"
 
-#: ../../mod/settings.php:794
+#: ../../mod/settings.php:814
 msgid "IMAP server name:"
 msgstr "IMAP-Server-Name:"
 
-#: ../../mod/settings.php:795
+#: ../../mod/settings.php:815
 msgid "IMAP port:"
 msgstr "IMAP-Port:"
 
-#: ../../mod/settings.php:796
+#: ../../mod/settings.php:816
 msgid "Security:"
 msgstr "Sicherheit:"
 
-#: ../../mod/settings.php:796 ../../mod/settings.php:801
+#: ../../mod/settings.php:816 ../../mod/settings.php:821
 msgid "None"
 msgstr "Keine"
 
-#: ../../mod/settings.php:797
+#: ../../mod/settings.php:817
 msgid "Email login name:"
 msgstr "E-Mail-Login-Name:"
 
-#: ../../mod/settings.php:798
+#: ../../mod/settings.php:818
 msgid "Email password:"
 msgstr "E-Mail-Passwort:"
 
-#: ../../mod/settings.php:799
+#: ../../mod/settings.php:819
 msgid "Reply-to address:"
 msgstr "Reply-to Adresse:"
 
-#: ../../mod/settings.php:800
+#: ../../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:801
+#: ../../mod/settings.php:821
 msgid "Action after import:"
 msgstr "Aktion nach Import:"
 
-#: ../../mod/settings.php:801
+#: ../../mod/settings.php:821
 msgid "Mark as seen"
 msgstr "Als gelesen markieren"
 
-#: ../../mod/settings.php:801
+#: ../../mod/settings.php:821
 msgid "Move to folder"
 msgstr "In einen Ordner verschieben"
 
-#: ../../mod/settings.php:802
+#: ../../mod/settings.php:822
 msgid "Move to folder:"
 msgstr "In diesen Ordner verschieben:"
 
-#: ../../mod/settings.php:833 ../../mod/admin.php:545
+#: ../../mod/settings.php:853 ../../mod/admin.php:547
 msgid "No special theme for mobile devices"
 msgstr "Kein spezielles Theme für mobile Geräte verwenden."
 
-#: ../../mod/settings.php:883
+#: ../../mod/settings.php:903
 msgid "Display Settings"
 msgstr "Anzeige-Einstellungen"
 
-#: ../../mod/settings.php:889 ../../mod/settings.php:904
+#: ../../mod/settings.php:909 ../../mod/settings.php:924
 msgid "Display Theme:"
 msgstr "Theme:"
 
-#: ../../mod/settings.php:890
+#: ../../mod/settings.php:910
 msgid "Mobile Theme:"
 msgstr "Mobiles Theme"
 
-#: ../../mod/settings.php:891
+#: ../../mod/settings.php:911
 msgid "Update browser every xx seconds"
 msgstr "Browser alle xx Sekunden aktualisieren"
 
-#: ../../mod/settings.php:891
+#: ../../mod/settings.php:911
 msgid "Minimum of 10 seconds, no maximum"
 msgstr "Minimal 10 Sekunden, kein Maximum"
 
-#: ../../mod/settings.php:892
+#: ../../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:892 ../../mod/settings.php:893
+#: ../../mod/settings.php:912 ../../mod/settings.php:913
 msgid "Maximum of 100 items"
 msgstr "Maximal 100 Beiträge"
 
-#: ../../mod/settings.php:893
+#: ../../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:894
+#: ../../mod/settings.php:914
 msgid "Don't show emoticons"
 msgstr "Keine Smilies anzeigen"
 
-#: ../../mod/settings.php:895
+#: ../../mod/settings.php:915
 msgid "Don't show notices"
 msgstr "Info-Popups nicht anzeigen"
 
-#: ../../mod/settings.php:896
+#: ../../mod/settings.php:916
 msgid "Infinite scroll"
 msgstr "Endloses Scrollen"
 
-#: ../../mod/settings.php:897
+#: ../../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:974
+#: ../../mod/settings.php:994
 msgid "User Types"
 msgstr "Nutzer Art"
 
-#: ../../mod/settings.php:975
+#: ../../mod/settings.php:995
 msgid "Community Types"
 msgstr "Gemeinschafts Art"
 
-#: ../../mod/settings.php:976
+#: ../../mod/settings.php:996
 msgid "Normal Account Page"
 msgstr "Normales Konto"
 
-#: ../../mod/settings.php:977
+#: ../../mod/settings.php:997
 msgid "This account is a normal personal profile"
 msgstr "Dieses Konto ist ein normales persönliches Profil"
 
-#: ../../mod/settings.php:980
+#: ../../mod/settings.php:1000
 msgid "Soapbox Page"
 msgstr "Marktschreier-Konto"
 
-#: ../../mod/settings.php:981
+#: ../../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:984
+#: ../../mod/settings.php:1004
 msgid "Community Forum/Celebrity Account"
 msgstr "Forum/Promi-Konto"
 
-#: ../../mod/settings.php:985
+#: ../../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:988
+#: ../../mod/settings.php:1008
 msgid "Automatic Friend Page"
 msgstr "Automatische Freunde Seite"
 
-#: ../../mod/settings.php:989
+#: ../../mod/settings.php:1009
 msgid "Automatically approve all connection/friend requests as friends"
 msgstr "Kontaktanfragen werden automatisch als Freund akzeptiert"
 
-#: ../../mod/settings.php:992
+#: ../../mod/settings.php:1012
 msgid "Private Forum [Experimental]"
 msgstr "Privates Forum [Versuchsstadium]"
 
-#: ../../mod/settings.php:993
+#: ../../mod/settings.php:1013
 msgid "Private forum - approved members only"
 msgstr "Privates Forum, nur für Mitglieder"
 
-#: ../../mod/settings.php:1005
+#: ../../mod/settings.php:1025
 msgid "OpenID:"
 msgstr "OpenID:"
 
-#: ../../mod/settings.php:1005
+#: ../../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:1015
+#: ../../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: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
+#: ../../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:1106 ../../mod/settings.php:1107
+#: ../../mod/settings.php:1108 ../../mod/settings.php:1109
+#: ../../mod/settings.php:1110 ../../mod/register.php:234
+#: ../../mod/dfrn_request.php:845 ../../mod/api.php:106
+#: ../../mod/follow.php:54 ../../mod/profiles.php:661
+#: ../../mod/profiles.php:665
 msgid "No"
 msgstr "Nein"
 
-#: ../../mod/settings.php:1021
+#: ../../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:1029
+#: ../../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:1033
+#: ../../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:1038
+#: ../../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:1044
+#: ../../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:1050
+#: ../../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:1056
+#: ../../mod/settings.php:1076
 msgid "Permit unknown people to send you private mail?"
 msgstr "Dürfen Dir Unbekannte private Nachrichten schicken?"
 
-#: ../../mod/settings.php:1064
+#: ../../mod/settings.php:1084
 msgid "Profile is <strong>not published</strong>."
 msgstr "Profil ist <strong>nicht veröffentlicht</strong>."
 
-#: ../../mod/settings.php:1067 ../../mod/profile_photo.php:248
+#: ../../mod/settings.php:1087 ../../mod/profile_photo.php:248
 msgid "or"
 msgstr "oder"
 
-#: ../../mod/settings.php:1072
+#: ../../mod/settings.php:1092
 msgid "Your Identity Address is"
 msgstr "Die Adresse Deines Profils lautet:"
 
-#: ../../mod/settings.php:1083
+#: ../../mod/settings.php:1103
 msgid "Automatically expire posts after this many days:"
 msgstr "Beiträge verfallen automatisch nach dieser Anzahl von Tagen:"
 
-#: ../../mod/settings.php:1083
+#: ../../mod/settings.php:1103
 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:1084
+#: ../../mod/settings.php:1104
 msgid "Advanced expiration settings"
 msgstr "Erweiterte Verfallseinstellungen"
 
-#: ../../mod/settings.php:1085
+#: ../../mod/settings.php:1105
 msgid "Advanced Expiration"
 msgstr "Erweitertes Verfallen"
 
-#: ../../mod/settings.php:1086
+#: ../../mod/settings.php:1106
 msgid "Expire posts:"
 msgstr "Beiträge verfallen lassen:"
 
-#: ../../mod/settings.php:1087
+#: ../../mod/settings.php:1107
 msgid "Expire personal notes:"
 msgstr "Persönliche Notizen verfallen lassen:"
 
-#: ../../mod/settings.php:1088
+#: ../../mod/settings.php:1108
 msgid "Expire starred posts:"
 msgstr "Markierte Beiträge verfallen lassen:"
 
-#: ../../mod/settings.php:1089
+#: ../../mod/settings.php:1109
 msgid "Expire photos:"
 msgstr "Fotos verfallen lassen:"
 
-#: ../../mod/settings.php:1090
+#: ../../mod/settings.php:1110
 msgid "Only expire posts by others:"
 msgstr "Nur Beiträge anderer verfallen:"
 
-#: ../../mod/settings.php:1116
+#: ../../mod/settings.php:1136
 msgid "Account Settings"
 msgstr "Kontoeinstellungen"
 
-#: ../../mod/settings.php:1124
+#: ../../mod/settings.php:1144
 msgid "Password Settings"
 msgstr "Passwort-Einstellungen"
 
-#: ../../mod/settings.php:1125
+#: ../../mod/settings.php:1145
 msgid "New Password:"
 msgstr "Neues Passwort:"
 
-#: ../../mod/settings.php:1126
+#: ../../mod/settings.php:1146
 msgid "Confirm:"
 msgstr "Bestätigen:"
 
-#: ../../mod/settings.php:1126
+#: ../../mod/settings.php:1146
 msgid "Leave password fields blank unless changing"
 msgstr "Lass die Passwort-Felder leer, außer Du willst das Passwort ändern"
 
-#: ../../mod/settings.php:1127
+#: ../../mod/settings.php:1147
 msgid "Current Password:"
 msgstr "Aktuelles Passwort:"
 
-#: ../../mod/settings.php:1127 ../../mod/settings.php:1128
+#: ../../mod/settings.php:1147 ../../mod/settings.php:1148
 msgid "Your current password to confirm the changes"
 msgstr "Dein aktuelles Passwort um die Änderungen zu bestätigen"
 
-#: ../../mod/settings.php:1128
+#: ../../mod/settings.php:1148
 msgid "Password:"
 msgstr "Passwort:"
 
-#: ../../mod/settings.php:1132
+#: ../../mod/settings.php:1152
 msgid "Basic Settings"
 msgstr "Grundeinstellungen"
 
-#: ../../mod/settings.php:1134
+#: ../../mod/settings.php:1154
 msgid "Email Address:"
 msgstr "E-Mail-Adresse:"
 
-#: ../../mod/settings.php:1135
+#: ../../mod/settings.php:1155
 msgid "Your Timezone:"
 msgstr "Deine Zeitzone:"
 
-#: ../../mod/settings.php:1136
+#: ../../mod/settings.php:1156
 msgid "Default Post Location:"
 msgstr "Standardstandort:"
 
-#: ../../mod/settings.php:1137
+#: ../../mod/settings.php:1157
 msgid "Use Browser Location:"
 msgstr "Standort des Browsers verwenden:"
 
-#: ../../mod/settings.php:1140
+#: ../../mod/settings.php:1160
 msgid "Security and Privacy Settings"
 msgstr "Sicherheits- und Privatsphäre-Einstellungen"
 
-#: ../../mod/settings.php:1142
+#: ../../mod/settings.php:1162
 msgid "Maximum Friend Requests/Day:"
 msgstr "Maximale Anzahl von Freundschaftsanfragen/Tag:"
 
-#: ../../mod/settings.php:1142 ../../mod/settings.php:1172
+#: ../../mod/settings.php:1162 ../../mod/settings.php:1192
 msgid "(to prevent spam abuse)"
 msgstr "(um SPAM zu vermeiden)"
 
-#: ../../mod/settings.php:1143
+#: ../../mod/settings.php:1163
 msgid "Default Post Permissions"
 msgstr "Standard-Zugriffsrechte für Beiträge"
 
-#: ../../mod/settings.php:1144
+#: ../../mod/settings.php:1164
 msgid "(click to open/close)"
 msgstr "(klicke zum öffnen/schließen)"
 
-#: ../../mod/settings.php:1153 ../../mod/photos.php:1146
+#: ../../mod/settings.php:1173 ../../mod/photos.php:1146
 #: ../../mod/photos.php:1519
 msgid "Show to Groups"
 msgstr "Zeige den Gruppen"
 
-#: ../../mod/settings.php:1154 ../../mod/photos.php:1147
+#: ../../mod/settings.php:1174 ../../mod/photos.php:1147
 #: ../../mod/photos.php:1520
 msgid "Show to Contacts"
 msgstr "Zeige den Kontakten"
 
-#: ../../mod/settings.php:1155
+#: ../../mod/settings.php:1175
 msgid "Default Private Post"
 msgstr "Privater Standardbeitrag"
 
-#: ../../mod/settings.php:1156
+#: ../../mod/settings.php:1176
 msgid "Default Public Post"
 msgstr "Öffentlicher Standardbeitrag"
 
-#: ../../mod/settings.php:1160
+#: ../../mod/settings.php:1180
 msgid "Default Permissions for New Posts"
 msgstr "Standardberechtigungen für neue Beiträge"
 
-#: ../../mod/settings.php:1172
+#: ../../mod/settings.php:1192
 msgid "Maximum private messages per day from unknown people:"
 msgstr "Maximale Anzahl privater Nachrichten von Unbekannten pro Tag:"
 
-#: ../../mod/settings.php:1175
+#: ../../mod/settings.php:1195
 msgid "Notification Settings"
 msgstr "Benachrichtigungseinstellungen"
 
-#: ../../mod/settings.php:1176
+#: ../../mod/settings.php:1196
 msgid "By default post a status message when:"
 msgstr "Standardmäßig eine Statusnachricht posten, wenn:"
 
-#: ../../mod/settings.php:1177
+#: ../../mod/settings.php:1197
 msgid "accepting a friend request"
 msgstr "– Du eine Kontaktanfrage akzeptierst"
 
-#: ../../mod/settings.php:1178
+#: ../../mod/settings.php:1198
 msgid "joining a forum/community"
 msgstr "– Du einem Forum/einer Gemeinschaftsseite beitrittst"
 
-#: ../../mod/settings.php:1179
+#: ../../mod/settings.php:1199
 msgid "making an <em>interesting</em> profile change"
 msgstr "– Du eine <em>interessante</em> Änderung an Deinem Profil durchführst"
 
-#: ../../mod/settings.php:1180
+#: ../../mod/settings.php:1200
 msgid "Send a notification email when:"
 msgstr "Benachrichtigungs-E-Mail senden wenn:"
 
-#: ../../mod/settings.php:1181
+#: ../../mod/settings.php:1201
 msgid "You receive an introduction"
 msgstr "– Du eine Kontaktanfrage erhältst"
 
-#: ../../mod/settings.php:1182
+#: ../../mod/settings.php:1202
 msgid "Your introductions are confirmed"
 msgstr "– eine Deiner Kontaktanfragen akzeptiert wurde"
 
-#: ../../mod/settings.php:1183
+#: ../../mod/settings.php:1203
 msgid "Someone writes on your profile wall"
 msgstr "– jemand etwas auf Deine Pinnwand schreibt"
 
-#: ../../mod/settings.php:1184
+#: ../../mod/settings.php:1204
 msgid "Someone writes a followup comment"
 msgstr "– jemand auch einen Kommentar verfasst"
 
-#: ../../mod/settings.php:1185
+#: ../../mod/settings.php:1205
 msgid "You receive a private message"
 msgstr "– Du eine private Nachricht erhältst"
 
-#: ../../mod/settings.php:1186
+#: ../../mod/settings.php:1206
 msgid "You receive a friend suggestion"
 msgstr "– Du eine Empfehlung erhältst"
 
-#: ../../mod/settings.php:1187
+#: ../../mod/settings.php:1207
 msgid "You are tagged in a post"
 msgstr "– Du in einem Beitrag erwähnt wirst"
 
-#: ../../mod/settings.php:1188
+#: ../../mod/settings.php:1208
 msgid "You are poked/prodded/etc. in a post"
 msgstr "– Du von jemandem angestupst oder sonstwie behandelt wirst"
 
-#: ../../mod/settings.php:1190
+#: ../../mod/settings.php:1210
+msgid "Activate desktop notifications"
+msgstr "Desktop Benachrichtigungen einschalten"
+
+#: ../../mod/settings.php:1211
+msgid ""
+"Note: This is an experimental feature, as being not supported by each "
+"browser"
+msgstr "Hinweis: Dies ist ein experimentelles Feature und wird nicht von allen Browsern unterstützt."
+
+#: ../../mod/settings.php:1212
+msgid "You will now receive desktop notifications!"
+msgstr "Du wirst nun Desktop Benachrichtigungen empfangen!"
+
+#: ../../mod/settings.php:1214
 msgid "Text-only notification emails"
 msgstr "Benachrichtigungs E-Mail als Rein-Text."
 
-#: ../../mod/settings.php:1192
+#: ../../mod/settings.php:1216
 msgid "Send text only notification emails, without the html part"
 msgstr "Sende Benachrichtigungs E-Mail als Rein-Text - ohne HTML-Teil"
 
-#: ../../mod/settings.php:1194
+#: ../../mod/settings.php:1218
 msgid "Advanced Account/Page Type Settings"
 msgstr "Erweiterte Konto-/Seitentyp-Einstellungen"
 
-#: ../../mod/settings.php:1195
+#: ../../mod/settings.php:1219
 msgid "Change the behaviour of this account for special situations"
 msgstr "Verhalten dieses Kontos in bestimmten Situationen:"
 
-#: ../../mod/settings.php:1198
+#: ../../mod/settings.php:1222
 msgid "Relocate"
 msgstr "Umziehen"
 
-#: ../../mod/settings.php:1199
+#: ../../mod/settings.php:1223
 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:1200
+#: ../../mod/settings.php:1224
 msgid "Resend relocate message to contacts"
 msgstr "Umzugsbenachrichtigung erneut an Kontakte senden"
 
@@ -4180,337 +4182,337 @@ msgstr "Entfernte Privatsphäreneinstellungen nicht verfügbar."
 msgid "Visible to:"
 msgstr "Sichtbar für:"
 
-#: ../../mod/contacts.php:112
+#: ../../mod/contacts.php:114
 #, php-format
 msgid "%d contact edited."
 msgid_plural "%d contacts edited"
 msgstr[0] "%d Kontakt bearbeitet."
 msgstr[1] "%d Kontakte bearbeitet"
 
-#: ../../mod/contacts.php:143 ../../mod/contacts.php:276
+#: ../../mod/contacts.php:145 ../../mod/contacts.php:340
 msgid "Could not access contact record."
 msgstr "Konnte nicht auf die Kontaktdaten zugreifen."
 
-#: ../../mod/contacts.php:157
+#: ../../mod/contacts.php:159
 msgid "Could not locate selected profile."
 msgstr "Konnte das ausgewählte Profil nicht finden."
 
-#: ../../mod/contacts.php:190
+#: ../../mod/contacts.php:192
 msgid "Contact updated."
 msgstr "Kontakt aktualisiert."
 
-#: ../../mod/contacts.php:192 ../../mod/dfrn_request.php:576
+#: ../../mod/contacts.php:194 ../../mod/dfrn_request.php:576
 msgid "Failed to update contact record."
 msgstr "Aktualisierung der Kontaktdaten fehlgeschlagen."
 
-#: ../../mod/contacts.php:291
+#: ../../mod/contacts.php:361
 msgid "Contact has been blocked"
 msgstr "Kontakt wurde blockiert"
 
-#: ../../mod/contacts.php:291
+#: ../../mod/contacts.php:361
 msgid "Contact has been unblocked"
 msgstr "Kontakt wurde wieder freigegeben"
 
-#: ../../mod/contacts.php:302
+#: ../../mod/contacts.php:372
 msgid "Contact has been ignored"
 msgstr "Kontakt wurde ignoriert"
 
-#: ../../mod/contacts.php:302
+#: ../../mod/contacts.php:372
 msgid "Contact has been unignored"
 msgstr "Kontakt wird nicht mehr ignoriert"
 
-#: ../../mod/contacts.php:314
+#: ../../mod/contacts.php:384
 msgid "Contact has been archived"
 msgstr "Kontakt wurde archiviert"
 
-#: ../../mod/contacts.php:314
+#: ../../mod/contacts.php:384
 msgid "Contact has been unarchived"
 msgstr "Kontakt wurde aus dem Archiv geholt"
 
-#: ../../mod/contacts.php:339 ../../mod/contacts.php:727
+#: ../../mod/contacts.php:409 ../../mod/contacts.php:797
 msgid "Do you really want to delete this contact?"
 msgstr "Möchtest Du wirklich diesen Kontakt löschen?"
 
-#: ../../mod/contacts.php:356
+#: ../../mod/contacts.php:426
 msgid "Contact has been removed."
 msgstr "Kontakt wurde entfernt."
 
-#: ../../mod/contacts.php:394
+#: ../../mod/contacts.php:464
 #, php-format
 msgid "You are mutual friends with %s"
 msgstr "Du hast mit %s eine beidseitige Freundschaft"
 
-#: ../../mod/contacts.php:398
+#: ../../mod/contacts.php:468
 #, php-format
 msgid "You are sharing with %s"
 msgstr "Du teilst mit %s"
 
-#: ../../mod/contacts.php:403
+#: ../../mod/contacts.php:473
 #, php-format
 msgid "%s is sharing with you"
 msgstr "%s teilt mit Dir"
 
-#: ../../mod/contacts.php:423
+#: ../../mod/contacts.php:493
 msgid "Private communications are not available for this contact."
 msgstr "Private Kommunikation ist für diesen Kontakt nicht verfügbar."
 
-#: ../../mod/contacts.php:426 ../../mod/admin.php:569
+#: ../../mod/contacts.php:496 ../../mod/admin.php:571
 msgid "Never"
 msgstr "Niemals"
 
-#: ../../mod/contacts.php:430
+#: ../../mod/contacts.php:500
 msgid "(Update was successful)"
 msgstr "(Aktualisierung war erfolgreich)"
 
-#: ../../mod/contacts.php:430
+#: ../../mod/contacts.php:500
 msgid "(Update was not successful)"
 msgstr "(Aktualisierung war nicht erfolgreich)"
 
-#: ../../mod/contacts.php:432
+#: ../../mod/contacts.php:502
 msgid "Suggest friends"
 msgstr "Kontakte vorschlagen"
 
-#: ../../mod/contacts.php:436
+#: ../../mod/contacts.php:506
 #, php-format
 msgid "Network type: %s"
 msgstr "Netzwerktyp: %s"
 
-#: ../../mod/contacts.php:444
+#: ../../mod/contacts.php:514
 msgid "View all contacts"
 msgstr "Alle Kontakte anzeigen"
 
-#: ../../mod/contacts.php:449 ../../mod/contacts.php:518
-#: ../../mod/contacts.php:730 ../../mod/admin.php:1009
+#: ../../mod/contacts.php:519 ../../mod/contacts.php:588
+#: ../../mod/contacts.php:800 ../../mod/admin.php:1012
 msgid "Unblock"
 msgstr "Entsperren"
 
-#: ../../mod/contacts.php:449 ../../mod/contacts.php:518
-#: ../../mod/contacts.php:730 ../../mod/admin.php:1008
+#: ../../mod/contacts.php:519 ../../mod/contacts.php:588
+#: ../../mod/contacts.php:800 ../../mod/admin.php:1011
 msgid "Block"
 msgstr "Sperren"
 
-#: ../../mod/contacts.php:452
+#: ../../mod/contacts.php:522
 msgid "Toggle Blocked status"
 msgstr "Geblockt-Status ein-/ausschalten"
 
-#: ../../mod/contacts.php:455 ../../mod/contacts.php:519
-#: ../../mod/contacts.php:731
+#: ../../mod/contacts.php:525 ../../mod/contacts.php:589
+#: ../../mod/contacts.php:801
 msgid "Unignore"
 msgstr "Ignorieren aufheben"
 
-#: ../../mod/contacts.php:458
+#: ../../mod/contacts.php:528
 msgid "Toggle Ignored status"
 msgstr "Ignoriert-Status ein-/ausschalten"
 
-#: ../../mod/contacts.php:462 ../../mod/contacts.php:732
+#: ../../mod/contacts.php:532 ../../mod/contacts.php:802
 msgid "Unarchive"
 msgstr "Aus Archiv zurückholen"
 
-#: ../../mod/contacts.php:462 ../../mod/contacts.php:732
+#: ../../mod/contacts.php:532 ../../mod/contacts.php:802
 msgid "Archive"
 msgstr "Archivieren"
 
-#: ../../mod/contacts.php:465
+#: ../../mod/contacts.php:535
 msgid "Toggle Archive status"
 msgstr "Archiviert-Status ein-/ausschalten"
 
-#: ../../mod/contacts.php:468
+#: ../../mod/contacts.php:538
 msgid "Repair"
 msgstr "Reparieren"
 
-#: ../../mod/contacts.php:471
+#: ../../mod/contacts.php:541
 msgid "Advanced Contact Settings"
 msgstr "Fortgeschrittene Kontakteinstellungen"
 
-#: ../../mod/contacts.php:477
+#: ../../mod/contacts.php:547
 msgid "Communications lost with this contact!"
 msgstr "Verbindungen mit diesem Kontakt verloren!"
 
-#: ../../mod/contacts.php:480
+#: ../../mod/contacts.php:550
 msgid "Fetch further information for feeds"
 msgstr "Weitere Informationen zu Feeds holen"
 
-#: ../../mod/contacts.php:481
+#: ../../mod/contacts.php:551
 msgid "Disabled"
 msgstr "Deaktiviert"
 
-#: ../../mod/contacts.php:481
+#: ../../mod/contacts.php:551
 msgid "Fetch information"
 msgstr "Beziehe Information"
 
-#: ../../mod/contacts.php:481
+#: ../../mod/contacts.php:551
 msgid "Fetch information and keywords"
 msgstr "Beziehe Information und Schlüsselworte"
 
-#: ../../mod/contacts.php:490
+#: ../../mod/contacts.php:560
 msgid "Contact Editor"
 msgstr "Kontakt Editor"
 
-#: ../../mod/contacts.php:493
+#: ../../mod/contacts.php:563
 msgid "Profile Visibility"
 msgstr "Profil-Sichtbarkeit"
 
-#: ../../mod/contacts.php:494
+#: ../../mod/contacts.php:564
 #, php-format
 msgid ""
 "Please choose the profile you would like to display to %s when viewing your "
 "profile securely."
 msgstr "Bitte wähle eines Deiner Profile das angezeigt werden soll, wenn %s Dein Profil aufruft."
 
-#: ../../mod/contacts.php:495
+#: ../../mod/contacts.php:565
 msgid "Contact Information / Notes"
 msgstr "Kontakt Informationen / Notizen"
 
-#: ../../mod/contacts.php:496
+#: ../../mod/contacts.php:566
 msgid "Edit contact notes"
 msgstr "Notizen zum Kontakt bearbeiten"
 
-#: ../../mod/contacts.php:501 ../../mod/contacts.php:695
+#: ../../mod/contacts.php:571 ../../mod/contacts.php:765
 #: ../../mod/nogroup.php:40 ../../mod/viewcontacts.php:64
 #, php-format
 msgid "Visit %s's profile [%s]"
 msgstr "Besuche %ss Profil [%s]"
 
-#: ../../mod/contacts.php:502
+#: ../../mod/contacts.php:572
 msgid "Block/Unblock contact"
 msgstr "Kontakt blockieren/freischalten"
 
-#: ../../mod/contacts.php:503
+#: ../../mod/contacts.php:573
 msgid "Ignore contact"
 msgstr "Ignoriere den Kontakt"
 
-#: ../../mod/contacts.php:504
+#: ../../mod/contacts.php:574
 msgid "Repair URL settings"
 msgstr "URL Einstellungen reparieren"
 
-#: ../../mod/contacts.php:505
+#: ../../mod/contacts.php:575
 msgid "View conversations"
 msgstr "Unterhaltungen anzeigen"
 
-#: ../../mod/contacts.php:507
+#: ../../mod/contacts.php:577
 msgid "Delete contact"
 msgstr "Lösche den Kontakt"
 
-#: ../../mod/contacts.php:511
+#: ../../mod/contacts.php:581
 msgid "Last update:"
 msgstr "Letzte Aktualisierung: "
 
-#: ../../mod/contacts.php:513
+#: ../../mod/contacts.php:583
 msgid "Update public posts"
 msgstr "Öffentliche Beiträge aktualisieren"
 
-#: ../../mod/contacts.php:515 ../../mod/admin.php:1503
+#: ../../mod/contacts.php:585 ../../mod/admin.php:1506
 msgid "Update now"
 msgstr "Jetzt aktualisieren"
 
-#: ../../mod/contacts.php:522
+#: ../../mod/contacts.php:592
 msgid "Currently blocked"
 msgstr "Derzeit geblockt"
 
-#: ../../mod/contacts.php:523
+#: ../../mod/contacts.php:593
 msgid "Currently ignored"
 msgstr "Derzeit ignoriert"
 
-#: ../../mod/contacts.php:524
+#: ../../mod/contacts.php:594
 msgid "Currently archived"
 msgstr "Momentan archiviert"
 
-#: ../../mod/contacts.php:525
+#: ../../mod/contacts.php:595
 msgid ""
 "Replies/likes to your public posts <strong>may</strong> still be visible"
 msgstr "Antworten/Likes auf deine öffentlichen Beiträge <strong>könnten</strong> weiterhin sichtbar sein"
 
-#: ../../mod/contacts.php:526
+#: ../../mod/contacts.php:596
 msgid "Notification for new posts"
 msgstr "Benachrichtigung bei neuen Beiträgen"
 
-#: ../../mod/contacts.php:526
+#: ../../mod/contacts.php:596
 msgid "Send a notification of every new post of this contact"
 msgstr "Sende eine Benachrichtigung, wann immer dieser Kontakt einen neuen Beitrag schreibt."
 
-#: ../../mod/contacts.php:529
+#: ../../mod/contacts.php:599
 msgid "Blacklisted keywords"
 msgstr "Blacklistete Schlüsselworte "
 
-#: ../../mod/contacts.php:529
+#: ../../mod/contacts.php:599
 msgid ""
 "Comma separated list of keywords that should not be converted to hashtags, "
 "when \"Fetch information and keywords\" is selected"
 msgstr "Komma-Separierte Liste mit Schlüsselworten, die nicht in Hashtags konvertiert werden, wenn \"Beziehe Information und Schlüsselworte\" aktiviert wurde"
 
-#: ../../mod/contacts.php:580
+#: ../../mod/contacts.php:650
 msgid "Suggestions"
 msgstr "Kontaktvorschläge"
 
-#: ../../mod/contacts.php:583
+#: ../../mod/contacts.php:653
 msgid "Suggest potential friends"
 msgstr "Freunde vorschlagen"
 
-#: ../../mod/contacts.php:589
+#: ../../mod/contacts.php:659
 msgid "Show all contacts"
 msgstr "Alle Kontakte anzeigen"
 
-#: ../../mod/contacts.php:592
+#: ../../mod/contacts.php:662
 msgid "Unblocked"
 msgstr "Ungeblockt"
 
-#: ../../mod/contacts.php:595
+#: ../../mod/contacts.php:665
 msgid "Only show unblocked contacts"
 msgstr "Nur nicht-blockierte Kontakte anzeigen"
 
-#: ../../mod/contacts.php:599
+#: ../../mod/contacts.php:669
 msgid "Blocked"
 msgstr "Geblockt"
 
-#: ../../mod/contacts.php:602
+#: ../../mod/contacts.php:672
 msgid "Only show blocked contacts"
 msgstr "Nur blockierte Kontakte anzeigen"
 
-#: ../../mod/contacts.php:606
+#: ../../mod/contacts.php:676
 msgid "Ignored"
 msgstr "Ignoriert"
 
-#: ../../mod/contacts.php:609
+#: ../../mod/contacts.php:679
 msgid "Only show ignored contacts"
 msgstr "Nur ignorierte Kontakte anzeigen"
 
-#: ../../mod/contacts.php:613
+#: ../../mod/contacts.php:683
 msgid "Archived"
 msgstr "Archiviert"
 
-#: ../../mod/contacts.php:616
+#: ../../mod/contacts.php:686
 msgid "Only show archived contacts"
 msgstr "Nur archivierte Kontakte anzeigen"
 
-#: ../../mod/contacts.php:620
+#: ../../mod/contacts.php:690
 msgid "Hidden"
 msgstr "Verborgen"
 
-#: ../../mod/contacts.php:623
+#: ../../mod/contacts.php:693
 msgid "Only show hidden contacts"
 msgstr "Nur verborgene Kontakte anzeigen"
 
-#: ../../mod/contacts.php:671
+#: ../../mod/contacts.php:741
 msgid "Mutual Friendship"
 msgstr "Beidseitige Freundschaft"
 
-#: ../../mod/contacts.php:675
+#: ../../mod/contacts.php:745
 msgid "is a fan of yours"
 msgstr "ist ein Fan von dir"
 
-#: ../../mod/contacts.php:679
+#: ../../mod/contacts.php:749
 msgid "you are a fan of"
 msgstr "Du bist Fan von"
 
-#: ../../mod/contacts.php:696 ../../mod/nogroup.php:41
+#: ../../mod/contacts.php:766 ../../mod/nogroup.php:41
 msgid "Edit contact"
 msgstr "Kontakt bearbeiten"
 
-#: ../../mod/contacts.php:722
+#: ../../mod/contacts.php:792
 msgid "Search your contacts"
 msgstr "Suche in deinen Kontakten"
 
-#: ../../mod/contacts.php:723 ../../mod/directory.php:61
+#: ../../mod/contacts.php:793 ../../mod/directory.php:61
 msgid "Finding: "
 msgstr "Funde: "
 
@@ -4612,7 +4614,7 @@ msgstr "Mitgliedschaft auf dieser Seite ist nur nach vorheriger Einladung mögli
 msgid "Your invitation ID: "
 msgstr "ID Deiner Einladung: "
 
-#: ../../mod/register.php:255 ../../mod/admin.php:621
+#: ../../mod/register.php:255 ../../mod/admin.php:623
 msgid "Registration"
 msgstr "Registrierung"
 
@@ -4651,7 +4653,7 @@ msgstr "Beitrag erfolgreich veröffentlicht."
 msgid "System down for maintenance"
 msgstr "System zur Wartung abgeschaltet"
 
-#: ../../mod/profile.php:155 ../../mod/display.php:332
+#: ../../mod/profile.php:155 ../../mod/display.php:334
 msgid "Access to this profile has been restricted."
 msgstr "Der Zugriff zu diesem Profil wurde eingeschränkt."
 
@@ -4659,10 +4661,10 @@ msgstr "Der Zugriff zu diesem Profil wurde eingeschränkt."
 msgid "Tips for New Members"
 msgstr "Tipps für neue Nutzer"
 
-#: ../../mod/videos.php:115 ../../mod/dfrn_request.php:762
+#: ../../mod/videos.php:115 ../../mod/dfrn_request.php:777
 #: ../../mod/viewcontacts.php:19 ../../mod/photos.php:920
 #: ../../mod/search.php:89 ../../mod/community.php:18
-#: ../../mod/display.php:212 ../../mod/directory.php:33
+#: ../../mod/display.php:214 ../../mod/directory.php:33
 msgid "Public access denied."
 msgstr "Öffentlicher Zugriff verweigert."
 
@@ -4712,7 +4714,7 @@ msgstr "Beitrag bearbeiten"
 msgid "People Search"
 msgstr "Personensuche"
 
-#: ../../mod/dirfind.php:60 ../../mod/match.php:65
+#: ../../mod/dirfind.php:60 ../../mod/match.php:71
 msgid "No matches"
 msgstr "Keine Übereinstimmungen"
 
@@ -4820,72 +4822,76 @@ msgid ""
 "<strong>this</strong> profile."
 msgstr "Momentan bist Du mit einer anderen Identität angemeldet. Bitte melde Dich mit <strong>diesem</strong> Profil an."
 
-#: ../../mod/dfrn_request.php:671
+#: ../../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:674
+#: ../../mod/dfrn_request.php:689
 #, php-format
 msgid "Welcome home %s."
 msgstr "Willkommen zurück %s."
 
-#: ../../mod/dfrn_request.php:675
+#: ../../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:804
+#: ../../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:824
+#: ../../mod/dfrn_request.php:839
 msgid ""
 "If you are not yet a member of the free social web, <a "
 "href=\"http://dir.friendica.com/siteinfo\">follow this link to find a public"
 " Friendica site and join us today</a>."
 msgstr "Wenn Du noch kein Mitglied dieses freien sozialen Netzwerks bist, <a href=\"http://Dir.friendica.com/siteinfo\">folge diesem Link</a> um einen öffentlichen Friendica-Server zu finden und beizutreten."
 
-#: ../../mod/dfrn_request.php:827
+#: ../../mod/dfrn_request.php:842
 msgid "Friend/Connection Request"
 msgstr "Freundschafts-/Kontaktanfrage"
 
-#: ../../mod/dfrn_request.php:828
+#: ../../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:829
+#: ../../mod/dfrn_request.php:844 ../../mod/follow.php:53
 msgid "Please answer the following:"
 msgstr "Bitte beantworte folgendes:"
 
-#: ../../mod/dfrn_request.php:830
+#: ../../mod/dfrn_request.php:845 ../../mod/follow.php:54
 #, php-format
 msgid "Does %s know you?"
 msgstr "Kennt %s Dich?"
 
-#: ../../mod/dfrn_request.php:834
+#: ../../mod/dfrn_request.php:849 ../../mod/follow.php:55
 msgid "Add a personal note:"
 msgstr "Eine persönliche Notiz beifügen:"
 
-#: ../../mod/dfrn_request.php:837
+#: ../../mod/dfrn_request.php:852
 msgid "StatusNet/Federated Social Web"
 msgstr "StatusNet/Federated Social Web"
 
-#: ../../mod/dfrn_request.php:839
+#: ../../mod/dfrn_request.php:854
 #, 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."
 
-#: ../../mod/dfrn_request.php:840
+#: ../../mod/dfrn_request.php:855 ../../mod/follow.php:61
 msgid "Your Identity Address:"
 msgstr "Adresse Deines Profils:"
 
-#: ../../mod/dfrn_request.php:843
+#: ../../mod/dfrn_request.php:858 ../../mod/follow.php:64
 msgid "Submit Request"
 msgstr "Anfrage abschicken"
 
@@ -4947,7 +4953,7 @@ msgstr "Kontakte vorschlagen"
 msgid "Suggest a friend for %s"
 msgstr "Schlage %s einen Kontakt vor"
 
-#: ../../mod/share.php:44
+#: ../../mod/share.php:38
 msgid "link"
 msgstr "Link"
 
@@ -4959,15 +4965,15 @@ msgstr "Keine Kontakte."
 msgid "Theme settings updated."
 msgstr "Themeneinstellungen aktualisiert."
 
-#: ../../mod/admin.php:104 ../../mod/admin.php:619
+#: ../../mod/admin.php:104 ../../mod/admin.php:621
 msgid "Site"
 msgstr "Seite"
 
-#: ../../mod/admin.php:105 ../../mod/admin.php:998 ../../mod/admin.php:1013
+#: ../../mod/admin.php:105 ../../mod/admin.php:1001 ../../mod/admin.php:1016
 msgid "Users"
 msgstr "Nutzer"
 
-#: ../../mod/admin.php:107 ../../mod/admin.php:1323 ../../mod/admin.php:1357
+#: ../../mod/admin.php:107 ../../mod/admin.php:1326 ../../mod/admin.php:1360
 msgid "Themes"
 msgstr "Themen"
 
@@ -4975,7 +4981,7 @@ msgstr "Themen"
 msgid "DB updates"
 msgstr "DB Updates"
 
-#: ../../mod/admin.php:123 ../../mod/admin.php:132 ../../mod/admin.php:1444
+#: ../../mod/admin.php:123 ../../mod/admin.php:132 ../../mod/admin.php:1447
 msgid "Logs"
 msgstr "Protokolle"
 
@@ -4999,19 +5005,19 @@ msgstr "Diagnose"
 msgid "User registrations waiting for confirmation"
 msgstr "Nutzeranmeldungen die auf Bestätigung warten"
 
-#: ../../mod/admin.php:193 ../../mod/admin.php:952
+#: ../../mod/admin.php:193 ../../mod/admin.php:955
 msgid "Normal Account"
 msgstr "Normales Konto"
 
-#: ../../mod/admin.php:194 ../../mod/admin.php:953
+#: ../../mod/admin.php:194 ../../mod/admin.php:956
 msgid "Soapbox Account"
 msgstr "Marktschreier-Konto"
 
-#: ../../mod/admin.php:195 ../../mod/admin.php:954
+#: ../../mod/admin.php:195 ../../mod/admin.php:957
 msgid "Community/Celebrity Account"
 msgstr "Forum/Promi-Konto"
 
-#: ../../mod/admin.php:196 ../../mod/admin.php:955
+#: ../../mod/admin.php:196 ../../mod/admin.php:958
 msgid "Automatic Friend Account"
 msgstr "Automatisches Freundekonto"
 
@@ -5027,9 +5033,9 @@ msgstr "Privates Forum"
 msgid "Message queues"
 msgstr "Nachrichten-Warteschlangen"
 
-#: ../../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:620 ../../mod/admin.php:1000
+#: ../../mod/admin.php:1104 ../../mod/admin.php:1157 ../../mod/admin.php:1325
+#: ../../mod/admin.php:1359 ../../mod/admin.php:1446
 msgid "Administration"
 msgstr "Administration"
 
@@ -5057,331 +5063,331 @@ msgstr "Aktive Plugins"
 msgid "Can not parse base url. Must have at least <scheme>://<domain>"
 msgstr "Die Basis-URL konnte nicht analysiert werden. Sie muss mindestens aus <protokoll>://<domain> bestehen"
 
-#: ../../mod/admin.php:516
+#: ../../mod/admin.php:518
 msgid "Site settings updated."
 msgstr "Seiteneinstellungen aktualisiert."
 
-#: ../../mod/admin.php:562
+#: ../../mod/admin.php:564
 msgid "No community page"
 msgstr "Keine Gemeinschaftsseite"
 
-#: ../../mod/admin.php:563
+#: ../../mod/admin.php:565
 msgid "Public postings from users of this site"
 msgstr "Öffentliche Beiträge von Nutzer_innen dieser Seite"
 
-#: ../../mod/admin.php:564
+#: ../../mod/admin.php:566
 msgid "Global community page"
 msgstr "Globale Gemeinschaftsseite"
 
-#: ../../mod/admin.php:570
+#: ../../mod/admin.php:572
 msgid "At post arrival"
 msgstr "Beim Empfang von Nachrichten"
 
-#: ../../mod/admin.php:579
+#: ../../mod/admin.php:581
 msgid "Multi user instance"
 msgstr "Mehrbenutzer Instanz"
 
-#: ../../mod/admin.php:602
+#: ../../mod/admin.php:604
 msgid "Closed"
 msgstr "Geschlossen"
 
-#: ../../mod/admin.php:603
+#: ../../mod/admin.php:605
 msgid "Requires approval"
 msgstr "Bedarf der Zustimmung"
 
-#: ../../mod/admin.php:604
+#: ../../mod/admin.php:606
 msgid "Open"
 msgstr "Offen"
 
-#: ../../mod/admin.php:608
+#: ../../mod/admin.php:610
 msgid "No SSL policy, links will track page SSL state"
 msgstr "Keine SSL Richtlinie, Links werden das verwendete Protokoll beibehalten"
 
-#: ../../mod/admin.php:609
+#: ../../mod/admin.php:611
 msgid "Force all links to use SSL"
 msgstr "SSL für alle Links erzwingen"
 
-#: ../../mod/admin.php:610
+#: ../../mod/admin.php:612
 msgid "Self-signed certificate, use SSL for local links only (discouraged)"
 msgstr "Selbst-unterzeichnetes Zertifikat, SSL nur für lokale Links verwenden (nicht empfohlen)"
 
-#: ../../mod/admin.php:622
+#: ../../mod/admin.php:624
 msgid "File upload"
 msgstr "Datei hochladen"
 
-#: ../../mod/admin.php:623
+#: ../../mod/admin.php:625
 msgid "Policies"
 msgstr "Regeln"
 
-#: ../../mod/admin.php:624
+#: ../../mod/admin.php:626
 msgid "Advanced"
 msgstr "Erweitert"
 
-#: ../../mod/admin.php:625
+#: ../../mod/admin.php:627
 msgid "Performance"
 msgstr "Performance"
 
-#: ../../mod/admin.php:626
+#: ../../mod/admin.php:628
 msgid ""
 "Relocate - WARNING: advanced function. Could make this server unreachable."
 msgstr "Umsiedeln - WARNUNG: Könnte diesen Server unerreichbar machen."
 
-#: ../../mod/admin.php:629
+#: ../../mod/admin.php:631
 msgid "Site name"
 msgstr "Seitenname"
 
-#: ../../mod/admin.php:630
+#: ../../mod/admin.php:632
 msgid "Host name"
 msgstr "Host Name"
 
-#: ../../mod/admin.php:631
+#: ../../mod/admin.php:633
 msgid "Sender Email"
 msgstr "Absender für Emails"
 
-#: ../../mod/admin.php:632
+#: ../../mod/admin.php:634
 msgid "Banner/Logo"
 msgstr "Banner/Logo"
 
-#: ../../mod/admin.php:633
+#: ../../mod/admin.php:635
 msgid "Shortcut icon"
 msgstr "Shortcut Icon"
 
-#: ../../mod/admin.php:634
+#: ../../mod/admin.php:636
 msgid "Touch icon"
 msgstr "Touch Icon"
 
-#: ../../mod/admin.php:635
+#: ../../mod/admin.php:637
 msgid "Additional Info"
 msgstr "Zusätzliche Informationen"
 
-#: ../../mod/admin.php:635
+#: ../../mod/admin.php:637
 msgid ""
 "For public servers: you can add additional information here that will be "
 "listed at dir.friendica.com/siteinfo."
 msgstr "Für öffentliche Server kannst Du hier zusätzliche Informationen angeben, die dann auf Dir.friendica.com/siteinfo angezeigt werden."
 
-#: ../../mod/admin.php:636
+#: ../../mod/admin.php:638
 msgid "System language"
 msgstr "Systemsprache"
 
-#: ../../mod/admin.php:637
+#: ../../mod/admin.php:639
 msgid "System theme"
 msgstr "Systemweites Theme"
 
-#: ../../mod/admin.php:637
+#: ../../mod/admin.php:639
 msgid ""
 "Default system theme - may be over-ridden by user profiles - <a href='#' "
 "id='cnftheme'>change theme settings</a>"
 msgstr "Vorgabe für das System-Theme - kann von Benutzerprofilen überschrieben werden - <a href='#' id='cnftheme'>Theme-Einstellungen ändern</a>"
 
-#: ../../mod/admin.php:638
+#: ../../mod/admin.php:640
 msgid "Mobile system theme"
 msgstr "Systemweites mobiles Theme"
 
-#: ../../mod/admin.php:638
+#: ../../mod/admin.php:640
 msgid "Theme for mobile devices"
 msgstr "Thema für mobile Geräte"
 
-#: ../../mod/admin.php:639
+#: ../../mod/admin.php:641
 msgid "SSL link policy"
 msgstr "Regeln für SSL Links"
 
-#: ../../mod/admin.php:639
+#: ../../mod/admin.php:641
 msgid "Determines whether generated links should be forced to use SSL"
 msgstr "Bestimmt, ob generierte Links SSL verwenden müssen"
 
-#: ../../mod/admin.php:640
+#: ../../mod/admin.php:642
 msgid "Force SSL"
 msgstr "Erzwinge SSL"
 
-#: ../../mod/admin.php:640
+#: ../../mod/admin.php:642
 msgid ""
 "Force all Non-SSL requests to SSL - Attention: on some systems it could lead"
 " to endless loops."
 msgstr "Erzinge alle Nicht-SSL Anfragen auf SSL - Achtung: auf manchen Systemen verursacht dies eine Endlosschleife."
 
-#: ../../mod/admin.php:641
+#: ../../mod/admin.php:643
 msgid "Old style 'Share'"
 msgstr "Altes \"Teilen\" Element"
 
-#: ../../mod/admin.php:641
+#: ../../mod/admin.php:643
 msgid "Deactivates the bbcode element 'share' for repeating items."
 msgstr "Deaktiviert das BBCode Element \"share\" beim Wiederholen von Beiträgen."
 
-#: ../../mod/admin.php:642
+#: ../../mod/admin.php:644
 msgid "Hide help entry from navigation menu"
 msgstr "Verberge den Menüeintrag für die Hilfe im Navigationsmenü"
 
-#: ../../mod/admin.php:642
+#: ../../mod/admin.php:644
 msgid ""
 "Hides the menu entry for the Help pages from the navigation menu. You can "
 "still access it calling /help directly."
 msgstr "Verbirgt den Menüeintrag für die Hilfe-Seiten im Navigationsmenü. Die Seiten können weiterhin über /help aufgerufen werden."
 
-#: ../../mod/admin.php:643
+#: ../../mod/admin.php:645
 msgid "Single user instance"
 msgstr "Ein-Nutzer Instanz"
 
-#: ../../mod/admin.php:643
+#: ../../mod/admin.php:645
 msgid "Make this instance multi-user or single-user for the named user"
 msgstr "Regelt ob es sich bei dieser Instanz um eine ein Personen Installation oder eine Installation mit mehr als einem Nutzer handelt."
 
-#: ../../mod/admin.php:644
+#: ../../mod/admin.php:646
 msgid "Maximum image size"
 msgstr "Maximale Bildgröße"
 
-#: ../../mod/admin.php:644
+#: ../../mod/admin.php:646
 msgid ""
 "Maximum size in bytes of uploaded images. Default is 0, which means no "
 "limits."
 msgstr "Maximale Uploadgröße von Bildern in Bytes. Standard ist 0, d.h. ohne Limit."
 
-#: ../../mod/admin.php:645
+#: ../../mod/admin.php:647
 msgid "Maximum image length"
 msgstr "Maximale Bildlänge"
 
-#: ../../mod/admin.php:645
+#: ../../mod/admin.php:647
 msgid ""
 "Maximum length in pixels of the longest side of uploaded images. Default is "
 "-1, which means no limits."
 msgstr "Maximale Länge in Pixeln der längsten Seite eines hoch geladenen Bildes. Grundeinstellung ist -1 was keine Einschränkung bedeutet."
 
-#: ../../mod/admin.php:646
+#: ../../mod/admin.php:648
 msgid "JPEG image quality"
 msgstr "Qualität des JPEG Bildes"
 
-#: ../../mod/admin.php:646
+#: ../../mod/admin.php:648
 msgid ""
 "Uploaded JPEGS will be saved at this quality setting [0-100]. Default is "
 "100, which is full quality."
 msgstr "Hoch geladene JPEG Bilder werden mit dieser Qualität [0-100] gespeichert. Grundeinstellung ist 100, kein Qualitätsverlust."
 
-#: ../../mod/admin.php:648
+#: ../../mod/admin.php:650
 msgid "Register policy"
 msgstr "Registrierungsmethode"
 
-#: ../../mod/admin.php:649
+#: ../../mod/admin.php:651
 msgid "Maximum Daily Registrations"
 msgstr "Maximum täglicher Registrierungen"
 
-#: ../../mod/admin.php:649
+#: ../../mod/admin.php:651
 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 "Wenn die Registrierung weiter oben erlaubt ist, regelt dies die maximale Anzahl von Neuanmeldungen pro Tag. Wenn die Registrierung geschlossen ist, hat diese Einstellung keinen Effekt."
 
-#: ../../mod/admin.php:650
+#: ../../mod/admin.php:652
 msgid "Register text"
 msgstr "Registrierungstext"
 
-#: ../../mod/admin.php:650
+#: ../../mod/admin.php:652
 msgid "Will be displayed prominently on the registration page."
 msgstr "Wird gut sichtbar auf der Registrierungsseite angezeigt."
 
-#: ../../mod/admin.php:651
+#: ../../mod/admin.php:653
 msgid "Accounts abandoned after x days"
 msgstr "Nutzerkonten gelten nach x Tagen als unbenutzt"
 
-#: ../../mod/admin.php:651
+#: ../../mod/admin.php:653
 msgid ""
 "Will not waste system resources polling external sites for abandonded "
 "accounts. Enter 0 for no time limit."
 msgstr "Verschwende keine System-Ressourcen auf das Pollen externer Seiten, wenn Konten nicht mehr benutzt werden. 0 eingeben für kein Limit."
 
-#: ../../mod/admin.php:652
+#: ../../mod/admin.php:654
 msgid "Allowed friend domains"
 msgstr "Erlaubte Domains für Kontakte"
 
-#: ../../mod/admin.php:652
+#: ../../mod/admin.php:654
 msgid ""
 "Comma separated list of domains which are allowed to establish friendships "
 "with this site. Wildcards are accepted. Empty to allow any domains"
 msgstr "Liste der Domains, die für Freundschaften erlaubt sind, durch Kommas getrennt. Platzhalter werden akzeptiert. Leer lassen, um alle Domains zu erlauben."
 
-#: ../../mod/admin.php:653
+#: ../../mod/admin.php:655
 msgid "Allowed email domains"
 msgstr "Erlaubte Domains für E-Mails"
 
-#: ../../mod/admin.php:653
+#: ../../mod/admin.php:655
 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 "Liste der Domains, die für E-Mail-Adressen bei der Registrierung erlaubt sind, durch Kommas getrennt. Platzhalter werden akzeptiert. Leer lassen, um alle Domains zu erlauben."
 
-#: ../../mod/admin.php:654
+#: ../../mod/admin.php:656
 msgid "Block public"
 msgstr "Öffentlichen Zugriff blockieren"
 
-#: ../../mod/admin.php:654
+#: ../../mod/admin.php:656
 msgid ""
 "Check to block public access to all otherwise public personal pages on this "
 "site unless you are currently logged in."
 msgstr "Klicken, um öffentlichen Zugriff auf sonst öffentliche Profile zu blockieren, wenn man nicht eingeloggt ist."
 
-#: ../../mod/admin.php:655
+#: ../../mod/admin.php:657
 msgid "Force publish"
 msgstr "Erzwinge Veröffentlichung"
 
-#: ../../mod/admin.php:655
+#: ../../mod/admin.php:657
 msgid ""
 "Check to force all profiles on this site to be listed in the site directory."
 msgstr "Klicken, um Anzeige aller Profile dieses Servers im Verzeichnis zu erzwingen."
 
-#: ../../mod/admin.php:656
+#: ../../mod/admin.php:658
 msgid "Global directory update URL"
 msgstr "URL für Updates beim weltweiten Verzeichnis"
 
-#: ../../mod/admin.php:656
+#: ../../mod/admin.php:658
 msgid ""
 "URL to update the global directory. If this is not set, the global directory"
 " is completely unavailable to the application."
 msgstr "URL für Update des globalen Verzeichnisses. Wenn nichts eingetragen ist, bleibt das globale Verzeichnis unerreichbar."
 
-#: ../../mod/admin.php:657
+#: ../../mod/admin.php:659
 msgid "Allow threaded items"
 msgstr "Erlaube Threads in Diskussionen"
 
-#: ../../mod/admin.php:657
+#: ../../mod/admin.php:659
 msgid "Allow infinite level threading for items on this site."
 msgstr "Erlaube ein unendliches Level für Threads auf dieser Seite."
 
-#: ../../mod/admin.php:658
+#: ../../mod/admin.php:660
 msgid "Private posts by default for new users"
 msgstr "Private Beiträge als Standard für neue Nutzer"
 
-#: ../../mod/admin.php:658
+#: ../../mod/admin.php:660
 msgid ""
 "Set default post permissions for all new members to the default privacy "
 "group rather than public."
 msgstr "Die Standard-Zugriffsrechte für neue Nutzer werden so gesetzt, dass als Voreinstellung in die private Gruppe gepostet wird anstelle von öffentlichen Beiträgen."
 
-#: ../../mod/admin.php:659
+#: ../../mod/admin.php:661
 msgid "Don't include post content in email notifications"
 msgstr "Inhalte von Beiträgen nicht in E-Mail-Benachrichtigungen versenden"
 
-#: ../../mod/admin.php:659
+#: ../../mod/admin.php:661
 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 "Inhalte von Beiträgen/Kommentaren/privaten Nachrichten/usw., zum Datenschutz nicht in E-Mail-Benachrichtigungen einbinden."
 
-#: ../../mod/admin.php:660
+#: ../../mod/admin.php:662
 msgid "Disallow public access to addons listed in the apps menu."
 msgstr "Öffentlichen Zugriff auf Addons im Apps Menü verbieten."
 
-#: ../../mod/admin.php:660
+#: ../../mod/admin.php:662
 msgid ""
 "Checking this box will restrict addons listed in the apps menu to members "
 "only."
 msgstr "Wenn ausgewählt werden die im Apps Menü aufgeführten Addons nur angemeldeten Nutzern der Seite zur Verfügung gestellt."
 
-#: ../../mod/admin.php:661
+#: ../../mod/admin.php:663
 msgid "Don't embed private images in posts"
 msgstr "Private Bilder nicht in Beiträgen einbetten."
 
-#: ../../mod/admin.php:661
+#: ../../mod/admin.php:663
 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 "
@@ -5389,319 +5395,327 @@ msgid ""
 "while."
 msgstr "Ersetze lokal gehostete private Fotos in Beiträgen nicht mit einer eingebetteten Kopie des Bildes. Dies bedeutet, dass Kontakte, die Beiträge mit privaten Fotos erhalten sich zunächst auf den jeweiligen Servern authentifizieren müssen bevor die Bilder geladen und angezeigt werden, was eine gewisse Zeit dauert."
 
-#: ../../mod/admin.php:662
+#: ../../mod/admin.php:664
 msgid "Allow Users to set remote_self"
 msgstr "Nutzern erlauben das remote_self Flag zu setzen"
 
-#: ../../mod/admin.php:662
+#: ../../mod/admin.php:664
 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 "Ist dies ausgewählt kann jeder Nutzer jeden seiner Kontakte als remote_self (entferntes Konto) im Kontakt reparieren Dialog markieren. Nach dem setzten dieses Flags werden alle Top-Level Beiträge dieser Kontakte automatisch in den Stream dieses Nutzers gepostet."
 
-#: ../../mod/admin.php:663
+#: ../../mod/admin.php:665
 msgid "Block multiple registrations"
 msgstr "Unterbinde Mehrfachregistrierung"
 
-#: ../../mod/admin.php:663
+#: ../../mod/admin.php:665
 msgid "Disallow users to register additional accounts for use as pages."
 msgstr "Benutzern nicht erlauben, weitere Konten als zusätzliche Profile anzulegen."
 
-#: ../../mod/admin.php:664
+#: ../../mod/admin.php:666
 msgid "OpenID support"
 msgstr "OpenID Unterstützung"
 
-#: ../../mod/admin.php:664
+#: ../../mod/admin.php:666
 msgid "OpenID support for registration and logins."
 msgstr "OpenID-Unterstützung für Registrierung und Login."
 
-#: ../../mod/admin.php:665
+#: ../../mod/admin.php:667
 msgid "Fullname check"
 msgstr "Namen auf Vollständigkeit überprüfen"
 
-#: ../../mod/admin.php:665
+#: ../../mod/admin.php:667
 msgid ""
 "Force users to register with a space between firstname and lastname in Full "
 "name, as an antispam measure"
 msgstr "Leerzeichen zwischen Vor- und Nachname im vollständigen Namen erzwingen, um SPAM zu vermeiden."
 
-#: ../../mod/admin.php:666
+#: ../../mod/admin.php:668
 msgid "UTF-8 Regular expressions"
 msgstr "UTF-8 Reguläre Ausdrücke"
 
-#: ../../mod/admin.php:666
+#: ../../mod/admin.php:668
 msgid "Use PHP UTF8 regular expressions"
 msgstr "PHP UTF8 Ausdrücke verwenden"
 
-#: ../../mod/admin.php:667
+#: ../../mod/admin.php:669
 msgid "Community Page Style"
 msgstr "Art der Gemeinschaftsseite"
 
-#: ../../mod/admin.php:667
+#: ../../mod/admin.php:669
 msgid ""
 "Type of community page to show. 'Global community' shows every public "
 "posting from an open distributed network that arrived on this server."
 msgstr "Welche Art der Gemeinschaftsseite soll verwendet werden? Globale Gemeinschaftsseite zeigt alle öffentlichen Beiträge eines offenen dezentralen Netzwerks an die auf diesem Server eintreffen."
 
-#: ../../mod/admin.php:668
+#: ../../mod/admin.php:670
 msgid "Posts per user on community page"
 msgstr "Anzahl der Beiträge pro Benutzer auf der Gemeinschaftsseite"
 
-#: ../../mod/admin.php:668
+#: ../../mod/admin.php:670
 msgid ""
 "The maximum number of posts per user on the community page. (Not valid for "
 "'Global Community')"
 msgstr "Die Anzahl der Beiträge die von jedem Nutzer maximal auf der Gemeinschaftsseite angezeigt werden sollen. Dieser Parameter wird nicht für die Globale Gemeinschaftsseite genutzt."
 
-#: ../../mod/admin.php:669
+#: ../../mod/admin.php:671
 msgid "Enable OStatus support"
 msgstr "OStatus Unterstützung aktivieren"
 
-#: ../../mod/admin.php:669
+#: ../../mod/admin.php:671
 msgid ""
 "Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All "
 "communications in OStatus are public, so privacy warnings will be "
 "occasionally displayed."
 msgstr "Biete die eingebaute OStatus (iStatusNet, GNU Social, etc.) Unterstützung an. Jede Kommunikation in OStatus ist öffentlich, Privatsphäre Warnungen werden nur bei Bedarf angezeigt."
 
-#: ../../mod/admin.php:670
+#: ../../mod/admin.php:672
 msgid "OStatus conversation completion interval"
 msgstr "Intervall zum Vervollständigen von OStatus Unterhaltungen"
 
-#: ../../mod/admin.php:670
+#: ../../mod/admin.php:672
 msgid ""
 "How often shall the poller check for new entries in OStatus conversations? "
 "This can be a very ressource task."
 msgstr "Wie oft soll der Poller checken ob es neue Nachrichten in OStatus Unterhaltungen gibt die geladen werden müssen. Je nach Anzahl der OStatus Kontakte könnte dies ein sehr Ressourcen lastiger Job sein."
 
-#: ../../mod/admin.php:671
+#: ../../mod/admin.php:673
 msgid "Enable Diaspora support"
 msgstr "Diaspora-Support aktivieren"
 
-#: ../../mod/admin.php:671
+#: ../../mod/admin.php:673
 msgid "Provide built-in Diaspora network compatibility."
 msgstr "Verwende die eingebaute Diaspora-Verknüpfung."
 
-#: ../../mod/admin.php:672
+#: ../../mod/admin.php:674
 msgid "Only allow Friendica contacts"
 msgstr "Nur Friendica-Kontakte erlauben"
 
-#: ../../mod/admin.php:672
+#: ../../mod/admin.php:674
 msgid ""
 "All contacts must use Friendica protocols. All other built-in communication "
 "protocols disabled."
 msgstr "Alle Kontakte müssen das Friendica Protokoll nutzen. Alle anderen Kommunikationsprotokolle werden deaktiviert."
 
-#: ../../mod/admin.php:673
+#: ../../mod/admin.php:675
 msgid "Verify SSL"
 msgstr "SSL Überprüfen"
 
-#: ../../mod/admin.php:673
+#: ../../mod/admin.php:675
 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 "Wenn gewollt, kann man hier eine strenge Zertifikatkontrolle einstellen. Das bedeutet, dass man zu keinen Seiten mit selbst unterzeichnetem SSL eine Verbindung herstellen kann."
 
-#: ../../mod/admin.php:674
+#: ../../mod/admin.php:676
 msgid "Proxy user"
 msgstr "Proxy Nutzer"
 
-#: ../../mod/admin.php:675
+#: ../../mod/admin.php:677
 msgid "Proxy URL"
 msgstr "Proxy URL"
 
-#: ../../mod/admin.php:676
+#: ../../mod/admin.php:678
 msgid "Network timeout"
 msgstr "Netzwerk Wartezeit"
 
-#: ../../mod/admin.php:676
+#: ../../mod/admin.php:678
 msgid "Value is in seconds. Set to 0 for unlimited (not recommended)."
 msgstr "Der Wert ist in Sekunden. Setze 0 für unbegrenzt (nicht empfohlen)."
 
-#: ../../mod/admin.php:677
+#: ../../mod/admin.php:679
 msgid "Delivery interval"
 msgstr "Zustellungsintervall"
 
-#: ../../mod/admin.php:677
+#: ../../mod/admin.php:679
 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 "Verzögere im Hintergrund laufende Auslieferungsprozesse um die angegebene Anzahl an Sekunden, um die Systemlast zu verringern. Empfehlungen: 4-5 für Shared-Hosts, 2-3 für VPS, 0-1 für große dedizierte Server."
 
-#: ../../mod/admin.php:678
+#: ../../mod/admin.php:680
 msgid "Poll interval"
 msgstr "Abfrageintervall"
 
-#: ../../mod/admin.php:678
+#: ../../mod/admin.php:680
 msgid ""
 "Delay background polling processes by this many seconds to reduce system "
 "load. If 0, use delivery interval."
 msgstr "Verzögere Hintergrundprozesse um diese Anzahl an Sekunden, um die Systemlast zu reduzieren. Bei 0 Sekunden wird das Auslieferungsintervall verwendet."
 
-#: ../../mod/admin.php:679
+#: ../../mod/admin.php:681
 msgid "Maximum Load Average"
 msgstr "Maximum Load Average"
 
-#: ../../mod/admin.php:679
+#: ../../mod/admin.php:681
 msgid ""
 "Maximum system load before delivery and poll processes are deferred - "
 "default 50."
 msgstr "Maximale Systemlast bevor Verteil- und Empfangsprozesse verschoben werden - Standard 50"
 
-#: ../../mod/admin.php:681
+#: ../../mod/admin.php:682
+msgid "Maximum Load Average (Frontend)"
+msgstr "Maximum Load Average (Frontend)"
+
+#: ../../mod/admin.php:682
+msgid "Maximum system load before the frontend quits service - default 50."
+msgstr "Maximale Systemlast bevor Vordergrundprozesse pausiert werden - Standard 50."
+
+#: ../../mod/admin.php:684
 msgid "Use MySQL full text engine"
 msgstr "Nutze MySQL full text engine"
 
-#: ../../mod/admin.php:681
+#: ../../mod/admin.php:684
 msgid ""
 "Activates the full text engine. Speeds up search - but can only search for "
 "four and more characters."
 msgstr "Aktiviert die 'full text engine'. Beschleunigt die Suche - aber es kann nur nach vier oder mehr Zeichen gesucht werden."
 
-#: ../../mod/admin.php:682
+#: ../../mod/admin.php:685
 msgid "Suppress Language"
 msgstr "Sprachinformation unterdrücken"
 
-#: ../../mod/admin.php:682
+#: ../../mod/admin.php:685
 msgid "Suppress language information in meta information about a posting."
 msgstr "Verhindert das Erzeugen der Meta-Information zur Spracherkennung eines Beitrags."
 
-#: ../../mod/admin.php:683
+#: ../../mod/admin.php:686
 msgid "Suppress Tags"
 msgstr "Tags Unterdrücken"
 
-#: ../../mod/admin.php:683
+#: ../../mod/admin.php:686
 msgid "Suppress showing a list of hashtags at the end of the posting."
 msgstr "Unterdrückt die Anzeige von Tags am Ende eines Beitrags."
 
-#: ../../mod/admin.php:684
+#: ../../mod/admin.php:687
 msgid "Path to item cache"
 msgstr "Pfad zum Eintrag Cache"
 
-#: ../../mod/admin.php:685
+#: ../../mod/admin.php:688
 msgid "Cache duration in seconds"
 msgstr "Cache-Dauer in Sekunden"
 
-#: ../../mod/admin.php:685
+#: ../../mod/admin.php:688
 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 "Wie lange sollen die gecachedten Dateien vorgehalten werden? Grundeinstellung sind 86400 Sekunden (ein Tag). Um den Item Cache zu deaktivieren, setze diesen Wert auf -1."
 
-#: ../../mod/admin.php:686
+#: ../../mod/admin.php:689
 msgid "Maximum numbers of comments per post"
 msgstr "Maximale Anzahl von Kommentaren pro Beitrag"
 
-#: ../../mod/admin.php:686
+#: ../../mod/admin.php:689
 msgid "How much comments should be shown for each post? Default value is 100."
 msgstr "Wie viele Kommentare sollen pro Beitrag angezeigt werden? Standardwert sind 100."
 
-#: ../../mod/admin.php:687
+#: ../../mod/admin.php:690
 msgid "Path for lock file"
 msgstr "Pfad für die Sperrdatei"
 
-#: ../../mod/admin.php:688
+#: ../../mod/admin.php:691
 msgid "Temp path"
 msgstr "Temp Pfad"
 
-#: ../../mod/admin.php:689
+#: ../../mod/admin.php:692
 msgid "Base path to installation"
 msgstr "Basis-Pfad zur Installation"
 
-#: ../../mod/admin.php:690
+#: ../../mod/admin.php:693
 msgid "Disable picture proxy"
 msgstr "Bilder Proxy deaktivieren"
 
-#: ../../mod/admin.php:690
+#: ../../mod/admin.php:693
 msgid ""
 "The picture proxy increases performance and privacy. It shouldn't be used on"
 " systems with very low bandwith."
 msgstr "Der Proxy für Bilder verbessert die Leitung und Privatsphäre der Nutzer. Er sollte nicht auf Systemen verwendet werden, die nur über begrenzte Bandbreite verfügen."
 
-#: ../../mod/admin.php:691
+#: ../../mod/admin.php:694
 msgid "Enable old style pager"
 msgstr "Den Old-Style Pager aktiviren"
 
-#: ../../mod/admin.php:691
+#: ../../mod/admin.php:694
 msgid ""
 "The old style pager has page numbers but slows down massively the page "
 "speed."
 msgstr "Der Old-Style Pager zeigt Seitennummern an, verlangsamt aber auch drastisch das Laden einer Seite."
 
-#: ../../mod/admin.php:692
+#: ../../mod/admin.php:695
 msgid "Only search in tags"
 msgstr "Nur in Tags suchen"
 
-#: ../../mod/admin.php:692
+#: ../../mod/admin.php:695
 msgid "On large systems the text search can slow down the system extremely."
 msgstr "Auf großen Knoten kann die Volltext-Suche das System ausbremsen."
 
-#: ../../mod/admin.php:694
+#: ../../mod/admin.php:697
 msgid "New base url"
 msgstr "Neue Basis-URL"
 
-#: ../../mod/admin.php:711
+#: ../../mod/admin.php:714
 msgid "Update has been marked successful"
 msgstr "Update wurde als erfolgreich markiert"
 
-#: ../../mod/admin.php:719
+#: ../../mod/admin.php:722
 #, php-format
 msgid "Database structure update %s was successfully applied."
 msgstr "Das Update %s der Struktur der Datenbank wurde erfolgreich angewandt."
 
-#: ../../mod/admin.php:722
+#: ../../mod/admin.php:725
 #, php-format
 msgid "Executing of database structure update %s failed with error: %s"
 msgstr "Das Update %s der Struktur der Datenbank schlug mit folgender Fehlermeldung fehl: %s"
 
-#: ../../mod/admin.php:734
+#: ../../mod/admin.php:737
 #, php-format
 msgid "Executing %s failed with error: %s"
 msgstr "Die Ausführung von %s schlug fehl. Fehlermeldung: %s"
 
-#: ../../mod/admin.php:737
+#: ../../mod/admin.php:740
 #, php-format
 msgid "Update %s was successfully applied."
 msgstr "Update %s war erfolgreich."
 
-#: ../../mod/admin.php:741
+#: ../../mod/admin.php:744
 #, php-format
 msgid "Update %s did not return a status. Unknown if it succeeded."
 msgstr "Update %s hat keinen Status zurückgegeben. Unbekannter Status."
 
-#: ../../mod/admin.php:743
+#: ../../mod/admin.php:746
 #, php-format
 msgid "There was no additional update function %s that needed to be called."
 msgstr "Es gab keine weitere Update-Funktion, die von %s ausgeführt werden musste."
 
-#: ../../mod/admin.php:762
+#: ../../mod/admin.php:765
 msgid "No failed updates."
 msgstr "Keine fehlgeschlagenen Updates."
 
-#: ../../mod/admin.php:763
+#: ../../mod/admin.php:766
 msgid "Check database structure"
 msgstr "Datenbank Struktur überprüfen"
 
-#: ../../mod/admin.php:768
+#: ../../mod/admin.php:771
 msgid "Failed Updates"
 msgstr "Fehlgeschlagene Updates"
 
-#: ../../mod/admin.php:769
+#: ../../mod/admin.php:772
 msgid ""
 "This does not include updates prior to 1139, which did not return a status."
 msgstr "Ohne Updates vor 1139, da diese keinen Status zurückgegeben haben."
 
-#: ../../mod/admin.php:770
+#: ../../mod/admin.php:773
 msgid "Mark success (if update was manually applied)"
 msgstr "Als erfolgreich markieren (falls das Update manuell installiert wurde)"
 
-#: ../../mod/admin.php:771
+#: ../../mod/admin.php:774
 msgid "Attempt to execute this update step automatically"
 msgstr "Versuchen, diesen Schritt automatisch auszuführen"
 
-#: ../../mod/admin.php:803
+#: ../../mod/admin.php:806
 #, php-format
 msgid ""
 "\n"
@@ -5709,7 +5723,7 @@ msgid ""
 "\t\t\t\tthe administrator of %2$s has set up an account for you."
 msgstr "\nHallo %1$s,\n\nauf %2$s wurde ein Account für Dich angelegt."
 
-#: ../../mod/admin.php:806
+#: ../../mod/admin.php:809
 #, php-format
 msgid ""
 "\n"
@@ -5739,208 +5753,208 @@ 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
+#: ../../mod/admin.php:853
 #, php-format
 msgid "%s user blocked/unblocked"
 msgid_plural "%s users blocked/unblocked"
 msgstr[0] "%s Benutzer geblockt/freigegeben"
 msgstr[1] "%s Benutzer geblockt/freigegeben"
 
-#: ../../mod/admin.php:857
+#: ../../mod/admin.php:860
 #, php-format
 msgid "%s user deleted"
 msgid_plural "%s users deleted"
 msgstr[0] "%s Nutzer gelöscht"
 msgstr[1] "%s Nutzer gelöscht"
 
-#: ../../mod/admin.php:896
+#: ../../mod/admin.php:899
 #, php-format
 msgid "User '%s' deleted"
 msgstr "Nutzer '%s' gelöscht"
 
-#: ../../mod/admin.php:904
+#: ../../mod/admin.php:907
 #, php-format
 msgid "User '%s' unblocked"
 msgstr "Nutzer '%s' entsperrt"
 
-#: ../../mod/admin.php:904
+#: ../../mod/admin.php:907
 #, php-format
 msgid "User '%s' blocked"
 msgstr "Nutzer '%s' gesperrt"
 
-#: ../../mod/admin.php:999
+#: ../../mod/admin.php:1002
 msgid "Add User"
 msgstr "Nutzer hinzufügen"
 
-#: ../../mod/admin.php:1000
+#: ../../mod/admin.php:1003
 msgid "select all"
 msgstr "Alle auswählen"
 
-#: ../../mod/admin.php:1001
+#: ../../mod/admin.php:1004
 msgid "User registrations waiting for confirm"
 msgstr "Neuanmeldungen, die auf Deine Bestätigung warten"
 
-#: ../../mod/admin.php:1002
+#: ../../mod/admin.php:1005
 msgid "User waiting for permanent deletion"
 msgstr "Nutzer wartet auf permanente Löschung"
 
-#: ../../mod/admin.php:1003
+#: ../../mod/admin.php:1006
 msgid "Request date"
 msgstr "Anfragedatum"
 
-#: ../../mod/admin.php:1004
+#: ../../mod/admin.php:1007
 msgid "No registrations."
 msgstr "Keine Neuanmeldungen."
 
-#: ../../mod/admin.php:1006
+#: ../../mod/admin.php:1009
 msgid "Deny"
 msgstr "Verwehren"
 
-#: ../../mod/admin.php:1010
+#: ../../mod/admin.php:1013
 msgid "Site admin"
 msgstr "Seitenadministrator"
 
-#: ../../mod/admin.php:1011
+#: ../../mod/admin.php:1014
 msgid "Account expired"
 msgstr "Account ist abgelaufen"
 
-#: ../../mod/admin.php:1014
+#: ../../mod/admin.php:1017
 msgid "New User"
 msgstr "Neuer Nutzer"
 
-#: ../../mod/admin.php:1015 ../../mod/admin.php:1016
+#: ../../mod/admin.php:1018 ../../mod/admin.php:1019
 msgid "Register date"
 msgstr "Anmeldedatum"
 
-#: ../../mod/admin.php:1015 ../../mod/admin.php:1016
+#: ../../mod/admin.php:1018 ../../mod/admin.php:1019
 msgid "Last login"
 msgstr "Letzte Anmeldung"
 
-#: ../../mod/admin.php:1015 ../../mod/admin.php:1016
+#: ../../mod/admin.php:1018 ../../mod/admin.php:1019
 msgid "Last item"
 msgstr "Letzter Beitrag"
 
-#: ../../mod/admin.php:1015
+#: ../../mod/admin.php:1018
 msgid "Deleted since"
 msgstr "Gelöscht seit"
 
-#: ../../mod/admin.php:1018
+#: ../../mod/admin.php:1021
 msgid ""
 "Selected users will be deleted!\\n\\nEverything these users had posted on "
 "this site will be permanently deleted!\\n\\nAre you sure?"
 msgstr "Die markierten Nutzer werden gelöscht!\\n\\nAlle Beiträge, die diese Nutzer auf dieser Seite veröffentlicht haben, werden permanent gelöscht!\\n\\nBist Du sicher?"
 
-#: ../../mod/admin.php:1019
+#: ../../mod/admin.php:1022
 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 "Der Nutzer {0} wird gelöscht!\\n\\nAlles was dieser Nutzer auf dieser Seite veröffentlicht hat, wird permanent gelöscht!\\n\\nBist Du sicher?"
 
-#: ../../mod/admin.php:1029
+#: ../../mod/admin.php:1032
 msgid "Name of the new user."
 msgstr "Name des neuen Nutzers"
 
-#: ../../mod/admin.php:1030
+#: ../../mod/admin.php:1033
 msgid "Nickname"
 msgstr "Spitzname"
 
-#: ../../mod/admin.php:1030
+#: ../../mod/admin.php:1033
 msgid "Nickname of the new user."
 msgstr "Spitznamen für den neuen Nutzer"
 
-#: ../../mod/admin.php:1031
+#: ../../mod/admin.php:1034
 msgid "Email address of the new user."
 msgstr "Email Adresse des neuen Nutzers"
 
-#: ../../mod/admin.php:1064
+#: ../../mod/admin.php:1067
 #, php-format
 msgid "Plugin %s disabled."
 msgstr "Plugin %s deaktiviert."
 
-#: ../../mod/admin.php:1068
+#: ../../mod/admin.php:1071
 #, php-format
 msgid "Plugin %s enabled."
 msgstr "Plugin %s aktiviert."
 
-#: ../../mod/admin.php:1078 ../../mod/admin.php:1294
+#: ../../mod/admin.php:1081 ../../mod/admin.php:1297
 msgid "Disable"
 msgstr "Ausschalten"
 
-#: ../../mod/admin.php:1080 ../../mod/admin.php:1296
+#: ../../mod/admin.php:1083 ../../mod/admin.php:1299
 msgid "Enable"
 msgstr "Einschalten"
 
-#: ../../mod/admin.php:1103 ../../mod/admin.php:1324
+#: ../../mod/admin.php:1106 ../../mod/admin.php:1327
 msgid "Toggle"
 msgstr "Umschalten"
 
-#: ../../mod/admin.php:1111 ../../mod/admin.php:1334
+#: ../../mod/admin.php:1114 ../../mod/admin.php:1337
 msgid "Author: "
 msgstr "Autor:"
 
-#: ../../mod/admin.php:1112 ../../mod/admin.php:1335
+#: ../../mod/admin.php:1115 ../../mod/admin.php:1338
 msgid "Maintainer: "
 msgstr "Betreuer:"
 
-#: ../../mod/admin.php:1254
+#: ../../mod/admin.php:1257
 msgid "No themes found."
 msgstr "Keine Themen gefunden."
 
-#: ../../mod/admin.php:1316
+#: ../../mod/admin.php:1319
 msgid "Screenshot"
 msgstr "Bildschirmfoto"
 
-#: ../../mod/admin.php:1362
+#: ../../mod/admin.php:1365
 msgid "[Experimental]"
 msgstr "[Experimentell]"
 
-#: ../../mod/admin.php:1363
+#: ../../mod/admin.php:1366
 msgid "[Unsupported]"
 msgstr "[Nicht unterstützt]"
 
-#: ../../mod/admin.php:1390
+#: ../../mod/admin.php:1393
 msgid "Log settings updated."
 msgstr "Protokolleinstellungen aktualisiert."
 
-#: ../../mod/admin.php:1446
+#: ../../mod/admin.php:1449
 msgid "Clear"
 msgstr "löschen"
 
-#: ../../mod/admin.php:1452
+#: ../../mod/admin.php:1455
 msgid "Enable Debugging"
 msgstr "Protokoll führen"
 
-#: ../../mod/admin.php:1453
+#: ../../mod/admin.php:1456
 msgid "Log file"
 msgstr "Protokolldatei"
 
-#: ../../mod/admin.php:1453
+#: ../../mod/admin.php:1456
 msgid ""
 "Must be writable by web server. Relative to your Friendica top-level "
 "directory."
 msgstr "Webserver muss Schreibrechte besitzen. Abhängig vom Friendica-Installationsverzeichnis."
 
-#: ../../mod/admin.php:1454
+#: ../../mod/admin.php:1457
 msgid "Log level"
 msgstr "Protokoll-Level"
 
-#: ../../mod/admin.php:1504
+#: ../../mod/admin.php:1507
 msgid "Close"
 msgstr "Schließen"
 
-#: ../../mod/admin.php:1510
+#: ../../mod/admin.php:1513
 msgid "FTP Host"
 msgstr "FTP Host"
 
-#: ../../mod/admin.php:1511
+#: ../../mod/admin.php:1514
 msgid "FTP Path"
 msgstr "FTP Pfad"
 
-#: ../../mod/admin.php:1512
+#: ../../mod/admin.php:1515
 msgid "FTP User"
 msgstr "FTP Nutzername"
 
-#: ../../mod/admin.php:1513
+#: ../../mod/admin.php:1516
 msgid "FTP Password"
 msgstr "FTP Passwort"
 
@@ -6025,7 +6039,7 @@ msgstr "Markierte"
 msgid "Favourite Posts"
 msgstr "Favorisierte Beiträge"
 
-#: ../../mod/network.php:463
+#: ../../mod/network.php:458
 #, php-format
 msgid "Warning: This group contains %s member from an insecure network."
 msgid_plural ""
@@ -6033,31 +6047,31 @@ msgid_plural ""
 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:466
+#: ../../mod/network.php:461
 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:520 ../../mod/content.php:119
+#: ../../mod/network.php:524 ../../mod/content.php:119
 msgid "No such group"
 msgstr "Es gibt keine solche Gruppe"
 
-#: ../../mod/network.php:537 ../../mod/content.php:130
+#: ../../mod/network.php:541 ../../mod/content.php:130
 msgid "Group is empty"
 msgstr "Gruppe ist leer"
 
-#: ../../mod/network.php:544 ../../mod/content.php:134
+#: ../../mod/network.php:548 ../../mod/content.php:134
 msgid "Group: "
 msgstr "Gruppe: "
 
-#: ../../mod/network.php:554
+#: ../../mod/network.php:558
 msgid "Contact: "
 msgstr "Kontakt: "
 
-#: ../../mod/network.php:556
+#: ../../mod/network.php:560
 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:561
+#: ../../mod/network.php:565
 msgid "Invalid contact."
 msgstr "Ungültiger Kontakt."
 
@@ -6276,7 +6290,11 @@ msgstr "Neueste Fotos"
 msgid "The post was created"
 msgstr "Der Beitrag wurde angelegt"
 
-#: ../../mod/follow.php:27
+#: ../../mod/follow.php:21
+msgid "You already added this contact."
+msgstr "Du hast den Kontakt bereits hinzugefügt."
+
+#: ../../mod/follow.php:103
 msgid "Contact added"
 msgstr "Kontakt hinzugefügt"
 
@@ -6577,6 +6595,10 @@ msgstr "Originaltext (Diaspora Format): "
 msgid "diaspora2bb: "
 msgstr "diaspora2bb: "
 
+#: ../../mod/p.php:9
+msgid "Not Extended"
+msgstr "Nicht erweitert."
+
 #: ../../mod/tagrm.php:41
 msgid "Tag removed"
 msgstr "Tag entfernt"
@@ -6603,19 +6625,19 @@ msgstr "Dein Konto wird endgültig gelöscht. Es gibt keine Möglichkeit, es wie
 msgid "Please enter your password for verification:"
 msgstr "Bitte gib Dein Passwort zur Verifikation ein:"
 
-#: ../../mod/profperm.php:25 ../../mod/profperm.php:55
+#: ../../mod/profperm.php:25 ../../mod/profperm.php:56
 msgid "Invalid profile identifier."
 msgstr "Ungültiger Profil-Bezeichner."
 
-#: ../../mod/profperm.php:101
+#: ../../mod/profperm.php:102
 msgid "Profile Visibility Editor"
 msgstr "Editor für die Profil-Sichtbarkeit"
 
-#: ../../mod/profperm.php:114
+#: ../../mod/profperm.php:115
 msgid "Visible To"
 msgstr "Sichtbar für"
 
-#: ../../mod/profperm.php:130
+#: ../../mod/profperm.php:131
 msgid "All Contacts (with secure profile access)"
 msgstr "Alle Kontakte (mit gesichertem Profilzugriff)"
 
@@ -6627,121 +6649,121 @@ msgstr "Profilübereinstimmungen"
 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:57
+#: ../../mod/match.php:62
 msgid "is interested in:"
 msgstr "ist interessiert an:"
 
-#: ../../mod/events.php:66
+#: ../../mod/events.php:68 ../../mod/events.php:70
 msgid "Event title and start time are required."
 msgstr "Der Veranstaltungstitel und die Anfangszeit müssen angegeben werden."
 
-#: ../../mod/events.php:291
+#: ../../mod/events.php:303
 msgid "l, F j"
 msgstr "l, F j"
 
-#: ../../mod/events.php:313
+#: ../../mod/events.php:325
 msgid "Edit event"
 msgstr "Veranstaltung bearbeiten"
 
-#: ../../mod/events.php:371
+#: ../../mod/events.php:383
 msgid "Create New Event"
 msgstr "Neue Veranstaltung erstellen"
 
-#: ../../mod/events.php:372
+#: ../../mod/events.php:384
 msgid "Previous"
 msgstr "Vorherige"
 
-#: ../../mod/events.php:373 ../../mod/install.php:207
+#: ../../mod/events.php:385 ../../mod/install.php:207
 msgid "Next"
 msgstr "Nächste"
 
-#: ../../mod/events.php:446
+#: ../../mod/events.php:458
 msgid "hour:minute"
 msgstr "Stunde:Minute"
 
-#: ../../mod/events.php:456
+#: ../../mod/events.php:468
 msgid "Event details"
 msgstr "Veranstaltungsdetails"
 
-#: ../../mod/events.php:457
+#: ../../mod/events.php:469
 #, php-format
 msgid "Format is %s %s. Starting date and Title are required."
 msgstr "Das Format ist %s %s. Beginnzeitpunkt und Titel werden benötigt."
 
-#: ../../mod/events.php:459
+#: ../../mod/events.php:471
 msgid "Event Starts:"
 msgstr "Veranstaltungsbeginn:"
 
-#: ../../mod/events.php:459 ../../mod/events.php:473
+#: ../../mod/events.php:471 ../../mod/events.php:485
 msgid "Required"
 msgstr "Benötigt"
 
-#: ../../mod/events.php:462
+#: ../../mod/events.php:474
 msgid "Finish date/time is not known or not relevant"
 msgstr "Enddatum/-zeit ist nicht bekannt oder nicht relevant"
 
-#: ../../mod/events.php:464
+#: ../../mod/events.php:476
 msgid "Event Finishes:"
 msgstr "Veranstaltungsende:"
 
-#: ../../mod/events.php:467
+#: ../../mod/events.php:479
 msgid "Adjust for viewer timezone"
 msgstr "An Zeitzone des Betrachters anpassen"
 
-#: ../../mod/events.php:469
+#: ../../mod/events.php:481
 msgid "Description:"
 msgstr "Beschreibung"
 
-#: ../../mod/events.php:473
+#: ../../mod/events.php:485
 msgid "Title:"
 msgstr "Titel:"
 
-#: ../../mod/events.php:475
+#: ../../mod/events.php:487
 msgid "Share this event"
 msgstr "Veranstaltung teilen"
 
-#: ../../mod/ping.php:240
+#: ../../mod/ping.php:210 ../../mod/ping.php:234
 msgid "{0} wants to be your friend"
 msgstr "{0} möchte mit Dir in Kontakt treten"
 
-#: ../../mod/ping.php:245
+#: ../../mod/ping.php:215 ../../mod/ping.php:239
 msgid "{0} sent you a message"
 msgstr "{0} schickte Dir eine Nachricht"
 
-#: ../../mod/ping.php:250
+#: ../../mod/ping.php:220 ../../mod/ping.php:244
 msgid "{0} requested registration"
 msgstr "{0} möchte sich registrieren"
 
-#: ../../mod/ping.php:256
+#: ../../mod/ping.php:250
 #, php-format
 msgid "{0} commented %s's post"
 msgstr "{0} kommentierte einen Beitrag von %s"
 
-#: ../../mod/ping.php:261
+#: ../../mod/ping.php:255
 #, php-format
 msgid "{0} liked %s's post"
 msgstr "{0} mag %ss Beitrag"
 
-#: ../../mod/ping.php:266
+#: ../../mod/ping.php:260
 #, php-format
 msgid "{0} disliked %s's post"
 msgstr "{0} mag %ss Beitrag nicht"
 
-#: ../../mod/ping.php:271
+#: ../../mod/ping.php:265
 #, php-format
 msgid "{0} is now friends with %s"
 msgstr "{0} ist jetzt mit %s befreundet"
 
-#: ../../mod/ping.php:276
+#: ../../mod/ping.php:270
 msgid "{0} posted"
 msgstr "{0} hat etwas veröffentlicht"
 
-#: ../../mod/ping.php:281
+#: ../../mod/ping.php:275
 #, php-format
 msgid "{0} tagged %s's post with #%s"
 msgstr "{0} hat %ss Beitrag mit dem Schlagwort #%s versehen"
 
-#: ../../mod/ping.php:287
+#: ../../mod/ping.php:281
 msgid "{0} mentioned you in a post"
 msgstr "{0} hat Dich in einem Beitrag erwähnt"
 
@@ -7466,47 +7488,51 @@ msgstr "Spiegeln als weitergeleitete Beiträge"
 msgid "Mirror as my own posting"
 msgstr "Spiegeln als meine eigenen Beiträge"
 
-#: ../../mod/crepair.php:166
+#: ../../mod/crepair.php:168
+msgid "Refetch contact data"
+msgstr "Kontaktdaten neu laden"
+
+#: ../../mod/crepair.php:170
 msgid "Account Nickname"
 msgstr "Konto-Spitzname"
 
-#: ../../mod/crepair.php:167
+#: ../../mod/crepair.php:171
 msgid "@Tagname - overrides Name/Nickname"
 msgstr "@Tagname - überschreibt Name/Spitzname"
 
-#: ../../mod/crepair.php:168
+#: ../../mod/crepair.php:172
 msgid "Account URL"
 msgstr "Konto-URL"
 
-#: ../../mod/crepair.php:169
+#: ../../mod/crepair.php:173
 msgid "Friend Request URL"
 msgstr "URL für Freundschaftsanfragen"
 
-#: ../../mod/crepair.php:170
+#: ../../mod/crepair.php:174
 msgid "Friend Confirm URL"
 msgstr "URL für Bestätigungen von Freundschaftsanfragen"
 
-#: ../../mod/crepair.php:171
+#: ../../mod/crepair.php:175
 msgid "Notification Endpoint URL"
 msgstr "URL-Endpunkt für Benachrichtigungen"
 
-#: ../../mod/crepair.php:172
+#: ../../mod/crepair.php:176
 msgid "Poll/Feed URL"
 msgstr "Pull/Feed-URL"
 
-#: ../../mod/crepair.php:173
+#: ../../mod/crepair.php:177
 msgid "New photo from this URL"
 msgstr "Neues Foto von dieser URL"
 
-#: ../../mod/crepair.php:174
+#: ../../mod/crepair.php:178
 msgid "Remote Self"
 msgstr "Entfernte Konten"
 
-#: ../../mod/crepair.php:176
+#: ../../mod/crepair.php:180
 msgid "Mirror postings from this contact"
 msgstr "Spiegle Beiträge dieses Kontakts"
 
-#: ../../mod/crepair.php:176
+#: ../../mod/crepair.php:180
 msgid ""
 "Mark this contact as remote_self, this will cause friendica to repost new "
 "entries from this contact."
@@ -7709,7 +7735,7 @@ msgstr "Was willst Du mit dem Empfänger machen:"
 msgid "Make this post private"
 msgstr "Diesen Beitrag privat machen"
 
-#: ../../mod/display.php:496
+#: ../../mod/display.php:498
 msgid "Item has been removed."
 msgstr "Eintrag wurde entfernt."
 
@@ -7754,47 +7780,47 @@ msgstr "Zeitweiser Fehler. Bitte warte einige Momente und versuche es dann noch
 msgid "Introduction failed or was revoked."
 msgstr "Kontaktanfrage schlug fehl oder wurde zurückgezogen."
 
-#: ../../mod/dfrn_confirm.php:429
+#: ../../mod/dfrn_confirm.php:430
 msgid "Unable to set contact photo."
 msgstr "Konnte das Bild des Kontakts nicht speichern."
 
-#: ../../mod/dfrn_confirm.php:571
+#: ../../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:581
+#: ../../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:592
+#: ../../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:613
+#: ../../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:627
+#: ../../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:647
+#: ../../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:658
+#: ../../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:725
+#: ../../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:797
+#: ../../mod/dfrn_confirm.php:798
 #, php-format
 msgid "%1$s has joined %2$s"
 msgstr "%1$s ist %2$s beigetreten"
index d67eb1b79e15c91dfc930891b56aa616bbd830c2..c243ff56698d90eb34cdbb3f6cdbc64090fb5fbd 100644 (file)
@@ -76,13 +76,6 @@ $a->strings["Page not found."] = "Seite nicht gefunden.";
 $a->strings["Permission denied"] = "Zugriff verweigert";
 $a->strings["Permission denied."] = "Zugriff verweigert.";
 $a->strings["toggle mobile"] = "auf/von Mobile Ansicht wechseln";
-$a->strings["Do you wish to confirm your identity (<tt>%s</tt>) with <tt>%s</tt>"] = "Möchtest du deine Identität (<tt>%s</tt> mit <tt>%s</tt> bestätigen";
-$a->strings["Confirm"] = "Bestätigen";
-$a->strings["Do not confirm"] = "Nicht bestätigen";
-$a->strings["Trust This Site"] = "Dieser Seite vertrauen";
-$a->strings["No Identifier Sent"] = "Keine Identifikation gesendet";
-$a->strings["Requested identity don't match logged in user."] = "Die angeforderte Identität stimmt nicht mit dem angemeldeten Nutzer überein.";
-$a->strings["Please wait; you are being redirected to <%s>"] = "Bitte warten, Du wirst nach <%s> umgeleitet.";
 $a->strings["Delete this item?"] = "Diesen Beitrag löschen?";
 $a->strings["Comment"] = "Kommentar";
 $a->strings["show more"] = "mehr anzeigen";
@@ -194,6 +187,7 @@ $a->strings["edit"] = "bearbeiten";
 $a->strings["Groups"] = "Gruppen";
 $a->strings["Edit group"] = "Gruppe bearbeiten";
 $a->strings["Create a new group"] = "Neue Gruppe erstellen";
+$a->strings["Group Name: "] = "Gruppenname:";
 $a->strings["Contacts not in any group"] = "Kontakte in keiner Gruppe";
 $a->strings["add"] = "hinzufügen";
 $a->strings["Wall Photos"] = "Pinnwand-Bilder";
@@ -739,7 +733,6 @@ $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";
@@ -838,6 +831,9 @@ $a->strings["Plugin Settings"] = "Plugin-Einstellungen";
 $a->strings["Off"] = "Aus";
 $a->strings["On"] = "An";
 $a->strings["Additional Features"] = "Zusätzliche Features";
+$a->strings["General Social Media Settings"] = "Allgemeine Einstellungen zu Sozialen Medien";
+$a->strings["Disable intelligent shortening"] = "Intelligentes Link kürzen ausschalten";
+$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."] = "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.";
 $a->strings["Built-in support for %s connectivity is %s"] = "Eingebaute Unterstützung für Verbindungen zu %s ist %s";
 $a->strings["enabled"] = "eingeschaltet";
 $a->strings["disabled"] = "ausgeschaltet";
@@ -944,6 +940,9 @@ $a->strings["You receive a private message"] = "– Du eine private Nachricht er
 $a->strings["You receive a friend suggestion"] = "– Du eine Empfehlung erhältst";
 $a->strings["You are tagged in a post"] = "– Du in einem Beitrag erwähnt wirst";
 $a->strings["You are poked/prodded/etc. in a post"] = "– Du von jemandem angestupst oder sonstwie behandelt wirst";
+$a->strings["Activate desktop notifications"] = "Desktop Benachrichtigungen einschalten";
+$a->strings["Note: This is an experimental feature, as being not supported by each browser"] = "Hinweis: Dies ist ein experimentelles Feature und wird nicht von allen Browsern unterstützt.";
+$a->strings["You will now receive desktop notifications!"] = "Du wirst nun Desktop Benachrichtigungen empfangen!";
 $a->strings["Text-only notification emails"] = "Benachrichtigungs E-Mail als Rein-Text.";
 $a->strings["Send text only notification emails, without the html part"] = "Sende Benachrichtigungs E-Mail als Rein-Text - ohne HTML-Teil";
 $a->strings["Advanced Account/Page Type Settings"] = "Erweiterte Konto-/Seitentyp-Einstellungen";
@@ -1108,6 +1107,7 @@ $a->strings["Invalid profile URL."] = "Ungültige 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 <strong>this</strong> profile."] = "Momentan bist Du mit einer anderen Identität angemeldet. Bitte melde Dich mit <strong>diesem</strong> 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.";
@@ -1269,6 +1269,8 @@ $a->strings["Poll interval"] = "Abfrageintervall";
 $a->strings["Delay background polling processes by this many seconds to reduce system load. If 0, use delivery interval."] = "Verzögere Hintergrundprozesse um diese Anzahl an Sekunden, um die Systemlast zu reduzieren. Bei 0 Sekunden wird das Auslieferungsintervall verwendet.";
 $a->strings["Maximum Load Average"] = "Maximum Load Average";
 $a->strings["Maximum system load before delivery and poll processes are deferred - default 50."] = "Maximale Systemlast bevor Verteil- und Empfangsprozesse verschoben werden - Standard 50";
+$a->strings["Maximum Load Average (Frontend)"] = "Maximum Load Average (Frontend)";
+$a->strings["Maximum system load before the frontend quits service - default 50."] = "Maximale Systemlast bevor Vordergrundprozesse pausiert werden - Standard 50.";
 $a->strings["Use MySQL full text engine"] = "Nutze MySQL full text engine";
 $a->strings["Activates the full text engine. Speeds up search - but can only search for four and more characters."] = "Aktiviert die 'full text engine'. Beschleunigt die Suche - aber es kann nur nach vier oder mehr Zeichen gesucht werden.";
 $a->strings["Suppress Language"] = "Sprachinformation unterdrücken";
@@ -1440,6 +1442,7 @@ $a->strings["Private photo"] = "Privates Foto";
 $a->strings["Public photo"] = "Öffentliches Foto";
 $a->strings["Recent Photos"] = "Neueste Fotos";
 $a->strings["The post was created"] = "Der Beitrag wurde angelegt";
+$a->strings["You already added this contact."] = "Du hast den Kontakt bereits hinzugefügt.";
 $a->strings["Contact added"] = "Kontakt hinzugefügt";
 $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.";
@@ -1498,6 +1501,7 @@ $a->strings["bb2dia2bb: "] = "bb2dia2bb: ";
 $a->strings["bb2md2html2bb: "] = "bb2md2html2bb: ";
 $a->strings["Source input (Diaspora format): "] = "Originaltext (Diaspora Format): ";
 $a->strings["diaspora2bb: "] = "diaspora2bb: ";
+$a->strings["Not Extended"] = "Nicht erweitert.";
 $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: ";
@@ -1704,6 +1708,7 @@ $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";
index 41def27aaa6546532ba73dad5b94cbaa1678c388..d71f862d29b1d456601eb1766039befe0f504ac0 100644 (file)
@@ -14,8 +14,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: friendica\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-09 08:57+0100\n"
-"PO-Revision-Date: 2015-02-09 10:48+0000\n"
+"POT-Creation-Date: 2015-05-21 10:43+0200\n"
+"PO-Revision-Date: 2015-05-23 18:06+0000\n"
 "Last-Translator: fabrixxm <fabrix.xm@gmail.com>\n"
 "Language-Team: Italian (http://www.transifex.com/projects/p/friendica/language/it/)\n"
 "MIME-Version: 1.0\n"
@@ -24,4421 +24,4525 @@ msgstr ""
 "Language: it\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
-#: ../../mod/contacts.php:108
-#, php-format
-msgid "%d contact edited."
-msgid_plural "%d contacts edited"
-msgstr[0] "%d contatto modificato"
-msgstr[1] "%d contatti modificati"
+#: ../../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:681 ../../mod/contacts.php:562
+#: ../../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:491 ../../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:190
+#: ../../mod/content.php:710 ../../mod/poke.php:199 ../../mod/localtime.php:45
+msgid "Submit"
+msgstr "Invia"
 
-#: ../../mod/contacts.php:139 ../../mod/contacts.php:272
-msgid "Could not access contact record."
-msgstr "Non è possibile accedere al contatto."
+#: ../../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 "Impostazioni tema"
 
-#: ../../mod/contacts.php:153
-msgid "Could not locate selected profile."
-msgstr "Non riesco a trovare il profilo selezionato."
+#: ../../view/theme/cleanzero/config.php:83
+msgid "Set resize level for images in posts and comments (width and height)"
+msgstr "Dimensione immagini in messaggi e commenti (larghezza e altezza)"
 
-#: ../../mod/contacts.php:186
-msgid "Contact updated."
-msgstr "Contatto aggiornato."
+#: ../../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 "Dimensione del carattere di messaggi e commenti"
 
-#: ../../mod/contacts.php:188 ../../mod/dfrn_request.php:576
-msgid "Failed to update contact record."
-msgstr "Errore nell'aggiornamento del contatto."
+#: ../../view/theme/cleanzero/config.php:85
+msgid "Set theme width"
+msgstr "Imposta la larghezza del tema"
 
-#: ../../mod/contacts.php:254 ../../mod/manage.php:96
-#: ../../mod/display.php:499 ../../mod/profile_photo.php:19
-#: ../../mod/profile_photo.php:169 ../../mod/profile_photo.php:180
-#: ../../mod/profile_photo.php:193 ../../mod/follow.php:9
-#: ../../mod/item.php:168 ../../mod/item.php:184 ../../mod/group.php:19
-#: ../../mod/dfrn_confirm.php:55 ../../mod/fsuggest.php:78
-#: ../../mod/wall_upload.php:66 ../../mod/viewcontacts.php:24
-#: ../../mod/notifications.php:66 ../../mod/message.php:38
-#: ../../mod/message.php:174 ../../mod/crepair.php:119
-#: ../../mod/nogroup.php:25 ../../mod/network.php:4 ../../mod/allfriends.php:9
-#: ../../mod/events.php:140 ../../mod/install.php:151
-#: ../../mod/wallmessage.php:9 ../../mod/wallmessage.php:33
-#: ../../mod/wallmessage.php:79 ../../mod/wallmessage.php:103
-#: ../../mod/wall_attach.php:55 ../../mod/settings.php:102
-#: ../../mod/settings.php:596 ../../mod/settings.php:601
-#: ../../mod/register.php:42 ../../mod/delegate.php:12 ../../mod/mood.php:114
-#: ../../mod/suggest.php:58 ../../mod/profiles.php:165
-#: ../../mod/profiles.php:618 ../../mod/editpost.php:10 ../../mod/api.php:26
-#: ../../mod/api.php:31 ../../mod/notes.php:20 ../../mod/poke.php:135
-#: ../../mod/invite.php:15 ../../mod/invite.php:101 ../../mod/photos.php:134
-#: ../../mod/photos.php:1050 ../../mod/regmod.php:110 ../../mod/uimport.php:23
-#: ../../mod/attach.php:33 ../../include/items.php:4712 ../../index.php:369
-msgid "Permission denied."
-msgstr "Permesso negato."
+#: ../../view/theme/cleanzero/config.php:86
+#: ../../view/theme/quattro/config.php:68
+msgid "Color scheme"
+msgstr "Schema colori"
 
-#: ../../mod/contacts.php:287
-msgid "Contact has been blocked"
-msgstr "Il contatto è stato bloccato"
+#: ../../view/theme/vier/config.php:59
+msgid "Set style"
+msgstr "Imposta stile"
 
-#: ../../mod/contacts.php:287
-msgid "Contact has been unblocked"
-msgstr "Il contatto è stato sbloccato"
+#: ../../view/theme/duepuntozero/config.php:44 ../../include/text.php:1729
+#: ../../include/user.php:247
+msgid "default"
+msgstr "default"
 
-#: ../../mod/contacts.php:298
-msgid "Contact has been ignored"
-msgstr "Il contatto è ignorato"
+#: ../../view/theme/duepuntozero/config.php:45
+msgid "greenzero"
+msgstr "greenzero"
 
-#: ../../mod/contacts.php:298
-msgid "Contact has been unignored"
-msgstr "Il contatto non è più ignorato"
+#: ../../view/theme/duepuntozero/config.php:46
+msgid "purplezero"
+msgstr "purplezero"
 
-#: ../../mod/contacts.php:310
-msgid "Contact has been archived"
-msgstr "Il contatto è stato archiviato"
+#: ../../view/theme/duepuntozero/config.php:47
+msgid "easterbunny"
+msgstr "easterbunny"
 
-#: ../../mod/contacts.php:310
-msgid "Contact has been unarchived"
-msgstr "Il contatto è stato dearchiviato"
+#: ../../view/theme/duepuntozero/config.php:48
+msgid "darkzero"
+msgstr "darkzero"
 
-#: ../../mod/contacts.php:335 ../../mod/contacts.php:711
-msgid "Do you really want to delete this contact?"
-msgstr "Vuoi veramente cancellare questo contatto?"
+#: ../../view/theme/duepuntozero/config.php:49
+msgid "comix"
+msgstr "comix"
 
-#: ../../mod/contacts.php:337 ../../mod/message.php:209
-#: ../../mod/settings.php:1010 ../../mod/settings.php:1016
-#: ../../mod/settings.php:1024 ../../mod/settings.php:1028
-#: ../../mod/settings.php:1033 ../../mod/settings.php:1039
-#: ../../mod/settings.php:1045 ../../mod/settings.php:1051
-#: ../../mod/settings.php:1081 ../../mod/settings.php:1082
-#: ../../mod/settings.php:1083 ../../mod/settings.php:1084
-#: ../../mod/settings.php:1085 ../../mod/dfrn_request.php:830
-#: ../../mod/register.php:233 ../../mod/suggest.php:29
-#: ../../mod/profiles.php:661 ../../mod/profiles.php:664 ../../mod/api.php:105
-#: ../../include/items.php:4557
-msgid "Yes"
-msgstr "Si"
+#: ../../view/theme/duepuntozero/config.php:50
+msgid "slackr"
+msgstr "slackr"
 
-#: ../../mod/contacts.php:340 ../../mod/tagrm.php:11 ../../mod/tagrm.php:94
-#: ../../mod/message.php:212 ../../mod/fbrowser.php:81
-#: ../../mod/fbrowser.php:116 ../../mod/settings.php:615
-#: ../../mod/settings.php:641 ../../mod/dfrn_request.php:844
-#: ../../mod/suggest.php:32 ../../mod/editpost.php:148
-#: ../../mod/photos.php:203 ../../mod/photos.php:292
-#: ../../include/conversation.php:1129 ../../include/items.php:4560
-msgid "Cancel"
-msgstr "Annulla"
+#: ../../view/theme/duepuntozero/config.php:62
+msgid "Variations"
+msgstr "Varianti"
 
-#: ../../mod/contacts.php:352
-msgid "Contact has been removed."
-msgstr "Il contatto è stato rimosso."
+#: ../../view/theme/diabook/config.php:142
+#: ../../view/theme/diabook/theme.php:621 ../../include/acl_selectors.php:335
+msgid "don't show"
+msgstr "non mostrare"
 
-#: ../../mod/contacts.php:390
-#, php-format
-msgid "You are mutual friends with %s"
-msgstr "Sei amico reciproco con %s"
+#: ../../view/theme/diabook/config.php:142
+#: ../../view/theme/diabook/theme.php:621 ../../include/acl_selectors.php:334
+msgid "show"
+msgstr "mostra"
 
-#: ../../mod/contacts.php:394
-#, php-format
-msgid "You are sharing with %s"
-msgstr "Stai condividendo con %s"
+#: ../../view/theme/diabook/config.php:152
+#: ../../view/theme/dispy/config.php:74
+msgid "Set line-height for posts and comments"
+msgstr "Altezza della linea di testo di messaggi e commenti"
 
-#: ../../mod/contacts.php:399
-#, php-format
-msgid "%s is sharing with you"
-msgstr "%s sta condividendo con te"
+#: ../../view/theme/diabook/config.php:153
+msgid "Set resolution for middle column"
+msgstr "Imposta la dimensione della colonna centrale"
 
-#: ../../mod/contacts.php:416
-msgid "Private communications are not available for this contact."
-msgstr "Le comunicazioni private non sono disponibili per questo contatto."
+#: ../../view/theme/diabook/config.php:154
+msgid "Set color scheme"
+msgstr "Imposta lo schema dei colori"
 
-#: ../../mod/contacts.php:419 ../../mod/admin.php:569
-msgid "Never"
-msgstr "Mai"
+#: ../../view/theme/diabook/config.php:155
+msgid "Set zoomfactor for Earth Layer"
+msgstr "Livello di zoom per Earth Layer"
 
-#: ../../mod/contacts.php:423
-msgid "(Update was successful)"
-msgstr "(L'aggiornamento è stato completato)"
+#: ../../view/theme/diabook/config.php:156
+#: ../../view/theme/diabook/theme.php:585
+msgid "Set longitude (X) for Earth Layers"
+msgstr "Longitudine (X) per Earth Layers"
 
-#: ../../mod/contacts.php:423
-msgid "(Update was not successful)"
-msgstr "(L'aggiornamento non è stato completato)"
+#: ../../view/theme/diabook/config.php:157
+#: ../../view/theme/diabook/theme.php:586
+msgid "Set latitude (Y) for Earth Layers"
+msgstr "Latitudine (Y) per Earth Layers"
 
-#: ../../mod/contacts.php:425
-msgid "Suggest friends"
-msgstr "Suggerisci amici"
+#: ../../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 "Pagine Comunitarie"
 
-#: ../../mod/contacts.php:429
-#, php-format
-msgid "Network type: %s"
-msgstr "Tipo di rete: %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"
 
-#: ../../mod/contacts.php:432 ../../include/contact_widgets.php:200
-#, php-format
-msgid "%d contact in common"
-msgid_plural "%d contacts in common"
-msgstr[0] "%d contatto in comune"
-msgstr[1] "%d contatti in comune"
+#: ../../view/theme/diabook/config.php:160
+#: ../../view/theme/diabook/theme.php:391
+#: ../../view/theme/diabook/theme.php:626
+msgid "Community Profiles"
+msgstr "Profili Comunità"
 
-#: ../../mod/contacts.php:437
-msgid "View all contacts"
-msgstr "Vedi tutti i contatti"
+#: ../../view/theme/diabook/config.php:161
+#: ../../view/theme/diabook/theme.php:599
+#: ../../view/theme/diabook/theme.php:627
+msgid "Help or @NewHere ?"
+msgstr "Serve aiuto? Sei nuovo?"
 
-#: ../../mod/contacts.php:442 ../../mod/contacts.php:501
-#: ../../mod/contacts.php:714 ../../mod/admin.php:1009
-msgid "Unblock"
-msgstr "Sblocca"
+#: ../../view/theme/diabook/config.php:162
+#: ../../view/theme/diabook/theme.php:606
+#: ../../view/theme/diabook/theme.php:628
+msgid "Connect Services"
+msgstr "Servizi di conessione"
 
-#: ../../mod/contacts.php:442 ../../mod/contacts.php:501
-#: ../../mod/contacts.php:714 ../../mod/admin.php:1008
-msgid "Block"
-msgstr "Blocca"
+#: ../../view/theme/diabook/config.php:163
+#: ../../view/theme/diabook/theme.php:523
+#: ../../view/theme/diabook/theme.php:629
+msgid "Find Friends"
+msgstr "Trova Amici"
 
-#: ../../mod/contacts.php:445
-msgid "Toggle Blocked status"
-msgstr "Inverti stato \"Blocca\""
+#: ../../view/theme/diabook/config.php:164
+#: ../../view/theme/diabook/theme.php:412
+#: ../../view/theme/diabook/theme.php:630
+msgid "Last users"
+msgstr "Ultimi utenti"
 
-#: ../../mod/contacts.php:448 ../../mod/contacts.php:502
-#: ../../mod/contacts.php:715
-msgid "Unignore"
-msgstr "Non ignorare"
+#: ../../view/theme/diabook/config.php:165
+#: ../../view/theme/diabook/theme.php:486
+#: ../../view/theme/diabook/theme.php:631
+msgid "Last photos"
+msgstr "Ultime foto"
 
-#: ../../mod/contacts.php:448 ../../mod/contacts.php:502
-#: ../../mod/contacts.php:715 ../../mod/notifications.php:51
-#: ../../mod/notifications.php:164 ../../mod/notifications.php:210
-msgid "Ignore"
-msgstr "Ignora"
+#: ../../view/theme/diabook/config.php:166
+#: ../../view/theme/diabook/theme.php:441
+#: ../../view/theme/diabook/theme.php:632
+msgid "Last likes"
+msgstr "Ultimi \"mi piace\""
 
-#: ../../mod/contacts.php:451
-msgid "Toggle Ignored status"
-msgstr "Inverti stato \"Ignora\""
+#: ../../view/theme/diabook/theme.php:123 ../../include/nav.php:105
+#: ../../include/nav.php:148 ../../mod/notifications.php:93
+msgid "Home"
+msgstr "Home"
 
-#: ../../mod/contacts.php:455 ../../mod/contacts.php:716
-msgid "Unarchive"
-msgstr "Dearchivia"
+#: ../../view/theme/diabook/theme.php:123 ../../include/nav.php:76
+#: ../../include/nav.php:148
+msgid "Your posts and conversations"
+msgstr "I tuoi messaggi e le tue conversazioni"
 
-#: ../../mod/contacts.php:455 ../../mod/contacts.php:716
-msgid "Archive"
-msgstr "Archivia"
+#: ../../view/theme/diabook/theme.php:124 ../../boot.php:2132
+#: ../../include/profile_advanced.php:7 ../../include/profile_advanced.php:87
+#: ../../include/nav.php:77 ../../mod/profperm.php:104
+#: ../../mod/newmember.php:32
+msgid "Profile"
+msgstr "Profilo"
 
-#: ../../mod/contacts.php:458
-msgid "Toggle Archive status"
-msgstr "Inverti stato \"Archiviato\""
+#: ../../view/theme/diabook/theme.php:124 ../../include/nav.php:77
+msgid "Your profile page"
+msgstr "Pagina del tuo profilo"
 
-#: ../../mod/contacts.php:461
-msgid "Repair"
-msgstr "Ripara"
+#: ../../view/theme/diabook/theme.php:125 ../../include/nav.php:178
+#: ../../mod/contacts.php:788
+msgid "Contacts"
+msgstr "Contatti"
 
-#: ../../mod/contacts.php:464
-msgid "Advanced Contact Settings"
-msgstr "Impostazioni avanzate Contatto"
+#: ../../view/theme/diabook/theme.php:125
+msgid "Your contacts"
+msgstr "I tuoi contatti"
 
-#: ../../mod/contacts.php:470
-msgid "Communications lost with this contact!"
-msgstr "Comunicazione con questo contatto persa!"
+#: ../../view/theme/diabook/theme.php:126 ../../boot.php:2139
+#: ../../include/nav.php:78 ../../mod/fbrowser.php:25
+msgid "Photos"
+msgstr "Foto"
 
-#: ../../mod/contacts.php:473
-msgid "Contact Editor"
-msgstr "Editor dei Contatti"
+#: ../../view/theme/diabook/theme.php:126 ../../include/nav.php:78
+msgid "Your photos"
+msgstr "Le tue foto"
 
-#: ../../mod/contacts.php:475 ../../mod/manage.php:110
-#: ../../mod/fsuggest.php:107 ../../mod/message.php:335
-#: ../../mod/message.php:564 ../../mod/crepair.php:186
-#: ../../mod/events.php:478 ../../mod/content.php:710
-#: ../../mod/install.php:248 ../../mod/install.php:286 ../../mod/mood.php:137
-#: ../../mod/profiles.php:686 ../../mod/localtime.php:45
-#: ../../mod/poke.php:199 ../../mod/invite.php:140 ../../mod/photos.php:1084
-#: ../../mod/photos.php:1203 ../../mod/photos.php:1514
-#: ../../mod/photos.php:1565 ../../mod/photos.php:1609
-#: ../../mod/photos.php:1697 ../../object/Item.php:678
-#: ../../view/theme/cleanzero/config.php:80
-#: ../../view/theme/dispy/config.php:70 ../../view/theme/quattro/config.php:64
-#: ../../view/theme/diabook/config.php:148
-#: ../../view/theme/diabook/theme.php:633 ../../view/theme/vier/config.php:53
-#: ../../view/theme/duepuntozero/config.php:59
-msgid "Submit"
-msgstr "Invia"
+#: ../../view/theme/diabook/theme.php:127 ../../boot.php:2156
+#: ../../include/nav.php:80 ../../mod/events.php:382
+msgid "Events"
+msgstr "Eventi"
 
-#: ../../mod/contacts.php:476
-msgid "Profile Visibility"
-msgstr "Visibilità del profilo"
+#: ../../view/theme/diabook/theme.php:127 ../../include/nav.php:80
+msgid "Your events"
+msgstr "I tuoi eventi"
 
-#: ../../mod/contacts.php:477
-#, php-format
-msgid ""
-"Please choose the profile you would like to display to %s when viewing your "
-"profile securely."
-msgstr "Seleziona il profilo che vuoi mostrare a %s quando visita il tuo profilo in modo sicuro."
+#: ../../view/theme/diabook/theme.php:128 ../../include/nav.php:81
+msgid "Personal notes"
+msgstr "Note personali"
 
-#: ../../mod/contacts.php:478
-msgid "Contact Information / Notes"
-msgstr "Informazioni / Note sul contatto"
+#: ../../view/theme/diabook/theme.php:128
+msgid "Your personal photos"
+msgstr "Le tue foto personali"
 
-#: ../../mod/contacts.php:479
-msgid "Edit contact notes"
-msgstr "Modifica note contatto"
+#: ../../view/theme/diabook/theme.php:129 ../../include/nav.php:129
+#: ../../include/nav.php:131 ../../mod/community.php:32
+msgid "Community"
+msgstr "Comunità"
 
-#: ../../mod/contacts.php:484 ../../mod/contacts.php:679
-#: ../../mod/viewcontacts.php:64 ../../mod/nogroup.php:40
-#, php-format
-msgid "Visit %s's profile [%s]"
-msgstr "Visita il profilo di %s [%s]"
+#: ../../view/theme/diabook/theme.php:463 ../../include/conversation.php:118
+#: ../../include/conversation.php:245 ../../include/text.php:1993
+msgid "event"
+msgstr "l'evento"
 
-#: ../../mod/contacts.php:485
-msgid "Block/Unblock contact"
-msgstr "Blocca/Sblocca contatto"
+#: ../../view/theme/diabook/theme.php:466
+#: ../../view/theme/diabook/theme.php:475 ../../include/diaspora.php:2060
+#: ../../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 "stato"
 
-#: ../../mod/contacts.php:486
-msgid "Ignore contact"
-msgstr "Ignora il contatto"
+#: ../../view/theme/diabook/theme.php:471 ../../include/diaspora.php:2060
+#: ../../include/conversation.php:126 ../../include/conversation.php:253
+#: ../../include/text.php:1995 ../../mod/like.php:149
+#: ../../mod/subthread.php:87 ../../mod/tagger.php:62
+msgid "photo"
+msgstr "foto"
 
-#: ../../mod/contacts.php:487
-msgid "Repair URL settings"
-msgstr "Impostazioni riparazione URL"
+#: ../../view/theme/diabook/theme.php:480 ../../include/diaspora.php:2076
+#: ../../include/conversation.php:137 ../../mod/like.php:166
+#, php-format
+msgid "%1$s likes %2$s's %3$s"
+msgstr "A %1$s piace %3$s di %2$s"
 
-#: ../../mod/contacts.php:488
-msgid "View conversations"
-msgstr "Vedi conversazioni"
+#: ../../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 "Foto dei contatti"
 
-#: ../../mod/contacts.php:490
-msgid "Delete contact"
-msgstr "Rimuovi contatto"
+#: ../../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 "Foto del profilo"
 
-#: ../../mod/contacts.php:494
-msgid "Last update:"
-msgstr "Ultimo aggiornamento:"
+#: ../../view/theme/diabook/theme.php:524
+msgid "Local Directory"
+msgstr "Elenco Locale"
 
-#: ../../mod/contacts.php:496
-msgid "Update public posts"
-msgstr "Aggiorna messaggi pubblici"
+#: ../../view/theme/diabook/theme.php:525 ../../mod/directory.php:51
+msgid "Global Directory"
+msgstr "Elenco globale"
 
-#: ../../mod/contacts.php:498 ../../mod/admin.php:1503
-msgid "Update now"
-msgstr "Aggiorna adesso"
+#: ../../view/theme/diabook/theme.php:526 ../../include/contact_widgets.php:36
+msgid "Similar Interests"
+msgstr "Interessi simili"
 
-#: ../../mod/contacts.php:505
-msgid "Currently blocked"
-msgstr "Bloccato"
+#: ../../view/theme/diabook/theme.php:527 ../../include/contact_widgets.php:35
+#: ../../mod/suggest.php:68
+msgid "Friend Suggestions"
+msgstr "Contatti suggeriti"
 
-#: ../../mod/contacts.php:506
-msgid "Currently ignored"
-msgstr "Ignorato"
+#: ../../view/theme/diabook/theme.php:528 ../../include/contact_widgets.php:38
+msgid "Invite Friends"
+msgstr "Invita amici"
 
-#: ../../mod/contacts.php:507
-msgid "Currently archived"
-msgstr "Al momento archiviato"
+#: ../../view/theme/diabook/theme.php:544
+#: ../../view/theme/diabook/theme.php:648 ../../include/nav.php:173
+#: ../../mod/settings.php:90 ../../mod/admin.php:1107 ../../mod/admin.php:1328
+#: ../../mod/newmember.php:22
+msgid "Settings"
+msgstr "Impostazioni"
 
-#: ../../mod/contacts.php:508 ../../mod/notifications.php:157
-#: ../../mod/notifications.php:204
-msgid "Hide this contact from others"
-msgstr "Nascondi questo contatto agli altri"
+#: ../../view/theme/diabook/theme.php:584
+msgid "Set zoomfactor for Earth Layers"
+msgstr "Livello di zoom per Earth Layers"
 
-#: ../../mod/contacts.php:508
-msgid ""
-"Replies/likes to your public posts <strong>may</strong> still be visible"
-msgstr "Risposte ai tuoi post pubblici <strong>possono</strong> essere comunque visibili"
+#: ../../view/theme/diabook/theme.php:622
+msgid "Show/hide boxes at right-hand column:"
+msgstr "Mostra/Nascondi riquadri nella colonna destra"
 
-#: ../../mod/contacts.php:509
-msgid "Notification for new posts"
-msgstr "Notifica per i nuovi messaggi"
+#: ../../view/theme/quattro/config.php:67
+msgid "Alignment"
+msgstr "Allineamento"
 
-#: ../../mod/contacts.php:509
-msgid "Send a notification of every new post of this contact"
-msgstr "Invia una notifica per ogni nuovo messaggio di questo contatto"
+#: ../../view/theme/quattro/config.php:67
+msgid "Left"
+msgstr "Sinistra"
 
-#: ../../mod/contacts.php:510
-msgid "Fetch further information for feeds"
-msgstr "Recupera maggiori infomazioni per i feed"
+#: ../../view/theme/quattro/config.php:67
+msgid "Center"
+msgstr "Centrato"
 
-#: ../../mod/contacts.php:511
-msgid "Disabled"
-msgstr ""
+#: ../../view/theme/quattro/config.php:69
+msgid "Posts font size"
+msgstr "Dimensione caratteri post"
 
-#: ../../mod/contacts.php:511
-msgid "Fetch information"
-msgstr ""
+#: ../../view/theme/quattro/config.php:70
+msgid "Textareas font size"
+msgstr "Dimensione caratteri nelle aree di testo"
 
-#: ../../mod/contacts.php:511
-msgid "Fetch information and keywords"
-msgstr ""
+#: ../../view/theme/dispy/config.php:75
+msgid "Set colour scheme"
+msgstr "Imposta schema colori"
 
-#: ../../mod/contacts.php:513
-msgid "Blacklisted keywords"
-msgstr ""
+#: ../../index.php:225 ../../mod/apps.php:7
+msgid "You must be logged in to use addons. "
+msgstr "Devi aver effettuato il login per usare gli addons."
 
-#: ../../mod/contacts.php:513
-msgid ""
-"Comma separated list of keywords that should not be converted to hashtags, "
-"when \"Fetch information and keywords\" is selected"
-msgstr ""
+#: ../../index.php:269 ../../mod/p.php:16 ../../mod/p.php:25
+#: ../../mod/help.php:42
+msgid "Not Found"
+msgstr "Non trovato"
 
-#: ../../mod/contacts.php:564
-msgid "Suggestions"
-msgstr "Suggerimenti"
+#: ../../index.php:272 ../../mod/help.php:45
+msgid "Page not found."
+msgstr "Pagina non trovata."
 
-#: ../../mod/contacts.php:567
-msgid "Suggest potential friends"
-msgstr "Suggerisci potenziali amici"
+#: ../../index.php:381 ../../mod/group.php:72 ../../mod/profperm.php:19
+msgid "Permission denied"
+msgstr "Permesso negato"
 
-#: ../../mod/contacts.php:570 ../../mod/group.php:194
-msgid "All Contacts"
-msgstr "Tutti i contatti"
+#: ../../index.php:382 ../../include/items.php:4838 ../../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:608
+#: ../../mod/contacts.php:322 ../../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/follow.php:39
+#: ../../mod/follow.php:78 ../../mod/uimport.php:23 ../../mod/invite.php:15
+#: ../../mod/invite.php:101 ../../mod/events.php:152 ../../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:501 ../../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 "Permesso negato."
 
-#: ../../mod/contacts.php:573
-msgid "Show all contacts"
-msgstr "Mostra tutti i contatti"
+#: ../../index.php:441
+msgid "toggle mobile"
+msgstr "commuta tema mobile"
 
-#: ../../mod/contacts.php:576
-msgid "Unblocked"
-msgstr "Sbloccato"
+#: ../../boot.php:749
+msgid "Delete this item?"
+msgstr "Cancellare questo elemento?"
 
-#: ../../mod/contacts.php:579
-msgid "Only show unblocked contacts"
-msgstr "Mostra solo contatti non bloccati"
+#: ../../boot.php:750 ../../object/Item.php:364 ../../object/Item.php:680
+#: ../../mod/photos.php:1564 ../../mod/photos.php:1608
+#: ../../mod/photos.php:1696 ../../mod/content.php:709
+msgid "Comment"
+msgstr "Commento"
 
-#: ../../mod/contacts.php:583
-msgid "Blocked"
-msgstr "Bloccato"
+#: ../../boot.php:751 ../../include/contact_widgets.php:205
+#: ../../object/Item.php:393 ../../mod/content.php:606
+msgid "show more"
+msgstr "mostra di più"
 
-#: ../../mod/contacts.php:586
-msgid "Only show blocked contacts"
-msgstr "Mostra solo contatti bloccati"
+#: ../../boot.php:752
+msgid "show fewer"
+msgstr "mostra di meno"
 
-#: ../../mod/contacts.php:590
-msgid "Ignored"
-msgstr "Ignorato"
+#: ../../boot.php:1122
+#, php-format
+msgid "Update %s failed. See error logs."
+msgstr "aggiornamento %s fallito. Guarda i log di errore."
 
-#: ../../mod/contacts.php:593
-msgid "Only show ignored contacts"
-msgstr "Mostra solo contatti ignorati"
+#: ../../boot.php:1229
+msgid "Create a New Account"
+msgstr "Crea un nuovo account"
 
-#: ../../mod/contacts.php:597
-msgid "Archived"
-msgstr "Achiviato"
+#: ../../boot.php:1230 ../../include/nav.php:109 ../../mod/register.php:269
+msgid "Register"
+msgstr "Registrati"
 
-#: ../../mod/contacts.php:600
-msgid "Only show archived contacts"
-msgstr "Mostra solo contatti archiviati"
+#: ../../boot.php:1254 ../../include/nav.php:73
+msgid "Logout"
+msgstr "Esci"
 
-#: ../../mod/contacts.php:604
-msgid "Hidden"
-msgstr "Nascosto"
+#: ../../boot.php:1255 ../../include/nav.php:92 ../../mod/bookmarklet.php:12
+msgid "Login"
+msgstr "Accedi"
 
-#: ../../mod/contacts.php:607
-msgid "Only show hidden contacts"
-msgstr "Mostra solo contatti nascosti"
+#: ../../boot.php:1257
+msgid "Nickname or Email address: "
+msgstr "Nome utente o indirizzo email: "
 
-#: ../../mod/contacts.php:655
-msgid "Mutual Friendship"
-msgstr "Amicizia reciproca"
+#: ../../boot.php:1258
+msgid "Password: "
+msgstr "Password: "
 
-#: ../../mod/contacts.php:659
-msgid "is a fan of yours"
-msgstr "è un tuo fan"
+#: ../../boot.php:1259
+msgid "Remember me"
+msgstr "Ricordati di me"
 
-#: ../../mod/contacts.php:663
-msgid "you are a fan of"
-msgstr "sei un fan di"
+#: ../../boot.php:1262
+msgid "Or login using OpenID: "
+msgstr "O entra con OpenID:"
 
-#: ../../mod/contacts.php:680 ../../mod/nogroup.php:41
-msgid "Edit contact"
-msgstr "Modifca contatto"
+#: ../../boot.php:1268
+msgid "Forgot your password?"
+msgstr "Hai dimenticato la password?"
 
-#: ../../mod/contacts.php:702 ../../include/nav.php:177
-#: ../../view/theme/diabook/theme.php:125
-msgid "Contacts"
-msgstr "Contatti"
+#: ../../boot.php:1269 ../../mod/lostpass.php:109
+msgid "Password Reset"
+msgstr "Reimpostazione password"
 
-#: ../../mod/contacts.php:706
-msgid "Search your contacts"
-msgstr "Cerca nei tuoi contatti"
+#: ../../boot.php:1271
+msgid "Website Terms of Service"
+msgstr "Condizioni di servizio del sito web "
 
-#: ../../mod/contacts.php:707 ../../mod/directory.php:61
-msgid "Finding: "
-msgstr "Ricerca: "
+#: ../../boot.php:1272
+msgid "terms of service"
+msgstr "condizioni del servizio"
 
-#: ../../mod/contacts.php:708 ../../mod/directory.php:63
-#: ../../include/contact_widgets.php:34
-msgid "Find"
-msgstr "Trova"
+#: ../../boot.php:1274
+msgid "Website Privacy Policy"
+msgstr "Politiche di privacy del sito"
 
-#: ../../mod/contacts.php:713 ../../mod/settings.php:132
-#: ../../mod/settings.php:640
-msgid "Update"
-msgstr "Aggiorna"
+#: ../../boot.php:1275
+msgid "privacy policy"
+msgstr "politiche di privacy"
 
-#: ../../mod/contacts.php:717 ../../mod/group.php:171 ../../mod/admin.php:1007
-#: ../../mod/content.php:438 ../../mod/content.php:741
-#: ../../mod/settings.php:677 ../../mod/photos.php:1654
-#: ../../object/Item.php:130 ../../include/conversation.php:614
-msgid "Delete"
-msgstr "Rimuovi"
+#: ../../boot.php:1408
+msgid "Requested account is not available."
+msgstr "L'account richiesto non è disponibile."
 
-#: ../../mod/hcard.php:10
-msgid "No profile"
-msgstr "Nessun profilo"
+#: ../../boot.php:1447 ../../mod/profile.php:21
+msgid "Requested profile is not available."
+msgstr "Profilo richiesto non disponibile."
 
-#: ../../mod/manage.php:106
-msgid "Manage Identities and/or Pages"
-msgstr "Gestisci indentità e/o pagine"
+#: ../../boot.php:1490 ../../boot.php:1624
+#: ../../include/profile_advanced.php:84
+msgid "Edit profile"
+msgstr "Modifica il profilo"
 
-#: ../../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 "Cambia tra differenti identità o pagine comunità/gruppi che condividono il tuo account o per cui hai i permessi di gestione"
+#: ../../boot.php:1557 ../../include/contact_widgets.php:10
+#: ../../mod/suggest.php:90 ../../mod/match.php:63
+msgid "Connect"
+msgstr "Connetti"
 
-#: ../../mod/manage.php:108
-msgid "Select an identity to manage: "
-msgstr "Seleziona un'identità da gestire:"
+#: ../../boot.php:1589
+msgid "Message"
+msgstr "Messaggio"
 
-#: ../../mod/oexchange.php:25
-msgid "Post successful."
-msgstr "Inviato!"
+#: ../../boot.php:1595 ../../include/nav.php:176
+msgid "Profiles"
+msgstr "Profili"
 
-#: ../../mod/profperm.php:19 ../../mod/group.php:72 ../../index.php:368
-msgid "Permission denied"
-msgstr "Permesso negato"
+#: ../../boot.php:1595
+msgid "Manage/edit profiles"
+msgstr "Gestisci/modifica i profili"
 
-#: ../../mod/profperm.php:25 ../../mod/profperm.php:55
-msgid "Invalid profile identifier."
-msgstr "Indentificativo del profilo non valido."
+#: ../../boot.php:1600 ../../boot.php:1626 ../../mod/profiles.php:804
+msgid "Change profile photo"
+msgstr "Cambia la foto del profilo"
 
-#: ../../mod/profperm.php:101
-msgid "Profile Visibility Editor"
-msgstr "Modifica visibilità del profilo"
+#: ../../boot.php:1601 ../../mod/profiles.php:805
+msgid "Create New Profile"
+msgstr "Crea un nuovo profilo"
 
-#: ../../mod/profperm.php:103 ../../mod/newmember.php:32 ../../boot.php:2119
-#: ../../include/profile_advanced.php:7 ../../include/profile_advanced.php:87
-#: ../../include/nav.php:77 ../../view/theme/diabook/theme.php:124
-msgid "Profile"
-msgstr "Profilo"
-
-#: ../../mod/profperm.php:105 ../../mod/group.php:224
-msgid "Click on a contact to add or remove."
-msgstr "Clicca su un contatto per aggiungerlo o rimuoverlo."
+#: ../../boot.php:1611 ../../mod/profiles.php:816
+msgid "Profile Image"
+msgstr "Immagine del Profilo"
 
-#: ../../mod/profperm.php:114
-msgid "Visible To"
-msgstr "Visibile a"
+#: ../../boot.php:1614 ../../mod/profiles.php:818
+msgid "visible to everybody"
+msgstr "visibile a tutti"
 
-#: ../../mod/profperm.php:130
-msgid "All Contacts (with secure profile access)"
-msgstr "Tutti i contatti (con profilo ad accesso sicuro)"
+#: ../../boot.php:1615 ../../mod/profiles.php:819
+msgid "Edit visibility"
+msgstr "Modifica visibilità"
 
-#: ../../mod/display.php:82 ../../mod/display.php:284
-#: ../../mod/display.php:503 ../../mod/viewsrc.php:15 ../../mod/admin.php:169
-#: ../../mod/admin.php:1052 ../../mod/admin.php:1265 ../../mod/notice.php:15
-#: ../../include/items.php:4516
-msgid "Item not found."
-msgstr "Elemento non trovato."
+#: ../../boot.php:1637 ../../include/event.php:42
+#: ../../include/bb2diaspora.php:155 ../../mod/events.php:483
+#: ../../mod/directory.php:136
+msgid "Location:"
+msgstr "Posizione:"
 
-#: ../../mod/display.php:212 ../../mod/videos.php:115
-#: ../../mod/viewcontacts.php:19 ../../mod/community.php:18
-#: ../../mod/dfrn_request.php:762 ../../mod/search.php:89
-#: ../../mod/directory.php:33 ../../mod/photos.php:920
-msgid "Public access denied."
-msgstr "Accesso negato."
+#: ../../boot.php:1639 ../../include/profile_advanced.php:17
+#: ../../mod/directory.php:138
+msgid "Gender:"
+msgstr "Genere:"
 
-#: ../../mod/display.php:332 ../../mod/profile.php:155
-msgid "Access to this profile has been restricted."
-msgstr "L'accesso a questo profilo è stato limitato."
+#: ../../boot.php:1642 ../../include/profile_advanced.php:37
+#: ../../mod/directory.php:140
+msgid "Status:"
+msgstr "Stato:"
 
-#: ../../mod/display.php:496
-msgid "Item has been removed."
-msgstr "L'oggetto è stato rimosso."
+#: ../../boot.php:1644 ../../include/profile_advanced.php:48
+#: ../../mod/directory.php:142
+msgid "Homepage:"
+msgstr "Homepage:"
 
-#: ../../mod/newmember.php:6
-msgid "Welcome to Friendica"
-msgstr "Benvenuto su Friendica"
+#: ../../boot.php:1646 ../../include/profile_advanced.php:58
+#: ../../mod/directory.php:144
+msgid "About:"
+msgstr "Informazioni:"
 
-#: ../../mod/newmember.php:8
-msgid "New Member Checklist"
-msgstr "Cose da fare per i Nuovi Utenti"
+#: ../../boot.php:1710
+msgid "Network:"
+msgstr "Rete:"
 
-#: ../../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 "Vorremmo offrirti qualche trucco e dei link alla guida per aiutarti ad avere un'esperienza divertente. Clicca su un qualsiasi elemento per visitare la relativa pagina. Un link a questa pagina sarà visibile nella tua home per due settimane dopo la tua registrazione."
+#: ../../boot.php:1742 ../../boot.php:1828
+msgid "g A l F d"
+msgstr "g A l d F"
 
-#: ../../mod/newmember.php:14
-msgid "Getting Started"
-msgstr "Come Iniziare"
+#: ../../boot.php:1743 ../../boot.php:1829
+msgid "d"
+msgstr "d F"
 
-#: ../../mod/newmember.php:18
-msgid "Friendica Walk-Through"
-msgstr "Friendica Passo-Passo"
+#: ../../boot.php:1788 ../../boot.php:1876
+msgid "[today]"
+msgstr "[oggi]"
 
-#: ../../mod/newmember.php:18
-msgid ""
-"On your <em>Quick Start</em> page - find a brief introduction to your "
-"profile and network tabs, make some new connections, and find some groups to"
-" join."
-msgstr "Sulla tua pagina <em>Quick Start</em> - veloce introduzione alla tua pagina profilo e alla pagina Rete, fai qualche nuova amicizia, e trova qualche gruppo a cui unirti."
+#: ../../boot.php:1800
+msgid "Birthday Reminders"
+msgstr "Promemoria compleanni"
 
-#: ../../mod/newmember.php:22 ../../mod/admin.php:1104
-#: ../../mod/admin.php:1325 ../../mod/settings.php:85
-#: ../../include/nav.php:172 ../../view/theme/diabook/theme.php:544
-#: ../../view/theme/diabook/theme.php:648
-msgid "Settings"
-msgstr "Impostazioni"
+#: ../../boot.php:1801
+msgid "Birthdays this week:"
+msgstr "Compleanni questa settimana:"
 
-#: ../../mod/newmember.php:26
-msgid "Go to Your Settings"
-msgstr "Vai alle tue Impostazioni"
+#: ../../boot.php:1863
+msgid "[No description]"
+msgstr "[Nessuna descrizione]"
 
-#: ../../mod/newmember.php:26
-msgid ""
-"On your <em>Settings</em> page -  change your initial password. Also make a "
-"note of your Identity Address. This looks just like an email address - and "
-"will be useful in making friends on the free social web."
-msgstr "Nella tua pagina <em>Impostazioni</em> - cambia la tua password iniziale. Prendi anche nota del tuo Indirizzo Identità. Assomiglia a un indirizzo email e sarà utile per stringere amicizie nel web sociale libero."
+#: ../../boot.php:1887
+msgid "Event Reminders"
+msgstr "Promemoria"
 
-#: ../../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 "Guarda le altre impostazioni, in particolare le impostazioni della privacy. Un profilo non pubblicato è come un numero di telefono non in elenco. In genere, dovresti pubblicare il tuo profilo - a meno che tutti i tuoi amici e potenziali tali sappiano esattamente come trovarti."
+#: ../../boot.php:1888
+msgid "Events this week:"
+msgstr "Eventi di questa settimana:"
 
-#: ../../mod/newmember.php:36 ../../mod/profile_photo.php:244
-#: ../../mod/profiles.php:699
-msgid "Upload Profile Photo"
-msgstr "Carica la foto del profilo"
+#: ../../boot.php:2125 ../../include/nav.php:76
+msgid "Status"
+msgstr "Stato"
 
-#: ../../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 "Carica una foto del profilo se non l'hai ancora fatto. Studi hanno mostrato che persone che hanno vere foto di se stessi hanno dieci volte più probabilità di fare amicizie rispetto alle persone che non ce l'hanno."
+#: ../../boot.php:2128
+msgid "Status Messages and Posts"
+msgstr "Messaggi di stato e post"
 
-#: ../../mod/newmember.php:38
-msgid "Edit Your Profile"
-msgstr "Modifica il tuo Profilo"
+#: ../../boot.php:2135
+msgid "Profile Details"
+msgstr "Dettagli del profilo"
 
-#: ../../mod/newmember.php:38
-msgid ""
-"Edit your <strong>default</strong> profile to your liking. Review the "
-"settings for hiding your list of friends and hiding the profile from unknown"
-" visitors."
-msgstr "Modifica il tuo profilo <strong>predefinito</strong> a piacimento. Rivedi le impostazioni per nascondere la tua lista di amici e nascondere il profilo ai visitatori sconosciuti."
+#: ../../boot.php:2142 ../../mod/photos.php:52
+msgid "Photo Albums"
+msgstr "Album foto"
 
-#: ../../mod/newmember.php:40
-msgid "Profile Keywords"
-msgstr "Parole chiave del profilo"
+#: ../../boot.php:2146 ../../boot.php:2149 ../../include/nav.php:79
+msgid "Videos"
+msgstr "Video"
 
-#: ../../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 "Inserisci qualche parola chiave pubblica nel tuo profilo predefinito che descriva i tuoi interessi. Potremmo essere in grado di trovare altre persone con interessi similari e suggerirti delle amicizie."
+#: ../../boot.php:2159
+msgid "Events and Calendar"
+msgstr "Eventi e calendario"
 
-#: ../../mod/newmember.php:44
-msgid "Connecting"
-msgstr "Collegarsi"
+#: ../../boot.php:2163 ../../mod/notes.php:44
+msgid "Personal Notes"
+msgstr "Note personali"
 
-#: ../../mod/newmember.php:49 ../../mod/newmember.php:51
-#: ../../include/contact_selectors.php:81
-msgid "Facebook"
-msgstr "Facebook"
+#: ../../boot.php:2166
+msgid "Only You Can See This"
+msgstr "Solo tu puoi vedere questo"
 
-#: ../../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 "Autorizza il Facebook Connector se hai un account Facebook, e noi (opzionalmente) importeremo tuti i tuoi amici e le tue conversazioni da Facebook."
+#: ../../include/features.php:23
+msgid "General Features"
+msgstr "Funzionalità generali"
 
-#: ../../mod/newmember.php:51
-msgid ""
-"<em>If</em> this is your own personal server, installing the Facebook addon "
-"may ease your transition to the free social web."
-msgstr "<em>Se</em questo è il tuo server personale, installare il plugin per Facebook puo' aiutarti nella transizione verso il web sociale libero."
+#: ../../include/features.php:25
+msgid "Multiple Profiles"
+msgstr "Profili multipli"
 
-#: ../../mod/newmember.php:56
-msgid "Importing Emails"
-msgstr "Importare le Email"
+#: ../../include/features.php:25
+msgid "Ability to create multiple profiles"
+msgstr "Possibilità di creare profili multipli"
 
-#: ../../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 "Inserisci i tuoi dati di accesso all'email nella tua pagina Impostazioni Connettori se vuoi importare e interagire con amici o mailing list dalla tua casella di posta in arrivo"
+#: ../../include/features.php:30
+msgid "Post Composition Features"
+msgstr "Funzionalità di composizione dei post"
 
-#: ../../mod/newmember.php:58
-msgid "Go to Your Contacts Page"
-msgstr "Vai alla tua pagina Contatti"
+#: ../../include/features.php:31
+msgid "Richtext Editor"
+msgstr "Editor visuale"
 
-#: ../../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 <em>Add New Contact</em> dialog."
-msgstr "La tua pagina Contatti è il mezzo per gestire le amicizie e collegarsi con amici su altre reti. Di solito, basta inserire l'indirizzo nel campo <em>Aggiungi Nuovo Contatto</em>"
+#: ../../include/features.php:31
+msgid "Enable richtext editor"
+msgstr "Abilita l'editor visuale"
 
-#: ../../mod/newmember.php:60
-msgid "Go to Your Site's Directory"
-msgstr "Vai all'Elenco del tuo sito"
+#: ../../include/features.php:32
+msgid "Post Preview"
+msgstr "Anteprima dei post"
 
-#: ../../mod/newmember.php:60
-msgid ""
-"The Directory page lets you find other people in this network or other "
-"federated sites. Look for a <em>Connect</em> or <em>Follow</em> link on "
-"their profile page. Provide your own Identity Address if requested."
-msgstr "La pagina Elenco ti permette di trovare altre persone in questa rete o in altri siti. Cerca un link <em>Connetti</em> o <em>Segui</em> nella loro pagina del profilo. Inserisci il tuo Indirizzo Identità, se richiesto."
+#: ../../include/features.php:32
+msgid "Allow previewing posts and comments before publishing them"
+msgstr "Permetti di avere un'anteprima di messaggi e commenti prima di pubblicarli"
 
-#: ../../mod/newmember.php:62
-msgid "Finding New People"
-msgstr "Trova nuove persone"
+#: ../../include/features.php:33
+msgid "Auto-mention Forums"
+msgstr "Auto-cita i Forum"
 
-#: ../../mod/newmember.php:62
+#: ../../include/features.php:33
 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 "Nel pannello laterale nella pagina \"Contatti\", ci sono diversi strumenti per trovare nuovi amici. Possiamo confrontare le persone per interessi, cercare le persone per nome e fornire suggerimenti basati sui tuoi contatti esistenti. Su un sito nuovo, i suggerimenti sono di solito presenti dopo 24 ore."
+"Add/remove mention when a fourm page is selected/deselected in ACL window."
+msgstr "Aggiunge o rimuove una citazione quando un forum è selezionato o deselezionato nella finestra dei permessi."
 
-#: ../../mod/newmember.php:66 ../../include/group.php:270
-msgid "Groups"
-msgstr "Gruppi"
+#: ../../include/features.php:38
+msgid "Network Sidebar Widgets"
+msgstr "Widget della barra laterale nella pagina Rete"
 
-#: ../../mod/newmember.php:70
-msgid "Group Your Contacts"
-msgstr "Raggruppa i tuoi contatti"
+#: ../../include/features.php:39
+msgid "Search by Date"
+msgstr "Cerca per data"
 
-#: ../../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 "Quando avrai alcuni amici, organizzali in gruppi di conversazioni private dalla barra laterale della tua pagina Contatti. Potrai interagire privatamente con ogni gruppo nella tua pagina Rete"
+#: ../../include/features.php:39
+msgid "Ability to select posts by date ranges"
+msgstr "Permette di filtrare i post per data"
 
-#: ../../mod/newmember.php:73
-msgid "Why Aren't My Posts Public?"
-msgstr "Perchè i miei post non sono pubblici?"
+#: ../../include/features.php:40
+msgid "Group Filter"
+msgstr "Filtra gruppi"
 
-#: ../../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 rispetta la tua provacy. Per impostazione predefinita, i tuoi post sono mostrati solo alle persone che hai aggiunto come amici. Per maggiori informazioni guarda la sezione della guida dal link qui sopra."
+#: ../../include/features.php:40
+msgid "Enable widget to display Network posts only from selected group"
+msgstr "Abilita il widget per filtrare i post solo per il gruppo selezionato"
 
-#: ../../mod/newmember.php:78
-msgid "Getting Help"
-msgstr "Ottenere Aiuto"
+#: ../../include/features.php:41
+msgid "Network Filter"
+msgstr "Filtro reti"
 
-#: ../../mod/newmember.php:82
-msgid "Go to the Help Section"
-msgstr "Vai alla sezione Guida"
+#: ../../include/features.php:41
+msgid "Enable widget to display Network posts only from selected network"
+msgstr "Abilita il widget per mostare i post solo per la rete selezionata"
 
-#: ../../mod/newmember.php:82
-msgid ""
-"Our <strong>help</strong> pages may be consulted for detail on other program"
-" features and resources."
-msgstr "Le nostre pagine della <strong>guida</strong> possono essere consultate per avere dettagli su altre caratteristiche del programma e altre risorse."
+#: ../../include/features.php:42 ../../mod/network.php:194
+#: ../../mod/search.php:30
+msgid "Saved Searches"
+msgstr "Ricerche salvate"
 
-#: ../../mod/openid.php:24
-msgid "OpenID protocol error. No ID returned."
-msgstr "Errore protocollo OpenID. Nessun ID ricevuto."
+#: ../../include/features.php:42
+msgid "Save search terms for re-use"
+msgstr "Salva i termini cercati per riutilizzarli"
 
-#: ../../mod/openid.php:53
-msgid ""
-"Account not found and OpenID registration is not permitted on this site."
-msgstr "L'account non è stato trovato, e la registrazione via OpenID non è permessa su questo sito."
+#: ../../include/features.php:47
+msgid "Network Tabs"
+msgstr "Schede pagina Rete"
 
-#: ../../mod/openid.php:93 ../../include/auth.php:112
-#: ../../include/auth.php:175
-msgid "Login failed."
-msgstr "Accesso fallito."
+#: ../../include/features.php:48
+msgid "Network Personal Tab"
+msgstr "Scheda Personali"
 
-#: ../../mod/profile_photo.php:44
-msgid "Image uploaded but image cropping failed."
-msgstr "L'immagine è stata caricata, ma il non è stato possibile ritagliarla."
+#: ../../include/features.php:48
+msgid "Enable tab to display only Network posts that you've interacted on"
+msgstr "Abilita la scheda per mostrare solo i post a cui hai partecipato"
 
-#: ../../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
-#: ../../mod/photos.php:155 ../../mod/photos.php:731 ../../mod/photos.php:1187
-#: ../../mod/photos.php:1210 ../../include/user.php:335
-#: ../../include/user.php:342 ../../include/user.php:349
-#: ../../view/theme/diabook/theme.php:500
-msgid "Profile Photos"
-msgstr "Foto del profilo"
+#: ../../include/features.php:49
+msgid "Network New Tab"
+msgstr "Scheda Nuovi"
 
-#: ../../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 "Il ridimensionamento del'immagine [%s] è fallito."
+#: ../../include/features.php:49
+msgid "Enable tab to display only new Network posts (from the last 12 hours)"
+msgstr "Abilita la scheda per mostrare solo i post nuovi (nelle ultime 12 ore)"
 
-#: ../../mod/profile_photo.php:118
-msgid ""
-"Shift-reload the page or clear browser cache if the new photo does not "
-"display immediately."
-msgstr "Ricarica la pagina con shift+F5 o cancella la cache del browser se la nuova foto non viene mostrata immediatamente."
+#: ../../include/features.php:50
+msgid "Network Shared Links Tab"
+msgstr "Scheda Link Condivisi"
 
-#: ../../mod/profile_photo.php:128
-msgid "Unable to process image"
-msgstr "Impossibile elaborare l'immagine"
+#: ../../include/features.php:50
+msgid "Enable tab to display only Network posts with links in them"
+msgstr "Abilita la scheda per mostrare solo i post che contengono link"
 
-#: ../../mod/profile_photo.php:144 ../../mod/wall_upload.php:122
-#, php-format
-msgid "Image exceeds size limit of %d"
-msgstr "La dimensione dell'immagine supera il limite di %d"
+#: ../../include/features.php:55
+msgid "Post/Comment Tools"
+msgstr "Strumenti per messaggi/commenti"
 
-#: ../../mod/profile_photo.php:153 ../../mod/wall_upload.php:144
-#: ../../mod/photos.php:807
-msgid "Unable to process image."
-msgstr "Impossibile caricare l'immagine."
+#: ../../include/features.php:56
+msgid "Multiple Deletion"
+msgstr "Eliminazione multipla"
 
-#: ../../mod/profile_photo.php:242
-msgid "Upload File:"
-msgstr "Carica un file:"
+#: ../../include/features.php:56
+msgid "Select and delete multiple posts/comments at once"
+msgstr "Seleziona ed elimina vari messagi e commenti in una volta sola"
 
-#: ../../mod/profile_photo.php:243
-msgid "Select a profile:"
-msgstr "Seleziona un profilo:"
+#: ../../include/features.php:57
+msgid "Edit Sent Posts"
+msgstr "Modifica i post inviati"
 
-#: ../../mod/profile_photo.php:245
-msgid "Upload"
-msgstr "Carica"
+#: ../../include/features.php:57
+msgid "Edit and correct posts and comments after sending"
+msgstr "Modifica e correggi messaggi e commenti dopo averli inviati"
 
-#: ../../mod/profile_photo.php:248 ../../mod/settings.php:1062
-msgid "or"
-msgstr "o"
+#: ../../include/features.php:58
+msgid "Tagging"
+msgstr "Aggiunta tag"
 
-#: ../../mod/profile_photo.php:248
-msgid "skip this step"
-msgstr "salta questo passaggio"
+#: ../../include/features.php:58
+msgid "Ability to tag existing posts"
+msgstr "Permette di aggiungere tag ai post già esistenti"
 
-#: ../../mod/profile_photo.php:248
-msgid "select a photo from your photo albums"
-msgstr "seleziona una foto dai tuoi album"
+#: ../../include/features.php:59
+msgid "Post Categories"
+msgstr "Cateorie post"
 
-#: ../../mod/profile_photo.php:262
-msgid "Crop Image"
-msgstr "Ritaglia immagine"
+#: ../../include/features.php:59
+msgid "Add categories to your posts"
+msgstr "Aggiungi categorie ai tuoi post"
 
-#: ../../mod/profile_photo.php:263
-msgid "Please adjust the image cropping for optimum viewing."
-msgstr "Ritaglia l'imagine per una visualizzazione migliore."
+#: ../../include/features.php:60 ../../include/contact_widgets.php:104
+msgid "Saved Folders"
+msgstr "Cartelle Salvate"
 
-#: ../../mod/profile_photo.php:265
-msgid "Done Editing"
-msgstr "Finito"
+#: ../../include/features.php:60
+msgid "Ability to file posts under folders"
+msgstr "Permette di archiviare i post in cartelle"
 
-#: ../../mod/profile_photo.php:299
-msgid "Image uploaded successfully."
-msgstr "Immagine caricata con successo."
+#: ../../include/features.php:61
+msgid "Dislike Posts"
+msgstr "Non mi piace"
 
-#: ../../mod/profile_photo.php:301 ../../mod/wall_upload.php:172
-#: ../../mod/photos.php:834
-msgid "Image upload failed."
-msgstr "Caricamento immagine fallito."
+#: ../../include/features.php:61
+msgid "Ability to dislike posts/comments"
+msgstr "Permetti di inviare \"non mi piace\" ai messaggi"
 
-#: ../../mod/subthread.php:87 ../../mod/tagger.php:62 ../../mod/like.php:149
-#: ../../include/conversation.php:126 ../../include/conversation.php:254
-#: ../../include/text.php:1968 ../../include/diaspora.php:2087
-#: ../../view/theme/diabook/theme.php:471
-msgid "photo"
-msgstr "foto"
+#: ../../include/features.php:62
+msgid "Star Posts"
+msgstr "Post preferiti"
 
-#: ../../mod/subthread.php:87 ../../mod/tagger.php:62 ../../mod/like.php:149
-#: ../../mod/like.php:319 ../../include/conversation.php:121
-#: ../../include/conversation.php:130 ../../include/conversation.php:249
-#: ../../include/conversation.php:258 ../../include/diaspora.php:2087
-#: ../../view/theme/diabook/theme.php:466
-#: ../../view/theme/diabook/theme.php:475
-msgid "status"
-msgstr "stato"
+#: ../../include/features.php:62
+msgid "Ability to mark special posts with a star indicator"
+msgstr "Permette di segnare i post preferiti con una stella"
 
-#: ../../mod/subthread.php:103
-#, php-format
-msgid "%1$s is following %2$s's %3$s"
-msgstr "%1$s sta seguendo %3$s di %2$s"
+#: ../../include/features.php:63
+msgid "Mute Post Notifications"
+msgstr "Silenzia le notifiche di nuovi post"
 
-#: ../../mod/tagrm.php:41
-msgid "Tag removed"
-msgstr "Tag rimosso"
+#: ../../include/features.php:63
+msgid "Ability to mute notifications for a thread"
+msgstr "Permette di silenziare le notifiche di nuovi post in una discussione"
 
-#: ../../mod/tagrm.php:79
-msgid "Remove Item Tag"
-msgstr "Rimuovi il tag"
+#: ../../include/items.php:2330 ../../include/datetime.php:477
+#, php-format
+msgid "%s's birthday"
+msgstr "Compleanno di %s"
 
-#: ../../mod/tagrm.php:81
-msgid "Select a tag to remove: "
-msgstr "Seleziona un tag da rimuovere: "
+#: ../../include/items.php:2331 ../../include/datetime.php:478
+#, php-format
+msgid "Happy Birthday %s"
+msgstr "Buon compleanno %s"
 
-#: ../../mod/tagrm.php:93 ../../mod/delegate.php:139
-msgid "Remove"
-msgstr "Rimuovi"
+#: ../../include/items.php:4135 ../../mod/dfrn_request.php:732
+#: ../../mod/dfrn_confirm.php:753
+msgid "[Name Withheld]"
+msgstr "[Nome Nascosto]"
 
-#: ../../mod/filer.php:30 ../../include/conversation.php:1006
-#: ../../include/conversation.php:1024
-msgid "Save to Folder:"
-msgstr "Salva nella Cartella:"
+#: ../../include/items.php:4642 ../../mod/admin.php:169
+#: ../../mod/admin.php:1055 ../../mod/admin.php:1268 ../../mod/viewsrc.php:15
+#: ../../mod/notice.php:15 ../../mod/display.php:82 ../../mod/display.php:286
+#: ../../mod/display.php:505
+msgid "Item not found."
+msgstr "Elemento non trovato."
 
-#: ../../mod/filer.php:30
-msgid "- select -"
-msgstr "- seleziona -"
+#: ../../include/items.php:4681
+msgid "Do you really want to delete this item?"
+msgstr "Vuoi veramente cancellare questo elemento?"
 
-#: ../../mod/filer.php:31 ../../mod/editpost.php:109 ../../mod/notes.php:63
-#: ../../include/text.php:956
-msgid "Save"
-msgstr "Salva"
+#: ../../include/items.php:4683 ../../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:1106
+#: ../../mod/settings.php:1107 ../../mod/settings.php:1108
+#: ../../mod/settings.php:1109 ../../mod/settings.php:1110
+#: ../../mod/contacts.php:411 ../../mod/register.php:233
+#: ../../mod/dfrn_request.php:845 ../../mod/api.php:105
+#: ../../mod/suggest.php:29 ../../mod/follow.php:54 ../../mod/message.php:209
+#: ../../mod/profiles.php:661 ../../mod/profiles.php:664
+msgid "Yes"
+msgstr "Si"
 
-#: ../../mod/follow.php:27
-msgid "Contact added"
-msgstr "Contatto aggiunto"
+#: ../../include/items.php:4686 ../../include/conversation.php:1128
+#: ../../mod/settings.php:622 ../../mod/settings.php:648
+#: ../../mod/contacts.php:414 ../../mod/editpost.php:148
+#: ../../mod/dfrn_request.php:859 ../../mod/fbrowser.php:81
+#: ../../mod/fbrowser.php:116 ../../mod/suggest.php:32
+#: ../../mod/photos.php:203 ../../mod/photos.php:292 ../../mod/follow.php:65
+#: ../../mod/tagrm.php:11 ../../mod/tagrm.php:94 ../../mod/message.php:212
+msgid "Cancel"
+msgstr "Annulla"
 
-#: ../../mod/item.php:113
-msgid "Unable to locate original post."
-msgstr "Impossibile trovare il messaggio originale."
+#: ../../include/items.php:4904
+msgid "Archives"
+msgstr "Archivi"
 
-#: ../../mod/item.php:345
-msgid "Empty post discarded."
-msgstr "Messaggio vuoto scartato."
+#: ../../include/group.php:25
+msgid ""
+"A deleted group with this name was revived. Existing item permissions "
+"<strong>may</strong> apply to this group and any future members. If this is "
+"not what you intended, please create another group with a different name."
+msgstr "Un gruppo eliminato con questo nome è stato ricreato. I permessi  esistenti su un elemento <strong>possono</strong> essere applicati a questo gruppo e tutti i membri futuri. Se questo non è ciò che si intende, si prega di creare un altro gruppo con un nome diverso."
 
-#: ../../mod/item.php:484 ../../mod/wall_upload.php:169
-#: ../../mod/wall_upload.php:178 ../../mod/wall_upload.php:185
-#: ../../include/Photo.php:916 ../../include/Photo.php:931
-#: ../../include/Photo.php:938 ../../include/Photo.php:960
-#: ../../include/message.php:144
-msgid "Wall Photos"
-msgstr "Foto della bacheca"
+#: ../../include/group.php:207
+msgid "Default privacy group for new contacts"
+msgstr "Gruppo predefinito per i nuovi contatti"
 
-#: ../../mod/item.php:938
-msgid "System error. Post not saved."
-msgstr "Errore di sistema. Messaggio non salvato."
+#: ../../include/group.php:226
+msgid "Everybody"
+msgstr "Tutti"
 
-#: ../../mod/item.php:964
-#, php-format
-msgid ""
-"This message was sent to you by %s, a member of the Friendica social "
-"network."
-msgstr "Questo messaggio ti è stato inviato da %s, un membro del social network Friendica."
+#: ../../include/group.php:249
+msgid "edit"
+msgstr "modifica"
 
-#: ../../mod/item.php:966
-#, php-format
-msgid "You may visit them online at %s"
-msgstr "Puoi visitarli online su %s"
+#: ../../include/group.php:270 ../../mod/newmember.php:66
+msgid "Groups"
+msgstr "Gruppi"
 
-#: ../../mod/item.php:967
-msgid ""
-"Please contact the sender by replying to this post if you do not wish to "
-"receive these messages."
-msgstr "Contatta il mittente rispondendo a questo post se non vuoi ricevere questi messaggi."
+#: ../../include/group.php:271
+msgid "Edit group"
+msgstr "Modifica gruppo"
 
-#: ../../mod/item.php:971
-#, php-format
-msgid "%s posted an update."
-msgstr "%s ha inviato un aggiornamento."
+#: ../../include/group.php:272
+msgid "Create a new group"
+msgstr "Crea un nuovo gruppo"
 
-#: ../../mod/group.php:29
-msgid "Group created."
-msgstr "Gruppo creato."
+#: ../../include/group.php:273 ../../mod/group.php:94 ../../mod/group.php:180
+msgid "Group Name: "
+msgstr "Nome del gruppo:"
 
-#: ../../mod/group.php:35
-msgid "Could not create group."
-msgstr "Impossibile creare il gruppo."
+#: ../../include/group.php:275
+msgid "Contacts not in any group"
+msgstr "Contatti in nessun gruppo."
 
-#: ../../mod/group.php:47 ../../mod/group.php:140
-msgid "Group not found."
-msgstr "Gruppo non trovato."
+#: ../../include/group.php:277 ../../mod/network.php:195
+msgid "add"
+msgstr "aggiungi"
 
-#: ../../mod/group.php:60
-msgid "Group name changed."
-msgstr "Il nome del gruppo è cambiato."
+#: ../../include/Photo_old.php:911 ../../include/Photo_old.php:926
+#: ../../include/Photo_old.php:933 ../../include/Photo_old.php:955
+#: ../../include/Photo.php:951 ../../include/Photo.php:966
+#: ../../include/Photo.php:973 ../../include/Photo.php:995
+#: ../../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 "Foto della bacheca"
 
-#: ../../mod/group.php:87
-msgid "Save Group"
-msgstr "Salva gruppo"
+#: ../../include/dba.php:56 ../../include/dba_pdo.php:72
+#, php-format
+msgid "Cannot locate DNS info for database server '%s'"
+msgstr "Non trovo le informazioni DNS per il database server '%s'"
 
-#: ../../mod/group.php:93
-msgid "Create a group of contacts/friends."
-msgstr "Crea un gruppo di amici/contatti."
+#: ../../include/contact_widgets.php:6
+msgid "Add New Contact"
+msgstr "Aggiungi nuovo contatto"
 
-#: ../../mod/group.php:94 ../../mod/group.php:180
-msgid "Group Name: "
-msgstr "Nome del gruppo:"
+#: ../../include/contact_widgets.php:7
+msgid "Enter address or web location"
+msgstr "Inserisci posizione o indirizzo web"
 
-#: ../../mod/group.php:113
-msgid "Group removed."
-msgstr "Gruppo rimosso."
+#: ../../include/contact_widgets.php:8
+msgid "Example: bob@example.com, http://example.com/barbara"
+msgstr "Esempio: bob@example.com, http://example.com/barbara"
 
-#: ../../mod/group.php:115
-msgid "Unable to remove group."
-msgstr "Impossibile rimuovere il gruppo."
+#: ../../include/contact_widgets.php:24
+#, php-format
+msgid "%d invitation available"
+msgid_plural "%d invitations available"
+msgstr[0] "%d invito disponibile"
+msgstr[1] "%d inviti disponibili"
 
-#: ../../mod/group.php:179
-msgid "Group Editor"
-msgstr "Modifica gruppo"
+#: ../../include/contact_widgets.php:30
+msgid "Find People"
+msgstr "Trova persone"
 
-#: ../../mod/group.php:192
-msgid "Members"
-msgstr "Membri"
+#: ../../include/contact_widgets.php:31
+msgid "Enter name or interest"
+msgstr "Inserisci un nome o un interesse"
 
-#: ../../mod/apps.php:7 ../../index.php:212
-msgid "You must be logged in to use addons. "
-msgstr "Devi aver effettuato il login per usare gli addons."
+#: ../../include/contact_widgets.php:32
+msgid "Connect/Follow"
+msgstr "Connetti/segui"
 
-#: ../../mod/apps.php:11
-msgid "Applications"
-msgstr "Applicazioni"
+#: ../../include/contact_widgets.php:33
+msgid "Examples: Robert Morgenstein, Fishing"
+msgstr "Esempi: Mario Rossi, Pesca"
 
-#: ../../mod/apps.php:14
-msgid "No installed applications."
-msgstr "Nessuna applicazione installata."
+#: ../../include/contact_widgets.php:34 ../../mod/contacts.php:794
+#: ../../mod/directory.php:63
+msgid "Find"
+msgstr "Trova"
 
-#: ../../mod/dfrn_confirm.php:64 ../../mod/profiles.php:18
-#: ../../mod/profiles.php:133 ../../mod/profiles.php:179
-#: ../../mod/profiles.php:630
-msgid "Profile not found."
-msgstr "Profilo non trovato."
+#: ../../include/contact_widgets.php:37
+msgid "Random Profile"
+msgstr "Profilo causale"
 
-#: ../../mod/dfrn_confirm.php:120 ../../mod/fsuggest.php:20
-#: ../../mod/fsuggest.php:92 ../../mod/crepair.php:133
-msgid "Contact not found."
-msgstr "Contatto non trovato."
+#: ../../include/contact_widgets.php:71
+msgid "Networks"
+msgstr "Reti"
 
-#: ../../mod/dfrn_confirm.php:121
-msgid ""
-"This may occasionally happen if contact was requested by both persons and it"
-" has already been approved."
-msgstr "Questo puo' accadere occasionalmente se la richiesta di contatto era stata inviata da entrambe le persone e  già approvata."
+#: ../../include/contact_widgets.php:74
+msgid "All Networks"
+msgstr "Tutte le Reti"
 
-#: ../../mod/dfrn_confirm.php:240
-msgid "Response from remote site was not understood."
-msgstr "Errore di comunicazione con l'altro sito."
+#: ../../include/contact_widgets.php:107 ../../include/contact_widgets.php:139
+msgid "Everything"
+msgstr "Tutto"
 
-#: ../../mod/dfrn_confirm.php:249 ../../mod/dfrn_confirm.php:254
-msgid "Unexpected response from remote site: "
-msgstr "La risposta dell'altro sito non può essere gestita: "
+#: ../../include/contact_widgets.php:136
+msgid "Categories"
+msgstr "Categorie"
 
-#: ../../mod/dfrn_confirm.php:263
-msgid "Confirmation completed successfully."
-msgstr "Conferma completata con successo."
+#: ../../include/contact_widgets.php:200 ../../mod/contacts.php:509
+#, php-format
+msgid "%d contact in common"
+msgid_plural "%d contacts in common"
+msgstr[0] "%d contatto in comune"
+msgstr[1] "%d contatti in comune"
 
-#: ../../mod/dfrn_confirm.php:265 ../../mod/dfrn_confirm.php:279
-#: ../../mod/dfrn_confirm.php:286
-msgid "Remote site reported: "
-msgstr "Il sito remoto riporta: "
+#: ../../include/enotify.php:18
+msgid "Friendica Notification"
+msgstr "Notifica Friendica"
 
-#: ../../mod/dfrn_confirm.php:277
-msgid "Temporary failure. Please wait and try again."
-msgstr "Problema temporaneo. Attendi e riprova."
+#: ../../include/enotify.php:21
+msgid "Thank You,"
+msgstr "Grazie,"
 
-#: ../../mod/dfrn_confirm.php:284
-msgid "Introduction failed or was revoked."
-msgstr "La presentazione ha generato un errore o è stata revocata."
+#: ../../include/enotify.php:23
+#, php-format
+msgid "%s Administrator"
+msgstr "Amministratore %s"
 
-#: ../../mod/dfrn_confirm.php:429
-msgid "Unable to set contact photo."
-msgstr "Impossibile impostare la foto del contatto."
+#: ../../include/enotify.php:33 ../../include/delivery.php:467
+#: ../../include/notifier.php:796
+msgid "noreply"
+msgstr "nessuna risposta"
 
-#: ../../mod/dfrn_confirm.php:486 ../../include/conversation.php:172
-#: ../../include/diaspora.php:620
+#: ../../include/enotify.php:64
 #, php-format
-msgid "%1$s is now friends with %2$s"
-msgstr "%1$s e %2$s adesso sono amici"
+msgid "%s <!item_type!>"
+msgstr "%s <!item_type!>"
 
-#: ../../mod/dfrn_confirm.php:571
+#: ../../include/enotify.php:78
 #, php-format
-msgid "No user record found for '%s' "
-msgstr "Nessun utente trovato '%s'"
+msgid "[Friendica:Notify] New mail received at %s"
+msgstr "[Friendica:Notifica] Nuovo messaggio privato ricevuto su %s"
 
-#: ../../mod/dfrn_confirm.php:581
-msgid "Our site encryption key is apparently messed up."
-msgstr "La nostra chiave di criptazione del sito sembra essere corrotta."
+#: ../../include/enotify.php:80
+#, php-format
+msgid "%1$s sent you a new private message at %2$s."
+msgstr "%1$s ti ha inviato un nuovo messaggio privato su %2$s."
 
-#: ../../mod/dfrn_confirm.php:592
-msgid "Empty site URL was provided or URL could not be decrypted by us."
-msgstr "E' stato fornito un indirizzo vuoto o non possiamo decrittare l'indirizzo."
+#: ../../include/enotify.php:81
+#, php-format
+msgid "%1$s sent you %2$s."
+msgstr "%1$s ti ha inviato %2$s"
 
-#: ../../mod/dfrn_confirm.php:613
-msgid "Contact record was not found for you on our site."
-msgstr "Il contatto non è stato trovato sul nostro sito."
+#: ../../include/enotify.php:81
+msgid "a private message"
+msgstr "un messaggio privato"
 
-#: ../../mod/dfrn_confirm.php:627
+#: ../../include/enotify.php:82
 #, php-format
-msgid "Site public key not available in contact record for URL %s."
-msgstr "La chiave pubblica del sito non è disponibile per l'URL %s"
+msgid "Please visit %s to view and/or reply to your private messages."
+msgstr "Visita %s per vedere e/o rispodere ai tuoi messaggi privati."
 
-#: ../../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 "L'ID fornito dal tuo sistema è duplicato sul nostro sistema. Se riprovi dovrebbe funzionare."
+#: ../../include/enotify.php:134
+#, php-format
+msgid "%1$s commented on [url=%2$s]a %3$s[/url]"
+msgstr "%1$s ha commentato [url=%2$s]%3$s[/url]"
 
-#: ../../mod/dfrn_confirm.php:658
-msgid "Unable to set your contact credentials on our system."
-msgstr "Impossibile impostare le credenziali del tuo contatto sul nostro sistema."
+#: ../../include/enotify.php:141
+#, php-format
+msgid "%1$s commented on [url=%2$s]%3$s's %4$s[/url]"
+msgstr "%1$s ha commentato [url=%2$s]%4$s di %3$s[/url]"
 
-#: ../../mod/dfrn_confirm.php:725
-msgid "Unable to update your contact profile details on our system"
-msgstr "Impossibile aggiornare i dettagli del tuo contatto sul nostro sistema"
+#: ../../include/enotify.php:149
+#, php-format
+msgid "%1$s commented on [url=%2$s]your %3$s[/url]"
+msgstr "%1$s ha commentato un [url=%2$s]tuo %3$s[/url]"
 
-#: ../../mod/dfrn_confirm.php:752 ../../mod/dfrn_request.php:717
-#: ../../include/items.php:4008
-msgid "[Name Withheld]"
-msgstr "[Nome Nascosto]"
+#: ../../include/enotify.php:159
+#, php-format
+msgid "[Friendica:Notify] Comment to conversation #%1$d by %2$s"
+msgstr "[Friendica:Notifica] Commento di %2$s alla conversazione #%1$d"
 
-#: ../../mod/dfrn_confirm.php:797
+#: ../../include/enotify.php:160
 #, php-format
-msgid "%1$s has joined %2$s"
-msgstr "%1$s si è unito a %2$s"
+msgid "%s commented on an item/conversation you have been following."
+msgstr "%s ha commentato un elemento che stavi seguendo."
 
-#: ../../mod/profile.php:21 ../../boot.php:1458
-msgid "Requested profile is not available."
-msgstr "Profilo richiesto non disponibile."
+#: ../../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 "Visita %s per vedere e/o commentare la conversazione"
 
-#: ../../mod/profile.php:180
-msgid "Tips for New Members"
-msgstr "Consigli per i Nuovi Utenti"
+#: ../../include/enotify.php:170
+#, php-format
+msgid "[Friendica:Notify] %s posted to your profile wall"
+msgstr "[Friendica:Notifica] %s ha scritto sulla tua bacheca"
 
-#: ../../mod/videos.php:125
-msgid "No videos selected"
-msgstr "Nessun video selezionato"
+#: ../../include/enotify.php:172
+#, php-format
+msgid "%1$s posted to your profile wall at %2$s"
+msgstr "%1$s ha scritto sulla tua bacheca su %2$s"
 
-#: ../../mod/videos.php:226 ../../mod/photos.php:1031
-msgid "Access to this item is restricted."
-msgstr "Questo oggetto non è visibile a tutti."
+#: ../../include/enotify.php:174
+#, php-format
+msgid "%1$s posted to [url=%2$s]your wall[/url]"
+msgstr "%1$s ha inviato un messaggio sulla [url=%2$s]tua bacheca[/url]"
 
-#: ../../mod/videos.php:301 ../../include/text.php:1405
-msgid "View Video"
-msgstr "Guarda Video"
+#: ../../include/enotify.php:185
+#, php-format
+msgid "[Friendica:Notify] %s tagged you"
+msgstr "[Friendica:Notifica] %s ti ha taggato"
 
-#: ../../mod/videos.php:308 ../../mod/photos.php:1808
-msgid "View Album"
-msgstr "Sfoglia l'album"
+#: ../../include/enotify.php:186
+#, php-format
+msgid "%1$s tagged you at %2$s"
+msgstr "%1$s ti ha taggato su %2$s"
 
-#: ../../mod/videos.php:317
-msgid "Recent Videos"
-msgstr "Video Recenti"
+#: ../../include/enotify.php:187
+#, php-format
+msgid "%1$s [url=%2$s]tagged you[/url]."
+msgstr "%1$s [url=%2$s]ti ha taggato[/url]."
 
-#: ../../mod/videos.php:319
-msgid "Upload New Videos"
-msgstr "Carica Nuovo Video"
+#: ../../include/enotify.php:198
+#, php-format
+msgid "[Friendica:Notify] %s shared a new post"
+msgstr "[Friendica:Notifica] %s ha condiviso un nuovo messaggio"
 
-#: ../../mod/tagger.php:95 ../../include/conversation.php:266
+#: ../../include/enotify.php:199
 #, php-format
-msgid "%1$s tagged %2$s's %3$s with %4$s"
-msgstr "%1$s ha taggato %3$s di %2$s con %4$s"
+msgid "%1$s shared a new post at %2$s"
+msgstr "%1$s ha condiviso un nuovo messaggio su %2$s"
 
-#: ../../mod/fsuggest.php:63
-msgid "Friend suggestion sent."
-msgstr "Suggerimento di amicizia inviato."
+#: ../../include/enotify.php:200
+#, php-format
+msgid "%1$s [url=%2$s]shared a post[/url]."
+msgstr "%1$s [url=%2$s]ha condiviso un messaggio[/url]."
 
-#: ../../mod/fsuggest.php:97
-msgid "Suggest Friends"
-msgstr "Suggerisci amici"
+#: ../../include/enotify.php:212
+#, php-format
+msgid "[Friendica:Notify] %1$s poked you"
+msgstr "[Friendica:Notifica] %1$s ti ha stuzzicato"
 
-#: ../../mod/fsuggest.php:99
+#: ../../include/enotify.php:213
 #, php-format
-msgid "Suggest a friend for %s"
-msgstr "Suggerisci un amico a %s"
+msgid "%1$s poked you at %2$s"
+msgstr "%1$s ti ha stuzzicato su %2$s"
 
-#: ../../mod/lostpass.php:19
-msgid "No valid account found."
-msgstr "Nessun account valido trovato."
+#: ../../include/enotify.php:214
+#, php-format
+msgid "%1$s [url=%2$s]poked you[/url]."
+msgstr "%1$s [url=%2$s]ti ha stuzzicato[/url]."
 
-#: ../../mod/lostpass.php:35
-msgid "Password reset request issued. Check your email."
-msgstr "La richiesta per reimpostare la password è stata inviata. Controlla la tua email."
+#: ../../include/enotify.php:229
+#, php-format
+msgid "[Friendica:Notify] %s tagged your post"
+msgstr "[Friendica:Notifica] %s ha taggato un tuo messaggio"
 
-#: ../../mod/lostpass.php:42
+#: ../../include/enotify.php:230
 #, 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 "\nGentile %1$s,\n    abbiamo ricevuto su \"%2$s\" una richiesta di resettare la password del tuo account. Per confermare questa richiesta, selezionate il link di conferma qui sotto o incollatelo nella barra indirizzo del vostro browser.\n\nSe NON hai richiesto questa modifica, NON selezionare il link e ignora o cancella questa email.\n\nLa tua password non verrà modificata a meno che non possiamo verificare che tu abbia effettivamente richiesto la modifica."
+msgid "%1$s tagged your post at %2$s"
+msgstr "%1$s ha taggato il tuo post su %2$s"
 
-#: ../../mod/lostpass.php:53
+#: ../../include/enotify.php:231
 #, 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 "\nSegui questo link per verificare la tua identità:\n\n%1$s\n\nRiceverai in un successivo messaggio la nuova password.\nPotrai cambiarla dalla pagina \"Impostazioni\" del tuo account dopo esserti autenticato.\n\nI dettagli del tuo account sono:\n    Indirizzo del sito: %2$s\n    Nome utente: %3$s"
+msgid "%1$s tagged [url=%2$s]your post[/url]"
+msgstr "%1$s ha taggato [url=%2$s]il tuo post[/url]"
 
-#: ../../mod/lostpass.php:72
+#: ../../include/enotify.php:242
+msgid "[Friendica:Notify] Introduction received"
+msgstr "[Friendica:Notifica] Hai ricevuto una presentazione"
+
+#: ../../include/enotify.php:243
 #, php-format
-msgid "Password reset requested at %s"
-msgstr "Richiesta reimpostazione password su %s"
+msgid "You've received an introduction from '%1$s' at %2$s"
+msgstr "Hai ricevuto un'introduzione da '%1$s' su %2$s"
 
-#: ../../mod/lostpass.php:92
-msgid ""
-"Request could not be verified. (You may have previously submitted it.) "
-"Password reset failed."
-msgstr "La richiesta non può essere verificata. (Puoi averla già richiesta precendentemente). Reimpostazione password fallita."
+#: ../../include/enotify.php:244
+#, php-format
+msgid "You've received [url=%1$s]an introduction[/url] from %2$s."
+msgstr "Hai ricevuto [url=%1$s]un'introduzione[/url] da %2$s."
 
-#: ../../mod/lostpass.php:109 ../../boot.php:1280
-msgid "Password Reset"
-msgstr "Reimpostazione password"
+#: ../../include/enotify.php:247 ../../include/enotify.php:289
+#, php-format
+msgid "You may visit their profile at %s"
+msgstr "Puoi visitare il suo profilo presso %s"
 
-#: ../../mod/lostpass.php:110
-msgid "Your password has been reset as requested."
-msgstr "La tua password è stata reimpostata come richiesto."
+#: ../../include/enotify.php:249
+#, php-format
+msgid "Please visit %s to approve or reject the introduction."
+msgstr "Visita %s per approvare o rifiutare la presentazione."
 
-#: ../../mod/lostpass.php:111
-msgid "Your new password is"
-msgstr "La tua nuova password è"
+#: ../../include/enotify.php:257
+msgid "[Friendica:Notify] A new person is sharing with you"
+msgstr "[Friendica:Notifica] Una nuova persona sta condividendo con te"
 
-#: ../../mod/lostpass.php:112
-msgid "Save or copy your new password - and then"
-msgstr "Salva o copia la tua nuova password, quindi"
+#: ../../include/enotify.php:258 ../../include/enotify.php:259
+#, php-format
+msgid "%1$s is sharing with you at %2$s"
+msgstr "%1$s sta condividendo con te su %2$s"
 
-#: ../../mod/lostpass.php:113
-msgid "click here to login"
-msgstr "clicca qui per entrare"
+#: ../../include/enotify.php:265
+msgid "[Friendica:Notify] You have a new follower"
+msgstr "[Friendica:Notifica] Una nuova persona ti segue"
 
-#: ../../mod/lostpass.php:114
-msgid ""
-"Your password may be changed from the <em>Settings</em> page after "
-"successful login."
-msgstr "Puoi cambiare la tua password dalla pagina <em>Impostazioni</em> dopo aver effettuato l'accesso."
+#: ../../include/enotify.php:266 ../../include/enotify.php:267
+#, php-format
+msgid "You have a new follower at %2$s : %1$s"
+msgstr "Un nuovo utente ha iniziato a seguirti su %2$s : %1$s"
 
-#: ../../mod/lostpass.php:125
+#: ../../include/enotify.php:280
+msgid "[Friendica:Notify] Friend suggestion received"
+msgstr "[Friendica:Notifica] Hai ricevuto un suggerimento di amicizia"
+
+#: ../../include/enotify.php:281
 #, 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 "\nGentile %1$s,\n   La tua password è stata modificata come richiesto.\nSalva questa password, o sostituiscila immediatamente con qualcosa che puoi ricordare."
+msgid "You've received a friend suggestion from '%1$s' at %2$s"
+msgstr "Hai ricevuto un suggerimento di amicizia da '%1$s' su %2$s"
 
-#: ../../mod/lostpass.php:131
+#: ../../include/enotify.php:282
 #, 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 "\nI dettagli del tuo account sono:\n\n   Indirizzo del sito: %1$s\n   Nome utente: %2$s\n   Password: %3$s\n\nPuoi cambiare questa password dalla pagina \"Impostazioni\" del tuo account dopo esserti autenticato."
+"You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s."
+msgstr "Hai ricevuto [url=%1$s]un suggerimento di amicizia[/url] per %2$s su %3$s"
 
-#: ../../mod/lostpass.php:147
-#, php-format
-msgid "Your password has been changed at %s"
-msgstr "La tua password presso %s è stata cambiata"
+#: ../../include/enotify.php:287
+msgid "Name:"
+msgstr "Nome:"
 
-#: ../../mod/lostpass.php:159
-msgid "Forgot your Password?"
-msgstr "Hai dimenticato la password?"
+#: ../../include/enotify.php:288
+msgid "Photo:"
+msgstr "Foto:"
 
-#: ../../mod/lostpass.php:160
-msgid ""
-"Enter your email address and submit to have your password reset. Then check "
-"your email for further instructions."
-msgstr "Inserisci il tuo indirizzo email per reimpostare la password."
+#: ../../include/enotify.php:291
+#, php-format
+msgid "Please visit %s to approve or reject the suggestion."
+msgstr "Visita %s per approvare o rifiutare il suggerimento."
 
-#: ../../mod/lostpass.php:161
-msgid "Nickname or Email: "
-msgstr "Nome utente o email: "
+#: ../../include/enotify.php:299 ../../include/enotify.php:312
+msgid "[Friendica:Notify] Connection accepted"
+msgstr "[Friendica:Notifica] Connessione accettata"
 
-#: ../../mod/lostpass.php:162
-msgid "Reset"
-msgstr "Reimposta"
+#: ../../include/enotify.php:300 ../../include/enotify.php:313
+#, php-format
+msgid "'%1$s' has acepted your connection request at %2$s"
+msgstr "'%1$s' ha accettato la tua richiesta di connessione su %2$s"
 
-#: ../../mod/like.php:166 ../../include/conversation.php:137
-#: ../../include/diaspora.php:2103 ../../view/theme/diabook/theme.php:480
+#: ../../include/enotify.php:301 ../../include/enotify.php:314
 #, php-format
-msgid "%1$s likes %2$s's %3$s"
-msgstr "A %1$s piace %3$s di %2$s"
+msgid "%2$s has accepted your [url=%1$s]connection request[/url]."
+msgstr "%2$s ha accettato la tua [url=%1$s]richiesta di connessione[/url]"
+
+#: ../../include/enotify.php:304
+msgid ""
+"You are now mutual friends and may exchange status updates, photos, and email\n"
+"\twithout restriction."
+msgstr "Ora siete connessi reciprocamente e potete scambiarvi aggiornamenti di stato, foto e email\nsenza restrizioni"
 
-#: ../../mod/like.php:168 ../../include/conversation.php:140
+#: ../../include/enotify.php:307 ../../include/enotify.php:321
 #, php-format
-msgid "%1$s doesn't like %2$s's %3$s"
-msgstr "A %1$s non piace %3$s di %2$s"
+msgid "Please visit %s  if you wish to make any changes to this relationship."
+msgstr "Visita %s se desideri modificare questo collegamento."
 
-#: ../../mod/ping.php:240
-msgid "{0} wants to be your friend"
-msgstr "{0} vuole essere tuo amico"
+#: ../../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 "'%1$s' ha scelto di accettarti come \"fan\", il che limita alcune forme di comunicazione, come i messaggi privati, e alcune possibiltà di interazione col profilo. Se è una pagina di una comunità o di una celebrità, queste impostazioni sono state applicate automaticamente."
 
-#: ../../mod/ping.php:245
-msgid "{0} sent you a message"
-msgstr "{0} ti ha inviato un messaggio"
+#: ../../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 "'%1$s' può decidere in futuro di estendere la connessione in una reciproca o più permissiva."
 
-#: ../../mod/ping.php:250
-msgid "{0} requested registration"
-msgstr "{0} chiede la registrazione"
+#: ../../include/enotify.php:332
+msgid "[Friendica System:Notify] registration request"
+msgstr "[Friendica System:Notifica] richiesta di registrazione"
 
-#: ../../mod/ping.php:256
+#: ../../include/enotify.php:333
 #, php-format
-msgid "{0} commented %s's post"
-msgstr "{0} ha commentato il post di %s"
+msgid "You've received a registration request from '%1$s' at %2$s"
+msgstr "Hai ricevuto una richiesta di registrazione da '%1$s' su %2$s"
 
-#: ../../mod/ping.php:261
+#: ../../include/enotify.php:334
 #, php-format
-msgid "{0} liked %s's post"
-msgstr "a {0} piace il post di  %s"
+msgid "You've received a [url=%1$s]registration request[/url] from %2$s."
+msgstr "Hai ricevuto una [url=%1$s]richiesta di registrazione[/url] da %2$s."
 
-#: ../../mod/ping.php:266
+#: ../../include/enotify.php:337
 #, php-format
-msgid "{0} disliked %s's post"
-msgstr "a {0} non piace il post di %s"
+msgid "Full Name:\t%1$s\\nSite Location:\t%2$s\\nLogin Name:\t%3$s (%4$s)"
+msgstr "Nome completo: %1$s\nIndirizzo del sito: %2$s\nNome utente: %3$s (%4$s)"
 
-#: ../../mod/ping.php:271
+#: ../../include/enotify.php:340
 #, php-format
-msgid "{0} is now friends with %s"
-msgstr "{0} ora è amico di %s"
+msgid "Please visit %s to approve or reject the request."
+msgstr "Visita %s per approvare o rifiutare la richiesta."
 
-#: ../../mod/ping.php:276
-msgid "{0} posted"
-msgstr "{0} ha inviato un nuovo messaggio"
+#: ../../include/api.php:310 ../../include/api.php:321
+#: ../../include/api.php:422 ../../include/api.php:1116
+#: ../../include/api.php:1118
+msgid "User not found."
+msgstr "Utente non trovato."
 
-#: ../../mod/ping.php:281
+#: ../../include/api.php:776
 #, php-format
-msgid "{0} tagged %s's post with #%s"
-msgstr "{0} ha taggato il post di %s con #%s"
+msgid "Daily posting limit of %d posts reached. The post was rejected."
+msgstr "Limite giornaliero di %d messaggi raggiunto. Il messaggio è stato rifiutato"
 
-#: ../../mod/ping.php:287
-msgid "{0} mentioned you in a post"
-msgstr "{0} ti ha citato in un post"
+#: ../../include/api.php:795
+#, php-format
+msgid "Weekly posting limit of %d posts reached. The post was rejected."
+msgstr "Limite settimanale di %d messaggi raggiunto. Il messaggio è stato rifiutato"
 
-#: ../../mod/viewcontacts.php:41
-msgid "No contacts."
-msgstr "Nessun contatto."
+#: ../../include/api.php:814
+#, php-format
+msgid "Monthly posting limit of %d posts reached. The post was rejected."
+msgstr "Limite mensile di %d messaggi raggiunto. Il messaggio è stato rifiutato"
 
-#: ../../mod/viewcontacts.php:78 ../../include/text.php:876
-msgid "View Contacts"
-msgstr "Visualizza i contatti"
+#: ../../include/api.php:1325
+msgid "There is no status with this id."
+msgstr "Non c'è nessuno status con questo id."
 
-#: ../../mod/notifications.php:26
-msgid "Invalid request identifier."
-msgstr "L'identificativo della richiesta non è valido."
+#: ../../include/api.php:1399
+msgid "There is no conversation with this id."
+msgstr "Non c'è nessuna conversazione con questo id"
 
-#: ../../mod/notifications.php:35 ../../mod/notifications.php:165
-#: ../../mod/notifications.php:211
-msgid "Discard"
-msgstr "Scarta"
+#: ../../include/api.php:1669
+msgid "Invalid request."
+msgstr "Richiesta non valida."
 
-#: ../../mod/notifications.php:78
-msgid "System"
-msgstr "Sistema"
+#: ../../include/api.php:1680
+msgid "Invalid item."
+msgstr "Elemento non valido."
 
-#: ../../mod/notifications.php:83 ../../include/nav.php:145
-msgid "Network"
-msgstr "Rete"
+#: ../../include/api.php:1690
+msgid "Invalid action. "
+msgstr "Azione non valida."
 
-#: ../../mod/notifications.php:88 ../../mod/network.php:371
-msgid "Personal"
-msgstr "Personale"
+#: ../../include/api.php:1698
+msgid "DB error"
+msgstr "Errore database"
 
-#: ../../mod/notifications.php:93 ../../include/nav.php:105
-#: ../../include/nav.php:148 ../../view/theme/diabook/theme.php:123
-msgid "Home"
-msgstr "Home"
+#: ../../include/network.php:959
+msgid "view full size"
+msgstr "vedi a schermo intero"
 
-#: ../../mod/notifications.php:98 ../../include/nav.php:154
-msgid "Introductions"
-msgstr "Presentazioni"
+#: ../../include/Scrape.php:608
+msgid " on Last.fm"
+msgstr "su Last.fm"
 
-#: ../../mod/notifications.php:122
-msgid "Show Ignored Requests"
-msgstr "Mostra richieste ignorate"
+#: ../../include/profile_advanced.php:15 ../../mod/settings.php:1153
+msgid "Full Name:"
+msgstr "Nome completo:"
 
-#: ../../mod/notifications.php:122
-msgid "Hide Ignored Requests"
-msgstr "Nascondi richieste ignorate"
+#: ../../include/profile_advanced.php:22
+msgid "j F, Y"
+msgstr "j F Y"
 
-#: ../../mod/notifications.php:149 ../../mod/notifications.php:195
-msgid "Notification type: "
-msgstr "Tipo di notifica: "
+#: ../../include/profile_advanced.php:23
+msgid "j F"
+msgstr "j F"
 
-#: ../../mod/notifications.php:150
-msgid "Friend Suggestion"
-msgstr "Amico suggerito"
+#: ../../include/profile_advanced.php:30
+msgid "Birthday:"
+msgstr "Compleanno:"
 
-#: ../../mod/notifications.php:152
+#: ../../include/profile_advanced.php:34
+msgid "Age:"
+msgstr "Età:"
+
+#: ../../include/profile_advanced.php:43
 #, php-format
-msgid "suggested by %s"
-msgstr "sugerito da %s"
+msgid "for %1$d %2$s"
+msgstr "per %1$d %2$s"
 
-#: ../../mod/notifications.php:158 ../../mod/notifications.php:205
-msgid "Post a new friend activity"
-msgstr "Invia una attività \"è ora amico con\""
+#: ../../include/profile_advanced.php:46 ../../mod/profiles.php:714
+msgid "Sexual Preference:"
+msgstr "Preferenze sessuali:"
 
-#: ../../mod/notifications.php:158 ../../mod/notifications.php:205
-msgid "if applicable"
-msgstr "se applicabile"
+#: ../../include/profile_advanced.php:50 ../../mod/profiles.php:716
+msgid "Hometown:"
+msgstr "Paese natale:"
 
-#: ../../mod/notifications.php:161 ../../mod/notifications.php:208
-#: ../../mod/admin.php:1005
-msgid "Approve"
-msgstr "Approva"
+#: ../../include/profile_advanced.php:52
+msgid "Tags:"
+msgstr "Tag:"
 
-#: ../../mod/notifications.php:181
-msgid "Claims to be known to you: "
-msgstr "Dice di conoscerti: "
+#: ../../include/profile_advanced.php:54 ../../mod/profiles.php:717
+msgid "Political Views:"
+msgstr "Orientamento politico:"
 
-#: ../../mod/notifications.php:181
-msgid "yes"
-msgstr "si"
+#: ../../include/profile_advanced.php:56
+msgid "Religion:"
+msgstr "Religione:"
 
-#: ../../mod/notifications.php:181
-msgid "no"
-msgstr "no"
+#: ../../include/profile_advanced.php:60
+msgid "Hobbies/Interests:"
+msgstr "Hobby/Interessi:"
 
-#: ../../mod/notifications.php:188
-msgid "Approve as: "
-msgstr "Approva come: "
+#: ../../include/profile_advanced.php:62 ../../mod/profiles.php:721
+msgid "Likes:"
+msgstr "Mi piace:"
 
-#: ../../mod/notifications.php:189
-msgid "Friend"
-msgstr "Amico"
+#: ../../include/profile_advanced.php:64 ../../mod/profiles.php:722
+msgid "Dislikes:"
+msgstr "Non mi piace:"
 
-#: ../../mod/notifications.php:190
-msgid "Sharer"
-msgstr "Condivisore"
+#: ../../include/profile_advanced.php:67
+msgid "Contact information and Social Networks:"
+msgstr "Informazioni su contatti e social network:"
 
-#: ../../mod/notifications.php:190
-msgid "Fan/Admirer"
-msgstr "Fan/Ammiratore"
+#: ../../include/profile_advanced.php:69
+msgid "Musical interests:"
+msgstr "Interessi musicali:"
 
-#: ../../mod/notifications.php:196
-msgid "Friend/Connect Request"
-msgstr "Richiesta amicizia/connessione"
+#: ../../include/profile_advanced.php:71
+msgid "Books, literature:"
+msgstr "Libri, letteratura:"
 
-#: ../../mod/notifications.php:196
-msgid "New Follower"
-msgstr "Qualcuno inizia a seguirti"
+#: ../../include/profile_advanced.php:73
+msgid "Television:"
+msgstr "Televisione:"
 
-#: ../../mod/notifications.php:217
-msgid "No introductions."
-msgstr "Nessuna presentazione."
+#: ../../include/profile_advanced.php:75
+msgid "Film/dance/culture/entertainment:"
+msgstr "Film/danza/cultura/intrattenimento:"
 
-#: ../../mod/notifications.php:220 ../../include/nav.php:155
-msgid "Notifications"
-msgstr "Notifiche"
+#: ../../include/profile_advanced.php:77
+msgid "Love/Romance:"
+msgstr "Amore:"
 
-#: ../../mod/notifications.php:258 ../../mod/notifications.php:387
-#: ../../mod/notifications.php:478
-#, php-format
-msgid "%s liked %s's post"
-msgstr "a %s è piaciuto il messaggio di %s"
+#: ../../include/profile_advanced.php:79
+msgid "Work/employment:"
+msgstr "Lavoro:"
 
-#: ../../mod/notifications.php:268 ../../mod/notifications.php:397
-#: ../../mod/notifications.php:488
-#, php-format
-msgid "%s disliked %s's post"
-msgstr "a %s non è piaciuto il messaggio di %s"
+#: ../../include/profile_advanced.php:81
+msgid "School/education:"
+msgstr "Scuola:"
 
-#: ../../mod/notifications.php:283 ../../mod/notifications.php:412
-#: ../../mod/notifications.php:503
-#, php-format
-msgid "%s is now friends with %s"
-msgstr "%s è ora amico di %s"
+#: ../../include/nav.php:34 ../../mod/navigation.php:20
+msgid "Nothing new here"
+msgstr "Niente di nuovo qui"
 
-#: ../../mod/notifications.php:290 ../../mod/notifications.php:419
-#, php-format
-msgid "%s created a new post"
-msgstr "%s a creato un nuovo messaggio"
+#: ../../include/nav.php:38 ../../mod/navigation.php:24
+msgid "Clear notifications"
+msgstr "Pulisci le notifiche"
 
-#: ../../mod/notifications.php:291 ../../mod/notifications.php:420
-#: ../../mod/notifications.php:513
-#, php-format
-msgid "%s commented on %s's post"
-msgstr "%s ha commentato il messaggio di %s"
+#: ../../include/nav.php:73
+msgid "End this session"
+msgstr "Finisci questa sessione"
 
-#: ../../mod/notifications.php:306
-msgid "No more network notifications."
-msgstr "Nessuna nuova."
+#: ../../include/nav.php:79
+msgid "Your videos"
+msgstr "I tuoi video"
 
-#: ../../mod/notifications.php:310
-msgid "Network Notifications"
-msgstr "Notifiche dalla rete"
+#: ../../include/nav.php:81
+msgid "Your personal notes"
+msgstr "Le tue note personali"
 
-#: ../../mod/notifications.php:336 ../../mod/notify.php:75
-msgid "No more system notifications."
-msgstr "Nessuna nuova notifica di sistema."
+#: ../../include/nav.php:92
+msgid "Sign in"
+msgstr "Entra"
 
-#: ../../mod/notifications.php:340 ../../mod/notify.php:79
-msgid "System Notifications"
-msgstr "Notifiche di sistema"
+#: ../../include/nav.php:105
+msgid "Home Page"
+msgstr "Home Page"
 
-#: ../../mod/notifications.php:435
-msgid "No more personal notifications."
-msgstr "Nessuna nuova."
+#: ../../include/nav.php:109
+msgid "Create an account"
+msgstr "Crea un account"
 
-#: ../../mod/notifications.php:439
-msgid "Personal Notifications"
-msgstr "Notifiche personali"
+#: ../../include/nav.php:114 ../../mod/help.php:36
+msgid "Help"
+msgstr "Guida"
 
-#: ../../mod/notifications.php:520
-msgid "No more home notifications."
-msgstr "Nessuna nuova."
+#: ../../include/nav.php:114
+msgid "Help and documentation"
+msgstr "Guida e documentazione"
 
-#: ../../mod/notifications.php:524
-msgid "Home Notifications"
-msgstr "Notifiche bacheca"
+#: ../../include/nav.php:117
+msgid "Apps"
+msgstr "Applicazioni"
 
-#: ../../mod/babel.php:17
-msgid "Source (bbcode) text:"
-msgstr "Testo sorgente (bbcode):"
+#: ../../include/nav.php:117
+msgid "Addon applications, utilities, games"
+msgstr "Applicazioni, utilità e giochi aggiuntivi"
 
-#: ../../mod/babel.php:23
-msgid "Source (Diaspora) text to convert to BBcode:"
-msgstr "Testo sorgente (da Diaspora) da convertire in BBcode:"
+#: ../../include/nav.php:119 ../../include/text.php:970
+#: ../../include/text.php:971 ../../mod/search.php:99
+msgid "Search"
+msgstr "Cerca"
 
-#: ../../mod/babel.php:31
-msgid "Source input: "
-msgstr "Sorgente:"
+#: ../../include/nav.php:119
+msgid "Search site content"
+msgstr "Cerca nel contenuto del sito"
 
-#: ../../mod/babel.php:35
-msgid "bb2html (raw HTML): "
-msgstr "bb2html (HTML grezzo):"
+#: ../../include/nav.php:129
+msgid "Conversations on this site"
+msgstr "Conversazioni su questo sito"
 
-#: ../../mod/babel.php:39
-msgid "bb2html: "
-msgstr "bb2html:"
+#: ../../include/nav.php:131
+msgid "Conversations on the network"
+msgstr "Conversazioni nella rete"
 
-#: ../../mod/babel.php:43
-msgid "bb2html2bb: "
-msgstr "bb2html2bb: "
+#: ../../include/nav.php:133
+msgid "Directory"
+msgstr "Elenco"
 
-#: ../../mod/babel.php:47
-msgid "bb2md: "
-msgstr "bb2md: "
+#: ../../include/nav.php:133
+msgid "People directory"
+msgstr "Elenco delle persone"
 
-#: ../../mod/babel.php:51
-msgid "bb2md2html: "
-msgstr "bb2md2html: "
+#: ../../include/nav.php:135
+msgid "Information"
+msgstr "Informazioni"
 
-#: ../../mod/babel.php:55
-msgid "bb2dia2bb: "
-msgstr "bb2dia2bb: "
+#: ../../include/nav.php:135
+msgid "Information about this friendica instance"
+msgstr "Informazioni su questo server friendica"
 
-#: ../../mod/babel.php:59
-msgid "bb2md2html2bb: "
-msgstr "bb2md2html2bb: "
+#: ../../include/nav.php:145 ../../mod/notifications.php:83
+msgid "Network"
+msgstr "Rete"
 
-#: ../../mod/babel.php:69
-msgid "Source input (Diaspora format): "
-msgstr "Sorgente (formato Diaspora):"
+#: ../../include/nav.php:145
+msgid "Conversations from your friends"
+msgstr "Conversazioni dai tuoi amici"
 
-#: ../../mod/babel.php:74
-msgid "diaspora2bb: "
-msgstr "diaspora2bb: "
+#: ../../include/nav.php:146
+msgid "Network Reset"
+msgstr "Reset pagina Rete"
 
-#: ../../mod/navigation.php:20 ../../include/nav.php:34
-msgid "Nothing new here"
-msgstr "Niente di nuovo qui"
+#: ../../include/nav.php:146
+msgid "Load Network page with no filters"
+msgstr "Carica la pagina Rete senza nessun filtro"
 
-#: ../../mod/navigation.php:24 ../../include/nav.php:38
-msgid "Clear notifications"
-msgstr "Pulisci le notifiche"
+#: ../../include/nav.php:153 ../../mod/notifications.php:98
+msgid "Introductions"
+msgstr "Presentazioni"
 
-#: ../../mod/message.php:9 ../../include/nav.php:164
-msgid "New Message"
-msgstr "Nuovo messaggio"
+#: ../../include/nav.php:153
+msgid "Friend Requests"
+msgstr "Richieste di amicizia"
 
-#: ../../mod/message.php:63 ../../mod/wallmessage.php:56
-msgid "No recipient selected."
-msgstr "Nessun destinatario selezionato."
+#: ../../include/nav.php:156 ../../mod/notifications.php:224
+msgid "Notifications"
+msgstr "Notifiche"
 
-#: ../../mod/message.php:67
-msgid "Unable to locate contact information."
-msgstr "Impossibile trovare le informazioni del contatto."
-
-#: ../../mod/message.php:70 ../../mod/wallmessage.php:62
-msgid "Message could not be sent."
-msgstr "Il messaggio non puo' essere inviato."
-
-#: ../../mod/message.php:73 ../../mod/wallmessage.php:65
-msgid "Message collection failure."
-msgstr "Errore recuperando il messaggio."
+#: ../../include/nav.php:157
+msgid "See all notifications"
+msgstr "Vedi tutte le notifiche"
 
-#: ../../mod/message.php:76 ../../mod/wallmessage.php:68
-msgid "Message sent."
-msgstr "Messaggio inviato."
+#: ../../include/nav.php:158
+msgid "Mark all system notifications seen"
+msgstr "Segna tutte le notifiche come viste"
 
-#: ../../mod/message.php:182 ../../include/nav.php:161
+#: ../../include/nav.php:162 ../../mod/message.php:182
 msgid "Messages"
 msgstr "Messaggi"
 
-#: ../../mod/message.php:207
-msgid "Do you really want to delete this message?"
-msgstr "Vuoi veramente cancellare questo messaggio?"
+#: ../../include/nav.php:162
+msgid "Private mail"
+msgstr "Posta privata"
 
-#: ../../mod/message.php:227
-msgid "Message deleted."
-msgstr "Messaggio eliminato."
+#: ../../include/nav.php:163
+msgid "Inbox"
+msgstr "In arrivo"
 
-#: ../../mod/message.php:258
-msgid "Conversation removed."
-msgstr "Conversazione rimossa."
+#: ../../include/nav.php:164
+msgid "Outbox"
+msgstr "Inviati"
 
-#: ../../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:1002 ../../include/conversation.php:1020
-msgid "Please enter a link URL:"
-msgstr "Inserisci l'indirizzo del link:"
+#: ../../include/nav.php:165 ../../mod/message.php:9
+msgid "New Message"
+msgstr "Nuovo messaggio"
 
-#: ../../mod/message.php:319 ../../mod/wallmessage.php:142
-msgid "Send Private Message"
-msgstr "Invia un messaggio privato"
+#: ../../include/nav.php:168
+msgid "Manage"
+msgstr "Gestisci"
 
-#: ../../mod/message.php:320 ../../mod/message.php:553
-#: ../../mod/wallmessage.php:144
-msgid "To:"
-msgstr "A:"
+#: ../../include/nav.php:168
+msgid "Manage other pages"
+msgstr "Gestisci altre pagine"
 
-#: ../../mod/message.php:325 ../../mod/message.php:555
-#: ../../mod/wallmessage.php:145
-msgid "Subject:"
-msgstr "Oggetto:"
+#: ../../include/nav.php:171 ../../mod/settings.php:67
+msgid "Delegations"
+msgstr "Delegazioni"
 
-#: ../../mod/message.php:329 ../../mod/message.php:558
-#: ../../mod/wallmessage.php:151 ../../mod/invite.php:134
-msgid "Your message:"
-msgstr "Il tuo messaggio:"
+#: ../../include/nav.php:171 ../../mod/delegate.php:130
+msgid "Delegate Page Management"
+msgstr "Gestione delegati per la pagina"
 
-#: ../../mod/message.php:332 ../../mod/message.php:562
-#: ../../mod/wallmessage.php:154 ../../mod/editpost.php:110
-#: ../../include/conversation.php:1091
-msgid "Upload photo"
-msgstr "Carica foto"
+#: ../../include/nav.php:173
+msgid "Account settings"
+msgstr "Parametri account"
 
-#: ../../mod/message.php:333 ../../mod/message.php:563
-#: ../../mod/wallmessage.php:155 ../../mod/editpost.php:114
-#: ../../include/conversation.php:1095
-msgid "Insert web link"
-msgstr "Inserisci link"
+#: ../../include/nav.php:176
+msgid "Manage/Edit Profiles"
+msgstr "Gestisci/Modifica i profili"
 
-#: ../../mod/message.php:334 ../../mod/message.php:565
-#: ../../mod/content.php:499 ../../mod/content.php:883
-#: ../../mod/wallmessage.php:156 ../../mod/editpost.php:124
-#: ../../mod/photos.php:1545 ../../object/Item.php:364
-#: ../../include/conversation.php:692 ../../include/conversation.php:1109
-msgid "Please wait"
-msgstr "Attendi"
+#: ../../include/nav.php:178
+msgid "Manage/edit friends and contacts"
+msgstr "Gestisci/modifica amici e contatti"
 
-#: ../../mod/message.php:371
-msgid "No messages."
-msgstr "Nessun messaggio."
+#: ../../include/nav.php:185 ../../mod/admin.php:130
+msgid "Admin"
+msgstr "Amministrazione"
 
-#: ../../mod/message.php:378
-#, php-format
-msgid "Unknown sender - %s"
-msgstr "Mittente sconosciuto - %s"
+#: ../../include/nav.php:185
+msgid "Site setup and configuration"
+msgstr "Configurazione del sito"
 
-#: ../../mod/message.php:381
-#, php-format
-msgid "You and %s"
-msgstr "Tu e %s"
+#: ../../include/nav.php:189
+msgid "Navigation"
+msgstr "Navigazione"
 
-#: ../../mod/message.php:384
-#, php-format
-msgid "%s and You"
-msgstr "%s e Tu"
+#: ../../include/nav.php:189
+msgid "Site map"
+msgstr "Mappa del sito"
 
-#: ../../mod/message.php:405 ../../mod/message.php:546
-msgid "Delete conversation"
-msgstr "Elimina la conversazione"
+#: ../../include/plugin.php:455 ../../include/plugin.php:457
+msgid "Click here to upgrade."
+msgstr "Clicca qui per aggiornare."
 
-#: ../../mod/message.php:408
-msgid "D, d M Y - g:i A"
-msgstr "D d M Y - G:i"
+#: ../../include/plugin.php:463
+msgid "This action exceeds the limits set by your subscription plan."
+msgstr "Questa azione eccede i limiti del tuo piano di sottoscrizione."
 
-#: ../../mod/message.php:411
-#, php-format
-msgid "%d message"
-msgid_plural "%d messages"
-msgstr[0] "%d messaggio"
-msgstr[1] "%d messaggi"
+#: ../../include/plugin.php:468
+msgid "This action is not available under your subscription plan."
+msgstr "Questa azione non è disponibile nel tuo piano di sottoscrizione."
 
-#: ../../mod/message.php:450
-msgid "Message not available."
-msgstr "Messaggio non disponibile."
+#: ../../include/follow.php:27 ../../mod/dfrn_request.php:507
+msgid "Disallowed profile URL."
+msgstr "Indirizzo profilo non permesso."
 
-#: ../../mod/message.php:520
-msgid "Delete message"
-msgstr "Elimina il messaggio"
+#: ../../include/follow.php:32
+msgid "Connect URL missing."
+msgstr "URL di connessione mancante."
 
-#: ../../mod/message.php:548
+#: ../../include/follow.php:59
 msgid ""
-"No secure communications available. You <strong>may</strong> be able to "
-"respond from the sender's profile page."
-msgstr "Nessuna comunicazione sicura disponibile, <strong>Potresti</strong> essere in grado di rispondere dalla pagina del profilo del mittente."
+"This site is not configured to allow communications with other networks."
+msgstr "Questo sito non è configurato per permettere la comunicazione con altri network."
 
-#: ../../mod/message.php:552
-msgid "Send Reply"
-msgstr "Invia la risposta"
+#: ../../include/follow.php:60 ../../include/follow.php:80
+msgid "No compatible communication protocols or feeds were discovered."
+msgstr "Non sono stati trovati protocolli di comunicazione o feed compatibili."
 
-#: ../../mod/update_display.php:22 ../../mod/update_community.php:18
-#: ../../mod/update_notes.php:37 ../../mod/update_profile.php:41
-#: ../../mod/update_network.php:25
-msgid "[Embedded content - reload page to view]"
-msgstr "[Contenuto incorporato - ricarica la pagina per visualizzarlo correttamente]"
+#: ../../include/follow.php:78
+msgid "The profile address specified does not provide adequate information."
+msgstr "L'indirizzo del profilo specificato non fornisce adeguate informazioni."
 
-#: ../../mod/crepair.php:106
-msgid "Contact settings applied."
-msgstr "Contatto modificato."
+#: ../../include/follow.php:82
+msgid "An author or name was not found."
+msgstr "Non è stato trovato un nome o un autore"
 
-#: ../../mod/crepair.php:108
-msgid "Contact update failed."
-msgstr "Le modifiche al contatto non sono state salvate."
+#: ../../include/follow.php:84
+msgid "No browser URL could be matched to this address."
+msgstr "Nessun URL puo' essere associato a questo indirizzo."
 
-#: ../../mod/crepair.php:139
-msgid "Repair Contact Settings"
-msgstr "Ripara il contatto"
+#: ../../include/follow.php:86
+msgid ""
+"Unable to match @-style Identity Address with a known protocol or email "
+"contact."
+msgstr "Impossibile l'indirizzo identità con un protocollo conosciuto o con un contatto email."
 
-#: ../../mod/crepair.php:141
+#: ../../include/follow.php:87
+msgid "Use mailto: in front of address to force email check."
+msgstr "Usa \"mailto:\" davanti all'indirizzo per forzare un controllo nelle email."
+
+#: ../../include/follow.php:93
 msgid ""
-"<strong>WARNING: This is highly advanced</strong> and if you enter incorrect"
-" information your communications with this contact may stop working."
-msgstr "<strong>ATTENZIONE: Queste sono impostazioni avanzate</strong> e se inserisci informazioni errate le tue comunicazioni con questo contatto potrebbero non funzionare più"
+"The profile address specified belongs to a network which has been disabled "
+"on this site."
+msgstr "L'indirizzo del profilo specificato appartiene a un network che è stato disabilitato su questo sito."
 
-#: ../../mod/crepair.php:142
+#: ../../include/follow.php:103
 msgid ""
-"Please use your browser 'Back' button <strong>now</strong> if you are "
-"uncertain what to do on this page."
-msgstr "Usa <strong>ora</strong> il tasto 'Indietro' del tuo browser se non sei sicuro di cosa fare in questa pagina."
+"Limited profile. This person will be unable to receive direct/personal "
+"notifications from you."
+msgstr "Profilo limitato. Questa persona non sarà in grado di ricevere notifiche personali da te."
 
-#: ../../mod/crepair.php:148
-msgid "Return to contact editor"
-msgstr "Ritorna alla modifica contatto"
+#: ../../include/follow.php:205
+msgid "Unable to retrieve contact information."
+msgstr "Impossibile recuperare informazioni sul contatto."
 
-#: ../../mod/crepair.php:159 ../../mod/crepair.php:161
-msgid "No mirroring"
-msgstr "Non duplicare"
+#: ../../include/follow.php:258
+msgid "following"
+msgstr "segue"
 
-#: ../../mod/crepair.php:159
-msgid "Mirror as forwarded posting"
-msgstr "Duplica come messaggi ricondivisi"
+#: ../../include/uimport.php:94
+msgid "Error decoding account file"
+msgstr "Errore decodificando il file account"
 
-#: ../../mod/crepair.php:159 ../../mod/crepair.php:161
-msgid "Mirror as my own posting"
-msgstr "Duplica come miei messaggi"
+#: ../../include/uimport.php:100
+msgid "Error! No version data in file! This is not a Friendica account file?"
+msgstr "Errore! Nessuna informazione di versione nel file! Potrebbe non essere un file account di Friendica?"
 
-#: ../../mod/crepair.php:165 ../../mod/admin.php:1003 ../../mod/admin.php:1015
-#: ../../mod/admin.php:1016 ../../mod/admin.php:1029
-#: ../../mod/settings.php:616 ../../mod/settings.php:642
-msgid "Name"
-msgstr "Nome"
+#: ../../include/uimport.php:116 ../../include/uimport.php:127
+msgid "Error! Cannot check nickname"
+msgstr "Errore! Non posso controllare il nickname"
 
-#: ../../mod/crepair.php:166
-msgid "Account Nickname"
-msgstr "Nome utente"
+#: ../../include/uimport.php:120 ../../include/uimport.php:131
+#, php-format
+msgid "User '%s' already exists on this server!"
+msgstr "L'utente '%s' esiste già su questo server!"
 
-#: ../../mod/crepair.php:167
-msgid "@Tagname - overrides Name/Nickname"
-msgstr "@TagName - al posto del nome utente"
+#: ../../include/uimport.php:153
+msgid "User creation error"
+msgstr "Errore creando l'utente"
 
-#: ../../mod/crepair.php:168
-msgid "Account URL"
-msgstr "URL dell'utente"
+#: ../../include/uimport.php:171
+msgid "User profile creation error"
+msgstr "Errore creando il profile dell'utente"
 
-#: ../../mod/crepair.php:169
-msgid "Friend Request URL"
-msgstr "URL Richiesta Amicizia"
+#: ../../include/uimport.php:220
+#, php-format
+msgid "%d contact not imported"
+msgid_plural "%d contacts not imported"
+msgstr[0] "%d contatto non importato"
+msgstr[1] "%d contatti non importati"
 
-#: ../../mod/crepair.php:170
-msgid "Friend Confirm URL"
-msgstr "URL Conferma Amicizia"
+#: ../../include/uimport.php:290
+msgid "Done. You can now login with your username and password"
+msgstr "Fatto. Ora puoi entrare con il tuo nome utente e la tua password"
 
-#: ../../mod/crepair.php:171
-msgid "Notification Endpoint URL"
-msgstr "URL Notifiche"
+#: ../../include/event.php:13 ../../include/bb2diaspora.php:133
+#: ../../mod/localtime.php:12
+msgid "l F d, Y \\@ g:i A"
+msgstr "l d F Y \\@ G:i"
 
-#: ../../mod/crepair.php:172
-msgid "Poll/Feed URL"
-msgstr "URL Feed"
+#: ../../include/event.php:22 ../../include/bb2diaspora.php:139
+msgid "Starts:"
+msgstr "Inizia:"
 
-#: ../../mod/crepair.php:173
-msgid "New photo from this URL"
-msgstr "Nuova foto da questo URL"
-
-#: ../../mod/crepair.php:174
-msgid "Remote Self"
-msgstr "Io remoto"
-
-#: ../../mod/crepair.php:176
-msgid "Mirror postings from this contact"
-msgstr "Ripeti i messaggi di questo contatto"
-
-#: ../../mod/crepair.php:176
-msgid ""
-"Mark this contact as remote_self, this will cause friendica to repost new "
-"entries from this contact."
-msgstr "Imposta questo contatto come 'io remoto', questo farà si che friendica reinvii i nuovi messaggi da questo contatto."
-
-#: ../../mod/bookmarklet.php:12 ../../boot.php:1266 ../../include/nav.php:92
-msgid "Login"
-msgstr "Accedi"
-
-#: ../../mod/bookmarklet.php:41
-msgid "The post was created"
-msgstr ""
+#: ../../include/event.php:32 ../../include/bb2diaspora.php:147
+msgid "Finishes:"
+msgstr "Finisce:"
 
-#: ../../mod/viewsrc.php:7
-msgid "Access denied."
-msgstr "Accesso negato."
+#: ../../include/Contact.php:119
+msgid "stopped following"
+msgstr "tolto dai seguiti"
 
-#: ../../mod/dirfind.php:26
-msgid "People Search"
-msgstr "Cerca persone"
+#: ../../include/Contact.php:232 ../../include/conversation.php:881
+msgid "Poke"
+msgstr "Stuzzica"
 
-#: ../../mod/dirfind.php:60 ../../mod/match.php:65
-msgid "No matches"
-msgstr "Nessun risultato"
+#: ../../include/Contact.php:233 ../../include/conversation.php:875
+msgid "View Status"
+msgstr "Visualizza stato"
 
-#: ../../mod/fbrowser.php:25 ../../boot.php:2126 ../../include/nav.php:78
-#: ../../view/theme/diabook/theme.php:126
-msgid "Photos"
-msgstr "Foto"
+#: ../../include/Contact.php:234 ../../include/conversation.php:876
+msgid "View Profile"
+msgstr "Visualizza profilo"
 
-#: ../../mod/fbrowser.php:113
-msgid "Files"
-msgstr "File"
+#: ../../include/Contact.php:235 ../../include/conversation.php:877
+msgid "View Photos"
+msgstr "Visualizza foto"
 
-#: ../../mod/nogroup.php:59
-msgid "Contacts who are not members of a group"
-msgstr "Contatti che non sono membri di un gruppo"
+#: ../../include/Contact.php:236 ../../include/Contact.php:259
+#: ../../include/conversation.php:878
+msgid "Network Posts"
+msgstr "Post della Rete"
 
-#: ../../mod/admin.php:57
-msgid "Theme settings updated."
-msgstr "Impostazioni del tema aggiornate."
+#: ../../include/Contact.php:237 ../../include/Contact.php:259
+#: ../../include/conversation.php:879
+msgid "Edit Contact"
+msgstr "Modifica contatti"
 
-#: ../../mod/admin.php:104 ../../mod/admin.php:619
-msgid "Site"
-msgstr "Sito"
+#: ../../include/Contact.php:238
+msgid "Drop Contact"
+msgstr "Rimuovi contatto"
 
-#: ../../mod/admin.php:105 ../../mod/admin.php:998 ../../mod/admin.php:1013
-msgid "Users"
-msgstr "Utenti"
+#: ../../include/Contact.php:239 ../../include/Contact.php:259
+#: ../../include/conversation.php:880
+msgid "Send PM"
+msgstr "Invia messaggio privato"
 
-#: ../../mod/admin.php:106 ../../mod/admin.php:1102 ../../mod/admin.php:1155
-#: ../../mod/settings.php:57
-msgid "Plugins"
-msgstr "Plugin"
+#: ../../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 "\nGli sviluppatori di Friendica hanno rilasciato l'aggiornamento %s\nrecentemente, ma quando ho provato a installarlo, qualcosa è \nandato terribilmente storto.\nBisogna sistemare le cose e non posso farlo da solo.\nContatta uno sviluppatore se non puoi aiutarmi da solo. Il mio database potrebbe essere invalido."
 
-#: ../../mod/admin.php:107 ../../mod/admin.php:1323 ../../mod/admin.php:1357
-msgid "Themes"
-msgstr "Temi"
+#: ../../include/dbstructure.php:31
+#, php-format
+msgid ""
+"The error message is\n"
+"[pre]%s[/pre]"
+msgstr "Il messaggio di errore è\n[pre]%s[/pre]"
 
-#: ../../mod/admin.php:108
-msgid "DB updates"
-msgstr "Aggiornamenti Database"
+#: ../../include/dbstructure.php:152
+msgid "Errors encountered creating database tables."
+msgstr "La creazione delle tabelle del database ha generato errori."
 
-#: ../../mod/admin.php:123 ../../mod/admin.php:132 ../../mod/admin.php:1444
-msgid "Logs"
-msgstr "Log"
+#: ../../include/dbstructure.php:210
+msgid "Errors encountered performing database changes."
+msgstr "Riscontrati errori applicando le modifiche al database."
 
-#: ../../mod/admin.php:124
-msgid "probe address"
-msgstr ""
+#: ../../include/datetime.php:43 ../../include/datetime.php:45
+msgid "Miscellaneous"
+msgstr "Varie"
 
-#: ../../mod/admin.php:125
-msgid "check webfinger"
-msgstr ""
+#: ../../include/datetime.php:153 ../../include/datetime.php:290
+msgid "year"
+msgstr "anno"
 
-#: ../../mod/admin.php:130 ../../include/nav.php:184
-msgid "Admin"
-msgstr "Amministrazione"
+#: ../../include/datetime.php:158 ../../include/datetime.php:291
+msgid "month"
+msgstr "mese"
 
-#: ../../mod/admin.php:131
-msgid "Plugin Features"
-msgstr "Impostazioni Plugins"
+#: ../../include/datetime.php:163 ../../include/datetime.php:293
+msgid "day"
+msgstr "giorno"
 
-#: ../../mod/admin.php:133
-msgid "diagnostics"
-msgstr ""
+#: ../../include/datetime.php:276
+msgid "never"
+msgstr "mai"
 
-#: ../../mod/admin.php:134
-msgid "User registrations waiting for confirmation"
-msgstr "Utenti registrati in attesa di conferma"
+#: ../../include/datetime.php:282
+msgid "less than a second ago"
+msgstr "meno di un secondo fa"
 
-#: ../../mod/admin.php:193 ../../mod/admin.php:952
-msgid "Normal Account"
-msgstr "Account normale"
+#: ../../include/datetime.php:290
+msgid "years"
+msgstr "anni"
 
-#: ../../mod/admin.php:194 ../../mod/admin.php:953
-msgid "Soapbox Account"
-msgstr "Account per comunicati e annunci"
+#: ../../include/datetime.php:291
+msgid "months"
+msgstr "mesi"
 
-#: ../../mod/admin.php:195 ../../mod/admin.php:954
-msgid "Community/Celebrity Account"
-msgstr "Account per celebrità o per comunità"
+#: ../../include/datetime.php:292
+msgid "week"
+msgstr "settimana"
 
-#: ../../mod/admin.php:196 ../../mod/admin.php:955
-msgid "Automatic Friend Account"
-msgstr "Account per amicizia automatizzato"
+#: ../../include/datetime.php:292
+msgid "weeks"
+msgstr "settimane"
 
-#: ../../mod/admin.php:197
-msgid "Blog Account"
-msgstr "Account Blog"
+#: ../../include/datetime.php:293
+msgid "days"
+msgstr "giorni"
 
-#: ../../mod/admin.php:198
-msgid "Private Forum"
-msgstr "Forum Privato"
+#: ../../include/datetime.php:294
+msgid "hour"
+msgstr "ora"
 
-#: ../../mod/admin.php:217
-msgid "Message queues"
-msgstr "Code messaggi"
+#: ../../include/datetime.php:294
+msgid "hours"
+msgstr "ore"
 
-#: ../../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
-msgid "Administration"
-msgstr "Amministrazione"
+#: ../../include/datetime.php:295
+msgid "minute"
+msgstr "minuto"
 
-#: ../../mod/admin.php:223
-msgid "Summary"
-msgstr "Sommario"
+#: ../../include/datetime.php:295
+msgid "minutes"
+msgstr "minuti"
 
-#: ../../mod/admin.php:225
-msgid "Registered users"
-msgstr "Utenti registrati"
+#: ../../include/datetime.php:296
+msgid "second"
+msgstr "secondo"
 
-#: ../../mod/admin.php:227
-msgid "Pending registrations"
-msgstr "Registrazioni in attesa"
+#: ../../include/datetime.php:296
+msgid "seconds"
+msgstr "secondi"
 
-#: ../../mod/admin.php:228
-msgid "Version"
-msgstr "Versione"
+#: ../../include/datetime.php:305
+#, php-format
+msgid "%1$d %2$s ago"
+msgstr "%1$d %2$s fa"
 
-#: ../../mod/admin.php:232
-msgid "Active plugins"
-msgstr "Plugin attivi"
+#: ../../include/message.php:15 ../../include/message.php:172
+msgid "[no subject]"
+msgstr "[nessun oggetto]"
 
-#: ../../mod/admin.php:255
-msgid "Can not parse base url. Must have at least <scheme>://<domain>"
-msgstr "Impossibile analizzare l'url base. Deve avere almeno [schema]://[dominio]"
+#: ../../include/delivery.php:456 ../../include/notifier.php:786
+msgid "(no subject)"
+msgstr "(nessun oggetto)"
 
-#: ../../mod/admin.php:516
-msgid "Site settings updated."
-msgstr "Impostazioni del sito aggiornate."
+#: ../../include/contact_selectors.php:32
+msgid "Unknown | Not categorised"
+msgstr "Sconosciuto | non categorizzato"
 
-#: ../../mod/admin.php:545 ../../mod/settings.php:828
-msgid "No special theme for mobile devices"
-msgstr "Nessun tema speciale per i dispositivi mobili"
+#: ../../include/contact_selectors.php:33
+msgid "Block immediately"
+msgstr "Blocca immediatamente"
 
-#: ../../mod/admin.php:562
-msgid "No community page"
-msgstr ""
+#: ../../include/contact_selectors.php:34
+msgid "Shady, spammer, self-marketer"
+msgstr "Shady, spammer, self-marketer"
 
-#: ../../mod/admin.php:563
-msgid "Public postings from users of this site"
-msgstr ""
+#: ../../include/contact_selectors.php:35
+msgid "Known to me, but no opinion"
+msgstr "Lo conosco, ma non ho un'opinione particolare"
 
-#: ../../mod/admin.php:564
-msgid "Global community page"
-msgstr ""
+#: ../../include/contact_selectors.php:36
+msgid "OK, probably harmless"
+msgstr "E' ok, probabilmente innocuo"
 
-#: ../../mod/admin.php:570
-msgid "At post arrival"
-msgstr "All'arrivo di un messaggio"
+#: ../../include/contact_selectors.php:37
+msgid "Reputable, has my trust"
+msgstr "Rispettabile, ha la mia fiducia"
 
-#: ../../mod/admin.php:571 ../../include/contact_selectors.php:56
+#: ../../include/contact_selectors.php:56 ../../mod/admin.php:573
 msgid "Frequently"
 msgstr "Frequentemente"
 
-#: ../../mod/admin.php:572 ../../include/contact_selectors.php:57
+#: ../../include/contact_selectors.php:57 ../../mod/admin.php:574
 msgid "Hourly"
 msgstr "Ogni ora"
 
-#: ../../mod/admin.php:573 ../../include/contact_selectors.php:58
+#: ../../include/contact_selectors.php:58 ../../mod/admin.php:575
 msgid "Twice daily"
 msgstr "Due volte al dì"
 
-#: ../../mod/admin.php:574 ../../include/contact_selectors.php:59
+#: ../../include/contact_selectors.php:59 ../../mod/admin.php:576
 msgid "Daily"
 msgstr "Giornalmente"
 
-#: ../../mod/admin.php:579
-msgid "Multi user instance"
-msgstr "Istanza multi utente"
+#: ../../include/contact_selectors.php:60
+msgid "Weekly"
+msgstr "Settimanalmente"
 
-#: ../../mod/admin.php:602
-msgid "Closed"
-msgstr "Chiusa"
+#: ../../include/contact_selectors.php:61
+msgid "Monthly"
+msgstr "Mensilmente"
 
-#: ../../mod/admin.php:603
-msgid "Requires approval"
-msgstr "Richiede l'approvazione"
+#: ../../include/contact_selectors.php:76 ../../mod/dfrn_request.php:851
+msgid "Friendica"
+msgstr "Friendica"
 
-#: ../../mod/admin.php:604
-msgid "Open"
-msgstr "Aperta"
+#: ../../include/contact_selectors.php:77
+msgid "OStatus"
+msgstr "Ostatus"
 
-#: ../../mod/admin.php:608
-msgid "No SSL policy, links will track page SSL state"
-msgstr "Nessuna gestione SSL, i link seguiranno lo stato SSL della pagina"
+#: ../../include/contact_selectors.php:78
+msgid "RSS/Atom"
+msgstr "RSS / Atom"
 
-#: ../../mod/admin.php:609
-msgid "Force all links to use SSL"
-msgstr "Forza tutti i linki ad usare SSL"
+#: ../../include/contact_selectors.php:79
+#: ../../include/contact_selectors.php:86 ../../mod/admin.php:1006
+#: ../../mod/admin.php:1018 ../../mod/admin.php:1019 ../../mod/admin.php:1034
+msgid "Email"
+msgstr "Email"
 
-#: ../../mod/admin.php:610
-msgid "Self-signed certificate, use SSL for local links only (discouraged)"
-msgstr "Certificato auto-firmato, usa SSL solo per i link locali (sconsigliato)"
+#: ../../include/contact_selectors.php:80 ../../mod/settings.php:761
+#: ../../mod/dfrn_request.php:853
+msgid "Diaspora"
+msgstr "Diaspora"
 
-#: ../../mod/admin.php:620 ../../mod/admin.php:1156 ../../mod/admin.php:1358
-#: ../../mod/admin.php:1445 ../../mod/settings.php:614
-#: ../../mod/settings.php:724 ../../mod/settings.php:798
-#: ../../mod/settings.php:880 ../../mod/settings.php:1113
-msgid "Save Settings"
-msgstr "Salva Impostazioni"
+#: ../../include/contact_selectors.php:81 ../../mod/newmember.php:49
+#: ../../mod/newmember.php:51
+msgid "Facebook"
+msgstr "Facebook"
 
-#: ../../mod/admin.php:621 ../../mod/register.php:255
-msgid "Registration"
-msgstr "Registrazione"
+#: ../../include/contact_selectors.php:82
+msgid "Zot!"
+msgstr "Zot!"
 
-#: ../../mod/admin.php:622
-msgid "File upload"
-msgstr "Caricamento file"
+#: ../../include/contact_selectors.php:83
+msgid "LinkedIn"
+msgstr "LinkedIn"
 
-#: ../../mod/admin.php:623
-msgid "Policies"
-msgstr "Politiche"
+#: ../../include/contact_selectors.php:84
+msgid "XMPP/IM"
+msgstr "XMPP/IM"
 
-#: ../../mod/admin.php:624
-msgid "Advanced"
-msgstr "Avanzate"
+#: ../../include/contact_selectors.php:85
+msgid "MySpace"
+msgstr "MySpace"
 
-#: ../../mod/admin.php:625
-msgid "Performance"
-msgstr "Performance"
+#: ../../include/contact_selectors.php:87
+msgid "Google+"
+msgstr "Google+"
 
-#: ../../mod/admin.php:626
-msgid ""
-"Relocate - WARNING: advanced function. Could make this server unreachable."
-msgstr "Trasloca - ATTENZIONE: funzione avanzata! Puo' rendere questo server irraggiungibile."
+#: ../../include/contact_selectors.php:88
+msgid "pump.io"
+msgstr "pump.io"
 
-#: ../../mod/admin.php:629
-msgid "Site name"
-msgstr "Nome del sito"
+#: ../../include/contact_selectors.php:89
+msgid "Twitter"
+msgstr "Twitter"
 
-#: ../../mod/admin.php:630
-msgid "Host name"
-msgstr ""
+#: ../../include/contact_selectors.php:90
+msgid "Diaspora Connector"
+msgstr "Connettore Diaspora"
 
-#: ../../mod/admin.php:631
-msgid "Sender Email"
-msgstr ""
+#: ../../include/contact_selectors.php:91
+msgid "Statusnet"
+msgstr "Statusnet"
 
-#: ../../mod/admin.php:632
-msgid "Banner/Logo"
-msgstr "Banner/Logo"
+#: ../../include/contact_selectors.php:92
+msgid "App.net"
+msgstr "App.net"
 
-#: ../../mod/admin.php:633
-msgid "Shortcut icon"
-msgstr ""
+#: ../../include/diaspora.php:622 ../../include/conversation.php:172
+#: ../../mod/dfrn_confirm.php:487
+#, php-format
+msgid "%1$s is now friends with %2$s"
+msgstr "%1$s e %2$s adesso sono amici"
 
-#: ../../mod/admin.php:634
-msgid "Touch icon"
-msgstr ""
+#: ../../include/diaspora.php:705
+msgid "Sharing notification from Diaspora network"
+msgstr "Notifica di condivisione dal network Diaspora*"
 
-#: ../../mod/admin.php:635
-msgid "Additional Info"
-msgstr "Informazioni aggiuntive"
+#: ../../include/diaspora.php:2493
+msgid "Attachments:"
+msgstr "Allegati:"
 
-#: ../../mod/admin.php:635
-msgid ""
-"For public servers: you can add additional information here that will be "
-"listed at dir.friendica.com/siteinfo."
-msgstr "Per server pubblici: puoi aggiungere informazioni extra che verrano mostrate su dir.friendica.com/siteinfo."
+#: ../../include/conversation.php:140 ../../mod/like.php:168
+#, php-format
+msgid "%1$s doesn't like %2$s's %3$s"
+msgstr "A %1$s non piace %3$s di %2$s"
 
-#: ../../mod/admin.php:636
-msgid "System language"
-msgstr "Lingua di sistema"
+#: ../../include/conversation.php:206
+#, php-format
+msgid "%1$s poked %2$s"
+msgstr "%1$s ha stuzzicato %2$s"
 
-#: ../../mod/admin.php:637
-msgid "System theme"
-msgstr "Tema di sistema"
+#: ../../include/conversation.php:226 ../../mod/mood.php:62
+#, php-format
+msgid "%1$s is currently %2$s"
+msgstr "%1$s al momento è %2$s"
 
-#: ../../mod/admin.php:637
-msgid ""
-"Default system theme - may be over-ridden by user profiles - <a href='#' "
-"id='cnftheme'>change theme settings</a>"
-msgstr "Tema di sistema - puo' essere sovrascritto dalle impostazioni utente - <a href='#' id='cnftheme'>cambia le impostazioni del tema</a>"
+#: ../../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 ha taggato %3$s di %2$s con %4$s"
 
-#: ../../mod/admin.php:638
-msgid "Mobile system theme"
-msgstr "Tema mobile di sistema"
+#: ../../include/conversation.php:290
+msgid "post/item"
+msgstr "post/elemento"
 
-#: ../../mod/admin.php:638
-msgid "Theme for mobile devices"
-msgstr "Tema per dispositivi mobili"
+#: ../../include/conversation.php:291
+#, php-format
+msgid "%1$s marked %2$s's %3$s as favorite"
+msgstr "%1$s ha segnato il/la %3$s di %2$s come preferito"
 
-#: ../../mod/admin.php:639
-msgid "SSL link policy"
-msgstr "Gestione link SSL"
+#: ../../include/conversation.php:612 ../../object/Item.php:130
+#: ../../mod/photos.php:1653 ../../mod/content.php:437
+#: ../../mod/content.php:740
+msgid "Select"
+msgstr "Seleziona"
 
-#: ../../mod/admin.php:639
-msgid "Determines whether generated links should be forced to use SSL"
-msgstr "Determina se i link generati devono essere forzati a usare SSL"
+#: ../../include/conversation.php:613 ../../object/Item.php:131
+#: ../../mod/group.php:171 ../../mod/settings.php:684
+#: ../../mod/contacts.php:803 ../../mod/admin.php:1010
+#: ../../mod/photos.php:1654 ../../mod/content.php:438
+#: ../../mod/content.php:741
+msgid "Delete"
+msgstr "Rimuovi"
 
-#: ../../mod/admin.php:640
-msgid "Force SSL"
-msgstr ""
+#: ../../include/conversation.php:653 ../../object/Item.php:329
+#: ../../object/Item.php:330 ../../mod/content.php:471
+#: ../../mod/content.php:852 ../../mod/content.php:853
+#, php-format
+msgid "View %s's profile @ %s"
+msgstr "Vedi il profilo di %s @ %s"
 
-#: ../../mod/admin.php:640
-msgid ""
-"Force all Non-SSL requests to SSL - Attention: on some systems it could lead"
-" to endless loops."
-msgstr ""
+#: ../../include/conversation.php:665 ../../object/Item.php:319
+msgid "Categories:"
+msgstr "Categorie:"
 
-#: ../../mod/admin.php:641
-msgid "Old style 'Share'"
-msgstr "Ricondivisione vecchio stile"
+#: ../../include/conversation.php:666 ../../object/Item.php:320
+msgid "Filed under:"
+msgstr "Archiviato in:"
 
-#: ../../mod/admin.php:641
-msgid "Deactivates the bbcode element 'share' for repeating items."
-msgstr "Disattiva l'elemento bbcode 'share' con elementi ripetuti"
+#: ../../include/conversation.php:673 ../../object/Item.php:343
+#: ../../mod/content.php:481 ../../mod/content.php:864
+#, php-format
+msgid "%s from %s"
+msgstr "%s da %s"
 
-#: ../../mod/admin.php:642
-msgid "Hide help entry from navigation menu"
-msgstr "Nascondi la voce 'Guida' dal menu di navigazione"
+#: ../../include/conversation.php:689 ../../mod/content.php:497
+msgid "View in context"
+msgstr "Vedi nel contesto"
 
-#: ../../mod/admin.php:642
-msgid ""
-"Hides the menu entry for the Help pages from the navigation menu. You can "
-"still access it calling /help directly."
-msgstr "Nasconde la voce per le pagine della guida dal menu di navigazione. E' comunque possibile accedervi richiamando /help direttamente."
+#: ../../include/conversation.php:691 ../../include/conversation.php:1108
+#: ../../object/Item.php:367 ../../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
+msgid "Please wait"
+msgstr "Attendi"
 
-#: ../../mod/admin.php:643
-msgid "Single user instance"
-msgstr "Instanza a singolo utente"
+#: ../../include/conversation.php:771
+msgid "remove"
+msgstr "rimuovi"
 
-#: ../../mod/admin.php:643
-msgid "Make this instance multi-user or single-user for the named user"
-msgstr "Rendi questa istanza multi utente o a singolo utente per l'utente selezionato"
+#: ../../include/conversation.php:775
+msgid "Delete Selected Items"
+msgstr "Cancella elementi selezionati"
 
-#: ../../mod/admin.php:644
-msgid "Maximum image size"
-msgstr "Massima dimensione immagini"
+#: ../../include/conversation.php:874
+msgid "Follow Thread"
+msgstr "Segui la discussione"
 
-#: ../../mod/admin.php:644
-msgid ""
-"Maximum size in bytes of uploaded images. Default is 0, which means no "
-"limits."
-msgstr "Massima dimensione in byte delle immagini caricate. Il default è 0, cioè nessun limite."
+#: ../../include/conversation.php:943
+#, php-format
+msgid "%s likes this."
+msgstr "Piace a %s."
 
-#: ../../mod/admin.php:645
-msgid "Maximum image length"
-msgstr "Massima lunghezza immagine"
+#: ../../include/conversation.php:943
+#, php-format
+msgid "%s doesn't like this."
+msgstr "Non piace a %s."
 
-#: ../../mod/admin.php:645
-msgid ""
-"Maximum length in pixels of the longest side of uploaded images. Default is "
-"-1, which means no limits."
-msgstr "Massima lunghezza in pixel del lato più lungo delle immagini caricate. Predefinito a -1, ovvero nessun limite."
+#: ../../include/conversation.php:948
+#, php-format
+msgid "<span  %1$s>%2$d people</span> like this"
+msgstr "Piace a <span %1$s>%2$d persone</span>."
 
-#: ../../mod/admin.php:646
-msgid "JPEG image quality"
-msgstr "Qualità immagini JPEG"
+#: ../../include/conversation.php:951
+#, php-format
+msgid "<span  %1$s>%2$d people</span> don't like this"
+msgstr "Non piace a <span %1$s>%2$d persone</span>."
 
-#: ../../mod/admin.php:646
-msgid ""
-"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is "
-"100, which is full quality."
-msgstr "Le immagini JPEG caricate verranno salvate con questa qualità [0-100]. Predefinito è 100, ovvero qualità piena."
+#: ../../include/conversation.php:965
+msgid "and"
+msgstr "e"
 
-#: ../../mod/admin.php:648
-msgid "Register policy"
-msgstr "Politica di registrazione"
+#: ../../include/conversation.php:971
+#, php-format
+msgid ", and %d other people"
+msgstr "e altre %d persone"
 
-#: ../../mod/admin.php:649
-msgid "Maximum Daily Registrations"
-msgstr "Massime registrazioni giornaliere"
+#: ../../include/conversation.php:973
+#, php-format
+msgid "%s like this."
+msgstr "Piace a %s."
 
-#: ../../mod/admin.php:649
-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 "Se la registrazione è permessa, qui si definisce il massimo numero di nuovi utenti registrati da accettare giornalmente. Se la registrazione è chiusa, questa impostazione non ha effetto."
+#: ../../include/conversation.php:973
+#, php-format
+msgid "%s don't like this."
+msgstr "Non piace a %s."
 
-#: ../../mod/admin.php:650
-msgid "Register text"
-msgstr "Testo registrazione"
+#: ../../include/conversation.php:1000 ../../include/conversation.php:1018
+msgid "Visible to <strong>everybody</strong>"
+msgstr "Visibile a <strong>tutti</strong>"
 
-#: ../../mod/admin.php:650
-msgid "Will be displayed prominently on the registration page."
-msgstr "Sarà mostrato ben visibile nella pagina di registrazione."
+#: ../../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 "Inserisci l'indirizzo del link:"
 
-#: ../../mod/admin.php:651
-msgid "Accounts abandoned after x days"
-msgstr "Account abbandonati dopo x giorni"
+#: ../../include/conversation.php:1002 ../../include/conversation.php:1020
+msgid "Please enter a video link/URL:"
+msgstr "Inserisci un collegamento video / URL:"
 
-#: ../../mod/admin.php:651
-msgid ""
-"Will not waste system resources polling external sites for abandonded "
-"accounts. Enter 0 for no time limit."
-msgstr "Non spreca risorse di sistema controllando siti esterni per gli account abbandonati. Immettere 0 per nessun limite di tempo."
+#: ../../include/conversation.php:1003 ../../include/conversation.php:1021
+msgid "Please enter an audio link/URL:"
+msgstr "Inserisci un collegamento audio / URL:"
 
-#: ../../mod/admin.php:652
-msgid "Allowed friend domains"
-msgstr "Domini amici consentiti"
+#: ../../include/conversation.php:1004 ../../include/conversation.php:1022
+msgid "Tag term:"
+msgstr "Tag:"
 
-#: ../../mod/admin.php:652
-msgid ""
-"Comma separated list of domains which are allowed to establish friendships "
-"with this site. Wildcards are accepted. Empty to allow any domains"
-msgstr "Elenco separato da virglola dei domini che possono stabilire amicizie con questo sito. Sono accettati caratteri jolly. Lascalo vuoto per accettare qualsiasi dominio."
+#: ../../include/conversation.php:1005 ../../include/conversation.php:1023
+#: ../../mod/filer.php:30
+msgid "Save to Folder:"
+msgstr "Salva nella Cartella:"
 
-#: ../../mod/admin.php:653
-msgid "Allowed email domains"
-msgstr "Domini email consentiti"
+#: ../../include/conversation.php:1006 ../../include/conversation.php:1024
+msgid "Where are you right now?"
+msgstr "Dove sei ora?"
 
-#: ../../mod/admin.php:653
-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 "Elenco separato da virgola dei domini permessi come indirizzi email in fase di registrazione a questo sito. Sono accettati caratteri jolly. Lascalo vuoto per accettare qualsiasi dominio."
+#: ../../include/conversation.php:1007
+msgid "Delete item(s)?"
+msgstr "Cancellare questo elemento/i?"
 
-#: ../../mod/admin.php:654
-msgid "Block public"
-msgstr "Blocca pagine pubbliche"
+#: ../../include/conversation.php:1050
+msgid "Post to Email"
+msgstr "Invia a email"
 
-#: ../../mod/admin.php:654
-msgid ""
-"Check to block public access to all otherwise public personal pages on this "
-"site unless you are currently logged in."
-msgstr "Seleziona per bloccare l'accesso pubblico a tutte le pagine personali di questo sito, a meno di essere loggato."
+#: ../../include/conversation.php:1055
+#, php-format
+msgid "Connectors disabled, since \"%s\" is enabled."
+msgstr "Connettore disabilitato, dato che \"%s\" è abilitato."
 
-#: ../../mod/admin.php:655
-msgid "Force publish"
-msgstr "Forza publicazione"
+#: ../../include/conversation.php:1056 ../../mod/settings.php:1053
+msgid "Hide your profile details from unknown viewers?"
+msgstr "Nascondi i dettagli del tuo profilo ai visitatori sconosciuti?"
 
-#: ../../mod/admin.php:655
-msgid ""
-"Check to force all profiles on this site to be listed in the site directory."
-msgstr "Seleziona per forzare tutti i profili di questo sito ad essere compresi  nell'elenco di questo sito."
+#: ../../include/conversation.php:1089 ../../mod/photos.php:1544
+msgid "Share"
+msgstr "Condividi"
 
-#: ../../mod/admin.php:656
-msgid "Global directory update URL"
-msgstr "URL aggiornamento Elenco Globale"
+#: ../../include/conversation.php:1090 ../../mod/wallmessage.php:154
+#: ../../mod/editpost.php:110 ../../mod/message.php:332
+#: ../../mod/message.php:562
+msgid "Upload photo"
+msgstr "Carica foto"
 
-#: ../../mod/admin.php:656
-msgid ""
-"URL to update the global directory. If this is not set, the global directory"
-" is completely unavailable to the application."
-msgstr "URL dell'elenco globale. Se vuoto, l'elenco globale sarà completamente disabilitato."
+#: ../../include/conversation.php:1091 ../../mod/editpost.php:111
+msgid "upload photo"
+msgstr "carica foto"
 
-#: ../../mod/admin.php:657
-msgid "Allow threaded items"
-msgstr "Permetti commenti nidificati"
+#: ../../include/conversation.php:1092 ../../mod/editpost.php:112
+msgid "Attach file"
+msgstr "Allega file"
 
-#: ../../mod/admin.php:657
-msgid "Allow infinite level threading for items on this site."
-msgstr "Permette un infinito livello di nidificazione dei commenti su questo sito."
+#: ../../include/conversation.php:1093 ../../mod/editpost.php:113
+msgid "attach file"
+msgstr "allega file"
 
-#: ../../mod/admin.php:658
-msgid "Private posts by default for new users"
-msgstr "Post privati di default per i nuovi utenti"
+#: ../../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 "Inserisci link"
 
-#: ../../mod/admin.php:658
-msgid ""
-"Set default post permissions for all new members to the default privacy "
-"group rather than public."
-msgstr "Imposta i permessi predefiniti dei post per tutti i nuovi utenti come privati per il gruppo predefinito, invece che pubblici."
+#: ../../include/conversation.php:1095 ../../mod/editpost.php:115
+msgid "web link"
+msgstr "link web"
 
-#: ../../mod/admin.php:659
-msgid "Don't include post content in email notifications"
-msgstr "Non includere il contenuto dei post nelle notifiche via email"
+#: ../../include/conversation.php:1096 ../../mod/editpost.php:116
+msgid "Insert video link"
+msgstr "Inserire collegamento video"
 
-#: ../../mod/admin.php:659
-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 "Non include il contenuti del post/commento/messaggio privato/etc. nelle notifiche email che sono inviate da questo sito, per privacy"
+#: ../../include/conversation.php:1097 ../../mod/editpost.php:117
+msgid "video link"
+msgstr "link video"
 
-#: ../../mod/admin.php:660
-msgid "Disallow public access to addons listed in the apps menu."
-msgstr "Disabilita l'accesso pubblico ai plugin raccolti nel menu apps."
+#: ../../include/conversation.php:1098 ../../mod/editpost.php:118
+msgid "Insert audio link"
+msgstr "Inserisci collegamento audio"
 
-#: ../../mod/admin.php:660
-msgid ""
-"Checking this box will restrict addons listed in the apps menu to members "
-"only."
-msgstr "Selezionando questo box si limiterà ai soli membri l'accesso agli addon nel menu applicazioni"
+#: ../../include/conversation.php:1099 ../../mod/editpost.php:119
+msgid "audio link"
+msgstr "link audio"
 
-#: ../../mod/admin.php:661
-msgid "Don't embed private images in posts"
-msgstr "Non inglobare immagini private nei post"
+#: ../../include/conversation.php:1100 ../../mod/editpost.php:120
+msgid "Set your location"
+msgstr "La tua posizione"
 
-#: ../../mod/admin.php:661
-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 "
-"photos will have to authenticate and load each image, which may take a "
-"while."
-msgstr "Non sostituire le foto locali nei post con una copia incorporata dell'immagine. Questo significa che i contatti che riceveranno i post contenenti foto private dovranno autenticarsi e caricare ogni immagine, cosa che puo' richiedere un po' di tempo."
+#: ../../include/conversation.php:1101 ../../mod/editpost.php:121
+msgid "set location"
+msgstr "posizione"
 
-#: ../../mod/admin.php:662
-msgid "Allow Users to set remote_self"
-msgstr "Permetti agli utenti di impostare 'io remoto'"
+#: ../../include/conversation.php:1102 ../../mod/editpost.php:122
+msgid "Clear browser location"
+msgstr "Rimuovi la localizzazione data dal browser"
 
-#: ../../mod/admin.php:662
-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 "Selezionando questo, a tutti gli utenti sarà permesso di impostare qualsiasi contatto come 'io remoto' nella pagina di modifica del contatto. Impostare questa opzione fa si che tutti i messaggi di quel contatto vengano ripetuti nello stream del'utente."
+#: ../../include/conversation.php:1103 ../../mod/editpost.php:123
+msgid "clear location"
+msgstr "canc. pos."
 
-#: ../../mod/admin.php:663
-msgid "Block multiple registrations"
-msgstr "Blocca registrazioni multiple"
+#: ../../include/conversation.php:1105 ../../mod/editpost.php:137
+msgid "Set title"
+msgstr "Scegli un titolo"
 
-#: ../../mod/admin.php:663
-msgid "Disallow users to register additional accounts for use as pages."
-msgstr "Non permette all'utente di registrare account extra da usare come pagine."
+#: ../../include/conversation.php:1107 ../../mod/editpost.php:139
+msgid "Categories (comma-separated list)"
+msgstr "Categorie (lista separata da virgola)"
 
-#: ../../mod/admin.php:664
-msgid "OpenID support"
-msgstr "Supporto OpenID"
+#: ../../include/conversation.php:1109 ../../mod/editpost.php:125
+msgid "Permission settings"
+msgstr "Impostazioni permessi"
 
-#: ../../mod/admin.php:664
-msgid "OpenID support for registration and logins."
-msgstr "Supporta OpenID per la registrazione e il login"
+#: ../../include/conversation.php:1110
+msgid "permissions"
+msgstr "permessi"
 
-#: ../../mod/admin.php:665
-msgid "Fullname check"
-msgstr "Controllo nome completo"
+#: ../../include/conversation.php:1118 ../../mod/editpost.php:133
+msgid "CC: email addresses"
+msgstr "CC: indirizzi email"
 
-#: ../../mod/admin.php:665
-msgid ""
-"Force users to register with a space between firstname and lastname in Full "
-"name, as an antispam measure"
-msgstr "Forza gli utenti a registrarsi con uno spazio tra il nome e il cognome in \"Nome completo\", come misura antispam"
+#: ../../include/conversation.php:1119 ../../mod/editpost.php:134
+msgid "Public post"
+msgstr "Messaggio pubblico"
 
-#: ../../mod/admin.php:666
-msgid "UTF-8 Regular expressions"
-msgstr "Espressioni regolari UTF-8"
+#: ../../include/conversation.php:1121 ../../mod/editpost.php:140
+msgid "Example: bob@example.com, mary@example.com"
+msgstr "Esempio: bob@example.com, mary@example.com"
 
-#: ../../mod/admin.php:666
-msgid "Use PHP UTF8 regular expressions"
-msgstr "Usa le espressioni regolari PHP in UTF8"
+#: ../../include/conversation.php:1125 ../../object/Item.php:690
+#: ../../mod/editpost.php:145 ../../mod/photos.php:1566
+#: ../../mod/photos.php:1610 ../../mod/photos.php:1698
+#: ../../mod/events.php:489 ../../mod/content.php:719
+msgid "Preview"
+msgstr "Anteprima"
 
-#: ../../mod/admin.php:667
-msgid "Community Page Style"
-msgstr ""
+#: ../../include/conversation.php:1134
+msgid "Post to Groups"
+msgstr "Invia ai Gruppi"
 
-#: ../../mod/admin.php:667
-msgid ""
-"Type of community page to show. 'Global community' shows every public "
-"posting from an open distributed network that arrived on this server."
-msgstr ""
+#: ../../include/conversation.php:1135
+msgid "Post to Contacts"
+msgstr "Invia ai Contatti"
 
-#: ../../mod/admin.php:668
-msgid "Posts per user on community page"
-msgstr ""
+#: ../../include/conversation.php:1136
+msgid "Private post"
+msgstr "Post privato"
 
-#: ../../mod/admin.php:668
-msgid ""
-"The maximum number of posts per user on the community page. (Not valid for "
-"'Global Community')"
-msgstr ""
+#: ../../include/text.php:299
+msgid "newer"
+msgstr "nuovi"
 
-#: ../../mod/admin.php:669
-msgid "Enable OStatus support"
-msgstr "Abilita supporto OStatus"
+#: ../../include/text.php:301
+msgid "older"
+msgstr "vecchi"
 
-#: ../../mod/admin.php:669
-msgid ""
-"Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All "
-"communications in OStatus are public, so privacy warnings will be "
-"occasionally displayed."
-msgstr "Fornisce la compatibilità integrata a OStatus (StatusNet, Gnu Social, etc.). Tutte le comunicazioni su OStatus sono pubbliche, quindi un avviso di privacy verrà mostrato occasionalmente."
+#: ../../include/text.php:306
+msgid "prev"
+msgstr "prec"
 
-#: ../../mod/admin.php:670
-msgid "OStatus conversation completion interval"
-msgstr "Intervallo completamento conversazioni OStatus"
+#: ../../include/text.php:308
+msgid "first"
+msgstr "primo"
 
-#: ../../mod/admin.php:670
-msgid ""
-"How often shall the poller check for new entries in OStatus conversations? "
-"This can be a very ressource task."
-msgstr "quanto spesso il poller deve controllare se esistono nuovi commenti in una conversazione OStatus? Questo è un lavoro che puo' richiedere molte risorse."
+#: ../../include/text.php:340
+msgid "last"
+msgstr "ultimo"
 
-#: ../../mod/admin.php:671
-msgid "Enable Diaspora support"
-msgstr "Abilita il supporto a Diaspora"
+#: ../../include/text.php:343
+msgid "next"
+msgstr "succ"
 
-#: ../../mod/admin.php:671
-msgid "Provide built-in Diaspora network compatibility."
-msgstr "Fornisce compatibilità con il network Diaspora."
+#: ../../include/text.php:398
+msgid "Loading more entries..."
+msgstr "Carico più elementi..."
 
-#: ../../mod/admin.php:672
-msgid "Only allow Friendica contacts"
-msgstr "Permetti solo contatti Friendica"
+#: ../../include/text.php:399
+msgid "The end"
+msgstr "Fine"
 
-#: ../../mod/admin.php:672
-msgid ""
-"All contacts must use Friendica protocols. All other built-in communication "
-"protocols disabled."
-msgstr "Tutti i contatti devono usare il protocollo di Friendica. Tutti gli altri protocolli sono disabilitati."
+#: ../../include/text.php:872
+msgid "No contacts"
+msgstr "Nessun contatto"
 
-#: ../../mod/admin.php:673
-msgid "Verify SSL"
-msgstr "Verifica SSL"
+#: ../../include/text.php:881
+#, php-format
+msgid "%d Contact"
+msgid_plural "%d Contacts"
+msgstr[0] "%d contatto"
+msgstr[1] "%d contatti"
 
-#: ../../mod/admin.php:673
-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 "Se vuoi, puoi abilitare il controllo rigoroso dei certificati.Questo significa che non potrai collegarti (del tutto) con siti con certificati SSL auto-firmati."
+#: ../../include/text.php:893 ../../mod/viewcontacts.php:78
+msgid "View Contacts"
+msgstr "Visualizza i contatti"
 
-#: ../../mod/admin.php:674
-msgid "Proxy user"
-msgstr "Utente Proxy"
+#: ../../include/text.php:973 ../../mod/editpost.php:109
+#: ../../mod/notes.php:63 ../../mod/filer.php:31
+msgid "Save"
+msgstr "Salva"
 
-#: ../../mod/admin.php:675
-msgid "Proxy URL"
-msgstr "URL Proxy"
+#: ../../include/text.php:1022
+msgid "poke"
+msgstr "stuzzica"
 
-#: ../../mod/admin.php:676
-msgid "Network timeout"
-msgstr "Timeout rete"
+#: ../../include/text.php:1022
+msgid "poked"
+msgstr "ha stuzzicato"
 
-#: ../../mod/admin.php:676
-msgid "Value is in seconds. Set to 0 for unlimited (not recommended)."
-msgstr "Valore in secondi. Imposta a 0 per illimitato (non raccomandato)."
+#: ../../include/text.php:1023
+msgid "ping"
+msgstr "invia un ping"
 
-#: ../../mod/admin.php:677
-msgid "Delivery interval"
-msgstr "Intervallo di invio"
+#: ../../include/text.php:1023
+msgid "pinged"
+msgstr "ha inviato un ping"
 
-#: ../../mod/admin.php:677
-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 "Ritarda il processo di invio in background  di n secondi per ridurre il carico di sistema. Raccomandato:  4-5 per host condivisit, 2-3 per VPS. 0-1 per grandi server dedicati."
+#: ../../include/text.php:1024
+msgid "prod"
+msgstr "pungola"
 
-#: ../../mod/admin.php:678
-msgid "Poll interval"
-msgstr "Intervallo di poll"
+#: ../../include/text.php:1024
+msgid "prodded"
+msgstr "ha pungolato"
 
-#: ../../mod/admin.php:678
-msgid ""
-"Delay background polling processes by this many seconds to reduce system "
-"load. If 0, use delivery interval."
-msgstr "Ritarda il processo di poll in background di n secondi per ridurre il carico di sistema. Se 0, usa l'intervallo di invio."
+#: ../../include/text.php:1025
+msgid "slap"
+msgstr "schiaffeggia"
 
-#: ../../mod/admin.php:679
-msgid "Maximum Load Average"
-msgstr "Massimo carico medio"
+#: ../../include/text.php:1025
+msgid "slapped"
+msgstr "ha schiaffeggiato"
 
-#: ../../mod/admin.php:679
-msgid ""
-"Maximum system load before delivery and poll processes are deferred - "
-"default 50."
-msgstr "Massimo carico di sistema prima che i processi di invio e di poll siano ritardati. Predefinito a 50."
+#: ../../include/text.php:1026
+msgid "finger"
+msgstr "tocca"
 
-#: ../../mod/admin.php:681
-msgid "Use MySQL full text engine"
-msgstr "Usa il motore MySQL full text"
+#: ../../include/text.php:1026
+msgid "fingered"
+msgstr "ha toccato"
 
-#: ../../mod/admin.php:681
-msgid ""
-"Activates the full text engine. Speeds up search - but can only search for "
-"four and more characters."
-msgstr "Attiva il motore full text. Velocizza la ricerca, ma puo' cercare solo per quattro o più caratteri."
+#: ../../include/text.php:1027
+msgid "rebuff"
+msgstr "respingi"
 
-#: ../../mod/admin.php:682
-msgid "Suppress Language"
-msgstr "Disattiva lingua"
+#: ../../include/text.php:1027
+msgid "rebuffed"
+msgstr "ha respinto"
 
-#: ../../mod/admin.php:682
-msgid "Suppress language information in meta information about a posting."
-msgstr "Disattiva le informazioni sulla lingua nei meta di un post."
+#: ../../include/text.php:1041
+msgid "happy"
+msgstr "felice"
 
-#: ../../mod/admin.php:683
-msgid "Suppress Tags"
-msgstr ""
+#: ../../include/text.php:1042
+msgid "sad"
+msgstr "triste"
 
-#: ../../mod/admin.php:683
-msgid "Suppress showing a list of hashtags at the end of the posting."
-msgstr ""
+#: ../../include/text.php:1043
+msgid "mellow"
+msgstr "rilassato"
 
-#: ../../mod/admin.php:684
-msgid "Path to item cache"
-msgstr "Percorso cache elementi"
+#: ../../include/text.php:1044
+msgid "tired"
+msgstr "stanco"
 
-#: ../../mod/admin.php:685
-msgid "Cache duration in seconds"
-msgstr "Durata della cache in secondi"
+#: ../../include/text.php:1045
+msgid "perky"
+msgstr "vivace"
 
-#: ../../mod/admin.php:685
-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 "Quanto a lungo devono essere mantenuti i file di cache? Il valore predefinito è 86400 secondi (un giorno). Per disabilitare la cache, imposta il valore a -1."
+#: ../../include/text.php:1046
+msgid "angry"
+msgstr "arrabbiato"
 
-#: ../../mod/admin.php:686
-msgid "Maximum numbers of comments per post"
-msgstr "Numero massimo di commenti per post"
+#: ../../include/text.php:1047
+msgid "stupified"
+msgstr "stupefatto"
 
-#: ../../mod/admin.php:686
-msgid "How much comments should be shown for each post? Default value is 100."
-msgstr "Quanti commenti devono essere mostrati per ogni post? Default : 100."
+#: ../../include/text.php:1048
+msgid "puzzled"
+msgstr "confuso"
 
-#: ../../mod/admin.php:687
-msgid "Path for lock file"
-msgstr "Percorso al file di lock"
+#: ../../include/text.php:1049
+msgid "interested"
+msgstr "interessato"
 
-#: ../../mod/admin.php:688
-msgid "Temp path"
-msgstr "Percorso file temporanei"
+#: ../../include/text.php:1050
+msgid "bitter"
+msgstr "risentito"
 
-#: ../../mod/admin.php:689
-msgid "Base path to installation"
-msgstr "Percorso base all'installazione"
+#: ../../include/text.php:1051
+msgid "cheerful"
+msgstr "giocoso"
 
-#: ../../mod/admin.php:690
-msgid "Disable picture proxy"
-msgstr "Disabilita il proxy immagini"
+#: ../../include/text.php:1052
+msgid "alive"
+msgstr "vivo"
 
-#: ../../mod/admin.php:690
-msgid ""
-"The picture proxy increases performance and privacy. It shouldn't be used on"
-" systems with very low bandwith."
-msgstr "Il proxy immagini aumenta le performace e la privacy. Non dovrebbe essere usato su server con poca banda disponibile."
+#: ../../include/text.php:1053
+msgid "annoyed"
+msgstr "annoiato"
 
-#: ../../mod/admin.php:691
-msgid "Enable old style pager"
-msgstr ""
+#: ../../include/text.php:1054
+msgid "anxious"
+msgstr "ansioso"
 
-#: ../../mod/admin.php:691
-msgid ""
-"The old style pager has page numbers but slows down massively the page "
-"speed."
-msgstr ""
+#: ../../include/text.php:1055
+msgid "cranky"
+msgstr "irritabile"
 
-#: ../../mod/admin.php:692
-msgid "Only search in tags"
-msgstr ""
+#: ../../include/text.php:1056
+msgid "disturbed"
+msgstr "disturbato"
 
-#: ../../mod/admin.php:692
-msgid "On large systems the text search can slow down the system extremely."
-msgstr ""
+#: ../../include/text.php:1057
+msgid "frustrated"
+msgstr "frustato"
 
-#: ../../mod/admin.php:694
-msgid "New base url"
-msgstr "Nuovo url base"
+#: ../../include/text.php:1058
+msgid "motivated"
+msgstr "motivato"
 
-#: ../../mod/admin.php:711
-msgid "Update has been marked successful"
-msgstr "L'aggiornamento è stato segnato come  di successo"
+#: ../../include/text.php:1059
+msgid "relaxed"
+msgstr "rilassato"
 
-#: ../../mod/admin.php:719
-#, php-format
-msgid "Database structure update %s was successfully applied."
-msgstr "Aggiornamento struttura database %s applicata con successo."
+#: ../../include/text.php:1060
+msgid "surprised"
+msgstr "sorpreso"
 
-#: ../../mod/admin.php:722
-#, php-format
-msgid "Executing of database structure update %s failed with error: %s"
-msgstr "Aggiornamento struttura database %s fallita con errore: %s"
+#: ../../include/text.php:1230
+msgid "Monday"
+msgstr "Lunedì"
 
-#: ../../mod/admin.php:734
-#, php-format
-msgid "Executing %s failed with error: %s"
-msgstr "Esecuzione di %s fallita con errore: %s"
+#: ../../include/text.php:1230
+msgid "Tuesday"
+msgstr "Martedì"
 
-#: ../../mod/admin.php:737
-#, php-format
-msgid "Update %s was successfully applied."
-msgstr "L'aggiornamento %s è stato applicato con successo"
+#: ../../include/text.php:1230
+msgid "Wednesday"
+msgstr "Mercoledì"
 
-#: ../../mod/admin.php:741
-#, php-format
-msgid "Update %s did not return a status. Unknown if it succeeded."
-msgstr "L'aggiornamento %s non ha riportato uno stato. Non so se è andato a buon fine."
+#: ../../include/text.php:1230
+msgid "Thursday"
+msgstr "Giovedì"
 
-#: ../../mod/admin.php:743
-#, php-format
-msgid "There was no additional update function %s that needed to be called."
-msgstr "Non ci sono altre funzioni di aggiornamento %s da richiamare."
+#: ../../include/text.php:1230
+msgid "Friday"
+msgstr "Venerdì"
 
-#: ../../mod/admin.php:762
-msgid "No failed updates."
-msgstr "Nessun aggiornamento fallito."
+#: ../../include/text.php:1230
+msgid "Saturday"
+msgstr "Sabato"
 
-#: ../../mod/admin.php:763
-msgid "Check database structure"
-msgstr "Controlla struttura database"
-
-#: ../../mod/admin.php:768
-msgid "Failed Updates"
-msgstr "Aggiornamenti falliti"
-
-#: ../../mod/admin.php:769
-msgid ""
-"This does not include updates prior to 1139, which did not return a status."
-msgstr "Questo non include gli aggiornamenti prima del 1139, che non ritornano lo stato."
+#: ../../include/text.php:1230
+msgid "Sunday"
+msgstr "Domenica"
 
-#: ../../mod/admin.php:770
-msgid "Mark success (if update was manually applied)"
-msgstr "Segna completato (se l'update è stato applicato manualmente)"
+#: ../../include/text.php:1234
+msgid "January"
+msgstr "Gennaio"
 
-#: ../../mod/admin.php:771
-msgid "Attempt to execute this update step automatically"
-msgstr "Cerco di eseguire questo aggiornamento in automatico"
+#: ../../include/text.php:1234
+msgid "February"
+msgstr "Febbraio"
 
-#: ../../mod/admin.php:803
-#, php-format
-msgid ""
-"\n"
-"\t\t\tDear %1$s,\n"
-"\t\t\t\tthe administrator of %2$s has set up an account for you."
-msgstr "\nGentile %1$s,\n    l'amministratore di %2$s ha impostato un account per te."
+#: ../../include/text.php:1234
+msgid "March"
+msgstr "Marzo"
 
-#: ../../mod/admin.php:806
-#, php-format
-msgid ""
-"\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."
-msgstr "\nI dettagli del tuo utente sono:\n    Indirizzo del sito: %1$s\n    Nome utente: %2$s\n    Password: %3$s\n\nPuoi cambiare la tua password dalla pagina delle impostazioni del tuo account dopo esserti autenticato.\n\nPer favore, prenditi qualche momento per esaminare tutte le impostazioni presenti.\n\nPotresti voler aggiungere qualche informazione di base al tuo profilo predefinito (nella pagina \"Profili\"), così che le altre persone possano trovarti più facilmente.\n\nTi raccomandiamo di inserire il tuo nome completo, aggiungere una foto, aggiungere qualche parola chiave del profilo (molto utili per trovare nuovi contatti), e magari in quale nazione vivi, se non vuoi essere più specifico di così.\n\nNoi rispettiamo appieno la tua privacy, e nessuna di queste informazioni è necessaria o obbligatoria.\nSe sei nuovo e non conosci nessuno qui, possono aiutarti a trovare qualche nuovo e interessante contatto.\n\nGrazie e benvenuto su %4$s"
+#: ../../include/text.php:1234
+msgid "April"
+msgstr "Aprile"
 
-#: ../../mod/admin.php:838 ../../include/user.php:413
-#, php-format
-msgid "Registration details for %s"
-msgstr "Dettagli della registrazione di %s"
+#: ../../include/text.php:1234
+msgid "May"
+msgstr "Maggio"
 
-#: ../../mod/admin.php:850
-#, php-format
-msgid "%s user blocked/unblocked"
-msgid_plural "%s users blocked/unblocked"
-msgstr[0] "%s utente bloccato/sbloccato"
-msgstr[1] "%s utenti bloccati/sbloccati"
+#: ../../include/text.php:1234
+msgid "June"
+msgstr "Giugno"
 
-#: ../../mod/admin.php:857
-#, php-format
-msgid "%s user deleted"
-msgid_plural "%s users deleted"
-msgstr[0] "%s utente cancellato"
-msgstr[1] "%s utenti cancellati"
+#: ../../include/text.php:1234
+msgid "July"
+msgstr "Luglio"
 
-#: ../../mod/admin.php:896
-#, php-format
-msgid "User '%s' deleted"
-msgstr "Utente '%s' cancellato"
+#: ../../include/text.php:1234
+msgid "August"
+msgstr "Agosto"
 
-#: ../../mod/admin.php:904
-#, php-format
-msgid "User '%s' unblocked"
-msgstr "Utente '%s' sbloccato"
+#: ../../include/text.php:1234
+msgid "September"
+msgstr "Settembre"
 
-#: ../../mod/admin.php:904
-#, php-format
-msgid "User '%s' blocked"
-msgstr "Utente '%s' bloccato"
+#: ../../include/text.php:1234
+msgid "October"
+msgstr "Ottobre"
 
-#: ../../mod/admin.php:999
-msgid "Add User"
-msgstr "Aggiungi utente"
+#: ../../include/text.php:1234
+msgid "November"
+msgstr "Novembre"
 
-#: ../../mod/admin.php:1000
-msgid "select all"
-msgstr "seleziona tutti"
+#: ../../include/text.php:1234
+msgid "December"
+msgstr "Dicembre"
 
-#: ../../mod/admin.php:1001
-msgid "User registrations waiting for confirm"
-msgstr "Richieste di registrazione in attesa di conferma"
+#: ../../include/text.php:1424 ../../mod/videos.php:301
+msgid "View Video"
+msgstr "Guarda Video"
 
-#: ../../mod/admin.php:1002
-msgid "User waiting for permanent deletion"
-msgstr "Utente in attesa di cancellazione definitiva"
+#: ../../include/text.php:1456
+msgid "bytes"
+msgstr "bytes"
 
-#: ../../mod/admin.php:1003
-msgid "Request date"
-msgstr "Data richiesta"
+#: ../../include/text.php:1488 ../../include/text.php:1500
+msgid "Click to open/close"
+msgstr "Clicca per aprire/chiudere"
 
-#: ../../mod/admin.php:1003 ../../mod/admin.php:1015 ../../mod/admin.php:1016
-#: ../../mod/admin.php:1031 ../../include/contact_selectors.php:79
-#: ../../include/contact_selectors.php:86
-msgid "Email"
-msgstr "Email"
+#: ../../include/text.php:1674 ../../include/text.php:1684
+#: ../../mod/events.php:347
+msgid "link to source"
+msgstr "Collegamento all'originale"
 
-#: ../../mod/admin.php:1004
-msgid "No registrations."
-msgstr "Nessuna registrazione."
+#: ../../include/text.php:1741
+msgid "Select an alternate language"
+msgstr "Seleziona una diversa lingua"
 
-#: ../../mod/admin.php:1006
-msgid "Deny"
-msgstr "Nega"
+#: ../../include/text.php:1997
+msgid "activity"
+msgstr "attività"
 
-#: ../../mod/admin.php:1010
-msgid "Site admin"
-msgstr "Amministrazione sito"
+#: ../../include/text.php:1999 ../../object/Item.php:392
+#: ../../object/Item.php:405 ../../mod/content.php:605
+msgid "comment"
+msgid_plural "comments"
+msgstr[0] ""
+msgstr[1] "commento"
 
-#: ../../mod/admin.php:1011
-msgid "Account expired"
-msgstr "Account scaduto"
+#: ../../include/text.php:2000
+msgid "post"
+msgstr "messaggio"
 
-#: ../../mod/admin.php:1014
-msgid "New User"
-msgstr "Nuovo Utente"
+#: ../../include/text.php:2168
+msgid "Item filed"
+msgstr "Messaggio salvato"
 
-#: ../../mod/admin.php:1015 ../../mod/admin.php:1016
-msgid "Register date"
-msgstr "Data registrazione"
+#: ../../include/auth.php:38
+msgid "Logged out."
+msgstr "Uscita effettuata."
 
-#: ../../mod/admin.php:1015 ../../mod/admin.php:1016
-msgid "Last login"
-msgstr "Ultimo accesso"
+#: ../../include/auth.php:112 ../../include/auth.php:175
+#: ../../mod/openid.php:93
+msgid "Login failed."
+msgstr "Accesso fallito."
 
-#: ../../mod/admin.php:1015 ../../mod/admin.php:1016
-msgid "Last item"
-msgstr "Ultimo elemento"
+#: ../../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 "Abbiamo incontrato un problema mentre contattavamo il server OpenID che ci hai fornito. Controlla di averlo scritto giusto."
 
-#: ../../mod/admin.php:1015
-msgid "Deleted since"
-msgstr "Rimosso da"
+#: ../../include/auth.php:128 ../../include/user.php:67
+msgid "The error message was:"
+msgstr "Il messaggio riportato era:"
 
-#: ../../mod/admin.php:1016 ../../mod/settings.php:36
-msgid "Account"
-msgstr "Account"
+#: ../../include/bbcode.php:448 ../../include/bbcode.php:1094
+#: ../../include/bbcode.php:1095
+msgid "Image/photo"
+msgstr "Immagine/foto"
 
-#: ../../mod/admin.php:1018
-msgid ""
-"Selected users will be deleted!\\n\\nEverything these users had posted on "
-"this site will be permanently deleted!\\n\\nAre you sure?"
-msgstr "Gli utenti selezionati saranno cancellati!\\n\\nTutto quello che gli utenti hanno inviato su questo sito sarà permanentemente canellato!\\n\\nSei sicuro?"
+#: ../../include/bbcode.php:546
+#, php-format
+msgid "<a href=\"%1$s\" target=\"_blank\">%2$s</a> %3$s"
+msgstr "<a href=\"%1$s\" target=\"_blank\">%2$s</a> %3$s"
 
-#: ../../mod/admin.php:1019
+#: ../../include/bbcode.php:580
+#, php-format
 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 "L'utente {0} sarà cancellato!\\n\\nTutto quello che ha inviato su questo sito sarà permanentemente cancellato!\\n\\nSei sicuro?"
+"<span><a href=\"%s\" target=\"_blank\">%s</a> wrote the following <a "
+"href=\"%s\" target=\"_blank\">post</a>"
+msgstr "<span><a href=\"%s\" target=\"_blank\">%s</a> ha scritto il seguente <a href=\"%s\" target=\"_blank\">messaggio</a>"
 
-#: ../../mod/admin.php:1029
-msgid "Name of the new user."
-msgstr "Nome del nuovo utente."
+#: ../../include/bbcode.php:1058 ../../include/bbcode.php:1078
+msgid "$1 wrote:"
+msgstr "$1 ha scritto:"
 
-#: ../../mod/admin.php:1030
-msgid "Nickname"
-msgstr "Nome utente"
+#: ../../include/bbcode.php:1103 ../../include/bbcode.php:1104
+msgid "Encrypted content"
+msgstr "Contenuto criptato"
 
-#: ../../mod/admin.php:1030
-msgid "Nickname of the new user."
-msgstr "Nome utente del nuovo utente."
+#: ../../include/security.php:22
+msgid "Welcome "
+msgstr "Ciao"
 
-#: ../../mod/admin.php:1031
-msgid "Email address of the new user."
-msgstr "Indirizzo Email del nuovo utente."
+#: ../../include/security.php:23
+msgid "Please upload a profile photo."
+msgstr "Carica una foto per il profilo."
 
-#: ../../mod/admin.php:1064
-#, php-format
-msgid "Plugin %s disabled."
-msgstr "Plugin %s disabilitato."
+#: ../../include/security.php:26
+msgid "Welcome back "
+msgstr "Ciao "
 
-#: ../../mod/admin.php:1068
-#, php-format
-msgid "Plugin %s enabled."
-msgstr "Plugin %s abilitato."
+#: ../../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 "Il token di sicurezza della form non era corretto. Probabilmente la form è rimasta aperta troppo a lunto (più di tre ore) prima di inviarla."
 
-#: ../../mod/admin.php:1078 ../../mod/admin.php:1294
-msgid "Disable"
-msgstr "Disabilita"
+#: ../../include/oembed.php:218
+msgid "Embedded content"
+msgstr "Contenuto incorporato"
 
-#: ../../mod/admin.php:1080 ../../mod/admin.php:1296
-msgid "Enable"
-msgstr "Abilita"
+#: ../../include/oembed.php:227
+msgid "Embedding disabled"
+msgstr "Embed disabilitato"
 
-#: ../../mod/admin.php:1103 ../../mod/admin.php:1324
-msgid "Toggle"
-msgstr "Inverti"
+#: ../../include/profile_selectors.php:6
+msgid "Male"
+msgstr "Maschio"
 
-#: ../../mod/admin.php:1111 ../../mod/admin.php:1334
-msgid "Author: "
-msgstr "Autore: "
+#: ../../include/profile_selectors.php:6
+msgid "Female"
+msgstr "Femmina"
 
-#: ../../mod/admin.php:1112 ../../mod/admin.php:1335
-msgid "Maintainer: "
-msgstr "Manutentore: "
+#: ../../include/profile_selectors.php:6
+msgid "Currently Male"
+msgstr "Al momento maschio"
 
-#: ../../mod/admin.php:1254
-msgid "No themes found."
-msgstr "Nessun tema trovato."
+#: ../../include/profile_selectors.php:6
+msgid "Currently Female"
+msgstr "Al momento femmina"
 
-#: ../../mod/admin.php:1316
-msgid "Screenshot"
-msgstr "Anteprima"
+#: ../../include/profile_selectors.php:6
+msgid "Mostly Male"
+msgstr "Prevalentemente maschio"
 
-#: ../../mod/admin.php:1362
-msgid "[Experimental]"
-msgstr "[Sperimentale]"
+#: ../../include/profile_selectors.php:6
+msgid "Mostly Female"
+msgstr "Prevalentemente femmina"
 
-#: ../../mod/admin.php:1363
-msgid "[Unsupported]"
-msgstr "[Non supportato]"
+#: ../../include/profile_selectors.php:6
+msgid "Transgender"
+msgstr "Transgender"
 
-#: ../../mod/admin.php:1390
-msgid "Log settings updated."
-msgstr "Impostazioni Log aggiornate."
-
-#: ../../mod/admin.php:1446
-msgid "Clear"
-msgstr "Pulisci"
+#: ../../include/profile_selectors.php:6
+msgid "Intersex"
+msgstr "Intersex"
 
-#: ../../mod/admin.php:1452
-msgid "Enable Debugging"
-msgstr "Abilita Debugging"
+#: ../../include/profile_selectors.php:6
+msgid "Transsexual"
+msgstr "Transessuale"
 
-#: ../../mod/admin.php:1453
-msgid "Log file"
-msgstr "File di Log"
+#: ../../include/profile_selectors.php:6
+msgid "Hermaphrodite"
+msgstr "Ermafrodito"
 
-#: ../../mod/admin.php:1453
-msgid ""
-"Must be writable by web server. Relative to your Friendica top-level "
-"directory."
-msgstr "Deve essere scrivibile dal server web. Relativo alla tua directory Friendica."
+#: ../../include/profile_selectors.php:6
+msgid "Neuter"
+msgstr "Neutro"
 
-#: ../../mod/admin.php:1454
-msgid "Log level"
-msgstr "Livello di Log"
+#: ../../include/profile_selectors.php:6
+msgid "Non-specific"
+msgstr "Non specificato"
 
-#: ../../mod/admin.php:1504
-msgid "Close"
-msgstr "Chiudi"
+#: ../../include/profile_selectors.php:6
+msgid "Other"
+msgstr "Altro"
 
-#: ../../mod/admin.php:1510
-msgid "FTP Host"
-msgstr "Indirizzo FTP"
+#: ../../include/profile_selectors.php:6
+msgid "Undecided"
+msgstr "Indeciso"
 
-#: ../../mod/admin.php:1511
-msgid "FTP Path"
-msgstr "Percorso FTP"
+#: ../../include/profile_selectors.php:23
+msgid "Males"
+msgstr "Maschi"
 
-#: ../../mod/admin.php:1512
-msgid "FTP User"
-msgstr "Utente FTP"
+#: ../../include/profile_selectors.php:23
+msgid "Females"
+msgstr "Femmine"
 
-#: ../../mod/admin.php:1513
-msgid "FTP Password"
-msgstr "Pasword FTP"
+#: ../../include/profile_selectors.php:23
+msgid "Gay"
+msgstr "Gay"
 
-#: ../../mod/network.php:142
-msgid "Search Results For:"
-msgstr "Cerca risultati per:"
+#: ../../include/profile_selectors.php:23
+msgid "Lesbian"
+msgstr "Lesbica"
 
-#: ../../mod/network.php:185 ../../mod/search.php:21
-msgid "Remove term"
-msgstr "Rimuovi termine"
+#: ../../include/profile_selectors.php:23
+msgid "No Preference"
+msgstr "Nessuna preferenza"
 
-#: ../../mod/network.php:194 ../../mod/search.php:30
-#: ../../include/features.php:42
-msgid "Saved Searches"
-msgstr "Ricerche salvate"
+#: ../../include/profile_selectors.php:23
+msgid "Bisexual"
+msgstr "Bisessuale"
 
-#: ../../mod/network.php:195 ../../include/group.php:275
-msgid "add"
-msgstr "aggiungi"
+#: ../../include/profile_selectors.php:23
+msgid "Autosexual"
+msgstr "Autosessuale"
 
-#: ../../mod/network.php:356
-msgid "Commented Order"
-msgstr "Ordina per commento"
+#: ../../include/profile_selectors.php:23
+msgid "Abstinent"
+msgstr "Astinente"
 
-#: ../../mod/network.php:359
-msgid "Sort by Comment Date"
-msgstr "Ordina per data commento"
+#: ../../include/profile_selectors.php:23
+msgid "Virgin"
+msgstr "Vergine"
 
-#: ../../mod/network.php:362
-msgid "Posted Order"
-msgstr "Ordina per invio"
+#: ../../include/profile_selectors.php:23
+msgid "Deviant"
+msgstr "Deviato"
 
-#: ../../mod/network.php:365
-msgid "Sort by Post Date"
-msgstr "Ordina per data messaggio"
+#: ../../include/profile_selectors.php:23
+msgid "Fetish"
+msgstr "Fetish"
 
-#: ../../mod/network.php:374
-msgid "Posts that mention or involve you"
-msgstr "Messaggi che ti citano o coinvolgono"
+#: ../../include/profile_selectors.php:23
+msgid "Oodles"
+msgstr "Un sacco"
 
-#: ../../mod/network.php:380
-msgid "New"
-msgstr "Nuovo"
+#: ../../include/profile_selectors.php:23
+msgid "Nonsexual"
+msgstr "Asessuato"
 
-#: ../../mod/network.php:383
-msgid "Activity Stream - by date"
-msgstr "Activity Stream - per data"
+#: ../../include/profile_selectors.php:42
+msgid "Single"
+msgstr "Single"
 
-#: ../../mod/network.php:389
-msgid "Shared Links"
-msgstr "Links condivisi"
+#: ../../include/profile_selectors.php:42
+msgid "Lonely"
+msgstr "Solitario"
 
-#: ../../mod/network.php:392
-msgid "Interesting Links"
-msgstr "Link Interessanti"
+#: ../../include/profile_selectors.php:42
+msgid "Available"
+msgstr "Disponibile"
 
-#: ../../mod/network.php:398
-msgid "Starred"
-msgstr "Preferiti"
+#: ../../include/profile_selectors.php:42
+msgid "Unavailable"
+msgstr "Non disponibile"
 
-#: ../../mod/network.php:401
-msgid "Favourite Posts"
-msgstr "Messaggi preferiti"
+#: ../../include/profile_selectors.php:42
+msgid "Has crush"
+msgstr "è cotto/a"
 
-#: ../../mod/network.php:463
-#, 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] "Attenzione: questo gruppo contiene %s membro da un network insicuro."
-msgstr[1] "Attenzione: questo gruppo contiene %s membri da un network insicuro."
+#: ../../include/profile_selectors.php:42
+msgid "Infatuated"
+msgstr "infatuato/a"
 
-#: ../../mod/network.php:466
-msgid "Private messages to this group are at risk of public disclosure."
-msgstr "I messaggi privati su questo gruppo potrebbero risultare visibili anche pubblicamente."
+#: ../../include/profile_selectors.php:42
+msgid "Dating"
+msgstr "Disponibile a un incontro"
 
-#: ../../mod/network.php:520 ../../mod/content.php:119
-msgid "No such group"
-msgstr "Nessun gruppo"
+#: ../../include/profile_selectors.php:42
+msgid "Unfaithful"
+msgstr "Infedele"
 
-#: ../../mod/network.php:537 ../../mod/content.php:130
-msgid "Group is empty"
-msgstr "Il gruppo è vuoto"
+#: ../../include/profile_selectors.php:42
+msgid "Sex Addict"
+msgstr "Sesso-dipendente"
 
-#: ../../mod/network.php:544 ../../mod/content.php:134
-msgid "Group: "
-msgstr "Gruppo: "
+#: ../../include/profile_selectors.php:42 ../../include/user.php:289
+#: ../../include/user.php:293
+msgid "Friends"
+msgstr "Amici"
 
-#: ../../mod/network.php:554
-msgid "Contact: "
-msgstr "Contatto:"
+#: ../../include/profile_selectors.php:42
+msgid "Friends/Benefits"
+msgstr "Amici con benefici"
 
-#: ../../mod/network.php:556
-msgid "Private messages to this person are at risk of public disclosure."
-msgstr "I messaggi privati a questa persona potrebbero risultare visibili anche pubblicamente."
+#: ../../include/profile_selectors.php:42
+msgid "Casual"
+msgstr "Casual"
 
-#: ../../mod/network.php:561
-msgid "Invalid contact."
-msgstr "Contatto non valido."
+#: ../../include/profile_selectors.php:42
+msgid "Engaged"
+msgstr "Impegnato"
 
-#: ../../mod/allfriends.php:34
-#, php-format
-msgid "Friends of %s"
-msgstr "Amici di %s"
+#: ../../include/profile_selectors.php:42
+msgid "Married"
+msgstr "Sposato"
 
-#: ../../mod/allfriends.php:40
-msgid "No friends to display."
-msgstr "Nessun amico da visualizzare."
+#: ../../include/profile_selectors.php:42
+msgid "Imaginarily married"
+msgstr "immaginariamente sposato/a"
 
-#: ../../mod/events.php:66
-msgid "Event title and start time are required."
-msgstr "Titolo e ora di inizio dell'evento sono richiesti."
+#: ../../include/profile_selectors.php:42
+msgid "Partners"
+msgstr "Partners"
 
-#: ../../mod/events.php:291
-msgid "l, F j"
-msgstr "l j F"
+#: ../../include/profile_selectors.php:42
+msgid "Cohabiting"
+msgstr "Coinquilino"
 
-#: ../../mod/events.php:313
-msgid "Edit event"
-msgstr "Modifca l'evento"
+#: ../../include/profile_selectors.php:42
+msgid "Common law"
+msgstr "diritto comune"
 
-#: ../../mod/events.php:335 ../../include/text.php:1647
-#: ../../include/text.php:1657
-msgid "link to source"
-msgstr "Collegamento all'originale"
+#: ../../include/profile_selectors.php:42
+msgid "Happy"
+msgstr "Felice"
 
-#: ../../mod/events.php:370 ../../boot.php:2143 ../../include/nav.php:80
-#: ../../view/theme/diabook/theme.php:127
-msgid "Events"
-msgstr "Eventi"
+#: ../../include/profile_selectors.php:42
+msgid "Not looking"
+msgstr "Non guarda"
 
-#: ../../mod/events.php:371
-msgid "Create New Event"
-msgstr "Crea un nuovo evento"
+#: ../../include/profile_selectors.php:42
+msgid "Swinger"
+msgstr "Scambista"
 
-#: ../../mod/events.php:372
-msgid "Previous"
-msgstr "Precendente"
+#: ../../include/profile_selectors.php:42
+msgid "Betrayed"
+msgstr "Tradito"
 
-#: ../../mod/events.php:373 ../../mod/install.php:207
-msgid "Next"
-msgstr "Successivo"
+#: ../../include/profile_selectors.php:42
+msgid "Separated"
+msgstr "Separato"
 
-#: ../../mod/events.php:446
-msgid "hour:minute"
-msgstr "ora:minuti"
+#: ../../include/profile_selectors.php:42
+msgid "Unstable"
+msgstr "Instabile"
 
-#: ../../mod/events.php:456
-msgid "Event details"
-msgstr "Dettagli dell'evento"
+#: ../../include/profile_selectors.php:42
+msgid "Divorced"
+msgstr "Divorziato"
 
-#: ../../mod/events.php:457
-#, php-format
-msgid "Format is %s %s. Starting date and Title are required."
-msgstr "Il formato è %s %s. Data di inizio e Titolo sono richiesti."
+#: ../../include/profile_selectors.php:42
+msgid "Imaginarily divorced"
+msgstr "immaginariamente divorziato/a"
 
-#: ../../mod/events.php:459
-msgid "Event Starts:"
-msgstr "L'evento inizia:"
+#: ../../include/profile_selectors.php:42
+msgid "Widowed"
+msgstr "Vedovo"
 
-#: ../../mod/events.php:459 ../../mod/events.php:473
-msgid "Required"
-msgstr "Richiesto"
+#: ../../include/profile_selectors.php:42
+msgid "Uncertain"
+msgstr "Incerto"
 
-#: ../../mod/events.php:462
-msgid "Finish date/time is not known or not relevant"
-msgstr "La data/ora di fine non è definita"
+#: ../../include/profile_selectors.php:42
+msgid "It's complicated"
+msgstr "E' complicato"
 
-#: ../../mod/events.php:464
-msgid "Event Finishes:"
-msgstr "L'evento finisce:"
+#: ../../include/profile_selectors.php:42
+msgid "Don't care"
+msgstr "Non interessa"
 
-#: ../../mod/events.php:467
-msgid "Adjust for viewer timezone"
-msgstr "Visualizza con il fuso orario di chi legge"
+#: ../../include/profile_selectors.php:42
+msgid "Ask me"
+msgstr "Chiedimelo"
 
-#: ../../mod/events.php:469
-msgid "Description:"
-msgstr "Descrizione:"
+#: ../../include/user.php:40
+msgid "An invitation is required."
+msgstr "E' richiesto un invito."
 
-#: ../../mod/events.php:471 ../../mod/directory.php:136 ../../boot.php:1648
-#: ../../include/bb2diaspora.php:170 ../../include/event.php:40
-msgid "Location:"
-msgstr "Posizione:"
+#: ../../include/user.php:45
+msgid "Invitation could not be verified."
+msgstr "L'invito non puo' essere verificato."
 
-#: ../../mod/events.php:473
-msgid "Title:"
-msgstr "Titolo:"
+#: ../../include/user.php:53
+msgid "Invalid OpenID url"
+msgstr "Url OpenID non valido"
 
-#: ../../mod/events.php:475
-msgid "Share this event"
-msgstr "Condividi questo evento"
+#: ../../include/user.php:74
+msgid "Please enter the required information."
+msgstr "Inserisci le informazioni richieste."
 
-#: ../../mod/content.php:437 ../../mod/content.php:740
-#: ../../mod/photos.php:1653 ../../object/Item.php:129
-#: ../../include/conversation.php:613
-msgid "Select"
-msgstr "Seleziona"
+#: ../../include/user.php:88
+msgid "Please use a shorter name."
+msgstr "Usa un nome più corto."
 
-#: ../../mod/content.php:471 ../../mod/content.php:852
-#: ../../mod/content.php:853 ../../object/Item.php:326
-#: ../../object/Item.php:327 ../../include/conversation.php:654
-#, php-format
-msgid "View %s's profile @ %s"
-msgstr "Vedi il profilo di %s @ %s"
+#: ../../include/user.php:90
+msgid "Name too short."
+msgstr "Il nome è troppo corto."
 
-#: ../../mod/content.php:481 ../../mod/content.php:864
-#: ../../object/Item.php:340 ../../include/conversation.php:674
+#: ../../include/user.php:105
+msgid "That doesn't appear to be your full (First Last) name."
+msgstr "Questo non sembra essere il tuo nome completo (Nome Cognome)."
+
+#: ../../include/user.php:110
+msgid "Your email domain is not among those allowed on this site."
+msgstr "Il dominio della tua email non è tra quelli autorizzati su questo sito."
+
+#: ../../include/user.php:113
+msgid "Not a valid email address."
+msgstr "L'indirizzo email non è valido."
+
+#: ../../include/user.php:126
+msgid "Cannot use that email."
+msgstr "Non puoi usare quell'email."
+
+#: ../../include/user.php:132
+msgid ""
+"Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and "
+"must also begin with a letter."
+msgstr "Il tuo nome utente puo' contenere solo \"a-z\", \"0-9\", \"-\", e \"_\", e deve cominciare con una lettera."
+
+#: ../../include/user.php:138 ../../include/user.php:236
+msgid "Nickname is already registered. Please choose another."
+msgstr "Nome utente già registrato. Scegline un altro."
+
+#: ../../include/user.php:148
+msgid ""
+"Nickname was once registered here and may not be re-used. Please choose "
+"another."
+msgstr "Questo nome utente stato già registrato. Per favore, sceglierne uno nuovo."
+
+#: ../../include/user.php:164
+msgid "SERIOUS ERROR: Generation of security keys failed."
+msgstr "ERRORE GRAVE: La generazione delle chiavi di sicurezza è fallita."
+
+#: ../../include/user.php:222
+msgid "An error occurred during registration. Please try again."
+msgstr "C'è stato un errore durante la registrazione. Prova ancora."
+
+#: ../../include/user.php:257
+msgid "An error occurred creating your default profile. Please try again."
+msgstr "C'è stato un errore nella creazione del tuo profilo. Prova ancora."
+
+#: ../../include/user.php:377
 #, php-format
-msgid "%s from %s"
-msgstr "%s da %s"
+msgid ""
+"\n"
+"\t\tDear %1$s,\n"
+"\t\t\tThank you for registering at %2$s. Your account has been created.\n"
+"\t"
+msgstr "\nGentile %1$s,\nGrazie per esserti registrato su %2$s. Il tuo account è stato creato."
 
-#: ../../mod/content.php:497 ../../include/conversation.php:690
-msgid "View in context"
-msgstr "Vedi nel contesto"
+#: ../../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 "\nI dettagli del tuo utente sono:\n    Indirizzo del sito: %3$s\n    Nome utente: %1$s\n    Password: %5$s\n\nPuoi cambiare la tua password dalla pagina delle impostazioni del tuo account dopo esserti autenticato.\n\nPer favore, prenditi qualche momento per esaminare tutte le impostazioni presenti.\n\nPotresti voler aggiungere qualche informazione di base al tuo profilo predefinito (nella pagina \"Profili\"), così che le altre persone possano trovarti più facilmente.\n\nTi raccomandiamo di inserire il tuo nome completo, aggiungere una foto, aggiungere qualche parola chiave del profilo (molto utili per trovare nuovi contatti), e magari in quale nazione vivi, se non vuoi essere più specifico di così.\n\nNoi rispettiamo appieno la tua privacy, e nessuna di queste informazioni è necessaria o obbligatoria.\nSe sei nuovo e non conosci nessuno qui, possono aiutarti a trovare qualche nuovo e interessante contatto.\n\nGrazie e benvenuto su %2$s"
 
-#: ../../mod/content.php:603 ../../object/Item.php:387
+#: ../../include/user.php:413 ../../mod/admin.php:841
 #, php-format
-msgid "%d comment"
-msgid_plural "%d comments"
-msgstr[0] "%d commento"
-msgstr[1] "%d commenti"
+msgid "Registration details for %s"
+msgstr "Dettagli della registrazione di %s"
 
-#: ../../mod/content.php:605 ../../object/Item.php:389
-#: ../../object/Item.php:402 ../../include/text.php:1972
-msgid "comment"
-msgid_plural "comments"
-msgstr[0] ""
-msgstr[1] "commento"
+#: ../../include/acl_selectors.php:333
+msgid "Visible to everybody"
+msgstr "Visibile a tutti"
 
-#: ../../mod/content.php:606 ../../boot.php:751 ../../object/Item.php:390
-#: ../../include/contact_widgets.php:205
-msgid "show more"
-msgstr "mostra di più"
+#: ../../object/Item.php:95
+msgid "This entry was edited"
+msgstr "Questa voce è stata modificata"
 
-#: ../../mod/content.php:620 ../../mod/photos.php:1359
-#: ../../object/Item.php:116
+#: ../../object/Item.php:117 ../../mod/photos.php:1359
+#: ../../mod/content.php:620
 msgid "Private Message"
 msgstr "Messaggio privato"
 
-#: ../../mod/content.php:684 ../../mod/photos.php:1542
-#: ../../object/Item.php:231
+#: ../../object/Item.php:121 ../../mod/settings.php:683
+#: ../../mod/content.php:728
+msgid "Edit"
+msgstr "Modifica"
+
+#: ../../object/Item.php:134 ../../mod/content.php:763
+msgid "save to folder"
+msgstr "salva nella cartella"
+
+#: ../../object/Item.php:196 ../../mod/content.php:753
+msgid "add star"
+msgstr "aggiungi a speciali"
+
+#: ../../object/Item.php:197 ../../mod/content.php:754
+msgid "remove star"
+msgstr "rimuovi da speciali"
+
+#: ../../object/Item.php:198 ../../mod/content.php:755
+msgid "toggle star status"
+msgstr "Inverti stato preferito"
+
+#: ../../object/Item.php:201 ../../mod/content.php:758
+msgid "starred"
+msgstr "preferito"
+
+#: ../../object/Item.php:209
+msgid "ignore thread"
+msgstr "ignora la discussione"
+
+#: ../../object/Item.php:210
+msgid "unignore thread"
+msgstr "non ignorare la discussione"
+
+#: ../../object/Item.php:211
+msgid "toggle ignore status"
+msgstr "inverti stato \"Ignora\""
+
+#: ../../object/Item.php:214
+msgid "ignored"
+msgstr "ignorato"
+
+#: ../../object/Item.php:221 ../../mod/content.php:759
+msgid "add tag"
+msgstr "aggiungi tag"
+
+#: ../../object/Item.php:232 ../../mod/photos.php:1542
+#: ../../mod/content.php:684
 msgid "I like this (toggle)"
 msgstr "Mi piace (clic per cambiare)"
 
-#: ../../mod/content.php:684 ../../object/Item.php:231
+#: ../../object/Item.php:232 ../../mod/content.php:684
 msgid "like"
 msgstr "mi piace"
 
-#: ../../mod/content.php:685 ../../mod/photos.php:1543
-#: ../../object/Item.php:232
+#: ../../object/Item.php:233 ../../mod/photos.php:1543
+#: ../../mod/content.php:685
 msgid "I don't like this (toggle)"
 msgstr "Non mi piace (clic per cambiare)"
 
-#: ../../mod/content.php:685 ../../object/Item.php:232
+#: ../../object/Item.php:233 ../../mod/content.php:685
 msgid "dislike"
 msgstr "non mi piace"
 
-#: ../../mod/content.php:687 ../../object/Item.php:234
+#: ../../object/Item.php:235 ../../mod/content.php:687
 msgid "Share this"
 msgstr "Condividi questo"
 
-#: ../../mod/content.php:687 ../../object/Item.php:234
+#: ../../object/Item.php:235 ../../mod/content.php:687
 msgid "share"
 msgstr "condividi"
 
-#: ../../mod/content.php:707 ../../mod/photos.php:1562
+#: ../../object/Item.php:331 ../../mod/content.php:854
+msgid "to"
+msgstr "a"
+
+#: ../../object/Item.php:332
+msgid "via"
+msgstr "via"
+
+#: ../../object/Item.php:333 ../../mod/content.php:855
+msgid "Wall-to-Wall"
+msgstr "Da bacheca a bacheca"
+
+#: ../../object/Item.php:334 ../../mod/content.php:856
+msgid "via Wall-To-Wall:"
+msgstr "da bacheca a bacheca"
+
+#: ../../object/Item.php:390 ../../mod/content.php:603
+#, php-format
+msgid "%d comment"
+msgid_plural "%d comments"
+msgstr[0] "%d commento"
+msgstr[1] "%d commenti"
+
+#: ../../object/Item.php:678 ../../mod/photos.php:1562
 #: ../../mod/photos.php:1606 ../../mod/photos.php:1694
-#: ../../object/Item.php:675
+#: ../../mod/content.php:707
 msgid "This is you"
 msgstr "Questo sei tu"
 
-#: ../../mod/content.php:709 ../../mod/photos.php:1564
-#: ../../mod/photos.php:1608 ../../mod/photos.php:1696 ../../boot.php:750
-#: ../../object/Item.php:361 ../../object/Item.php:677
-msgid "Comment"
-msgstr "Commento"
-
-#: ../../mod/content.php:711 ../../object/Item.php:679
+#: ../../object/Item.php:682 ../../mod/content.php:711
 msgid "Bold"
 msgstr "Grassetto"
 
-#: ../../mod/content.php:712 ../../object/Item.php:680
+#: ../../object/Item.php:683 ../../mod/content.php:712
 msgid "Italic"
 msgstr "Corsivo"
 
-#: ../../mod/content.php:713 ../../object/Item.php:681
+#: ../../object/Item.php:684 ../../mod/content.php:713
 msgid "Underline"
 msgstr "Sottolineato"
 
-#: ../../mod/content.php:714 ../../object/Item.php:682
+#: ../../object/Item.php:685 ../../mod/content.php:714
 msgid "Quote"
 msgstr "Citazione"
 
-#: ../../mod/content.php:715 ../../object/Item.php:683
+#: ../../object/Item.php:686 ../../mod/content.php:715
 msgid "Code"
 msgstr "Codice"
 
-#: ../../mod/content.php:716 ../../object/Item.php:684
+#: ../../object/Item.php:687 ../../mod/content.php:716
 msgid "Image"
 msgstr "Immagine"
 
-#: ../../mod/content.php:717 ../../object/Item.php:685
+#: ../../object/Item.php:688 ../../mod/content.php:717
 msgid "Link"
 msgstr "Link"
 
-#: ../../mod/content.php:718 ../../object/Item.php:686
+#: ../../object/Item.php:689 ../../mod/content.php:718
 msgid "Video"
 msgstr "Video"
 
-#: ../../mod/content.php:719 ../../mod/editpost.php:145
-#: ../../mod/photos.php:1566 ../../mod/photos.php:1610
-#: ../../mod/photos.php:1698 ../../object/Item.php:687
-#: ../../include/conversation.php:1126
-msgid "Preview"
-msgstr "Anteprima"
+#: ../../mod/attach.php:8
+msgid "Item not available."
+msgstr "Oggetto non disponibile."
 
-#: ../../mod/content.php:728 ../../mod/settings.php:676
-#: ../../object/Item.php:120
-msgid "Edit"
-msgstr "Modifica"
+#: ../../mod/attach.php:20
+msgid "Item was not found."
+msgstr "Oggetto non trovato."
 
-#: ../../mod/content.php:753 ../../object/Item.php:195
-msgid "add star"
-msgstr "aggiungi a speciali"
+#: ../../mod/wallmessage.php:42 ../../mod/wallmessage.php:112
+#, php-format
+msgid "Number of daily wall messages for %s exceeded. Message failed."
+msgstr "Numero giornaliero di messaggi per %s superato. Invio fallito."
 
-#: ../../mod/content.php:754 ../../object/Item.php:196
-msgid "remove star"
-msgstr "rimuovi da speciali"
+#: ../../mod/wallmessage.php:56 ../../mod/message.php:63
+msgid "No recipient selected."
+msgstr "Nessun destinatario selezionato."
 
-#: ../../mod/content.php:755 ../../object/Item.php:197
-msgid "toggle star status"
-msgstr "Inverti stato preferito"
+#: ../../mod/wallmessage.php:59
+msgid "Unable to check your home location."
+msgstr "Impossibile controllare la tua posizione di origine."
 
-#: ../../mod/content.php:758 ../../object/Item.php:200
-msgid "starred"
-msgstr "preferito"
+#: ../../mod/wallmessage.php:62 ../../mod/message.php:70
+msgid "Message could not be sent."
+msgstr "Il messaggio non puo' essere inviato."
 
-#: ../../mod/content.php:759 ../../object/Item.php:220
-msgid "add tag"
-msgstr "aggiungi tag"
+#: ../../mod/wallmessage.php:65 ../../mod/message.php:73
+msgid "Message collection failure."
+msgstr "Errore recuperando il messaggio."
 
-#: ../../mod/content.php:763 ../../object/Item.php:133
-msgid "save to folder"
-msgstr "salva nella cartella"
+#: ../../mod/wallmessage.php:68 ../../mod/message.php:76
+msgid "Message sent."
+msgstr "Messaggio inviato."
 
-#: ../../mod/content.php:854 ../../object/Item.php:328
-msgid "to"
-msgstr "a"
+#: ../../mod/wallmessage.php:86 ../../mod/wallmessage.php:95
+msgid "No recipient."
+msgstr "Nessun destinatario."
 
-#: ../../mod/content.php:855 ../../object/Item.php:330
-msgid "Wall-to-Wall"
-msgstr "Da bacheca a bacheca"
+#: ../../mod/wallmessage.php:142 ../../mod/message.php:319
+msgid "Send Private Message"
+msgstr "Invia un messaggio privato"
 
-#: ../../mod/content.php:856 ../../object/Item.php:331
-msgid "via Wall-To-Wall:"
-msgstr "da bacheca a bacheca"
+#: ../../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 "Se vuoi che %s ti risponda, controlla che le tue impostazioni di privacy permettano la ricezione di messaggi privati da mittenti sconosciuti."
 
-#: ../../mod/removeme.php:46 ../../mod/removeme.php:49
-msgid "Remove My Account"
-msgstr "Rimuovi il mio account"
+#: ../../mod/wallmessage.php:144 ../../mod/message.php:320
+#: ../../mod/message.php:553
+msgid "To:"
+msgstr "A:"
 
-#: ../../mod/removeme.php:47
-msgid ""
-"This will completely remove your account. Once this has been done it is not "
-"recoverable."
-msgstr "Questo comando rimuoverà completamente il tuo account. Una volta rimosso non potrai più recuperarlo."
+#: ../../mod/wallmessage.php:145 ../../mod/message.php:325
+#: ../../mod/message.php:555
+msgid "Subject:"
+msgstr "Oggetto:"
 
-#: ../../mod/removeme.php:48
-msgid "Please enter your password for verification:"
-msgstr "Inserisci la tua password per verifica:"
+#: ../../mod/wallmessage.php:151 ../../mod/invite.php:134
+#: ../../mod/message.php:329 ../../mod/message.php:558
+msgid "Your message:"
+msgstr "Il tuo messaggio:"
 
-#: ../../mod/install.php:117
-msgid "Friendica Communications Server - Setup"
-msgstr "Friendica Comunicazione Server - Impostazioni"
+#: ../../mod/group.php:29
+msgid "Group created."
+msgstr "Gruppo creato."
 
-#: ../../mod/install.php:123
-msgid "Could not connect to database."
-msgstr " Impossibile collegarsi con il database."
+#: ../../mod/group.php:35
+msgid "Could not create group."
+msgstr "Impossibile creare il gruppo."
 
-#: ../../mod/install.php:127
-msgid "Could not create table."
-msgstr "Impossibile creare le tabelle."
+#: ../../mod/group.php:47 ../../mod/group.php:140
+msgid "Group not found."
+msgstr "Gruppo non trovato."
 
-#: ../../mod/install.php:133
-msgid "Your Friendica site database has been installed."
-msgstr "Il tuo Friendica è stato installato."
+#: ../../mod/group.php:60
+msgid "Group name changed."
+msgstr "Il nome del gruppo è cambiato."
 
-#: ../../mod/install.php:138
-msgid ""
-"You may need to import the file \"database.sql\" manually using phpmyadmin "
-"or mysql."
-msgstr "Potresti dover importare il file \"database.sql\" manualmente con phpmyadmin o mysql"
+#: ../../mod/group.php:87
+msgid "Save Group"
+msgstr "Salva gruppo"
 
-#: ../../mod/install.php:139 ../../mod/install.php:206
-#: ../../mod/install.php:525
-msgid "Please see the file \"INSTALL.txt\"."
-msgstr "Leggi il file \"INSTALL.txt\"."
+#: ../../mod/group.php:93
+msgid "Create a group of contacts/friends."
+msgstr "Crea un gruppo di amici/contatti."
 
-#: ../../mod/install.php:203
-msgid "System check"
-msgstr "Controllo sistema"
+#: ../../mod/group.php:113
+msgid "Group removed."
+msgstr "Gruppo rimosso."
 
-#: ../../mod/install.php:208
-msgid "Check again"
-msgstr "Controlla ancora"
+#: ../../mod/group.php:115
+msgid "Unable to remove group."
+msgstr "Impossibile rimuovere il gruppo."
 
-#: ../../mod/install.php:227
-msgid "Database connection"
-msgstr "Connessione al database"
+#: ../../mod/group.php:179
+msgid "Group Editor"
+msgstr "Modifica gruppo"
 
-#: ../../mod/install.php:228
-msgid ""
-"In order to install Friendica we need to know how to connect to your "
-"database."
-msgstr "Per installare Friendica dobbiamo sapere come collegarci al tuo database."
+#: ../../mod/group.php:192
+msgid "Members"
+msgstr "Membri"
 
-#: ../../mod/install.php:229
-msgid ""
-"Please contact your hosting provider or site administrator if you have "
-"questions about these settings."
-msgstr "Contatta il tuo fornitore di hosting o l'amministratore del sito se hai domande su queste impostazioni."
+#: ../../mod/group.php:194 ../../mod/contacts.php:656
+msgid "All Contacts"
+msgstr "Tutti i contatti"
 
-#: ../../mod/install.php:230
+#: ../../mod/group.php:224 ../../mod/profperm.php:106
+msgid "Click on a contact to add or remove."
+msgstr "Clicca su un contatto per aggiungerlo o rimuoverlo."
+
+#: ../../mod/delegate.php:101
+msgid "No potential page delegates located."
+msgstr "Nessun potenziale delegato per la pagina è stato trovato."
+
+#: ../../mod/delegate.php:132
 msgid ""
-"The database you specify below should already exist. If it does not, please "
-"create it before continuing."
-msgstr "Il database dovrà già esistere. Se non esiste, crealo prima di continuare."
+"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 "I Delegati sono in grando di gestire tutti gli aspetti di questa pagina, tranne per i settaggi di base dell'account. Non delegare il tuo account personale a nessuno di cui non ti fidi ciecamente."
 
-#: ../../mod/install.php:234
-msgid "Database Server Name"
-msgstr "Nome del database server"
+#: ../../mod/delegate.php:133
+msgid "Existing Page Managers"
+msgstr "Gestori Pagina Esistenti"
 
-#: ../../mod/install.php:235
-msgid "Database Login Name"
-msgstr "Nome utente database"
+#: ../../mod/delegate.php:135
+msgid "Existing Page Delegates"
+msgstr "Delegati Pagina Esistenti"
 
-#: ../../mod/install.php:236
-msgid "Database Login Password"
-msgstr "Password utente database"
+#: ../../mod/delegate.php:137
+msgid "Potential Delegates"
+msgstr "Delegati Potenziali"
 
-#: ../../mod/install.php:237
-msgid "Database Name"
-msgstr "Nome database"
+#: ../../mod/delegate.php:139 ../../mod/tagrm.php:93
+msgid "Remove"
+msgstr "Rimuovi"
 
-#: ../../mod/install.php:238 ../../mod/install.php:277
-msgid "Site administrator email address"
-msgstr "Indirizzo email dell'amministratore del sito"
+#: ../../mod/delegate.php:140
+msgid "Add"
+msgstr "Aggiungi"
 
-#: ../../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 "Il tuo indirizzo email deve corrispondere a questo per poter usare il pannello di amministrazione web."
+#: ../../mod/delegate.php:141
+msgid "No entries."
+msgstr "Nessuna voce."
 
-#: ../../mod/install.php:242 ../../mod/install.php:280
-msgid "Please select a default timezone for your website"
-msgstr "Seleziona il fuso orario predefinito per il tuo sito web"
+#: ../../mod/notifications.php:26
+msgid "Invalid request identifier."
+msgstr "L'identificativo della richiesta non è valido."
 
-#: ../../mod/install.php:267
-msgid "Site settings"
-msgstr "Impostazioni sito"
+#: ../../mod/notifications.php:35 ../../mod/notifications.php:165
+#: ../../mod/notifications.php:215
+msgid "Discard"
+msgstr "Scarta"
 
-#: ../../mod/install.php:321
-msgid "Could not find a command line version of PHP in the web server PATH."
-msgstr "Non riesco a trovare la versione di PHP da riga di comando nel PATH del server web"
+#: ../../mod/notifications.php:51 ../../mod/notifications.php:164
+#: ../../mod/notifications.php:214 ../../mod/contacts.php:525
+#: ../../mod/contacts.php:589 ../../mod/contacts.php:801
+msgid "Ignore"
+msgstr "Ignora"
 
-#: ../../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 <a "
-"href='http://friendica.com/node/27'>'Activating scheduled tasks'</a>"
-msgstr "Se non hai una versione a linea di comando di PHP installata sul tuo server, non sarai in grado di avviare il processo di poll in background via cron. Vedi <a href='http://friendica.com/node/27'>'Activating scheduled tasks'</a>"
+#: ../../mod/notifications.php:78
+msgid "System"
+msgstr "Sistema"
 
-#: ../../mod/install.php:326
-msgid "PHP executable path"
-msgstr "Percorso eseguibile PHP"
+#: ../../mod/notifications.php:88 ../../mod/network.php:371
+msgid "Personal"
+msgstr "Personale"
 
-#: ../../mod/install.php:326
-msgid ""
-"Enter full path to php executable. You can leave this blank to continue the "
-"installation."
-msgstr "Inserisci il percorso completo all'eseguibile di php. Puoi lasciare bianco questo campo per continuare l'installazione."
+#: ../../mod/notifications.php:122
+msgid "Show Ignored Requests"
+msgstr "Mostra richieste ignorate"
 
-#: ../../mod/install.php:331
-msgid "Command line PHP"
-msgstr "PHP da riga di comando"
+#: ../../mod/notifications.php:122
+msgid "Hide Ignored Requests"
+msgstr "Nascondi richieste ignorate"
 
-#: ../../mod/install.php:340
-msgid "PHP executable is not the php cli binary (could be cgi-fgci version)"
-msgstr "L'eseguibile PHP non è il binario php cli (potrebbe essere la versione cgi-fcgi)"
+#: ../../mod/notifications.php:149 ../../mod/notifications.php:199
+msgid "Notification type: "
+msgstr "Tipo di notifica: "
 
-#: ../../mod/install.php:341
-msgid "Found PHP version: "
-msgstr "Versione PHP:"
+#: ../../mod/notifications.php:150
+msgid "Friend Suggestion"
+msgstr "Amico suggerito"
 
-#: ../../mod/install.php:343
-msgid "PHP cli binary"
-msgstr "Binario PHP cli"
+#: ../../mod/notifications.php:152
+#, php-format
+msgid "suggested by %s"
+msgstr "sugerito da %s"
 
-#: ../../mod/install.php:354
-msgid ""
-"The command line version of PHP on your system does not have "
-"\"register_argc_argv\" enabled."
-msgstr "La versione da riga di comando di PHP nel sistema non ha abilitato \"register_argc_argv\"."
+#: ../../mod/notifications.php:157 ../../mod/notifications.php:208
+#: ../../mod/contacts.php:595
+msgid "Hide this contact from others"
+msgstr "Nascondi questo contatto agli altri"
 
-#: ../../mod/install.php:355
-msgid "This is required for message delivery to work."
-msgstr "E' obbligatorio per far funzionare la consegna dei messaggi."
+#: ../../mod/notifications.php:158 ../../mod/notifications.php:209
+msgid "Post a new friend activity"
+msgstr "Invia una attività \"è ora amico con\""
 
-#: ../../mod/install.php:357
-msgid "PHP register_argc_argv"
-msgstr "PHP register_argc_argv"
+#: ../../mod/notifications.php:158 ../../mod/notifications.php:209
+msgid "if applicable"
+msgstr "se applicabile"
 
-#: ../../mod/install.php:378
+#: ../../mod/notifications.php:161 ../../mod/notifications.php:212
+#: ../../mod/admin.php:1008
+msgid "Approve"
+msgstr "Approva"
+
+#: ../../mod/notifications.php:181
+msgid "Claims to be known to you: "
+msgstr "Dice di conoscerti: "
+
+#: ../../mod/notifications.php:181
+msgid "yes"
+msgstr "si"
+
+#: ../../mod/notifications.php:181
+msgid "no"
+msgstr "no"
+
+#: ../../mod/notifications.php:182
 msgid ""
-"Error: the \"openssl_pkey_new\" function on this system is not able to "
-"generate encryption keys"
-msgstr "Errore: la funzione \"openssl_pkey_new\" in questo sistema non è in grado di generare le chiavi di criptazione"
+"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 "La connessione dovrà essere bidirezionale o no? \"Amici\" implica che tu permetti al contatto di leggere i tuoi post e tu leggerai i suoi. \"Fan/Ammiratore\" significa che permetti al contatto di leggere i tuoi posto ma tu non vuoi leggere i suoi. Approva come:"
 
-#: ../../mod/install.php:379
+#: ../../mod/notifications.php:185
 msgid ""
-"If running under Windows, please see "
-"\"http://www.php.net/manual/en/openssl.installation.php\"."
-msgstr "Se stai eseguendo friendika su windows, guarda \"http://www.php.net/manual/en/openssl.installation.php\"."
-
-#: ../../mod/install.php:381
-msgid "Generate encryption keys"
-msgstr "Genera chiavi di criptazione"
-
-#: ../../mod/install.php:388
-msgid "libCurl PHP module"
-msgstr "modulo PHP libCurl"
-
-#: ../../mod/install.php:389
-msgid "GD graphics PHP module"
-msgstr "modulo PHP GD graphics"
-
-#: ../../mod/install.php:390
-msgid "OpenSSL PHP module"
-msgstr "modulo PHP OpenSSL"
-
-#: ../../mod/install.php:391
-msgid "mysqli PHP module"
-msgstr "modulo PHP mysqli"
-
-#: ../../mod/install.php:392
-msgid "mb_string PHP module"
-msgstr "modulo PHP mb_string"
-
-#: ../../mod/install.php:397 ../../mod/install.php:399
-msgid "Apache mod_rewrite module"
-msgstr "Modulo mod_rewrite di Apache"
-
-#: ../../mod/install.php:397
-msgid ""
-"Error: Apache webserver mod-rewrite module is required but not installed."
-msgstr "Errore: E' il modulo mod-rewrite di Apache è richiesto, ma non risulta installato"
-
-#: ../../mod/install.php:405
-msgid "Error: libCURL PHP module required but not installed."
-msgstr "Errore: il modulo libCURL di PHP è richiesto, ma non risulta installato."
-
-#: ../../mod/install.php:409
-msgid ""
-"Error: GD graphics PHP module with JPEG support required but not installed."
-msgstr "Errore: Il modulo GD graphics di PHP con supporto a JPEG è richiesto, ma non risulta installato."
-
-#: ../../mod/install.php:413
-msgid "Error: openssl PHP module required but not installed."
-msgstr "Errore: il modulo openssl di PHP è richiesto, ma non risulta installato."
-
-#: ../../mod/install.php:417
-msgid "Error: mysqli PHP module required but not installed."
-msgstr "Errore: il modulo mysqli di PHP è richiesto, ma non risulta installato"
-
-#: ../../mod/install.php:421
-msgid "Error: mb_string PHP module required but not installed."
-msgstr "Errore: il modulo PHP mb_string è richiesto, ma non risulta installato."
-
-#: ../../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 "L'installazione web deve poter creare un file chiamato \".htconfig.php\" nella cartella principale del tuo web server ma non è in grado di farlo."
-
-#: ../../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 "Ciò è dovuto spesso a impostazioni di permessi, dato che il web server può non essere in grado di scrivere il file nella tua cartella, anche se tu puoi."
-
-#: ../../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 "Alla fine di questa procedura, di daremo un testo da salvare in un file chiamato .htconfig.php nella tua cartella principale di Friendica"
-
-#: ../../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 "Puoi in alternativa saltare questa procedura ed eseguire l'installazione manualmente. Vedi il file \"INSTALL.txt\" per le istruzioni."
-
-#: ../../mod/install.php:444
-msgid ".htconfig.php is writable"
-msgstr ".htconfig.php è scrivibile"
-
-#: ../../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 usa il motore di template Smarty3 per renderizzare le sue pagine web. Smarty3 compila i template in PHP per velocizzare il rendering."
-
-#: ../../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 "Per salvare questi template compilati, il server werb ha bisogno dell'accesso in scrittura alla cartella view/smarty3/ nella cartella principale dei Friendica."
-
-#: ../../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 "Per favore, controlla che l'utente con cui il tuo server web gira (es www-data) ha accesso in scrittura a questa cartella."
+"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 "La connessione dovrà essere bidirezionale o no? \"Amici\" implica che tu permetti al contatto di leggere i tuoi post e tu leggerai i suoi. \"Condivisore\" significa che permetti al contatto di leggere i tuoi posto ma tu non vuoi leggere i suoi. Approva come:"
 
-#: ../../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 "Nota: come misura di sicurezza, dovresti dare accesso in scrittura solo alla cartella view/smarty3, non ai template (.tpl) che contiene."
-
-#: ../../mod/install.php:460
-msgid "view/smarty3 is writable"
-msgstr "view/smarty3 è scrivibile"
+#: ../../mod/notifications.php:193
+msgid "Friend"
+msgstr "Amico"
 
-#: ../../mod/install.php:472
-msgid ""
-"Url rewrite in .htaccess is not working. Check your server configuration."
-msgstr "La riscrittura degli url in .htaccess non funziona. Controlla la configurazione del tuo server."
+#: ../../mod/notifications.php:194
+msgid "Sharer"
+msgstr "Condivisore"
 
-#: ../../mod/install.php:474
-msgid "Url rewrite is working"
-msgstr "La riscrittura degli url funziona"
+#: ../../mod/notifications.php:194
+msgid "Fan/Admirer"
+msgstr "Fan/Ammiratore"
 
-#: ../../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 "Il file di configurazione del database \".htconfig.php\" non può essere scritto. Usa il testo qui di seguito per creare un file di configurazione nella cartella principale del tuo sito."
+#: ../../mod/notifications.php:200
+msgid "Friend/Connect Request"
+msgstr "Richiesta amicizia/connessione"
 
-#: ../../mod/install.php:523
-msgid "<h1>What next</h1>"
-msgstr "<h1>Cosa fare ora</h1>"
+#: ../../mod/notifications.php:200
+msgid "New Follower"
+msgstr "Qualcuno inizia a seguirti"
 
-#: ../../mod/install.php:524
-msgid ""
-"IMPORTANT: You will need to [manually] setup a scheduled task for the "
-"poller."
-msgstr "IMPORTANTE: Devi impostare [manualmente] la pianificazione del poller."
+#: ../../mod/notifications.php:221
+msgid "No introductions."
+msgstr "Nessuna presentazione."
 
-#: ../../mod/wallmessage.php:42 ../../mod/wallmessage.php:112
+#: ../../mod/notifications.php:262 ../../mod/notifications.php:391
+#: ../../mod/notifications.php:482
 #, php-format
-msgid "Number of daily wall messages for %s exceeded. Message failed."
-msgstr "Numero giornaliero di messaggi per %s superato. Invio fallito."
-
-#: ../../mod/wallmessage.php:59
-msgid "Unable to check your home location."
-msgstr "Impossibile controllare la tua posizione di origine."
-
-#: ../../mod/wallmessage.php:86 ../../mod/wallmessage.php:95
-msgid "No recipient."
-msgstr "Nessun destinatario."
+msgid "%s liked %s's post"
+msgstr "a %s è piaciuto il messaggio di %s"
 
-#: ../../mod/wallmessage.php:143
+#: ../../mod/notifications.php:272 ../../mod/notifications.php:401
+#: ../../mod/notifications.php:492
 #, 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 "Se vuoi che %s ti risponda, controlla che le tue impostazioni di privacy permettano la ricezione di messaggi privati da mittenti sconosciuti."
-
-#: ../../mod/help.php:79
-msgid "Help:"
-msgstr "Guida:"
-
-#: ../../mod/help.php:84 ../../include/nav.php:114
-msgid "Help"
-msgstr "Guida"
-
-#: ../../mod/help.php:90 ../../index.php:256
-msgid "Not Found"
-msgstr "Non trovato"
-
-#: ../../mod/help.php:93 ../../index.php:259
-msgid "Page not found."
-msgstr "Pagina non trovata."
+msgid "%s disliked %s's post"
+msgstr "a %s non è piaciuto il messaggio di %s"
 
-#: ../../mod/dfrn_poll.php:103 ../../mod/dfrn_poll.php:536
+#: ../../mod/notifications.php:287 ../../mod/notifications.php:416
+#: ../../mod/notifications.php:507
 #, php-format
-msgid "%1$s welcomes %2$s"
-msgstr "%s dà il benvenuto a %s"
+msgid "%s is now friends with %s"
+msgstr "%s è ora amico di %s"
 
-#: ../../mod/home.php:35
+#: ../../mod/notifications.php:294 ../../mod/notifications.php:423
 #, php-format
-msgid "Welcome to %s"
-msgstr "Benvenuto su %s"
-
-#: ../../mod/wall_attach.php:75
-msgid "Sorry, maybe your upload is bigger than the PHP configuration allows"
-msgstr "Mi spiace, forse il fie che stai caricando è più grosso di quanto la configurazione di PHP permetta"
-
-#: ../../mod/wall_attach.php:75
-msgid "Or - did you try to upload an empty file?"
-msgstr "O.. non avrai provato a caricare un file vuoto?"
+msgid "%s created a new post"
+msgstr "%s a creato un nuovo messaggio"
 
-#: ../../mod/wall_attach.php:81
+#: ../../mod/notifications.php:295 ../../mod/notifications.php:424
+#: ../../mod/notifications.php:517
 #, php-format
-msgid "File exceeds size limit of %d"
-msgstr "Il file supera la dimensione massima di %d"
+msgid "%s commented on %s's post"
+msgstr "%s ha commentato il messaggio di %s"
 
-#: ../../mod/wall_attach.php:122 ../../mod/wall_attach.php:133
-msgid "File upload failed."
-msgstr "Caricamento del file non riuscito."
+#: ../../mod/notifications.php:310
+msgid "No more network notifications."
+msgstr "Nessuna nuova."
 
-#: ../../mod/match.php:12
-msgid "Profile Match"
-msgstr "Profili corrispondenti"
+#: ../../mod/notifications.php:314
+msgid "Network Notifications"
+msgstr "Notifiche dalla rete"
 
-#: ../../mod/match.php:20
-msgid "No keywords to match. Please add keywords to your default profile."
-msgstr "Nessuna parola chiave per l'abbinamento. Aggiungi parole chiave al tuo profilo predefinito."
+#: ../../mod/notifications.php:340 ../../mod/notify.php:75
+msgid "No more system notifications."
+msgstr "Nessuna nuova notifica di sistema."
 
-#: ../../mod/match.php:57
-msgid "is interested in:"
-msgstr "è interessato a:"
+#: ../../mod/notifications.php:344 ../../mod/notify.php:79
+msgid "System Notifications"
+msgstr "Notifiche di sistema"
 
-#: ../../mod/match.php:58 ../../mod/suggest.php:90 ../../boot.php:1568
-#: ../../include/contact_widgets.php:10
-msgid "Connect"
-msgstr "Connetti"
+#: ../../mod/notifications.php:439
+msgid "No more personal notifications."
+msgstr "Nessuna nuova."
 
-#: ../../mod/share.php:44
-msgid "link"
-msgstr "collegamento"
+#: ../../mod/notifications.php:443
+msgid "Personal Notifications"
+msgstr "Notifiche personali"
 
-#: ../../mod/community.php:23
-msgid "Not available."
-msgstr "Non disponibile."
+#: ../../mod/notifications.php:524
+msgid "No more home notifications."
+msgstr "Nessuna nuova."
 
-#: ../../mod/community.php:32 ../../include/nav.php:129
-#: ../../include/nav.php:131 ../../view/theme/diabook/theme.php:129
-msgid "Community"
-msgstr "Comunità"
+#: ../../mod/notifications.php:528
+msgid "Home Notifications"
+msgstr "Notifiche bacheca"
 
-#: ../../mod/community.php:62 ../../mod/community.php:71
-#: ../../mod/search.php:168 ../../mod/search.php:192
-msgid "No results."
-msgstr "Nessun risultato."
+#: ../../mod/hcard.php:10
+msgid "No profile"
+msgstr "Nessun profilo"
 
-#: ../../mod/settings.php:29 ../../mod/photos.php:80
+#: ../../mod/settings.php:34 ../../mod/photos.php:80
 msgid "everybody"
 msgstr "tutti"
 
-#: ../../mod/settings.php:41
+#: ../../mod/settings.php:41 ../../mod/admin.php:1019
+msgid "Account"
+msgstr "Account"
+
+#: ../../mod/settings.php:46
 msgid "Additional features"
 msgstr "Funzionalità aggiuntive"
 
-#: ../../mod/settings.php:46
+#: ../../mod/settings.php:51
 msgid "Display"
 msgstr "Visualizzazione"
 
-#: ../../mod/settings.php:52 ../../mod/settings.php:780
+#: ../../mod/settings.php:57 ../../mod/settings.php:805
 msgid "Social Networks"
 msgstr "Social Networks"
 
-#: ../../mod/settings.php:62 ../../include/nav.php:170
-msgid "Delegations"
-msgstr "Delegazioni"
+#: ../../mod/settings.php:62 ../../mod/admin.php:106 ../../mod/admin.php:1105
+#: ../../mod/admin.php:1158
+msgid "Plugins"
+msgstr "Plugin"
 
-#: ../../mod/settings.php:67
+#: ../../mod/settings.php:72
 msgid "Connected apps"
 msgstr "Applicazioni collegate"
 
-#: ../../mod/settings.php:72 ../../mod/uexport.php:85
+#: ../../mod/settings.php:77 ../../mod/uexport.php:85
 msgid "Export personal data"
 msgstr "Esporta dati personali"
 
-#: ../../mod/settings.php:77
+#: ../../mod/settings.php:82
 msgid "Remove account"
 msgstr "Rimuovi account"
 
-#: ../../mod/settings.php:129
+#: ../../mod/settings.php:134
 msgid "Missing some important data!"
 msgstr "Mancano alcuni dati importanti!"
 
-#: ../../mod/settings.php:238
-msgid "Failed to connect with email account using the settings provided."
-msgstr "Impossibile collegarsi all'account email con i parametri forniti."
+#: ../../mod/settings.php:137 ../../mod/settings.php:647
+#: ../../mod/contacts.php:799
+msgid "Update"
+msgstr "Aggiorna"
+
+#: ../../mod/settings.php:245
+msgid "Failed to connect with email account using the settings provided."
+msgstr "Impossibile collegarsi all'account email con i parametri forniti."
 
-#: ../../mod/settings.php:243
+#: ../../mod/settings.php:250
 msgid "Email settings updated."
 msgstr "Impostazioni e-mail aggiornate."
 
-#: ../../mod/settings.php:258
+#: ../../mod/settings.php:265
 msgid "Features updated"
 msgstr "Funzionalità aggiornate"
 
-#: ../../mod/settings.php:321
+#: ../../mod/settings.php:328
 msgid "Relocate message has been send to your contacts"
 msgstr "Il messaggio di trasloco è stato inviato ai tuoi contatti"
 
-#: ../../mod/settings.php:335
+#: ../../mod/settings.php:342
 msgid "Passwords do not match. Password unchanged."
 msgstr "Le password non corrispondono. Password non cambiata."
 
-#: ../../mod/settings.php:340
+#: ../../mod/settings.php:347
 msgid "Empty passwords are not allowed. Password unchanged."
 msgstr "Le password non possono essere vuote. Password non cambiata."
 
-#: ../../mod/settings.php:348
+#: ../../mod/settings.php:355
 msgid "Wrong password."
 msgstr "Password sbagliata."
 
-#: ../../mod/settings.php:359
+#: ../../mod/settings.php:366
 msgid "Password changed."
 msgstr "Password cambiata."
 
-#: ../../mod/settings.php:361
+#: ../../mod/settings.php:368
 msgid "Password update failed. Please try again."
 msgstr "Aggiornamento password fallito. Prova ancora."
 
-#: ../../mod/settings.php:428
+#: ../../mod/settings.php:435
 msgid " Please use a shorter name."
 msgstr " Usa un nome più corto."
 
-#: ../../mod/settings.php:430
+#: ../../mod/settings.php:437
 msgid " Name too short."
 msgstr " Nome troppo corto."
 
-#: ../../mod/settings.php:439
+#: ../../mod/settings.php:446
 msgid "Wrong Password"
 msgstr "Password Sbagliata"
 
-#: ../../mod/settings.php:444
+#: ../../mod/settings.php:451
 msgid " Not valid email."
 msgstr " Email non valida."
 
-#: ../../mod/settings.php:450
+#: ../../mod/settings.php:457
 msgid " Cannot change to that email."
 msgstr "Non puoi usare quella email."
 
-#: ../../mod/settings.php:506
+#: ../../mod/settings.php:513
 msgid "Private forum has no privacy permissions. Using default privacy group."
 msgstr "Il forum privato non ha permessi di privacy. Uso il gruppo di privacy predefinito."
 
-#: ../../mod/settings.php:510
+#: ../../mod/settings.php:517
 msgid "Private forum has no privacy permissions and no default privacy group."
 msgstr "Il gruppo privato non ha permessi di privacy e nessun gruppo di privacy predefinito."
 
-#: ../../mod/settings.php:540
+#: ../../mod/settings.php:547
 msgid "Settings updated."
 msgstr "Impostazioni aggiornate."
 
-#: ../../mod/settings.php:613 ../../mod/settings.php:639
-#: ../../mod/settings.php:675
+#: ../../mod/settings.php:620 ../../mod/settings.php:646
+#: ../../mod/settings.php:682
 msgid "Add application"
 msgstr "Aggiungi applicazione"
 
-#: ../../mod/settings.php:617 ../../mod/settings.php:643
+#: ../../mod/settings.php:621 ../../mod/settings.php:731
+#: ../../mod/settings.php:754 ../../mod/settings.php:823
+#: ../../mod/settings.php:905 ../../mod/settings.php:1138
+#: ../../mod/admin.php:622 ../../mod/admin.php:1159 ../../mod/admin.php:1361
+#: ../../mod/admin.php:1448
+msgid "Save Settings"
+msgstr "Salva Impostazioni"
+
+#: ../../mod/settings.php:623 ../../mod/settings.php:649
+#: ../../mod/admin.php:1006 ../../mod/admin.php:1018 ../../mod/admin.php:1019
+#: ../../mod/admin.php:1032 ../../mod/crepair.php:169
+msgid "Name"
+msgstr "Nome"
+
+#: ../../mod/settings.php:624 ../../mod/settings.php:650
 msgid "Consumer Key"
 msgstr "Consumer Key"
 
-#: ../../mod/settings.php:618 ../../mod/settings.php:644
+#: ../../mod/settings.php:625 ../../mod/settings.php:651
 msgid "Consumer Secret"
 msgstr "Consumer Secret"
 
-#: ../../mod/settings.php:619 ../../mod/settings.php:645
+#: ../../mod/settings.php:626 ../../mod/settings.php:652
 msgid "Redirect"
 msgstr "Redirect"
 
-#: ../../mod/settings.php:620 ../../mod/settings.php:646
+#: ../../mod/settings.php:627 ../../mod/settings.php:653
 msgid "Icon url"
 msgstr "Url icona"
 
-#: ../../mod/settings.php:631
+#: ../../mod/settings.php:638
 msgid "You can't edit this application."
 msgstr "Non puoi modificare questa applicazione."
 
-#: ../../mod/settings.php:674
+#: ../../mod/settings.php:681
 msgid "Connected Apps"
 msgstr "Applicazioni Collegate"
 
-#: ../../mod/settings.php:678
+#: ../../mod/settings.php:685
 msgid "Client key starts with"
 msgstr "Chiave del client inizia con"
 
-#: ../../mod/settings.php:679
+#: ../../mod/settings.php:686
 msgid "No name"
 msgstr "Nessun nome"
 
-#: ../../mod/settings.php:680
+#: ../../mod/settings.php:687
 msgid "Remove authorization"
 msgstr "Rimuovi l'autorizzazione"
 
-#: ../../mod/settings.php:692
+#: ../../mod/settings.php:699
 msgid "No Plugin settings configured"
 msgstr "Nessun plugin ha impostazioni modificabili"
 
-#: ../../mod/settings.php:700
+#: ../../mod/settings.php:707
 msgid "Plugin Settings"
 msgstr "Impostazioni plugin"
 
-#: ../../mod/settings.php:714
+#: ../../mod/settings.php:721
 msgid "Off"
 msgstr "Spento"
 
-#: ../../mod/settings.php:714
+#: ../../mod/settings.php:721
 msgid "On"
 msgstr "Acceso"
 
-#: ../../mod/settings.php:722
+#: ../../mod/settings.php:729
 msgid "Additional Features"
 msgstr "Funzionalità aggiuntive"
 
-#: ../../mod/settings.php:736 ../../mod/settings.php:737
+#: ../../mod/settings.php:739 ../../mod/settings.php:743
+msgid "General Social Media Settings"
+msgstr "Impostazioni Media Sociali"
+
+#: ../../mod/settings.php:749
+msgid "Disable intelligent shortening"
+msgstr "Disabilita accorciamento intelligente"
+
+#: ../../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 "Normalmente il sistema tenta di trovare il migliore link da aggiungere a un post accorciato. Se questa opzione è abilitata, ogni post accorciato conterrà sempre un link al post originale su Friendica."
+
+#: ../../mod/settings.php:761 ../../mod/settings.php:762
 #, php-format
 msgid "Built-in support for %s connectivity is %s"
 msgstr "Il supporto integrato per la connettività con %s è %s"
 
-#: ../../mod/settings.php:736 ../../mod/dfrn_request.php:838
-#: ../../include/contact_selectors.php:80
-msgid "Diaspora"
-msgstr "Diaspora"
-
-#: ../../mod/settings.php:736 ../../mod/settings.php:737
+#: ../../mod/settings.php:761 ../../mod/settings.php:762
 msgid "enabled"
 msgstr "abilitato"
 
-#: ../../mod/settings.php:736 ../../mod/settings.php:737
+#: ../../mod/settings.php:761 ../../mod/settings.php:762
 msgid "disabled"
 msgstr "disabilitato"
 
-#: ../../mod/settings.php:737
+#: ../../mod/settings.php:762
 msgid "StatusNet"
 msgstr "StatusNet"
 
-#: ../../mod/settings.php:773
+#: ../../mod/settings.php:798
 msgid "Email access is disabled on this site."
 msgstr "L'accesso email è disabilitato su questo sito."
 
-#: ../../mod/settings.php:785
+#: ../../mod/settings.php:810
 msgid "Email/Mailbox Setup"
 msgstr "Impostazioni email"
 
-#: ../../mod/settings.php:786
+#: ../../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 "Se vuoi comunicare con i contatti email usando questo servizio, specifica come collegarti alla tua casella di posta. (opzionale)"
 
-#: ../../mod/settings.php:787
+#: ../../mod/settings.php:812
 msgid "Last successful email check:"
 msgstr "Ultimo controllo email eseguito con successo:"
 
-#: ../../mod/settings.php:789
+#: ../../mod/settings.php:814
 msgid "IMAP server name:"
 msgstr "Nome server IMAP:"
 
-#: ../../mod/settings.php:790
+#: ../../mod/settings.php:815
 msgid "IMAP port:"
 msgstr "Porta IMAP:"
 
-#: ../../mod/settings.php:791
+#: ../../mod/settings.php:816
 msgid "Security:"
 msgstr "Sicurezza:"
 
-#: ../../mod/settings.php:791 ../../mod/settings.php:796
+#: ../../mod/settings.php:816 ../../mod/settings.php:821
 msgid "None"
 msgstr "Nessuna"
 
-#: ../../mod/settings.php:792
+#: ../../mod/settings.php:817
 msgid "Email login name:"
 msgstr "Nome utente email:"
 
-#: ../../mod/settings.php:793
+#: ../../mod/settings.php:818
 msgid "Email password:"
 msgstr "Password email:"
 
-#: ../../mod/settings.php:794
+#: ../../mod/settings.php:819
 msgid "Reply-to address:"
 msgstr "Indirizzo di risposta:"
 
-#: ../../mod/settings.php:795
+#: ../../mod/settings.php:820
 msgid "Send public posts to all email contacts:"
 msgstr "Invia i messaggi pubblici ai contatti email:"
 
-#: ../../mod/settings.php:796
+#: ../../mod/settings.php:821
 msgid "Action after import:"
 msgstr "Azione post importazione:"
 
-#: ../../mod/settings.php:796
+#: ../../mod/settings.php:821
 msgid "Mark as seen"
 msgstr "Segna come letto"
 
-#: ../../mod/settings.php:796
+#: ../../mod/settings.php:821
 msgid "Move to folder"
 msgstr "Sposta nella cartella"
 
-#: ../../mod/settings.php:797
+#: ../../mod/settings.php:822
 msgid "Move to folder:"
 msgstr "Sposta nella cartella:"
 
-#: ../../mod/settings.php:878
+#: ../../mod/settings.php:853 ../../mod/admin.php:547
+msgid "No special theme for mobile devices"
+msgstr "Nessun tema speciale per i dispositivi mobili"
+
+#: ../../mod/settings.php:903
 msgid "Display Settings"
 msgstr "Impostazioni Grafiche"
 
-#: ../../mod/settings.php:884 ../../mod/settings.php:899
+#: ../../mod/settings.php:909 ../../mod/settings.php:924
 msgid "Display Theme:"
 msgstr "Tema:"
 
-#: ../../mod/settings.php:885
+#: ../../mod/settings.php:910
 msgid "Mobile Theme:"
 msgstr "Tema mobile:"
 
-#: ../../mod/settings.php:886
+#: ../../mod/settings.php:911
 msgid "Update browser every xx seconds"
 msgstr "Aggiorna il browser ogni x secondi"
 
-#: ../../mod/settings.php:886
+#: ../../mod/settings.php:911
 msgid "Minimum of 10 seconds, no maximum"
 msgstr "Minimo 10 secondi, nessun limite massimo"
 
-#: ../../mod/settings.php:887
+#: ../../mod/settings.php:912
 msgid "Number of items to display per page:"
 msgstr "Numero di elementi da mostrare per pagina:"
 
-#: ../../mod/settings.php:887 ../../mod/settings.php:888
+#: ../../mod/settings.php:912 ../../mod/settings.php:913
 msgid "Maximum of 100 items"
 msgstr "Massimo 100 voci"
 
-#: ../../mod/settings.php:888
+#: ../../mod/settings.php:913
 msgid "Number of items to display per page when viewed from mobile device:"
 msgstr "Numero di voci da visualizzare per pagina quando si utilizza un dispositivo mobile:"
 
-#: ../../mod/settings.php:889
+#: ../../mod/settings.php:914
 msgid "Don't show emoticons"
 msgstr "Non mostrare le emoticons"
 
-#: ../../mod/settings.php:890
+#: ../../mod/settings.php:915
 msgid "Don't show notices"
 msgstr "Non mostrare gli avvisi"
 
-#: ../../mod/settings.php:891
+#: ../../mod/settings.php:916
 msgid "Infinite scroll"
 msgstr "Scroll infinito"
 
-#: ../../mod/settings.php:892
+#: ../../mod/settings.php:917
 msgid "Automatic updates only at the top of the network page"
 msgstr "Aggiornamenti automatici solo in cima alla pagina \"rete\""
 
-#: ../../mod/settings.php:969
+#: ../../mod/settings.php:994
 msgid "User Types"
 msgstr "Tipi di Utenti"
 
-#: ../../mod/settings.php:970
+#: ../../mod/settings.php:995
 msgid "Community Types"
 msgstr "Tipi di Comunità"
 
-#: ../../mod/settings.php:971
+#: ../../mod/settings.php:996
 msgid "Normal Account Page"
 msgstr "Pagina Account Normale"
 
-#: ../../mod/settings.php:972
+#: ../../mod/settings.php:997
 msgid "This account is a normal personal profile"
 msgstr "Questo account è un normale profilo personale"
 
-#: ../../mod/settings.php:975
+#: ../../mod/settings.php:1000
 msgid "Soapbox Page"
 msgstr "Pagina Sandbox"
 
-#: ../../mod/settings.php:976
+#: ../../mod/settings.php:1001
 msgid "Automatically approve all connection/friend requests as read-only fans"
 msgstr "Chi richiede la connessione/amicizia sarà accettato automaticamente come fan che potrà solamente leggere la bacheca"
 
-#: ../../mod/settings.php:979
+#: ../../mod/settings.php:1004
 msgid "Community Forum/Celebrity Account"
 msgstr "Account Celebrità/Forum comunitario"
 
-#: ../../mod/settings.php:980
+#: ../../mod/settings.php:1005
 msgid ""
 "Automatically approve all connection/friend requests as read-write fans"
 msgstr "Chi richiede la connessione/amicizia sarà accettato automaticamente come fan che potrà leggere e scrivere sulla bacheca"
 
-#: ../../mod/settings.php:983
+#: ../../mod/settings.php:1008
 msgid "Automatic Friend Page"
 msgstr "Pagina con amicizia automatica"
 
-#: ../../mod/settings.php:984
+#: ../../mod/settings.php:1009
 msgid "Automatically approve all connection/friend requests as friends"
 msgstr "Chi richiede la connessione/amicizia sarà accettato automaticamente come amico"
 
-#: ../../mod/settings.php:987
+#: ../../mod/settings.php:1012
 msgid "Private Forum [Experimental]"
 msgstr "Forum privato [sperimentale]"
 
-#: ../../mod/settings.php:988
+#: ../../mod/settings.php:1013
 msgid "Private forum - approved members only"
 msgstr "Forum privato - solo membri approvati"
 
-#: ../../mod/settings.php:1000
+#: ../../mod/settings.php:1025
 msgid "OpenID:"
 msgstr "OpenID:"
 
-#: ../../mod/settings.php:1000
+#: ../../mod/settings.php:1025
 msgid "(Optional) Allow this OpenID to login to this account."
 msgstr "(Opzionale) Consente di loggarti in questo account con questo OpenID"
 
-#: ../../mod/settings.php:1010
+#: ../../mod/settings.php:1035
 msgid "Publish your default profile in your local site directory?"
 msgstr "Pubblica il tuo profilo predefinito nell'elenco locale del sito"
 
-#: ../../mod/settings.php:1010 ../../mod/settings.php:1016
-#: ../../mod/settings.php:1024 ../../mod/settings.php:1028
-#: ../../mod/settings.php:1033 ../../mod/settings.php:1039
-#: ../../mod/settings.php:1045 ../../mod/settings.php:1051
-#: ../../mod/settings.php:1081 ../../mod/settings.php:1082
-#: ../../mod/settings.php:1083 ../../mod/settings.php:1084
-#: ../../mod/settings.php:1085 ../../mod/dfrn_request.php:830
-#: ../../mod/register.php:234 ../../mod/profiles.php:661
-#: ../../mod/profiles.php:665 ../../mod/api.php:106
+#: ../../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:1106 ../../mod/settings.php:1107
+#: ../../mod/settings.php:1108 ../../mod/settings.php:1109
+#: ../../mod/settings.php:1110 ../../mod/register.php:234
+#: ../../mod/dfrn_request.php:845 ../../mod/api.php:106
+#: ../../mod/follow.php:54 ../../mod/profiles.php:661
+#: ../../mod/profiles.php:665
 msgid "No"
 msgstr "No"
 
-#: ../../mod/settings.php:1016
+#: ../../mod/settings.php:1041
 msgid "Publish your default profile in the global social directory?"
 msgstr "Pubblica il tuo profilo predefinito nell'elenco sociale globale"
 
-#: ../../mod/settings.php:1024
+#: ../../mod/settings.php:1049
 msgid "Hide your contact/friend list from viewers of your default profile?"
 msgstr "Nascondi la lista dei tuoi contatti/amici dai visitatori del tuo profilo predefinito"
 
-#: ../../mod/settings.php:1028 ../../include/conversation.php:1057
-msgid "Hide your profile details from unknown viewers?"
-msgstr "Nascondi i dettagli del tuo profilo ai visitatori sconosciuti?"
-
-#: ../../mod/settings.php:1028
+#: ../../mod/settings.php:1053
 msgid ""
 "If enabled, posting public messages to Diaspora and other networks isn't "
 "possible."
-msgstr ""
+msgstr "Se abilitato, l'invio di messaggi pubblici verso Diaspora e altri network non sarà possibile"
 
-#: ../../mod/settings.php:1033
+#: ../../mod/settings.php:1058
 msgid "Allow friends to post to your profile page?"
 msgstr "Permetti agli amici di scrivere sulla tua pagina profilo?"
 
-#: ../../mod/settings.php:1039
+#: ../../mod/settings.php:1064
 msgid "Allow friends to tag your posts?"
 msgstr "Permetti agli amici di taggare i tuoi messaggi?"
 
-#: ../../mod/settings.php:1045
+#: ../../mod/settings.php:1070
 msgid "Allow us to suggest you as a potential friend to new members?"
 msgstr "Ci permetti di suggerirti come potenziale amico ai nuovi membri?"
 
-#: ../../mod/settings.php:1051
+#: ../../mod/settings.php:1076
 msgid "Permit unknown people to send you private mail?"
 msgstr "Permetti a utenti sconosciuti di inviarti messaggi privati?"
 
-#: ../../mod/settings.php:1059
+#: ../../mod/settings.php:1084
 msgid "Profile is <strong>not published</strong>."
 msgstr "Il profilo <strong>non è pubblicato</strong>."
 
-#: ../../mod/settings.php:1067
+#: ../../mod/settings.php:1087 ../../mod/profile_photo.php:248
+msgid "or"
+msgstr "o"
+
+#: ../../mod/settings.php:1092
 msgid "Your Identity Address is"
 msgstr "L'indirizzo della tua identità è"
 
-#: ../../mod/settings.php:1078
+#: ../../mod/settings.php:1103
 msgid "Automatically expire posts after this many days:"
 msgstr "Fai scadere i post automaticamente dopo x giorni:"
 
-#: ../../mod/settings.php:1078
+#: ../../mod/settings.php:1103
 msgid "If empty, posts will not expire. Expired posts will be deleted"
 msgstr "Se lasciato vuoto, i messaggi non verranno cancellati."
 
-#: ../../mod/settings.php:1079
+#: ../../mod/settings.php:1104
 msgid "Advanced expiration settings"
 msgstr "Impostazioni avanzate di scandenza"
 
-#: ../../mod/settings.php:1080
+#: ../../mod/settings.php:1105
 msgid "Advanced Expiration"
 msgstr "Scadenza avanzata"
 
-#: ../../mod/settings.php:1081
+#: ../../mod/settings.php:1106
 msgid "Expire posts:"
 msgstr "Fai scadere i post:"
 
-#: ../../mod/settings.php:1082
+#: ../../mod/settings.php:1107
 msgid "Expire personal notes:"
 msgstr "Fai scadere le Note personali:"
 
-#: ../../mod/settings.php:1083
+#: ../../mod/settings.php:1108
 msgid "Expire starred posts:"
 msgstr "Fai scadere i post Speciali:"
 
-#: ../../mod/settings.php:1084
+#: ../../mod/settings.php:1109
 msgid "Expire photos:"
 msgstr "Fai scadere le foto:"
 
-#: ../../mod/settings.php:1085
+#: ../../mod/settings.php:1110
 msgid "Only expire posts by others:"
 msgstr "Fai scadere solo i post degli altri:"
 
-#: ../../mod/settings.php:1111
+#: ../../mod/settings.php:1136
 msgid "Account Settings"
 msgstr "Impostazioni account"
 
-#: ../../mod/settings.php:1119
+#: ../../mod/settings.php:1144
 msgid "Password Settings"
 msgstr "Impostazioni password"
 
-#: ../../mod/settings.php:1120
+#: ../../mod/settings.php:1145
 msgid "New Password:"
 msgstr "Nuova password:"
 
-#: ../../mod/settings.php:1121
+#: ../../mod/settings.php:1146
 msgid "Confirm:"
 msgstr "Conferma:"
 
-#: ../../mod/settings.php:1121
+#: ../../mod/settings.php:1146
 msgid "Leave password fields blank unless changing"
 msgstr "Lascia questi campi in bianco per non effettuare variazioni alla password"
 
-#: ../../mod/settings.php:1122
+#: ../../mod/settings.php:1147
 msgid "Current Password:"
 msgstr "Password Attuale:"
 
-#: ../../mod/settings.php:1122 ../../mod/settings.php:1123
+#: ../../mod/settings.php:1147 ../../mod/settings.php:1148
 msgid "Your current password to confirm the changes"
 msgstr "La tua password attuale per confermare le modifiche"
 
-#: ../../mod/settings.php:1123
+#: ../../mod/settings.php:1148
 msgid "Password:"
 msgstr "Password:"
 
-#: ../../mod/settings.php:1127
+#: ../../mod/settings.php:1152
 msgid "Basic Settings"
 msgstr "Impostazioni base"
 
-#: ../../mod/settings.php:1128 ../../include/profile_advanced.php:15
-msgid "Full Name:"
-msgstr "Nome completo:"
-
-#: ../../mod/settings.php:1129
+#: ../../mod/settings.php:1154
 msgid "Email Address:"
 msgstr "Indirizzo Email:"
 
-#: ../../mod/settings.php:1130
+#: ../../mod/settings.php:1155
 msgid "Your Timezone:"
 msgstr "Il tuo fuso orario:"
 
-#: ../../mod/settings.php:1131
+#: ../../mod/settings.php:1156
 msgid "Default Post Location:"
 msgstr "Località predefinita:"
 
-#: ../../mod/settings.php:1132
+#: ../../mod/settings.php:1157
 msgid "Use Browser Location:"
 msgstr "Usa la località rilevata dal browser:"
 
-#: ../../mod/settings.php:1135
+#: ../../mod/settings.php:1160
 msgid "Security and Privacy Settings"
 msgstr "Impostazioni di sicurezza e privacy"
 
-#: ../../mod/settings.php:1137
+#: ../../mod/settings.php:1162
 msgid "Maximum Friend Requests/Day:"
 msgstr "Numero massimo di richieste di amicizia al giorno:"
 
-#: ../../mod/settings.php:1137 ../../mod/settings.php:1167
+#: ../../mod/settings.php:1162 ../../mod/settings.php:1192
 msgid "(to prevent spam abuse)"
 msgstr "(per prevenire lo spam)"
 
-#: ../../mod/settings.php:1138
+#: ../../mod/settings.php:1163
 msgid "Default Post Permissions"
 msgstr "Permessi predefiniti per i messaggi"
 
-#: ../../mod/settings.php:1139
+#: ../../mod/settings.php:1164
 msgid "(click to open/close)"
 msgstr "(clicca per aprire/chiudere)"
 
-#: ../../mod/settings.php:1148 ../../mod/photos.php:1146
+#: ../../mod/settings.php:1173 ../../mod/photos.php:1146
 #: ../../mod/photos.php:1519
 msgid "Show to Groups"
 msgstr "Mostra ai gruppi"
 
-#: ../../mod/settings.php:1149 ../../mod/photos.php:1147
+#: ../../mod/settings.php:1174 ../../mod/photos.php:1147
 #: ../../mod/photos.php:1520
 msgid "Show to Contacts"
 msgstr "Mostra ai contatti"
 
-#: ../../mod/settings.php:1150
+#: ../../mod/settings.php:1175
 msgid "Default Private Post"
 msgstr "Default Post Privato"
 
-#: ../../mod/settings.php:1151
+#: ../../mod/settings.php:1176
 msgid "Default Public Post"
 msgstr "Default Post Pubblico"
 
-#: ../../mod/settings.php:1155
+#: ../../mod/settings.php:1180
 msgid "Default Permissions for New Posts"
 msgstr "Permessi predefiniti per i nuovi post"
 
-#: ../../mod/settings.php:1167
+#: ../../mod/settings.php:1192
 msgid "Maximum private messages per day from unknown people:"
 msgstr "Numero massimo di messaggi privati da utenti sconosciuti per giorno:"
 
-#: ../../mod/settings.php:1170
+#: ../../mod/settings.php:1195
 msgid "Notification Settings"
 msgstr "Impostazioni notifiche"
 
-#: ../../mod/settings.php:1171
+#: ../../mod/settings.php:1196
 msgid "By default post a status message when:"
 msgstr "Invia un messaggio di stato quando:"
 
-#: ../../mod/settings.php:1172
+#: ../../mod/settings.php:1197
 msgid "accepting a friend request"
 msgstr "accetti una richiesta di amicizia"
 
-#: ../../mod/settings.php:1173
+#: ../../mod/settings.php:1198
 msgid "joining a forum/community"
 msgstr "ti unisci a un forum/comunità"
 
-#: ../../mod/settings.php:1174
+#: ../../mod/settings.php:1199
 msgid "making an <em>interesting</em> profile change"
 msgstr "fai un <em>interessante</em> modifica al profilo"
 
-#: ../../mod/settings.php:1175
+#: ../../mod/settings.php:1200
 msgid "Send a notification email when:"
 msgstr "Invia una mail di notifica quando:"
 
-#: ../../mod/settings.php:1176
+#: ../../mod/settings.php:1201
 msgid "You receive an introduction"
 msgstr "Ricevi una presentazione"
 
-#: ../../mod/settings.php:1177
+#: ../../mod/settings.php:1202
 msgid "Your introductions are confirmed"
 msgstr "Le tue presentazioni sono confermate"
 
-#: ../../mod/settings.php:1178
+#: ../../mod/settings.php:1203
 msgid "Someone writes on your profile wall"
 msgstr "Qualcuno scrive sulla bacheca del tuo profilo"
 
-#: ../../mod/settings.php:1179
+#: ../../mod/settings.php:1204
 msgid "Someone writes a followup comment"
 msgstr "Qualcuno scrive un commento a un tuo messaggio"
 
-#: ../../mod/settings.php:1180
+#: ../../mod/settings.php:1205
 msgid "You receive a private message"
 msgstr "Ricevi un messaggio privato"
 
-#: ../../mod/settings.php:1181
+#: ../../mod/settings.php:1206
 msgid "You receive a friend suggestion"
 msgstr "Hai ricevuto un suggerimento di amicizia"
 
-#: ../../mod/settings.php:1182
+#: ../../mod/settings.php:1207
 msgid "You are tagged in a post"
 msgstr "Sei stato taggato in un post"
 
-#: ../../mod/settings.php:1183
+#: ../../mod/settings.php:1208
 msgid "You are poked/prodded/etc. in a post"
 msgstr "Sei 'toccato'/'spronato'/ecc. in un post"
 
-#: ../../mod/settings.php:1185
-msgid "Text-only notification emails"
+#: ../../mod/settings.php:1210
+msgid "Activate desktop notifications"
 msgstr ""
 
-#: ../../mod/settings.php:1187
-msgid "Send text only notification emails, without the html part"
+#: ../../mod/settings.php:1211
+msgid ""
+"Note: This is an experimental feature, as being not supported by each "
+"browser"
+msgstr ""
+
+#: ../../mod/settings.php:1212
+msgid "You will now receive desktop notifications!"
 msgstr ""
 
-#: ../../mod/settings.php:1189
+#: ../../mod/settings.php:1214
+msgid "Text-only notification emails"
+msgstr "Email di notifica in solo testo"
+
+#: ../../mod/settings.php:1216
+msgid "Send text only notification emails, without the html part"
+msgstr "Invia le email di notifica in solo testo, senza la parte in html"
+
+#: ../../mod/settings.php:1218
 msgid "Advanced Account/Page Type Settings"
 msgstr "Impostazioni avanzate Account/Tipo di pagina"
 
-#: ../../mod/settings.php:1190
+#: ../../mod/settings.php:1219
 msgid "Change the behaviour of this account for special situations"
 msgstr "Modifica il comportamento di questo account in situazioni speciali"
 
-#: ../../mod/settings.php:1193
+#: ../../mod/settings.php:1222
 msgid "Relocate"
 msgstr "Trasloca"
 
-#: ../../mod/settings.php:1194
+#: ../../mod/settings.php:1223
 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 "Se hai spostato questo profilo da un'altro server, e alcuni dei tuoi contatti non ricevono i tuoi aggiornamenti, prova a premere questo bottone."
 
-#: ../../mod/settings.php:1195
+#: ../../mod/settings.php:1224
 msgid "Resend relocate message to contacts"
 msgstr "Reinvia il messaggio di trasloco"
 
-#: ../../mod/dfrn_request.php:95
-msgid "This introduction has already been accepted."
-msgstr "Questa presentazione è già stata accettata."
+#: ../../mod/common.php:42
+msgid "Common Friends"
+msgstr "Amici in comune"
 
-#: ../../mod/dfrn_request.php:120 ../../mod/dfrn_request.php:518
-msgid "Profile location is not valid or does not contain profile information."
-msgstr "L'indirizzo del profilo non è valido o non contiene un profilo."
+#: ../../mod/common.php:78
+msgid "No contacts in common."
+msgstr "Nessun contatto in comune."
 
-#: ../../mod/dfrn_request.php:125 ../../mod/dfrn_request.php:523
-msgid "Warning: profile location has no identifiable owner name."
-msgstr "Attenzione: l'indirizzo del profilo non riporta il nome del proprietario."
+#: ../../mod/lockview.php:31 ../../mod/lockview.php:39
+msgid "Remote privacy information not available."
+msgstr "Informazioni remote sulla privacy non disponibili."
 
-#: ../../mod/dfrn_request.php:127 ../../mod/dfrn_request.php:525
-msgid "Warning: profile location has no profile photo."
-msgstr "Attenzione: l'indirizzo del profilo non ha una foto."
+#: ../../mod/lockview.php:48
+msgid "Visible to:"
+msgstr "Visibile a:"
 
-#: ../../mod/dfrn_request.php:130 ../../mod/dfrn_request.php:528
+#: ../../mod/contacts.php:114
 #, 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 parametro richiesto non è stato trovato all'indirizzo dato"
-msgstr[1] "%d parametri richiesti non sono stati trovati all'indirizzo dato"
+msgid "%d contact edited."
+msgid_plural "%d contacts edited"
+msgstr[0] "%d contatto modificato"
+msgstr[1] "%d contatti modificati"
 
-#: ../../mod/dfrn_request.php:172
-msgid "Introduction complete."
-msgstr "Presentazione completa."
+#: ../../mod/contacts.php:145 ../../mod/contacts.php:340
+msgid "Could not access contact record."
+msgstr "Non è possibile accedere al contatto."
 
-#: ../../mod/dfrn_request.php:214
-msgid "Unrecoverable protocol error."
-msgstr "Errore di comunicazione."
+#: ../../mod/contacts.php:159
+msgid "Could not locate selected profile."
+msgstr "Non riesco a trovare il profilo selezionato."
 
-#: ../../mod/dfrn_request.php:242
-msgid "Profile unavailable."
-msgstr "Profilo non disponibile."
+#: ../../mod/contacts.php:192
+msgid "Contact updated."
+msgstr "Contatto aggiornato."
 
-#: ../../mod/dfrn_request.php:267
-#, php-format
-msgid "%s has received too many connection requests today."
-msgstr "%s ha ricevuto troppe richieste di connessione per oggi."
+#: ../../mod/contacts.php:194 ../../mod/dfrn_request.php:576
+msgid "Failed to update contact record."
+msgstr "Errore nell'aggiornamento del contatto."
 
-#: ../../mod/dfrn_request.php:268
-msgid "Spam protection measures have been invoked."
-msgstr "Sono state attivate le misure di protezione contro lo spam."
+#: ../../mod/contacts.php:361
+msgid "Contact has been blocked"
+msgstr "Il contatto è stato bloccato"
 
-#: ../../mod/dfrn_request.php:269
-msgid "Friends are advised to please try again in 24 hours."
-msgstr "Gli amici sono pregati di riprovare tra 24 ore."
+#: ../../mod/contacts.php:361
+msgid "Contact has been unblocked"
+msgstr "Il contatto è stato sbloccato"
 
-#: ../../mod/dfrn_request.php:331
-msgid "Invalid locator"
-msgstr "Invalid locator"
+#: ../../mod/contacts.php:372
+msgid "Contact has been ignored"
+msgstr "Il contatto è ignorato"
 
-#: ../../mod/dfrn_request.php:340
-msgid "Invalid email address."
-msgstr "Indirizzo email non valido."
+#: ../../mod/contacts.php:372
+msgid "Contact has been unignored"
+msgstr "Il contatto non è più ignorato"
 
-#: ../../mod/dfrn_request.php:367
-msgid "This account has not been configured for email. Request failed."
-msgstr "Questo account non è stato configurato per l'email. Richiesta fallita."
+#: ../../mod/contacts.php:384
+msgid "Contact has been archived"
+msgstr "Il contatto è stato archiviato"
 
-#: ../../mod/dfrn_request.php:463
-msgid "Unable to resolve your name at the provided location."
-msgstr "Impossibile risolvere il tuo nome nella posizione indicata."
+#: ../../mod/contacts.php:384
+msgid "Contact has been unarchived"
+msgstr "Il contatto è stato dearchiviato"
 
-#: ../../mod/dfrn_request.php:476
-msgid "You have already introduced yourself here."
-msgstr "Ti sei già presentato qui."
+#: ../../mod/contacts.php:409 ../../mod/contacts.php:797
+msgid "Do you really want to delete this contact?"
+msgstr "Vuoi veramente cancellare questo contatto?"
 
-#: ../../mod/dfrn_request.php:480
+#: ../../mod/contacts.php:426
+msgid "Contact has been removed."
+msgstr "Il contatto è stato rimosso."
+
+#: ../../mod/contacts.php:464
 #, php-format
-msgid "Apparently you are already friends with %s."
-msgstr "Pare che tu e %s siate già amici."
+msgid "You are mutual friends with %s"
+msgstr "Sei amico reciproco con %s"
 
-#: ../../mod/dfrn_request.php:501
-msgid "Invalid profile URL."
-msgstr "Indirizzo profilo non valido."
+#: ../../mod/contacts.php:468
+#, php-format
+msgid "You are sharing with %s"
+msgstr "Stai condividendo con %s"
 
-#: ../../mod/dfrn_request.php:507 ../../include/follow.php:27
-msgid "Disallowed profile URL."
-msgstr "Indirizzo profilo non permesso."
+#: ../../mod/contacts.php:473
+#, php-format
+msgid "%s is sharing with you"
+msgstr "%s sta condividendo con te"
 
-#: ../../mod/dfrn_request.php:597
-msgid "Your introduction has been sent."
-msgstr "La tua presentazione è stata inviata."
+#: ../../mod/contacts.php:493
+msgid "Private communications are not available for this contact."
+msgstr "Le comunicazioni private non sono disponibili per questo contatto."
 
-#: ../../mod/dfrn_request.php:650
-msgid "Please login to confirm introduction."
-msgstr "Accedi per confermare la presentazione."
+#: ../../mod/contacts.php:496 ../../mod/admin.php:571
+msgid "Never"
+msgstr "Mai"
 
-#: ../../mod/dfrn_request.php:660
-msgid ""
-"Incorrect identity currently logged in. Please login to "
-"<strong>this</strong> profile."
-msgstr "Non hai fatto accesso con l'identità corretta. Accedi a <strong>questo</strong> profilo."
+#: ../../mod/contacts.php:500
+msgid "(Update was successful)"
+msgstr "(L'aggiornamento è stato completato)"
 
-#: ../../mod/dfrn_request.php:671
-msgid "Hide this contact"
-msgstr "Nascondi questo contatto"
+#: ../../mod/contacts.php:500
+msgid "(Update was not successful)"
+msgstr "(L'aggiornamento non è stato completato)"
 
-#: ../../mod/dfrn_request.php:674
-#, php-format
-msgid "Welcome home %s."
-msgstr "Bentornato a casa %s."
+#: ../../mod/contacts.php:502
+msgid "Suggest friends"
+msgstr "Suggerisci amici"
 
-#: ../../mod/dfrn_request.php:675
+#: ../../mod/contacts.php:506
 #, php-format
-msgid "Please confirm your introduction/connection request to %s."
-msgstr "Conferma la tua richiesta di connessione con %s."
+msgid "Network type: %s"
+msgstr "Tipo di rete: %s"
 
-#: ../../mod/dfrn_request.php:676
-msgid "Confirm"
-msgstr "Conferma"
+#: ../../mod/contacts.php:514
+msgid "View all contacts"
+msgstr "Vedi tutti i contatti"
 
-#: ../../mod/dfrn_request.php:804
-msgid ""
-"Please enter your 'Identity Address' from one of the following supported "
-"communications networks:"
-msgstr "Inserisci il tuo 'Indirizzo Identità' da uno dei seguenti network supportati:"
+#: ../../mod/contacts.php:519 ../../mod/contacts.php:588
+#: ../../mod/contacts.php:800 ../../mod/admin.php:1012
+msgid "Unblock"
+msgstr "Sblocca"
 
-#: ../../mod/dfrn_request.php:824
-msgid ""
-"If you are not yet a member of the free social web, <a "
-"href=\"http://dir.friendica.com/siteinfo\">follow this link to find a public"
-" Friendica site and join us today</a>."
-msgstr "Se non sei un membro del web sociale libero,  <a href=\"http://dir.friendica.com/siteinfo\">segui questo link per trovare un sito Friendica pubblico e unisciti a noi oggi</a>"
+#: ../../mod/contacts.php:519 ../../mod/contacts.php:588
+#: ../../mod/contacts.php:800 ../../mod/admin.php:1011
+msgid "Block"
+msgstr "Blocca"
 
-#: ../../mod/dfrn_request.php:827
-msgid "Friend/Connection Request"
-msgstr "Richieste di amicizia/connessione"
+#: ../../mod/contacts.php:522
+msgid "Toggle Blocked status"
+msgstr "Inverti stato \"Blocca\""
 
-#: ../../mod/dfrn_request.php:828
-msgid ""
-"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, "
-"testuser@identi.ca"
-msgstr "Esempi: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"
+#: ../../mod/contacts.php:525 ../../mod/contacts.php:589
+#: ../../mod/contacts.php:801
+msgid "Unignore"
+msgstr "Non ignorare"
 
-#: ../../mod/dfrn_request.php:829
-msgid "Please answer the following:"
-msgstr "Rispondi:"
+#: ../../mod/contacts.php:528
+msgid "Toggle Ignored status"
+msgstr "Inverti stato \"Ignora\""
 
-#: ../../mod/dfrn_request.php:830
-#, php-format
-msgid "Does %s know you?"
-msgstr "%s ti conosce?"
+#: ../../mod/contacts.php:532 ../../mod/contacts.php:802
+msgid "Unarchive"
+msgstr "Dearchivia"
 
-#: ../../mod/dfrn_request.php:834
-msgid "Add a personal note:"
-msgstr "Aggiungi una nota personale:"
+#: ../../mod/contacts.php:532 ../../mod/contacts.php:802
+msgid "Archive"
+msgstr "Archivia"
 
-#: ../../mod/dfrn_request.php:836 ../../include/contact_selectors.php:76
-msgid "Friendica"
-msgstr "Friendica"
+#: ../../mod/contacts.php:535
+msgid "Toggle Archive status"
+msgstr "Inverti stato \"Archiviato\""
 
-#: ../../mod/dfrn_request.php:837
-msgid "StatusNet/Federated Social Web"
-msgstr "StatusNet/Federated Social Web"
+#: ../../mod/contacts.php:538
+msgid "Repair"
+msgstr "Ripara"
 
-#: ../../mod/dfrn_request.php:839
-#, php-format
-msgid ""
-" - please do not use this form.  Instead, enter %s into your Diaspora search"
-" bar."
-msgstr " - per favore non usare questa form. Invece, inserisci %s nella tua barra di ricerca su Diaspora."
+#: ../../mod/contacts.php:541
+msgid "Advanced Contact Settings"
+msgstr "Impostazioni avanzate Contatto"
 
-#: ../../mod/dfrn_request.php:840
-msgid "Your Identity Address:"
-msgstr "L'indirizzo della tua identità:"
+#: ../../mod/contacts.php:547
+msgid "Communications lost with this contact!"
+msgstr "Comunicazione con questo contatto persa!"
 
-#: ../../mod/dfrn_request.php:843
-msgid "Submit Request"
-msgstr "Invia richiesta"
+#: ../../mod/contacts.php:550
+msgid "Fetch further information for feeds"
+msgstr "Recupera maggiori infomazioni per i feed"
+
+#: ../../mod/contacts.php:551
+msgid "Disabled"
+msgstr "Disabilitato"
+
+#: ../../mod/contacts.php:551
+msgid "Fetch information"
+msgstr "Recupera informazioni"
+
+#: ../../mod/contacts.php:551
+msgid "Fetch information and keywords"
+msgstr "Recupera informazioni e parole chiave"
+
+#: ../../mod/contacts.php:560
+msgid "Contact Editor"
+msgstr "Editor dei Contatti"
+
+#: ../../mod/contacts.php:563
+msgid "Profile Visibility"
+msgstr "Visibilità del profilo"
+
+#: ../../mod/contacts.php:564
+#, php-format
+msgid ""
+"Please choose the profile you would like to display to %s when viewing your "
+"profile securely."
+msgstr "Seleziona il profilo che vuoi mostrare a %s quando visita il tuo profilo in modo sicuro."
+
+#: ../../mod/contacts.php:565
+msgid "Contact Information / Notes"
+msgstr "Informazioni / Note sul contatto"
+
+#: ../../mod/contacts.php:566
+msgid "Edit contact notes"
+msgstr "Modifica note contatto"
+
+#: ../../mod/contacts.php:571 ../../mod/contacts.php:765
+#: ../../mod/nogroup.php:40 ../../mod/viewcontacts.php:64
+#, php-format
+msgid "Visit %s's profile [%s]"
+msgstr "Visita il profilo di %s [%s]"
+
+#: ../../mod/contacts.php:572
+msgid "Block/Unblock contact"
+msgstr "Blocca/Sblocca contatto"
+
+#: ../../mod/contacts.php:573
+msgid "Ignore contact"
+msgstr "Ignora il contatto"
+
+#: ../../mod/contacts.php:574
+msgid "Repair URL settings"
+msgstr "Impostazioni riparazione URL"
+
+#: ../../mod/contacts.php:575
+msgid "View conversations"
+msgstr "Vedi conversazioni"
+
+#: ../../mod/contacts.php:577
+msgid "Delete contact"
+msgstr "Rimuovi contatto"
+
+#: ../../mod/contacts.php:581
+msgid "Last update:"
+msgstr "Ultimo aggiornamento:"
+
+#: ../../mod/contacts.php:583
+msgid "Update public posts"
+msgstr "Aggiorna messaggi pubblici"
+
+#: ../../mod/contacts.php:585 ../../mod/admin.php:1506
+msgid "Update now"
+msgstr "Aggiorna adesso"
+
+#: ../../mod/contacts.php:592
+msgid "Currently blocked"
+msgstr "Bloccato"
+
+#: ../../mod/contacts.php:593
+msgid "Currently ignored"
+msgstr "Ignorato"
+
+#: ../../mod/contacts.php:594
+msgid "Currently archived"
+msgstr "Al momento archiviato"
+
+#: ../../mod/contacts.php:595
+msgid ""
+"Replies/likes to your public posts <strong>may</strong> still be visible"
+msgstr "Risposte ai tuoi post pubblici <strong>possono</strong> essere comunque visibili"
+
+#: ../../mod/contacts.php:596
+msgid "Notification for new posts"
+msgstr "Notifica per i nuovi messaggi"
+
+#: ../../mod/contacts.php:596
+msgid "Send a notification of every new post of this contact"
+msgstr "Invia una notifica per ogni nuovo messaggio di questo contatto"
+
+#: ../../mod/contacts.php:599
+msgid "Blacklisted keywords"
+msgstr "Parole chiave in blacklist"
+
+#: ../../mod/contacts.php:599
+msgid ""
+"Comma separated list of keywords that should not be converted to hashtags, "
+"when \"Fetch information and keywords\" is selected"
+msgstr "Lista separata da virgola di parole chiave che non dovranno essere convertite in hastag, quando \"Recupera informazioni e parole chiave\" è selezionato"
+
+#: ../../mod/contacts.php:650
+msgid "Suggestions"
+msgstr "Suggerimenti"
+
+#: ../../mod/contacts.php:653
+msgid "Suggest potential friends"
+msgstr "Suggerisci potenziali amici"
+
+#: ../../mod/contacts.php:659
+msgid "Show all contacts"
+msgstr "Mostra tutti i contatti"
+
+#: ../../mod/contacts.php:662
+msgid "Unblocked"
+msgstr "Sbloccato"
+
+#: ../../mod/contacts.php:665
+msgid "Only show unblocked contacts"
+msgstr "Mostra solo contatti non bloccati"
+
+#: ../../mod/contacts.php:669
+msgid "Blocked"
+msgstr "Bloccato"
+
+#: ../../mod/contacts.php:672
+msgid "Only show blocked contacts"
+msgstr "Mostra solo contatti bloccati"
+
+#: ../../mod/contacts.php:676
+msgid "Ignored"
+msgstr "Ignorato"
+
+#: ../../mod/contacts.php:679
+msgid "Only show ignored contacts"
+msgstr "Mostra solo contatti ignorati"
+
+#: ../../mod/contacts.php:683
+msgid "Archived"
+msgstr "Achiviato"
+
+#: ../../mod/contacts.php:686
+msgid "Only show archived contacts"
+msgstr "Mostra solo contatti archiviati"
+
+#: ../../mod/contacts.php:690
+msgid "Hidden"
+msgstr "Nascosto"
+
+#: ../../mod/contacts.php:693
+msgid "Only show hidden contacts"
+msgstr "Mostra solo contatti nascosti"
+
+#: ../../mod/contacts.php:741
+msgid "Mutual Friendship"
+msgstr "Amicizia reciproca"
+
+#: ../../mod/contacts.php:745
+msgid "is a fan of yours"
+msgstr "è un tuo fan"
+
+#: ../../mod/contacts.php:749
+msgid "you are a fan of"
+msgstr "sei un fan di"
+
+#: ../../mod/contacts.php:766 ../../mod/nogroup.php:41
+msgid "Edit contact"
+msgstr "Modifca contatto"
+
+#: ../../mod/contacts.php:792
+msgid "Search your contacts"
+msgstr "Cerca nei tuoi contatti"
+
+#: ../../mod/contacts.php:793 ../../mod/directory.php:61
+msgid "Finding: "
+msgstr "Ricerca: "
+
+#: ../../mod/wall_attach.php:75
+msgid "Sorry, maybe your upload is bigger than the PHP configuration allows"
+msgstr "Mi spiace, forse il fie che stai caricando è più grosso di quanto la configurazione di PHP permetta"
+
+#: ../../mod/wall_attach.php:75
+msgid "Or - did you try to upload an empty file?"
+msgstr "O.. non avrai provato a caricare un file vuoto?"
+
+#: ../../mod/wall_attach.php:81
+#, php-format
+msgid "File exceeds size limit of %d"
+msgstr "Il file supera la dimensione massima di %d"
+
+#: ../../mod/wall_attach.php:122 ../../mod/wall_attach.php:133
+msgid "File upload failed."
+msgstr "Caricamento del file non riuscito."
+
+#: ../../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
+msgid "[Embedded content - reload page to view]"
+msgstr "[Contenuto incorporato - ricarica la pagina per visualizzarlo correttamente]"
+
+#: ../../mod/uexport.php:77
+msgid "Export account"
+msgstr "Esporta account"
+
+#: ../../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 "Esporta le informazioni del tuo account e dei contatti. Usa questa funzione per fare un backup del tuo account o per spostarlo in un altro server."
+
+#: ../../mod/uexport.php:78
+msgid "Export all"
+msgstr "Esporta tutto"
+
+#: ../../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 "Esporta le informazioni del tuo account, i tuoi contatti e tutti i tuoi elementi in json. Puo' diventare un file veramente molto grosso e metterci un sacco di tempo. Usa questa funzione per fare un backup completo del tuo account (le foto non sono esportate)"
 
 #: ../../mod/register.php:90
 msgid ""
@@ -4450,7 +4554,7 @@ msgstr "Registrazione completata. Controlla la tua mail per ulteriori informazio
 msgid ""
 "Failed to send email message. Here your accout details:<br> login: %s<br> "
 "password: %s<br><br>You can change your password after login."
-msgstr ""
+msgstr "Si è verificato un errore inviando l'email. I dettagli del tuo account:<br> login: %s<br> password: %s<br><br>Puoi cambiare la password dopo il login."
 
 #: ../../mod/register.php:105
 msgid "Your registration can not be processed."
@@ -4494,6 +4598,10 @@ msgstr "La registrazione su questo sito è solo su invito."
 msgid "Your invitation ID: "
 msgstr "L'ID del tuo invito:"
 
+#: ../../mod/register.php:255 ../../mod/admin.php:623
+msgid "Registration"
+msgstr "Registrazione"
+
 #: ../../mod/register.php:263
 msgid "Your Full Name (e.g. Joe Smith): "
 msgstr "Il tuo nome completo (es. Mario Rossi): "
@@ -4513,10 +4621,6 @@ msgstr "Scegli un nome utente. Deve cominciare con una lettera. L'indirizzo del
 msgid "Choose a nickname: "
 msgstr "Scegli un nome utente: "
 
-#: ../../mod/register.php:269 ../../boot.php:1241 ../../include/nav.php:109
-msgid "Register"
-msgstr "Registrati"
-
 #: ../../mod/register.php:275 ../../mod/uimport.php:64
 msgid "Import"
 msgstr "Importa"
@@ -4525,3353 +4629,3327 @@ msgstr "Importa"
 msgid "Import your profile to this friendica instance"
 msgstr "Importa il tuo profilo in questo server friendica"
 
+#: ../../mod/oexchange.php:25
+msgid "Post successful."
+msgstr "Inviato!"
+
 #: ../../mod/maintenance.php:5
 msgid "System down for maintenance"
 msgstr "Sistema in manutenzione"
 
-#: ../../mod/search.php:99 ../../include/text.php:953
-#: ../../include/text.php:954 ../../include/nav.php:119
-msgid "Search"
-msgstr "Cerca"
-
-#: ../../mod/directory.php:51 ../../view/theme/diabook/theme.php:525
-msgid "Global Directory"
-msgstr "Elenco globale"
+#: ../../mod/profile.php:155 ../../mod/display.php:334
+msgid "Access to this profile has been restricted."
+msgstr "L'accesso a questo profilo è stato limitato."
 
-#: ../../mod/directory.php:59
-msgid "Find on this site"
-msgstr "Cerca nel sito"
+#: ../../mod/profile.php:180
+msgid "Tips for New Members"
+msgstr "Consigli per i Nuovi Utenti"
 
-#: ../../mod/directory.php:62
-msgid "Site Directory"
-msgstr "Elenco del sito"
+#: ../../mod/videos.php:115 ../../mod/dfrn_request.php:777
+#: ../../mod/viewcontacts.php:19 ../../mod/photos.php:920
+#: ../../mod/search.php:89 ../../mod/community.php:18
+#: ../../mod/display.php:214 ../../mod/directory.php:33
+msgid "Public access denied."
+msgstr "Accesso negato."
 
-#: ../../mod/directory.php:113 ../../mod/profiles.php:750
-msgid "Age: "
-msgstr "Età : "
+#: ../../mod/videos.php:125
+msgid "No videos selected"
+msgstr "Nessun video selezionato"
 
-#: ../../mod/directory.php:116
-msgid "Gender: "
-msgstr "Genere:"
+#: ../../mod/videos.php:226 ../../mod/photos.php:1031
+msgid "Access to this item is restricted."
+msgstr "Questo oggetto non è visibile a tutti."
 
-#: ../../mod/directory.php:138 ../../boot.php:1650
-#: ../../include/profile_advanced.php:17
-msgid "Gender:"
-msgstr "Genere:"
+#: ../../mod/videos.php:308 ../../mod/photos.php:1808
+msgid "View Album"
+msgstr "Sfoglia l'album"
 
-#: ../../mod/directory.php:140 ../../boot.php:1653
-#: ../../include/profile_advanced.php:37
-msgid "Status:"
-msgstr "Stato:"
+#: ../../mod/videos.php:317
+msgid "Recent Videos"
+msgstr "Video Recenti"
 
-#: ../../mod/directory.php:142 ../../boot.php:1655
-#: ../../include/profile_advanced.php:48
-msgid "Homepage:"
-msgstr "Homepage:"
+#: ../../mod/videos.php:319
+msgid "Upload New Videos"
+msgstr "Carica Nuovo Video"
 
-#: ../../mod/directory.php:144 ../../boot.php:1657
-#: ../../include/profile_advanced.php:58
-msgid "About:"
-msgstr "Informazioni:"
+#: ../../mod/manage.php:106
+msgid "Manage Identities and/or Pages"
+msgstr "Gestisci indentità e/o pagine"
 
-#: ../../mod/directory.php:189
-msgid "No entries (some entries may be hidden)."
-msgstr "Nessuna voce (qualche voce potrebbe essere nascosta)."
+#: ../../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 "Cambia tra differenti identità o pagine comunità/gruppi che condividono il tuo account o per cui hai i permessi di gestione"
 
-#: ../../mod/delegate.php:101
-msgid "No potential page delegates located."
-msgstr "Nessun potenziale delegato per la pagina è stato trovato."
-
-#: ../../mod/delegate.php:130 ../../include/nav.php:170
-msgid "Delegate Page Management"
-msgstr "Gestione delegati per la pagina"
-
-#: ../../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 "I Delegati sono in grando di gestire tutti gli aspetti di questa pagina, tranne per i settaggi di base dell'account. Non delegare il tuo account personale a nessuno di cui non ti fidi ciecamente."
+#: ../../mod/manage.php:108
+msgid "Select an identity to manage: "
+msgstr "Seleziona un'identità da gestire:"
 
-#: ../../mod/delegate.php:133
-msgid "Existing Page Managers"
-msgstr "Gestori Pagina Esistenti"
+#: ../../mod/editpost.php:17 ../../mod/editpost.php:27
+msgid "Item not found"
+msgstr "Oggetto non trovato"
 
-#: ../../mod/delegate.php:135
-msgid "Existing Page Delegates"
-msgstr "Delegati Pagina Esistenti"
+#: ../../mod/editpost.php:39
+msgid "Edit post"
+msgstr "Modifica messaggio"
 
-#: ../../mod/delegate.php:137
-msgid "Potential Delegates"
-msgstr "Delegati Potenziali"
+#: ../../mod/dirfind.php:26
+msgid "People Search"
+msgstr "Cerca persone"
 
-#: ../../mod/delegate.php:140
-msgid "Add"
-msgstr "Aggiungi"
+#: ../../mod/dirfind.php:60 ../../mod/match.php:71
+msgid "No matches"
+msgstr "Nessun risultato"
 
-#: ../../mod/delegate.php:141
-msgid "No entries."
-msgstr "Nessun articolo."
+#: ../../mod/regmod.php:55
+msgid "Account approved."
+msgstr "Account approvato."
 
-#: ../../mod/common.php:42
-msgid "Common Friends"
-msgstr "Amici in comune"
+#: ../../mod/regmod.php:92
+#, php-format
+msgid "Registration revoked for %s"
+msgstr "Registrazione revocata per %s"
 
-#: ../../mod/common.php:78
-msgid "No contacts in common."
-msgstr "Nessun contatto in comune."
+#: ../../mod/regmod.php:104
+msgid "Please login."
+msgstr "Accedi."
 
-#: ../../mod/uexport.php:77
-msgid "Export account"
-msgstr "Esporta account"
+#: ../../mod/dfrn_request.php:95
+msgid "This introduction has already been accepted."
+msgstr "Questa presentazione è già stata accettata."
 
-#: ../../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 "Esporta le informazioni del tuo account e dei contatti. Usa questa funzione per fare un backup del tuo account o per spostarlo in un altro server."
+#: ../../mod/dfrn_request.php:120 ../../mod/dfrn_request.php:518
+msgid "Profile location is not valid or does not contain profile information."
+msgstr "L'indirizzo del profilo non è valido o non contiene un profilo."
 
-#: ../../mod/uexport.php:78
-msgid "Export all"
-msgstr "Esporta tutto"
+#: ../../mod/dfrn_request.php:125 ../../mod/dfrn_request.php:523
+msgid "Warning: profile location has no identifiable owner name."
+msgstr "Attenzione: l'indirizzo del profilo non riporta il nome del proprietario."
 
-#: ../../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 "Esporta le informazioni del tuo account, i tuoi contatti e tutti i tuoi elementi in json. Puo' diventare un file veramente molto grosso e metterci un sacco di tempo. Usa questa funzione per fare un backup completo del tuo account (le foto non sono esportate)"
+#: ../../mod/dfrn_request.php:127 ../../mod/dfrn_request.php:525
+msgid "Warning: profile location has no profile photo."
+msgstr "Attenzione: l'indirizzo del profilo non ha una foto."
 
-#: ../../mod/mood.php:62 ../../include/conversation.php:227
+#: ../../mod/dfrn_request.php:130 ../../mod/dfrn_request.php:528
 #, php-format
-msgid "%1$s is currently %2$s"
-msgstr "%1$s al momento è %2$s"
+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 parametro richiesto non è stato trovato all'indirizzo dato"
+msgstr[1] "%d parametri richiesti non sono stati trovati all'indirizzo dato"
 
-#: ../../mod/mood.php:133
-msgid "Mood"
-msgstr "Umore"
+#: ../../mod/dfrn_request.php:172
+msgid "Introduction complete."
+msgstr "Presentazione completa."
 
-#: ../../mod/mood.php:134
-msgid "Set your current mood and tell your friends"
-msgstr "Condividi il tuo umore con i tuoi amici"
+#: ../../mod/dfrn_request.php:214
+msgid "Unrecoverable protocol error."
+msgstr "Errore di comunicazione."
 
-#: ../../mod/suggest.php:27
-msgid "Do you really want to delete this suggestion?"
-msgstr "Vuoi veramente cancellare questo suggerimento?"
+#: ../../mod/dfrn_request.php:242
+msgid "Profile unavailable."
+msgstr "Profilo non disponibile."
 
-#: ../../mod/suggest.php:68 ../../include/contact_widgets.php:35
-#: ../../view/theme/diabook/theme.php:527
-msgid "Friend Suggestions"
-msgstr "Contatti suggeriti"
+#: ../../mod/dfrn_request.php:267
+#, php-format
+msgid "%s has received too many connection requests today."
+msgstr "%s ha ricevuto troppe richieste di connessione per oggi."
 
-#: ../../mod/suggest.php:74
-msgid ""
-"No suggestions available. If this is a new site, please try again in 24 "
-"hours."
-msgstr "Nessun suggerimento disponibile. Se questo è un sito nuovo, riprova tra 24 ore."
+#: ../../mod/dfrn_request.php:268
+msgid "Spam protection measures have been invoked."
+msgstr "Sono state attivate le misure di protezione contro lo spam."
 
-#: ../../mod/suggest.php:92
-msgid "Ignore/Hide"
-msgstr "Ignora / Nascondi"
+#: ../../mod/dfrn_request.php:269
+msgid "Friends are advised to please try again in 24 hours."
+msgstr "Gli amici sono pregati di riprovare tra 24 ore."
 
-#: ../../mod/profiles.php:37
-msgid "Profile deleted."
-msgstr "Profilo elminato."
+#: ../../mod/dfrn_request.php:331
+msgid "Invalid locator"
+msgstr "Invalid locator"
 
-#: ../../mod/profiles.php:55 ../../mod/profiles.php:89
-msgid "Profile-"
-msgstr "Profilo-"
+#: ../../mod/dfrn_request.php:340
+msgid "Invalid email address."
+msgstr "Indirizzo email non valido."
 
-#: ../../mod/profiles.php:74 ../../mod/profiles.php:117
-msgid "New profile created."
-msgstr "Il nuovo profilo è stato creato."
+#: ../../mod/dfrn_request.php:367
+msgid "This account has not been configured for email. Request failed."
+msgstr "Questo account non è stato configurato per l'email. Richiesta fallita."
 
-#: ../../mod/profiles.php:95
-msgid "Profile unavailable to clone."
-msgstr "Impossibile duplicare il profilo."
+#: ../../mod/dfrn_request.php:463
+msgid "Unable to resolve your name at the provided location."
+msgstr "Impossibile risolvere il tuo nome nella posizione indicata."
 
-#: ../../mod/profiles.php:189
-msgid "Profile Name is required."
-msgstr "Il nome profilo è obbligatorio ."
+#: ../../mod/dfrn_request.php:476
+msgid "You have already introduced yourself here."
+msgstr "Ti sei già presentato qui."
 
-#: ../../mod/profiles.php:340
-msgid "Marital Status"
-msgstr "Stato civile"
+#: ../../mod/dfrn_request.php:480
+#, php-format
+msgid "Apparently you are already friends with %s."
+msgstr "Pare che tu e %s siate già amici."
 
-#: ../../mod/profiles.php:344
-msgid "Romantic Partner"
-msgstr "Partner romantico"
+#: ../../mod/dfrn_request.php:501
+msgid "Invalid profile URL."
+msgstr "Indirizzo profilo non valido."
 
-#: ../../mod/profiles.php:348
-msgid "Likes"
-msgstr "Mi piace"
+#: ../../mod/dfrn_request.php:597
+msgid "Your introduction has been sent."
+msgstr "La tua presentazione è stata inviata."
 
-#: ../../mod/profiles.php:352
-msgid "Dislikes"
-msgstr "Non mi piace"
+#: ../../mod/dfrn_request.php:650
+msgid "Please login to confirm introduction."
+msgstr "Accedi per confermare la presentazione."
 
-#: ../../mod/profiles.php:356
-msgid "Work/Employment"
-msgstr "Lavoro/Impiego"
+#: ../../mod/dfrn_request.php:660
+msgid ""
+"Incorrect identity currently logged in. Please login to "
+"<strong>this</strong> profile."
+msgstr "Non hai fatto accesso con l'identità corretta. Accedi a <strong>questo</strong> profilo."
 
-#: ../../mod/profiles.php:359
-msgid "Religion"
-msgstr "Religione"
+#: ../../mod/dfrn_request.php:674 ../../mod/dfrn_request.php:691
+msgid "Confirm"
+msgstr "Conferma"
 
-#: ../../mod/profiles.php:363
-msgid "Political Views"
-msgstr "Orientamento Politico"
+#: ../../mod/dfrn_request.php:686
+msgid "Hide this contact"
+msgstr "Nascondi questo contatto"
 
-#: ../../mod/profiles.php:367
-msgid "Gender"
-msgstr "Sesso"
+#: ../../mod/dfrn_request.php:689
+#, php-format
+msgid "Welcome home %s."
+msgstr "Bentornato a casa %s."
 
-#: ../../mod/profiles.php:371
-msgid "Sexual Preference"
-msgstr "Preferenza sessuale"
+#: ../../mod/dfrn_request.php:690
+#, php-format
+msgid "Please confirm your introduction/connection request to %s."
+msgstr "Conferma la tua richiesta di connessione con %s."
 
-#: ../../mod/profiles.php:375
-msgid "Homepage"
-msgstr "Homepage"
+#: ../../mod/dfrn_request.php:819
+msgid ""
+"Please enter your 'Identity Address' from one of the following supported "
+"communications networks:"
+msgstr "Inserisci il tuo 'Indirizzo Identità' da uno dei seguenti network supportati:"
 
-#: ../../mod/profiles.php:379 ../../mod/profiles.php:698
-msgid "Interests"
-msgstr "Interessi"
+#: ../../mod/dfrn_request.php:839
+msgid ""
+"If you are not yet a member of the free social web, <a "
+"href=\"http://dir.friendica.com/siteinfo\">follow this link to find a public"
+" Friendica site and join us today</a>."
+msgstr "Se non sei un membro del web sociale libero,  <a href=\"http://dir.friendica.com/siteinfo\">segui questo link per trovare un sito Friendica pubblico e unisciti a noi oggi</a>"
 
-#: ../../mod/profiles.php:383
-msgid "Address"
-msgstr "Indirizzo"
+#: ../../mod/dfrn_request.php:842
+msgid "Friend/Connection Request"
+msgstr "Richieste di amicizia/connessione"
 
-#: ../../mod/profiles.php:390 ../../mod/profiles.php:694
-msgid "Location"
-msgstr "Posizione"
+#: ../../mod/dfrn_request.php:843
+msgid ""
+"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, "
+"testuser@identi.ca"
+msgstr "Esempi: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"
 
-#: ../../mod/profiles.php:473
-msgid "Profile updated."
-msgstr "Profilo aggiornato."
+#: ../../mod/dfrn_request.php:844 ../../mod/follow.php:53
+msgid "Please answer the following:"
+msgstr "Rispondi:"
 
-#: ../../mod/profiles.php:568
-msgid " and "
-msgstr "e "
+#: ../../mod/dfrn_request.php:845 ../../mod/follow.php:54
+#, php-format
+msgid "Does %s know you?"
+msgstr "%s ti conosce?"
 
-#: ../../mod/profiles.php:576
-msgid "public profile"
-msgstr "profilo pubblico"
+#: ../../mod/dfrn_request.php:849 ../../mod/follow.php:55
+msgid "Add a personal note:"
+msgstr "Aggiungi una nota personale:"
 
-#: ../../mod/profiles.php:579
-#, php-format
-msgid "%1$s changed %2$s to &ldquo;%3$s&rdquo;"
-msgstr "%1$s ha cambiato %2$s in &ldquo;%3$s&rdquo;"
+#: ../../mod/dfrn_request.php:852
+msgid "StatusNet/Federated Social Web"
+msgstr "StatusNet/Federated Social Web"
 
-#: ../../mod/profiles.php:580
+#: ../../mod/dfrn_request.php:854
 #, php-format
-msgid " - Visit %1$s's %2$s"
-msgstr "- Visita  %2$s di %1$s"
+msgid ""
+" - please do not use this form.  Instead, enter %s into your Diaspora search"
+" bar."
+msgstr " - per favore non usare questa form. Invece, inserisci %s nella tua barra di ricerca su Diaspora."
 
-#: ../../mod/profiles.php:583
-#, php-format
-msgid "%1$s has an updated %2$s, changing %3$s."
-msgstr "%1$s ha un %2$s aggiornato. Ha cambiato %3$s"
+#: ../../mod/dfrn_request.php:855 ../../mod/follow.php:61
+msgid "Your Identity Address:"
+msgstr "L'indirizzo della tua identità:"
 
-#: ../../mod/profiles.php:658
-msgid "Hide contacts and friends:"
-msgstr "Nascondi contatti:"
+#: ../../mod/dfrn_request.php:858 ../../mod/follow.php:64
+msgid "Submit Request"
+msgstr "Invia richiesta"
 
-#: ../../mod/profiles.php:663
-msgid "Hide your contact/friend list from viewers of this profile?"
-msgstr "Nascondi la tua lista di contatti/amici ai visitatori di questo profilo?"
+#: ../../mod/fbrowser.php:113
+msgid "Files"
+msgstr "File"
 
-#: ../../mod/profiles.php:685
-msgid "Edit Profile Details"
-msgstr "Modifica i dettagli del profilo"
+#: ../../mod/api.php:76 ../../mod/api.php:102
+msgid "Authorize application connection"
+msgstr "Autorizza la connessione dell'applicazione"
 
-#: ../../mod/profiles.php:687
-msgid "Change Profile Photo"
-msgstr "Cambia la foto del profilo"
+#: ../../mod/api.php:77
+msgid "Return to your app and insert this Securty Code:"
+msgstr "Torna alla tua applicazione e inserisci questo codice di sicurezza:"
 
-#: ../../mod/profiles.php:688
-msgid "View this profile"
-msgstr "Visualizza questo profilo"
+#: ../../mod/api.php:89
+msgid "Please login to continue."
+msgstr "Effettua il login per continuare."
 
-#: ../../mod/profiles.php:689
-msgid "Create a new profile using these settings"
-msgstr "Crea un nuovo profilo usando queste impostazioni"
+#: ../../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 "Vuoi autorizzare questa applicazione per accedere ai messaggi e ai contatti, e / o creare nuovi messaggi per te?"
 
-#: ../../mod/profiles.php:690
-msgid "Clone this profile"
-msgstr "Clona questo profilo"
+#: ../../mod/suggest.php:27
+msgid "Do you really want to delete this suggestion?"
+msgstr "Vuoi veramente cancellare questo suggerimento?"
 
-#: ../../mod/profiles.php:691
-msgid "Delete this profile"
-msgstr "Elimina questo profilo"
+#: ../../mod/suggest.php:74
+msgid ""
+"No suggestions available. If this is a new site, please try again in 24 "
+"hours."
+msgstr "Nessun suggerimento disponibile. Se questo è un sito nuovo, riprova tra 24 ore."
 
-#: ../../mod/profiles.php:692
-msgid "Basic information"
-msgstr "Informazioni di base"
+#: ../../mod/suggest.php:92
+msgid "Ignore/Hide"
+msgstr "Ignora / Nascondi"
 
-#: ../../mod/profiles.php:693
-msgid "Profile picture"
-msgstr "Immagine del profilo"
+#: ../../mod/nogroup.php:59
+msgid "Contacts who are not members of a group"
+msgstr "Contatti che non sono membri di un gruppo"
 
-#: ../../mod/profiles.php:695
-msgid "Preferences"
-msgstr "Preferenze"
+#: ../../mod/fsuggest.php:20 ../../mod/fsuggest.php:92
+#: ../../mod/crepair.php:133 ../../mod/dfrn_confirm.php:120
+msgid "Contact not found."
+msgstr "Contatto non trovato."
 
-#: ../../mod/profiles.php:696
-msgid "Status information"
-msgstr "Informazioni stato"
+#: ../../mod/fsuggest.php:63
+msgid "Friend suggestion sent."
+msgstr "Suggerimento di amicizia inviato."
 
-#: ../../mod/profiles.php:697
-msgid "Additional information"
-msgstr "Informazioni aggiuntive"
+#: ../../mod/fsuggest.php:97
+msgid "Suggest Friends"
+msgstr "Suggerisci amici"
 
-#: ../../mod/profiles.php:700
-msgid "Profile Name:"
-msgstr "Nome del profilo:"
+#: ../../mod/fsuggest.php:99
+#, php-format
+msgid "Suggest a friend for %s"
+msgstr "Suggerisci un amico a %s"
 
-#: ../../mod/profiles.php:701
-msgid "Your Full Name:"
-msgstr "Il tuo nome completo:"
+#: ../../mod/share.php:38
+msgid "link"
+msgstr "collegamento"
 
-#: ../../mod/profiles.php:702
-msgid "Title/Description:"
-msgstr "Breve descrizione (es. titolo, posizione, altro):"
+#: ../../mod/viewcontacts.php:41
+msgid "No contacts."
+msgstr "Nessun contatto."
 
-#: ../../mod/profiles.php:703
-msgid "Your Gender:"
-msgstr "Il tuo sesso:"
+#: ../../mod/admin.php:57
+msgid "Theme settings updated."
+msgstr "Impostazioni del tema aggiornate."
 
-#: ../../mod/profiles.php:704
-#, php-format
-msgid "Birthday (%s):"
-msgstr "Compleanno (%s)"
+#: ../../mod/admin.php:104 ../../mod/admin.php:621
+msgid "Site"
+msgstr "Sito"
 
-#: ../../mod/profiles.php:705
-msgid "Street Address:"
-msgstr "Indirizzo (via/piazza):"
+#: ../../mod/admin.php:105 ../../mod/admin.php:1001 ../../mod/admin.php:1016
+msgid "Users"
+msgstr "Utenti"
 
-#: ../../mod/profiles.php:706
-msgid "Locality/City:"
-msgstr "Località:"
+#: ../../mod/admin.php:107 ../../mod/admin.php:1326 ../../mod/admin.php:1360
+msgid "Themes"
+msgstr "Temi"
 
-#: ../../mod/profiles.php:707
-msgid "Postal/Zip Code:"
-msgstr "CAP:"
+#: ../../mod/admin.php:108
+msgid "DB updates"
+msgstr "Aggiornamenti Database"
 
-#: ../../mod/profiles.php:708
-msgid "Country:"
-msgstr "Nazione:"
+#: ../../mod/admin.php:123 ../../mod/admin.php:132 ../../mod/admin.php:1447
+msgid "Logs"
+msgstr "Log"
 
-#: ../../mod/profiles.php:709
-msgid "Region/State:"
-msgstr "Regione/Stato:"
+#: ../../mod/admin.php:124
+msgid "probe address"
+msgstr "controlla indirizzo"
 
-#: ../../mod/profiles.php:710
-msgid "<span class=\"heart\">&hearts;</span> Marital Status:"
-msgstr "<span class=\"heart\">&hearts;</span> Stato sentimentale:"
+#: ../../mod/admin.php:125
+msgid "check webfinger"
+msgstr "verifica webfinger"
 
-#: ../../mod/profiles.php:711
-msgid "Who: (if applicable)"
-msgstr "Con chi: (se possibile)"
+#: ../../mod/admin.php:131
+msgid "Plugin Features"
+msgstr "Impostazioni Plugins"
 
-#: ../../mod/profiles.php:712
-msgid "Examples: cathy123, Cathy Williams, cathy@example.com"
-msgstr "Esempio: cathy123, Cathy Williams, cathy@example.com"
+#: ../../mod/admin.php:133
+msgid "diagnostics"
+msgstr "diagnostiche"
 
-#: ../../mod/profiles.php:713
-msgid "Since [date]:"
-msgstr "Dal [data]:"
+#: ../../mod/admin.php:134
+msgid "User registrations waiting for confirmation"
+msgstr "Utenti registrati in attesa di conferma"
 
-#: ../../mod/profiles.php:714 ../../include/profile_advanced.php:46
-msgid "Sexual Preference:"
-msgstr "Preferenze sessuali:"
+#: ../../mod/admin.php:193 ../../mod/admin.php:955
+msgid "Normal Account"
+msgstr "Account normale"
 
-#: ../../mod/profiles.php:715
-msgid "Homepage URL:"
-msgstr "Homepage:"
+#: ../../mod/admin.php:194 ../../mod/admin.php:956
+msgid "Soapbox Account"
+msgstr "Account per comunicati e annunci"
 
-#: ../../mod/profiles.php:716 ../../include/profile_advanced.php:50
-msgid "Hometown:"
-msgstr "Paese natale:"
+#: ../../mod/admin.php:195 ../../mod/admin.php:957
+msgid "Community/Celebrity Account"
+msgstr "Account per celebrità o per comunità"
 
-#: ../../mod/profiles.php:717 ../../include/profile_advanced.php:54
-msgid "Political Views:"
-msgstr "Orientamento politico:"
+#: ../../mod/admin.php:196 ../../mod/admin.php:958
+msgid "Automatic Friend Account"
+msgstr "Account per amicizia automatizzato"
 
-#: ../../mod/profiles.php:718
-msgid "Religious Views:"
-msgstr "Orientamento religioso:"
+#: ../../mod/admin.php:197
+msgid "Blog Account"
+msgstr "Account Blog"
 
-#: ../../mod/profiles.php:719
-msgid "Public Keywords:"
-msgstr "Parole chiave visibili a tutti:"
+#: ../../mod/admin.php:198
+msgid "Private Forum"
+msgstr "Forum Privato"
 
-#: ../../mod/profiles.php:720
-msgid "Private Keywords:"
-msgstr "Parole chiave private:"
+#: ../../mod/admin.php:217
+msgid "Message queues"
+msgstr "Code messaggi"
 
-#: ../../mod/profiles.php:721 ../../include/profile_advanced.php:62
-msgid "Likes:"
-msgstr "Mi piace:"
+#: ../../mod/admin.php:222 ../../mod/admin.php:620 ../../mod/admin.php:1000
+#: ../../mod/admin.php:1104 ../../mod/admin.php:1157 ../../mod/admin.php:1325
+#: ../../mod/admin.php:1359 ../../mod/admin.php:1446
+msgid "Administration"
+msgstr "Amministrazione"
 
-#: ../../mod/profiles.php:722 ../../include/profile_advanced.php:64
-msgid "Dislikes:"
-msgstr "Non mi piace:"
+#: ../../mod/admin.php:223
+msgid "Summary"
+msgstr "Sommario"
 
-#: ../../mod/profiles.php:723
-msgid "Example: fishing photography software"
-msgstr "Esempio: pesca fotografia programmazione"
+#: ../../mod/admin.php:225
+msgid "Registered users"
+msgstr "Utenti registrati"
 
-#: ../../mod/profiles.php:724
-msgid "(Used for suggesting potential friends, can be seen by others)"
-msgstr "(E' utilizzato per suggerire potenziali amici, può essere visto da altri)"
+#: ../../mod/admin.php:227
+msgid "Pending registrations"
+msgstr "Registrazioni in attesa"
 
-#: ../../mod/profiles.php:725
-msgid "(Used for searching profiles, never shown to others)"
-msgstr "(Usato per cercare tra i profili, non è mai visibile agli altri)"
+#: ../../mod/admin.php:228
+msgid "Version"
+msgstr "Versione"
 
-#: ../../mod/profiles.php:726
-msgid "Tell us about yourself..."
-msgstr "Raccontaci di te..."
+#: ../../mod/admin.php:232
+msgid "Active plugins"
+msgstr "Plugin attivi"
 
-#: ../../mod/profiles.php:727
-msgid "Hobbies/Interests"
-msgstr "Hobby/interessi"
+#: ../../mod/admin.php:255
+msgid "Can not parse base url. Must have at least <scheme>://<domain>"
+msgstr "Impossibile analizzare l'url base. Deve avere almeno [schema]://[dominio]"
 
-#: ../../mod/profiles.php:728
-msgid "Contact information and Social Networks"
-msgstr "Informazioni su contatti e social network"
+#: ../../mod/admin.php:518
+msgid "Site settings updated."
+msgstr "Impostazioni del sito aggiornate."
 
-#: ../../mod/profiles.php:729
-msgid "Musical interests"
-msgstr "Interessi musicali"
+#: ../../mod/admin.php:564
+msgid "No community page"
+msgstr "Nessuna pagina Comunità"
 
-#: ../../mod/profiles.php:730
-msgid "Books, literature"
-msgstr "Libri, letteratura"
+#: ../../mod/admin.php:565
+msgid "Public postings from users of this site"
+msgstr "Messaggi pubblici dagli utenti di questo sito"
 
-#: ../../mod/profiles.php:731
-msgid "Television"
-msgstr "Televisione"
+#: ../../mod/admin.php:566
+msgid "Global community page"
+msgstr "Pagina Comunità globale"
 
-#: ../../mod/profiles.php:732
-msgid "Film/dance/culture/entertainment"
-msgstr "Film/danza/cultura/intrattenimento"
+#: ../../mod/admin.php:572
+msgid "At post arrival"
+msgstr "All'arrivo di un messaggio"
 
-#: ../../mod/profiles.php:733
-msgid "Love/romance"
-msgstr "Amore"
+#: ../../mod/admin.php:581
+msgid "Multi user instance"
+msgstr "Istanza multi utente"
 
-#: ../../mod/profiles.php:734
-msgid "Work/employment"
-msgstr "Lavoro/impiego"
+#: ../../mod/admin.php:604
+msgid "Closed"
+msgstr "Chiusa"
 
-#: ../../mod/profiles.php:735
-msgid "School/education"
-msgstr "Scuola/educazione"
+#: ../../mod/admin.php:605
+msgid "Requires approval"
+msgstr "Richiede l'approvazione"
 
-#: ../../mod/profiles.php:740
-msgid ""
-"This is your <strong>public</strong> profile.<br />It <strong>may</strong> "
-"be visible to anybody using the internet."
-msgstr "Questo è il tuo profilo <strong>publico</strong>.<br /><strong>Potrebbe</strong> essere visto da chiunque attraverso internet."
+#: ../../mod/admin.php:606
+msgid "Open"
+msgstr "Aperta"
 
-#: ../../mod/profiles.php:803
-msgid "Edit/Manage Profiles"
-msgstr "Modifica / Gestisci profili"
+#: ../../mod/admin.php:610
+msgid "No SSL policy, links will track page SSL state"
+msgstr "Nessuna gestione SSL, i link seguiranno lo stato SSL della pagina"
 
-#: ../../mod/profiles.php:804 ../../boot.php:1611 ../../boot.php:1637
-msgid "Change profile photo"
-msgstr "Cambia la foto del profilo"
+#: ../../mod/admin.php:611
+msgid "Force all links to use SSL"
+msgstr "Forza tutti i linki ad usare SSL"
 
-#: ../../mod/profiles.php:805 ../../boot.php:1612
-msgid "Create New Profile"
-msgstr "Crea un nuovo profilo"
+#: ../../mod/admin.php:612
+msgid "Self-signed certificate, use SSL for local links only (discouraged)"
+msgstr "Certificato auto-firmato, usa SSL solo per i link locali (sconsigliato)"
 
-#: ../../mod/profiles.php:816 ../../boot.php:1622
-msgid "Profile Image"
-msgstr "Immagine del Profilo"
+#: ../../mod/admin.php:624
+msgid "File upload"
+msgstr "Caricamento file"
 
-#: ../../mod/profiles.php:818 ../../boot.php:1625
-msgid "visible to everybody"
-msgstr "visibile a tutti"
+#: ../../mod/admin.php:625
+msgid "Policies"
+msgstr "Politiche"
 
-#: ../../mod/profiles.php:819 ../../boot.php:1626
-msgid "Edit visibility"
-msgstr "Modifica visibilità"
+#: ../../mod/admin.php:626
+msgid "Advanced"
+msgstr "Avanzate"
 
-#: ../../mod/editpost.php:17 ../../mod/editpost.php:27
-msgid "Item not found"
-msgstr "Oggetto non trovato"
+#: ../../mod/admin.php:627
+msgid "Performance"
+msgstr "Performance"
 
-#: ../../mod/editpost.php:39
-msgid "Edit post"
-msgstr "Modifica messaggio"
+#: ../../mod/admin.php:628
+msgid ""
+"Relocate - WARNING: advanced function. Could make this server unreachable."
+msgstr "Trasloca - ATTENZIONE: funzione avanzata! Puo' rendere questo server irraggiungibile."
 
-#: ../../mod/editpost.php:111 ../../include/conversation.php:1092
-msgid "upload photo"
-msgstr "carica foto"
+#: ../../mod/admin.php:631
+msgid "Site name"
+msgstr "Nome del sito"
 
-#: ../../mod/editpost.php:112 ../../include/conversation.php:1093
-msgid "Attach file"
-msgstr "Allega file"
+#: ../../mod/admin.php:632
+msgid "Host name"
+msgstr "Nome host"
 
-#: ../../mod/editpost.php:113 ../../include/conversation.php:1094
-msgid "attach file"
-msgstr "allega file"
+#: ../../mod/admin.php:633
+msgid "Sender Email"
+msgstr "Mittente email"
 
-#: ../../mod/editpost.php:115 ../../include/conversation.php:1096
-msgid "web link"
-msgstr "link web"
+#: ../../mod/admin.php:634
+msgid "Banner/Logo"
+msgstr "Banner/Logo"
 
-#: ../../mod/editpost.php:116 ../../include/conversation.php:1097
-msgid "Insert video link"
-msgstr "Inserire collegamento video"
+#: ../../mod/admin.php:635
+msgid "Shortcut icon"
+msgstr "Icona shortcut"
 
-#: ../../mod/editpost.php:117 ../../include/conversation.php:1098
-msgid "video link"
-msgstr "link video"
+#: ../../mod/admin.php:636
+msgid "Touch icon"
+msgstr "Icona touch"
 
-#: ../../mod/editpost.php:118 ../../include/conversation.php:1099
-msgid "Insert audio link"
-msgstr "Inserisci collegamento audio"
+#: ../../mod/admin.php:637
+msgid "Additional Info"
+msgstr "Informazioni aggiuntive"
 
-#: ../../mod/editpost.php:119 ../../include/conversation.php:1100
-msgid "audio link"
-msgstr "link audio"
+#: ../../mod/admin.php:637
+msgid ""
+"For public servers: you can add additional information here that will be "
+"listed at dir.friendica.com/siteinfo."
+msgstr "Per server pubblici: puoi aggiungere informazioni extra che verrano mostrate su dir.friendica.com/siteinfo."
 
-#: ../../mod/editpost.php:120 ../../include/conversation.php:1101
-msgid "Set your location"
-msgstr "La tua posizione"
+#: ../../mod/admin.php:638
+msgid "System language"
+msgstr "Lingua di sistema"
 
-#: ../../mod/editpost.php:121 ../../include/conversation.php:1102
-msgid "set location"
-msgstr "posizione"
+#: ../../mod/admin.php:639
+msgid "System theme"
+msgstr "Tema di sistema"
 
-#: ../../mod/editpost.php:122 ../../include/conversation.php:1103
-msgid "Clear browser location"
-msgstr "Rimuovi la localizzazione data dal browser"
+#: ../../mod/admin.php:639
+msgid ""
+"Default system theme - may be over-ridden by user profiles - <a href='#' "
+"id='cnftheme'>change theme settings</a>"
+msgstr "Tema di sistema - puo' essere sovrascritto dalle impostazioni utente - <a href='#' id='cnftheme'>cambia le impostazioni del tema</a>"
 
-#: ../../mod/editpost.php:123 ../../include/conversation.php:1104
-msgid "clear location"
-msgstr "canc. pos."
+#: ../../mod/admin.php:640
+msgid "Mobile system theme"
+msgstr "Tema mobile di sistema"
 
-#: ../../mod/editpost.php:125 ../../include/conversation.php:1110
-msgid "Permission settings"
-msgstr "Impostazioni permessi"
+#: ../../mod/admin.php:640
+msgid "Theme for mobile devices"
+msgstr "Tema per dispositivi mobili"
 
-#: ../../mod/editpost.php:133 ../../include/conversation.php:1119
-msgid "CC: email addresses"
-msgstr "CC: indirizzi email"
+#: ../../mod/admin.php:641
+msgid "SSL link policy"
+msgstr "Gestione link SSL"
 
-#: ../../mod/editpost.php:134 ../../include/conversation.php:1120
-msgid "Public post"
-msgstr "Messaggio pubblico"
+#: ../../mod/admin.php:641
+msgid "Determines whether generated links should be forced to use SSL"
+msgstr "Determina se i link generati devono essere forzati a usare SSL"
 
-#: ../../mod/editpost.php:137 ../../include/conversation.php:1106
-msgid "Set title"
-msgstr "Scegli un titolo"
+#: ../../mod/admin.php:642
+msgid "Force SSL"
+msgstr "Forza SSL"
 
-#: ../../mod/editpost.php:139 ../../include/conversation.php:1108
-msgid "Categories (comma-separated list)"
-msgstr "Categorie (lista separata da virgola)"
+#: ../../mod/admin.php:642
+msgid ""
+"Force all Non-SSL requests to SSL - Attention: on some systems it could lead"
+" to endless loops."
+msgstr "Forza tutte le richieste non SSL su SSL - Attenzione: su alcuni sistemi puo' portare a loop senza fine"
 
-#: ../../mod/editpost.php:140 ../../include/conversation.php:1122
-msgid "Example: bob@example.com, mary@example.com"
-msgstr "Esempio: bob@example.com, mary@example.com"
+#: ../../mod/admin.php:643
+msgid "Old style 'Share'"
+msgstr "Ricondivisione vecchio stile"
 
-#: ../../mod/friendica.php:59
-msgid "This is Friendica, version"
-msgstr "Questo è Friendica, versione"
+#: ../../mod/admin.php:643
+msgid "Deactivates the bbcode element 'share' for repeating items."
+msgstr "Disattiva l'elemento bbcode 'share' con elementi ripetuti"
 
-#: ../../mod/friendica.php:60
-msgid "running at web location"
-msgstr "in esecuzione all'indirizzo web"
+#: ../../mod/admin.php:644
+msgid "Hide help entry from navigation menu"
+msgstr "Nascondi la voce 'Guida' dal menu di navigazione"
 
-#: ../../mod/friendica.php:62
+#: ../../mod/admin.php:644
 msgid ""
-"Please visit <a href=\"http://friendica.com\">Friendica.com</a> to learn "
-"more about the Friendica project."
-msgstr "Visita <a href=\"http://friendica.com\">Friendica.com</a> per saperne di più sul progetto Friendica."
+"Hides the menu entry for the Help pages from the navigation menu. You can "
+"still access it calling /help directly."
+msgstr "Nasconde la voce per le pagine della guida dal menu di navigazione. E' comunque possibile accedervi richiamando /help direttamente."
 
-#: ../../mod/friendica.php:64
-msgid "Bug reports and issues: please visit"
-msgstr "Segnalazioni di bug e problemi: visita"
+#: ../../mod/admin.php:645
+msgid "Single user instance"
+msgstr "Instanza a singolo utente"
 
-#: ../../mod/friendica.php:65
-msgid ""
-"Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - "
-"dot com"
-msgstr "Suggerimenti, lodi, donazioni, ecc -  e-mail a  \"Info\" at Friendica punto com"
+#: ../../mod/admin.php:645
+msgid "Make this instance multi-user or single-user for the named user"
+msgstr "Rendi questa istanza multi utente o a singolo utente per l'utente selezionato"
 
-#: ../../mod/friendica.php:79
-msgid "Installed plugins/addons/apps:"
-msgstr "Plugin/addon/applicazioni instalate"
+#: ../../mod/admin.php:646
+msgid "Maximum image size"
+msgstr "Massima dimensione immagini"
 
-#: ../../mod/friendica.php:92
-msgid "No installed plugins/addons/apps"
-msgstr "Nessun plugin/addons/applicazione installata"
+#: ../../mod/admin.php:646
+msgid ""
+"Maximum size in bytes of uploaded images. Default is 0, which means no "
+"limits."
+msgstr "Massima dimensione in byte delle immagini caricate. Il default è 0, cioè nessun limite."
 
-#: ../../mod/api.php:76 ../../mod/api.php:102
-msgid "Authorize application connection"
-msgstr "Autorizza la connessione dell'applicazione"
+#: ../../mod/admin.php:647
+msgid "Maximum image length"
+msgstr "Massima lunghezza immagine"
 
-#: ../../mod/api.php:77
-msgid "Return to your app and insert this Securty Code:"
-msgstr "Torna alla tua applicazione e inserisci questo codice di sicurezza:"
+#: ../../mod/admin.php:647
+msgid ""
+"Maximum length in pixels of the longest side of uploaded images. Default is "
+"-1, which means no limits."
+msgstr "Massima lunghezza in pixel del lato più lungo delle immagini caricate. Predefinito a -1, ovvero nessun limite."
 
-#: ../../mod/api.php:89
-msgid "Please login to continue."
-msgstr "Effettua il login per continuare."
+#: ../../mod/admin.php:648
+msgid "JPEG image quality"
+msgstr "Qualità immagini JPEG"
 
-#: ../../mod/api.php:104
+#: ../../mod/admin.php:648
 msgid ""
-"Do you want to authorize this application to access your posts and contacts,"
-" and/or create new posts for you?"
-msgstr "Vuoi autorizzare questa applicazione per accedere ai messaggi e ai contatti, e / o creare nuovi messaggi per te?"
+"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is "
+"100, which is full quality."
+msgstr "Le immagini JPEG caricate verranno salvate con questa qualità [0-100]. Predefinito è 100, ovvero qualità piena."
 
-#: ../../mod/lockview.php:31 ../../mod/lockview.php:39
-msgid "Remote privacy information not available."
-msgstr "Informazioni remote sulla privacy non disponibili."
+#: ../../mod/admin.php:650
+msgid "Register policy"
+msgstr "Politica di registrazione"
 
-#: ../../mod/lockview.php:48
-msgid "Visible to:"
-msgstr "Visibile a:"
-
-#: ../../mod/notes.php:44 ../../boot.php:2150
-msgid "Personal Notes"
-msgstr "Note personali"
-
-#: ../../mod/localtime.php:12 ../../include/bb2diaspora.php:148
-#: ../../include/event.php:11
-msgid "l F d, Y \\@ g:i A"
-msgstr "l d F Y \\@ G:i"
-
-#: ../../mod/localtime.php:24
-msgid "Time Conversion"
-msgstr "Conversione Ora"
+#: ../../mod/admin.php:651
+msgid "Maximum Daily Registrations"
+msgstr "Massime registrazioni giornaliere"
 
-#: ../../mod/localtime.php:26
+#: ../../mod/admin.php:651
 msgid ""
-"Friendica provides this service for sharing events with other networks and "
-"friends in unknown timezones."
-msgstr "Friendica fornisce questo servizio per la condivisione di eventi con altre reti e amici in fusi orari sconosciuti."
+"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 "Se la registrazione è permessa, qui si definisce il massimo numero di nuovi utenti registrati da accettare giornalmente. Se la registrazione è chiusa, questa impostazione non ha effetto."
 
-#: ../../mod/localtime.php:30
-#, php-format
-msgid "UTC time: %s"
-msgstr "Ora UTC: %s"
+#: ../../mod/admin.php:652
+msgid "Register text"
+msgstr "Testo registrazione"
 
-#: ../../mod/localtime.php:33
-#, php-format
-msgid "Current timezone: %s"
-msgstr "Fuso orario corrente: %s"
+#: ../../mod/admin.php:652
+msgid "Will be displayed prominently on the registration page."
+msgstr "Sarà mostrato ben visibile nella pagina di registrazione."
 
-#: ../../mod/localtime.php:36
-#, php-format
-msgid "Converted localtime: %s"
-msgstr "Ora locale convertita: %s"
+#: ../../mod/admin.php:653
+msgid "Accounts abandoned after x days"
+msgstr "Account abbandonati dopo x giorni"
 
-#: ../../mod/localtime.php:41
-msgid "Please select your timezone:"
-msgstr "Selezionare il tuo fuso orario:"
+#: ../../mod/admin.php:653
+msgid ""
+"Will not waste system resources polling external sites for abandonded "
+"accounts. Enter 0 for no time limit."
+msgstr "Non spreca risorse di sistema controllando siti esterni per gli account abbandonati. Immettere 0 per nessun limite di tempo."
 
-#: ../../mod/poke.php:192
-msgid "Poke/Prod"
-msgstr "Tocca/Pungola"
+#: ../../mod/admin.php:654
+msgid "Allowed friend domains"
+msgstr "Domini amici consentiti"
 
-#: ../../mod/poke.php:193
-msgid "poke, prod or do other things to somebody"
-msgstr "tocca, pungola o fai altre cose a qualcuno"
+#: ../../mod/admin.php:654
+msgid ""
+"Comma separated list of domains which are allowed to establish friendships "
+"with this site. Wildcards are accepted. Empty to allow any domains"
+msgstr "Elenco separato da virglola dei domini che possono stabilire amicizie con questo sito. Sono accettati caratteri jolly. Lascalo vuoto per accettare qualsiasi dominio."
 
-#: ../../mod/poke.php:194
-msgid "Recipient"
-msgstr "Destinatario"
+#: ../../mod/admin.php:655
+msgid "Allowed email domains"
+msgstr "Domini email consentiti"
 
-#: ../../mod/poke.php:195
-msgid "Choose what you wish to do to recipient"
-msgstr "Scegli cosa vuoi fare al destinatario"
+#: ../../mod/admin.php:655
+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 "Elenco separato da virgola dei domini permessi come indirizzi email in fase di registrazione a questo sito. Sono accettati caratteri jolly. Lascalo vuoto per accettare qualsiasi dominio."
 
-#: ../../mod/poke.php:198
-msgid "Make this post private"
-msgstr "Rendi questo post privato"
+#: ../../mod/admin.php:656
+msgid "Block public"
+msgstr "Blocca pagine pubbliche"
 
-#: ../../mod/invite.php:27
-msgid "Total invitation limit exceeded."
-msgstr "Limite totale degli inviti superato."
+#: ../../mod/admin.php:656
+msgid ""
+"Check to block public access to all otherwise public personal pages on this "
+"site unless you are currently logged in."
+msgstr "Seleziona per bloccare l'accesso pubblico a tutte le pagine personali di questo sito, a meno di essere loggato."
 
-#: ../../mod/invite.php:49
-#, php-format
-msgid "%s : Not a valid email address."
-msgstr "%s: non è un indirizzo email valido."
+#: ../../mod/admin.php:657
+msgid "Force publish"
+msgstr "Forza publicazione"
 
-#: ../../mod/invite.php:73
-msgid "Please join us on Friendica"
-msgstr "Unisiciti a noi su Friendica"
+#: ../../mod/admin.php:657
+msgid ""
+"Check to force all profiles on this site to be listed in the site directory."
+msgstr "Seleziona per forzare tutti i profili di questo sito ad essere compresi  nell'elenco di questo sito."
 
-#: ../../mod/invite.php:84
-msgid "Invitation limit exceeded. Please contact your site administrator."
-msgstr "Limite degli inviti superato. Contatta l'amministratore del tuo sito."
+#: ../../mod/admin.php:658
+msgid "Global directory update URL"
+msgstr "URL aggiornamento Elenco Globale"
 
-#: ../../mod/invite.php:89
-#, php-format
-msgid "%s : Message delivery failed."
-msgstr "%s: la consegna del messaggio fallita."
+#: ../../mod/admin.php:658
+msgid ""
+"URL to update the global directory. If this is not set, the global directory"
+" is completely unavailable to the application."
+msgstr "URL dell'elenco globale. Se vuoto, l'elenco globale sarà completamente disabilitato."
 
-#: ../../mod/invite.php:93
-#, php-format
-msgid "%d message sent."
-msgid_plural "%d messages sent."
-msgstr[0] "%d messaggio inviato."
-msgstr[1] "%d messaggi inviati."
+#: ../../mod/admin.php:659
+msgid "Allow threaded items"
+msgstr "Permetti commenti nidificati"
 
-#: ../../mod/invite.php:112
-msgid "You have no more invitations available"
-msgstr "Non hai altri inviti disponibili"
+#: ../../mod/admin.php:659
+msgid "Allow infinite level threading for items on this site."
+msgstr "Permette un infinito livello di nidificazione dei commenti su questo sito."
 
-#: ../../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 "Visita %s per una lista di siti pubblici a cui puoi iscriverti. I membri Friendica su altri siti possono collegarsi uno con l'altro, come con membri di molti altri social network."
+#: ../../mod/admin.php:660
+msgid "Private posts by default for new users"
+msgstr "Post privati di default per i nuovi utenti"
 
-#: ../../mod/invite.php:122
-#, php-format
+#: ../../mod/admin.php:660
 msgid ""
-"To accept this invitation, please visit and register at %s or any other "
-"public Friendica website."
-msgstr "Per accettare questo invito, visita e resitrati su %s o su un'altro sito web Friendica aperto al pubblico."
+"Set default post permissions for all new members to the default privacy "
+"group rather than public."
+msgstr "Imposta i permessi predefiniti dei post per tutti i nuovi utenti come privati per il gruppo predefinito, invece che pubblici."
 
-#: ../../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 "I siti Friendica son tutti collegati tra loro per creare una grossa rete sociale rispettosa della privacy, posseduta e controllata dai suoi membri. I siti Friendica possono anche collegarsi a molti altri social network tradizionali. Vai su %s per una lista di siti Friendica alternativi a cui puoi iscriverti."
+#: ../../mod/admin.php:661
+msgid "Don't include post content in email notifications"
+msgstr "Non includere il contenuto dei post nelle notifiche via email"
 
-#: ../../mod/invite.php:126
+#: ../../mod/admin.php:661
 msgid ""
-"Our apologies. This system is not currently configured to connect with other"
-" public sites or invite members."
-msgstr "Ci scusiamo, questo sistema non è configurato per collegarsi con altri siti pubblici o per invitare membri."
-
-#: ../../mod/invite.php:132
-msgid "Send invitations"
-msgstr "Invia inviti"
+"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 "Non include il contenuti del post/commento/messaggio privato/etc. nelle notifiche email che sono inviate da questo sito, per privacy"
 
-#: ../../mod/invite.php:133
-msgid "Enter email addresses, one per line:"
-msgstr "Inserisci gli indirizzi email, uno per riga:"
+#: ../../mod/admin.php:662
+msgid "Disallow public access to addons listed in the apps menu."
+msgstr "Disabilita l'accesso pubblico ai plugin raccolti nel menu apps."
 
-#: ../../mod/invite.php:135
+#: ../../mod/admin.php:662
 msgid ""
-"You are cordially invited to join me and other close friends on Friendica - "
-"and help us to create a better social web."
-msgstr "Sei cordialmente invitato a unirti a me ed ad altri amici su Friendica, e ad aiutarci a creare una rete sociale migliore."
+"Checking this box will restrict addons listed in the apps menu to members "
+"only."
+msgstr "Selezionando questo box si limiterà ai soli membri l'accesso agli addon nel menu applicazioni"
 
-#: ../../mod/invite.php:137
-msgid "You will need to supply this invitation code: $invite_code"
-msgstr "Sarà necessario fornire questo codice invito: $invite_code"
+#: ../../mod/admin.php:663
+msgid "Don't embed private images in posts"
+msgstr "Non inglobare immagini private nei post"
 
-#: ../../mod/invite.php:137
+#: ../../mod/admin.php:663
 msgid ""
-"Once you have registered, please connect with me via my profile page at:"
-msgstr "Una volta registrato, connettiti con me dal mio profilo:"
+"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 "
+"photos will have to authenticate and load each image, which may take a "
+"while."
+msgstr "Non sostituire le foto locali nei post con una copia incorporata dell'immagine. Questo significa che i contatti che riceveranno i post contenenti foto private dovranno autenticarsi e caricare ogni immagine, cosa che puo' richiedere un po' di tempo."
 
-#: ../../mod/invite.php:139
+#: ../../mod/admin.php:664
+msgid "Allow Users to set remote_self"
+msgstr "Permetti agli utenti di impostare 'io remoto'"
+
+#: ../../mod/admin.php:664
 msgid ""
-"For more information about the Friendica project and why we feel it is "
-"important, please visit http://friendica.com"
-msgstr "Per maggiori informazioni sul progetto Friendica e perchè pensiamo sia importante, visita http://friendica.com"
+"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 "Selezionando questo, a tutti gli utenti sarà permesso di impostare qualsiasi contatto come 'io remoto' nella pagina di modifica del contatto. Impostare questa opzione fa si che tutti i messaggi di quel contatto vengano ripetuti nello stream del'utente."
 
-#: ../../mod/photos.php:52 ../../boot.php:2129
-msgid "Photo Albums"
-msgstr "Album foto"
+#: ../../mod/admin.php:665
+msgid "Block multiple registrations"
+msgstr "Blocca registrazioni multiple"
 
-#: ../../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
-#: ../../view/theme/diabook/theme.php:499
-msgid "Contact Photos"
-msgstr "Foto dei contatti"
+#: ../../mod/admin.php:665
+msgid "Disallow users to register additional accounts for use as pages."
+msgstr "Non permette all'utente di registrare account extra da usare come pagine."
 
-#: ../../mod/photos.php:67 ../../mod/photos.php:1262 ../../mod/photos.php:1819
-msgid "Upload New Photos"
-msgstr "Carica nuove foto"
+#: ../../mod/admin.php:666
+msgid "OpenID support"
+msgstr "Supporto OpenID"
 
-#: ../../mod/photos.php:144
-msgid "Contact information unavailable"
-msgstr "I dati di questo contatto non sono disponibili"
+#: ../../mod/admin.php:666
+msgid "OpenID support for registration and logins."
+msgstr "Supporta OpenID per la registrazione e il login"
 
-#: ../../mod/photos.php:165
-msgid "Album not found."
-msgstr "Album non trovato."
+#: ../../mod/admin.php:667
+msgid "Fullname check"
+msgstr "Controllo nome completo"
 
-#: ../../mod/photos.php:188 ../../mod/photos.php:200 ../../mod/photos.php:1204
-msgid "Delete Album"
-msgstr "Rimuovi album"
+#: ../../mod/admin.php:667
+msgid ""
+"Force users to register with a space between firstname and lastname in Full "
+"name, as an antispam measure"
+msgstr "Forza gli utenti a registrarsi con uno spazio tra il nome e il cognome in \"Nome completo\", come misura antispam"
 
-#: ../../mod/photos.php:198
-msgid "Do you really want to delete this photo album and all its photos?"
-msgstr "Vuoi davvero cancellare questo album e tutte le sue foto?"
+#: ../../mod/admin.php:668
+msgid "UTF-8 Regular expressions"
+msgstr "Espressioni regolari UTF-8"
 
-#: ../../mod/photos.php:278 ../../mod/photos.php:289 ../../mod/photos.php:1515
-msgid "Delete Photo"
-msgstr "Rimuovi foto"
+#: ../../mod/admin.php:668
+msgid "Use PHP UTF8 regular expressions"
+msgstr "Usa le espressioni regolari PHP in UTF8"
 
-#: ../../mod/photos.php:287
-msgid "Do you really want to delete this photo?"
-msgstr "Vuoi veramente cancellare questa foto?"
+#: ../../mod/admin.php:669
+msgid "Community Page Style"
+msgstr "Stile pagina Comunità"
 
-#: ../../mod/photos.php:662
-#, php-format
-msgid "%1$s was tagged in %2$s by %3$s"
-msgstr "%1$s è stato taggato in %2$s da %3$s"
+#: ../../mod/admin.php:669
+msgid ""
+"Type of community page to show. 'Global community' shows every public "
+"posting from an open distributed network that arrived on this server."
+msgstr "Tipo di pagina Comunità da mostrare. 'Comunità Globale' mostra tutti i messaggi pubblici arrivati su questo server da network aperti distribuiti."
 
-#: ../../mod/photos.php:662
-msgid "a photo"
-msgstr "una foto"
+#: ../../mod/admin.php:670
+msgid "Posts per user on community page"
+msgstr "Messaggi per utente nella pagina Comunità"
 
-#: ../../mod/photos.php:767
-msgid "Image exceeds size limit of "
-msgstr "L'immagine supera il limite di"
+#: ../../mod/admin.php:670
+msgid ""
+"The maximum number of posts per user on the community page. (Not valid for "
+"'Global Community')"
+msgstr "Il numero massimo di messaggi per utente mostrato nella pagina Comuntà (non valido per 'Comunità globale')"
 
-#: ../../mod/photos.php:775
-msgid "Image file is empty."
-msgstr "Il file dell'immagine è vuoto."
+#: ../../mod/admin.php:671
+msgid "Enable OStatus support"
+msgstr "Abilita supporto OStatus"
 
-#: ../../mod/photos.php:930
-msgid "No photos selected"
-msgstr "Nessuna foto selezionata"
+#: ../../mod/admin.php:671
+msgid ""
+"Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All "
+"communications in OStatus are public, so privacy warnings will be "
+"occasionally displayed."
+msgstr "Fornisce la compatibilità integrata a OStatus (StatusNet, Gnu Social, etc.). Tutte le comunicazioni su OStatus sono pubbliche, quindi un avviso di privacy verrà mostrato occasionalmente."
 
-#: ../../mod/photos.php:1094
-#, php-format
-msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."
-msgstr "Hai usato %1$.2f MBytes su %2$.2f disponibili."
+#: ../../mod/admin.php:672
+msgid "OStatus conversation completion interval"
+msgstr "Intervallo completamento conversazioni OStatus"
 
-#: ../../mod/photos.php:1129
-msgid "Upload Photos"
-msgstr "Carica foto"
+#: ../../mod/admin.php:672
+msgid ""
+"How often shall the poller check for new entries in OStatus conversations? "
+"This can be a very ressource task."
+msgstr "quanto spesso il poller deve controllare se esistono nuovi commenti in una conversazione OStatus? Questo è un lavoro che puo' richiedere molte risorse."
 
-#: ../../mod/photos.php:1133 ../../mod/photos.php:1199
-msgid "New album name: "
-msgstr "Nome nuovo album: "
+#: ../../mod/admin.php:673
+msgid "Enable Diaspora support"
+msgstr "Abilita il supporto a Diaspora"
 
-#: ../../mod/photos.php:1134
-msgid "or existing album name: "
-msgstr "o nome di un album esistente: "
+#: ../../mod/admin.php:673
+msgid "Provide built-in Diaspora network compatibility."
+msgstr "Fornisce compatibilità con il network Diaspora."
 
-#: ../../mod/photos.php:1135
-msgid "Do not show a status post for this upload"
-msgstr "Non creare un post per questo upload"
+#: ../../mod/admin.php:674
+msgid "Only allow Friendica contacts"
+msgstr "Permetti solo contatti Friendica"
 
-#: ../../mod/photos.php:1137 ../../mod/photos.php:1510
-msgid "Permissions"
-msgstr "Permessi"
+#: ../../mod/admin.php:674
+msgid ""
+"All contacts must use Friendica protocols. All other built-in communication "
+"protocols disabled."
+msgstr "Tutti i contatti devono usare il protocollo di Friendica. Tutti gli altri protocolli sono disabilitati."
 
-#: ../../mod/photos.php:1148
-msgid "Private Photo"
-msgstr "Foto privata"
+#: ../../mod/admin.php:675
+msgid "Verify SSL"
+msgstr "Verifica SSL"
 
-#: ../../mod/photos.php:1149
-msgid "Public Photo"
-msgstr "Foto pubblica"
+#: ../../mod/admin.php:675
+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 "Se vuoi, puoi abilitare il controllo rigoroso dei certificati.Questo significa che non potrai collegarti (del tutto) con siti con certificati SSL auto-firmati."
 
-#: ../../mod/photos.php:1212
-msgid "Edit Album"
-msgstr "Modifica album"
+#: ../../mod/admin.php:676
+msgid "Proxy user"
+msgstr "Utente Proxy"
 
-#: ../../mod/photos.php:1218
-msgid "Show Newest First"
-msgstr "Mostra nuove foto per prime"
+#: ../../mod/admin.php:677
+msgid "Proxy URL"
+msgstr "URL Proxy"
 
-#: ../../mod/photos.php:1220
-msgid "Show Oldest First"
-msgstr "Mostra vecchie foto per prime"
+#: ../../mod/admin.php:678
+msgid "Network timeout"
+msgstr "Timeout rete"
 
-#: ../../mod/photos.php:1248 ../../mod/photos.php:1802
-msgid "View Photo"
-msgstr "Vedi foto"
+#: ../../mod/admin.php:678
+msgid "Value is in seconds. Set to 0 for unlimited (not recommended)."
+msgstr "Valore in secondi. Imposta a 0 per illimitato (non raccomandato)."
 
-#: ../../mod/photos.php:1294
-msgid "Permission denied. Access to this item may be restricted."
-msgstr "Permesso negato. L'accesso a questo elemento può essere limitato."
+#: ../../mod/admin.php:679
+msgid "Delivery interval"
+msgstr "Intervallo di invio"
 
-#: ../../mod/photos.php:1296
-msgid "Photo not available"
-msgstr "Foto non disponibile"
+#: ../../mod/admin.php:679
+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 "Ritarda il processo di invio in background  di n secondi per ridurre il carico di sistema. Raccomandato:  4-5 per host condivisit, 2-3 per VPS. 0-1 per grandi server dedicati."
 
-#: ../../mod/photos.php:1352
-msgid "View photo"
-msgstr "Vedi foto"
+#: ../../mod/admin.php:680
+msgid "Poll interval"
+msgstr "Intervallo di poll"
 
-#: ../../mod/photos.php:1352
-msgid "Edit photo"
-msgstr "Modifica foto"
+#: ../../mod/admin.php:680
+msgid ""
+"Delay background polling processes by this many seconds to reduce system "
+"load. If 0, use delivery interval."
+msgstr "Ritarda il processo di poll in background di n secondi per ridurre il carico di sistema. Se 0, usa l'intervallo di invio."
 
-#: ../../mod/photos.php:1353
-msgid "Use as profile photo"
-msgstr "Usa come foto del profilo"
+#: ../../mod/admin.php:681
+msgid "Maximum Load Average"
+msgstr "Massimo carico medio"
 
-#: ../../mod/photos.php:1378
-msgid "View Full Size"
-msgstr "Vedi dimensione intera"
+#: ../../mod/admin.php:681
+msgid ""
+"Maximum system load before delivery and poll processes are deferred - "
+"default 50."
+msgstr "Massimo carico di sistema prima che i processi di invio e di poll siano ritardati. Predefinito a 50."
 
-#: ../../mod/photos.php:1457
-msgid "Tags: "
-msgstr "Tag: "
+#: ../../mod/admin.php:682
+msgid "Maximum Load Average (Frontend)"
+msgstr "Media Massimo Carico (Frontend)"
 
-#: ../../mod/photos.php:1460
-msgid "[Remove any tag]"
-msgstr "[Rimuovi tutti i tag]"
+#: ../../mod/admin.php:682
+msgid "Maximum system load before the frontend quits service - default 50."
+msgstr "Massimo carico di sistema prima che il frontend fermi il servizio - default 50."
 
-#: ../../mod/photos.php:1500
-msgid "Rotate CW (right)"
-msgstr "Ruota a destra"
+#: ../../mod/admin.php:684
+msgid "Use MySQL full text engine"
+msgstr "Usa il motore MySQL full text"
 
-#: ../../mod/photos.php:1501
-msgid "Rotate CCW (left)"
-msgstr "Ruota a sinistra"
+#: ../../mod/admin.php:684
+msgid ""
+"Activates the full text engine. Speeds up search - but can only search for "
+"four and more characters."
+msgstr "Attiva il motore full text. Velocizza la ricerca, ma puo' cercare solo per quattro o più caratteri."
 
-#: ../../mod/photos.php:1503
-msgid "New album name"
-msgstr "Nuovo nome dell'album"
+#: ../../mod/admin.php:685
+msgid "Suppress Language"
+msgstr "Disattiva lingua"
 
-#: ../../mod/photos.php:1506
-msgid "Caption"
-msgstr "Titolo"
+#: ../../mod/admin.php:685
+msgid "Suppress language information in meta information about a posting."
+msgstr "Disattiva le informazioni sulla lingua nei meta di un post."
 
-#: ../../mod/photos.php:1508
-msgid "Add a Tag"
-msgstr "Aggiungi tag"
+#: ../../mod/admin.php:686
+msgid "Suppress Tags"
+msgstr "Sopprimi Tags"
 
-#: ../../mod/photos.php:1512
-msgid ""
-"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
-msgstr "Esempio: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
+#: ../../mod/admin.php:686
+msgid "Suppress showing a list of hashtags at the end of the posting."
+msgstr "Non mostra la lista di hashtag in coda al messaggio"
 
-#: ../../mod/photos.php:1521
-msgid "Private photo"
-msgstr "Foto privata"
+#: ../../mod/admin.php:687
+msgid "Path to item cache"
+msgstr "Percorso cache elementi"
 
-#: ../../mod/photos.php:1522
-msgid "Public photo"
-msgstr "Foto pubblica"
+#: ../../mod/admin.php:688
+msgid "Cache duration in seconds"
+msgstr "Durata della cache in secondi"
 
-#: ../../mod/photos.php:1544 ../../include/conversation.php:1090
-msgid "Share"
-msgstr "Condividi"
+#: ../../mod/admin.php:688
+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 "Quanto a lungo devono essere mantenuti i file di cache? Il valore predefinito è 86400 secondi (un giorno). Per disabilitare la cache, imposta il valore a -1."
 
-#: ../../mod/photos.php:1817
-msgid "Recent Photos"
-msgstr "Foto recenti"
+#: ../../mod/admin.php:689
+msgid "Maximum numbers of comments per post"
+msgstr "Numero massimo di commenti per post"
 
-#: ../../mod/regmod.php:55
-msgid "Account approved."
-msgstr "Account approvato."
+#: ../../mod/admin.php:689
+msgid "How much comments should be shown for each post? Default value is 100."
+msgstr "Quanti commenti devono essere mostrati per ogni post? Default : 100."
 
-#: ../../mod/regmod.php:92
-#, php-format
-msgid "Registration revoked for %s"
-msgstr "Registrazione revocata per %s"
-
-#: ../../mod/regmod.php:104
-msgid "Please login."
-msgstr "Accedi."
+#: ../../mod/admin.php:690
+msgid "Path for lock file"
+msgstr "Percorso al file di lock"
 
-#: ../../mod/uimport.php:66
-msgid "Move account"
-msgstr "Muovi account"
+#: ../../mod/admin.php:691
+msgid "Temp path"
+msgstr "Percorso file temporanei"
 
-#: ../../mod/uimport.php:67
-msgid "You can import an account from another Friendica server."
-msgstr "Puoi importare un account da un altro server Friendica."
+#: ../../mod/admin.php:692
+msgid "Base path to installation"
+msgstr "Percorso base all'installazione"
 
-#: ../../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 "Devi esportare il tuo account dal vecchio server e caricarlo qui. Noi ricreeremo il tuo vecchio account qui, con tutti i tuoi contatti. Proveremo anche a informare i tuoi amici che ti sei spostato qui."
+#: ../../mod/admin.php:693
+msgid "Disable picture proxy"
+msgstr "Disabilita il proxy immagini"
 
-#: ../../mod/uimport.php:69
+#: ../../mod/admin.php:693
 msgid ""
-"This feature is experimental. We can't import contacts from the OStatus "
-"network (statusnet/identi.ca) or from Diaspora"
-msgstr "Questa funzione è sperimentale. Non possiamo importare i contatti dalla rete OStatus (status.net/identi.ca) o da Diaspora"
+"The picture proxy increases performance and privacy. It shouldn't be used on"
+" systems with very low bandwith."
+msgstr "Il proxy immagini aumenta le performace e la privacy. Non dovrebbe essere usato su server con poca banda disponibile."
 
-#: ../../mod/uimport.php:70
-msgid "Account file"
-msgstr "File account"
+#: ../../mod/admin.php:694
+msgid "Enable old style pager"
+msgstr "Abilita la paginazione vecchio stile"
 
-#: ../../mod/uimport.php:70
+#: ../../mod/admin.php:694
 msgid ""
-"To export your account, go to \"Settings->Export your personal data\" and "
-"select \"Export account\""
-msgstr "Per esportare il tuo account, vai su \"Impostazioni -> Esporta i tuoi dati personali\" e seleziona \"Esporta account\""
+"The old style pager has page numbers but slows down massively the page "
+"speed."
+msgstr "La paginazione vecchio stile mostra i numeri delle pagine, ma rallenta la velocità di caricamento della pagina."
 
-#: ../../mod/attach.php:8
-msgid "Item not available."
-msgstr "Oggetto non disponibile."
+#: ../../mod/admin.php:695
+msgid "Only search in tags"
+msgstr "Cerca solo nei tag"
 
-#: ../../mod/attach.php:20
-msgid "Item was not found."
-msgstr "Oggetto non trovato."
+#: ../../mod/admin.php:695
+msgid "On large systems the text search can slow down the system extremely."
+msgstr "Su server con molti dati, la ricerca nel testo può estremamente rallentare il sistema."
 
-#: ../../boot.php:749
-msgid "Delete this item?"
-msgstr "Cancellare questo elemento?"
+#: ../../mod/admin.php:697
+msgid "New base url"
+msgstr "Nuovo url base"
 
-#: ../../boot.php:752
-msgid "show fewer"
-msgstr "mostra di meno"
+#: ../../mod/admin.php:714
+msgid "Update has been marked successful"
+msgstr "L'aggiornamento è stato segnato come  di successo"
 
-#: ../../boot.php:1122
+#: ../../mod/admin.php:722
 #, php-format
-msgid "Update %s failed. See error logs."
-msgstr "aggiornamento %s fallito. Guarda i log di errore."
-
-#: ../../boot.php:1240
-msgid "Create a New Account"
-msgstr "Crea un nuovo account"
+msgid "Database structure update %s was successfully applied."
+msgstr "Aggiornamento struttura database %s applicata con successo."
 
-#: ../../boot.php:1265 ../../include/nav.php:73
-msgid "Logout"
-msgstr "Esci"
+#: ../../mod/admin.php:725
+#, php-format
+msgid "Executing of database structure update %s failed with error: %s"
+msgstr "Aggiornamento struttura database %s fallita con errore: %s"
 
-#: ../../boot.php:1268
-msgid "Nickname or Email address: "
-msgstr "Nome utente o indirizzo email: "
+#: ../../mod/admin.php:737
+#, php-format
+msgid "Executing %s failed with error: %s"
+msgstr "Esecuzione di %s fallita con errore: %s"
 
-#: ../../boot.php:1269
-msgid "Password: "
-msgstr "Password: "
+#: ../../mod/admin.php:740
+#, php-format
+msgid "Update %s was successfully applied."
+msgstr "L'aggiornamento %s è stato applicato con successo"
 
-#: ../../boot.php:1270
-msgid "Remember me"
-msgstr "Ricordati di me"
+#: ../../mod/admin.php:744
+#, php-format
+msgid "Update %s did not return a status. Unknown if it succeeded."
+msgstr "L'aggiornamento %s non ha riportato uno stato. Non so se è andato a buon fine."
 
-#: ../../boot.php:1273
-msgid "Or login using OpenID: "
-msgstr "O entra con OpenID:"
+#: ../../mod/admin.php:746
+#, php-format
+msgid "There was no additional update function %s that needed to be called."
+msgstr "Non ci sono altre funzioni di aggiornamento %s da richiamare."
 
-#: ../../boot.php:1279
-msgid "Forgot your password?"
-msgstr "Hai dimenticato la password?"
+#: ../../mod/admin.php:765
+msgid "No failed updates."
+msgstr "Nessun aggiornamento fallito."
 
-#: ../../boot.php:1282
-msgid "Website Terms of Service"
-msgstr "Condizioni di servizio del sito web "
+#: ../../mod/admin.php:766
+msgid "Check database structure"
+msgstr "Controlla struttura database"
 
-#: ../../boot.php:1283
-msgid "terms of service"
-msgstr "condizioni del servizio"
+#: ../../mod/admin.php:771
+msgid "Failed Updates"
+msgstr "Aggiornamenti falliti"
 
-#: ../../boot.php:1285
-msgid "Website Privacy Policy"
-msgstr "Politiche di privacy del sito"
+#: ../../mod/admin.php:772
+msgid ""
+"This does not include updates prior to 1139, which did not return a status."
+msgstr "Questo non include gli aggiornamenti prima del 1139, che non ritornano lo stato."
 
-#: ../../boot.php:1286
-msgid "privacy policy"
-msgstr "politiche di privacy"
+#: ../../mod/admin.php:773
+msgid "Mark success (if update was manually applied)"
+msgstr "Segna completato (se l'update è stato applicato manualmente)"
 
-#: ../../boot.php:1419
-msgid "Requested account is not available."
-msgstr "L'account richiesto non è disponibile."
+#: ../../mod/admin.php:774
+msgid "Attempt to execute this update step automatically"
+msgstr "Cerco di eseguire questo aggiornamento in automatico"
 
-#: ../../boot.php:1501 ../../boot.php:1635
-#: ../../include/profile_advanced.php:84
-msgid "Edit profile"
-msgstr "Modifica il profilo"
+#: ../../mod/admin.php:806
+#, php-format
+msgid ""
+"\n"
+"\t\t\tDear %1$s,\n"
+"\t\t\t\tthe administrator of %2$s has set up an account for you."
+msgstr "\nGentile %1$s,\n    l'amministratore di %2$s ha impostato un account per te."
 
-#: ../../boot.php:1600
-msgid "Message"
-msgstr "Messaggio"
+#: ../../mod/admin.php:809
+#, php-format
+msgid ""
+"\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."
+msgstr "\nI dettagli del tuo utente sono:\n    Indirizzo del sito: %1$s\n    Nome utente: %2$s\n    Password: %3$s\n\nPuoi cambiare la tua password dalla pagina delle impostazioni del tuo account dopo esserti autenticato.\n\nPer favore, prenditi qualche momento per esaminare tutte le impostazioni presenti.\n\nPotresti voler aggiungere qualche informazione di base al tuo profilo predefinito (nella pagina \"Profili\"), così che le altre persone possano trovarti più facilmente.\n\nTi raccomandiamo di inserire il tuo nome completo, aggiungere una foto, aggiungere qualche parola chiave del profilo (molto utili per trovare nuovi contatti), e magari in quale nazione vivi, se non vuoi essere più specifico di così.\n\nNoi rispettiamo appieno la tua privacy, e nessuna di queste informazioni è necessaria o obbligatoria.\nSe sei nuovo e non conosci nessuno qui, possono aiutarti a trovare qualche nuovo e interessante contatto.\n\nGrazie e benvenuto su %4$s"
 
-#: ../../boot.php:1606 ../../include/nav.php:175
-msgid "Profiles"
-msgstr "Profili"
+#: ../../mod/admin.php:853
+#, php-format
+msgid "%s user blocked/unblocked"
+msgid_plural "%s users blocked/unblocked"
+msgstr[0] "%s utente bloccato/sbloccato"
+msgstr[1] "%s utenti bloccati/sbloccati"
 
-#: ../../boot.php:1606
-msgid "Manage/edit profiles"
-msgstr "Gestisci/modifica i profili"
+#: ../../mod/admin.php:860
+#, php-format
+msgid "%s user deleted"
+msgid_plural "%s users deleted"
+msgstr[0] "%s utente cancellato"
+msgstr[1] "%s utenti cancellati"
 
-#: ../../boot.php:1706
-msgid "Network:"
-msgstr "Rete:"
+#: ../../mod/admin.php:899
+#, php-format
+msgid "User '%s' deleted"
+msgstr "Utente '%s' cancellato"
 
-#: ../../boot.php:1736 ../../boot.php:1822
-msgid "g A l F d"
-msgstr "g A l d F"
+#: ../../mod/admin.php:907
+#, php-format
+msgid "User '%s' unblocked"
+msgstr "Utente '%s' sbloccato"
 
-#: ../../boot.php:1737 ../../boot.php:1823
-msgid "F d"
-msgstr "d F"
+#: ../../mod/admin.php:907
+#, php-format
+msgid "User '%s' blocked"
+msgstr "Utente '%s' bloccato"
 
-#: ../../boot.php:1782 ../../boot.php:1863
-msgid "[today]"
-msgstr "[oggi]"
+#: ../../mod/admin.php:1002
+msgid "Add User"
+msgstr "Aggiungi utente"
 
-#: ../../boot.php:1794
-msgid "Birthday Reminders"
-msgstr "Promemoria compleanni"
+#: ../../mod/admin.php:1003
+msgid "select all"
+msgstr "seleziona tutti"
 
-#: ../../boot.php:1795
-msgid "Birthdays this week:"
-msgstr "Compleanni questa settimana:"
+#: ../../mod/admin.php:1004
+msgid "User registrations waiting for confirm"
+msgstr "Richieste di registrazione in attesa di conferma"
 
-#: ../../boot.php:1856
-msgid "[No description]"
-msgstr "[Nessuna descrizione]"
+#: ../../mod/admin.php:1005
+msgid "User waiting for permanent deletion"
+msgstr "Utente in attesa di cancellazione definitiva"
 
-#: ../../boot.php:1874
-msgid "Event Reminders"
-msgstr "Promemoria"
+#: ../../mod/admin.php:1006
+msgid "Request date"
+msgstr "Data richiesta"
 
-#: ../../boot.php:1875
-msgid "Events this week:"
-msgstr "Eventi di questa settimana:"
+#: ../../mod/admin.php:1007
+msgid "No registrations."
+msgstr "Nessuna registrazione."
 
-#: ../../boot.php:2112 ../../include/nav.php:76
-msgid "Status"
-msgstr "Stato"
+#: ../../mod/admin.php:1009
+msgid "Deny"
+msgstr "Nega"
 
-#: ../../boot.php:2115
-msgid "Status Messages and Posts"
-msgstr "Messaggi di stato e post"
+#: ../../mod/admin.php:1013
+msgid "Site admin"
+msgstr "Amministrazione sito"
 
-#: ../../boot.php:2122
-msgid "Profile Details"
-msgstr "Dettagli del profilo"
+#: ../../mod/admin.php:1014
+msgid "Account expired"
+msgstr "Account scaduto"
 
-#: ../../boot.php:2133 ../../boot.php:2136 ../../include/nav.php:79
-msgid "Videos"
-msgstr "Video"
+#: ../../mod/admin.php:1017
+msgid "New User"
+msgstr "Nuovo Utente"
 
-#: ../../boot.php:2146
-msgid "Events and Calendar"
-msgstr "Eventi e calendario"
+#: ../../mod/admin.php:1018 ../../mod/admin.php:1019
+msgid "Register date"
+msgstr "Data registrazione"
 
-#: ../../boot.php:2153
-msgid "Only You Can See This"
-msgstr "Solo tu puoi vedere questo"
+#: ../../mod/admin.php:1018 ../../mod/admin.php:1019
+msgid "Last login"
+msgstr "Ultimo accesso"
 
-#: ../../object/Item.php:94
-msgid "This entry was edited"
-msgstr "Questa voce è stata modificata"
+#: ../../mod/admin.php:1018 ../../mod/admin.php:1019
+msgid "Last item"
+msgstr "Ultimo elemento"
 
-#: ../../object/Item.php:208
-msgid "ignore thread"
-msgstr "ignora la discussione"
+#: ../../mod/admin.php:1018
+msgid "Deleted since"
+msgstr "Rimosso da"
 
-#: ../../object/Item.php:209
-msgid "unignore thread"
-msgstr "non ignorare la discussione"
+#: ../../mod/admin.php:1021
+msgid ""
+"Selected users will be deleted!\\n\\nEverything these users had posted on "
+"this site will be permanently deleted!\\n\\nAre you sure?"
+msgstr "Gli utenti selezionati saranno cancellati!\\n\\nTutto quello che gli utenti hanno inviato su questo sito sarà permanentemente canellato!\\n\\nSei sicuro?"
 
-#: ../../object/Item.php:210
-msgid "toggle ignore status"
-msgstr "inverti stato \"Ignora\""
+#: ../../mod/admin.php:1022
+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 "L'utente {0} sarà cancellato!\\n\\nTutto quello che ha inviato su questo sito sarà permanentemente cancellato!\\n\\nSei sicuro?"
 
-#: ../../object/Item.php:213
-msgid "ignored"
-msgstr "ignorato"
+#: ../../mod/admin.php:1032
+msgid "Name of the new user."
+msgstr "Nome del nuovo utente."
 
-#: ../../object/Item.php:316 ../../include/conversation.php:666
-msgid "Categories:"
-msgstr "Categorie:"
+#: ../../mod/admin.php:1033
+msgid "Nickname"
+msgstr "Nome utente"
 
-#: ../../object/Item.php:317 ../../include/conversation.php:667
-msgid "Filed under:"
-msgstr "Archiviato in:"
+#: ../../mod/admin.php:1033
+msgid "Nickname of the new user."
+msgstr "Nome utente del nuovo utente."
 
-#: ../../object/Item.php:329
-msgid "via"
-msgstr "via"
+#: ../../mod/admin.php:1034
+msgid "Email address of the new user."
+msgstr "Indirizzo Email del nuovo utente."
 
-#: ../../include/dbstructure.php:26
+#: ../../mod/admin.php:1067
 #, 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 "\nGli sviluppatori di Friendica hanno rilasciato l'aggiornamento %s\nrecentemente, ma quando ho provato a installarlo, qualcosa è \nandato terribilmente storto.\nBisogna sistemare le cose e non posso farlo da solo.\nContatta uno sviluppatore se non puoi aiutarmi da solo. Il mio database potrebbe essere invalido."
+msgid "Plugin %s disabled."
+msgstr "Plugin %s disabilitato."
 
-#: ../../include/dbstructure.php:31
+#: ../../mod/admin.php:1071
 #, php-format
-msgid ""
-"The error message is\n"
-"[pre]%s[/pre]"
-msgstr "Il messaggio di errore è\n[pre]%s[/pre]"
-
-#: ../../include/dbstructure.php:162
-msgid "Errors encountered creating database tables."
-msgstr "La creazione delle tabelle del database ha generato errori."
+msgid "Plugin %s enabled."
+msgstr "Plugin %s abilitato."
 
-#: ../../include/dbstructure.php:220
-msgid "Errors encountered performing database changes."
-msgstr "Riscontrati errori applicando le modifiche al database."
+#: ../../mod/admin.php:1081 ../../mod/admin.php:1297
+msgid "Disable"
+msgstr "Disabilita"
 
-#: ../../include/auth.php:38
-msgid "Logged out."
-msgstr "Uscita effettuata."
+#: ../../mod/admin.php:1083 ../../mod/admin.php:1299
+msgid "Enable"
+msgstr "Abilita"
 
-#: ../../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 "Abbiamo incontrato un problema mentre contattavamo il server OpenID che ci hai fornito. Controlla di averlo scritto giusto."
+#: ../../mod/admin.php:1106 ../../mod/admin.php:1327
+msgid "Toggle"
+msgstr "Inverti"
 
-#: ../../include/auth.php:128 ../../include/user.php:67
-msgid "The error message was:"
-msgstr "Il messaggio riportato era:"
+#: ../../mod/admin.php:1114 ../../mod/admin.php:1337
+msgid "Author: "
+msgstr "Autore: "
 
-#: ../../include/contact_widgets.php:6
-msgid "Add New Contact"
-msgstr "Aggiungi nuovo contatto"
+#: ../../mod/admin.php:1115 ../../mod/admin.php:1338
+msgid "Maintainer: "
+msgstr "Manutentore: "
 
-#: ../../include/contact_widgets.php:7
-msgid "Enter address or web location"
-msgstr "Inserisci posizione o indirizzo web"
+#: ../../mod/admin.php:1257
+msgid "No themes found."
+msgstr "Nessun tema trovato."
 
-#: ../../include/contact_widgets.php:8
-msgid "Example: bob@example.com, http://example.com/barbara"
-msgstr "Esempio: bob@example.com, http://example.com/barbara"
+#: ../../mod/admin.php:1319
+msgid "Screenshot"
+msgstr "Anteprima"
 
-#: ../../include/contact_widgets.php:24
-#, php-format
-msgid "%d invitation available"
-msgid_plural "%d invitations available"
-msgstr[0] "%d invito disponibile"
-msgstr[1] "%d inviti disponibili"
+#: ../../mod/admin.php:1365
+msgid "[Experimental]"
+msgstr "[Sperimentale]"
 
-#: ../../include/contact_widgets.php:30
-msgid "Find People"
-msgstr "Trova persone"
+#: ../../mod/admin.php:1366
+msgid "[Unsupported]"
+msgstr "[Non supportato]"
 
-#: ../../include/contact_widgets.php:31
-msgid "Enter name or interest"
-msgstr "Inserisci un nome o un interesse"
+#: ../../mod/admin.php:1393
+msgid "Log settings updated."
+msgstr "Impostazioni Log aggiornate."
 
-#: ../../include/contact_widgets.php:32
-msgid "Connect/Follow"
-msgstr "Connetti/segui"
+#: ../../mod/admin.php:1449
+msgid "Clear"
+msgstr "Pulisci"
 
-#: ../../include/contact_widgets.php:33
-msgid "Examples: Robert Morgenstein, Fishing"
-msgstr "Esempi: Mario Rossi, Pesca"
+#: ../../mod/admin.php:1455
+msgid "Enable Debugging"
+msgstr "Abilita Debugging"
 
-#: ../../include/contact_widgets.php:36 ../../view/theme/diabook/theme.php:526
-msgid "Similar Interests"
-msgstr "Interessi simili"
+#: ../../mod/admin.php:1456
+msgid "Log file"
+msgstr "File di Log"
 
-#: ../../include/contact_widgets.php:37
-msgid "Random Profile"
-msgstr "Profilo causale"
+#: ../../mod/admin.php:1456
+msgid ""
+"Must be writable by web server. Relative to your Friendica top-level "
+"directory."
+msgstr "Deve essere scrivibile dal server web. Relativo alla tua directory Friendica."
 
-#: ../../include/contact_widgets.php:38 ../../view/theme/diabook/theme.php:528
-msgid "Invite Friends"
-msgstr "Invita amici"
+#: ../../mod/admin.php:1457
+msgid "Log level"
+msgstr "Livello di Log"
 
-#: ../../include/contact_widgets.php:71
-msgid "Networks"
-msgstr "Reti"
+#: ../../mod/admin.php:1507
+msgid "Close"
+msgstr "Chiudi"
 
-#: ../../include/contact_widgets.php:74
-msgid "All Networks"
-msgstr "Tutte le Reti"
+#: ../../mod/admin.php:1513
+msgid "FTP Host"
+msgstr "Indirizzo FTP"
 
-#: ../../include/contact_widgets.php:104 ../../include/features.php:60
-msgid "Saved Folders"
-msgstr "Cartelle Salvate"
+#: ../../mod/admin.php:1514
+msgid "FTP Path"
+msgstr "Percorso FTP"
 
-#: ../../include/contact_widgets.php:107 ../../include/contact_widgets.php:139
-msgid "Everything"
-msgstr "Tutto"
+#: ../../mod/admin.php:1515
+msgid "FTP User"
+msgstr "Utente FTP"
 
-#: ../../include/contact_widgets.php:136
-msgid "Categories"
-msgstr "Categorie"
+#: ../../mod/admin.php:1516
+msgid "FTP Password"
+msgstr "Pasword FTP"
 
-#: ../../include/features.php:23
-msgid "General Features"
-msgstr "Funzionalità generali"
+#: ../../mod/wall_upload.php:122 ../../mod/profile_photo.php:144
+#, php-format
+msgid "Image exceeds size limit of %d"
+msgstr "La dimensione dell'immagine supera il limite di %d"
 
-#: ../../include/features.php:25
-msgid "Multiple Profiles"
-msgstr "Profili multipli"
+#: ../../mod/wall_upload.php:144 ../../mod/photos.php:807
+#: ../../mod/profile_photo.php:153
+msgid "Unable to process image."
+msgstr "Impossibile caricare l'immagine."
 
-#: ../../include/features.php:25
-msgid "Ability to create multiple profiles"
-msgstr "Possibilità di creare profili multipli"
+#: ../../mod/wall_upload.php:172 ../../mod/photos.php:834
+#: ../../mod/profile_photo.php:301
+msgid "Image upload failed."
+msgstr "Caricamento immagine fallito."
 
-#: ../../include/features.php:30
-msgid "Post Composition Features"
-msgstr "Funzionalità di composizione dei post"
+#: ../../mod/home.php:35
+#, php-format
+msgid "Welcome to %s"
+msgstr "Benvenuto su %s"
 
-#: ../../include/features.php:31
-msgid "Richtext Editor"
-msgstr "Editor visuale"
+#: ../../mod/openid.php:24
+msgid "OpenID protocol error. No ID returned."
+msgstr "Errore protocollo OpenID. Nessun ID ricevuto."
 
-#: ../../include/features.php:31
-msgid "Enable richtext editor"
-msgstr "Abilita l'editor visuale"
+#: ../../mod/openid.php:53
+msgid ""
+"Account not found and OpenID registration is not permitted on this site."
+msgstr "L'account non è stato trovato, e la registrazione via OpenID non è permessa su questo sito."
 
-#: ../../include/features.php:32
-msgid "Post Preview"
-msgstr "Anteprima dei post"
+#: ../../mod/network.php:142
+msgid "Search Results For:"
+msgstr "Cerca risultati per:"
 
-#: ../../include/features.php:32
-msgid "Allow previewing posts and comments before publishing them"
-msgstr "Permetti di avere un'anteprima di messaggi e commenti prima di pubblicarli"
+#: ../../mod/network.php:185 ../../mod/search.php:21
+msgid "Remove term"
+msgstr "Rimuovi termine"
 
-#: ../../include/features.php:33
-msgid "Auto-mention Forums"
-msgstr "Auto-cita i Forum"
+#: ../../mod/network.php:356
+msgid "Commented Order"
+msgstr "Ordina per commento"
 
-#: ../../include/features.php:33
-msgid ""
-"Add/remove mention when a fourm page is selected/deselected in ACL window."
-msgstr "Aggiunge o rimuove una citazione quando un forum è selezionato o deselezionato nella finestra dei permessi."
+#: ../../mod/network.php:359
+msgid "Sort by Comment Date"
+msgstr "Ordina per data commento"
 
-#: ../../include/features.php:38
-msgid "Network Sidebar Widgets"
-msgstr "Widget della barra laterale nella pagina Rete"
+#: ../../mod/network.php:362
+msgid "Posted Order"
+msgstr "Ordina per invio"
 
-#: ../../include/features.php:39
-msgid "Search by Date"
-msgstr "Cerca per data"
+#: ../../mod/network.php:365
+msgid "Sort by Post Date"
+msgstr "Ordina per data messaggio"
 
-#: ../../include/features.php:39
-msgid "Ability to select posts by date ranges"
-msgstr "Permette di filtrare i post per data"
+#: ../../mod/network.php:374
+msgid "Posts that mention or involve you"
+msgstr "Messaggi che ti citano o coinvolgono"
 
-#: ../../include/features.php:40
-msgid "Group Filter"
-msgstr "Filtra gruppi"
+#: ../../mod/network.php:380
+msgid "New"
+msgstr "Nuovo"
 
-#: ../../include/features.php:40
-msgid "Enable widget to display Network posts only from selected group"
-msgstr "Abilita il widget per filtrare i post solo per il gruppo selezionato"
+#: ../../mod/network.php:383
+msgid "Activity Stream - by date"
+msgstr "Activity Stream - per data"
 
-#: ../../include/features.php:41
-msgid "Network Filter"
-msgstr "Filtro reti"
+#: ../../mod/network.php:389
+msgid "Shared Links"
+msgstr "Links condivisi"
 
-#: ../../include/features.php:41
-msgid "Enable widget to display Network posts only from selected network"
-msgstr "Abilita il widget per mostare i post solo per la rete selezionata"
-
-#: ../../include/features.php:42
-msgid "Save search terms for re-use"
-msgstr "Salva i termini cercati per riutilizzarli"
+#: ../../mod/network.php:392
+msgid "Interesting Links"
+msgstr "Link Interessanti"
 
-#: ../../include/features.php:47
-msgid "Network Tabs"
-msgstr "Schede pagina Rete"
+#: ../../mod/network.php:398
+msgid "Starred"
+msgstr "Preferiti"
 
-#: ../../include/features.php:48
-msgid "Network Personal Tab"
-msgstr "Scheda Personali"
+#: ../../mod/network.php:401
+msgid "Favourite Posts"
+msgstr "Messaggi preferiti"
 
-#: ../../include/features.php:48
-msgid "Enable tab to display only Network posts that you've interacted on"
-msgstr "Abilita la scheda per mostrare solo i post a cui hai partecipato"
+#: ../../mod/network.php:458
+#, 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] "Attenzione: questo gruppo contiene %s membro da un network insicuro."
+msgstr[1] "Attenzione: questo gruppo contiene %s membri da un network insicuro."
 
-#: ../../include/features.php:49
-msgid "Network New Tab"
-msgstr "Scheda Nuovi"
+#: ../../mod/network.php:461
+msgid "Private messages to this group are at risk of public disclosure."
+msgstr "I messaggi privati su questo gruppo potrebbero risultare visibili anche pubblicamente."
 
-#: ../../include/features.php:49
-msgid "Enable tab to display only new Network posts (from the last 12 hours)"
-msgstr "Abilita la scheda per mostrare solo i post nuovi (nelle ultime 12 ore)"
+#: ../../mod/network.php:524 ../../mod/content.php:119
+msgid "No such group"
+msgstr "Nessun gruppo"
 
-#: ../../include/features.php:50
-msgid "Network Shared Links Tab"
-msgstr "Scheda Link Condivisi"
+#: ../../mod/network.php:541 ../../mod/content.php:130
+msgid "Group is empty"
+msgstr "Il gruppo è vuoto"
 
-#: ../../include/features.php:50
-msgid "Enable tab to display only Network posts with links in them"
-msgstr "Abilita la scheda per mostrare solo i post che contengono link"
+#: ../../mod/network.php:548 ../../mod/content.php:134
+msgid "Group: "
+msgstr "Gruppo: "
 
-#: ../../include/features.php:55
-msgid "Post/Comment Tools"
-msgstr "Strumenti per messaggi/commenti"
+#: ../../mod/network.php:558
+msgid "Contact: "
+msgstr "Contatto:"
 
-#: ../../include/features.php:56
-msgid "Multiple Deletion"
-msgstr "Eliminazione multipla"
+#: ../../mod/network.php:560
+msgid "Private messages to this person are at risk of public disclosure."
+msgstr "I messaggi privati a questa persona potrebbero risultare visibili anche pubblicamente."
 
-#: ../../include/features.php:56
-msgid "Select and delete multiple posts/comments at once"
-msgstr "Seleziona ed elimina vari messagi e commenti in una volta sola"
+#: ../../mod/network.php:565
+msgid "Invalid contact."
+msgstr "Contatto non valido."
 
-#: ../../include/features.php:57
-msgid "Edit Sent Posts"
-msgstr "Modifica i post inviati"
+#: ../../mod/filer.php:30
+msgid "- select -"
+msgstr "- seleziona -"
 
-#: ../../include/features.php:57
-msgid "Edit and correct posts and comments after sending"
-msgstr "Modifica e correggi messaggi e commenti dopo averli inviati"
+#: ../../mod/friendica.php:59
+msgid "This is Friendica, version"
+msgstr "Questo è Friendica, versione"
 
-#: ../../include/features.php:58
-msgid "Tagging"
-msgstr "Aggiunta tag"
+#: ../../mod/friendica.php:60
+msgid "running at web location"
+msgstr "in esecuzione all'indirizzo web"
 
-#: ../../include/features.php:58
-msgid "Ability to tag existing posts"
-msgstr "Permette di aggiungere tag ai post già esistenti"
+#: ../../mod/friendica.php:62
+msgid ""
+"Please visit <a href=\"http://friendica.com\">Friendica.com</a> to learn "
+"more about the Friendica project."
+msgstr "Visita <a href=\"http://friendica.com\">Friendica.com</a> per saperne di più sul progetto Friendica."
 
-#: ../../include/features.php:59
-msgid "Post Categories"
-msgstr "Cateorie post"
+#: ../../mod/friendica.php:64
+msgid "Bug reports and issues: please visit"
+msgstr "Segnalazioni di bug e problemi: visita"
 
-#: ../../include/features.php:59
-msgid "Add categories to your posts"
-msgstr "Aggiungi categorie ai tuoi post"
+#: ../../mod/friendica.php:65
+msgid ""
+"Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - "
+"dot com"
+msgstr "Suggerimenti, lodi, donazioni, ecc -  e-mail a  \"Info\" at Friendica punto com"
 
-#: ../../include/features.php:60
-msgid "Ability to file posts under folders"
-msgstr "Permette di archiviare i post in cartelle"
+#: ../../mod/friendica.php:79
+msgid "Installed plugins/addons/apps:"
+msgstr "Plugin/addon/applicazioni instalate"
 
-#: ../../include/features.php:61
-msgid "Dislike Posts"
-msgstr "Non mi piace"
+#: ../../mod/friendica.php:92
+msgid "No installed plugins/addons/apps"
+msgstr "Nessun plugin/addons/applicazione installata"
 
-#: ../../include/features.php:61
-msgid "Ability to dislike posts/comments"
-msgstr "Permetti di inviare \"non mi piace\" ai messaggi"
+#: ../../mod/apps.php:11
+msgid "Applications"
+msgstr "Applicazioni"
 
-#: ../../include/features.php:62
-msgid "Star Posts"
-msgstr "Post preferiti"
+#: ../../mod/apps.php:14
+msgid "No installed applications."
+msgstr "Nessuna applicazione installata."
 
-#: ../../include/features.php:62
-msgid "Ability to mark special posts with a star indicator"
-msgstr "Permette di segnare i post preferiti con una stella"
+#: ../../mod/photos.php:67 ../../mod/photos.php:1262 ../../mod/photos.php:1819
+msgid "Upload New Photos"
+msgstr "Carica nuove foto"
 
-#: ../../include/features.php:63
-msgid "Mute Post Notifications"
-msgstr "Silenzia le notifiche di nuovi post"
+#: ../../mod/photos.php:144
+msgid "Contact information unavailable"
+msgstr "I dati di questo contatto non sono disponibili"
 
-#: ../../include/features.php:63
-msgid "Ability to mute notifications for a thread"
-msgstr "Permette di silenziare le notifiche di nuovi post in una discussione"
+#: ../../mod/photos.php:165
+msgid "Album not found."
+msgstr "Album non trovato."
 
-#: ../../include/follow.php:32
-msgid "Connect URL missing."
-msgstr "URL di connessione mancante."
+#: ../../mod/photos.php:188 ../../mod/photos.php:200 ../../mod/photos.php:1204
+msgid "Delete Album"
+msgstr "Rimuovi album"
 
-#: ../../include/follow.php:59
-msgid ""
-"This site is not configured to allow communications with other networks."
-msgstr "Questo sito non è configurato per permettere la comunicazione con altri network."
+#: ../../mod/photos.php:198
+msgid "Do you really want to delete this photo album and all its photos?"
+msgstr "Vuoi davvero cancellare questo album e tutte le sue foto?"
 
-#: ../../include/follow.php:60 ../../include/follow.php:80
-msgid "No compatible communication protocols or feeds were discovered."
-msgstr "Non sono stati trovati protocolli di comunicazione o feed compatibili."
+#: ../../mod/photos.php:278 ../../mod/photos.php:289 ../../mod/photos.php:1515
+msgid "Delete Photo"
+msgstr "Rimuovi foto"
 
-#: ../../include/follow.php:78
-msgid "The profile address specified does not provide adequate information."
-msgstr "L'indirizzo del profilo specificato non fornisce adeguate informazioni."
+#: ../../mod/photos.php:287
+msgid "Do you really want to delete this photo?"
+msgstr "Vuoi veramente cancellare questa foto?"
 
-#: ../../include/follow.php:82
-msgid "An author or name was not found."
-msgstr "Non è stato trovato un nome o un autore"
+#: ../../mod/photos.php:662
+#, php-format
+msgid "%1$s was tagged in %2$s by %3$s"
+msgstr "%1$s è stato taggato in %2$s da %3$s"
 
-#: ../../include/follow.php:84
-msgid "No browser URL could be matched to this address."
-msgstr "Nessun URL puo' essere associato a questo indirizzo."
+#: ../../mod/photos.php:662
+msgid "a photo"
+msgstr "una foto"
 
-#: ../../include/follow.php:86
-msgid ""
-"Unable to match @-style Identity Address with a known protocol or email "
-"contact."
-msgstr "Impossibile l'indirizzo identità con un protocollo conosciuto o con un contatto email."
+#: ../../mod/photos.php:767
+msgid "Image exceeds size limit of "
+msgstr "L'immagine supera il limite di"
 
-#: ../../include/follow.php:87
-msgid "Use mailto: in front of address to force email check."
-msgstr "Usa \"mailto:\" davanti all'indirizzo per forzare un controllo nelle email."
+#: ../../mod/photos.php:775
+msgid "Image file is empty."
+msgstr "Il file dell'immagine è vuoto."
 
-#: ../../include/follow.php:93
-msgid ""
-"The profile address specified belongs to a network which has been disabled "
-"on this site."
-msgstr "L'indirizzo del profilo specificato appartiene a un network che è stato disabilitato su questo sito."
+#: ../../mod/photos.php:930
+msgid "No photos selected"
+msgstr "Nessuna foto selezionata"
 
-#: ../../include/follow.php:103
-msgid ""
-"Limited profile. This person will be unable to receive direct/personal "
-"notifications from you."
-msgstr "Profilo limitato. Questa persona non sarà in grado di ricevere notifiche personali da te."
+#: ../../mod/photos.php:1094
+#, php-format
+msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."
+msgstr "Hai usato %1$.2f MBytes su %2$.2f disponibili."
 
-#: ../../include/follow.php:205
-msgid "Unable to retrieve contact information."
-msgstr "Impossibile recuperare informazioni sul contatto."
+#: ../../mod/photos.php:1129
+msgid "Upload Photos"
+msgstr "Carica foto"
 
-#: ../../include/follow.php:258
-msgid "following"
-msgstr "segue"
+#: ../../mod/photos.php:1133 ../../mod/photos.php:1199
+msgid "New album name: "
+msgstr "Nome nuovo album: "
 
-#: ../../include/group.php:25
-msgid ""
-"A deleted group with this name was revived. Existing item permissions "
-"<strong>may</strong> apply to this group and any future members. If this is "
-"not what you intended, please create another group with a different name."
-msgstr "Un gruppo eliminato con questo nome è stato ricreato. I permessi  esistenti su un elemento <strong>possono</strong> essere applicati a questo gruppo e tutti i membri futuri. Se questo non è ciò che si intende, si prega di creare un altro gruppo con un nome diverso."
+#: ../../mod/photos.php:1134
+msgid "or existing album name: "
+msgstr "o nome di un album esistente: "
 
-#: ../../include/group.php:207
-msgid "Default privacy group for new contacts"
-msgstr "Gruppo predefinito per i nuovi contatti"
+#: ../../mod/photos.php:1135
+msgid "Do not show a status post for this upload"
+msgstr "Non creare un post per questo upload"
 
-#: ../../include/group.php:226
-msgid "Everybody"
-msgstr "Tutti"
+#: ../../mod/photos.php:1137 ../../mod/photos.php:1510
+msgid "Permissions"
+msgstr "Permessi"
 
-#: ../../include/group.php:249
-msgid "edit"
-msgstr "modifica"
+#: ../../mod/photos.php:1148
+msgid "Private Photo"
+msgstr "Foto privata"
 
-#: ../../include/group.php:271
-msgid "Edit group"
-msgstr "Modifica gruppo"
-
-#: ../../include/group.php:272
-msgid "Create a new group"
-msgstr "Crea un nuovo gruppo"
+#: ../../mod/photos.php:1149
+msgid "Public Photo"
+msgstr "Foto pubblica"
 
-#: ../../include/group.php:273
-msgid "Contacts not in any group"
-msgstr "Contatti in nessun gruppo."
+#: ../../mod/photos.php:1212
+msgid "Edit Album"
+msgstr "Modifica album"
 
-#: ../../include/datetime.php:43 ../../include/datetime.php:45
-msgid "Miscellaneous"
-msgstr "Varie"
+#: ../../mod/photos.php:1218
+msgid "Show Newest First"
+msgstr "Mostra nuove foto per prime"
 
-#: ../../include/datetime.php:153 ../../include/datetime.php:290
-msgid "year"
-msgstr "anno"
+#: ../../mod/photos.php:1220
+msgid "Show Oldest First"
+msgstr "Mostra vecchie foto per prime"
 
-#: ../../include/datetime.php:158 ../../include/datetime.php:291
-msgid "month"
-msgstr "mese"
+#: ../../mod/photos.php:1248 ../../mod/photos.php:1802
+msgid "View Photo"
+msgstr "Vedi foto"
 
-#: ../../include/datetime.php:163 ../../include/datetime.php:293
-msgid "day"
-msgstr "giorno"
+#: ../../mod/photos.php:1294
+msgid "Permission denied. Access to this item may be restricted."
+msgstr "Permesso negato. L'accesso a questo elemento può essere limitato."
 
-#: ../../include/datetime.php:276
-msgid "never"
-msgstr "mai"
+#: ../../mod/photos.php:1296
+msgid "Photo not available"
+msgstr "Foto non disponibile"
 
-#: ../../include/datetime.php:282
-msgid "less than a second ago"
-msgstr "meno di un secondo fa"
+#: ../../mod/photos.php:1352
+msgid "View photo"
+msgstr "Vedi foto"
 
-#: ../../include/datetime.php:290
-msgid "years"
-msgstr "anni"
+#: ../../mod/photos.php:1352
+msgid "Edit photo"
+msgstr "Modifica foto"
 
-#: ../../include/datetime.php:291
-msgid "months"
-msgstr "mesi"
+#: ../../mod/photos.php:1353
+msgid "Use as profile photo"
+msgstr "Usa come foto del profilo"
 
-#: ../../include/datetime.php:292
-msgid "week"
-msgstr "settimana"
+#: ../../mod/photos.php:1378
+msgid "View Full Size"
+msgstr "Vedi dimensione intera"
 
-#: ../../include/datetime.php:292
-msgid "weeks"
-msgstr "settimane"
+#: ../../mod/photos.php:1457
+msgid "Tags: "
+msgstr "Tag: "
 
-#: ../../include/datetime.php:293
-msgid "days"
-msgstr "giorni"
+#: ../../mod/photos.php:1460
+msgid "[Remove any tag]"
+msgstr "[Rimuovi tutti i tag]"
 
-#: ../../include/datetime.php:294
-msgid "hour"
-msgstr "ora"
+#: ../../mod/photos.php:1500
+msgid "Rotate CW (right)"
+msgstr "Ruota a destra"
 
-#: ../../include/datetime.php:294
-msgid "hours"
-msgstr "ore"
+#: ../../mod/photos.php:1501
+msgid "Rotate CCW (left)"
+msgstr "Ruota a sinistra"
 
-#: ../../include/datetime.php:295
-msgid "minute"
-msgstr "minuto"
+#: ../../mod/photos.php:1503
+msgid "New album name"
+msgstr "Nuovo nome dell'album"
 
-#: ../../include/datetime.php:295
-msgid "minutes"
-msgstr "minuti"
+#: ../../mod/photos.php:1506
+msgid "Caption"
+msgstr "Titolo"
 
-#: ../../include/datetime.php:296
-msgid "second"
-msgstr "secondo"
+#: ../../mod/photos.php:1508
+msgid "Add a Tag"
+msgstr "Aggiungi tag"
 
-#: ../../include/datetime.php:296
-msgid "seconds"
-msgstr "secondi"
+#: ../../mod/photos.php:1512
+msgid ""
+"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
+msgstr "Esempio: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
 
-#: ../../include/datetime.php:305
-#, php-format
-msgid "%1$d %2$s ago"
-msgstr "%1$d %2$s fa"
+#: ../../mod/photos.php:1521
+msgid "Private photo"
+msgstr "Foto privata"
 
-#: ../../include/datetime.php:477 ../../include/items.php:2211
-#, php-format
-msgid "%s's birthday"
-msgstr "Compleanno di %s"
+#: ../../mod/photos.php:1522
+msgid "Public photo"
+msgstr "Foto pubblica"
 
-#: ../../include/datetime.php:478 ../../include/items.php:2212
-#, php-format
-msgid "Happy Birthday %s"
-msgstr "Buon compleanno %s"
+#: ../../mod/photos.php:1817
+msgid "Recent Photos"
+msgstr "Foto recenti"
 
-#: ../../include/acl_selectors.php:333
-msgid "Visible to everybody"
-msgstr "Visibile a tutti"
+#: ../../mod/bookmarklet.php:41
+msgid "The post was created"
+msgstr "Il messaggio è stato creato"
 
-#: ../../include/acl_selectors.php:334 ../../view/theme/diabook/config.php:142
-#: ../../view/theme/diabook/theme.php:621
-msgid "show"
-msgstr "mostra"
+#: ../../mod/follow.php:21
+msgid "You already added this contact."
+msgstr "Hai già aggiunto questo contatto."
 
-#: ../../include/acl_selectors.php:335 ../../view/theme/diabook/config.php:142
-#: ../../view/theme/diabook/theme.php:621
-msgid "don't show"
-msgstr "non mostrare"
+#: ../../mod/follow.php:103
+msgid "Contact added"
+msgstr "Contatto aggiunto"
 
-#: ../../include/message.php:15 ../../include/message.php:172
-msgid "[no subject]"
-msgstr "[nessun oggetto]"
+#: ../../mod/uimport.php:66
+msgid "Move account"
+msgstr "Muovi account"
 
-#: ../../include/Contact.php:115
-msgid "stopped following"
-msgstr "tolto dai seguiti"
+#: ../../mod/uimport.php:67
+msgid "You can import an account from another Friendica server."
+msgstr "Puoi importare un account da un altro server Friendica."
 
-#: ../../include/Contact.php:228 ../../include/conversation.php:882
-msgid "Poke"
-msgstr "Stuzzica"
+#: ../../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 "Devi esportare il tuo account dal vecchio server e caricarlo qui. Noi ricreeremo il tuo vecchio account qui, con tutti i tuoi contatti. Proveremo anche a informare i tuoi amici che ti sei spostato qui."
 
-#: ../../include/Contact.php:229 ../../include/conversation.php:876
-msgid "View Status"
-msgstr "Visualizza stato"
+#: ../../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 "Questa funzione è sperimentale. Non possiamo importare i contatti dalla rete OStatus (status.net/identi.ca) o da Diaspora"
 
-#: ../../include/Contact.php:230 ../../include/conversation.php:877
-msgid "View Profile"
-msgstr "Visualizza profilo"
+#: ../../mod/uimport.php:70
+msgid "Account file"
+msgstr "File account"
 
-#: ../../include/Contact.php:231 ../../include/conversation.php:878
-msgid "View Photos"
-msgstr "Visualizza foto"
+#: ../../mod/uimport.php:70
+msgid ""
+"To export your account, go to \"Settings->Export your personal data\" and "
+"select \"Export account\""
+msgstr "Per esportare il tuo account, vai su \"Impostazioni -> Esporta i tuoi dati personali\" e seleziona \"Esporta account\""
 
-#: ../../include/Contact.php:232 ../../include/Contact.php:255
-#: ../../include/conversation.php:879
-msgid "Network Posts"
-msgstr "Post della Rete"
+#: ../../mod/invite.php:27
+msgid "Total invitation limit exceeded."
+msgstr "Limite totale degli inviti superato."
 
-#: ../../include/Contact.php:233 ../../include/Contact.php:255
-#: ../../include/conversation.php:880
-msgid "Edit Contact"
-msgstr "Modifica contatti"
+#: ../../mod/invite.php:49
+#, php-format
+msgid "%s : Not a valid email address."
+msgstr "%s: non è un indirizzo email valido."
 
-#: ../../include/Contact.php:234
-msgid "Drop Contact"
-msgstr "Rimuovi contatto"
+#: ../../mod/invite.php:73
+msgid "Please join us on Friendica"
+msgstr "Unisiciti a noi su Friendica"
 
-#: ../../include/Contact.php:235 ../../include/Contact.php:255
-#: ../../include/conversation.php:881
-msgid "Send PM"
-msgstr "Invia messaggio privato"
+#: ../../mod/invite.php:84
+msgid "Invitation limit exceeded. Please contact your site administrator."
+msgstr "Limite degli inviti superato. Contatta l'amministratore del tuo sito."
 
-#: ../../include/security.php:22
-msgid "Welcome "
-msgstr "Ciao"
+#: ../../mod/invite.php:89
+#, php-format
+msgid "%s : Message delivery failed."
+msgstr "%s: la consegna del messaggio fallita."
 
-#: ../../include/security.php:23
-msgid "Please upload a profile photo."
-msgstr "Carica una foto per il profilo."
+#: ../../mod/invite.php:93
+#, php-format
+msgid "%d message sent."
+msgid_plural "%d messages sent."
+msgstr[0] "%d messaggio inviato."
+msgstr[1] "%d messaggi inviati."
 
-#: ../../include/security.php:26
-msgid "Welcome back "
-msgstr "Ciao "
+#: ../../mod/invite.php:112
+msgid "You have no more invitations available"
+msgstr "Non hai altri inviti disponibili"
 
-#: ../../include/security.php:366
+#: ../../mod/invite.php:120
+#, php-format
 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 "Il token di sicurezza della form non era corretto. Probabilmente la form è rimasta aperta troppo a lunto (più di tre ore) prima di inviarla."
+"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 "Visita %s per una lista di siti pubblici a cui puoi iscriverti. I membri Friendica su altri siti possono collegarsi uno con l'altro, come con membri di molti altri social network."
 
-#: ../../include/conversation.php:118 ../../include/conversation.php:246
-#: ../../include/text.php:1966 ../../view/theme/diabook/theme.php:463
-msgid "event"
-msgstr "l'evento"
+#: ../../mod/invite.php:122
+#, php-format
+msgid ""
+"To accept this invitation, please visit and register at %s or any other "
+"public Friendica website."
+msgstr "Per accettare questo invito, visita e resitrati su %s o su un'altro sito web Friendica aperto al pubblico."
 
-#: ../../include/conversation.php:207
+#: ../../mod/invite.php:123
 #, php-format
-msgid "%1$s poked %2$s"
-msgstr "%1$s ha stuzzicato %2$s"
+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 "I siti Friendica son tutti collegati tra loro per creare una grossa rete sociale rispettosa della privacy, posseduta e controllata dai suoi membri. I siti Friendica possono anche collegarsi a molti altri social network tradizionali. Vai su %s per una lista di siti Friendica alternativi a cui puoi iscriverti."
 
-#: ../../include/conversation.php:211 ../../include/text.php:1005
-msgid "poked"
-msgstr "ha stuzzicato"
-
-#: ../../include/conversation.php:291
-msgid "post/item"
-msgstr "post/elemento"
+#: ../../mod/invite.php:126
+msgid ""
+"Our apologies. This system is not currently configured to connect with other"
+" public sites or invite members."
+msgstr "Ci scusiamo, questo sistema non è configurato per collegarsi con altri siti pubblici o per invitare membri."
 
-#: ../../include/conversation.php:292
-#, php-format
-msgid "%1$s marked %2$s's %3$s as favorite"
-msgstr "%1$s ha segnato il/la %3$s di %2$s come preferito"
+#: ../../mod/invite.php:132
+msgid "Send invitations"
+msgstr "Invia inviti"
 
-#: ../../include/conversation.php:772
-msgid "remove"
-msgstr "rimuovi"
+#: ../../mod/invite.php:133
+msgid "Enter email addresses, one per line:"
+msgstr "Inserisci gli indirizzi email, uno per riga:"
 
-#: ../../include/conversation.php:776
-msgid "Delete Selected Items"
-msgstr "Cancella elementi selezionati"
+#: ../../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 "Sei cordialmente invitato a unirti a me ed ad altri amici su Friendica, e ad aiutarci a creare una rete sociale migliore."
 
-#: ../../include/conversation.php:875
-msgid "Follow Thread"
-msgstr "Segui la discussione"
+#: ../../mod/invite.php:137
+msgid "You will need to supply this invitation code: $invite_code"
+msgstr "Sarà necessario fornire questo codice invito: $invite_code"
 
-#: ../../include/conversation.php:944
-#, php-format
-msgid "%s likes this."
-msgstr "Piace a %s."
+#: ../../mod/invite.php:137
+msgid ""
+"Once you have registered, please connect with me via my profile page at:"
+msgstr "Una volta registrato, connettiti con me dal mio profilo:"
 
-#: ../../include/conversation.php:944
-#, php-format
-msgid "%s doesn't like this."
-msgstr "Non piace a %s."
+#: ../../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 "Per maggiori informazioni sul progetto Friendica e perchè pensiamo sia importante, visita http://friendica.com"
 
-#: ../../include/conversation.php:949
-#, php-format
-msgid "<span  %1$s>%2$d people</span> like this"
-msgstr "Piace a <span %1$s>%2$d persone</span>."
+#: ../../mod/viewsrc.php:7
+msgid "Access denied."
+msgstr "Accesso negato."
 
-#: ../../include/conversation.php:952
-#, php-format
-msgid "<span  %1$s>%2$d people</span> don't like this"
-msgstr "Non piace a <span %1$s>%2$d persone</span>."
+#: ../../mod/lostpass.php:19
+msgid "No valid account found."
+msgstr "Nessun account valido trovato."
 
-#: ../../include/conversation.php:966
-msgid "and"
-msgstr "e"
+#: ../../mod/lostpass.php:35
+msgid "Password reset request issued. Check your email."
+msgstr "La richiesta per reimpostare la password è stata inviata. Controlla la tua email."
 
-#: ../../include/conversation.php:972
+#: ../../mod/lostpass.php:42
 #, php-format
-msgid ", and %d other people"
-msgstr "e altre %d persone"
+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 "\nGentile %1$s,\n    abbiamo ricevuto su \"%2$s\" una richiesta di resettare la password del tuo account. Per confermare questa richiesta, selezionate il link di conferma qui sotto o incollatelo nella barra indirizzo del vostro browser.\n\nSe NON hai richiesto questa modifica, NON selezionare il link e ignora o cancella questa email.\n\nLa tua password non verrà modificata a meno che non possiamo verificare che tu abbia effettivamente richiesto la modifica."
 
-#: ../../include/conversation.php:974
+#: ../../mod/lostpass.php:53
 #, php-format
-msgid "%s like this."
-msgstr "Piace a %s."
+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 "\nSegui questo link per verificare la tua identità:\n\n%1$s\n\nRiceverai in un successivo messaggio la nuova password.\nPotrai cambiarla dalla pagina \"Impostazioni\" del tuo account dopo esserti autenticato.\n\nI dettagli del tuo account sono:\n    Indirizzo del sito: %2$s\n    Nome utente: %3$s"
 
-#: ../../include/conversation.php:974
+#: ../../mod/lostpass.php:72
 #, php-format
-msgid "%s don't like this."
-msgstr "Non piace a %s."
-
-#: ../../include/conversation.php:1001 ../../include/conversation.php:1019
-msgid "Visible to <strong>everybody</strong>"
-msgstr "Visibile a <strong>tutti</strong>"
+msgid "Password reset requested at %s"
+msgstr "Richiesta reimpostazione password su %s"
 
-#: ../../include/conversation.php:1003 ../../include/conversation.php:1021
-msgid "Please enter a video link/URL:"
-msgstr "Inserisci un collegamento video / URL:"
+#: ../../mod/lostpass.php:92
+msgid ""
+"Request could not be verified. (You may have previously submitted it.) "
+"Password reset failed."
+msgstr "La richiesta non può essere verificata. (Puoi averla già richiesta precendentemente). Reimpostazione password fallita."
 
-#: ../../include/conversation.php:1004 ../../include/conversation.php:1022
-msgid "Please enter an audio link/URL:"
-msgstr "Inserisci un collegamento audio / URL:"
+#: ../../mod/lostpass.php:110
+msgid "Your password has been reset as requested."
+msgstr "La tua password è stata reimpostata come richiesto."
 
-#: ../../include/conversation.php:1005 ../../include/conversation.php:1023
-msgid "Tag term:"
-msgstr "Tag:"
+#: ../../mod/lostpass.php:111
+msgid "Your new password is"
+msgstr "La tua nuova password è"
 
-#: ../../include/conversation.php:1007 ../../include/conversation.php:1025
-msgid "Where are you right now?"
-msgstr "Dove sei ora?"
+#: ../../mod/lostpass.php:112
+msgid "Save or copy your new password - and then"
+msgstr "Salva o copia la tua nuova password, quindi"
 
-#: ../../include/conversation.php:1008
-msgid "Delete item(s)?"
-msgstr "Cancellare questo elemento/i?"
+#: ../../mod/lostpass.php:113
+msgid "click here to login"
+msgstr "clicca qui per entrare"
 
-#: ../../include/conversation.php:1051
-msgid "Post to Email"
-msgstr "Invia a email"
+#: ../../mod/lostpass.php:114
+msgid ""
+"Your password may be changed from the <em>Settings</em> page after "
+"successful login."
+msgstr "Puoi cambiare la tua password dalla pagina <em>Impostazioni</em> dopo aver effettuato l'accesso."
 
-#: ../../include/conversation.php:1056
+#: ../../mod/lostpass.php:125
 #, php-format
-msgid "Connectors disabled, since \"%s\" is enabled."
-msgstr "Connettore disabilitato, dato che \"%s\" è abilitato."
+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 "\nGentile %1$s,\n   La tua password è stata modificata come richiesto.\nSalva questa password, o sostituiscila immediatamente con qualcosa che puoi ricordare."
 
-#: ../../include/conversation.php:1111
-msgid "permissions"
-msgstr "permessi"
+#: ../../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 "\nI dettagli del tuo account sono:\n\n   Indirizzo del sito: %1$s\n   Nome utente: %2$s\n   Password: %3$s\n\nPuoi cambiare questa password dalla pagina \"Impostazioni\" del tuo account dopo esserti autenticato."
 
-#: ../../include/conversation.php:1135
-msgid "Post to Groups"
-msgstr "Invia ai Gruppi"
+#: ../../mod/lostpass.php:147
+#, php-format
+msgid "Your password has been changed at %s"
+msgstr "La tua password presso %s è stata cambiata"
 
-#: ../../include/conversation.php:1136
-msgid "Post to Contacts"
-msgstr "Invia ai Contatti"
+#: ../../mod/lostpass.php:159
+msgid "Forgot your Password?"
+msgstr "Hai dimenticato la password?"
 
-#: ../../include/conversation.php:1137
-msgid "Private post"
-msgstr "Post privato"
+#: ../../mod/lostpass.php:160
+msgid ""
+"Enter your email address and submit to have your password reset. Then check "
+"your email for further instructions."
+msgstr "Inserisci il tuo indirizzo email per reimpostare la password."
 
-#: ../../include/network.php:895
-msgid "view full size"
-msgstr "vedi a schermo intero"
+#: ../../mod/lostpass.php:161
+msgid "Nickname or Email: "
+msgstr "Nome utente o email: "
 
-#: ../../include/text.php:297
-msgid "newer"
-msgstr "nuovi"
+#: ../../mod/lostpass.php:162
+msgid "Reset"
+msgstr "Reimposta"
 
-#: ../../include/text.php:299
-msgid "older"
-msgstr "vecchi"
+#: ../../mod/babel.php:17
+msgid "Source (bbcode) text:"
+msgstr "Testo sorgente (bbcode):"
 
-#: ../../include/text.php:304
-msgid "prev"
-msgstr "prec"
+#: ../../mod/babel.php:23
+msgid "Source (Diaspora) text to convert to BBcode:"
+msgstr "Testo sorgente (da Diaspora) da convertire in BBcode:"
 
-#: ../../include/text.php:306
-msgid "first"
-msgstr "primo"
+#: ../../mod/babel.php:31
+msgid "Source input: "
+msgstr "Sorgente:"
 
-#: ../../include/text.php:338
-msgid "last"
-msgstr "ultimo"
+#: ../../mod/babel.php:35
+msgid "bb2html (raw HTML): "
+msgstr "bb2html (HTML grezzo):"
 
-#: ../../include/text.php:341
-msgid "next"
-msgstr "succ"
+#: ../../mod/babel.php:39
+msgid "bb2html: "
+msgstr "bb2html:"
 
-#: ../../include/text.php:855
-msgid "No contacts"
-msgstr "Nessun contatto"
+#: ../../mod/babel.php:43
+msgid "bb2html2bb: "
+msgstr "bb2html2bb: "
 
-#: ../../include/text.php:864
-#, php-format
-msgid "%d Contact"
-msgid_plural "%d Contacts"
-msgstr[0] "%d contatto"
-msgstr[1] "%d contatti"
+#: ../../mod/babel.php:47
+msgid "bb2md: "
+msgstr "bb2md: "
 
-#: ../../include/text.php:1005
-msgid "poke"
-msgstr "stuzzica"
+#: ../../mod/babel.php:51
+msgid "bb2md2html: "
+msgstr "bb2md2html: "
 
-#: ../../include/text.php:1006
-msgid "ping"
-msgstr "invia un ping"
+#: ../../mod/babel.php:55
+msgid "bb2dia2bb: "
+msgstr "bb2dia2bb: "
 
-#: ../../include/text.php:1006
-msgid "pinged"
-msgstr "ha inviato un ping"
+#: ../../mod/babel.php:59
+msgid "bb2md2html2bb: "
+msgstr "bb2md2html2bb: "
 
-#: ../../include/text.php:1007
-msgid "prod"
-msgstr "pungola"
-
-#: ../../include/text.php:1007
-msgid "prodded"
-msgstr "ha pungolato"
-
-#: ../../include/text.php:1008
-msgid "slap"
-msgstr "schiaffeggia"
-
-#: ../../include/text.php:1008
-msgid "slapped"
-msgstr "ha schiaffeggiato"
-
-#: ../../include/text.php:1009
-msgid "finger"
-msgstr "tocca"
+#: ../../mod/babel.php:69
+msgid "Source input (Diaspora format): "
+msgstr "Sorgente (formato Diaspora):"
 
-#: ../../include/text.php:1009
-msgid "fingered"
-msgstr "ha toccato"
+#: ../../mod/babel.php:74
+msgid "diaspora2bb: "
+msgstr "diaspora2bb: "
 
-#: ../../include/text.php:1010
-msgid "rebuff"
-msgstr "respingi"
+#: ../../mod/p.php:9
+msgid "Not Extended"
+msgstr "Not Extended"
 
-#: ../../include/text.php:1010
-msgid "rebuffed"
-msgstr "ha respinto"
+#: ../../mod/tagrm.php:41
+msgid "Tag removed"
+msgstr "Tag rimosso"
 
-#: ../../include/text.php:1024
-msgid "happy"
-msgstr "felice"
+#: ../../mod/tagrm.php:79
+msgid "Remove Item Tag"
+msgstr "Rimuovi il tag"
 
-#: ../../include/text.php:1025
-msgid "sad"
-msgstr "triste"
+#: ../../mod/tagrm.php:81
+msgid "Select a tag to remove: "
+msgstr "Seleziona un tag da rimuovere: "
 
-#: ../../include/text.php:1026
-msgid "mellow"
-msgstr "rilassato"
+#: ../../mod/removeme.php:46 ../../mod/removeme.php:49
+msgid "Remove My Account"
+msgstr "Rimuovi il mio account"
 
-#: ../../include/text.php:1027
-msgid "tired"
-msgstr "stanco"
+#: ../../mod/removeme.php:47
+msgid ""
+"This will completely remove your account. Once this has been done it is not "
+"recoverable."
+msgstr "Questo comando rimuoverà completamente il tuo account. Una volta rimosso non potrai più recuperarlo."
 
-#: ../../include/text.php:1028
-msgid "perky"
-msgstr "vivace"
+#: ../../mod/removeme.php:48
+msgid "Please enter your password for verification:"
+msgstr "Inserisci la tua password per verifica:"
 
-#: ../../include/text.php:1029
-msgid "angry"
-msgstr "arrabbiato"
+#: ../../mod/profperm.php:25 ../../mod/profperm.php:56
+msgid "Invalid profile identifier."
+msgstr "Indentificativo del profilo non valido."
 
-#: ../../include/text.php:1030
-msgid "stupified"
-msgstr "stupefatto"
+#: ../../mod/profperm.php:102
+msgid "Profile Visibility Editor"
+msgstr "Modifica visibilità del profilo"
 
-#: ../../include/text.php:1031
-msgid "puzzled"
-msgstr "confuso"
+#: ../../mod/profperm.php:115
+msgid "Visible To"
+msgstr "Visibile a"
 
-#: ../../include/text.php:1032
-msgid "interested"
-msgstr "interessato"
+#: ../../mod/profperm.php:131
+msgid "All Contacts (with secure profile access)"
+msgstr "Tutti i contatti (con profilo ad accesso sicuro)"
 
-#: ../../include/text.php:1033
-msgid "bitter"
-msgstr "risentito"
+#: ../../mod/match.php:12
+msgid "Profile Match"
+msgstr "Profili corrispondenti"
 
-#: ../../include/text.php:1034
-msgid "cheerful"
-msgstr "giocoso"
+#: ../../mod/match.php:20
+msgid "No keywords to match. Please add keywords to your default profile."
+msgstr "Nessuna parola chiave per l'abbinamento. Aggiungi parole chiave al tuo profilo predefinito."
 
-#: ../../include/text.php:1035
-msgid "alive"
-msgstr "vivo"
+#: ../../mod/match.php:62
+msgid "is interested in:"
+msgstr "è interessato a:"
 
-#: ../../include/text.php:1036
-msgid "annoyed"
-msgstr "annoiato"
+#: ../../mod/events.php:68 ../../mod/events.php:70
+msgid "Event title and start time are required."
+msgstr "Titolo e ora di inizio dell'evento sono richiesti."
 
-#: ../../include/text.php:1037
-msgid "anxious"
-msgstr "ansioso"
+#: ../../mod/events.php:303
+msgid "l, F j"
+msgstr "l j F"
 
-#: ../../include/text.php:1038
-msgid "cranky"
-msgstr "irritabile"
+#: ../../mod/events.php:325
+msgid "Edit event"
+msgstr "Modifca l'evento"
 
-#: ../../include/text.php:1039
-msgid "disturbed"
-msgstr "disturbato"
+#: ../../mod/events.php:383
+msgid "Create New Event"
+msgstr "Crea un nuovo evento"
 
-#: ../../include/text.php:1040
-msgid "frustrated"
-msgstr "frustato"
+#: ../../mod/events.php:384
+msgid "Previous"
+msgstr "Precendente"
 
-#: ../../include/text.php:1041
-msgid "motivated"
-msgstr "motivato"
+#: ../../mod/events.php:385 ../../mod/install.php:207
+msgid "Next"
+msgstr "Successivo"
 
-#: ../../include/text.php:1042
-msgid "relaxed"
-msgstr "rilassato"
+#: ../../mod/events.php:458
+msgid "hour:minute"
+msgstr "ora:minuti"
 
-#: ../../include/text.php:1043
-msgid "surprised"
-msgstr "sorpreso"
+#: ../../mod/events.php:468
+msgid "Event details"
+msgstr "Dettagli dell'evento"
 
-#: ../../include/text.php:1213
-msgid "Monday"
-msgstr "Lunedì"
+#: ../../mod/events.php:469
+#, php-format
+msgid "Format is %s %s. Starting date and Title are required."
+msgstr "Il formato è %s %s. Data di inizio e Titolo sono richiesti."
 
-#: ../../include/text.php:1213
-msgid "Tuesday"
-msgstr "Martedì"
+#: ../../mod/events.php:471
+msgid "Event Starts:"
+msgstr "L'evento inizia:"
 
-#: ../../include/text.php:1213
-msgid "Wednesday"
-msgstr "Mercoledì"
+#: ../../mod/events.php:471 ../../mod/events.php:485
+msgid "Required"
+msgstr "Richiesto"
 
-#: ../../include/text.php:1213
-msgid "Thursday"
-msgstr "Giovedì"
+#: ../../mod/events.php:474
+msgid "Finish date/time is not known or not relevant"
+msgstr "La data/ora di fine non è definita"
 
-#: ../../include/text.php:1213
-msgid "Friday"
-msgstr "Venerdì"
+#: ../../mod/events.php:476
+msgid "Event Finishes:"
+msgstr "L'evento finisce:"
 
-#: ../../include/text.php:1213
-msgid "Saturday"
-msgstr "Sabato"
+#: ../../mod/events.php:479
+msgid "Adjust for viewer timezone"
+msgstr "Visualizza con il fuso orario di chi legge"
 
-#: ../../include/text.php:1213
-msgid "Sunday"
-msgstr "Domenica"
+#: ../../mod/events.php:481
+msgid "Description:"
+msgstr "Descrizione:"
 
-#: ../../include/text.php:1217
-msgid "January"
-msgstr "Gennaio"
+#: ../../mod/events.php:485
+msgid "Title:"
+msgstr "Titolo:"
 
-#: ../../include/text.php:1217
-msgid "February"
-msgstr "Febbraio"
+#: ../../mod/events.php:487
+msgid "Share this event"
+msgstr "Condividi questo evento"
 
-#: ../../include/text.php:1217
-msgid "March"
-msgstr "Marzo"
+#: ../../mod/ping.php:210 ../../mod/ping.php:234
+msgid "{0} wants to be your friend"
+msgstr "{0} vuole essere tuo amico"
 
-#: ../../include/text.php:1217
-msgid "April"
-msgstr "Aprile"
+#: ../../mod/ping.php:215 ../../mod/ping.php:239
+msgid "{0} sent you a message"
+msgstr "{0} ti ha inviato un messaggio"
 
-#: ../../include/text.php:1217
-msgid "May"
-msgstr "Maggio"
+#: ../../mod/ping.php:220 ../../mod/ping.php:244
+msgid "{0} requested registration"
+msgstr "{0} chiede la registrazione"
 
-#: ../../include/text.php:1217
-msgid "June"
-msgstr "Giugno"
+#: ../../mod/ping.php:250
+#, php-format
+msgid "{0} commented %s's post"
+msgstr "{0} ha commentato il post di %s"
 
-#: ../../include/text.php:1217
-msgid "July"
-msgstr "Luglio"
+#: ../../mod/ping.php:255
+#, php-format
+msgid "{0} liked %s's post"
+msgstr "a {0} piace il post di  %s"
 
-#: ../../include/text.php:1217
-msgid "August"
-msgstr "Agosto"
+#: ../../mod/ping.php:260
+#, php-format
+msgid "{0} disliked %s's post"
+msgstr "a {0} non piace il post di %s"
 
-#: ../../include/text.php:1217
-msgid "September"
-msgstr "Settembre"
+#: ../../mod/ping.php:265
+#, php-format
+msgid "{0} is now friends with %s"
+msgstr "{0} ora è amico di %s"
 
-#: ../../include/text.php:1217
-msgid "October"
-msgstr "Ottobre"
+#: ../../mod/ping.php:270
+msgid "{0} posted"
+msgstr "{0} ha inviato un nuovo messaggio"
 
-#: ../../include/text.php:1217
-msgid "November"
-msgstr "Novembre"
+#: ../../mod/ping.php:275
+#, php-format
+msgid "{0} tagged %s's post with #%s"
+msgstr "{0} ha taggato il post di %s con #%s"
 
-#: ../../include/text.php:1217
-msgid "December"
-msgstr "Dicembre"
+#: ../../mod/ping.php:281
+msgid "{0} mentioned you in a post"
+msgstr "{0} ti ha citato in un post"
 
-#: ../../include/text.php:1437
-msgid "bytes"
-msgstr "bytes"
+#: ../../mod/mood.php:133
+msgid "Mood"
+msgstr "Umore"
 
-#: ../../include/text.php:1461 ../../include/text.php:1473
-msgid "Click to open/close"
-msgstr "Clicca per aprire/chiudere"
+#: ../../mod/mood.php:134
+msgid "Set your current mood and tell your friends"
+msgstr "Condividi il tuo umore con i tuoi amici"
 
-#: ../../include/text.php:1702 ../../include/user.php:247
-#: ../../view/theme/duepuntozero/config.php:44
-msgid "default"
-msgstr "default"
+#: ../../mod/search.php:174 ../../mod/community.php:62
+#: ../../mod/community.php:71
+msgid "No results."
+msgstr "Nessun risultato."
 
-#: ../../include/text.php:1714
-msgid "Select an alternate language"
-msgstr "Seleziona una diversa lingua"
+#: ../../mod/message.php:67
+msgid "Unable to locate contact information."
+msgstr "Impossibile trovare le informazioni del contatto."
 
-#: ../../include/text.php:1970
-msgid "activity"
-msgstr "attività"
+#: ../../mod/message.php:207
+msgid "Do you really want to delete this message?"
+msgstr "Vuoi veramente cancellare questo messaggio?"
 
-#: ../../include/text.php:1973
-msgid "post"
-msgstr "messaggio"
+#: ../../mod/message.php:227
+msgid "Message deleted."
+msgstr "Messaggio eliminato."
 
-#: ../../include/text.php:2141
-msgid "Item filed"
-msgstr "Messaggio salvato"
+#: ../../mod/message.php:258
+msgid "Conversation removed."
+msgstr "Conversazione rimossa."
 
-#: ../../include/bbcode.php:428 ../../include/bbcode.php:1047
-#: ../../include/bbcode.php:1048
-msgid "Image/photo"
-msgstr "Immagine/foto"
+#: ../../mod/message.php:371
+msgid "No messages."
+msgstr "Nessun messaggio."
 
-#: ../../include/bbcode.php:528
+#: ../../mod/message.php:378
 #, php-format
-msgid "<a href=\"%1$s\" target=\"_blank\">%2$s</a> %3$s"
-msgstr ""
+msgid "Unknown sender - %s"
+msgstr "Mittente sconosciuto - %s"
 
-#: ../../include/bbcode.php:562
+#: ../../mod/message.php:381
 #, php-format
-msgid ""
-"<span><a href=\"%s\" target=\"_blank\">%s</a> wrote the following <a "
-"href=\"%s\" target=\"_blank\">post</a>"
-msgstr "<span><a href=\"%s\" target=\"_blank\">%s</a> ha scritto il seguente <a href=\"%s\" target=\"_blank\">messaggio</a>"
-
-#: ../../include/bbcode.php:1011 ../../include/bbcode.php:1031
-msgid "$1 wrote:"
-msgstr "$1 ha scritto:"
+msgid "You and %s"
+msgstr "Tu e %s"
 
-#: ../../include/bbcode.php:1056 ../../include/bbcode.php:1057
-msgid "Encrypted content"
-msgstr "Contenuto criptato"
+#: ../../mod/message.php:384
+#, php-format
+msgid "%s and You"
+msgstr "%s e Tu"
 
-#: ../../include/notifier.php:786 ../../include/delivery.php:456
-msgid "(no subject)"
-msgstr "(nessun oggetto)"
+#: ../../mod/message.php:405 ../../mod/message.php:546
+msgid "Delete conversation"
+msgstr "Elimina la conversazione"
 
-#: ../../include/notifier.php:796 ../../include/delivery.php:467
-#: ../../include/enotify.php:33
-msgid "noreply"
-msgstr "nessuna risposta"
+#: ../../mod/message.php:408
+msgid "D, d M Y - g:i A"
+msgstr "D d M Y - G:i"
 
-#: ../../include/dba_pdo.php:72 ../../include/dba.php:56
+#: ../../mod/message.php:411
 #, php-format
-msgid "Cannot locate DNS info for database server '%s'"
-msgstr "Non trovo le informazioni DNS per il database server '%s'"
+msgid "%d message"
+msgid_plural "%d messages"
+msgstr[0] "%d messaggio"
+msgstr[1] "%d messaggi"
 
-#: ../../include/contact_selectors.php:32
-msgid "Unknown | Not categorised"
-msgstr "Sconosciuto | non categorizzato"
+#: ../../mod/message.php:450
+msgid "Message not available."
+msgstr "Messaggio non disponibile."
 
-#: ../../include/contact_selectors.php:33
-msgid "Block immediately"
-msgstr "Blocca immediatamente"
+#: ../../mod/message.php:520
+msgid "Delete message"
+msgstr "Elimina il messaggio"
 
-#: ../../include/contact_selectors.php:34
-msgid "Shady, spammer, self-marketer"
-msgstr "Shady, spammer, self-marketer"
+#: ../../mod/message.php:548
+msgid ""
+"No secure communications available. You <strong>may</strong> be able to "
+"respond from the sender's profile page."
+msgstr "Nessuna comunicazione sicura disponibile, <strong>Potresti</strong> essere in grado di rispondere dalla pagina del profilo del mittente."
 
-#: ../../include/contact_selectors.php:35
-msgid "Known to me, but no opinion"
-msgstr "Lo conosco, ma non ho un'opinione particolare"
+#: ../../mod/message.php:552
+msgid "Send Reply"
+msgstr "Invia la risposta"
 
-#: ../../include/contact_selectors.php:36
-msgid "OK, probably harmless"
-msgstr "E' ok, probabilmente innocuo"
+#: ../../mod/community.php:23
+msgid "Not available."
+msgstr "Non disponibile."
 
-#: ../../include/contact_selectors.php:37
-msgid "Reputable, has my trust"
-msgstr "Rispettabile, ha la mia fiducia"
+#: ../../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 "Profilo non trovato."
 
-#: ../../include/contact_selectors.php:60
-msgid "Weekly"
-msgstr "Settimanalmente"
+#: ../../mod/profiles.php:37
+msgid "Profile deleted."
+msgstr "Profilo elminato."
 
-#: ../../include/contact_selectors.php:61
-msgid "Monthly"
-msgstr "Mensilmente"
+#: ../../mod/profiles.php:55 ../../mod/profiles.php:89
+msgid "Profile-"
+msgstr "Profilo-"
 
-#: ../../include/contact_selectors.php:77
-msgid "OStatus"
-msgstr "Ostatus"
+#: ../../mod/profiles.php:74 ../../mod/profiles.php:117
+msgid "New profile created."
+msgstr "Il nuovo profilo è stato creato."
 
-#: ../../include/contact_selectors.php:78
-msgid "RSS/Atom"
-msgstr "RSS / Atom"
+#: ../../mod/profiles.php:95
+msgid "Profile unavailable to clone."
+msgstr "Impossibile duplicare il profilo."
 
-#: ../../include/contact_selectors.php:82
-msgid "Zot!"
-msgstr "Zot!"
+#: ../../mod/profiles.php:189
+msgid "Profile Name is required."
+msgstr "Il nome profilo è obbligatorio ."
 
-#: ../../include/contact_selectors.php:83
-msgid "LinkedIn"
-msgstr "LinkedIn"
+#: ../../mod/profiles.php:340
+msgid "Marital Status"
+msgstr "Stato civile"
 
-#: ../../include/contact_selectors.php:84
-msgid "XMPP/IM"
-msgstr "XMPP/IM"
+#: ../../mod/profiles.php:344
+msgid "Romantic Partner"
+msgstr "Partner romantico"
 
-#: ../../include/contact_selectors.php:85
-msgid "MySpace"
-msgstr "MySpace"
+#: ../../mod/profiles.php:348
+msgid "Likes"
+msgstr "Mi piace"
 
-#: ../../include/contact_selectors.php:87
-msgid "Google+"
-msgstr "Google+"
+#: ../../mod/profiles.php:352
+msgid "Dislikes"
+msgstr "Non mi piace"
 
-#: ../../include/contact_selectors.php:88
-msgid "pump.io"
-msgstr "pump.io"
+#: ../../mod/profiles.php:356
+msgid "Work/Employment"
+msgstr "Lavoro/Impiego"
 
-#: ../../include/contact_selectors.php:89
-msgid "Twitter"
-msgstr "Twitter"
+#: ../../mod/profiles.php:359
+msgid "Religion"
+msgstr "Religione"
 
-#: ../../include/contact_selectors.php:90
-msgid "Diaspora Connector"
-msgstr "Connettore Diaspora"
+#: ../../mod/profiles.php:363
+msgid "Political Views"
+msgstr "Orientamento Politico"
 
-#: ../../include/contact_selectors.php:91
-msgid "Statusnet"
-msgstr "Statusnet"
+#: ../../mod/profiles.php:367
+msgid "Gender"
+msgstr "Sesso"
 
-#: ../../include/contact_selectors.php:92
-msgid "App.net"
-msgstr "App.net"
+#: ../../mod/profiles.php:371
+msgid "Sexual Preference"
+msgstr "Preferenza sessuale"
 
-#: ../../include/Scrape.php:614
-msgid " on Last.fm"
-msgstr "su Last.fm"
+#: ../../mod/profiles.php:375
+msgid "Homepage"
+msgstr "Homepage"
 
-#: ../../include/bb2diaspora.php:154 ../../include/event.php:20
-msgid "Starts:"
-msgstr "Inizia:"
+#: ../../mod/profiles.php:379 ../../mod/profiles.php:698
+msgid "Interests"
+msgstr "Interessi"
 
-#: ../../include/bb2diaspora.php:162 ../../include/event.php:30
-msgid "Finishes:"
-msgstr "Finisce:"
+#: ../../mod/profiles.php:383
+msgid "Address"
+msgstr "Indirizzo"
 
-#: ../../include/profile_advanced.php:22
-msgid "j F, Y"
-msgstr "j F Y"
+#: ../../mod/profiles.php:390 ../../mod/profiles.php:694
+msgid "Location"
+msgstr "Posizione"
 
-#: ../../include/profile_advanced.php:23
-msgid "j F"
-msgstr "j F"
+#: ../../mod/profiles.php:473
+msgid "Profile updated."
+msgstr "Profilo aggiornato."
 
-#: ../../include/profile_advanced.php:30
-msgid "Birthday:"
-msgstr "Compleanno:"
+#: ../../mod/profiles.php:568
+msgid " and "
+msgstr ""
 
-#: ../../include/profile_advanced.php:34
-msgid "Age:"
-msgstr "Età:"
+#: ../../mod/profiles.php:576
+msgid "public profile"
+msgstr "profilo pubblico"
 
-#: ../../include/profile_advanced.php:43
+#: ../../mod/profiles.php:579
 #, php-format
-msgid "for %1$d %2$s"
-msgstr "per %1$d %2$s"
+msgid "%1$s changed %2$s to &ldquo;%3$s&rdquo;"
+msgstr "%1$s ha cambiato %2$s in &ldquo;%3$s&rdquo;"
 
-#: ../../include/profile_advanced.php:52
-msgid "Tags:"
-msgstr "Tag:"
+#: ../../mod/profiles.php:580
+#, php-format
+msgid " - Visit %1$s's %2$s"
+msgstr "- Visita  %2$s di %1$s"
 
-#: ../../include/profile_advanced.php:56
-msgid "Religion:"
-msgstr "Religione:"
+#: ../../mod/profiles.php:583
+#, php-format
+msgid "%1$s has an updated %2$s, changing %3$s."
+msgstr "%1$s ha un %2$s aggiornato. Ha cambiato %3$s"
 
-#: ../../include/profile_advanced.php:60
-msgid "Hobbies/Interests:"
-msgstr "Hobby/Interessi:"
+#: ../../mod/profiles.php:658
+msgid "Hide contacts and friends:"
+msgstr "Nascondi contatti:"
 
-#: ../../include/profile_advanced.php:67
-msgid "Contact information and Social Networks:"
-msgstr "Informazioni su contatti e social network:"
+#: ../../mod/profiles.php:663
+msgid "Hide your contact/friend list from viewers of this profile?"
+msgstr "Nascondi la tua lista di contatti/amici ai visitatori di questo profilo?"
 
-#: ../../include/profile_advanced.php:69
-msgid "Musical interests:"
-msgstr "Interessi musicali:"
+#: ../../mod/profiles.php:685
+msgid "Edit Profile Details"
+msgstr "Modifica i dettagli del profilo"
 
-#: ../../include/profile_advanced.php:71
-msgid "Books, literature:"
-msgstr "Libri, letteratura:"
+#: ../../mod/profiles.php:687
+msgid "Change Profile Photo"
+msgstr "Cambia la foto del profilo"
 
-#: ../../include/profile_advanced.php:73
-msgid "Television:"
-msgstr "Televisione:"
+#: ../../mod/profiles.php:688
+msgid "View this profile"
+msgstr "Visualizza questo profilo"
 
-#: ../../include/profile_advanced.php:75
-msgid "Film/dance/culture/entertainment:"
-msgstr "Film/danza/cultura/intrattenimento:"
+#: ../../mod/profiles.php:689
+msgid "Create a new profile using these settings"
+msgstr "Crea un nuovo profilo usando queste impostazioni"
 
-#: ../../include/profile_advanced.php:77
-msgid "Love/Romance:"
-msgstr "Amore:"
+#: ../../mod/profiles.php:690
+msgid "Clone this profile"
+msgstr "Clona questo profilo"
 
-#: ../../include/profile_advanced.php:79
-msgid "Work/employment:"
-msgstr "Lavoro:"
-
-#: ../../include/profile_advanced.php:81
-msgid "School/education:"
-msgstr "Scuola:"
+#: ../../mod/profiles.php:691
+msgid "Delete this profile"
+msgstr "Elimina questo profilo"
 
-#: ../../include/plugin.php:455 ../../include/plugin.php:457
-msgid "Click here to upgrade."
-msgstr "Clicca qui per aggiornare."
+#: ../../mod/profiles.php:692
+msgid "Basic information"
+msgstr "Informazioni di base"
 
-#: ../../include/plugin.php:463
-msgid "This action exceeds the limits set by your subscription plan."
-msgstr "Questa azione eccede i limiti del tuo piano di sottoscrizione."
+#: ../../mod/profiles.php:693
+msgid "Profile picture"
+msgstr "Immagine del profilo"
 
-#: ../../include/plugin.php:468
-msgid "This action is not available under your subscription plan."
-msgstr "Questa azione non è disponibile nel tuo piano di sottoscrizione."
+#: ../../mod/profiles.php:695
+msgid "Preferences"
+msgstr "Preferenze"
 
-#: ../../include/nav.php:73
-msgid "End this session"
-msgstr "Finisci questa sessione"
+#: ../../mod/profiles.php:696
+msgid "Status information"
+msgstr "Informazioni stato"
 
-#: ../../include/nav.php:76 ../../include/nav.php:148
-#: ../../view/theme/diabook/theme.php:123
-msgid "Your posts and conversations"
-msgstr "I tuoi messaggi e le tue conversazioni"
+#: ../../mod/profiles.php:697
+msgid "Additional information"
+msgstr "Informazioni aggiuntive"
 
-#: ../../include/nav.php:77 ../../view/theme/diabook/theme.php:124
-msgid "Your profile page"
-msgstr "Pagina del tuo profilo"
+#: ../../mod/profiles.php:699 ../../mod/newmember.php:36
+#: ../../mod/profile_photo.php:244
+msgid "Upload Profile Photo"
+msgstr "Carica la foto del profilo"
 
-#: ../../include/nav.php:78 ../../view/theme/diabook/theme.php:126
-msgid "Your photos"
-msgstr "Le tue foto"
+#: ../../mod/profiles.php:700
+msgid "Profile Name:"
+msgstr "Nome del profilo:"
 
-#: ../../include/nav.php:79
-msgid "Your videos"
-msgstr "I tuoi video"
+#: ../../mod/profiles.php:701
+msgid "Your Full Name:"
+msgstr "Il tuo nome completo:"
 
-#: ../../include/nav.php:80 ../../view/theme/diabook/theme.php:127
-msgid "Your events"
-msgstr "I tuoi eventi"
+#: ../../mod/profiles.php:702
+msgid "Title/Description:"
+msgstr "Breve descrizione (es. titolo, posizione, altro):"
 
-#: ../../include/nav.php:81 ../../view/theme/diabook/theme.php:128
-msgid "Personal notes"
-msgstr "Note personali"
+#: ../../mod/profiles.php:703
+msgid "Your Gender:"
+msgstr "Il tuo sesso:"
 
-#: ../../include/nav.php:81
-msgid "Your personal notes"
-msgstr "Le tue note personali"
+#: ../../mod/profiles.php:704
+#, php-format
+msgid "Birthday (%s):"
+msgstr "Compleanno (%s)"
 
-#: ../../include/nav.php:92
-msgid "Sign in"
-msgstr "Entra"
+#: ../../mod/profiles.php:705
+msgid "Street Address:"
+msgstr "Indirizzo (via/piazza):"
 
-#: ../../include/nav.php:105
-msgid "Home Page"
-msgstr "Home Page"
+#: ../../mod/profiles.php:706
+msgid "Locality/City:"
+msgstr "Località:"
 
-#: ../../include/nav.php:109
-msgid "Create an account"
-msgstr "Crea un account"
+#: ../../mod/profiles.php:707
+msgid "Postal/Zip Code:"
+msgstr "CAP:"
 
-#: ../../include/nav.php:114
-msgid "Help and documentation"
-msgstr "Guida e documentazione"
+#: ../../mod/profiles.php:708
+msgid "Country:"
+msgstr "Nazione:"
 
-#: ../../include/nav.php:117
-msgid "Apps"
-msgstr "Applicazioni"
+#: ../../mod/profiles.php:709
+msgid "Region/State:"
+msgstr "Regione/Stato:"
 
-#: ../../include/nav.php:117
-msgid "Addon applications, utilities, games"
-msgstr "Applicazioni, utilità e giochi aggiuntivi"
+#: ../../mod/profiles.php:710
+msgid "<span class=\"heart\">&hearts;</span> Marital Status:"
+msgstr "<span class=\"heart\">&hearts;</span> Stato sentimentale:"
 
-#: ../../include/nav.php:119
-msgid "Search site content"
-msgstr "Cerca nel contenuto del sito"
+#: ../../mod/profiles.php:711
+msgid "Who: (if applicable)"
+msgstr "Con chi: (se possibile)"
 
-#: ../../include/nav.php:129
-msgid "Conversations on this site"
-msgstr "Conversazioni su questo sito"
+#: ../../mod/profiles.php:712
+msgid "Examples: cathy123, Cathy Williams, cathy@example.com"
+msgstr "Esempio: cathy123, Cathy Williams, cathy@example.com"
 
-#: ../../include/nav.php:131
-msgid "Conversations on the network"
-msgstr ""
+#: ../../mod/profiles.php:713
+msgid "Since [date]:"
+msgstr "Dal [data]:"
 
-#: ../../include/nav.php:133
-msgid "Directory"
-msgstr "Elenco"
+#: ../../mod/profiles.php:715
+msgid "Homepage URL:"
+msgstr "Homepage:"
 
-#: ../../include/nav.php:133
-msgid "People directory"
-msgstr "Elenco delle persone"
+#: ../../mod/profiles.php:718
+msgid "Religious Views:"
+msgstr "Orientamento religioso:"
 
-#: ../../include/nav.php:135
-msgid "Information"
-msgstr "Informazioni"
+#: ../../mod/profiles.php:719
+msgid "Public Keywords:"
+msgstr "Parole chiave visibili a tutti:"
 
-#: ../../include/nav.php:135
-msgid "Information about this friendica instance"
-msgstr "Informazioni su questo server friendica"
+#: ../../mod/profiles.php:720
+msgid "Private Keywords:"
+msgstr "Parole chiave private:"
 
-#: ../../include/nav.php:145
-msgid "Conversations from your friends"
-msgstr "Conversazioni dai tuoi amici"
+#: ../../mod/profiles.php:723
+msgid "Example: fishing photography software"
+msgstr "Esempio: pesca fotografia programmazione"
 
-#: ../../include/nav.php:146
-msgid "Network Reset"
-msgstr "Reset pagina Rete"
+#: ../../mod/profiles.php:724
+msgid "(Used for suggesting potential friends, can be seen by others)"
+msgstr "(E' utilizzato per suggerire potenziali amici, può essere visto da altri)"
 
-#: ../../include/nav.php:146
-msgid "Load Network page with no filters"
-msgstr "Carica la pagina Rete senza nessun filtro"
+#: ../../mod/profiles.php:725
+msgid "(Used for searching profiles, never shown to others)"
+msgstr "(Usato per cercare tra i profili, non è mai visibile agli altri)"
 
-#: ../../include/nav.php:154
-msgid "Friend Requests"
-msgstr "Richieste di amicizia"
+#: ../../mod/profiles.php:726
+msgid "Tell us about yourself..."
+msgstr "Raccontaci di te..."
 
-#: ../../include/nav.php:156
-msgid "See all notifications"
-msgstr "Vedi tutte le notifiche"
+#: ../../mod/profiles.php:727
+msgid "Hobbies/Interests"
+msgstr "Hobby/interessi"
 
-#: ../../include/nav.php:157
-msgid "Mark all system notifications seen"
-msgstr "Segna tutte le notifiche come viste"
+#: ../../mod/profiles.php:728
+msgid "Contact information and Social Networks"
+msgstr "Informazioni su contatti e social network"
 
-#: ../../include/nav.php:161
-msgid "Private mail"
-msgstr "Posta privata"
+#: ../../mod/profiles.php:729
+msgid "Musical interests"
+msgstr "Interessi musicali"
 
-#: ../../include/nav.php:162
-msgid "Inbox"
-msgstr "In arrivo"
+#: ../../mod/profiles.php:730
+msgid "Books, literature"
+msgstr "Libri, letteratura"
 
-#: ../../include/nav.php:163
-msgid "Outbox"
-msgstr "Inviati"
+#: ../../mod/profiles.php:731
+msgid "Television"
+msgstr "Televisione"
 
-#: ../../include/nav.php:167
-msgid "Manage"
-msgstr "Gestisci"
+#: ../../mod/profiles.php:732
+msgid "Film/dance/culture/entertainment"
+msgstr "Film/danza/cultura/intrattenimento"
 
-#: ../../include/nav.php:167
-msgid "Manage other pages"
-msgstr "Gestisci altre pagine"
+#: ../../mod/profiles.php:733
+msgid "Love/romance"
+msgstr "Amore"
 
-#: ../../include/nav.php:172
-msgid "Account settings"
-msgstr "Parametri account"
+#: ../../mod/profiles.php:734
+msgid "Work/employment"
+msgstr "Lavoro/impiego"
 
-#: ../../include/nav.php:175
-msgid "Manage/Edit Profiles"
-msgstr "Gestisci/Modifica i profili"
+#: ../../mod/profiles.php:735
+msgid "School/education"
+msgstr "Scuola/educazione"
 
-#: ../../include/nav.php:177
-msgid "Manage/edit friends and contacts"
-msgstr "Gestisci/modifica amici e contatti"
+#: ../../mod/profiles.php:740
+msgid ""
+"This is your <strong>public</strong> profile.<br />It <strong>may</strong> "
+"be visible to anybody using the internet."
+msgstr "Questo è il tuo profilo <strong>publico</strong>.<br /><strong>Potrebbe</strong> essere visto da chiunque attraverso internet."
 
-#: ../../include/nav.php:184
-msgid "Site setup and configuration"
-msgstr "Configurazione del sito"
+#: ../../mod/profiles.php:750 ../../mod/directory.php:113
+msgid "Age: "
+msgstr "Età : "
 
-#: ../../include/nav.php:188
-msgid "Navigation"
-msgstr "Navigazione"
+#: ../../mod/profiles.php:803
+msgid "Edit/Manage Profiles"
+msgstr "Modifica / Gestisci profili"
 
-#: ../../include/nav.php:188
-msgid "Site map"
-msgstr "Mappa del sito"
+#: ../../mod/install.php:117
+msgid "Friendica Communications Server - Setup"
+msgstr "Friendica Comunicazione Server - Impostazioni"
 
-#: ../../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 "Utente non trovato."
+#: ../../mod/install.php:123
+msgid "Could not connect to database."
+msgstr " Impossibile collegarsi con il database."
 
-#: ../../include/api.php:771
-#, php-format
-msgid "Daily posting limit of %d posts reached. The post was rejected."
-msgstr ""
+#: ../../mod/install.php:127
+msgid "Could not create table."
+msgstr "Impossibile creare le tabelle."
 
-#: ../../include/api.php:790
-#, php-format
-msgid "Weekly posting limit of %d posts reached. The post was rejected."
-msgstr ""
+#: ../../mod/install.php:133
+msgid "Your Friendica site database has been installed."
+msgstr "Il tuo Friendica è stato installato."
 
-#: ../../include/api.php:809
-#, php-format
-msgid "Monthly posting limit of %d posts reached. The post was rejected."
-msgstr ""
+#: ../../mod/install.php:138
+msgid ""
+"You may need to import the file \"database.sql\" manually using phpmyadmin "
+"or mysql."
+msgstr "Potresti dover importare il file \"database.sql\" manualmente con phpmyadmin o mysql"
 
-#: ../../include/api.php:1272
-msgid "There is no status with this id."
-msgstr "Non c'è nessuno status con questo id."
+#: ../../mod/install.php:139 ../../mod/install.php:206
+#: ../../mod/install.php:525
+msgid "Please see the file \"INSTALL.txt\"."
+msgstr "Leggi il file \"INSTALL.txt\"."
 
-#: ../../include/api.php:1342
-msgid "There is no conversation with this id."
-msgstr "Non c'è nessuna conversazione con questo id"
+#: ../../mod/install.php:203
+msgid "System check"
+msgstr "Controllo sistema"
 
-#: ../../include/api.php:1614
-msgid "Invalid request."
-msgstr ""
+#: ../../mod/install.php:208
+msgid "Check again"
+msgstr "Controlla ancora"
 
-#: ../../include/api.php:1625
-msgid "Invalid item."
-msgstr ""
+#: ../../mod/install.php:227
+msgid "Database connection"
+msgstr "Connessione al database"
 
-#: ../../include/api.php:1635
-msgid "Invalid action. "
-msgstr ""
+#: ../../mod/install.php:228
+msgid ""
+"In order to install Friendica we need to know how to connect to your "
+"database."
+msgstr "Per installare Friendica dobbiamo sapere come collegarci al tuo database."
 
-#: ../../include/api.php:1643
-msgid "DB error"
-msgstr ""
+#: ../../mod/install.php:229
+msgid ""
+"Please contact your hosting provider or site administrator if you have "
+"questions about these settings."
+msgstr "Contatta il tuo fornitore di hosting o l'amministratore del sito se hai domande su queste impostazioni."
 
-#: ../../include/user.php:40
-msgid "An invitation is required."
-msgstr "E' richiesto un invito."
+#: ../../mod/install.php:230
+msgid ""
+"The database you specify below should already exist. If it does not, please "
+"create it before continuing."
+msgstr "Il database dovrà già esistere. Se non esiste, crealo prima di continuare."
 
-#: ../../include/user.php:45
-msgid "Invitation could not be verified."
-msgstr "L'invito non puo' essere verificato."
+#: ../../mod/install.php:234
+msgid "Database Server Name"
+msgstr "Nome del database server"
 
-#: ../../include/user.php:53
-msgid "Invalid OpenID url"
-msgstr "Url OpenID non valido"
+#: ../../mod/install.php:235
+msgid "Database Login Name"
+msgstr "Nome utente database"
 
-#: ../../include/user.php:74
-msgid "Please enter the required information."
-msgstr "Inserisci le informazioni richieste."
+#: ../../mod/install.php:236
+msgid "Database Login Password"
+msgstr "Password utente database"
 
-#: ../../include/user.php:88
-msgid "Please use a shorter name."
-msgstr "Usa un nome più corto."
+#: ../../mod/install.php:237
+msgid "Database Name"
+msgstr "Nome database"
 
-#: ../../include/user.php:90
-msgid "Name too short."
-msgstr "Il nome è troppo corto."
+#: ../../mod/install.php:238 ../../mod/install.php:277
+msgid "Site administrator email address"
+msgstr "Indirizzo email dell'amministratore del sito"
 
-#: ../../include/user.php:105
-msgid "That doesn't appear to be your full (First Last) name."
-msgstr "Questo non sembra essere il tuo nome completo (Nome Cognome)."
+#: ../../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 "Il tuo indirizzo email deve corrispondere a questo per poter usare il pannello di amministrazione web."
 
-#: ../../include/user.php:110
-msgid "Your email domain is not among those allowed on this site."
-msgstr "Il dominio della tua email non è tra quelli autorizzati su questo sito."
+#: ../../mod/install.php:242 ../../mod/install.php:280
+msgid "Please select a default timezone for your website"
+msgstr "Seleziona il fuso orario predefinito per il tuo sito web"
 
-#: ../../include/user.php:113
-msgid "Not a valid email address."
-msgstr "L'indirizzo email non è valido."
+#: ../../mod/install.php:267
+msgid "Site settings"
+msgstr "Impostazioni sito"
 
-#: ../../include/user.php:126
-msgid "Cannot use that email."
-msgstr "Non puoi usare quell'email."
+#: ../../mod/install.php:321
+msgid "Could not find a command line version of PHP in the web server PATH."
+msgstr "Non riesco a trovare la versione di PHP da riga di comando nel PATH del server web"
 
-#: ../../include/user.php:132
+#: ../../mod/install.php:322
 msgid ""
-"Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and "
-"must also begin with a letter."
-msgstr "Il tuo nome utente puo' contenere solo \"a-z\", \"0-9\", \"-\", e \"_\", e deve cominciare con una lettera."
+"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 <a "
+"href='http://friendica.com/node/27'>'Activating scheduled tasks'</a>"
+msgstr "Se non hai una versione a linea di comando di PHP installata sul tuo server, non sarai in grado di avviare il processo di poll in background via cron. Vedi <a href='http://friendica.com/node/27'>'Activating scheduled tasks'</a>"
 
-#: ../../include/user.php:138 ../../include/user.php:236
-msgid "Nickname is already registered. Please choose another."
-msgstr "Nome utente già registrato. Scegline un altro."
+#: ../../mod/install.php:326
+msgid "PHP executable path"
+msgstr "Percorso eseguibile PHP"
 
-#: ../../include/user.php:148
+#: ../../mod/install.php:326
 msgid ""
-"Nickname was once registered here and may not be re-used. Please choose "
-"another."
-msgstr "Questo nome utente stato già registrato. Per favore, sceglierne uno nuovo."
+"Enter full path to php executable. You can leave this blank to continue the "
+"installation."
+msgstr "Inserisci il percorso completo all'eseguibile di php. Puoi lasciare bianco questo campo per continuare l'installazione."
 
-#: ../../include/user.php:164
-msgid "SERIOUS ERROR: Generation of security keys failed."
-msgstr "ERRORE GRAVE: La generazione delle chiavi di sicurezza è fallita."
+#: ../../mod/install.php:331
+msgid "Command line PHP"
+msgstr "PHP da riga di comando"
 
-#: ../../include/user.php:222
-msgid "An error occurred during registration. Please try again."
-msgstr "C'è stato un errore durante la registrazione. Prova ancora."
+#: ../../mod/install.php:340
+msgid "PHP executable is not the php cli binary (could be cgi-fgci version)"
+msgstr "L'eseguibile PHP non è il binario php cli (potrebbe essere la versione cgi-fcgi)"
 
-#: ../../include/user.php:257
-msgid "An error occurred creating your default profile. Please try again."
-msgstr "C'è stato un errore nella creazione del tuo profilo. Prova ancora."
+#: ../../mod/install.php:341
+msgid "Found PHP version: "
+msgstr "Versione PHP:"
 
-#: ../../include/user.php:289 ../../include/user.php:293
-#: ../../include/profile_selectors.php:42
-msgid "Friends"
-msgstr "Amici"
+#: ../../mod/install.php:343
+msgid "PHP cli binary"
+msgstr "Binario PHP cli"
 
-#: ../../include/user.php:377
-#, php-format
+#: ../../mod/install.php:354
 msgid ""
-"\n"
-"\t\tDear %1$s,\n"
-"\t\t\tThank you for registering at %2$s. Your account has been created.\n"
-"\t"
-msgstr "\nGentile %1$s,\nGrazie per esserti registrato su %2$s. Il tuo account è stato creato."
+"The command line version of PHP on your system does not have "
+"\"register_argc_argv\" enabled."
+msgstr "La versione da riga di comando di PHP nel sistema non ha abilitato \"register_argc_argv\"."
 
-#: ../../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 ""
+#: ../../mod/install.php:355
+msgid "This is required for message delivery to work."
+msgstr "E' obbligatorio per far funzionare la consegna dei messaggi."
 
-#: ../../include/diaspora.php:703
-msgid "Sharing notification from Diaspora network"
-msgstr "Notifica di condivisione dal network Diaspora*"
+#: ../../mod/install.php:357
+msgid "PHP register_argc_argv"
+msgstr "PHP register_argc_argv"
 
-#: ../../include/diaspora.php:2520
-msgid "Attachments:"
-msgstr "Allegati:"
+#: ../../mod/install.php:378
+msgid ""
+"Error: the \"openssl_pkey_new\" function on this system is not able to "
+"generate encryption keys"
+msgstr "Errore: la funzione \"openssl_pkey_new\" in questo sistema non è in grado di generare le chiavi di criptazione"
 
-#: ../../include/items.php:4555
-msgid "Do you really want to delete this item?"
-msgstr "Vuoi veramente cancellare questo elemento?"
+#: ../../mod/install.php:379
+msgid ""
+"If running under Windows, please see "
+"\"http://www.php.net/manual/en/openssl.installation.php\"."
+msgstr "Se stai eseguendo friendika su windows, guarda \"http://www.php.net/manual/en/openssl.installation.php\"."
 
-#: ../../include/items.php:4778
-msgid "Archives"
-msgstr "Archivi"
+#: ../../mod/install.php:381
+msgid "Generate encryption keys"
+msgstr "Genera chiavi di criptazione"
 
-#: ../../include/profile_selectors.php:6
-msgid "Male"
-msgstr "Maschio"
+#: ../../mod/install.php:388
+msgid "libCurl PHP module"
+msgstr "modulo PHP libCurl"
 
-#: ../../include/profile_selectors.php:6
-msgid "Female"
-msgstr "Femmina"
+#: ../../mod/install.php:389
+msgid "GD graphics PHP module"
+msgstr "modulo PHP GD graphics"
 
-#: ../../include/profile_selectors.php:6
-msgid "Currently Male"
-msgstr "Al momento maschio"
+#: ../../mod/install.php:390
+msgid "OpenSSL PHP module"
+msgstr "modulo PHP OpenSSL"
 
-#: ../../include/profile_selectors.php:6
-msgid "Currently Female"
-msgstr "Al momento femmina"
+#: ../../mod/install.php:391
+msgid "mysqli PHP module"
+msgstr "modulo PHP mysqli"
 
-#: ../../include/profile_selectors.php:6
-msgid "Mostly Male"
-msgstr "Prevalentemente maschio"
+#: ../../mod/install.php:392
+msgid "mb_string PHP module"
+msgstr "modulo PHP mb_string"
 
-#: ../../include/profile_selectors.php:6
-msgid "Mostly Female"
-msgstr "Prevalentemente femmina"
+#: ../../mod/install.php:397 ../../mod/install.php:399
+msgid "Apache mod_rewrite module"
+msgstr "Modulo mod_rewrite di Apache"
 
-#: ../../include/profile_selectors.php:6
-msgid "Transgender"
-msgstr "Transgender"
+#: ../../mod/install.php:397
+msgid ""
+"Error: Apache webserver mod-rewrite module is required but not installed."
+msgstr "Errore: E' il modulo mod-rewrite di Apache è richiesto, ma non risulta installato"
 
-#: ../../include/profile_selectors.php:6
-msgid "Intersex"
-msgstr "Intersex"
+#: ../../mod/install.php:405
+msgid "Error: libCURL PHP module required but not installed."
+msgstr "Errore: il modulo libCURL di PHP è richiesto, ma non risulta installato."
 
-#: ../../include/profile_selectors.php:6
-msgid "Transsexual"
-msgstr "Transessuale"
+#: ../../mod/install.php:409
+msgid ""
+"Error: GD graphics PHP module with JPEG support required but not installed."
+msgstr "Errore: Il modulo GD graphics di PHP con supporto a JPEG è richiesto, ma non risulta installato."
 
-#: ../../include/profile_selectors.php:6
-msgid "Hermaphrodite"
-msgstr "Ermafrodito"
+#: ../../mod/install.php:413
+msgid "Error: openssl PHP module required but not installed."
+msgstr "Errore: il modulo openssl di PHP è richiesto, ma non risulta installato."
 
-#: ../../include/profile_selectors.php:6
-msgid "Neuter"
-msgstr "Neutro"
+#: ../../mod/install.php:417
+msgid "Error: mysqli PHP module required but not installed."
+msgstr "Errore: il modulo mysqli di PHP è richiesto, ma non risulta installato"
 
-#: ../../include/profile_selectors.php:6
-msgid "Non-specific"
-msgstr "Non specificato"
+#: ../../mod/install.php:421
+msgid "Error: mb_string PHP module required but not installed."
+msgstr "Errore: il modulo PHP mb_string è richiesto, ma non risulta installato."
 
-#: ../../include/profile_selectors.php:6
-msgid "Other"
-msgstr "Altro"
+#: ../../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 "L'installazione web deve poter creare un file chiamato \".htconfig.php\" nella cartella principale del tuo web server ma non è in grado di farlo."
 
-#: ../../include/profile_selectors.php:6
-msgid "Undecided"
-msgstr "Indeciso"
+#: ../../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 "Ciò è dovuto spesso a impostazioni di permessi, dato che il web server può non essere in grado di scrivere il file nella tua cartella, anche se tu puoi."
 
-#: ../../include/profile_selectors.php:23
-msgid "Males"
-msgstr "Maschi"
+#: ../../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 "Alla fine di questa procedura, di daremo un testo da salvare in un file chiamato .htconfig.php nella tua cartella principale di Friendica"
 
-#: ../../include/profile_selectors.php:23
-msgid "Females"
-msgstr "Femmine"
+#: ../../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 "Puoi in alternativa saltare questa procedura ed eseguire l'installazione manualmente. Vedi il file \"INSTALL.txt\" per le istruzioni."
 
-#: ../../include/profile_selectors.php:23
-msgid "Gay"
-msgstr "Gay"
+#: ../../mod/install.php:444
+msgid ".htconfig.php is writable"
+msgstr ".htconfig.php è scrivibile"
 
-#: ../../include/profile_selectors.php:23
-msgid "Lesbian"
-msgstr "Lesbica"
+#: ../../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 usa il motore di template Smarty3 per renderizzare le sue pagine web. Smarty3 compila i template in PHP per velocizzare il rendering."
 
-#: ../../include/profile_selectors.php:23
-msgid "No Preference"
-msgstr "Nessuna preferenza"
+#: ../../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 "Per salvare questi template compilati, il server werb ha bisogno dell'accesso in scrittura alla cartella view/smarty3/ nella cartella principale dei Friendica."
 
-#: ../../include/profile_selectors.php:23
-msgid "Bisexual"
-msgstr "Bisessuale"
+#: ../../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 "Per favore, controlla che l'utente con cui il tuo server web gira (es www-data) ha accesso in scrittura a questa cartella."
 
-#: ../../include/profile_selectors.php:23
-msgid "Autosexual"
-msgstr "Autosessuale"
+#: ../../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 "Nota: come misura di sicurezza, dovresti dare accesso in scrittura solo alla cartella view/smarty3, non ai template (.tpl) che contiene."
 
-#: ../../include/profile_selectors.php:23
-msgid "Abstinent"
-msgstr "Astinente"
+#: ../../mod/install.php:460
+msgid "view/smarty3 is writable"
+msgstr "view/smarty3 è scrivibile"
 
-#: ../../include/profile_selectors.php:23
-msgid "Virgin"
-msgstr "Vergine"
+#: ../../mod/install.php:472
+msgid ""
+"Url rewrite in .htaccess is not working. Check your server configuration."
+msgstr "La riscrittura degli url in .htaccess non funziona. Controlla la configurazione del tuo server."
 
-#: ../../include/profile_selectors.php:23
-msgid "Deviant"
-msgstr "Deviato"
+#: ../../mod/install.php:474
+msgid "Url rewrite is working"
+msgstr "La riscrittura degli url funziona"
 
-#: ../../include/profile_selectors.php:23
-msgid "Fetish"
-msgstr "Fetish"
+#: ../../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 "Il file di configurazione del database \".htconfig.php\" non può essere scritto. Usa il testo qui di seguito per creare un file di configurazione nella cartella principale del tuo sito."
 
-#: ../../include/profile_selectors.php:23
-msgid "Oodles"
-msgstr "Un sacco"
+#: ../../mod/install.php:523
+msgid "<h1>What next</h1>"
+msgstr "<h1>Cosa fare ora</h1>"
 
-#: ../../include/profile_selectors.php:23
-msgid "Nonsexual"
-msgstr "Asessuato"
+#: ../../mod/install.php:524
+msgid ""
+"IMPORTANT: You will need to [manually] setup a scheduled task for the "
+"poller."
+msgstr "IMPORTANTE: Devi impostare [manualmente] la pianificazione del poller."
 
-#: ../../include/profile_selectors.php:42
-msgid "Single"
-msgstr "Single"
+#: ../../mod/help.php:31
+msgid "Help:"
+msgstr "Guida:"
 
-#: ../../include/profile_selectors.php:42
-msgid "Lonely"
-msgstr "Solitario"
+#: ../../mod/crepair.php:106
+msgid "Contact settings applied."
+msgstr "Contatto modificato."
 
-#: ../../include/profile_selectors.php:42
-msgid "Available"
-msgstr "Disponibile"
+#: ../../mod/crepair.php:108
+msgid "Contact update failed."
+msgstr "Le modifiche al contatto non sono state salvate."
 
-#: ../../include/profile_selectors.php:42
-msgid "Unavailable"
-msgstr "Non disponibile"
+#: ../../mod/crepair.php:139
+msgid "Repair Contact Settings"
+msgstr "Ripara il contatto"
 
-#: ../../include/profile_selectors.php:42
-msgid "Has crush"
-msgstr "è cotto/a"
+#: ../../mod/crepair.php:141
+msgid ""
+"<strong>WARNING: This is highly advanced</strong> and if you enter incorrect"
+" information your communications with this contact may stop working."
+msgstr "<strong>ATTENZIONE: Queste sono impostazioni avanzate</strong> e se inserisci informazioni errate le tue comunicazioni con questo contatto potrebbero non funzionare più"
 
-#: ../../include/profile_selectors.php:42
-msgid "Infatuated"
-msgstr "infatuato/a"
+#: ../../mod/crepair.php:142
+msgid ""
+"Please use your browser 'Back' button <strong>now</strong> if you are "
+"uncertain what to do on this page."
+msgstr "Usa <strong>ora</strong> il tasto 'Indietro' del tuo browser se non sei sicuro di cosa fare in questa pagina."
 
-#: ../../include/profile_selectors.php:42
-msgid "Dating"
-msgstr "Disponibile a un incontro"
+#: ../../mod/crepair.php:148
+msgid "Return to contact editor"
+msgstr "Ritorna alla modifica contatto"
 
-#: ../../include/profile_selectors.php:42
-msgid "Unfaithful"
-msgstr "Infedele"
+#: ../../mod/crepair.php:159 ../../mod/crepair.php:161
+msgid "No mirroring"
+msgstr "Non duplicare"
 
-#: ../../include/profile_selectors.php:42
-msgid "Sex Addict"
-msgstr "Sesso-dipendente"
+#: ../../mod/crepair.php:159
+msgid "Mirror as forwarded posting"
+msgstr "Duplica come messaggi ricondivisi"
 
-#: ../../include/profile_selectors.php:42
-msgid "Friends/Benefits"
-msgstr "Amici con benefici"
+#: ../../mod/crepair.php:159 ../../mod/crepair.php:161
+msgid "Mirror as my own posting"
+msgstr "Duplica come miei messaggi"
 
-#: ../../include/profile_selectors.php:42
-msgid "Casual"
-msgstr "Casual"
+#: ../../mod/crepair.php:168
+msgid "Refetch contact data"
+msgstr "Ricarica dati contatto"
 
-#: ../../include/profile_selectors.php:42
-msgid "Engaged"
-msgstr "Impegnato"
+#: ../../mod/crepair.php:170
+msgid "Account Nickname"
+msgstr "Nome utente"
 
-#: ../../include/profile_selectors.php:42
-msgid "Married"
-msgstr "Sposato"
+#: ../../mod/crepair.php:171
+msgid "@Tagname - overrides Name/Nickname"
+msgstr "@TagName - al posto del nome utente"
 
-#: ../../include/profile_selectors.php:42
-msgid "Imaginarily married"
-msgstr "immaginariamente sposato/a"
+#: ../../mod/crepair.php:172
+msgid "Account URL"
+msgstr "URL dell'utente"
 
-#: ../../include/profile_selectors.php:42
-msgid "Partners"
-msgstr "Partners"
+#: ../../mod/crepair.php:173
+msgid "Friend Request URL"
+msgstr "URL Richiesta Amicizia"
 
-#: ../../include/profile_selectors.php:42
-msgid "Cohabiting"
-msgstr "Coinquilino"
+#: ../../mod/crepair.php:174
+msgid "Friend Confirm URL"
+msgstr "URL Conferma Amicizia"
 
-#: ../../include/profile_selectors.php:42
-msgid "Common law"
-msgstr "diritto comune"
+#: ../../mod/crepair.php:175
+msgid "Notification Endpoint URL"
+msgstr "URL Notifiche"
 
-#: ../../include/profile_selectors.php:42
-msgid "Happy"
-msgstr "Felice"
-
-#: ../../include/profile_selectors.php:42
-msgid "Not looking"
-msgstr "Non guarda"
-
-#: ../../include/profile_selectors.php:42
-msgid "Swinger"
-msgstr "Scambista"
-
-#: ../../include/profile_selectors.php:42
-msgid "Betrayed"
-msgstr "Tradito"
-
-#: ../../include/profile_selectors.php:42
-msgid "Separated"
-msgstr "Separato"
-
-#: ../../include/profile_selectors.php:42
-msgid "Unstable"
-msgstr "Instabile"
-
-#: ../../include/profile_selectors.php:42
-msgid "Divorced"
-msgstr "Divorziato"
-
-#: ../../include/profile_selectors.php:42
-msgid "Imaginarily divorced"
-msgstr "immaginariamente divorziato/a"
-
-#: ../../include/profile_selectors.php:42
-msgid "Widowed"
-msgstr "Vedovo"
-
-#: ../../include/profile_selectors.php:42
-msgid "Uncertain"
-msgstr "Incerto"
-
-#: ../../include/profile_selectors.php:42
-msgid "It's complicated"
-msgstr "E' complicato"
-
-#: ../../include/profile_selectors.php:42
-msgid "Don't care"
-msgstr "Non interessa"
-
-#: ../../include/profile_selectors.php:42
-msgid "Ask me"
-msgstr "Chiedimelo"
-
-#: ../../include/enotify.php:18
-msgid "Friendica Notification"
-msgstr "Notifica Friendica"
-
-#: ../../include/enotify.php:21
-msgid "Thank You,"
-msgstr "Grazie,"
-
-#: ../../include/enotify.php:23
-#, php-format
-msgid "%s Administrator"
-msgstr "Amministratore %s"
-
-#: ../../include/enotify.php:64
-#, php-format
-msgid "%s <!item_type!>"
-msgstr "%s <!item_type!>"
-
-#: ../../include/enotify.php:68
-#, php-format
-msgid "[Friendica:Notify] New mail received at %s"
-msgstr "[Friendica:Notifica] Nuovo messaggio privato ricevuto su %s"
-
-#: ../../include/enotify.php:70
-#, php-format
-msgid "%1$s sent you a new private message at %2$s."
-msgstr "%1$s ti ha inviato un nuovo messaggio privato su %2$s."
-
-#: ../../include/enotify.php:71
-#, php-format
-msgid "%1$s sent you %2$s."
-msgstr "%1$s ti ha inviato %2$s"
-
-#: ../../include/enotify.php:71
-msgid "a private message"
-msgstr "un messaggio privato"
-
-#: ../../include/enotify.php:72
-#, php-format
-msgid "Please visit %s to view and/or reply to your private messages."
-msgstr "Visita %s per vedere e/o rispodere ai tuoi messaggi privati."
-
-#: ../../include/enotify.php:124
-#, php-format
-msgid "%1$s commented on [url=%2$s]a %3$s[/url]"
-msgstr "%1$s ha commentato [url=%2$s]%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 ha commentato [url=%2$s]%4$s di %3$s[/url]"
-
-#: ../../include/enotify.php:139
-#, php-format
-msgid "%1$s commented on [url=%2$s]your %3$s[/url]"
-msgstr "%1$s ha commentato un [url=%2$s]tuo %3$s[/url]"
-
-#: ../../include/enotify.php:149
-#, php-format
-msgid "[Friendica:Notify] Comment to conversation #%1$d by %2$s"
-msgstr "[Friendica:Notifica] Commento di %2$s alla conversazione #%1$d"
+#: ../../mod/crepair.php:176
+msgid "Poll/Feed URL"
+msgstr "URL Feed"
 
-#: ../../include/enotify.php:150
-#, php-format
-msgid "%s commented on an item/conversation you have been following."
-msgstr "%s ha commentato un elemento che stavi seguendo."
+#: ../../mod/crepair.php:177
+msgid "New photo from this URL"
+msgstr "Nuova foto da questo URL"
 
-#: ../../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 "Visita %s per vedere e/o commentare la conversazione"
+#: ../../mod/crepair.php:178
+msgid "Remote Self"
+msgstr "Io remoto"
 
-#: ../../include/enotify.php:160
-#, php-format
-msgid "[Friendica:Notify] %s posted to your profile wall"
-msgstr "[Friendica:Notifica] %s ha scritto sulla tua bacheca"
+#: ../../mod/crepair.php:180
+msgid "Mirror postings from this contact"
+msgstr "Ripeti i messaggi di questo contatto"
 
-#: ../../include/enotify.php:162
-#, php-format
-msgid "%1$s posted to your profile wall at %2$s"
-msgstr "%1$s ha scritto sulla tua bacheca su %2$s"
+#: ../../mod/crepair.php:180
+msgid ""
+"Mark this contact as remote_self, this will cause friendica to repost new "
+"entries from this contact."
+msgstr "Imposta questo contatto come 'io remoto', questo farà si che friendica reinvii i nuovi messaggi da questo contatto."
 
-#: ../../include/enotify.php:164
-#, php-format
-msgid "%1$s posted to [url=%2$s]your wall[/url]"
-msgstr "%1$s ha inviato un messaggio sulla [url=%2$s]tua bacheca[/url]"
+#: ../../mod/newmember.php:6
+msgid "Welcome to Friendica"
+msgstr "Benvenuto su Friendica"
 
-#: ../../include/enotify.php:175
-#, php-format
-msgid "[Friendica:Notify] %s tagged you"
-msgstr "[Friendica:Notifica] %s ti ha taggato"
+#: ../../mod/newmember.php:8
+msgid "New Member Checklist"
+msgstr "Cose da fare per i Nuovi Utenti"
 
-#: ../../include/enotify.php:176
-#, php-format
-msgid "%1$s tagged you at %2$s"
-msgstr "%1$s ti ha taggato su %2$s"
+#: ../../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 "Vorremmo offrirti qualche trucco e dei link alla guida per aiutarti ad avere un'esperienza divertente. Clicca su un qualsiasi elemento per visitare la relativa pagina. Un link a questa pagina sarà visibile nella tua home per due settimane dopo la tua registrazione."
 
-#: ../../include/enotify.php:177
-#, php-format
-msgid "%1$s [url=%2$s]tagged you[/url]."
-msgstr "%1$s [url=%2$s]ti ha taggato[/url]."
+#: ../../mod/newmember.php:14
+msgid "Getting Started"
+msgstr "Come Iniziare"
 
-#: ../../include/enotify.php:188
-#, php-format
-msgid "[Friendica:Notify] %s shared a new post"
-msgstr "[Friendica:Notifica] %s ha condiviso un nuovo messaggio"
+#: ../../mod/newmember.php:18
+msgid "Friendica Walk-Through"
+msgstr "Friendica Passo-Passo"
 
-#: ../../include/enotify.php:189
-#, php-format
-msgid "%1$s shared a new post at %2$s"
-msgstr "%1$s ha condiviso un nuovo messaggio su %2$s"
+#: ../../mod/newmember.php:18
+msgid ""
+"On your <em>Quick Start</em> page - find a brief introduction to your "
+"profile and network tabs, make some new connections, and find some groups to"
+" join."
+msgstr "Sulla tua pagina <em>Quick Start</em> - veloce introduzione alla tua pagina profilo e alla pagina Rete, fai qualche nuova amicizia, e trova qualche gruppo a cui unirti."
 
-#: ../../include/enotify.php:190
-#, php-format
-msgid "%1$s [url=%2$s]shared a post[/url]."
-msgstr "%1$s [url=%2$s]ha condiviso un messaggio[/url]."
+#: ../../mod/newmember.php:26
+msgid "Go to Your Settings"
+msgstr "Vai alle tue Impostazioni"
 
-#: ../../include/enotify.php:202
-#, php-format
-msgid "[Friendica:Notify] %1$s poked you"
-msgstr "[Friendica:Notifica] %1$s ti ha stuzzicato"
+#: ../../mod/newmember.php:26
+msgid ""
+"On your <em>Settings</em> page -  change your initial password. Also make a "
+"note of your Identity Address. This looks just like an email address - and "
+"will be useful in making friends on the free social web."
+msgstr "Nella tua pagina <em>Impostazioni</em> - cambia la tua password iniziale. Prendi anche nota del tuo Indirizzo Identità. Assomiglia a un indirizzo email e sarà utile per stringere amicizie nel web sociale libero."
 
-#: ../../include/enotify.php:203
-#, php-format
-msgid "%1$s poked you at %2$s"
-msgstr "%1$s ti ha stuzzicato su %2$s"
+#: ../../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 "Guarda le altre impostazioni, in particolare le impostazioni della privacy. Un profilo non pubblicato è come un numero di telefono non in elenco. In genere, dovresti pubblicare il tuo profilo - a meno che tutti i tuoi amici e potenziali tali sappiano esattamente come trovarti."
 
-#: ../../include/enotify.php:204
-#, php-format
-msgid "%1$s [url=%2$s]poked you[/url]."
-msgstr "%1$s [url=%2$s]ti ha stuzzicato[/url]."
+#: ../../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 "Carica una foto del profilo se non l'hai ancora fatto. Studi hanno mostrato che persone che hanno vere foto di se stessi hanno dieci volte più probabilità di fare amicizie rispetto alle persone che non ce l'hanno."
 
-#: ../../include/enotify.php:219
-#, php-format
-msgid "[Friendica:Notify] %s tagged your post"
-msgstr "[Friendica:Notifica] %s ha taggato un tuo messaggio"
+#: ../../mod/newmember.php:38
+msgid "Edit Your Profile"
+msgstr "Modifica il tuo Profilo"
 
-#: ../../include/enotify.php:220
-#, php-format
-msgid "%1$s tagged your post at %2$s"
-msgstr "%1$s ha taggato il tuo post su %2$s"
+#: ../../mod/newmember.php:38
+msgid ""
+"Edit your <strong>default</strong> profile to your liking. Review the "
+"settings for hiding your list of friends and hiding the profile from unknown"
+" visitors."
+msgstr "Modifica il tuo profilo <strong>predefinito</strong> a piacimento. Rivedi le impostazioni per nascondere la tua lista di amici e nascondere il profilo ai visitatori sconosciuti."
 
-#: ../../include/enotify.php:221
-#, php-format
-msgid "%1$s tagged [url=%2$s]your post[/url]"
-msgstr "%1$s ha taggato [url=%2$s]il tuo post[/url]"
+#: ../../mod/newmember.php:40
+msgid "Profile Keywords"
+msgstr "Parole chiave del profilo"
 
-#: ../../include/enotify.php:232
-msgid "[Friendica:Notify] Introduction received"
-msgstr "[Friendica:Notifica] Hai ricevuto una presentazione"
+#: ../../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 "Inserisci qualche parola chiave pubblica nel tuo profilo predefinito che descriva i tuoi interessi. Potremmo essere in grado di trovare altre persone con interessi similari e suggerirti delle amicizie."
 
-#: ../../include/enotify.php:233
-#, php-format
-msgid "You've received an introduction from '%1$s' at %2$s"
-msgstr "Hai ricevuto un'introduzione da '%1$s' su %2$s"
+#: ../../mod/newmember.php:44
+msgid "Connecting"
+msgstr "Collegarsi"
 
-#: ../../include/enotify.php:234
-#, php-format
-msgid "You've received [url=%1$s]an introduction[/url] from %2$s."
-msgstr "Hai ricevuto [url=%1$s]un'introduzione[/url] da %2$s."
+#: ../../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 "Autorizza il Facebook Connector se hai un account Facebook, e noi (opzionalmente) importeremo tuti i tuoi amici e le tue conversazioni da Facebook."
 
-#: ../../include/enotify.php:237 ../../include/enotify.php:279
-#, php-format
-msgid "You may visit their profile at %s"
-msgstr "Puoi visitare il suo profilo presso %s"
+#: ../../mod/newmember.php:51
+msgid ""
+"<em>If</em> this is your own personal server, installing the Facebook addon "
+"may ease your transition to the free social web."
+msgstr "<em>Se</em questo è il tuo server personale, installare il plugin per Facebook puo' aiutarti nella transizione verso il web sociale libero."
 
-#: ../../include/enotify.php:239
-#, php-format
-msgid "Please visit %s to approve or reject the introduction."
-msgstr "Visita %s per approvare o rifiutare la presentazione."
+#: ../../mod/newmember.php:56
+msgid "Importing Emails"
+msgstr "Importare le Email"
 
-#: ../../include/enotify.php:247
-msgid "[Friendica:Notify] A new person is sharing with you"
-msgstr "[Friendica:Notifica] Una nuova persona sta condividendo con te"
+#: ../../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 "Inserisci i tuoi dati di accesso all'email nella tua pagina Impostazioni Connettori se vuoi importare e interagire con amici o mailing list dalla tua casella di posta in arrivo"
 
-#: ../../include/enotify.php:248 ../../include/enotify.php:249
-#, php-format
-msgid "%1$s is sharing with you at %2$s"
-msgstr "%1$s sta condividendo con te su %2$s"
+#: ../../mod/newmember.php:58
+msgid "Go to Your Contacts Page"
+msgstr "Vai alla tua pagina Contatti"
 
-#: ../../include/enotify.php:255
-msgid "[Friendica:Notify] You have a new follower"
-msgstr "[Friendica:Notifica] Una nuova persona ti segue"
+#: ../../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 <em>Add New Contact</em> dialog."
+msgstr "La tua pagina Contatti è il mezzo per gestire le amicizie e collegarsi con amici su altre reti. Di solito, basta inserire l'indirizzo nel campo <em>Aggiungi Nuovo Contatto</em>"
 
-#: ../../include/enotify.php:256 ../../include/enotify.php:257
-#, php-format
-msgid "You have a new follower at %2$s : %1$s"
-msgstr "Un nuovo utente ha iniziato a seguirti su %2$s : %1$s"
+#: ../../mod/newmember.php:60
+msgid "Go to Your Site's Directory"
+msgstr "Vai all'Elenco del tuo sito"
 
-#: ../../include/enotify.php:270
-msgid "[Friendica:Notify] Friend suggestion received"
-msgstr "[Friendica:Notifica] Hai ricevuto un suggerimento di amicizia"
+#: ../../mod/newmember.php:60
+msgid ""
+"The Directory page lets you find other people in this network or other "
+"federated sites. Look for a <em>Connect</em> or <em>Follow</em> link on "
+"their profile page. Provide your own Identity Address if requested."
+msgstr "La pagina Elenco ti permette di trovare altre persone in questa rete o in altri siti. Cerca un link <em>Connetti</em> o <em>Segui</em> nella loro pagina del profilo. Inserisci il tuo Indirizzo Identità, se richiesto."
 
-#: ../../include/enotify.php:271
-#, php-format
-msgid "You've received a friend suggestion from '%1$s' at %2$s"
-msgstr "Hai ricevuto un suggerimento di amicizia da '%1$s' su %2$s"
+#: ../../mod/newmember.php:62
+msgid "Finding New People"
+msgstr "Trova nuove persone"
 
-#: ../../include/enotify.php:272
-#, php-format
+#: ../../mod/newmember.php:62
 msgid ""
-"You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s."
-msgstr "Hai ricevuto [url=%1$s]un suggerimento di amicizia[/url] per %2$s su %3$s"
+"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 "Nel pannello laterale nella pagina \"Contatti\", ci sono diversi strumenti per trovare nuovi amici. Possiamo confrontare le persone per interessi, cercare le persone per nome e fornire suggerimenti basati sui tuoi contatti esistenti. Su un sito nuovo, i suggerimenti sono di solito presenti dopo 24 ore."
 
-#: ../../include/enotify.php:277
-msgid "Name:"
-msgstr "Nome:"
+#: ../../mod/newmember.php:70
+msgid "Group Your Contacts"
+msgstr "Raggruppa i tuoi contatti"
 
-#: ../../include/enotify.php:278
-msgid "Photo:"
-msgstr "Foto:"
+#: ../../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 "Quando avrai alcuni amici, organizzali in gruppi di conversazioni private dalla barra laterale della tua pagina Contatti. Potrai interagire privatamente con ogni gruppo nella tua pagina Rete"
 
-#: ../../include/enotify.php:281
-#, php-format
-msgid "Please visit %s to approve or reject the suggestion."
-msgstr "Visita %s per approvare o rifiutare il suggerimento."
+#: ../../mod/newmember.php:73
+msgid "Why Aren't My Posts Public?"
+msgstr "Perchè i miei post non sono pubblici?"
 
-#: ../../include/enotify.php:289 ../../include/enotify.php:302
-msgid "[Friendica:Notify] Connection accepted"
-msgstr "[Friendica:Notifica] Connessione accettata"
+#: ../../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 rispetta la tua provacy. Per impostazione predefinita, i tuoi post sono mostrati solo alle persone che hai aggiunto come amici. Per maggiori informazioni guarda la sezione della guida dal link qui sopra."
 
-#: ../../include/enotify.php:290 ../../include/enotify.php:303
-#, php-format
-msgid "'%1$s' has acepted your connection request at %2$s"
-msgstr "'%1$s' ha accettato la tua richiesta di connessione su %2$s"
+#: ../../mod/newmember.php:78
+msgid "Getting Help"
+msgstr "Ottenere Aiuto"
 
-#: ../../include/enotify.php:291 ../../include/enotify.php:304
-#, php-format
-msgid "%2$s has accepted your [url=%1$s]connection request[/url]."
-msgstr "%2$s ha accettato la tua [url=%1$s]richiesta di connessione[/url]"
+#: ../../mod/newmember.php:82
+msgid "Go to the Help Section"
+msgstr "Vai alla sezione Guida"
 
-#: ../../include/enotify.php:294
+#: ../../mod/newmember.php:82
 msgid ""
-"You are now mutual friends and may exchange status updates, photos, and email\n"
-"\twithout restriction."
-msgstr "Ora siete connessi reciprocamente e potete scambiarvi aggiornamenti di stato, foto e email\nsenza restrizioni"
+"Our <strong>help</strong> pages may be consulted for detail on other program"
+" features and resources."
+msgstr "Le nostre pagine della <strong>guida</strong> possono essere consultate per avere dettagli su altre caratteristiche del programma e altre risorse."
 
-#: ../../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 "Visita %s se desideri modificare questo collegamento."
+#: ../../mod/poke.php:192
+msgid "Poke/Prod"
+msgstr "Tocca/Pungola"
 
-#: ../../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 "'%1$s' ha scelto di accettarti come \"fan\", il che limita alcune forme di comunicazione, come i messaggi privati, e alcune possibiltà di interazione col profilo. Se è una pagina di una comunità o di una celebrità, queste impostazioni sono state applicate automaticamente."
+#: ../../mod/poke.php:193
+msgid "poke, prod or do other things to somebody"
+msgstr "tocca, pungola o fai altre cose a qualcuno"
 
-#: ../../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 "'%1$s' può decidere in futuro di estendere la connessione in una reciproca o più permissiva."
+#: ../../mod/poke.php:194
+msgid "Recipient"
+msgstr "Destinatario"
 
-#: ../../include/enotify.php:322
-msgid "[Friendica System:Notify] registration request"
-msgstr "[Friendica System:Notifica] richiesta di registrazione"
+#: ../../mod/poke.php:195
+msgid "Choose what you wish to do to recipient"
+msgstr "Scegli cosa vuoi fare al destinatario"
 
-#: ../../include/enotify.php:323
-#, php-format
-msgid "You've received a registration request from '%1$s' at %2$s"
-msgstr "Hai ricevuto una richiesta di registrazione da '%1$s' su %2$s"
+#: ../../mod/poke.php:198
+msgid "Make this post private"
+msgstr "Rendi questo post privato"
 
-#: ../../include/enotify.php:324
-#, php-format
-msgid "You've received a [url=%1$s]registration request[/url] from %2$s."
-msgstr "Hai ricevuto una [url=%1$s]richiesta di registrazione[/url] da %2$s."
+#: ../../mod/display.php:498
+msgid "Item has been removed."
+msgstr "L'oggetto è stato rimosso."
 
-#: ../../include/enotify.php:327
+#: ../../mod/subthread.php:103
 #, php-format
-msgid "Full Name:\t%1$s\\nSite Location:\t%2$s\\nLogin Name:\t%3$s (%4$s)"
-msgstr "Nome completo: %1$s\nIndirizzo del sito: %2$s\nNome utente: %3$s (%4$s)"
+msgid "%1$s is following %2$s's %3$s"
+msgstr "%1$s sta seguendo %3$s di %2$s"
 
-#: ../../include/enotify.php:330
+#: ../../mod/dfrn_poll.php:103 ../../mod/dfrn_poll.php:536
 #, php-format
-msgid "Please visit %s to approve or reject the request."
-msgstr "Visita %s per approvare o rifiutare la richiesta."
+msgid "%1$s welcomes %2$s"
+msgstr "%s dà il benvenuto a %s"
 
-#: ../../include/oembed.php:212
-msgid "Embedded content"
-msgstr "Contenuto incorporato"
+#: ../../mod/dfrn_confirm.php:121
+msgid ""
+"This may occasionally happen if contact was requested by both persons and it"
+" has already been approved."
+msgstr "Questo puo' accadere occasionalmente se la richiesta di contatto era stata inviata da entrambe le persone e  già approvata."
 
-#: ../../include/oembed.php:221
-msgid "Embedding disabled"
-msgstr "Embed disabilitato"
+#: ../../mod/dfrn_confirm.php:240
+msgid "Response from remote site was not understood."
+msgstr "Errore di comunicazione con l'altro sito."
 
-#: ../../include/uimport.php:94
-msgid "Error decoding account file"
-msgstr "Errore decodificando il file account"
+#: ../../mod/dfrn_confirm.php:249 ../../mod/dfrn_confirm.php:254
+msgid "Unexpected response from remote site: "
+msgstr "La risposta dell'altro sito non può essere gestita: "
 
-#: ../../include/uimport.php:100
-msgid "Error! No version data in file! This is not a Friendica account file?"
-msgstr "Errore! Nessuna informazione di versione nel file! Potrebbe non essere un file account di Friendica?"
+#: ../../mod/dfrn_confirm.php:263
+msgid "Confirmation completed successfully."
+msgstr "Conferma completata con successo."
 
-#: ../../include/uimport.php:116 ../../include/uimport.php:127
-msgid "Error! Cannot check nickname"
-msgstr "Errore! Non posso controllare il nickname"
+#: ../../mod/dfrn_confirm.php:265 ../../mod/dfrn_confirm.php:279
+#: ../../mod/dfrn_confirm.php:286
+msgid "Remote site reported: "
+msgstr "Il sito remoto riporta: "
 
-#: ../../include/uimport.php:120 ../../include/uimport.php:131
-#, php-format
-msgid "User '%s' already exists on this server!"
-msgstr "L'utente '%s' esiste già su questo server!"
+#: ../../mod/dfrn_confirm.php:277
+msgid "Temporary failure. Please wait and try again."
+msgstr "Problema temporaneo. Attendi e riprova."
 
-#: ../../include/uimport.php:153
-msgid "User creation error"
-msgstr "Errore creando l'utente"
+#: ../../mod/dfrn_confirm.php:284
+msgid "Introduction failed or was revoked."
+msgstr "La presentazione ha generato un errore o è stata revocata."
 
-#: ../../include/uimport.php:171
-msgid "User profile creation error"
-msgstr "Errore creando il profile dell'utente"
+#: ../../mod/dfrn_confirm.php:430
+msgid "Unable to set contact photo."
+msgstr "Impossibile impostare la foto del contatto."
 
-#: ../../include/uimport.php:220
+#: ../../mod/dfrn_confirm.php:572
 #, php-format
-msgid "%d contact not imported"
-msgid_plural "%d contacts not imported"
-msgstr[0] "%d contatto non importato"
-msgstr[1] "%d contatti non importati"
-
-#: ../../include/uimport.php:290
-msgid "Done. You can now login with your username and password"
-msgstr "Fatto. Ora puoi entrare con il tuo nome utente e la tua password"
-
-#: ../../index.php:428
-msgid "toggle mobile"
-msgstr "commuta tema mobile"
-
-#: ../../view/theme/cleanzero/config.php:82
-#: ../../view/theme/dispy/config.php:72 ../../view/theme/quattro/config.php:66
-#: ../../view/theme/diabook/config.php:150 ../../view/theme/vier/config.php:55
-#: ../../view/theme/duepuntozero/config.php:61
-msgid "Theme settings"
-msgstr "Impostazioni tema"
+msgid "No user record found for '%s' "
+msgstr "Nessun utente trovato '%s'"
 
-#: ../../view/theme/cleanzero/config.php:83
-msgid "Set resize level for images in posts and comments (width and height)"
-msgstr "Dimensione immagini in messaggi e commenti (larghezza e altezza)"
+#: ../../mod/dfrn_confirm.php:582
+msgid "Our site encryption key is apparently messed up."
+msgstr "La nostra chiave di criptazione del sito sembra essere corrotta."
 
-#: ../../view/theme/cleanzero/config.php:84
-#: ../../view/theme/dispy/config.php:73
-#: ../../view/theme/diabook/config.php:151
-msgid "Set font-size for posts and comments"
-msgstr "Dimensione del carattere di messaggi e commenti"
+#: ../../mod/dfrn_confirm.php:593
+msgid "Empty site URL was provided or URL could not be decrypted by us."
+msgstr "E' stato fornito un indirizzo vuoto o non possiamo decrittare l'indirizzo."
 
-#: ../../view/theme/cleanzero/config.php:85
-msgid "Set theme width"
-msgstr "Imposta la larghezza del tema"
+#: ../../mod/dfrn_confirm.php:614
+msgid "Contact record was not found for you on our site."
+msgstr "Il contatto non è stato trovato sul nostro sito."
 
-#: ../../view/theme/cleanzero/config.php:86
-#: ../../view/theme/quattro/config.php:68
-msgid "Color scheme"
-msgstr "Schema colori"
+#: ../../mod/dfrn_confirm.php:628
+#, php-format
+msgid "Site public key not available in contact record for URL %s."
+msgstr "La chiave pubblica del sito non è disponibile per l'URL %s"
 
-#: ../../view/theme/dispy/config.php:74
-#: ../../view/theme/diabook/config.php:152
-msgid "Set line-height for posts and comments"
-msgstr "Altezza della linea di testo di messaggi e commenti"
+#: ../../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 "L'ID fornito dal tuo sistema è duplicato sul nostro sistema. Se riprovi dovrebbe funzionare."
 
-#: ../../view/theme/dispy/config.php:75
-msgid "Set colour scheme"
-msgstr "Imposta schema colori"
+#: ../../mod/dfrn_confirm.php:659
+msgid "Unable to set your contact credentials on our system."
+msgstr "Impossibile impostare le credenziali del tuo contatto sul nostro sistema."
 
-#: ../../view/theme/quattro/config.php:67
-msgid "Alignment"
-msgstr "Allineamento"
+#: ../../mod/dfrn_confirm.php:726
+msgid "Unable to update your contact profile details on our system"
+msgstr "Impossibile aggiornare i dettagli del tuo contatto sul nostro sistema"
 
-#: ../../view/theme/quattro/config.php:67
-msgid "Left"
-msgstr "Sinistra"
+#: ../../mod/dfrn_confirm.php:798
+#, php-format
+msgid "%1$s has joined %2$s"
+msgstr "%1$s si è unito a %2$s"
 
-#: ../../view/theme/quattro/config.php:67
-msgid "Center"
-msgstr "Centrato"
+#: ../../mod/item.php:114
+msgid "Unable to locate original post."
+msgstr "Impossibile trovare il messaggio originale."
 
-#: ../../view/theme/quattro/config.php:69
-msgid "Posts font size"
-msgstr "Dimensione caratteri post"
+#: ../../mod/item.php:346
+msgid "Empty post discarded."
+msgstr "Messaggio vuoto scartato."
 
-#: ../../view/theme/quattro/config.php:70
-msgid "Textareas font size"
-msgstr "Dimensione caratteri nelle aree di testo"
+#: ../../mod/item.php:839
+msgid "System error. Post not saved."
+msgstr "Errore di sistema. Messaggio non salvato."
 
-#: ../../view/theme/diabook/config.php:153
-msgid "Set resolution for middle column"
-msgstr "Imposta la dimensione della colonna centrale"
+#: ../../mod/item.php:965
+#, php-format
+msgid ""
+"This message was sent to you by %s, a member of the Friendica social "
+"network."
+msgstr "Questo messaggio ti è stato inviato da %s, un membro del social network Friendica."
 
-#: ../../view/theme/diabook/config.php:154
-msgid "Set color scheme"
-msgstr "Imposta lo schema dei colori"
+#: ../../mod/item.php:967
+#, php-format
+msgid "You may visit them online at %s"
+msgstr "Puoi visitarli online su %s"
 
-#: ../../view/theme/diabook/config.php:155
-msgid "Set zoomfactor for Earth Layer"
-msgstr "Livello di zoom per Earth Layer"
+#: ../../mod/item.php:968
+msgid ""
+"Please contact the sender by replying to this post if you do not wish to "
+"receive these messages."
+msgstr "Contatta il mittente rispondendo a questo post se non vuoi ricevere questi messaggi."
 
-#: ../../view/theme/diabook/config.php:156
-#: ../../view/theme/diabook/theme.php:585
-msgid "Set longitude (X) for Earth Layers"
-msgstr "Longitudine (X) per Earth Layers"
+#: ../../mod/item.php:972
+#, php-format
+msgid "%s posted an update."
+msgstr "%s ha inviato un aggiornamento."
 
-#: ../../view/theme/diabook/config.php:157
-#: ../../view/theme/diabook/theme.php:586
-msgid "Set latitude (Y) for Earth Layers"
-msgstr "Latitudine (Y) per Earth Layers"
+#: ../../mod/profile_photo.php:44
+msgid "Image uploaded but image cropping failed."
+msgstr "L'immagine è stata caricata, ma il non è stato possibile ritagliarla."
 
-#: ../../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 "Pagine Comunitarie"
+#: ../../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 "Il ridimensionamento del'immagine [%s] è fallito."
 
-#: ../../view/theme/diabook/config.php:159
-#: ../../view/theme/diabook/theme.php:579
-#: ../../view/theme/diabook/theme.php:625
-msgid "Earth Layers"
-msgstr "Earth Layers"
+#: ../../mod/profile_photo.php:118
+msgid ""
+"Shift-reload the page or clear browser cache if the new photo does not "
+"display immediately."
+msgstr "Ricarica la pagina con shift+F5 o cancella la cache del browser se la nuova foto non viene mostrata immediatamente."
 
-#: ../../view/theme/diabook/config.php:160
-#: ../../view/theme/diabook/theme.php:391
-#: ../../view/theme/diabook/theme.php:626
-msgid "Community Profiles"
-msgstr "Profili Comunità"
+#: ../../mod/profile_photo.php:128
+msgid "Unable to process image"
+msgstr "Impossibile elaborare l'immagine"
 
-#: ../../view/theme/diabook/config.php:161
-#: ../../view/theme/diabook/theme.php:599
-#: ../../view/theme/diabook/theme.php:627
-msgid "Help or @NewHere ?"
-msgstr "Serve aiuto? Sei nuovo?"
+#: ../../mod/profile_photo.php:242
+msgid "Upload File:"
+msgstr "Carica un file:"
 
-#: ../../view/theme/diabook/config.php:162
-#: ../../view/theme/diabook/theme.php:606
-#: ../../view/theme/diabook/theme.php:628
-msgid "Connect Services"
-msgstr "Servizi di conessione"
+#: ../../mod/profile_photo.php:243
+msgid "Select a profile:"
+msgstr "Seleziona un profilo:"
 
-#: ../../view/theme/diabook/config.php:163
-#: ../../view/theme/diabook/theme.php:523
-#: ../../view/theme/diabook/theme.php:629
-msgid "Find Friends"
-msgstr "Trova Amici"
+#: ../../mod/profile_photo.php:245
+msgid "Upload"
+msgstr "Carica"
 
-#: ../../view/theme/diabook/config.php:164
-#: ../../view/theme/diabook/theme.php:412
-#: ../../view/theme/diabook/theme.php:630
-msgid "Last users"
-msgstr "Ultimi utenti"
+#: ../../mod/profile_photo.php:248
+msgid "skip this step"
+msgstr "salta questo passaggio"
 
-#: ../../view/theme/diabook/config.php:165
-#: ../../view/theme/diabook/theme.php:486
-#: ../../view/theme/diabook/theme.php:631
-msgid "Last photos"
-msgstr "Ultime foto"
+#: ../../mod/profile_photo.php:248
+msgid "select a photo from your photo albums"
+msgstr "seleziona una foto dai tuoi album"
 
-#: ../../view/theme/diabook/config.php:166
-#: ../../view/theme/diabook/theme.php:441
-#: ../../view/theme/diabook/theme.php:632
-msgid "Last likes"
-msgstr "Ultimi \"mi piace\""
+#: ../../mod/profile_photo.php:262
+msgid "Crop Image"
+msgstr "Ritaglia immagine"
 
-#: ../../view/theme/diabook/theme.php:125
-msgid "Your contacts"
-msgstr "I tuoi contatti"
+#: ../../mod/profile_photo.php:263
+msgid "Please adjust the image cropping for optimum viewing."
+msgstr "Ritaglia l'imagine per una visualizzazione migliore."
 
-#: ../../view/theme/diabook/theme.php:128
-msgid "Your personal photos"
-msgstr "Le tue foto personali"
+#: ../../mod/profile_photo.php:265
+msgid "Done Editing"
+msgstr "Finito"
 
-#: ../../view/theme/diabook/theme.php:524
-msgid "Local Directory"
-msgstr "Elenco Locale"
+#: ../../mod/profile_photo.php:299
+msgid "Image uploaded successfully."
+msgstr "Immagine caricata con successo."
 
-#: ../../view/theme/diabook/theme.php:584
-msgid "Set zoomfactor for Earth Layers"
-msgstr "Livello di zoom per Earth Layers"
+#: ../../mod/allfriends.php:34
+#, php-format
+msgid "Friends of %s"
+msgstr "Amici di %s"
 
-#: ../../view/theme/diabook/theme.php:622
-msgid "Show/hide boxes at right-hand column:"
-msgstr "Mostra/Nascondi riquadri nella colonna destra"
+#: ../../mod/allfriends.php:40
+msgid "No friends to display."
+msgstr "Nessun amico da visualizzare."
 
-#: ../../view/theme/vier/config.php:56
-msgid "Set style"
-msgstr "Imposta stile"
+#: ../../mod/directory.php:59
+msgid "Find on this site"
+msgstr "Cerca nel sito"
 
-#: ../../view/theme/duepuntozero/config.php:45
-msgid "greenzero"
-msgstr ""
+#: ../../mod/directory.php:62
+msgid "Site Directory"
+msgstr "Elenco del sito"
 
-#: ../../view/theme/duepuntozero/config.php:46
-msgid "purplezero"
-msgstr ""
+#: ../../mod/directory.php:116
+msgid "Gender: "
+msgstr "Genere:"
 
-#: ../../view/theme/duepuntozero/config.php:47
-msgid "easterbunny"
-msgstr ""
+#: ../../mod/directory.php:189
+msgid "No entries (some entries may be hidden)."
+msgstr "Nessuna voce (qualche voce potrebbe essere nascosta)."
 
-#: ../../view/theme/duepuntozero/config.php:48
-msgid "darkzero"
-msgstr ""
+#: ../../mod/localtime.php:24
+msgid "Time Conversion"
+msgstr "Conversione Ora"
 
-#: ../../view/theme/duepuntozero/config.php:49
-msgid "comix"
-msgstr ""
+#: ../../mod/localtime.php:26
+msgid ""
+"Friendica provides this service for sharing events with other networks and "
+"friends in unknown timezones."
+msgstr "Friendica fornisce questo servizio per la condivisione di eventi con altre reti e amici in fusi orari sconosciuti."
 
-#: ../../view/theme/duepuntozero/config.php:50
-msgid "slackr"
-msgstr ""
+#: ../../mod/localtime.php:30
+#, php-format
+msgid "UTC time: %s"
+msgstr "Ora UTC: %s"
 
-#: ../../view/theme/duepuntozero/config.php:62
-msgid "Variations"
-msgstr ""
+#: ../../mod/localtime.php:33
+#, php-format
+msgid "Current timezone: %s"
+msgstr "Fuso orario corrente: %s"
+
+#: ../../mod/localtime.php:36
+#, php-format
+msgid "Converted localtime: %s"
+msgstr "Ora locale convertita: %s"
+
+#: ../../mod/localtime.php:41
+msgid "Please select your timezone:"
+msgstr "Selezionare il tuo fuso orario:"
index f602406d5bf2a7eb7084b719f319e2aa081f7d46..6f82e70062f576e2de77e41f45520c4db2b2f4df 100644 (file)
@@ -5,301 +5,773 @@ function string_plural_select_it($n){
        return ($n != 1);;
 }}
 ;
-$a->strings["%d contact edited."] = array(
-       0 => "%d contatto modificato",
-       1 => "%d contatti modificati",
-);
-$a->strings["Could not access contact record."] = "Non è possibile accedere al contatto.";
-$a->strings["Could not locate selected profile."] = "Non riesco a trovare il profilo selezionato.";
-$a->strings["Contact updated."] = "Contatto aggiornato.";
-$a->strings["Failed to update contact record."] = "Errore nell'aggiornamento del contatto.";
+$a->strings["Submit"] = "Invia";
+$a->strings["Theme settings"] = "Impostazioni tema";
+$a->strings["Set resize level for images in posts and comments (width and height)"] = "Dimensione immagini in messaggi e commenti (larghezza e altezza)";
+$a->strings["Set font-size for posts and comments"] = "Dimensione del carattere di messaggi e commenti";
+$a->strings["Set theme width"] = "Imposta la larghezza del tema";
+$a->strings["Color scheme"] = "Schema colori";
+$a->strings["Set style"] = "Imposta stile";
+$a->strings["default"] = "default";
+$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"] = "Varianti";
+$a->strings["don't show"] = "non mostrare";
+$a->strings["show"] = "mostra";
+$a->strings["Set line-height for posts and comments"] = "Altezza della linea di testo di messaggi e commenti";
+$a->strings["Set resolution for middle column"] = "Imposta la dimensione della colonna centrale";
+$a->strings["Set color scheme"] = "Imposta lo schema dei colori";
+$a->strings["Set zoomfactor for Earth Layer"] = "Livello di zoom per Earth Layer";
+$a->strings["Set longitude (X) for Earth Layers"] = "Longitudine (X) per Earth Layers";
+$a->strings["Set latitude (Y) for Earth Layers"] = "Latitudine (Y) per Earth Layers";
+$a->strings["Community Pages"] = "Pagine Comunitarie";
+$a->strings["Earth Layers"] = "Earth Layers";
+$a->strings["Community Profiles"] = "Profili Comunità";
+$a->strings["Help or @NewHere ?"] = "Serve aiuto? Sei nuovo?";
+$a->strings["Connect Services"] = "Servizi di conessione";
+$a->strings["Find Friends"] = "Trova Amici";
+$a->strings["Last users"] = "Ultimi utenti";
+$a->strings["Last photos"] = "Ultime foto";
+$a->strings["Last likes"] = "Ultimi \"mi piace\"";
+$a->strings["Home"] = "Home";
+$a->strings["Your posts and conversations"] = "I tuoi messaggi e le tue conversazioni";
+$a->strings["Profile"] = "Profilo";
+$a->strings["Your profile page"] = "Pagina del tuo profilo";
+$a->strings["Contacts"] = "Contatti";
+$a->strings["Your contacts"] = "I tuoi contatti";
+$a->strings["Photos"] = "Foto";
+$a->strings["Your photos"] = "Le tue foto";
+$a->strings["Events"] = "Eventi";
+$a->strings["Your events"] = "I tuoi eventi";
+$a->strings["Personal notes"] = "Note personali";
+$a->strings["Your personal photos"] = "Le tue foto personali";
+$a->strings["Community"] = "Comunità";
+$a->strings["event"] = "l'evento";
+$a->strings["status"] = "stato";
+$a->strings["photo"] = "foto";
+$a->strings["%1\$s likes %2\$s's %3\$s"] = "A %1\$s piace %3\$s di %2\$s";
+$a->strings["Contact Photos"] = "Foto dei contatti";
+$a->strings["Profile Photos"] = "Foto del profilo";
+$a->strings["Local Directory"] = "Elenco Locale";
+$a->strings["Global Directory"] = "Elenco globale";
+$a->strings["Similar Interests"] = "Interessi simili";
+$a->strings["Friend Suggestions"] = "Contatti suggeriti";
+$a->strings["Invite Friends"] = "Invita amici";
+$a->strings["Settings"] = "Impostazioni";
+$a->strings["Set zoomfactor for Earth Layers"] = "Livello di zoom per Earth Layers";
+$a->strings["Show/hide boxes at right-hand column:"] = "Mostra/Nascondi riquadri nella colonna destra";
+$a->strings["Alignment"] = "Allineamento";
+$a->strings["Left"] = "Sinistra";
+$a->strings["Center"] = "Centrato";
+$a->strings["Posts font size"] = "Dimensione caratteri post";
+$a->strings["Textareas font size"] = "Dimensione caratteri nelle aree di testo";
+$a->strings["Set colour scheme"] = "Imposta schema colori";
+$a->strings["You must be logged in to use addons. "] = "Devi aver effettuato il login per usare gli addons.";
+$a->strings["Not Found"] = "Non trovato";
+$a->strings["Page not found."] = "Pagina non trovata.";
+$a->strings["Permission denied"] = "Permesso negato";
 $a->strings["Permission denied."] = "Permesso negato.";
-$a->strings["Contact has been blocked"] = "Il contatto è stato bloccato";
-$a->strings["Contact has been unblocked"] = "Il contatto è stato sbloccato";
-$a->strings["Contact has been ignored"] = "Il contatto è ignorato";
-$a->strings["Contact has been unignored"] = "Il contatto non è più ignorato";
-$a->strings["Contact has been archived"] = "Il contatto è stato archiviato";
-$a->strings["Contact has been unarchived"] = "Il contatto è stato dearchiviato";
-$a->strings["Do you really want to delete this contact?"] = "Vuoi veramente cancellare questo contatto?";
+$a->strings["toggle mobile"] = "commuta tema mobile";
+$a->strings["Delete this item?"] = "Cancellare questo elemento?";
+$a->strings["Comment"] = "Commento";
+$a->strings["show more"] = "mostra di più";
+$a->strings["show fewer"] = "mostra di meno";
+$a->strings["Update %s failed. See error logs."] = "aggiornamento %s fallito. Guarda i log di errore.";
+$a->strings["Create a New Account"] = "Crea un nuovo account";
+$a->strings["Register"] = "Registrati";
+$a->strings["Logout"] = "Esci";
+$a->strings["Login"] = "Accedi";
+$a->strings["Nickname or Email address: "] = "Nome utente o indirizzo email: ";
+$a->strings["Password: "] = "Password: ";
+$a->strings["Remember me"] = "Ricordati di me";
+$a->strings["Or login using OpenID: "] = "O entra con OpenID:";
+$a->strings["Forgot your password?"] = "Hai dimenticato la password?";
+$a->strings["Password Reset"] = "Reimpostazione password";
+$a->strings["Website Terms of Service"] = "Condizioni di servizio del sito web ";
+$a->strings["terms of service"] = "condizioni del servizio";
+$a->strings["Website Privacy Policy"] = "Politiche di privacy del sito";
+$a->strings["privacy policy"] = "politiche di privacy";
+$a->strings["Requested account is not available."] = "L'account richiesto non è disponibile.";
+$a->strings["Requested profile is not available."] = "Profilo richiesto non disponibile.";
+$a->strings["Edit profile"] = "Modifica il profilo";
+$a->strings["Connect"] = "Connetti";
+$a->strings["Message"] = "Messaggio";
+$a->strings["Profiles"] = "Profili";
+$a->strings["Manage/edit profiles"] = "Gestisci/modifica i profili";
+$a->strings["Change profile photo"] = "Cambia la foto del profilo";
+$a->strings["Create New Profile"] = "Crea un nuovo profilo";
+$a->strings["Profile Image"] = "Immagine del Profilo";
+$a->strings["visible to everybody"] = "visibile a tutti";
+$a->strings["Edit visibility"] = "Modifica visibilità";
+$a->strings["Location:"] = "Posizione:";
+$a->strings["Gender:"] = "Genere:";
+$a->strings["Status:"] = "Stato:";
+$a->strings["Homepage:"] = "Homepage:";
+$a->strings["About:"] = "Informazioni:";
+$a->strings["Network:"] = "Rete:";
+$a->strings["g A l F d"] = "g A l d F";
+$a->strings["F d"] = "d F";
+$a->strings["[today]"] = "[oggi]";
+$a->strings["Birthday Reminders"] = "Promemoria compleanni";
+$a->strings["Birthdays this week:"] = "Compleanni questa settimana:";
+$a->strings["[No description]"] = "[Nessuna descrizione]";
+$a->strings["Event Reminders"] = "Promemoria";
+$a->strings["Events this week:"] = "Eventi di questa settimana:";
+$a->strings["Status"] = "Stato";
+$a->strings["Status Messages and Posts"] = "Messaggi di stato e post";
+$a->strings["Profile Details"] = "Dettagli del profilo";
+$a->strings["Photo Albums"] = "Album foto";
+$a->strings["Videos"] = "Video";
+$a->strings["Events and Calendar"] = "Eventi e calendario";
+$a->strings["Personal Notes"] = "Note personali";
+$a->strings["Only You Can See This"] = "Solo tu puoi vedere questo";
+$a->strings["General Features"] = "Funzionalità generali";
+$a->strings["Multiple Profiles"] = "Profili multipli";
+$a->strings["Ability to create multiple profiles"] = "Possibilità di creare profili multipli";
+$a->strings["Post Composition Features"] = "Funzionalità di composizione dei post";
+$a->strings["Richtext Editor"] = "Editor visuale";
+$a->strings["Enable richtext editor"] = "Abilita l'editor visuale";
+$a->strings["Post Preview"] = "Anteprima dei post";
+$a->strings["Allow previewing posts and comments before publishing them"] = "Permetti di avere un'anteprima di messaggi e commenti prima di pubblicarli";
+$a->strings["Auto-mention Forums"] = "Auto-cita i Forum";
+$a->strings["Add/remove mention when a fourm page is selected/deselected in ACL window."] = "Aggiunge o rimuove una citazione quando un forum è selezionato o deselezionato nella finestra dei permessi.";
+$a->strings["Network Sidebar Widgets"] = "Widget della barra laterale nella pagina Rete";
+$a->strings["Search by Date"] = "Cerca per data";
+$a->strings["Ability to select posts by date ranges"] = "Permette di filtrare i post per data";
+$a->strings["Group Filter"] = "Filtra gruppi";
+$a->strings["Enable widget to display Network posts only from selected group"] = "Abilita il widget per filtrare i post solo per il gruppo selezionato";
+$a->strings["Network Filter"] = "Filtro reti";
+$a->strings["Enable widget to display Network posts only from selected network"] = "Abilita il widget per mostare i post solo per la rete selezionata";
+$a->strings["Saved Searches"] = "Ricerche salvate";
+$a->strings["Save search terms for re-use"] = "Salva i termini cercati per riutilizzarli";
+$a->strings["Network Tabs"] = "Schede pagina Rete";
+$a->strings["Network Personal Tab"] = "Scheda Personali";
+$a->strings["Enable tab to display only Network posts that you've interacted on"] = "Abilita la scheda per mostrare solo i post a cui hai partecipato";
+$a->strings["Network New Tab"] = "Scheda Nuovi";
+$a->strings["Enable tab to display only new Network posts (from the last 12 hours)"] = "Abilita la scheda per mostrare solo i post nuovi (nelle ultime 12 ore)";
+$a->strings["Network Shared Links Tab"] = "Scheda Link Condivisi";
+$a->strings["Enable tab to display only Network posts with links in them"] = "Abilita la scheda per mostrare solo i post che contengono link";
+$a->strings["Post/Comment Tools"] = "Strumenti per messaggi/commenti";
+$a->strings["Multiple Deletion"] = "Eliminazione multipla";
+$a->strings["Select and delete multiple posts/comments at once"] = "Seleziona ed elimina vari messagi e commenti in una volta sola";
+$a->strings["Edit Sent Posts"] = "Modifica i post inviati";
+$a->strings["Edit and correct posts and comments after sending"] = "Modifica e correggi messaggi e commenti dopo averli inviati";
+$a->strings["Tagging"] = "Aggiunta tag";
+$a->strings["Ability to tag existing posts"] = "Permette di aggiungere tag ai post già esistenti";
+$a->strings["Post Categories"] = "Cateorie post";
+$a->strings["Add categories to your posts"] = "Aggiungi categorie ai tuoi post";
+$a->strings["Saved Folders"] = "Cartelle Salvate";
+$a->strings["Ability to file posts under folders"] = "Permette di archiviare i post in cartelle";
+$a->strings["Dislike Posts"] = "Non mi piace";
+$a->strings["Ability to dislike posts/comments"] = "Permetti di inviare \"non mi piace\" ai messaggi";
+$a->strings["Star Posts"] = "Post preferiti";
+$a->strings["Ability to mark special posts with a star indicator"] = "Permette di segnare i post preferiti con una stella";
+$a->strings["Mute Post Notifications"] = "Silenzia le notifiche di nuovi post";
+$a->strings["Ability to mute notifications for a thread"] = "Permette di silenziare le notifiche di nuovi post in una discussione";
+$a->strings["%s's birthday"] = "Compleanno di %s";
+$a->strings["Happy Birthday %s"] = "Buon compleanno %s";
+$a->strings["[Name Withheld]"] = "[Nome Nascosto]";
+$a->strings["Item not found."] = "Elemento non trovato.";
+$a->strings["Do you really want to delete this item?"] = "Vuoi veramente cancellare questo elemento?";
 $a->strings["Yes"] = "Si";
 $a->strings["Cancel"] = "Annulla";
-$a->strings["Contact has been removed."] = "Il contatto è stato rimosso.";
-$a->strings["You are mutual friends with %s"] = "Sei amico reciproco con %s";
-$a->strings["You are sharing with %s"] = "Stai condividendo con %s";
-$a->strings["%s is sharing with you"] = "%s sta condividendo con te";
-$a->strings["Private communications are not available for this contact."] = "Le comunicazioni private non sono disponibili per questo contatto.";
-$a->strings["Never"] = "Mai";
-$a->strings["(Update was successful)"] = "(L'aggiornamento è stato completato)";
-$a->strings["(Update was not successful)"] = "(L'aggiornamento non è stato completato)";
-$a->strings["Suggest friends"] = "Suggerisci amici";
-$a->strings["Network type: %s"] = "Tipo di rete: %s";
+$a->strings["Archives"] = "Archivi";
+$a->strings["A deleted group with this name was revived. Existing item permissions <strong>may</strong> apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "Un gruppo eliminato con questo nome è stato ricreato. I permessi  esistenti su un elemento <strong>possono</strong> essere applicati a questo gruppo e tutti i membri futuri. Se questo non è ciò che si intende, si prega di creare un altro gruppo con un nome diverso.";
+$a->strings["Default privacy group for new contacts"] = "Gruppo predefinito per i nuovi contatti";
+$a->strings["Everybody"] = "Tutti";
+$a->strings["edit"] = "modifica";
+$a->strings["Groups"] = "Gruppi";
+$a->strings["Edit group"] = "Modifica gruppo";
+$a->strings["Create a new group"] = "Crea un nuovo gruppo";
+$a->strings["Group Name: "] = "Nome del gruppo:";
+$a->strings["Contacts not in any group"] = "Contatti in nessun gruppo.";
+$a->strings["add"] = "aggiungi";
+$a->strings["Wall Photos"] = "Foto della bacheca";
+$a->strings["Cannot locate DNS info for database server '%s'"] = "Non trovo le informazioni DNS per il database server '%s'";
+$a->strings["Add New Contact"] = "Aggiungi nuovo contatto";
+$a->strings["Enter address or web location"] = "Inserisci posizione o indirizzo web";
+$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Esempio: bob@example.com, http://example.com/barbara";
+$a->strings["%d invitation available"] = array(
+       0 => "%d invito disponibile",
+       1 => "%d inviti disponibili",
+);
+$a->strings["Find People"] = "Trova persone";
+$a->strings["Enter name or interest"] = "Inserisci un nome o un interesse";
+$a->strings["Connect/Follow"] = "Connetti/segui";
+$a->strings["Examples: Robert Morgenstein, Fishing"] = "Esempi: Mario Rossi, Pesca";
+$a->strings["Find"] = "Trova";
+$a->strings["Random Profile"] = "Profilo causale";
+$a->strings["Networks"] = "Reti";
+$a->strings["All Networks"] = "Tutte le Reti";
+$a->strings["Everything"] = "Tutto";
+$a->strings["Categories"] = "Categorie";
 $a->strings["%d contact in common"] = array(
        0 => "%d contatto in comune",
        1 => "%d contatti in comune",
 );
-$a->strings["View all contacts"] = "Vedi tutti i contatti";
-$a->strings["Unblock"] = "Sblocca";
-$a->strings["Block"] = "Blocca";
-$a->strings["Toggle Blocked status"] = "Inverti stato \"Blocca\"";
-$a->strings["Unignore"] = "Non ignorare";
-$a->strings["Ignore"] = "Ignora";
-$a->strings["Toggle Ignored status"] = "Inverti stato \"Ignora\"";
-$a->strings["Unarchive"] = "Dearchivia";
-$a->strings["Archive"] = "Archivia";
-$a->strings["Toggle Archive status"] = "Inverti stato \"Archiviato\"";
-$a->strings["Repair"] = "Ripara";
-$a->strings["Advanced Contact Settings"] = "Impostazioni avanzate Contatto";
-$a->strings["Communications lost with this contact!"] = "Comunicazione con questo contatto persa!";
-$a->strings["Contact Editor"] = "Editor dei Contatti";
-$a->strings["Submit"] = "Invia";
-$a->strings["Profile Visibility"] = "Visibilità del profilo";
-$a->strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Seleziona il profilo che vuoi mostrare a %s quando visita il tuo profilo in modo sicuro.";
-$a->strings["Contact Information / Notes"] = "Informazioni / Note sul contatto";
-$a->strings["Edit contact notes"] = "Modifica note contatto";
-$a->strings["Visit %s's profile [%s]"] = "Visita il profilo di %s [%s]";
-$a->strings["Block/Unblock contact"] = "Blocca/Sblocca contatto";
-$a->strings["Ignore contact"] = "Ignora il contatto";
-$a->strings["Repair URL settings"] = "Impostazioni riparazione URL";
-$a->strings["View conversations"] = "Vedi conversazioni";
-$a->strings["Delete contact"] = "Rimuovi contatto";
-$a->strings["Last update:"] = "Ultimo aggiornamento:";
-$a->strings["Update public posts"] = "Aggiorna messaggi pubblici";
-$a->strings["Update now"] = "Aggiorna adesso";
-$a->strings["Currently blocked"] = "Bloccato";
-$a->strings["Currently ignored"] = "Ignorato";
-$a->strings["Currently archived"] = "Al momento archiviato";
-$a->strings["Hide this contact from others"] = "Nascondi questo contatto agli altri";
-$a->strings["Replies/likes to your public posts <strong>may</strong> still be visible"] = "Risposte ai tuoi post pubblici <strong>possono</strong> essere comunque visibili";
-$a->strings["Notification for new posts"] = "Notifica per i nuovi messaggi";
-$a->strings["Send a notification of every new post of this contact"] = "Invia una notifica per ogni nuovo messaggio di questo contatto";
-$a->strings["Fetch further information for feeds"] = "Recupera maggiori infomazioni per i feed";
-$a->strings["Disabled"] = "";
-$a->strings["Fetch information"] = "";
-$a->strings["Fetch information and keywords"] = "";
-$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"] = "Suggerimenti";
-$a->strings["Suggest potential friends"] = "Suggerisci potenziali amici";
-$a->strings["All Contacts"] = "Tutti i contatti";
-$a->strings["Show all contacts"] = "Mostra tutti i contatti";
-$a->strings["Unblocked"] = "Sbloccato";
-$a->strings["Only show unblocked contacts"] = "Mostra solo contatti non bloccati";
-$a->strings["Blocked"] = "Bloccato";
-$a->strings["Only show blocked contacts"] = "Mostra solo contatti bloccati";
-$a->strings["Ignored"] = "Ignorato";
-$a->strings["Only show ignored contacts"] = "Mostra solo contatti ignorati";
-$a->strings["Archived"] = "Achiviato";
-$a->strings["Only show archived contacts"] = "Mostra solo contatti archiviati";
-$a->strings["Hidden"] = "Nascosto";
-$a->strings["Only show hidden contacts"] = "Mostra solo contatti nascosti";
-$a->strings["Mutual Friendship"] = "Amicizia reciproca";
-$a->strings["is a fan of yours"] = "è un tuo fan";
-$a->strings["you are a fan of"] = "sei un fan di";
-$a->strings["Edit contact"] = "Modifca contatto";
-$a->strings["Contacts"] = "Contatti";
-$a->strings["Search your contacts"] = "Cerca nei tuoi contatti";
-$a->strings["Finding: "] = "Ricerca: ";
-$a->strings["Find"] = "Trova";
-$a->strings["Update"] = "Aggiorna";
+$a->strings["Friendica Notification"] = "Notifica Friendica";
+$a->strings["Thank You,"] = "Grazie,";
+$a->strings["%s Administrator"] = "Amministratore %s";
+$a->strings["noreply"] = "nessuna risposta";
+$a->strings["%s <!item_type!>"] = "%s <!item_type!>";
+$a->strings["[Friendica:Notify] New mail received at %s"] = "[Friendica:Notifica] Nuovo messaggio privato ricevuto su %s";
+$a->strings["%1\$s sent you a new private message at %2\$s."] = "%1\$s ti ha inviato un nuovo messaggio privato su %2\$s.";
+$a->strings["%1\$s sent you %2\$s."] = "%1\$s ti ha inviato %2\$s";
+$a->strings["a private message"] = "un messaggio privato";
+$a->strings["Please visit %s to view and/or reply to your private messages."] = "Visita %s per vedere e/o rispodere ai tuoi messaggi privati.";
+$a->strings["%1\$s commented on [url=%2\$s]a %3\$s[/url]"] = "%1\$s ha commentato [url=%2\$s]%3\$s[/url]";
+$a->strings["%1\$s commented on [url=%2\$s]%3\$s's %4\$s[/url]"] = "%1\$s ha commentato [url=%2\$s]%4\$s di %3\$s[/url]";
+$a->strings["%1\$s commented on [url=%2\$s]your %3\$s[/url]"] = "%1\$s ha commentato un [url=%2\$s]tuo %3\$s[/url]";
+$a->strings["[Friendica:Notify] Comment to conversation #%1\$d by %2\$s"] = "[Friendica:Notifica] Commento di %2\$s alla conversazione #%1\$d";
+$a->strings["%s commented on an item/conversation you have been following."] = "%s ha commentato un elemento che stavi seguendo.";
+$a->strings["Please visit %s to view and/or reply to the conversation."] = "Visita %s per vedere e/o commentare la conversazione";
+$a->strings["[Friendica:Notify] %s posted to your profile wall"] = "[Friendica:Notifica] %s ha scritto sulla tua bacheca";
+$a->strings["%1\$s posted to your profile wall at %2\$s"] = "%1\$s ha scritto sulla tua bacheca su %2\$s";
+$a->strings["%1\$s posted to [url=%2\$s]your wall[/url]"] = "%1\$s ha inviato un messaggio sulla [url=%2\$s]tua bacheca[/url]";
+$a->strings["[Friendica:Notify] %s tagged you"] = "[Friendica:Notifica] %s ti ha taggato";
+$a->strings["%1\$s tagged you at %2\$s"] = "%1\$s ti ha taggato su %2\$s";
+$a->strings["%1\$s [url=%2\$s]tagged you[/url]."] = "%1\$s [url=%2\$s]ti ha taggato[/url].";
+$a->strings["[Friendica:Notify] %s shared a new post"] = "[Friendica:Notifica] %s ha condiviso un nuovo messaggio";
+$a->strings["%1\$s shared a new post at %2\$s"] = "%1\$s ha condiviso un nuovo messaggio su %2\$s";
+$a->strings["%1\$s [url=%2\$s]shared a post[/url]."] = "%1\$s [url=%2\$s]ha condiviso un messaggio[/url].";
+$a->strings["[Friendica:Notify] %1\$s poked you"] = "[Friendica:Notifica] %1\$s ti ha stuzzicato";
+$a->strings["%1\$s poked you at %2\$s"] = "%1\$s ti ha stuzzicato su %2\$s";
+$a->strings["%1\$s [url=%2\$s]poked you[/url]."] = "%1\$s [url=%2\$s]ti ha stuzzicato[/url].";
+$a->strings["[Friendica:Notify] %s tagged your post"] = "[Friendica:Notifica] %s ha taggato un tuo messaggio";
+$a->strings["%1\$s tagged your post at %2\$s"] = "%1\$s ha taggato il tuo post su %2\$s";
+$a->strings["%1\$s tagged [url=%2\$s]your post[/url]"] = "%1\$s ha taggato [url=%2\$s]il tuo post[/url]";
+$a->strings["[Friendica:Notify] Introduction received"] = "[Friendica:Notifica] Hai ricevuto una presentazione";
+$a->strings["You've received an introduction from '%1\$s' at %2\$s"] = "Hai ricevuto un'introduzione da '%1\$s' su %2\$s";
+$a->strings["You've received [url=%1\$s]an introduction[/url] from %2\$s."] = "Hai ricevuto [url=%1\$s]un'introduzione[/url] da %2\$s.";
+$a->strings["You may visit their profile at %s"] = "Puoi visitare il suo profilo presso %s";
+$a->strings["Please visit %s to approve or reject the introduction."] = "Visita %s per approvare o rifiutare la presentazione.";
+$a->strings["[Friendica:Notify] A new person is sharing with you"] = "[Friendica:Notifica] Una nuova persona sta condividendo con te";
+$a->strings["%1\$s is sharing with you at %2\$s"] = "%1\$s sta condividendo con te su %2\$s";
+$a->strings["[Friendica:Notify] You have a new follower"] = "[Friendica:Notifica] Una nuova persona ti segue";
+$a->strings["You have a new follower at %2\$s : %1\$s"] = "Un nuovo utente ha iniziato a seguirti su %2\$s : %1\$s";
+$a->strings["[Friendica:Notify] Friend suggestion received"] = "[Friendica:Notifica] Hai ricevuto un suggerimento di amicizia";
+$a->strings["You've received a friend suggestion from '%1\$s' at %2\$s"] = "Hai ricevuto un suggerimento di amicizia da '%1\$s' su %2\$s";
+$a->strings["You've received [url=%1\$s]a friend suggestion[/url] for %2\$s from %3\$s."] = "Hai ricevuto [url=%1\$s]un suggerimento di amicizia[/url] per %2\$s su %3\$s";
+$a->strings["Name:"] = "Nome:";
+$a->strings["Photo:"] = "Foto:";
+$a->strings["Please visit %s to approve or reject the suggestion."] = "Visita %s per approvare o rifiutare il suggerimento.";
+$a->strings["[Friendica:Notify] Connection accepted"] = "[Friendica:Notifica] Connessione accettata";
+$a->strings["'%1\$s' has acepted your connection request at %2\$s"] = "'%1\$s' ha accettato la tua richiesta di connessione su %2\$s";
+$a->strings["%2\$s has accepted your [url=%1\$s]connection request[/url]."] = "%2\$s ha accettato la tua [url=%1\$s]richiesta di connessione[/url]";
+$a->strings["You are now mutual friends and may exchange status updates, photos, and email\n\twithout restriction."] = "Ora siete connessi reciprocamente e potete scambiarvi aggiornamenti di stato, foto e email\nsenza restrizioni";
+$a->strings["Please visit %s  if you wish to make any changes to this relationship."] = "Visita %s se desideri modificare questo collegamento.";
+$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' ha scelto di accettarti come \"fan\", il che limita alcune forme di comunicazione, come i messaggi privati, e alcune possibiltà di interazione col profilo. Se è una pagina di una comunità o di una celebrità, queste impostazioni sono state applicate automaticamente.";
+$a->strings["'%1\$s' may choose to extend this into a two-way or more permissive relationship in the future. "] = "'%1\$s' può decidere in futuro di estendere la connessione in una reciproca o più permissiva.";
+$a->strings["[Friendica System:Notify] registration request"] = "[Friendica System:Notifica] richiesta di registrazione";
+$a->strings["You've received a registration request from '%1\$s' at %2\$s"] = "Hai ricevuto una richiesta di registrazione da '%1\$s' su %2\$s";
+$a->strings["You've received a [url=%1\$s]registration request[/url] from %2\$s."] = "Hai ricevuto una [url=%1\$s]richiesta di registrazione[/url] da %2\$s.";
+$a->strings["Full Name:\t%1\$s\\nSite Location:\t%2\$s\\nLogin Name:\t%3\$s (%4\$s)"] = "Nome completo: %1\$s\nIndirizzo del sito: %2\$s\nNome utente: %3\$s (%4\$s)";
+$a->strings["Please visit %s to approve or reject the request."] = "Visita %s per approvare o rifiutare la richiesta.";
+$a->strings["User not found."] = "Utente non trovato.";
+$a->strings["Daily posting limit of %d posts reached. The post was rejected."] = "Limite giornaliero di %d messaggi raggiunto. Il messaggio è stato rifiutato";
+$a->strings["Weekly posting limit of %d posts reached. The post was rejected."] = "Limite settimanale di %d messaggi raggiunto. Il messaggio è stato rifiutato";
+$a->strings["Monthly posting limit of %d posts reached. The post was rejected."] = "Limite mensile di %d messaggi raggiunto. Il messaggio è stato rifiutato";
+$a->strings["There is no status with this id."] = "Non c'è nessuno status con questo id.";
+$a->strings["There is no conversation with this id."] = "Non c'è nessuna conversazione con questo id";
+$a->strings["Invalid request."] = "Richiesta non valida.";
+$a->strings["Invalid item."] = "Elemento non valido.";
+$a->strings["Invalid action. "] = "Azione non valida.";
+$a->strings["DB error"] = "Errore database";
+$a->strings["view full size"] = "vedi a schermo intero";
+$a->strings[" on Last.fm"] = "su Last.fm";
+$a->strings["Full Name:"] = "Nome completo:";
+$a->strings["j F, Y"] = "j F Y";
+$a->strings["j F"] = "j F";
+$a->strings["Birthday:"] = "Compleanno:";
+$a->strings["Age:"] = "Età:";
+$a->strings["for %1\$d %2\$s"] = "per %1\$d %2\$s";
+$a->strings["Sexual Preference:"] = "Preferenze sessuali:";
+$a->strings["Hometown:"] = "Paese natale:";
+$a->strings["Tags:"] = "Tag:";
+$a->strings["Political Views:"] = "Orientamento politico:";
+$a->strings["Religion:"] = "Religione:";
+$a->strings["Hobbies/Interests:"] = "Hobby/Interessi:";
+$a->strings["Likes:"] = "Mi piace:";
+$a->strings["Dislikes:"] = "Non mi piace:";
+$a->strings["Contact information and Social Networks:"] = "Informazioni su contatti e social network:";
+$a->strings["Musical interests:"] = "Interessi musicali:";
+$a->strings["Books, literature:"] = "Libri, letteratura:";
+$a->strings["Television:"] = "Televisione:";
+$a->strings["Film/dance/culture/entertainment:"] = "Film/danza/cultura/intrattenimento:";
+$a->strings["Love/Romance:"] = "Amore:";
+$a->strings["Work/employment:"] = "Lavoro:";
+$a->strings["School/education:"] = "Scuola:";
+$a->strings["Nothing new here"] = "Niente di nuovo qui";
+$a->strings["Clear notifications"] = "Pulisci le notifiche";
+$a->strings["End this session"] = "Finisci questa sessione";
+$a->strings["Your videos"] = "I tuoi video";
+$a->strings["Your personal notes"] = "Le tue note personali";
+$a->strings["Sign in"] = "Entra";
+$a->strings["Home Page"] = "Home Page";
+$a->strings["Create an account"] = "Crea un account";
+$a->strings["Help"] = "Guida";
+$a->strings["Help and documentation"] = "Guida e documentazione";
+$a->strings["Apps"] = "Applicazioni";
+$a->strings["Addon applications, utilities, games"] = "Applicazioni, utilità e giochi aggiuntivi";
+$a->strings["Search"] = "Cerca";
+$a->strings["Search site content"] = "Cerca nel contenuto del sito";
+$a->strings["Conversations on this site"] = "Conversazioni su questo sito";
+$a->strings["Conversations on the network"] = "Conversazioni nella rete";
+$a->strings["Directory"] = "Elenco";
+$a->strings["People directory"] = "Elenco delle persone";
+$a->strings["Information"] = "Informazioni";
+$a->strings["Information about this friendica instance"] = "Informazioni su questo server friendica";
+$a->strings["Network"] = "Rete";
+$a->strings["Conversations from your friends"] = "Conversazioni dai tuoi amici";
+$a->strings["Network Reset"] = "Reset pagina Rete";
+$a->strings["Load Network page with no filters"] = "Carica la pagina Rete senza nessun filtro";
+$a->strings["Introductions"] = "Presentazioni";
+$a->strings["Friend Requests"] = "Richieste di amicizia";
+$a->strings["Notifications"] = "Notifiche";
+$a->strings["See all notifications"] = "Vedi tutte le notifiche";
+$a->strings["Mark all system notifications seen"] = "Segna tutte le notifiche come viste";
+$a->strings["Messages"] = "Messaggi";
+$a->strings["Private mail"] = "Posta privata";
+$a->strings["Inbox"] = "In arrivo";
+$a->strings["Outbox"] = "Inviati";
+$a->strings["New Message"] = "Nuovo messaggio";
+$a->strings["Manage"] = "Gestisci";
+$a->strings["Manage other pages"] = "Gestisci altre pagine";
+$a->strings["Delegations"] = "Delegazioni";
+$a->strings["Delegate Page Management"] = "Gestione delegati per la pagina";
+$a->strings["Account settings"] = "Parametri account";
+$a->strings["Manage/Edit Profiles"] = "Gestisci/Modifica i profili";
+$a->strings["Manage/edit friends and contacts"] = "Gestisci/modifica amici e contatti";
+$a->strings["Admin"] = "Amministrazione";
+$a->strings["Site setup and configuration"] = "Configurazione del sito";
+$a->strings["Navigation"] = "Navigazione";
+$a->strings["Site map"] = "Mappa del sito";
+$a->strings["Click here to upgrade."] = "Clicca qui per aggiornare.";
+$a->strings["This action exceeds the limits set by your subscription plan."] = "Questa azione eccede i limiti del tuo piano di sottoscrizione.";
+$a->strings["This action is not available under your subscription plan."] = "Questa azione non è disponibile nel tuo piano di sottoscrizione.";
+$a->strings["Disallowed profile URL."] = "Indirizzo profilo non permesso.";
+$a->strings["Connect URL missing."] = "URL di connessione mancante.";
+$a->strings["This site is not configured to allow communications with other networks."] = "Questo sito non è configurato per permettere la comunicazione con altri network.";
+$a->strings["No compatible communication protocols or feeds were discovered."] = "Non sono stati trovati protocolli di comunicazione o feed compatibili.";
+$a->strings["The profile address specified does not provide adequate information."] = "L'indirizzo del profilo specificato non fornisce adeguate informazioni.";
+$a->strings["An author or name was not found."] = "Non è stato trovato un nome o un autore";
+$a->strings["No browser URL could be matched to this address."] = "Nessun URL puo' essere associato a questo indirizzo.";
+$a->strings["Unable to match @-style Identity Address with a known protocol or email contact."] = "Impossibile l'indirizzo identità con un protocollo conosciuto o con un contatto email.";
+$a->strings["Use mailto: in front of address to force email check."] = "Usa \"mailto:\" davanti all'indirizzo per forzare un controllo nelle email.";
+$a->strings["The profile address specified belongs to a network which has been disabled on this site."] = "L'indirizzo del profilo specificato appartiene a un network che è stato disabilitato su questo sito.";
+$a->strings["Limited profile. This person will be unable to receive direct/personal notifications from you."] = "Profilo limitato. Questa persona non sarà in grado di ricevere notifiche personali da te.";
+$a->strings["Unable to retrieve contact information."] = "Impossibile recuperare informazioni sul contatto.";
+$a->strings["following"] = "segue";
+$a->strings["Error decoding account file"] = "Errore decodificando il file account";
+$a->strings["Error! No version data in file! This is not a Friendica account file?"] = "Errore! Nessuna informazione di versione nel file! Potrebbe non essere un file account di Friendica?";
+$a->strings["Error! Cannot check nickname"] = "Errore! Non posso controllare il nickname";
+$a->strings["User '%s' already exists on this server!"] = "L'utente '%s' esiste già su questo server!";
+$a->strings["User creation error"] = "Errore creando l'utente";
+$a->strings["User profile creation error"] = "Errore creando il profile dell'utente";
+$a->strings["%d contact not imported"] = array(
+       0 => "%d contatto non importato",
+       1 => "%d contatti non importati",
+);
+$a->strings["Done. You can now login with your username and password"] = "Fatto. Ora puoi entrare con il tuo nome utente e la tua password";
+$a->strings["l F d, Y \\@ g:i A"] = "l d F Y \\@ G:i";
+$a->strings["Starts:"] = "Inizia:";
+$a->strings["Finishes:"] = "Finisce:";
+$a->strings["stopped following"] = "tolto dai seguiti";
+$a->strings["Poke"] = "Stuzzica";
+$a->strings["View Status"] = "Visualizza stato";
+$a->strings["View Profile"] = "Visualizza profilo";
+$a->strings["View Photos"] = "Visualizza foto";
+$a->strings["Network Posts"] = "Post della Rete";
+$a->strings["Edit Contact"] = "Modifica contatti";
+$a->strings["Drop Contact"] = "Rimuovi contatto";
+$a->strings["Send PM"] = "Invia messaggio privato";
+$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."] = "\nGli sviluppatori di Friendica hanno rilasciato l'aggiornamento %s\nrecentemente, ma quando ho provato a installarlo, qualcosa è \nandato terribilmente storto.\nBisogna sistemare le cose e non posso farlo da solo.\nContatta uno sviluppatore se non puoi aiutarmi da solo. Il mio database potrebbe essere invalido.";
+$a->strings["The error message is\n[pre]%s[/pre]"] = "Il messaggio di errore è\n[pre]%s[/pre]";
+$a->strings["Errors encountered creating database tables."] = "La creazione delle tabelle del database ha generato errori.";
+$a->strings["Errors encountered performing database changes."] = "Riscontrati errori applicando le modifiche al database.";
+$a->strings["Miscellaneous"] = "Varie";
+$a->strings["year"] = "anno";
+$a->strings["month"] = "mese";
+$a->strings["day"] = "giorno";
+$a->strings["never"] = "mai";
+$a->strings["less than a second ago"] = "meno di un secondo fa";
+$a->strings["years"] = "anni";
+$a->strings["months"] = "mesi";
+$a->strings["week"] = "settimana";
+$a->strings["weeks"] = "settimane";
+$a->strings["days"] = "giorni";
+$a->strings["hour"] = "ora";
+$a->strings["hours"] = "ore";
+$a->strings["minute"] = "minuto";
+$a->strings["minutes"] = "minuti";
+$a->strings["second"] = "secondo";
+$a->strings["seconds"] = "secondi";
+$a->strings["%1\$d %2\$s ago"] = "%1\$d %2\$s fa";
+$a->strings["[no subject]"] = "[nessun oggetto]";
+$a->strings["(no subject)"] = "(nessun oggetto)";
+$a->strings["Unknown | Not categorised"] = "Sconosciuto | non categorizzato";
+$a->strings["Block immediately"] = "Blocca immediatamente";
+$a->strings["Shady, spammer, self-marketer"] = "Shady, spammer, self-marketer";
+$a->strings["Known to me, but no opinion"] = "Lo conosco, ma non ho un'opinione particolare";
+$a->strings["OK, probably harmless"] = "E' ok, probabilmente innocuo";
+$a->strings["Reputable, has my trust"] = "Rispettabile, ha la mia fiducia";
+$a->strings["Frequently"] = "Frequentemente";
+$a->strings["Hourly"] = "Ogni ora";
+$a->strings["Twice daily"] = "Due volte al dì";
+$a->strings["Daily"] = "Giornalmente";
+$a->strings["Weekly"] = "Settimanalmente";
+$a->strings["Monthly"] = "Mensilmente";
+$a->strings["Friendica"] = "Friendica";
+$a->strings["OStatus"] = "Ostatus";
+$a->strings["RSS/Atom"] = "RSS / Atom";
+$a->strings["Email"] = "Email";
+$a->strings["Diaspora"] = "Diaspora";
+$a->strings["Facebook"] = "Facebook";
+$a->strings["Zot!"] = "Zot!";
+$a->strings["LinkedIn"] = "LinkedIn";
+$a->strings["XMPP/IM"] = "XMPP/IM";
+$a->strings["MySpace"] = "MySpace";
+$a->strings["Google+"] = "Google+";
+$a->strings["pump.io"] = "pump.io";
+$a->strings["Twitter"] = "Twitter";
+$a->strings["Diaspora Connector"] = "Connettore Diaspora";
+$a->strings["Statusnet"] = "Statusnet";
+$a->strings["App.net"] = "App.net";
+$a->strings["%1\$s is now friends with %2\$s"] = "%1\$s e %2\$s adesso sono amici";
+$a->strings["Sharing notification from Diaspora network"] = "Notifica di condivisione dal network Diaspora*";
+$a->strings["Attachments:"] = "Allegati:";
+$a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "A %1\$s non piace %3\$s di %2\$s";
+$a->strings["%1\$s poked %2\$s"] = "%1\$s ha stuzzicato %2\$s";
+$a->strings["%1\$s is currently %2\$s"] = "%1\$s al momento è %2\$s";
+$a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s ha taggato %3\$s di %2\$s con %4\$s";
+$a->strings["post/item"] = "post/elemento";
+$a->strings["%1\$s marked %2\$s's %3\$s as favorite"] = "%1\$s ha segnato il/la %3\$s di %2\$s come preferito";
+$a->strings["Select"] = "Seleziona";
 $a->strings["Delete"] = "Rimuovi";
-$a->strings["No profile"] = "Nessun profilo";
-$a->strings["Manage Identities and/or Pages"] = "Gestisci indentità e/o pagine";
-$a->strings["Toggle between different identities or community/group pages which share your account details or which you have been granted \"manage\" permissions"] = "Cambia tra differenti identità o pagine comunità/gruppi che condividono il tuo account o per cui hai i permessi di gestione";
-$a->strings["Select an identity to manage: "] = "Seleziona un'identità da gestire:";
-$a->strings["Post successful."] = "Inviato!";
-$a->strings["Permission denied"] = "Permesso negato";
-$a->strings["Invalid profile identifier."] = "Indentificativo del profilo non valido.";
-$a->strings["Profile Visibility Editor"] = "Modifica visibilità del profilo";
-$a->strings["Profile"] = "Profilo";
-$a->strings["Click on a contact to add or remove."] = "Clicca su un contatto per aggiungerlo o rimuoverlo.";
-$a->strings["Visible To"] = "Visibile a";
-$a->strings["All Contacts (with secure profile access)"] = "Tutti i contatti (con profilo ad accesso sicuro)";
-$a->strings["Item not found."] = "Elemento non trovato.";
-$a->strings["Public access denied."] = "Accesso negato.";
-$a->strings["Access to this profile has been restricted."] = "L'accesso a questo profilo è stato limitato.";
-$a->strings["Item has been removed."] = "L'oggetto è stato rimosso.";
-$a->strings["Welcome to Friendica"] = "Benvenuto su Friendica";
-$a->strings["New Member Checklist"] = "Cose da fare per i Nuovi Utenti";
-$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."] = "Vorremmo offrirti qualche trucco e dei link alla guida per aiutarti ad avere un'esperienza divertente. Clicca su un qualsiasi elemento per visitare la relativa pagina. Un link a questa pagina sarà visibile nella tua home per due settimane dopo la tua registrazione.";
-$a->strings["Getting Started"] = "Come Iniziare";
-$a->strings["Friendica Walk-Through"] = "Friendica Passo-Passo";
-$a->strings["On your <em>Quick Start</em> page - find a brief introduction to your profile and network tabs, make some new connections, and find some groups to join."] = "Sulla tua pagina <em>Quick Start</em> - veloce introduzione alla tua pagina profilo e alla pagina Rete, fai qualche nuova amicizia, e trova qualche gruppo a cui unirti.";
-$a->strings["Settings"] = "Impostazioni";
-$a->strings["Go to Your Settings"] = "Vai alle tue Impostazioni";
-$a->strings["On your <em>Settings</em> page -  change your initial password. Also make a note of your Identity Address. This looks just like an email address - and will be useful in making friends on the free social web."] = "Nella tua pagina <em>Impostazioni</em> - cambia la tua password iniziale. Prendi anche nota del tuo Indirizzo Identità. Assomiglia a un indirizzo email e sarà utile per stringere amicizie nel web sociale libero.";
-$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."] = "Guarda le altre impostazioni, in particolare le impostazioni della privacy. Un profilo non pubblicato è come un numero di telefono non in elenco. In genere, dovresti pubblicare il tuo profilo - a meno che tutti i tuoi amici e potenziali tali sappiano esattamente come trovarti.";
-$a->strings["Upload Profile Photo"] = "Carica la foto del profilo";
-$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."] = "Carica una foto del profilo se non l'hai ancora fatto. Studi hanno mostrato che persone che hanno vere foto di se stessi hanno dieci volte più probabilità di fare amicizie rispetto alle persone che non ce l'hanno.";
-$a->strings["Edit Your Profile"] = "Modifica il tuo Profilo";
-$a->strings["Edit your <strong>default</strong> profile to your liking. Review the settings for hiding your list of friends and hiding the profile from unknown visitors."] = "Modifica il tuo profilo <strong>predefinito</strong> a piacimento. Rivedi le impostazioni per nascondere la tua lista di amici e nascondere il profilo ai visitatori sconosciuti.";
-$a->strings["Profile Keywords"] = "Parole chiave del profilo";
-$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."] = "Inserisci qualche parola chiave pubblica nel tuo profilo predefinito che descriva i tuoi interessi. Potremmo essere in grado di trovare altre persone con interessi similari e suggerirti delle amicizie.";
-$a->strings["Connecting"] = "Collegarsi";
-$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."] = "Autorizza il Facebook Connector se hai un account Facebook, e noi (opzionalmente) importeremo tuti i tuoi amici e le tue conversazioni da Facebook.";
-$a->strings["<em>If</em> this is your own personal server, installing the Facebook addon may ease your transition to the free social web."] = "<em>Se</em questo è il tuo server personale, installare il plugin per Facebook puo' aiutarti nella transizione verso il web sociale libero.";
-$a->strings["Importing Emails"] = "Importare le Email";
-$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"] = "Inserisci i tuoi dati di accesso all'email nella tua pagina Impostazioni Connettori se vuoi importare e interagire con amici o mailing list dalla tua casella di posta in arrivo";
-$a->strings["Go to Your Contacts Page"] = "Vai alla tua pagina Contatti";
-$a->strings["Your Contacts page is your gateway to managing friendships and connecting with friends on other networks. Typically you enter their address or site URL in the <em>Add New Contact</em> dialog."] = "La tua pagina Contatti è il mezzo per gestire le amicizie e collegarsi con amici su altre reti. Di solito, basta inserire l'indirizzo nel campo <em>Aggiungi Nuovo Contatto</em>";
-$a->strings["Go to Your Site's Directory"] = "Vai all'Elenco del tuo sito";
-$a->strings["The Directory page lets you find other people in this network or other federated sites. Look for a <em>Connect</em> or <em>Follow</em> link on their profile page. Provide your own Identity Address if requested."] = "La pagina Elenco ti permette di trovare altre persone in questa rete o in altri siti. Cerca un link <em>Connetti</em> o <em>Segui</em> nella loro pagina del profilo. Inserisci il tuo Indirizzo Identità, se richiesto.";
-$a->strings["Finding New People"] = "Trova nuove persone";
-$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."] = "Nel pannello laterale nella pagina \"Contatti\", ci sono diversi strumenti per trovare nuovi amici. Possiamo confrontare le persone per interessi, cercare le persone per nome e fornire suggerimenti basati sui tuoi contatti esistenti. Su un sito nuovo, i suggerimenti sono di solito presenti dopo 24 ore.";
-$a->strings["Groups"] = "Gruppi";
-$a->strings["Group Your Contacts"] = "Raggruppa i tuoi contatti";
-$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."] = "Quando avrai alcuni amici, organizzali in gruppi di conversazioni private dalla barra laterale della tua pagina Contatti. Potrai interagire privatamente con ogni gruppo nella tua pagina Rete";
-$a->strings["Why Aren't My Posts Public?"] = "Perchè i miei post non sono pubblici?";
-$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 rispetta la tua provacy. Per impostazione predefinita, i tuoi post sono mostrati solo alle persone che hai aggiunto come amici. Per maggiori informazioni guarda la sezione della guida dal link qui sopra.";
-$a->strings["Getting Help"] = "Ottenere Aiuto";
-$a->strings["Go to the Help Section"] = "Vai alla sezione Guida";
-$a->strings["Our <strong>help</strong> pages may be consulted for detail on other program features and resources."] = "Le nostre pagine della <strong>guida</strong> possono essere consultate per avere dettagli su altre caratteristiche del programma e altre risorse.";
-$a->strings["OpenID protocol error. No ID returned."] = "Errore protocollo OpenID. Nessun ID ricevuto.";
-$a->strings["Account not found and OpenID registration is not permitted on this site."] = "L'account non è stato trovato, e la registrazione via OpenID non è permessa su questo sito.";
-$a->strings["Login failed."] = "Accesso fallito.";
-$a->strings["Image uploaded but image cropping failed."] = "L'immagine è stata caricata, ma il non è stato possibile ritagliarla.";
-$a->strings["Profile Photos"] = "Foto del profilo";
-$a->strings["Image size reduction [%s] failed."] = "Il ridimensionamento del'immagine [%s] è fallito.";
-$a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Ricarica la pagina con shift+F5 o cancella la cache del browser se la nuova foto non viene mostrata immediatamente.";
-$a->strings["Unable to process image"] = "Impossibile elaborare l'immagine";
-$a->strings["Image exceeds size limit of %d"] = "La dimensione dell'immagine supera il limite di %d";
-$a->strings["Unable to process image."] = "Impossibile caricare l'immagine.";
-$a->strings["Upload File:"] = "Carica un file:";
-$a->strings["Select a profile:"] = "Seleziona un profilo:";
-$a->strings["Upload"] = "Carica";
-$a->strings["or"] = "o";
-$a->strings["skip this step"] = "salta questo passaggio";
-$a->strings["select a photo from your photo albums"] = "seleziona una foto dai tuoi album";
-$a->strings["Crop Image"] = "Ritaglia immagine";
-$a->strings["Please adjust the image cropping for optimum viewing."] = "Ritaglia l'imagine per una visualizzazione migliore.";
-$a->strings["Done Editing"] = "Finito";
-$a->strings["Image uploaded successfully."] = "Immagine caricata con successo.";
-$a->strings["Image upload failed."] = "Caricamento immagine fallito.";
-$a->strings["photo"] = "foto";
-$a->strings["status"] = "stato";
-$a->strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s sta seguendo %3\$s di %2\$s";
-$a->strings["Tag removed"] = "Tag rimosso";
-$a->strings["Remove Item Tag"] = "Rimuovi il tag";
-$a->strings["Select a tag to remove: "] = "Seleziona un tag da rimuovere: ";
-$a->strings["Remove"] = "Rimuovi";
+$a->strings["View %s's profile @ %s"] = "Vedi il profilo di %s @ %s";
+$a->strings["Categories:"] = "Categorie:";
+$a->strings["Filed under:"] = "Archiviato in:";
+$a->strings["%s from %s"] = "%s da %s";
+$a->strings["View in context"] = "Vedi nel contesto";
+$a->strings["Please wait"] = "Attendi";
+$a->strings["remove"] = "rimuovi";
+$a->strings["Delete Selected Items"] = "Cancella elementi selezionati";
+$a->strings["Follow Thread"] = "Segui la discussione";
+$a->strings["%s likes this."] = "Piace a %s.";
+$a->strings["%s doesn't like this."] = "Non piace a %s.";
+$a->strings["<span  %1\$s>%2\$d people</span> like this"] = "Piace a <span %1\$s>%2\$d persone</span>.";
+$a->strings["<span  %1\$s>%2\$d people</span> don't like this"] = "Non piace a <span %1\$s>%2\$d persone</span>.";
+$a->strings["and"] = "e";
+$a->strings[", and %d other people"] = "e altre %d persone";
+$a->strings["%s like this."] = "Piace a %s.";
+$a->strings["%s don't like this."] = "Non piace a %s.";
+$a->strings["Visible to <strong>everybody</strong>"] = "Visibile a <strong>tutti</strong>";
+$a->strings["Please enter a link URL:"] = "Inserisci l'indirizzo del link:";
+$a->strings["Please enter a video link/URL:"] = "Inserisci un collegamento video / URL:";
+$a->strings["Please enter an audio link/URL:"] = "Inserisci un collegamento audio / URL:";
+$a->strings["Tag term:"] = "Tag:";
 $a->strings["Save to Folder:"] = "Salva nella Cartella:";
-$a->strings["- select -"] = "- seleziona -";
+$a->strings["Where are you right now?"] = "Dove sei ora?";
+$a->strings["Delete item(s)?"] = "Cancellare questo elemento/i?";
+$a->strings["Post to Email"] = "Invia a email";
+$a->strings["Connectors disabled, since \"%s\" is enabled."] = "Connettore disabilitato, dato che \"%s\" è abilitato.";
+$a->strings["Hide your profile details from unknown viewers?"] = "Nascondi i dettagli del tuo profilo ai visitatori sconosciuti?";
+$a->strings["Share"] = "Condividi";
+$a->strings["Upload photo"] = "Carica foto";
+$a->strings["upload photo"] = "carica foto";
+$a->strings["Attach file"] = "Allega file";
+$a->strings["attach file"] = "allega file";
+$a->strings["Insert web link"] = "Inserisci link";
+$a->strings["web link"] = "link web";
+$a->strings["Insert video link"] = "Inserire collegamento video";
+$a->strings["video link"] = "link video";
+$a->strings["Insert audio link"] = "Inserisci collegamento audio";
+$a->strings["audio link"] = "link audio";
+$a->strings["Set your location"] = "La tua posizione";
+$a->strings["set location"] = "posizione";
+$a->strings["Clear browser location"] = "Rimuovi la localizzazione data dal browser";
+$a->strings["clear location"] = "canc. pos.";
+$a->strings["Set title"] = "Scegli un titolo";
+$a->strings["Categories (comma-separated list)"] = "Categorie (lista separata da virgola)";
+$a->strings["Permission settings"] = "Impostazioni permessi";
+$a->strings["permissions"] = "permessi";
+$a->strings["CC: email addresses"] = "CC: indirizzi email";
+$a->strings["Public post"] = "Messaggio pubblico";
+$a->strings["Example: bob@example.com, mary@example.com"] = "Esempio: bob@example.com, mary@example.com";
+$a->strings["Preview"] = "Anteprima";
+$a->strings["Post to Groups"] = "Invia ai Gruppi";
+$a->strings["Post to Contacts"] = "Invia ai Contatti";
+$a->strings["Private post"] = "Post privato";
+$a->strings["newer"] = "nuovi";
+$a->strings["older"] = "vecchi";
+$a->strings["prev"] = "prec";
+$a->strings["first"] = "primo";
+$a->strings["last"] = "ultimo";
+$a->strings["next"] = "succ";
+$a->strings["Loading more entries..."] = "Carico più elementi...";
+$a->strings["The end"] = "Fine";
+$a->strings["No contacts"] = "Nessun contatto";
+$a->strings["%d Contact"] = array(
+       0 => "%d contatto",
+       1 => "%d contatti",
+);
+$a->strings["View Contacts"] = "Visualizza i contatti";
 $a->strings["Save"] = "Salva";
-$a->strings["Contact added"] = "Contatto aggiunto";
-$a->strings["Unable to locate original post."] = "Impossibile trovare il messaggio originale.";
-$a->strings["Empty post discarded."] = "Messaggio vuoto scartato.";
-$a->strings["Wall Photos"] = "Foto della bacheca";
-$a->strings["System error. Post not saved."] = "Errore di sistema. Messaggio non salvato.";
-$a->strings["This message was sent to you by %s, a member of the Friendica social network."] = "Questo messaggio ti è stato inviato da %s, un membro del social network Friendica.";
-$a->strings["You may visit them online at %s"] = "Puoi visitarli online su %s";
-$a->strings["Please contact the sender by replying to this post if you do not wish to receive these messages."] = "Contatta il mittente rispondendo a questo post se non vuoi ricevere questi messaggi.";
-$a->strings["%s posted an update."] = "%s ha inviato un aggiornamento.";
-$a->strings["Group created."] = "Gruppo creato.";
-$a->strings["Could not create group."] = "Impossibile creare il gruppo.";
-$a->strings["Group not found."] = "Gruppo non trovato.";
-$a->strings["Group name changed."] = "Il nome del gruppo è cambiato.";
-$a->strings["Save Group"] = "Salva gruppo";
-$a->strings["Create a group of contacts/friends."] = "Crea un gruppo di amici/contatti.";
-$a->strings["Group Name: "] = "Nome del gruppo:";
-$a->strings["Group removed."] = "Gruppo rimosso.";
-$a->strings["Unable to remove group."] = "Impossibile rimuovere il gruppo.";
-$a->strings["Group Editor"] = "Modifica gruppo";
-$a->strings["Members"] = "Membri";
-$a->strings["You must be logged in to use addons. "] = "Devi aver effettuato il login per usare gli addons.";
-$a->strings["Applications"] = "Applicazioni";
-$a->strings["No installed applications."] = "Nessuna applicazione installata.";
-$a->strings["Profile not found."] = "Profilo non trovato.";
-$a->strings["Contact not found."] = "Contatto non trovato.";
-$a->strings["This may occasionally happen if contact was requested by both persons and it has already been approved."] = "Questo puo' accadere occasionalmente se la richiesta di contatto era stata inviata da entrambe le persone e  già approvata.";
-$a->strings["Response from remote site was not understood."] = "Errore di comunicazione con l'altro sito.";
-$a->strings["Unexpected response from remote site: "] = "La risposta dell'altro sito non può essere gestita: ";
-$a->strings["Confirmation completed successfully."] = "Conferma completata con successo.";
-$a->strings["Remote site reported: "] = "Il sito remoto riporta: ";
-$a->strings["Temporary failure. Please wait and try again."] = "Problema temporaneo. Attendi e riprova.";
-$a->strings["Introduction failed or was revoked."] = "La presentazione ha generato un errore o è stata revocata.";
-$a->strings["Unable to set contact photo."] = "Impossibile impostare la foto del contatto.";
-$a->strings["%1\$s is now friends with %2\$s"] = "%1\$s e %2\$s adesso sono amici";
-$a->strings["No user record found for '%s' "] = "Nessun utente trovato '%s'";
-$a->strings["Our site encryption key is apparently messed up."] = "La nostra chiave di criptazione del sito sembra essere corrotta.";
-$a->strings["Empty site URL was provided or URL could not be decrypted by us."] = "E' stato fornito un indirizzo vuoto o non possiamo decrittare l'indirizzo.";
-$a->strings["Contact record was not found for you on our site."] = "Il contatto non è stato trovato sul nostro sito.";
-$a->strings["Site public key not available in contact record for URL %s."] = "La chiave pubblica del sito non è disponibile per l'URL %s";
-$a->strings["The ID provided by your system is a duplicate on our system. It should work if you try again."] = "L'ID fornito dal tuo sistema è duplicato sul nostro sistema. Se riprovi dovrebbe funzionare.";
-$a->strings["Unable to set your contact credentials on our system."] = "Impossibile impostare le credenziali del tuo contatto sul nostro sistema.";
-$a->strings["Unable to update your contact profile details on our system"] = "Impossibile aggiornare i dettagli del tuo contatto sul nostro sistema";
-$a->strings["[Name Withheld]"] = "[Nome Nascosto]";
-$a->strings["%1\$s has joined %2\$s"] = "%1\$s si è unito a %2\$s";
-$a->strings["Requested profile is not available."] = "Profilo richiesto non disponibile.";
-$a->strings["Tips for New Members"] = "Consigli per i Nuovi Utenti";
-$a->strings["No videos selected"] = "Nessun video selezionato";
-$a->strings["Access to this item is restricted."] = "Questo oggetto non è visibile a tutti.";
+$a->strings["poke"] = "stuzzica";
+$a->strings["poked"] = "ha stuzzicato";
+$a->strings["ping"] = "invia un ping";
+$a->strings["pinged"] = "ha inviato un ping";
+$a->strings["prod"] = "pungola";
+$a->strings["prodded"] = "ha pungolato";
+$a->strings["slap"] = "schiaffeggia";
+$a->strings["slapped"] = "ha schiaffeggiato";
+$a->strings["finger"] = "tocca";
+$a->strings["fingered"] = "ha toccato";
+$a->strings["rebuff"] = "respingi";
+$a->strings["rebuffed"] = "ha respinto";
+$a->strings["happy"] = "felice";
+$a->strings["sad"] = "triste";
+$a->strings["mellow"] = "rilassato";
+$a->strings["tired"] = "stanco";
+$a->strings["perky"] = "vivace";
+$a->strings["angry"] = "arrabbiato";
+$a->strings["stupified"] = "stupefatto";
+$a->strings["puzzled"] = "confuso";
+$a->strings["interested"] = "interessato";
+$a->strings["bitter"] = "risentito";
+$a->strings["cheerful"] = "giocoso";
+$a->strings["alive"] = "vivo";
+$a->strings["annoyed"] = "annoiato";
+$a->strings["anxious"] = "ansioso";
+$a->strings["cranky"] = "irritabile";
+$a->strings["disturbed"] = "disturbato";
+$a->strings["frustrated"] = "frustato";
+$a->strings["motivated"] = "motivato";
+$a->strings["relaxed"] = "rilassato";
+$a->strings["surprised"] = "sorpreso";
+$a->strings["Monday"] = "Lunedì";
+$a->strings["Tuesday"] = "Martedì";
+$a->strings["Wednesday"] = "Mercoledì";
+$a->strings["Thursday"] = "Giovedì";
+$a->strings["Friday"] = "Venerdì";
+$a->strings["Saturday"] = "Sabato";
+$a->strings["Sunday"] = "Domenica";
+$a->strings["January"] = "Gennaio";
+$a->strings["February"] = "Febbraio";
+$a->strings["March"] = "Marzo";
+$a->strings["April"] = "Aprile";
+$a->strings["May"] = "Maggio";
+$a->strings["June"] = "Giugno";
+$a->strings["July"] = "Luglio";
+$a->strings["August"] = "Agosto";
+$a->strings["September"] = "Settembre";
+$a->strings["October"] = "Ottobre";
+$a->strings["November"] = "Novembre";
+$a->strings["December"] = "Dicembre";
 $a->strings["View Video"] = "Guarda Video";
-$a->strings["View Album"] = "Sfoglia l'album";
-$a->strings["Recent Videos"] = "Video Recenti";
-$a->strings["Upload New Videos"] = "Carica Nuovo Video";
-$a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s ha taggato %3\$s di %2\$s con %4\$s";
-$a->strings["Friend suggestion sent."] = "Suggerimento di amicizia inviato.";
-$a->strings["Suggest Friends"] = "Suggerisci amici";
-$a->strings["Suggest a friend for %s"] = "Suggerisci un amico a %s";
-$a->strings["No valid account found."] = "Nessun account valido trovato.";
-$a->strings["Password reset request issued. Check your email."] = "La richiesta per reimpostare la password è stata inviata. Controlla la tua email.";
-$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."] = "\nGentile %1\$s,\n    abbiamo ricevuto su \"%2\$s\" una richiesta di resettare la password del tuo account. Per confermare questa richiesta, selezionate il link di conferma qui sotto o incollatelo nella barra indirizzo del vostro browser.\n\nSe NON hai richiesto questa modifica, NON selezionare il link e ignora o cancella questa email.\n\nLa tua password non verrà modificata a meno che non possiamo verificare che tu abbia effettivamente richiesto la modifica.";
-$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"] = "\nSegui questo link per verificare la tua identità:\n\n%1\$s\n\nRiceverai in un successivo messaggio la nuova password.\nPotrai cambiarla dalla pagina \"Impostazioni\" del tuo account dopo esserti autenticato.\n\nI dettagli del tuo account sono:\n    Indirizzo del sito: %2\$s\n    Nome utente: %3\$s";
-$a->strings["Password reset requested at %s"] = "Richiesta reimpostazione password su %s";
-$a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "La richiesta non può essere verificata. (Puoi averla già richiesta precendentemente). Reimpostazione password fallita.";
-$a->strings["Password Reset"] = "Reimpostazione password";
-$a->strings["Your password has been reset as requested."] = "La tua password è stata reimpostata come richiesto.";
-$a->strings["Your new password is"] = "La tua nuova password è";
-$a->strings["Save or copy your new password - and then"] = "Salva o copia la tua nuova password, quindi";
-$a->strings["click here to login"] = "clicca qui per entrare";
-$a->strings["Your password may be changed from the <em>Settings</em> page after successful login."] = "Puoi cambiare la tua password dalla pagina <em>Impostazioni</em> dopo aver effettuato l'accesso.";
-$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"] = "\nGentile %1\$s,\n   La tua password è stata modificata come richiesto.\nSalva questa password, o sostituiscila immediatamente con qualcosa che puoi ricordare.";
-$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"] = "\nI dettagli del tuo account sono:\n\n   Indirizzo del sito: %1\$s\n   Nome utente: %2\$s\n   Password: %3\$s\n\nPuoi cambiare questa password dalla pagina \"Impostazioni\" del tuo account dopo esserti autenticato.";
-$a->strings["Your password has been changed at %s"] = "La tua password presso %s è stata cambiata";
-$a->strings["Forgot your Password?"] = "Hai dimenticato la password?";
-$a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Inserisci il tuo indirizzo email per reimpostare la password.";
-$a->strings["Nickname or Email: "] = "Nome utente o email: ";
-$a->strings["Reset"] = "Reimposta";
-$a->strings["%1\$s likes %2\$s's %3\$s"] = "A %1\$s piace %3\$s di %2\$s";
-$a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "A %1\$s non piace %3\$s di %2\$s";
-$a->strings["{0} wants to be your friend"] = "{0} vuole essere tuo amico";
-$a->strings["{0} sent you a message"] = "{0} ti ha inviato un messaggio";
-$a->strings["{0} requested registration"] = "{0} chiede la registrazione";
-$a->strings["{0} commented %s's post"] = "{0} ha commentato il post di %s";
-$a->strings["{0} liked %s's post"] = "a {0} piace il post di  %s";
-$a->strings["{0} disliked %s's post"] = "a {0} non piace il post di %s";
-$a->strings["{0} is now friends with %s"] = "{0} ora è amico di %s";
-$a->strings["{0} posted"] = "{0} ha inviato un nuovo messaggio";
-$a->strings["{0} tagged %s's post with #%s"] = "{0} ha taggato il post di %s con #%s";
-$a->strings["{0} mentioned you in a post"] = "{0} ti ha citato in un post";
-$a->strings["No contacts."] = "Nessun contatto.";
-$a->strings["View Contacts"] = "Visualizza i contatti";
+$a->strings["bytes"] = "bytes";
+$a->strings["Click to open/close"] = "Clicca per aprire/chiudere";
+$a->strings["link to source"] = "Collegamento all'originale";
+$a->strings["Select an alternate language"] = "Seleziona una diversa lingua";
+$a->strings["activity"] = "attività";
+$a->strings["comment"] = array(
+       0 => "",
+       1 => "commento",
+);
+$a->strings["post"] = "messaggio";
+$a->strings["Item filed"] = "Messaggio salvato";
+$a->strings["Logged out."] = "Uscita effettuata.";
+$a->strings["Login failed."] = "Accesso fallito.";
+$a->strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "Abbiamo incontrato un problema mentre contattavamo il server OpenID che ci hai fornito. Controlla di averlo scritto giusto.";
+$a->strings["The error message was:"] = "Il messaggio riportato era:";
+$a->strings["Image/photo"] = "Immagine/foto";
+$a->strings["<a href=\"%1\$s\" target=\"_blank\">%2\$s</a> %3\$s"] = "<a href=\"%1\$s\" target=\"_blank\">%2\$s</a> %3\$s";
+$a->strings["<span><a href=\"%s\" target=\"_blank\">%s</a> wrote the following <a href=\"%s\" target=\"_blank\">post</a>"] = "<span><a href=\"%s\" target=\"_blank\">%s</a> ha scritto il seguente <a href=\"%s\" target=\"_blank\">messaggio</a>";
+$a->strings["$1 wrote:"] = "$1 ha scritto:";
+$a->strings["Encrypted content"] = "Contenuto criptato";
+$a->strings["Welcome "] = "Ciao";
+$a->strings["Please upload a profile photo."] = "Carica una foto per il profilo.";
+$a->strings["Welcome back "] = "Ciao ";
+$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."] = "Il token di sicurezza della form non era corretto. Probabilmente la form è rimasta aperta troppo a lunto (più di tre ore) prima di inviarla.";
+$a->strings["Embedded content"] = "Contenuto incorporato";
+$a->strings["Embedding disabled"] = "Embed disabilitato";
+$a->strings["Male"] = "Maschio";
+$a->strings["Female"] = "Femmina";
+$a->strings["Currently Male"] = "Al momento maschio";
+$a->strings["Currently Female"] = "Al momento femmina";
+$a->strings["Mostly Male"] = "Prevalentemente maschio";
+$a->strings["Mostly Female"] = "Prevalentemente femmina";
+$a->strings["Transgender"] = "Transgender";
+$a->strings["Intersex"] = "Intersex";
+$a->strings["Transsexual"] = "Transessuale";
+$a->strings["Hermaphrodite"] = "Ermafrodito";
+$a->strings["Neuter"] = "Neutro";
+$a->strings["Non-specific"] = "Non specificato";
+$a->strings["Other"] = "Altro";
+$a->strings["Undecided"] = "Indeciso";
+$a->strings["Males"] = "Maschi";
+$a->strings["Females"] = "Femmine";
+$a->strings["Gay"] = "Gay";
+$a->strings["Lesbian"] = "Lesbica";
+$a->strings["No Preference"] = "Nessuna preferenza";
+$a->strings["Bisexual"] = "Bisessuale";
+$a->strings["Autosexual"] = "Autosessuale";
+$a->strings["Abstinent"] = "Astinente";
+$a->strings["Virgin"] = "Vergine";
+$a->strings["Deviant"] = "Deviato";
+$a->strings["Fetish"] = "Fetish";
+$a->strings["Oodles"] = "Un sacco";
+$a->strings["Nonsexual"] = "Asessuato";
+$a->strings["Single"] = "Single";
+$a->strings["Lonely"] = "Solitario";
+$a->strings["Available"] = "Disponibile";
+$a->strings["Unavailable"] = "Non disponibile";
+$a->strings["Has crush"] = "è cotto/a";
+$a->strings["Infatuated"] = "infatuato/a";
+$a->strings["Dating"] = "Disponibile a un incontro";
+$a->strings["Unfaithful"] = "Infedele";
+$a->strings["Sex Addict"] = "Sesso-dipendente";
+$a->strings["Friends"] = "Amici";
+$a->strings["Friends/Benefits"] = "Amici con benefici";
+$a->strings["Casual"] = "Casual";
+$a->strings["Engaged"] = "Impegnato";
+$a->strings["Married"] = "Sposato";
+$a->strings["Imaginarily married"] = "immaginariamente sposato/a";
+$a->strings["Partners"] = "Partners";
+$a->strings["Cohabiting"] = "Coinquilino";
+$a->strings["Common law"] = "diritto comune";
+$a->strings["Happy"] = "Felice";
+$a->strings["Not looking"] = "Non guarda";
+$a->strings["Swinger"] = "Scambista";
+$a->strings["Betrayed"] = "Tradito";
+$a->strings["Separated"] = "Separato";
+$a->strings["Unstable"] = "Instabile";
+$a->strings["Divorced"] = "Divorziato";
+$a->strings["Imaginarily divorced"] = "immaginariamente divorziato/a";
+$a->strings["Widowed"] = "Vedovo";
+$a->strings["Uncertain"] = "Incerto";
+$a->strings["It's complicated"] = "E' complicato";
+$a->strings["Don't care"] = "Non interessa";
+$a->strings["Ask me"] = "Chiedimelo";
+$a->strings["An invitation is required."] = "E' richiesto un invito.";
+$a->strings["Invitation could not be verified."] = "L'invito non puo' essere verificato.";
+$a->strings["Invalid OpenID url"] = "Url OpenID non valido";
+$a->strings["Please enter the required information."] = "Inserisci le informazioni richieste.";
+$a->strings["Please use a shorter name."] = "Usa un nome più corto.";
+$a->strings["Name too short."] = "Il nome è troppo corto.";
+$a->strings["That doesn't appear to be your full (First Last) name."] = "Questo non sembra essere il tuo nome completo (Nome Cognome).";
+$a->strings["Your email domain is not among those allowed on this site."] = "Il dominio della tua email non è tra quelli autorizzati su questo sito.";
+$a->strings["Not a valid email address."] = "L'indirizzo email non è valido.";
+$a->strings["Cannot use that email."] = "Non puoi usare quell'email.";
+$a->strings["Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and must also begin with a letter."] = "Il tuo nome utente puo' contenere solo \"a-z\", \"0-9\", \"-\", e \"_\", e deve cominciare con una lettera.";
+$a->strings["Nickname is already registered. Please choose another."] = "Nome utente già registrato. Scegline un altro.";
+$a->strings["Nickname was once registered here and may not be re-used. Please choose another."] = "Questo nome utente stato già registrato. Per favore, sceglierne uno nuovo.";
+$a->strings["SERIOUS ERROR: Generation of security keys failed."] = "ERRORE GRAVE: La generazione delle chiavi di sicurezza è fallita.";
+$a->strings["An error occurred during registration. Please try again."] = "C'è stato un errore durante la registrazione. Prova ancora.";
+$a->strings["An error occurred creating your default profile. Please try again."] = "C'è stato un errore nella creazione del tuo profilo. Prova ancora.";
+$a->strings["\n\t\tDear %1\$s,\n\t\t\tThank you for registering at %2\$s. Your account has been created.\n\t"] = "\nGentile %1\$s,\nGrazie per esserti registrato su %2\$s. Il tuo account è stato creato.";
+$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."] = "\nI dettagli del tuo utente sono:\n    Indirizzo del sito: %3\$s\n    Nome utente: %1\$s\n    Password: %5\$s\n\nPuoi cambiare la tua password dalla pagina delle impostazioni del tuo account dopo esserti autenticato.\n\nPer favore, prenditi qualche momento per esaminare tutte le impostazioni presenti.\n\nPotresti voler aggiungere qualche informazione di base al tuo profilo predefinito (nella pagina \"Profili\"), così che le altre persone possano trovarti più facilmente.\n\nTi raccomandiamo di inserire il tuo nome completo, aggiungere una foto, aggiungere qualche parola chiave del profilo (molto utili per trovare nuovi contatti), e magari in quale nazione vivi, se non vuoi essere più specifico di così.\n\nNoi rispettiamo appieno la tua privacy, e nessuna di queste informazioni è necessaria o obbligatoria.\nSe sei nuovo e non conosci nessuno qui, possono aiutarti a trovare qualche nuovo e interessante contatto.\n\nGrazie e benvenuto su %2\$s";
+$a->strings["Registration details for %s"] = "Dettagli della registrazione di %s";
+$a->strings["Visible to everybody"] = "Visibile a tutti";
+$a->strings["This entry was edited"] = "Questa voce è stata modificata";
+$a->strings["Private Message"] = "Messaggio privato";
+$a->strings["Edit"] = "Modifica";
+$a->strings["save to folder"] = "salva nella cartella";
+$a->strings["add star"] = "aggiungi a speciali";
+$a->strings["remove star"] = "rimuovi da speciali";
+$a->strings["toggle star status"] = "Inverti stato preferito";
+$a->strings["starred"] = "preferito";
+$a->strings["ignore thread"] = "ignora la discussione";
+$a->strings["unignore thread"] = "non ignorare la discussione";
+$a->strings["toggle ignore status"] = "inverti stato \"Ignora\"";
+$a->strings["ignored"] = "ignorato";
+$a->strings["add tag"] = "aggiungi tag";
+$a->strings["I like this (toggle)"] = "Mi piace (clic per cambiare)";
+$a->strings["like"] = "mi piace";
+$a->strings["I don't like this (toggle)"] = "Non mi piace (clic per cambiare)";
+$a->strings["dislike"] = "non mi piace";
+$a->strings["Share this"] = "Condividi questo";
+$a->strings["share"] = "condividi";
+$a->strings["to"] = "a";
+$a->strings["via"] = "via";
+$a->strings["Wall-to-Wall"] = "Da bacheca a bacheca";
+$a->strings["via Wall-To-Wall:"] = "da bacheca a bacheca";
+$a->strings["%d comment"] = array(
+       0 => "%d commento",
+       1 => "%d commenti",
+);
+$a->strings["This is you"] = "Questo sei tu";
+$a->strings["Bold"] = "Grassetto";
+$a->strings["Italic"] = "Corsivo";
+$a->strings["Underline"] = "Sottolineato";
+$a->strings["Quote"] = "Citazione";
+$a->strings["Code"] = "Codice";
+$a->strings["Image"] = "Immagine";
+$a->strings["Link"] = "Link";
+$a->strings["Video"] = "Video";
+$a->strings["Item not available."] = "Oggetto non disponibile.";
+$a->strings["Item was not found."] = "Oggetto non trovato.";
+$a->strings["Number of daily wall messages for %s exceeded. Message failed."] = "Numero giornaliero di messaggi per %s superato. Invio fallito.";
+$a->strings["No recipient selected."] = "Nessun destinatario selezionato.";
+$a->strings["Unable to check your home location."] = "Impossibile controllare la tua posizione di origine.";
+$a->strings["Message could not be sent."] = "Il messaggio non puo' essere inviato.";
+$a->strings["Message collection failure."] = "Errore recuperando il messaggio.";
+$a->strings["Message sent."] = "Messaggio inviato.";
+$a->strings["No recipient."] = "Nessun destinatario.";
+$a->strings["Send Private Message"] = "Invia un messaggio privato";
+$a->strings["If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders."] = "Se vuoi che %s ti risponda, controlla che le tue impostazioni di privacy permettano la ricezione di messaggi privati da mittenti sconosciuti.";
+$a->strings["To:"] = "A:";
+$a->strings["Subject:"] = "Oggetto:";
+$a->strings["Your message:"] = "Il tuo messaggio:";
+$a->strings["Group created."] = "Gruppo creato.";
+$a->strings["Could not create group."] = "Impossibile creare il gruppo.";
+$a->strings["Group not found."] = "Gruppo non trovato.";
+$a->strings["Group name changed."] = "Il nome del gruppo è cambiato.";
+$a->strings["Save Group"] = "Salva gruppo";
+$a->strings["Create a group of contacts/friends."] = "Crea un gruppo di amici/contatti.";
+$a->strings["Group removed."] = "Gruppo rimosso.";
+$a->strings["Unable to remove group."] = "Impossibile rimuovere il gruppo.";
+$a->strings["Group Editor"] = "Modifica gruppo";
+$a->strings["Members"] = "Membri";
+$a->strings["All Contacts"] = "Tutti i contatti";
+$a->strings["Click on a contact to add or remove."] = "Clicca su un contatto per aggiungerlo o rimuoverlo.";
+$a->strings["No potential page delegates located."] = "Nessun potenziale delegato per la pagina è stato trovato.";
+$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."] = "I Delegati sono in grando di gestire tutti gli aspetti di questa pagina, tranne per i settaggi di base dell'account. Non delegare il tuo account personale a nessuno di cui non ti fidi ciecamente.";
+$a->strings["Existing Page Managers"] = "Gestori Pagina Esistenti";
+$a->strings["Existing Page Delegates"] = "Delegati Pagina Esistenti";
+$a->strings["Potential Delegates"] = "Delegati Potenziali";
+$a->strings["Remove"] = "Rimuovi";
+$a->strings["Add"] = "Aggiungi";
+$a->strings["No entries."] = "Nessuna voce.";
 $a->strings["Invalid request identifier."] = "L'identificativo della richiesta non è valido.";
 $a->strings["Discard"] = "Scarta";
+$a->strings["Ignore"] = "Ignora";
 $a->strings["System"] = "Sistema";
-$a->strings["Network"] = "Rete";
 $a->strings["Personal"] = "Personale";
-$a->strings["Home"] = "Home";
-$a->strings["Introductions"] = "Presentazioni";
 $a->strings["Show Ignored Requests"] = "Mostra richieste ignorate";
 $a->strings["Hide Ignored Requests"] = "Nascondi richieste ignorate";
 $a->strings["Notification type: "] = "Tipo di notifica: ";
 $a->strings["Friend Suggestion"] = "Amico suggerito";
 $a->strings["suggested by %s"] = "sugerito da %s";
+$a->strings["Hide this contact from others"] = "Nascondi questo contatto agli altri";
 $a->strings["Post a new friend activity"] = "Invia una attività \"è ora amico con\"";
 $a->strings["if applicable"] = "se applicabile";
 $a->strings["Approve"] = "Approva";
 $a->strings["Claims to be known to you: "] = "Dice di conoscerti: ";
 $a->strings["yes"] = "si";
 $a->strings["no"] = "no";
-$a->strings["Approve as: "] = "Approva come: ";
+$a->strings["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: "] = "La connessione dovrà essere bidirezionale o no? \"Amici\" implica che tu permetti al contatto di leggere i tuoi post e tu leggerai i suoi. \"Fan/Ammiratore\" significa che permetti al contatto di leggere i tuoi posto ma tu non vuoi leggere i suoi. Approva come:";
+$a->strings["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: "] = "La connessione dovrà essere bidirezionale o no? \"Amici\" implica che tu permetti al contatto di leggere i tuoi post e tu leggerai i suoi. \"Condivisore\" significa che permetti al contatto di leggere i tuoi posto ma tu non vuoi leggere i suoi. Approva come:";
 $a->strings["Friend"] = "Amico";
 $a->strings["Sharer"] = "Condivisore";
 $a->strings["Fan/Admirer"] = "Fan/Ammiratore";
 $a->strings["Friend/Connect Request"] = "Richiesta amicizia/connessione";
 $a->strings["New Follower"] = "Qualcuno inizia a seguirti";
 $a->strings["No introductions."] = "Nessuna presentazione.";
-$a->strings["Notifications"] = "Notifiche";
 $a->strings["%s liked %s's post"] = "a %s è piaciuto il messaggio di %s";
 $a->strings["%s disliked %s's post"] = "a %s non è piaciuto il messaggio di %s";
 $a->strings["%s is now friends with %s"] = "%s è ora amico di %s";
@@ -313,517 +785,38 @@ $a->strings["No more personal notifications."] = "Nessuna nuova.";
 $a->strings["Personal Notifications"] = "Notifiche personali";
 $a->strings["No more home notifications."] = "Nessuna nuova.";
 $a->strings["Home Notifications"] = "Notifiche bacheca";
-$a->strings["Source (bbcode) text:"] = "Testo sorgente (bbcode):";
-$a->strings["Source (Diaspora) text to convert to BBcode:"] = "Testo sorgente (da Diaspora) da convertire in BBcode:";
-$a->strings["Source input: "] = "Sorgente:";
-$a->strings["bb2html (raw HTML): "] = "bb2html (HTML grezzo):";
-$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): "] = "Sorgente (formato Diaspora):";
-$a->strings["diaspora2bb: "] = "diaspora2bb: ";
-$a->strings["Nothing new here"] = "Niente di nuovo qui";
-$a->strings["Clear notifications"] = "Pulisci le notifiche";
-$a->strings["New Message"] = "Nuovo messaggio";
-$a->strings["No recipient selected."] = "Nessun destinatario selezionato.";
-$a->strings["Unable to locate contact information."] = "Impossibile trovare le informazioni del contatto.";
-$a->strings["Message could not be sent."] = "Il messaggio non puo' essere inviato.";
-$a->strings["Message collection failure."] = "Errore recuperando il messaggio.";
-$a->strings["Message sent."] = "Messaggio inviato.";
-$a->strings["Messages"] = "Messaggi";
-$a->strings["Do you really want to delete this message?"] = "Vuoi veramente cancellare questo messaggio?";
-$a->strings["Message deleted."] = "Messaggio eliminato.";
-$a->strings["Conversation removed."] = "Conversazione rimossa.";
-$a->strings["Please enter a link URL:"] = "Inserisci l'indirizzo del link:";
-$a->strings["Send Private Message"] = "Invia un messaggio privato";
-$a->strings["To:"] = "A:";
-$a->strings["Subject:"] = "Oggetto:";
-$a->strings["Your message:"] = "Il tuo messaggio:";
-$a->strings["Upload photo"] = "Carica foto";
-$a->strings["Insert web link"] = "Inserisci link";
-$a->strings["Please wait"] = "Attendi";
-$a->strings["No messages."] = "Nessun messaggio.";
-$a->strings["Unknown sender - %s"] = "Mittente sconosciuto - %s";
-$a->strings["You and %s"] = "Tu e %s";
-$a->strings["%s and You"] = "%s e Tu";
-$a->strings["Delete conversation"] = "Elimina la conversazione";
-$a->strings["D, d M Y - g:i A"] = "D d M Y - G:i";
-$a->strings["%d message"] = array(
-       0 => "%d messaggio",
-       1 => "%d messaggi",
-);
-$a->strings["Message not available."] = "Messaggio non disponibile.";
-$a->strings["Delete message"] = "Elimina il messaggio";
-$a->strings["No secure communications available. You <strong>may</strong> be able to respond from the sender's profile page."] = "Nessuna comunicazione sicura disponibile, <strong>Potresti</strong> essere in grado di rispondere dalla pagina del profilo del mittente.";
-$a->strings["Send Reply"] = "Invia la risposta";
-$a->strings["[Embedded content - reload page to view]"] = "[Contenuto incorporato - ricarica la pagina per visualizzarlo correttamente]";
-$a->strings["Contact settings applied."] = "Contatto modificato.";
-$a->strings["Contact update failed."] = "Le modifiche al contatto non sono state salvate.";
-$a->strings["Repair Contact Settings"] = "Ripara il contatto";
-$a->strings["<strong>WARNING: This is highly advanced</strong> and if you enter incorrect information your communications with this contact may stop working."] = "<strong>ATTENZIONE: Queste sono impostazioni avanzate</strong> e se inserisci informazioni errate le tue comunicazioni con questo contatto potrebbero non funzionare più";
-$a->strings["Please use your browser 'Back' button <strong>now</strong> if you are uncertain what to do on this page."] = "Usa <strong>ora</strong> il tasto 'Indietro' del tuo browser se non sei sicuro di cosa fare in questa pagina.";
-$a->strings["Return to contact editor"] = "Ritorna alla modifica contatto";
-$a->strings["No mirroring"] = "Non duplicare";
-$a->strings["Mirror as forwarded posting"] = "Duplica come messaggi ricondivisi";
-$a->strings["Mirror as my own posting"] = "Duplica come miei messaggi";
-$a->strings["Name"] = "Nome";
-$a->strings["Account Nickname"] = "Nome utente";
-$a->strings["@Tagname - overrides Name/Nickname"] = "@TagName - al posto del nome utente";
-$a->strings["Account URL"] = "URL dell'utente";
-$a->strings["Friend Request URL"] = "URL Richiesta Amicizia";
-$a->strings["Friend Confirm URL"] = "URL Conferma Amicizia";
-$a->strings["Notification Endpoint URL"] = "URL Notifiche";
-$a->strings["Poll/Feed URL"] = "URL Feed";
-$a->strings["New photo from this URL"] = "Nuova foto da questo URL";
-$a->strings["Remote Self"] = "Io remoto";
-$a->strings["Mirror postings from this contact"] = "Ripeti i messaggi di questo contatto";
-$a->strings["Mark this contact as remote_self, this will cause friendica to repost new entries from this contact."] = "Imposta questo contatto come 'io remoto', questo farà si che friendica reinvii i nuovi messaggi da questo contatto.";
-$a->strings["Login"] = "Accedi";
-$a->strings["The post was created"] = "";
-$a->strings["Access denied."] = "Accesso negato.";
-$a->strings["People Search"] = "Cerca persone";
-$a->strings["No matches"] = "Nessun risultato";
-$a->strings["Photos"] = "Foto";
-$a->strings["Files"] = "File";
-$a->strings["Contacts who are not members of a group"] = "Contatti che non sono membri di un gruppo";
-$a->strings["Theme settings updated."] = "Impostazioni del tema aggiornate.";
-$a->strings["Site"] = "Sito";
-$a->strings["Users"] = "Utenti";
+$a->strings["No profile"] = "Nessun profilo";
+$a->strings["everybody"] = "tutti";
+$a->strings["Account"] = "Account";
+$a->strings["Additional features"] = "Funzionalità aggiuntive";
+$a->strings["Display"] = "Visualizzazione";
+$a->strings["Social Networks"] = "Social Networks";
 $a->strings["Plugins"] = "Plugin";
-$a->strings["Themes"] = "Temi";
-$a->strings["DB updates"] = "Aggiornamenti Database";
-$a->strings["Logs"] = "Log";
-$a->strings["probe address"] = "";
-$a->strings["check webfinger"] = "";
-$a->strings["Admin"] = "Amministrazione";
-$a->strings["Plugin Features"] = "Impostazioni Plugins";
-$a->strings["diagnostics"] = "";
-$a->strings["User registrations waiting for confirmation"] = "Utenti registrati in attesa di conferma";
-$a->strings["Normal Account"] = "Account normale";
-$a->strings["Soapbox Account"] = "Account per comunicati e annunci";
-$a->strings["Community/Celebrity Account"] = "Account per celebrità o per comunità";
-$a->strings["Automatic Friend Account"] = "Account per amicizia automatizzato";
-$a->strings["Blog Account"] = "Account Blog";
-$a->strings["Private Forum"] = "Forum Privato";
-$a->strings["Message queues"] = "Code messaggi";
-$a->strings["Administration"] = "Amministrazione";
-$a->strings["Summary"] = "Sommario";
-$a->strings["Registered users"] = "Utenti registrati";
-$a->strings["Pending registrations"] = "Registrazioni in attesa";
-$a->strings["Version"] = "Versione";
-$a->strings["Active plugins"] = "Plugin attivi";
-$a->strings["Can not parse base url. Must have at least <scheme>://<domain>"] = "Impossibile analizzare l'url base. Deve avere almeno [schema]://[dominio]";
-$a->strings["Site settings updated."] = "Impostazioni del sito aggiornate.";
-$a->strings["No special theme for mobile devices"] = "Nessun tema speciale per i dispositivi mobili";
-$a->strings["No community page"] = "";
-$a->strings["Public postings from users of this site"] = "";
-$a->strings["Global community page"] = "";
-$a->strings["At post arrival"] = "All'arrivo di un messaggio";
-$a->strings["Frequently"] = "Frequentemente";
-$a->strings["Hourly"] = "Ogni ora";
-$a->strings["Twice daily"] = "Due volte al dì";
-$a->strings["Daily"] = "Giornalmente";
-$a->strings["Multi user instance"] = "Istanza multi utente";
-$a->strings["Closed"] = "Chiusa";
-$a->strings["Requires approval"] = "Richiede l'approvazione";
-$a->strings["Open"] = "Aperta";
-$a->strings["No SSL policy, links will track page SSL state"] = "Nessuna gestione SSL, i link seguiranno lo stato SSL della pagina";
-$a->strings["Force all links to use SSL"] = "Forza tutti i linki ad usare SSL";
-$a->strings["Self-signed certificate, use SSL for local links only (discouraged)"] = "Certificato auto-firmato, usa SSL solo per i link locali (sconsigliato)";
+$a->strings["Connected apps"] = "Applicazioni collegate";
+$a->strings["Export personal data"] = "Esporta dati personali";
+$a->strings["Remove account"] = "Rimuovi account";
+$a->strings["Missing some important data!"] = "Mancano alcuni dati importanti!";
+$a->strings["Update"] = "Aggiorna";
+$a->strings["Failed to connect with email account using the settings provided."] = "Impossibile collegarsi all'account email con i parametri forniti.";
+$a->strings["Email settings updated."] = "Impostazioni e-mail aggiornate.";
+$a->strings["Features updated"] = "Funzionalità aggiornate";
+$a->strings["Relocate message has been send to your contacts"] = "Il messaggio di trasloco è stato inviato ai tuoi contatti";
+$a->strings["Passwords do not match. Password unchanged."] = "Le password non corrispondono. Password non cambiata.";
+$a->strings["Empty passwords are not allowed. Password unchanged."] = "Le password non possono essere vuote. Password non cambiata.";
+$a->strings["Wrong password."] = "Password sbagliata.";
+$a->strings["Password changed."] = "Password cambiata.";
+$a->strings["Password update failed. Please try again."] = "Aggiornamento password fallito. Prova ancora.";
+$a->strings[" Please use a shorter name."] = " Usa un nome più corto.";
+$a->strings[" Name too short."] = " Nome troppo corto.";
+$a->strings["Wrong Password"] = "Password Sbagliata";
+$a->strings[" Not valid email."] = " Email non valida.";
+$a->strings[" Cannot change to that email."] = "Non puoi usare quella email.";
+$a->strings["Private forum has no privacy permissions. Using default privacy group."] = "Il forum privato non ha permessi di privacy. Uso il gruppo di privacy predefinito.";
+$a->strings["Private forum has no privacy permissions and no default privacy group."] = "Il gruppo privato non ha permessi di privacy e nessun gruppo di privacy predefinito.";
+$a->strings["Settings updated."] = "Impostazioni aggiornate.";
+$a->strings["Add application"] = "Aggiungi applicazione";
 $a->strings["Save Settings"] = "Salva Impostazioni";
-$a->strings["Registration"] = "Registrazione";
-$a->strings["File upload"] = "Caricamento file";
-$a->strings["Policies"] = "Politiche";
-$a->strings["Advanced"] = "Avanzate";
-$a->strings["Performance"] = "Performance";
-$a->strings["Relocate - WARNING: advanced function. Could make this server unreachable."] = "Trasloca - ATTENZIONE: funzione avanzata! Puo' rendere questo server irraggiungibile.";
-$a->strings["Site name"] = "Nome del sito";
-$a->strings["Host name"] = "";
-$a->strings["Sender Email"] = "";
-$a->strings["Banner/Logo"] = "Banner/Logo";
-$a->strings["Shortcut icon"] = "";
-$a->strings["Touch icon"] = "";
-$a->strings["Additional Info"] = "Informazioni aggiuntive";
-$a->strings["For public servers: you can add additional information here that will be listed at dir.friendica.com/siteinfo."] = "Per server pubblici: puoi aggiungere informazioni extra che verrano mostrate su dir.friendica.com/siteinfo.";
-$a->strings["System language"] = "Lingua di sistema";
-$a->strings["System theme"] = "Tema di sistema";
-$a->strings["Default system theme - may be over-ridden by user profiles - <a href='#' id='cnftheme'>change theme settings</a>"] = "Tema di sistema - puo' essere sovrascritto dalle impostazioni utente - <a href='#' id='cnftheme'>cambia le impostazioni del tema</a>";
-$a->strings["Mobile system theme"] = "Tema mobile di sistema";
-$a->strings["Theme for mobile devices"] = "Tema per dispositivi mobili";
-$a->strings["SSL link policy"] = "Gestione link SSL";
-$a->strings["Determines whether generated links should be forced to use SSL"] = "Determina se i link generati devono essere forzati a usare SSL";
-$a->strings["Force SSL"] = "";
-$a->strings["Force all Non-SSL requests to SSL - Attention: on some systems it could lead to endless loops."] = "";
-$a->strings["Old style 'Share'"] = "Ricondivisione vecchio stile";
-$a->strings["Deactivates the bbcode element 'share' for repeating items."] = "Disattiva l'elemento bbcode 'share' con elementi ripetuti";
-$a->strings["Hide help entry from navigation menu"] = "Nascondi la voce 'Guida' dal menu di navigazione";
-$a->strings["Hides the menu entry for the Help pages from the navigation menu. You can still access it calling /help directly."] = "Nasconde la voce per le pagine della guida dal menu di navigazione. E' comunque possibile accedervi richiamando /help direttamente.";
-$a->strings["Single user instance"] = "Instanza a singolo utente";
-$a->strings["Make this instance multi-user or single-user for the named user"] = "Rendi questa istanza multi utente o a singolo utente per l'utente selezionato";
-$a->strings["Maximum image size"] = "Massima dimensione immagini";
-$a->strings["Maximum size in bytes of uploaded images. Default is 0, which means no limits."] = "Massima dimensione in byte delle immagini caricate. Il default è 0, cioè nessun limite.";
-$a->strings["Maximum image length"] = "Massima lunghezza immagine";
-$a->strings["Maximum length in pixels of the longest side of uploaded images. Default is -1, which means no limits."] = "Massima lunghezza in pixel del lato più lungo delle immagini caricate. Predefinito a -1, ovvero nessun limite.";
-$a->strings["JPEG image quality"] = "Qualità immagini JPEG";
-$a->strings["Uploaded JPEGS will be saved at this quality setting [0-100]. Default is 100, which is full quality."] = "Le immagini JPEG caricate verranno salvate con questa qualità [0-100]. Predefinito è 100, ovvero qualità piena.";
-$a->strings["Register policy"] = "Politica di registrazione";
-$a->strings["Maximum Daily Registrations"] = "Massime registrazioni giornaliere";
-$a->strings["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."] = "Se la registrazione è permessa, qui si definisce il massimo numero di nuovi utenti registrati da accettare giornalmente. Se la registrazione è chiusa, questa impostazione non ha effetto.";
-$a->strings["Register text"] = "Testo registrazione";
-$a->strings["Will be displayed prominently on the registration page."] = "Sarà mostrato ben visibile nella pagina di registrazione.";
-$a->strings["Accounts abandoned after x days"] = "Account abbandonati dopo x giorni";
-$a->strings["Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit."] = "Non spreca risorse di sistema controllando siti esterni per gli account abbandonati. Immettere 0 per nessun limite di tempo.";
-$a->strings["Allowed friend domains"] = "Domini amici consentiti";
-$a->strings["Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains"] = "Elenco separato da virglola dei domini che possono stabilire amicizie con questo sito. Sono accettati caratteri jolly. Lascalo vuoto per accettare qualsiasi dominio.";
-$a->strings["Allowed email domains"] = "Domini email consentiti";
-$a->strings["Comma separated list of domains which are allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains"] = "Elenco separato da virgola dei domini permessi come indirizzi email in fase di registrazione a questo sito. Sono accettati caratteri jolly. Lascalo vuoto per accettare qualsiasi dominio.";
-$a->strings["Block public"] = "Blocca pagine pubbliche";
-$a->strings["Check to block public access to all otherwise public personal pages on this site unless you are currently logged in."] = "Seleziona per bloccare l'accesso pubblico a tutte le pagine personali di questo sito, a meno di essere loggato.";
-$a->strings["Force publish"] = "Forza publicazione";
-$a->strings["Check to force all profiles on this site to be listed in the site directory."] = "Seleziona per forzare tutti i profili di questo sito ad essere compresi  nell'elenco di questo sito.";
-$a->strings["Global directory update URL"] = "URL aggiornamento Elenco Globale";
-$a->strings["URL to update the global directory. If this is not set, the global directory is completely unavailable to the application."] = "URL dell'elenco globale. Se vuoto, l'elenco globale sarà completamente disabilitato.";
-$a->strings["Allow threaded items"] = "Permetti commenti nidificati";
-$a->strings["Allow infinite level threading for items on this site."] = "Permette un infinito livello di nidificazione dei commenti su questo sito.";
-$a->strings["Private posts by default for new users"] = "Post privati di default per i nuovi utenti";
-$a->strings["Set default post permissions for all new members to the default privacy group rather than public."] = "Imposta i permessi predefiniti dei post per tutti i nuovi utenti come privati per il gruppo predefinito, invece che pubblici.";
-$a->strings["Don't include post content in email notifications"] = "Non includere il contenuto dei post nelle notifiche via email";
-$a->strings["Don't include the content of a post/comment/private message/etc. in the email notifications that are sent out from this site, as a privacy measure."] = "Non include il contenuti del post/commento/messaggio privato/etc. nelle notifiche email che sono inviate da questo sito, per privacy";
-$a->strings["Disallow public access to addons listed in the apps menu."] = "Disabilita l'accesso pubblico ai plugin raccolti nel menu apps.";
-$a->strings["Checking this box will restrict addons listed in the apps menu to members only."] = "Selezionando questo box si limiterà ai soli membri l'accesso agli addon nel menu applicazioni";
-$a->strings["Don't embed private images in posts"] = "Non inglobare immagini private nei post";
-$a->strings["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 photos will have to authenticate and load each image, which may take a while."] = "Non sostituire le foto locali nei post con una copia incorporata dell'immagine. Questo significa che i contatti che riceveranno i post contenenti foto private dovranno autenticarsi e caricare ogni immagine, cosa che puo' richiedere un po' di tempo.";
-$a->strings["Allow Users to set remote_self"] = "Permetti agli utenti di impostare 'io remoto'";
-$a->strings["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."] = "Selezionando questo, a tutti gli utenti sarà permesso di impostare qualsiasi contatto come 'io remoto' nella pagina di modifica del contatto. Impostare questa opzione fa si che tutti i messaggi di quel contatto vengano ripetuti nello stream del'utente.";
-$a->strings["Block multiple registrations"] = "Blocca registrazioni multiple";
-$a->strings["Disallow users to register additional accounts for use as pages."] = "Non permette all'utente di registrare account extra da usare come pagine.";
-$a->strings["OpenID support"] = "Supporto OpenID";
-$a->strings["OpenID support for registration and logins."] = "Supporta OpenID per la registrazione e il login";
-$a->strings["Fullname check"] = "Controllo nome completo";
-$a->strings["Force users to register with a space between firstname and lastname in Full name, as an antispam measure"] = "Forza gli utenti a registrarsi con uno spazio tra il nome e il cognome in \"Nome completo\", come misura antispam";
-$a->strings["UTF-8 Regular expressions"] = "Espressioni regolari UTF-8";
-$a->strings["Use PHP UTF8 regular expressions"] = "Usa le espressioni regolari PHP in UTF8";
-$a->strings["Community Page Style"] = "";
-$a->strings["Type of community page to show. 'Global community' shows every public posting from an open distributed network that arrived on this server."] = "";
-$a->strings["Posts per user on community page"] = "";
-$a->strings["The maximum number of posts per user on the community page. (Not valid for 'Global Community')"] = "";
-$a->strings["Enable OStatus support"] = "Abilita supporto OStatus";
-$a->strings["Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All communications in OStatus are public, so privacy warnings will be occasionally displayed."] = "Fornisce la compatibilità integrata a OStatus (StatusNet, Gnu Social, etc.). Tutte le comunicazioni su OStatus sono pubbliche, quindi un avviso di privacy verrà mostrato occasionalmente.";
-$a->strings["OStatus conversation completion interval"] = "Intervallo completamento conversazioni OStatus";
-$a->strings["How often shall the poller check for new entries in OStatus conversations? This can be a very ressource task."] = "quanto spesso il poller deve controllare se esistono nuovi commenti in una conversazione OStatus? Questo è un lavoro che puo' richiedere molte risorse.";
-$a->strings["Enable Diaspora support"] = "Abilita il supporto a Diaspora";
-$a->strings["Provide built-in Diaspora network compatibility."] = "Fornisce compatibilità con il network Diaspora.";
-$a->strings["Only allow Friendica contacts"] = "Permetti solo contatti Friendica";
-$a->strings["All contacts must use Friendica protocols. All other built-in communication protocols disabled."] = "Tutti i contatti devono usare il protocollo di Friendica. Tutti gli altri protocolli sono disabilitati.";
-$a->strings["Verify SSL"] = "Verifica SSL";
-$a->strings["If you wish, you can turn on strict certificate checking. This will mean you cannot connect (at all) to self-signed SSL sites."] = "Se vuoi, puoi abilitare il controllo rigoroso dei certificati.Questo significa che non potrai collegarti (del tutto) con siti con certificati SSL auto-firmati.";
-$a->strings["Proxy user"] = "Utente Proxy";
-$a->strings["Proxy URL"] = "URL Proxy";
-$a->strings["Network timeout"] = "Timeout rete";
-$a->strings["Value is in seconds. Set to 0 for unlimited (not recommended)."] = "Valore in secondi. Imposta a 0 per illimitato (non raccomandato).";
-$a->strings["Delivery interval"] = "Intervallo di invio";
-$a->strings["Delay background delivery processes by this many seconds to reduce system load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 for large dedicated servers."] = "Ritarda il processo di invio in background  di n secondi per ridurre il carico di sistema. Raccomandato:  4-5 per host condivisit, 2-3 per VPS. 0-1 per grandi server dedicati.";
-$a->strings["Poll interval"] = "Intervallo di poll";
-$a->strings["Delay background polling processes by this many seconds to reduce system load. If 0, use delivery interval."] = "Ritarda il processo di poll in background di n secondi per ridurre il carico di sistema. Se 0, usa l'intervallo di invio.";
-$a->strings["Maximum Load Average"] = "Massimo carico medio";
-$a->strings["Maximum system load before delivery and poll processes are deferred - default 50."] = "Massimo carico di sistema prima che i processi di invio e di poll siano ritardati. Predefinito a 50.";
-$a->strings["Use MySQL full text engine"] = "Usa il motore MySQL full text";
-$a->strings["Activates the full text engine. Speeds up search - but can only search for four and more characters."] = "Attiva il motore full text. Velocizza la ricerca, ma puo' cercare solo per quattro o più caratteri.";
-$a->strings["Suppress Language"] = "Disattiva lingua";
-$a->strings["Suppress language information in meta information about a posting."] = "Disattiva le informazioni sulla lingua nei meta di un post.";
-$a->strings["Suppress Tags"] = "";
-$a->strings["Suppress showing a list of hashtags at the end of the posting."] = "";
-$a->strings["Path to item cache"] = "Percorso cache elementi";
-$a->strings["Cache duration in seconds"] = "Durata della cache in secondi";
-$a->strings["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."] = "Quanto a lungo devono essere mantenuti i file di cache? Il valore predefinito è 86400 secondi (un giorno). Per disabilitare la cache, imposta il valore a -1.";
-$a->strings["Maximum numbers of comments per post"] = "Numero massimo di commenti per post";
-$a->strings["How much comments should be shown for each post? Default value is 100."] = "Quanti commenti devono essere mostrati per ogni post? Default : 100.";
-$a->strings["Path for lock file"] = "Percorso al file di lock";
-$a->strings["Temp path"] = "Percorso file temporanei";
-$a->strings["Base path to installation"] = "Percorso base all'installazione";
-$a->strings["Disable picture proxy"] = "Disabilita il proxy immagini";
-$a->strings["The picture proxy increases performance and privacy. It shouldn't be used on systems with very low bandwith."] = "Il proxy immagini aumenta le performace e la privacy. Non dovrebbe essere usato su server con poca banda disponibile.";
-$a->strings["Enable old style pager"] = "";
-$a->strings["The old style pager has page numbers but slows down massively the page speed."] = "";
-$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"] = "Nuovo url base";
-$a->strings["Update has been marked successful"] = "L'aggiornamento è stato segnato come  di successo";
-$a->strings["Database structure update %s was successfully applied."] = "Aggiornamento struttura database %s applicata con successo.";
-$a->strings["Executing of database structure update %s failed with error: %s"] = "Aggiornamento struttura database %s fallita con errore: %s";
-$a->strings["Executing %s failed with error: %s"] = "Esecuzione di %s fallita con errore: %s";
-$a->strings["Update %s was successfully applied."] = "L'aggiornamento %s è stato applicato con successo";
-$a->strings["Update %s did not return a status. Unknown if it succeeded."] = "L'aggiornamento %s non ha riportato uno stato. Non so se è andato a buon fine.";
-$a->strings["There was no additional update function %s that needed to be called."] = "Non ci sono altre funzioni di aggiornamento %s da richiamare.";
-$a->strings["No failed updates."] = "Nessun aggiornamento fallito.";
-$a->strings["Check database structure"] = "Controlla struttura database";
-$a->strings["Failed Updates"] = "Aggiornamenti falliti";
-$a->strings["This does not include updates prior to 1139, which did not return a status."] = "Questo non include gli aggiornamenti prima del 1139, che non ritornano lo stato.";
-$a->strings["Mark success (if update was manually applied)"] = "Segna completato (se l'update è stato applicato manualmente)";
-$a->strings["Attempt to execute this update step automatically"] = "Cerco di eseguire questo aggiornamento in automatico";
-$a->strings["\n\t\t\tDear %1\$s,\n\t\t\t\tthe administrator of %2\$s has set up an account for you."] = "\nGentile %1\$s,\n    l'amministratore di %2\$s ha impostato un account per te.";
-$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."] = "\nI dettagli del tuo utente sono:\n    Indirizzo del sito: %1\$s\n    Nome utente: %2\$s\n    Password: %3\$s\n\nPuoi cambiare la tua password dalla pagina delle impostazioni del tuo account dopo esserti autenticato.\n\nPer favore, prenditi qualche momento per esaminare tutte le impostazioni presenti.\n\nPotresti voler aggiungere qualche informazione di base al tuo profilo predefinito (nella pagina \"Profili\"), così che le altre persone possano trovarti più facilmente.\n\nTi raccomandiamo di inserire il tuo nome completo, aggiungere una foto, aggiungere qualche parola chiave del profilo (molto utili per trovare nuovi contatti), e magari in quale nazione vivi, se non vuoi essere più specifico di così.\n\nNoi rispettiamo appieno la tua privacy, e nessuna di queste informazioni è necessaria o obbligatoria.\nSe sei nuovo e non conosci nessuno qui, possono aiutarti a trovare qualche nuovo e interessante contatto.\n\nGrazie e benvenuto su %4\$s";
-$a->strings["Registration details for %s"] = "Dettagli della registrazione di %s";
-$a->strings["%s user blocked/unblocked"] = array(
-       0 => "%s utente bloccato/sbloccato",
-       1 => "%s utenti bloccati/sbloccati",
-);
-$a->strings["%s user deleted"] = array(
-       0 => "%s utente cancellato",
-       1 => "%s utenti cancellati",
-);
-$a->strings["User '%s' deleted"] = "Utente '%s' cancellato";
-$a->strings["User '%s' unblocked"] = "Utente '%s' sbloccato";
-$a->strings["User '%s' blocked"] = "Utente '%s' bloccato";
-$a->strings["Add User"] = "Aggiungi utente";
-$a->strings["select all"] = "seleziona tutti";
-$a->strings["User registrations waiting for confirm"] = "Richieste di registrazione in attesa di conferma";
-$a->strings["User waiting for permanent deletion"] = "Utente in attesa di cancellazione definitiva";
-$a->strings["Request date"] = "Data richiesta";
-$a->strings["Email"] = "Email";
-$a->strings["No registrations."] = "Nessuna registrazione.";
-$a->strings["Deny"] = "Nega";
-$a->strings["Site admin"] = "Amministrazione sito";
-$a->strings["Account expired"] = "Account scaduto";
-$a->strings["New User"] = "Nuovo Utente";
-$a->strings["Register date"] = "Data registrazione";
-$a->strings["Last login"] = "Ultimo accesso";
-$a->strings["Last item"] = "Ultimo elemento";
-$a->strings["Deleted since"] = "Rimosso da";
-$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?"] = "Gli utenti selezionati saranno cancellati!\\n\\nTutto quello che gli utenti hanno inviato su questo sito sarà permanentemente canellato!\\n\\nSei sicuro?";
-$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?"] = "L'utente {0} sarà cancellato!\\n\\nTutto quello che ha inviato su questo sito sarà permanentemente cancellato!\\n\\nSei sicuro?";
-$a->strings["Name of the new user."] = "Nome del nuovo utente.";
-$a->strings["Nickname"] = "Nome utente";
-$a->strings["Nickname of the new user."] = "Nome utente del nuovo utente.";
-$a->strings["Email address of the new user."] = "Indirizzo Email del nuovo utente.";
-$a->strings["Plugin %s disabled."] = "Plugin %s disabilitato.";
-$a->strings["Plugin %s enabled."] = "Plugin %s abilitato.";
-$a->strings["Disable"] = "Disabilita";
-$a->strings["Enable"] = "Abilita";
-$a->strings["Toggle"] = "Inverti";
-$a->strings["Author: "] = "Autore: ";
-$a->strings["Maintainer: "] = "Manutentore: ";
-$a->strings["No themes found."] = "Nessun tema trovato.";
-$a->strings["Screenshot"] = "Anteprima";
-$a->strings["[Experimental]"] = "[Sperimentale]";
-$a->strings["[Unsupported]"] = "[Non supportato]";
-$a->strings["Log settings updated."] = "Impostazioni Log aggiornate.";
-$a->strings["Clear"] = "Pulisci";
-$a->strings["Enable Debugging"] = "Abilita Debugging";
-$a->strings["Log file"] = "File di Log";
-$a->strings["Must be writable by web server. Relative to your Friendica top-level directory."] = "Deve essere scrivibile dal server web. Relativo alla tua directory Friendica.";
-$a->strings["Log level"] = "Livello di Log";
-$a->strings["Close"] = "Chiudi";
-$a->strings["FTP Host"] = "Indirizzo FTP";
-$a->strings["FTP Path"] = "Percorso FTP";
-$a->strings["FTP User"] = "Utente FTP";
-$a->strings["FTP Password"] = "Pasword FTP";
-$a->strings["Search Results For:"] = "Cerca risultati per:";
-$a->strings["Remove term"] = "Rimuovi termine";
-$a->strings["Saved Searches"] = "Ricerche salvate";
-$a->strings["add"] = "aggiungi";
-$a->strings["Commented Order"] = "Ordina per commento";
-$a->strings["Sort by Comment Date"] = "Ordina per data commento";
-$a->strings["Posted Order"] = "Ordina per invio";
-$a->strings["Sort by Post Date"] = "Ordina per data messaggio";
-$a->strings["Posts that mention or involve you"] = "Messaggi che ti citano o coinvolgono";
-$a->strings["New"] = "Nuovo";
-$a->strings["Activity Stream - by date"] = "Activity Stream - per data";
-$a->strings["Shared Links"] = "Links condivisi";
-$a->strings["Interesting Links"] = "Link Interessanti";
-$a->strings["Starred"] = "Preferiti";
-$a->strings["Favourite Posts"] = "Messaggi preferiti";
-$a->strings["Warning: This group contains %s member from an insecure network."] = array(
-       0 => "Attenzione: questo gruppo contiene %s membro da un network insicuro.",
-       1 => "Attenzione: questo gruppo contiene %s membri da un network insicuro.",
-);
-$a->strings["Private messages to this group are at risk of public disclosure."] = "I messaggi privati su questo gruppo potrebbero risultare visibili anche pubblicamente.";
-$a->strings["No such group"] = "Nessun gruppo";
-$a->strings["Group is empty"] = "Il gruppo è vuoto";
-$a->strings["Group: "] = "Gruppo: ";
-$a->strings["Contact: "] = "Contatto:";
-$a->strings["Private messages to this person are at risk of public disclosure."] = "I messaggi privati a questa persona potrebbero risultare visibili anche pubblicamente.";
-$a->strings["Invalid contact."] = "Contatto non valido.";
-$a->strings["Friends of %s"] = "Amici di %s";
-$a->strings["No friends to display."] = "Nessun amico da visualizzare.";
-$a->strings["Event title and start time are required."] = "Titolo e ora di inizio dell'evento sono richiesti.";
-$a->strings["l, F j"] = "l j F";
-$a->strings["Edit event"] = "Modifca l'evento";
-$a->strings["link to source"] = "Collegamento all'originale";
-$a->strings["Events"] = "Eventi";
-$a->strings["Create New Event"] = "Crea un nuovo evento";
-$a->strings["Previous"] = "Precendente";
-$a->strings["Next"] = "Successivo";
-$a->strings["hour:minute"] = "ora:minuti";
-$a->strings["Event details"] = "Dettagli dell'evento";
-$a->strings["Format is %s %s. Starting date and Title are required."] = "Il formato è %s %s. Data di inizio e Titolo sono richiesti.";
-$a->strings["Event Starts:"] = "L'evento inizia:";
-$a->strings["Required"] = "Richiesto";
-$a->strings["Finish date/time is not known or not relevant"] = "La data/ora di fine non è definita";
-$a->strings["Event Finishes:"] = "L'evento finisce:";
-$a->strings["Adjust for viewer timezone"] = "Visualizza con il fuso orario di chi legge";
-$a->strings["Description:"] = "Descrizione:";
-$a->strings["Location:"] = "Posizione:";
-$a->strings["Title:"] = "Titolo:";
-$a->strings["Share this event"] = "Condividi questo evento";
-$a->strings["Select"] = "Seleziona";
-$a->strings["View %s's profile @ %s"] = "Vedi il profilo di %s @ %s";
-$a->strings["%s from %s"] = "%s da %s";
-$a->strings["View in context"] = "Vedi nel contesto";
-$a->strings["%d comment"] = array(
-       0 => "%d commento",
-       1 => "%d commenti",
-);
-$a->strings["comment"] = array(
-       0 => "",
-       1 => "commento",
-);
-$a->strings["show more"] = "mostra di più";
-$a->strings["Private Message"] = "Messaggio privato";
-$a->strings["I like this (toggle)"] = "Mi piace (clic per cambiare)";
-$a->strings["like"] = "mi piace";
-$a->strings["I don't like this (toggle)"] = "Non mi piace (clic per cambiare)";
-$a->strings["dislike"] = "non mi piace";
-$a->strings["Share this"] = "Condividi questo";
-$a->strings["share"] = "condividi";
-$a->strings["This is you"] = "Questo sei tu";
-$a->strings["Comment"] = "Commento";
-$a->strings["Bold"] = "Grassetto";
-$a->strings["Italic"] = "Corsivo";
-$a->strings["Underline"] = "Sottolineato";
-$a->strings["Quote"] = "Citazione";
-$a->strings["Code"] = "Codice";
-$a->strings["Image"] = "Immagine";
-$a->strings["Link"] = "Link";
-$a->strings["Video"] = "Video";
-$a->strings["Preview"] = "Anteprima";
-$a->strings["Edit"] = "Modifica";
-$a->strings["add star"] = "aggiungi a speciali";
-$a->strings["remove star"] = "rimuovi da speciali";
-$a->strings["toggle star status"] = "Inverti stato preferito";
-$a->strings["starred"] = "preferito";
-$a->strings["add tag"] = "aggiungi tag";
-$a->strings["save to folder"] = "salva nella cartella";
-$a->strings["to"] = "a";
-$a->strings["Wall-to-Wall"] = "Da bacheca a bacheca";
-$a->strings["via Wall-To-Wall:"] = "da bacheca a bacheca";
-$a->strings["Remove My Account"] = "Rimuovi il mio account";
-$a->strings["This will completely remove your account. Once this has been done it is not recoverable."] = "Questo comando rimuoverà completamente il tuo account. Una volta rimosso non potrai più recuperarlo.";
-$a->strings["Please enter your password for verification:"] = "Inserisci la tua password per verifica:";
-$a->strings["Friendica Communications Server - Setup"] = "Friendica Comunicazione Server - Impostazioni";
-$a->strings["Could not connect to database."] = " Impossibile collegarsi con il database.";
-$a->strings["Could not create table."] = "Impossibile creare le tabelle.";
-$a->strings["Your Friendica site database has been installed."] = "Il tuo Friendica è stato installato.";
-$a->strings["You may need to import the file \"database.sql\" manually using phpmyadmin or mysql."] = "Potresti dover importare il file \"database.sql\" manualmente con phpmyadmin o mysql";
-$a->strings["Please see the file \"INSTALL.txt\"."] = "Leggi il file \"INSTALL.txt\".";
-$a->strings["System check"] = "Controllo sistema";
-$a->strings["Check again"] = "Controlla ancora";
-$a->strings["Database connection"] = "Connessione al database";
-$a->strings["In order to install Friendica we need to know how to connect to your database."] = "Per installare Friendica dobbiamo sapere come collegarci al tuo database.";
-$a->strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Contatta il tuo fornitore di hosting o l'amministratore del sito se hai domande su queste impostazioni.";
-$a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "Il database dovrà già esistere. Se non esiste, crealo prima di continuare.";
-$a->strings["Database Server Name"] = "Nome del database server";
-$a->strings["Database Login Name"] = "Nome utente database";
-$a->strings["Database Login Password"] = "Password utente database";
-$a->strings["Database Name"] = "Nome database";
-$a->strings["Site administrator email address"] = "Indirizzo email dell'amministratore del sito";
-$a->strings["Your account email address must match this in order to use the web admin panel."] = "Il tuo indirizzo email deve corrispondere a questo per poter usare il pannello di amministrazione web.";
-$a->strings["Please select a default timezone for your website"] = "Seleziona il fuso orario predefinito per il tuo sito web";
-$a->strings["Site settings"] = "Impostazioni sito";
-$a->strings["Could not find a command line version of PHP in the web server PATH."] = "Non riesco a trovare la versione di PHP da riga di comando nel PATH del server web";
-$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 <a href='http://friendica.com/node/27'>'Activating scheduled tasks'</a>"] = "Se non hai una versione a linea di comando di PHP installata sul tuo server, non sarai in grado di avviare il processo di poll in background via cron. Vedi <a href='http://friendica.com/node/27'>'Activating scheduled tasks'</a>";
-$a->strings["PHP executable path"] = "Percorso eseguibile PHP";
-$a->strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "Inserisci il percorso completo all'eseguibile di php. Puoi lasciare bianco questo campo per continuare l'installazione.";
-$a->strings["Command line PHP"] = "PHP da riga di comando";
-$a->strings["PHP executable is not the php cli binary (could be cgi-fgci version)"] = "L'eseguibile PHP non è il binario php cli (potrebbe essere la versione cgi-fcgi)";
-$a->strings["Found PHP version: "] = "Versione PHP:";
-$a->strings["PHP cli binary"] = "Binario PHP cli";
-$a->strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "La versione da riga di comando di PHP nel sistema non ha abilitato \"register_argc_argv\".";
-$a->strings["This is required for message delivery to work."] = "E' obbligatorio per far funzionare la consegna dei messaggi.";
-$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"] = "Errore: la funzione \"openssl_pkey_new\" in questo sistema non è in grado di generare le chiavi di criptazione";
-$a->strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "Se stai eseguendo friendika su windows, guarda \"http://www.php.net/manual/en/openssl.installation.php\".";
-$a->strings["Generate encryption keys"] = "Genera chiavi di criptazione";
-$a->strings["libCurl PHP module"] = "modulo PHP libCurl";
-$a->strings["GD graphics PHP module"] = "modulo PHP GD graphics";
-$a->strings["OpenSSL PHP module"] = "modulo PHP OpenSSL";
-$a->strings["mysqli PHP module"] = "modulo PHP mysqli";
-$a->strings["mb_string PHP module"] = "modulo PHP mb_string";
-$a->strings["Apache mod_rewrite module"] = "Modulo mod_rewrite di Apache";
-$a->strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Errore: E' il modulo mod-rewrite di Apache è richiesto, ma non risulta installato";
-$a->strings["Error: libCURL PHP module required but not installed."] = "Errore: il modulo libCURL di PHP è richiesto, ma non risulta installato.";
-$a->strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Errore: Il modulo GD graphics di PHP con supporto a JPEG è richiesto, ma non risulta installato.";
-$a->strings["Error: openssl PHP module required but not installed."] = "Errore: il modulo openssl di PHP è richiesto, ma non risulta installato.";
-$a->strings["Error: mysqli PHP module required but not installed."] = "Errore: il modulo mysqli di PHP è richiesto, ma non risulta installato";
-$a->strings["Error: mb_string PHP module required but not installed."] = "Errore: il modulo PHP mb_string è richiesto, ma non risulta installato.";
-$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."] = "L'installazione web deve poter creare un file chiamato \".htconfig.php\" nella cartella principale del tuo web server ma non è in grado di farlo.";
-$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."] = "Ciò è dovuto spesso a impostazioni di permessi, dato che il web server può non essere in grado di scrivere il file nella tua cartella, anche se tu puoi.";
-$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."] = "Alla fine di questa procedura, di daremo un testo da salvare in un file chiamato .htconfig.php nella tua cartella principale di Friendica";
-$a->strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"INSTALL.txt\" for instructions."] = "Puoi in alternativa saltare questa procedura ed eseguire l'installazione manualmente. Vedi il file \"INSTALL.txt\" per le istruzioni.";
-$a->strings[".htconfig.php is writable"] = ".htconfig.php è scrivibile";
-$a->strings["Friendica uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "Friendica usa il motore di template Smarty3 per renderizzare le sue pagine web. Smarty3 compila i template in PHP per velocizzare il rendering.";
-$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."] = "Per salvare questi template compilati, il server werb ha bisogno dell'accesso in scrittura alla cartella view/smarty3/ nella cartella principale dei Friendica.";
-$a->strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "Per favore, controlla che l'utente con cui il tuo server web gira (es www-data) ha accesso in scrittura a questa cartella.";
-$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."] = "Nota: come misura di sicurezza, dovresti dare accesso in scrittura solo alla cartella view/smarty3, non ai template (.tpl) che contiene.";
-$a->strings["view/smarty3 is writable"] = "view/smarty3 è scrivibile";
-$a->strings["Url rewrite in .htaccess is not working. Check your server configuration."] = "La riscrittura degli url in .htaccess non funziona. Controlla la configurazione del tuo server.";
-$a->strings["Url rewrite is working"] = "La riscrittura degli url funziona";
-$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."] = "Il file di configurazione del database \".htconfig.php\" non può essere scritto. Usa il testo qui di seguito per creare un file di configurazione nella cartella principale del tuo sito.";
-$a->strings["<h1>What next</h1>"] = "<h1>Cosa fare ora</h1>";
-$a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "IMPORTANTE: Devi impostare [manualmente] la pianificazione del poller.";
-$a->strings["Number of daily wall messages for %s exceeded. Message failed."] = "Numero giornaliero di messaggi per %s superato. Invio fallito.";
-$a->strings["Unable to check your home location."] = "Impossibile controllare la tua posizione di origine.";
-$a->strings["No recipient."] = "Nessun destinatario.";
-$a->strings["If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders."] = "Se vuoi che %s ti risponda, controlla che le tue impostazioni di privacy permettano la ricezione di messaggi privati da mittenti sconosciuti.";
-$a->strings["Help:"] = "Guida:";
-$a->strings["Help"] = "Guida";
-$a->strings["Not Found"] = "Non trovato";
-$a->strings["Page not found."] = "Pagina non trovata.";
-$a->strings["%1\$s welcomes %2\$s"] = "%s dà il benvenuto a %s";
-$a->strings["Welcome to %s"] = "Benvenuto su %s";
-$a->strings["Sorry, maybe your upload is bigger than the PHP configuration allows"] = "Mi spiace, forse il fie che stai caricando è più grosso di quanto la configurazione di PHP permetta";
-$a->strings["Or - did you try to upload an empty file?"] = "O.. non avrai provato a caricare un file vuoto?";
-$a->strings["File exceeds size limit of %d"] = "Il file supera la dimensione massima di %d";
-$a->strings["File upload failed."] = "Caricamento del file non riuscito.";
-$a->strings["Profile Match"] = "Profili corrispondenti";
-$a->strings["No keywords to match. Please add keywords to your default profile."] = "Nessuna parola chiave per l'abbinamento. Aggiungi parole chiave al tuo profilo predefinito.";
-$a->strings["is interested in:"] = "è interessato a:";
-$a->strings["Connect"] = "Connetti";
-$a->strings["link"] = "collegamento";
-$a->strings["Not available."] = "Non disponibile.";
-$a->strings["Community"] = "Comunità";
-$a->strings["No results."] = "Nessun risultato.";
-$a->strings["everybody"] = "tutti";
-$a->strings["Additional features"] = "Funzionalità aggiuntive";
-$a->strings["Display"] = "Visualizzazione";
-$a->strings["Social Networks"] = "Social Networks";
-$a->strings["Delegations"] = "Delegazioni";
-$a->strings["Connected apps"] = "Applicazioni collegate";
-$a->strings["Export personal data"] = "Esporta dati personali";
-$a->strings["Remove account"] = "Rimuovi account";
-$a->strings["Missing some important data!"] = "Mancano alcuni dati importanti!";
-$a->strings["Failed to connect with email account using the settings provided."] = "Impossibile collegarsi all'account email con i parametri forniti.";
-$a->strings["Email settings updated."] = "Impostazioni e-mail aggiornate.";
-$a->strings["Features updated"] = "Funzionalità aggiornate";
-$a->strings["Relocate message has been send to your contacts"] = "Il messaggio di trasloco è stato inviato ai tuoi contatti";
-$a->strings["Passwords do not match. Password unchanged."] = "Le password non corrispondono. Password non cambiata.";
-$a->strings["Empty passwords are not allowed. Password unchanged."] = "Le password non possono essere vuote. Password non cambiata.";
-$a->strings["Wrong password."] = "Password sbagliata.";
-$a->strings["Password changed."] = "Password cambiata.";
-$a->strings["Password update failed. Please try again."] = "Aggiornamento password fallito. Prova ancora.";
-$a->strings[" Please use a shorter name."] = " Usa un nome più corto.";
-$a->strings[" Name too short."] = " Nome troppo corto.";
-$a->strings["Wrong Password"] = "Password Sbagliata";
-$a->strings[" Not valid email."] = " Email non valida.";
-$a->strings[" Cannot change to that email."] = "Non puoi usare quella email.";
-$a->strings["Private forum has no privacy permissions. Using default privacy group."] = "Il forum privato non ha permessi di privacy. Uso il gruppo di privacy predefinito.";
-$a->strings["Private forum has no privacy permissions and no default privacy group."] = "Il gruppo privato non ha permessi di privacy e nessun gruppo di privacy predefinito.";
-$a->strings["Settings updated."] = "Impostazioni aggiornate.";
-$a->strings["Add application"] = "Aggiungi applicazione";
+$a->strings["Name"] = "Nome";
 $a->strings["Consumer Key"] = "Consumer Key";
 $a->strings["Consumer Secret"] = "Consumer Secret";
 $a->strings["Redirect"] = "Redirect";
@@ -838,8 +831,10 @@ $a->strings["Plugin Settings"] = "Impostazioni plugin";
 $a->strings["Off"] = "Spento";
 $a->strings["On"] = "Acceso";
 $a->strings["Additional Features"] = "Funzionalità aggiuntive";
+$a->strings["General Social Media Settings"] = "Impostazioni Media Sociali";
+$a->strings["Disable intelligent shortening"] = "Disabilita accorciamento intelligente";
+$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."] = "Normalmente il sistema tenta di trovare il migliore link da aggiungere a un post accorciato. Se questa opzione è abilitata, ogni post accorciato conterrà sempre un link al post originale su Friendica.";
 $a->strings["Built-in support for %s connectivity is %s"] = "Il supporto integrato per la connettività con %s è %s";
-$a->strings["Diaspora"] = "Diaspora";
 $a->strings["enabled"] = "abilitato";
 $a->strings["disabled"] = "disabilitato";
 $a->strings["StatusNet"] = "StatusNet";
@@ -859,6 +854,7 @@ $a->strings["Action after import:"] = "Azione post importazione:";
 $a->strings["Mark as seen"] = "Segna come letto";
 $a->strings["Move to folder"] = "Sposta nella cartella";
 $a->strings["Move to folder:"] = "Sposta nella cartella:";
+$a->strings["No special theme for mobile devices"] = "Nessun tema speciale per i dispositivi mobili";
 $a->strings["Display Settings"] = "Impostazioni Grafiche";
 $a->strings["Display Theme:"] = "Tema:";
 $a->strings["Mobile Theme:"] = "Tema mobile:";
@@ -889,13 +885,13 @@ $a->strings["Publish your default profile in your local site directory?"] = "Pub
 $a->strings["No"] = "No";
 $a->strings["Publish your default profile in the global social directory?"] = "Pubblica il tuo profilo predefinito nell'elenco sociale globale";
 $a->strings["Hide your contact/friend list from viewers of your default profile?"] = "Nascondi la lista dei tuoi contatti/amici dai visitatori del tuo profilo predefinito";
-$a->strings["Hide your profile details from unknown viewers?"] = "Nascondi i dettagli del tuo profilo ai visitatori sconosciuti?";
-$a->strings["If enabled, posting public messages to Diaspora and other networks isn't possible."] = "";
+$a->strings["If enabled, posting public messages to Diaspora and other networks isn't possible."] = "Se abilitato, l'invio di messaggi pubblici verso Diaspora e altri network non sarà possibile";
 $a->strings["Allow friends to post to your profile page?"] = "Permetti agli amici di scrivere sulla tua pagina profilo?";
 $a->strings["Allow friends to tag your posts?"] = "Permetti agli amici di taggare i tuoi messaggi?";
 $a->strings["Allow us to suggest you as a potential friend to new members?"] = "Ci permetti di suggerirti come potenziale amico ai nuovi membri?";
 $a->strings["Permit unknown people to send you private mail?"] = "Permetti a utenti sconosciuti di inviarti messaggi privati?";
 $a->strings["Profile is <strong>not published</strong>."] = "Il profilo <strong>non è pubblicato</strong>.";
+$a->strings["or"] = "o";
 $a->strings["Your Identity Address is"] = "L'indirizzo della tua identità è";
 $a->strings["Automatically expire posts after this many days:"] = "Fai scadere i post automaticamente dopo x giorni:";
 $a->strings["If empty, posts will not expire. Expired posts will be deleted"] = "Se lasciato vuoto, i messaggi non verranno cancellati.";
@@ -915,7 +911,6 @@ $a->strings["Current Password:"] = "Password Attuale:";
 $a->strings["Your current password to confirm the changes"] = "La tua password attuale per confermare le modifiche";
 $a->strings["Password:"] = "Password:";
 $a->strings["Basic Settings"] = "Impostazioni base";
-$a->strings["Full Name:"] = "Nome completo:";
 $a->strings["Email Address:"] = "Indirizzo Email:";
 $a->strings["Your Timezone:"] = "Il tuo fuso orario:";
 $a->strings["Default Post Location:"] = "Località predefinita:";
@@ -945,56 +940,113 @@ $a->strings["You receive a private message"] = "Ricevi un messaggio privato";
 $a->strings["You receive a friend suggestion"] = "Hai ricevuto un suggerimento di amicizia";
 $a->strings["You are tagged in a post"] = "Sei stato taggato in un post";
 $a->strings["You are poked/prodded/etc. in a post"] = "Sei 'toccato'/'spronato'/ecc. in un post";
-$a->strings["Text-only notification emails"] = "";
-$a->strings["Send text only notification emails, without the html part"] = "";
+$a->strings["Activate desktop notifications"] = "";
+$a->strings["Note: This is an experimental feature, as being not supported by each browser"] = "";
+$a->strings["You will now receive desktop notifications!"] = "";
+$a->strings["Text-only notification emails"] = "Email di notifica in solo testo";
+$a->strings["Send text only notification emails, without the html part"] = "Invia le email di notifica in solo testo, senza la parte in html";
 $a->strings["Advanced Account/Page Type Settings"] = "Impostazioni avanzate Account/Tipo di pagina";
 $a->strings["Change the behaviour of this account for special situations"] = "Modifica il comportamento di questo account in situazioni speciali";
 $a->strings["Relocate"] = "Trasloca";
 $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."] = "Se hai spostato questo profilo da un'altro server, e alcuni dei tuoi contatti non ricevono i tuoi aggiornamenti, prova a premere questo bottone.";
 $a->strings["Resend relocate message to contacts"] = "Reinvia il messaggio di trasloco";
-$a->strings["This introduction has already been accepted."] = "Questa presentazione è già stata accettata.";
-$a->strings["Profile location is not valid or does not contain profile information."] = "L'indirizzo del profilo non è valido o non contiene un profilo.";
-$a->strings["Warning: profile location has no identifiable owner name."] = "Attenzione: l'indirizzo del profilo non riporta il nome del proprietario.";
-$a->strings["Warning: profile location has no profile photo."] = "Attenzione: l'indirizzo del profilo non ha una foto.";
-$a->strings["%d required parameter was not found at the given location"] = array(
-       0 => "%d parametro richiesto non è stato trovato all'indirizzo dato",
-       1 => "%d parametri richiesti non sono stati trovati all'indirizzo dato",
+$a->strings["Common Friends"] = "Amici in comune";
+$a->strings["No contacts in common."] = "Nessun contatto in comune.";
+$a->strings["Remote privacy information not available."] = "Informazioni remote sulla privacy non disponibili.";
+$a->strings["Visible to:"] = "Visibile a:";
+$a->strings["%d contact edited."] = array(
+       0 => "%d contatto modificato",
+       1 => "%d contatti modificati",
 );
-$a->strings["Introduction complete."] = "Presentazione completa.";
-$a->strings["Unrecoverable protocol error."] = "Errore di comunicazione.";
-$a->strings["Profile unavailable."] = "Profilo non disponibile.";
-$a->strings["%s has received too many connection requests today."] = "%s ha ricevuto troppe richieste di connessione per oggi.";
-$a->strings["Spam protection measures have been invoked."] = "Sono state attivate le misure di protezione contro lo spam.";
-$a->strings["Friends are advised to please try again in 24 hours."] = "Gli amici sono pregati di riprovare tra 24 ore.";
-$a->strings["Invalid locator"] = "Invalid locator";
-$a->strings["Invalid email address."] = "Indirizzo email non valido.";
-$a->strings["This account has not been configured for email. Request failed."] = "Questo account non è stato configurato per l'email. Richiesta fallita.";
-$a->strings["Unable to resolve your name at the provided location."] = "Impossibile risolvere il tuo nome nella posizione indicata.";
-$a->strings["You have already introduced yourself here."] = "Ti sei già presentato qui.";
-$a->strings["Apparently you are already friends with %s."] = "Pare che tu e %s siate già amici.";
-$a->strings["Invalid profile URL."] = "Indirizzo profilo non valido.";
-$a->strings["Disallowed profile URL."] = "Indirizzo profilo non permesso.";
-$a->strings["Your introduction has been sent."] = "La tua presentazione è stata inviata.";
-$a->strings["Please login to confirm introduction."] = "Accedi per confermare la presentazione.";
-$a->strings["Incorrect identity currently logged in. Please login to <strong>this</strong> profile."] = "Non hai fatto accesso con l'identità corretta. Accedi a <strong>questo</strong> profilo.";
-$a->strings["Hide this contact"] = "Nascondi questo contatto";
-$a->strings["Welcome home %s."] = "Bentornato a casa %s.";
-$a->strings["Please confirm your introduction/connection request to %s."] = "Conferma la tua richiesta di connessione con %s.";
-$a->strings["Confirm"] = "Conferma";
-$a->strings["Please enter your 'Identity Address' from one of the following supported communications networks:"] = "Inserisci il tuo 'Indirizzo Identità' da uno dei seguenti network supportati:";
-$a->strings["If you are not yet a member of the free social web, <a href=\"http://dir.friendica.com/siteinfo\">follow this link to find a public Friendica site and join us today</a>."] = "Se non sei un membro del web sociale libero,  <a href=\"http://dir.friendica.com/siteinfo\">segui questo link per trovare un sito Friendica pubblico e unisciti a noi oggi</a>";
-$a->strings["Friend/Connection Request"] = "Richieste di amicizia/connessione";
-$a->strings["Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"] = "Esempi: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca";
-$a->strings["Please answer the following:"] = "Rispondi:";
-$a->strings["Does %s know you?"] = "%s ti conosce?";
-$a->strings["Add a personal note:"] = "Aggiungi una nota personale:";
-$a->strings["Friendica"] = "Friendica";
-$a->strings["StatusNet/Federated Social Web"] = "StatusNet/Federated Social Web";
-$a->strings[" - please do not use this form.  Instead, enter %s into your Diaspora search bar."] = " - per favore non usare questa form. Invece, inserisci %s nella tua barra di ricerca su Diaspora.";
-$a->strings["Your Identity Address:"] = "L'indirizzo della tua identità:";
-$a->strings["Submit Request"] = "Invia richiesta";
+$a->strings["Could not access contact record."] = "Non è possibile accedere al contatto.";
+$a->strings["Could not locate selected profile."] = "Non riesco a trovare il profilo selezionato.";
+$a->strings["Contact updated."] = "Contatto aggiornato.";
+$a->strings["Failed to update contact record."] = "Errore nell'aggiornamento del contatto.";
+$a->strings["Contact has been blocked"] = "Il contatto è stato bloccato";
+$a->strings["Contact has been unblocked"] = "Il contatto è stato sbloccato";
+$a->strings["Contact has been ignored"] = "Il contatto è ignorato";
+$a->strings["Contact has been unignored"] = "Il contatto non è più ignorato";
+$a->strings["Contact has been archived"] = "Il contatto è stato archiviato";
+$a->strings["Contact has been unarchived"] = "Il contatto è stato dearchiviato";
+$a->strings["Do you really want to delete this contact?"] = "Vuoi veramente cancellare questo contatto?";
+$a->strings["Contact has been removed."] = "Il contatto è stato rimosso.";
+$a->strings["You are mutual friends with %s"] = "Sei amico reciproco con %s";
+$a->strings["You are sharing with %s"] = "Stai condividendo con %s";
+$a->strings["%s is sharing with you"] = "%s sta condividendo con te";
+$a->strings["Private communications are not available for this contact."] = "Le comunicazioni private non sono disponibili per questo contatto.";
+$a->strings["Never"] = "Mai";
+$a->strings["(Update was successful)"] = "(L'aggiornamento è stato completato)";
+$a->strings["(Update was not successful)"] = "(L'aggiornamento non è stato completato)";
+$a->strings["Suggest friends"] = "Suggerisci amici";
+$a->strings["Network type: %s"] = "Tipo di rete: %s";
+$a->strings["View all contacts"] = "Vedi tutti i contatti";
+$a->strings["Unblock"] = "Sblocca";
+$a->strings["Block"] = "Blocca";
+$a->strings["Toggle Blocked status"] = "Inverti stato \"Blocca\"";
+$a->strings["Unignore"] = "Non ignorare";
+$a->strings["Toggle Ignored status"] = "Inverti stato \"Ignora\"";
+$a->strings["Unarchive"] = "Dearchivia";
+$a->strings["Archive"] = "Archivia";
+$a->strings["Toggle Archive status"] = "Inverti stato \"Archiviato\"";
+$a->strings["Repair"] = "Ripara";
+$a->strings["Advanced Contact Settings"] = "Impostazioni avanzate Contatto";
+$a->strings["Communications lost with this contact!"] = "Comunicazione con questo contatto persa!";
+$a->strings["Fetch further information for feeds"] = "Recupera maggiori infomazioni per i feed";
+$a->strings["Disabled"] = "Disabilitato";
+$a->strings["Fetch information"] = "Recupera informazioni";
+$a->strings["Fetch information and keywords"] = "Recupera informazioni e parole chiave";
+$a->strings["Contact Editor"] = "Editor dei Contatti";
+$a->strings["Profile Visibility"] = "Visibilità del profilo";
+$a->strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Seleziona il profilo che vuoi mostrare a %s quando visita il tuo profilo in modo sicuro.";
+$a->strings["Contact Information / Notes"] = "Informazioni / Note sul contatto";
+$a->strings["Edit contact notes"] = "Modifica note contatto";
+$a->strings["Visit %s's profile [%s]"] = "Visita il profilo di %s [%s]";
+$a->strings["Block/Unblock contact"] = "Blocca/Sblocca contatto";
+$a->strings["Ignore contact"] = "Ignora il contatto";
+$a->strings["Repair URL settings"] = "Impostazioni riparazione URL";
+$a->strings["View conversations"] = "Vedi conversazioni";
+$a->strings["Delete contact"] = "Rimuovi contatto";
+$a->strings["Last update:"] = "Ultimo aggiornamento:";
+$a->strings["Update public posts"] = "Aggiorna messaggi pubblici";
+$a->strings["Update now"] = "Aggiorna adesso";
+$a->strings["Currently blocked"] = "Bloccato";
+$a->strings["Currently ignored"] = "Ignorato";
+$a->strings["Currently archived"] = "Al momento archiviato";
+$a->strings["Replies/likes to your public posts <strong>may</strong> still be visible"] = "Risposte ai tuoi post pubblici <strong>possono</strong> essere comunque visibili";
+$a->strings["Notification for new posts"] = "Notifica per i nuovi messaggi";
+$a->strings["Send a notification of every new post of this contact"] = "Invia una notifica per ogni nuovo messaggio di questo contatto";
+$a->strings["Blacklisted keywords"] = "Parole chiave in blacklist";
+$a->strings["Comma separated list of keywords that should not be converted to hashtags, when \"Fetch information and keywords\" is selected"] = "Lista separata da virgola di parole chiave che non dovranno essere convertite in hastag, quando \"Recupera informazioni e parole chiave\" è selezionato";
+$a->strings["Suggestions"] = "Suggerimenti";
+$a->strings["Suggest potential friends"] = "Suggerisci potenziali amici";
+$a->strings["Show all contacts"] = "Mostra tutti i contatti";
+$a->strings["Unblocked"] = "Sbloccato";
+$a->strings["Only show unblocked contacts"] = "Mostra solo contatti non bloccati";
+$a->strings["Blocked"] = "Bloccato";
+$a->strings["Only show blocked contacts"] = "Mostra solo contatti bloccati";
+$a->strings["Ignored"] = "Ignorato";
+$a->strings["Only show ignored contacts"] = "Mostra solo contatti ignorati";
+$a->strings["Archived"] = "Achiviato";
+$a->strings["Only show archived contacts"] = "Mostra solo contatti archiviati";
+$a->strings["Hidden"] = "Nascosto";
+$a->strings["Only show hidden contacts"] = "Mostra solo contatti nascosti";
+$a->strings["Mutual Friendship"] = "Amicizia reciproca";
+$a->strings["is a fan of yours"] = "è un tuo fan";
+$a->strings["you are a fan of"] = "sei un fan di";
+$a->strings["Edit contact"] = "Modifca contatto";
+$a->strings["Search your contacts"] = "Cerca nei tuoi contatti";
+$a->strings["Finding: "] = "Ricerca: ";
+$a->strings["Sorry, maybe your upload is bigger than the PHP configuration allows"] = "Mi spiace, forse il fie che stai caricando è più grosso di quanto la configurazione di PHP permetta";
+$a->strings["Or - did you try to upload an empty file?"] = "O.. non avrai provato a caricare un file vuoto?";
+$a->strings["File exceeds size limit of %d"] = "Il file supera la dimensione massima di %d";
+$a->strings["File upload failed."] = "Caricamento del file non riuscito.";
+$a->strings["[Embedded content - reload page to view]"] = "[Contenuto incorporato - ricarica la pagina per visualizzarlo correttamente]";
+$a->strings["Export account"] = "Esporta account";
+$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."] = "Esporta le informazioni del tuo account e dei contatti. Usa questa funzione per fare un backup del tuo account o per spostarlo in un altro server.";
+$a->strings["Export all"] = "Esporta tutto";
+$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)"] = "Esporta le informazioni del tuo account, i tuoi contatti e tutti i tuoi elementi in json. Puo' diventare un file veramente molto grosso e metterci un sacco di tempo. Usa questa funzione per fare un backup completo del tuo account (le foto non sono esportate)";
 $a->strings["Registration successful. Please check your email for further instructions."] = "Registrazione completata. Controlla la tua mail per ulteriori informazioni.";
-$a->strings["Failed to send email message. Here your accout details:<br> login: %s<br> password: %s<br><br>You can change your password after login."] = "";
+$a->strings["Failed to send email message. Here your accout details:<br> login: %s<br> password: %s<br><br>You can change your password after login."] = "Si è verificato un errore inviando l'email. I dettagli del tuo account:<br> login: %s<br> password: %s<br><br>Puoi cambiare la password dopo il login.";
 $a->strings["Your registration can not be processed."] = "La tua registrazione non puo' essere elaborata.";
 $a->strings["Your registration is pending approval by the site owner."] = "La tua richiesta è in attesa di approvazione da parte del prorietario del sito.";
 $a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Questo sito ha superato il numero di registrazioni giornaliere consentite. Prova di nuovo domani.";
@@ -1004,226 +1056,382 @@ $a->strings["Your OpenID (optional): "] = "Il tuo OpenID (opzionale): ";
 $a->strings["Include your profile in member directory?"] = "Includi il tuo profilo nell'elenco pubblico?";
 $a->strings["Membership on this site is by invitation only."] = "La registrazione su questo sito è solo su invito.";
 $a->strings["Your invitation ID: "] = "L'ID del tuo invito:";
+$a->strings["Registration"] = "Registrazione";
 $a->strings["Your Full Name (e.g. Joe Smith): "] = "Il tuo nome completo (es. Mario Rossi): ";
 $a->strings["Your Email Address: "] = "Il tuo indirizzo email: ";
 $a->strings["Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be '<strong>nickname@\$sitename</strong>'."] = "Scegli un nome utente. Deve cominciare con una lettera. L'indirizzo del tuo profilo sarà '<strong>soprannome@\$sitename</strong>'.";
 $a->strings["Choose a nickname: "] = "Scegli un nome utente: ";
-$a->strings["Register"] = "Registrati";
 $a->strings["Import"] = "Importa";
 $a->strings["Import your profile to this friendica instance"] = "Importa il tuo profilo in questo server friendica";
+$a->strings["Post successful."] = "Inviato!";
 $a->strings["System down for maintenance"] = "Sistema in manutenzione";
-$a->strings["Search"] = "Cerca";
-$a->strings["Global Directory"] = "Elenco globale";
-$a->strings["Find on this site"] = "Cerca nel sito";
-$a->strings["Site Directory"] = "Elenco del sito";
-$a->strings["Age: "] = "Età : ";
-$a->strings["Gender: "] = "Genere:";
-$a->strings["Gender:"] = "Genere:";
-$a->strings["Status:"] = "Stato:";
-$a->strings["Homepage:"] = "Homepage:";
-$a->strings["About:"] = "Informazioni:";
-$a->strings["No entries (some entries may be hidden)."] = "Nessuna voce (qualche voce potrebbe essere nascosta).";
-$a->strings["No potential page delegates located."] = "Nessun potenziale delegato per la pagina è stato trovato.";
-$a->strings["Delegate Page Management"] = "Gestione delegati per la pagina";
-$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."] = "I Delegati sono in grando di gestire tutti gli aspetti di questa pagina, tranne per i settaggi di base dell'account. Non delegare il tuo account personale a nessuno di cui non ti fidi ciecamente.";
-$a->strings["Existing Page Managers"] = "Gestori Pagina Esistenti";
-$a->strings["Existing Page Delegates"] = "Delegati Pagina Esistenti";
-$a->strings["Potential Delegates"] = "Delegati Potenziali";
-$a->strings["Add"] = "Aggiungi";
-$a->strings["No entries."] = "Nessun articolo.";
-$a->strings["Common Friends"] = "Amici in comune";
-$a->strings["No contacts in common."] = "Nessun contatto in comune.";
-$a->strings["Export account"] = "Esporta account";
-$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."] = "Esporta le informazioni del tuo account e dei contatti. Usa questa funzione per fare un backup del tuo account o per spostarlo in un altro server.";
-$a->strings["Export all"] = "Esporta tutto";
-$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)"] = "Esporta le informazioni del tuo account, i tuoi contatti e tutti i tuoi elementi in json. Puo' diventare un file veramente molto grosso e metterci un sacco di tempo. Usa questa funzione per fare un backup completo del tuo account (le foto non sono esportate)";
-$a->strings["%1\$s is currently %2\$s"] = "%1\$s al momento è %2\$s";
-$a->strings["Mood"] = "Umore";
-$a->strings["Set your current mood and tell your friends"] = "Condividi il tuo umore con i tuoi amici";
+$a->strings["Access to this profile has been restricted."] = "L'accesso a questo profilo è stato limitato.";
+$a->strings["Tips for New Members"] = "Consigli per i Nuovi Utenti";
+$a->strings["Public access denied."] = "Accesso negato.";
+$a->strings["No videos selected"] = "Nessun video selezionato";
+$a->strings["Access to this item is restricted."] = "Questo oggetto non è visibile a tutti.";
+$a->strings["View Album"] = "Sfoglia l'album";
+$a->strings["Recent Videos"] = "Video Recenti";
+$a->strings["Upload New Videos"] = "Carica Nuovo Video";
+$a->strings["Manage Identities and/or Pages"] = "Gestisci indentità e/o pagine";
+$a->strings["Toggle between different identities or community/group pages which share your account details or which you have been granted \"manage\" permissions"] = "Cambia tra differenti identità o pagine comunità/gruppi che condividono il tuo account o per cui hai i permessi di gestione";
+$a->strings["Select an identity to manage: "] = "Seleziona un'identità da gestire:";
+$a->strings["Item not found"] = "Oggetto non trovato";
+$a->strings["Edit post"] = "Modifica messaggio";
+$a->strings["People Search"] = "Cerca persone";
+$a->strings["No matches"] = "Nessun risultato";
+$a->strings["Account approved."] = "Account approvato.";
+$a->strings["Registration revoked for %s"] = "Registrazione revocata per %s";
+$a->strings["Please login."] = "Accedi.";
+$a->strings["This introduction has already been accepted."] = "Questa presentazione è già stata accettata.";
+$a->strings["Profile location is not valid or does not contain profile information."] = "L'indirizzo del profilo non è valido o non contiene un profilo.";
+$a->strings["Warning: profile location has no identifiable owner name."] = "Attenzione: l'indirizzo del profilo non riporta il nome del proprietario.";
+$a->strings["Warning: profile location has no profile photo."] = "Attenzione: l'indirizzo del profilo non ha una foto.";
+$a->strings["%d required parameter was not found at the given location"] = array(
+       0 => "%d parametro richiesto non è stato trovato all'indirizzo dato",
+       1 => "%d parametri richiesti non sono stati trovati all'indirizzo dato",
+);
+$a->strings["Introduction complete."] = "Presentazione completa.";
+$a->strings["Unrecoverable protocol error."] = "Errore di comunicazione.";
+$a->strings["Profile unavailable."] = "Profilo non disponibile.";
+$a->strings["%s has received too many connection requests today."] = "%s ha ricevuto troppe richieste di connessione per oggi.";
+$a->strings["Spam protection measures have been invoked."] = "Sono state attivate le misure di protezione contro lo spam.";
+$a->strings["Friends are advised to please try again in 24 hours."] = "Gli amici sono pregati di riprovare tra 24 ore.";
+$a->strings["Invalid locator"] = "Invalid locator";
+$a->strings["Invalid email address."] = "Indirizzo email non valido.";
+$a->strings["This account has not been configured for email. Request failed."] = "Questo account non è stato configurato per l'email. Richiesta fallita.";
+$a->strings["Unable to resolve your name at the provided location."] = "Impossibile risolvere il tuo nome nella posizione indicata.";
+$a->strings["You have already introduced yourself here."] = "Ti sei già presentato qui.";
+$a->strings["Apparently you are already friends with %s."] = "Pare che tu e %s siate già amici.";
+$a->strings["Invalid profile URL."] = "Indirizzo profilo non valido.";
+$a->strings["Your introduction has been sent."] = "La tua presentazione è stata inviata.";
+$a->strings["Please login to confirm introduction."] = "Accedi per confermare la presentazione.";
+$a->strings["Incorrect identity currently logged in. Please login to <strong>this</strong> profile."] = "Non hai fatto accesso con l'identità corretta. Accedi a <strong>questo</strong> profilo.";
+$a->strings["Confirm"] = "Conferma";
+$a->strings["Hide this contact"] = "Nascondi questo contatto";
+$a->strings["Welcome home %s."] = "Bentornato a casa %s.";
+$a->strings["Please confirm your introduction/connection request to %s."] = "Conferma la tua richiesta di connessione con %s.";
+$a->strings["Please enter your 'Identity Address' from one of the following supported communications networks:"] = "Inserisci il tuo 'Indirizzo Identità' da uno dei seguenti network supportati:";
+$a->strings["If you are not yet a member of the free social web, <a href=\"http://dir.friendica.com/siteinfo\">follow this link to find a public Friendica site and join us today</a>."] = "Se non sei un membro del web sociale libero,  <a href=\"http://dir.friendica.com/siteinfo\">segui questo link per trovare un sito Friendica pubblico e unisciti a noi oggi</a>";
+$a->strings["Friend/Connection Request"] = "Richieste di amicizia/connessione";
+$a->strings["Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"] = "Esempi: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca";
+$a->strings["Please answer the following:"] = "Rispondi:";
+$a->strings["Does %s know you?"] = "%s ti conosce?";
+$a->strings["Add a personal note:"] = "Aggiungi una nota personale:";
+$a->strings["StatusNet/Federated Social Web"] = "StatusNet/Federated Social Web";
+$a->strings[" - please do not use this form.  Instead, enter %s into your Diaspora search bar."] = " - per favore non usare questa form. Invece, inserisci %s nella tua barra di ricerca su Diaspora.";
+$a->strings["Your Identity Address:"] = "L'indirizzo della tua identità:";
+$a->strings["Submit Request"] = "Invia richiesta";
+$a->strings["Files"] = "File";
+$a->strings["Authorize application connection"] = "Autorizza la connessione dell'applicazione";
+$a->strings["Return to your app and insert this Securty Code:"] = "Torna alla tua applicazione e inserisci questo codice di sicurezza:";
+$a->strings["Please login to continue."] = "Effettua il login per continuare.";
+$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Vuoi autorizzare questa applicazione per accedere ai messaggi e ai contatti, e / o creare nuovi messaggi per te?";
 $a->strings["Do you really want to delete this suggestion?"] = "Vuoi veramente cancellare questo suggerimento?";
-$a->strings["Friend Suggestions"] = "Contatti suggeriti";
 $a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Nessun suggerimento disponibile. Se questo è un sito nuovo, riprova tra 24 ore.";
 $a->strings["Ignore/Hide"] = "Ignora / Nascondi";
-$a->strings["Profile deleted."] = "Profilo elminato.";
-$a->strings["Profile-"] = "Profilo-";
-$a->strings["New profile created."] = "Il nuovo profilo è stato creato.";
-$a->strings["Profile unavailable to clone."] = "Impossibile duplicare il profilo.";
-$a->strings["Profile Name is required."] = "Il nome profilo è obbligatorio .";
-$a->strings["Marital Status"] = "Stato civile";
-$a->strings["Romantic Partner"] = "Partner romantico";
-$a->strings["Likes"] = "Mi piace";
-$a->strings["Dislikes"] = "Non mi piace";
-$a->strings["Work/Employment"] = "Lavoro/Impiego";
-$a->strings["Religion"] = "Religione";
-$a->strings["Political Views"] = "Orientamento Politico";
-$a->strings["Gender"] = "Sesso";
-$a->strings["Sexual Preference"] = "Preferenza sessuale";
-$a->strings["Homepage"] = "Homepage";
-$a->strings["Interests"] = "Interessi";
-$a->strings["Address"] = "Indirizzo";
-$a->strings["Location"] = "Posizione";
-$a->strings["Profile updated."] = "Profilo aggiornato.";
-$a->strings[" and "] = "e ";
-$a->strings["public profile"] = "profilo pubblico";
-$a->strings["%1\$s changed %2\$s to &ldquo;%3\$s&rdquo;"] = "%1\$s ha cambiato %2\$s in &ldquo;%3\$s&rdquo;";
-$a->strings[" - Visit %1\$s's %2\$s"] = "- Visita  %2\$s di %1\$s";
-$a->strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s ha un %2\$s aggiornato. Ha cambiato %3\$s";
-$a->strings["Hide contacts and friends:"] = "Nascondi contatti:";
-$a->strings["Hide your contact/friend list from viewers of this profile?"] = "Nascondi la tua lista di contatti/amici ai visitatori di questo profilo?";
-$a->strings["Edit Profile Details"] = "Modifica i dettagli del profilo";
-$a->strings["Change Profile Photo"] = "Cambia la foto del profilo";
-$a->strings["View this profile"] = "Visualizza questo profilo";
-$a->strings["Create a new profile using these settings"] = "Crea un nuovo profilo usando queste impostazioni";
-$a->strings["Clone this profile"] = "Clona questo profilo";
-$a->strings["Delete this profile"] = "Elimina questo profilo";
-$a->strings["Basic information"] = "Informazioni di base";
-$a->strings["Profile picture"] = "Immagine del profilo";
-$a->strings["Preferences"] = "Preferenze";
-$a->strings["Status information"] = "Informazioni stato";
-$a->strings["Additional information"] = "Informazioni aggiuntive";
-$a->strings["Profile Name:"] = "Nome del profilo:";
-$a->strings["Your Full Name:"] = "Il tuo nome completo:";
-$a->strings["Title/Description:"] = "Breve descrizione (es. titolo, posizione, altro):";
-$a->strings["Your Gender:"] = "Il tuo sesso:";
-$a->strings["Birthday (%s):"] = "Compleanno (%s)";
-$a->strings["Street Address:"] = "Indirizzo (via/piazza):";
-$a->strings["Locality/City:"] = "Località:";
-$a->strings["Postal/Zip Code:"] = "CAP:";
-$a->strings["Country:"] = "Nazione:";
-$a->strings["Region/State:"] = "Regione/Stato:";
-$a->strings["<span class=\"heart\">&hearts;</span> Marital Status:"] = "<span class=\"heart\">&hearts;</span> Stato sentimentale:";
-$a->strings["Who: (if applicable)"] = "Con chi: (se possibile)";
-$a->strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Esempio: cathy123, Cathy Williams, cathy@example.com";
-$a->strings["Since [date]:"] = "Dal [data]:";
-$a->strings["Sexual Preference:"] = "Preferenze sessuali:";
-$a->strings["Homepage URL:"] = "Homepage:";
-$a->strings["Hometown:"] = "Paese natale:";
-$a->strings["Political Views:"] = "Orientamento politico:";
-$a->strings["Religious Views:"] = "Orientamento religioso:";
-$a->strings["Public Keywords:"] = "Parole chiave visibili a tutti:";
-$a->strings["Private Keywords:"] = "Parole chiave private:";
-$a->strings["Likes:"] = "Mi piace:";
-$a->strings["Dislikes:"] = "Non mi piace:";
-$a->strings["Example: fishing photography software"] = "Esempio: pesca fotografia programmazione";
-$a->strings["(Used for suggesting potential friends, can be seen by others)"] = "(E' utilizzato per suggerire potenziali amici, può essere visto da altri)";
-$a->strings["(Used for searching profiles, never shown to others)"] = "(Usato per cercare tra i profili, non è mai visibile agli altri)";
-$a->strings["Tell us about yourself..."] = "Raccontaci di te...";
-$a->strings["Hobbies/Interests"] = "Hobby/interessi";
-$a->strings["Contact information and Social Networks"] = "Informazioni su contatti e social network";
-$a->strings["Musical interests"] = "Interessi musicali";
-$a->strings["Books, literature"] = "Libri, letteratura";
-$a->strings["Television"] = "Televisione";
-$a->strings["Film/dance/culture/entertainment"] = "Film/danza/cultura/intrattenimento";
-$a->strings["Love/romance"] = "Amore";
-$a->strings["Work/employment"] = "Lavoro/impiego";
-$a->strings["School/education"] = "Scuola/educazione";
-$a->strings["This is your <strong>public</strong> profile.<br />It <strong>may</strong> be visible to anybody using the internet."] = "Questo è il tuo profilo <strong>publico</strong>.<br /><strong>Potrebbe</strong> essere visto da chiunque attraverso internet.";
-$a->strings["Edit/Manage Profiles"] = "Modifica / Gestisci profili";
-$a->strings["Change profile photo"] = "Cambia la foto del profilo";
-$a->strings["Create New Profile"] = "Crea un nuovo profilo";
-$a->strings["Profile Image"] = "Immagine del Profilo";
-$a->strings["visible to everybody"] = "visibile a tutti";
-$a->strings["Edit visibility"] = "Modifica visibilità";
-$a->strings["Item not found"] = "Oggetto non trovato";
-$a->strings["Edit post"] = "Modifica messaggio";
-$a->strings["upload photo"] = "carica foto";
-$a->strings["Attach file"] = "Allega file";
-$a->strings["attach file"] = "allega file";
-$a->strings["web link"] = "link web";
-$a->strings["Insert video link"] = "Inserire collegamento video";
-$a->strings["video link"] = "link video";
-$a->strings["Insert audio link"] = "Inserisci collegamento audio";
-$a->strings["audio link"] = "link audio";
-$a->strings["Set your location"] = "La tua posizione";
-$a->strings["set location"] = "posizione";
-$a->strings["Clear browser location"] = "Rimuovi la localizzazione data dal browser";
-$a->strings["clear location"] = "canc. pos.";
-$a->strings["Permission settings"] = "Impostazioni permessi";
-$a->strings["CC: email addresses"] = "CC: indirizzi email";
-$a->strings["Public post"] = "Messaggio pubblico";
-$a->strings["Set title"] = "Scegli un titolo";
-$a->strings["Categories (comma-separated list)"] = "Categorie (lista separata da virgola)";
-$a->strings["Example: bob@example.com, mary@example.com"] = "Esempio: bob@example.com, mary@example.com";
-$a->strings["This is Friendica, version"] = "Questo è Friendica, versione";
-$a->strings["running at web location"] = "in esecuzione all'indirizzo web";
-$a->strings["Please visit <a href=\"http://friendica.com\">Friendica.com</a> to learn more about the Friendica project."] = "Visita <a href=\"http://friendica.com\">Friendica.com</a> per saperne di più sul progetto Friendica.";
-$a->strings["Bug reports and issues: please visit"] = "Segnalazioni di bug e problemi: visita";
-$a->strings["Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - dot com"] = "Suggerimenti, lodi, donazioni, ecc -  e-mail a  \"Info\" at Friendica punto com";
-$a->strings["Installed plugins/addons/apps:"] = "Plugin/addon/applicazioni instalate";
-$a->strings["No installed plugins/addons/apps"] = "Nessun plugin/addons/applicazione installata";
-$a->strings["Authorize application connection"] = "Autorizza la connessione dell'applicazione";
-$a->strings["Return to your app and insert this Securty Code:"] = "Torna alla tua applicazione e inserisci questo codice di sicurezza:";
-$a->strings["Please login to continue."] = "Effettua il login per continuare.";
-$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Vuoi autorizzare questa applicazione per accedere ai messaggi e ai contatti, e / o creare nuovi messaggi per te?";
-$a->strings["Remote privacy information not available."] = "Informazioni remote sulla privacy non disponibili.";
-$a->strings["Visible to:"] = "Visibile a:";
-$a->strings["Personal Notes"] = "Note personali";
-$a->strings["l F d, Y \\@ g:i A"] = "l d F Y \\@ G:i";
-$a->strings["Time Conversion"] = "Conversione Ora";
-$a->strings["Friendica provides this service for sharing events with other networks and friends in unknown timezones."] = "Friendica fornisce questo servizio per la condivisione di eventi con altre reti e amici in fusi orari sconosciuti.";
-$a->strings["UTC time: %s"] = "Ora UTC: %s";
-$a->strings["Current timezone: %s"] = "Fuso orario corrente: %s";
-$a->strings["Converted localtime: %s"] = "Ora locale convertita: %s";
-$a->strings["Please select your timezone:"] = "Selezionare il tuo fuso orario:";
-$a->strings["Poke/Prod"] = "Tocca/Pungola";
-$a->strings["poke, prod or do other things to somebody"] = "tocca, pungola o fai altre cose a qualcuno";
-$a->strings["Recipient"] = "Destinatario";
-$a->strings["Choose what you wish to do to recipient"] = "Scegli cosa vuoi fare al destinatario";
-$a->strings["Make this post private"] = "Rendi questo post privato";
-$a->strings["Total invitation limit exceeded."] = "Limite totale degli inviti superato.";
-$a->strings["%s : Not a valid email address."] = "%s: non è un indirizzo email valido.";
-$a->strings["Please join us on Friendica"] = "Unisiciti a noi su Friendica";
-$a->strings["Invitation limit exceeded. Please contact your site administrator."] = "Limite degli inviti superato. Contatta l'amministratore del tuo sito.";
-$a->strings["%s : Message delivery failed."] = "%s: la consegna del messaggio fallita.";
-$a->strings["%d message sent."] = array(
-       0 => "%d messaggio inviato.",
-       1 => "%d messaggi inviati.",
+$a->strings["Contacts who are not members of a group"] = "Contatti che non sono membri di un gruppo";
+$a->strings["Contact not found."] = "Contatto non trovato.";
+$a->strings["Friend suggestion sent."] = "Suggerimento di amicizia inviato.";
+$a->strings["Suggest Friends"] = "Suggerisci amici";
+$a->strings["Suggest a friend for %s"] = "Suggerisci un amico a %s";
+$a->strings["link"] = "collegamento";
+$a->strings["No contacts."] = "Nessun contatto.";
+$a->strings["Theme settings updated."] = "Impostazioni del tema aggiornate.";
+$a->strings["Site"] = "Sito";
+$a->strings["Users"] = "Utenti";
+$a->strings["Themes"] = "Temi";
+$a->strings["DB updates"] = "Aggiornamenti Database";
+$a->strings["Logs"] = "Log";
+$a->strings["probe address"] = "controlla indirizzo";
+$a->strings["check webfinger"] = "verifica webfinger";
+$a->strings["Plugin Features"] = "Impostazioni Plugins";
+$a->strings["diagnostics"] = "diagnostiche";
+$a->strings["User registrations waiting for confirmation"] = "Utenti registrati in attesa di conferma";
+$a->strings["Normal Account"] = "Account normale";
+$a->strings["Soapbox Account"] = "Account per comunicati e annunci";
+$a->strings["Community/Celebrity Account"] = "Account per celebrità o per comunità";
+$a->strings["Automatic Friend Account"] = "Account per amicizia automatizzato";
+$a->strings["Blog Account"] = "Account Blog";
+$a->strings["Private Forum"] = "Forum Privato";
+$a->strings["Message queues"] = "Code messaggi";
+$a->strings["Administration"] = "Amministrazione";
+$a->strings["Summary"] = "Sommario";
+$a->strings["Registered users"] = "Utenti registrati";
+$a->strings["Pending registrations"] = "Registrazioni in attesa";
+$a->strings["Version"] = "Versione";
+$a->strings["Active plugins"] = "Plugin attivi";
+$a->strings["Can not parse base url. Must have at least <scheme>://<domain>"] = "Impossibile analizzare l'url base. Deve avere almeno [schema]://[dominio]";
+$a->strings["Site settings updated."] = "Impostazioni del sito aggiornate.";
+$a->strings["No community page"] = "Nessuna pagina Comunità";
+$a->strings["Public postings from users of this site"] = "Messaggi pubblici dagli utenti di questo sito";
+$a->strings["Global community page"] = "Pagina Comunità globale";
+$a->strings["At post arrival"] = "All'arrivo di un messaggio";
+$a->strings["Multi user instance"] = "Istanza multi utente";
+$a->strings["Closed"] = "Chiusa";
+$a->strings["Requires approval"] = "Richiede l'approvazione";
+$a->strings["Open"] = "Aperta";
+$a->strings["No SSL policy, links will track page SSL state"] = "Nessuna gestione SSL, i link seguiranno lo stato SSL della pagina";
+$a->strings["Force all links to use SSL"] = "Forza tutti i linki ad usare SSL";
+$a->strings["Self-signed certificate, use SSL for local links only (discouraged)"] = "Certificato auto-firmato, usa SSL solo per i link locali (sconsigliato)";
+$a->strings["File upload"] = "Caricamento file";
+$a->strings["Policies"] = "Politiche";
+$a->strings["Advanced"] = "Avanzate";
+$a->strings["Performance"] = "Performance";
+$a->strings["Relocate - WARNING: advanced function. Could make this server unreachable."] = "Trasloca - ATTENZIONE: funzione avanzata! Puo' rendere questo server irraggiungibile.";
+$a->strings["Site name"] = "Nome del sito";
+$a->strings["Host name"] = "Nome host";
+$a->strings["Sender Email"] = "Mittente email";
+$a->strings["Banner/Logo"] = "Banner/Logo";
+$a->strings["Shortcut icon"] = "Icona shortcut";
+$a->strings["Touch icon"] = "Icona touch";
+$a->strings["Additional Info"] = "Informazioni aggiuntive";
+$a->strings["For public servers: you can add additional information here that will be listed at dir.friendica.com/siteinfo."] = "Per server pubblici: puoi aggiungere informazioni extra che verrano mostrate su dir.friendica.com/siteinfo.";
+$a->strings["System language"] = "Lingua di sistema";
+$a->strings["System theme"] = "Tema di sistema";
+$a->strings["Default system theme - may be over-ridden by user profiles - <a href='#' id='cnftheme'>change theme settings</a>"] = "Tema di sistema - puo' essere sovrascritto dalle impostazioni utente - <a href='#' id='cnftheme'>cambia le impostazioni del tema</a>";
+$a->strings["Mobile system theme"] = "Tema mobile di sistema";
+$a->strings["Theme for mobile devices"] = "Tema per dispositivi mobili";
+$a->strings["SSL link policy"] = "Gestione link SSL";
+$a->strings["Determines whether generated links should be forced to use SSL"] = "Determina se i link generati devono essere forzati a usare SSL";
+$a->strings["Force SSL"] = "Forza SSL";
+$a->strings["Force all Non-SSL requests to SSL - Attention: on some systems it could lead to endless loops."] = "Forza tutte le richieste non SSL su SSL - Attenzione: su alcuni sistemi puo' portare a loop senza fine";
+$a->strings["Old style 'Share'"] = "Ricondivisione vecchio stile";
+$a->strings["Deactivates the bbcode element 'share' for repeating items."] = "Disattiva l'elemento bbcode 'share' con elementi ripetuti";
+$a->strings["Hide help entry from navigation menu"] = "Nascondi la voce 'Guida' dal menu di navigazione";
+$a->strings["Hides the menu entry for the Help pages from the navigation menu. You can still access it calling /help directly."] = "Nasconde la voce per le pagine della guida dal menu di navigazione. E' comunque possibile accedervi richiamando /help direttamente.";
+$a->strings["Single user instance"] = "Instanza a singolo utente";
+$a->strings["Make this instance multi-user or single-user for the named user"] = "Rendi questa istanza multi utente o a singolo utente per l'utente selezionato";
+$a->strings["Maximum image size"] = "Massima dimensione immagini";
+$a->strings["Maximum size in bytes of uploaded images. Default is 0, which means no limits."] = "Massima dimensione in byte delle immagini caricate. Il default è 0, cioè nessun limite.";
+$a->strings["Maximum image length"] = "Massima lunghezza immagine";
+$a->strings["Maximum length in pixels of the longest side of uploaded images. Default is -1, which means no limits."] = "Massima lunghezza in pixel del lato più lungo delle immagini caricate. Predefinito a -1, ovvero nessun limite.";
+$a->strings["JPEG image quality"] = "Qualità immagini JPEG";
+$a->strings["Uploaded JPEGS will be saved at this quality setting [0-100]. Default is 100, which is full quality."] = "Le immagini JPEG caricate verranno salvate con questa qualità [0-100]. Predefinito è 100, ovvero qualità piena.";
+$a->strings["Register policy"] = "Politica di registrazione";
+$a->strings["Maximum Daily Registrations"] = "Massime registrazioni giornaliere";
+$a->strings["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."] = "Se la registrazione è permessa, qui si definisce il massimo numero di nuovi utenti registrati da accettare giornalmente. Se la registrazione è chiusa, questa impostazione non ha effetto.";
+$a->strings["Register text"] = "Testo registrazione";
+$a->strings["Will be displayed prominently on the registration page."] = "Sarà mostrato ben visibile nella pagina di registrazione.";
+$a->strings["Accounts abandoned after x days"] = "Account abbandonati dopo x giorni";
+$a->strings["Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit."] = "Non spreca risorse di sistema controllando siti esterni per gli account abbandonati. Immettere 0 per nessun limite di tempo.";
+$a->strings["Allowed friend domains"] = "Domini amici consentiti";
+$a->strings["Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains"] = "Elenco separato da virglola dei domini che possono stabilire amicizie con questo sito. Sono accettati caratteri jolly. Lascalo vuoto per accettare qualsiasi dominio.";
+$a->strings["Allowed email domains"] = "Domini email consentiti";
+$a->strings["Comma separated list of domains which are allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains"] = "Elenco separato da virgola dei domini permessi come indirizzi email in fase di registrazione a questo sito. Sono accettati caratteri jolly. Lascalo vuoto per accettare qualsiasi dominio.";
+$a->strings["Block public"] = "Blocca pagine pubbliche";
+$a->strings["Check to block public access to all otherwise public personal pages on this site unless you are currently logged in."] = "Seleziona per bloccare l'accesso pubblico a tutte le pagine personali di questo sito, a meno di essere loggato.";
+$a->strings["Force publish"] = "Forza publicazione";
+$a->strings["Check to force all profiles on this site to be listed in the site directory."] = "Seleziona per forzare tutti i profili di questo sito ad essere compresi  nell'elenco di questo sito.";
+$a->strings["Global directory update URL"] = "URL aggiornamento Elenco Globale";
+$a->strings["URL to update the global directory. If this is not set, the global directory is completely unavailable to the application."] = "URL dell'elenco globale. Se vuoto, l'elenco globale sarà completamente disabilitato.";
+$a->strings["Allow threaded items"] = "Permetti commenti nidificati";
+$a->strings["Allow infinite level threading for items on this site."] = "Permette un infinito livello di nidificazione dei commenti su questo sito.";
+$a->strings["Private posts by default for new users"] = "Post privati di default per i nuovi utenti";
+$a->strings["Set default post permissions for all new members to the default privacy group rather than public."] = "Imposta i permessi predefiniti dei post per tutti i nuovi utenti come privati per il gruppo predefinito, invece che pubblici.";
+$a->strings["Don't include post content in email notifications"] = "Non includere il contenuto dei post nelle notifiche via email";
+$a->strings["Don't include the content of a post/comment/private message/etc. in the email notifications that are sent out from this site, as a privacy measure."] = "Non include il contenuti del post/commento/messaggio privato/etc. nelle notifiche email che sono inviate da questo sito, per privacy";
+$a->strings["Disallow public access to addons listed in the apps menu."] = "Disabilita l'accesso pubblico ai plugin raccolti nel menu apps.";
+$a->strings["Checking this box will restrict addons listed in the apps menu to members only."] = "Selezionando questo box si limiterà ai soli membri l'accesso agli addon nel menu applicazioni";
+$a->strings["Don't embed private images in posts"] = "Non inglobare immagini private nei post";
+$a->strings["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 photos will have to authenticate and load each image, which may take a while."] = "Non sostituire le foto locali nei post con una copia incorporata dell'immagine. Questo significa che i contatti che riceveranno i post contenenti foto private dovranno autenticarsi e caricare ogni immagine, cosa che puo' richiedere un po' di tempo.";
+$a->strings["Allow Users to set remote_self"] = "Permetti agli utenti di impostare 'io remoto'";
+$a->strings["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."] = "Selezionando questo, a tutti gli utenti sarà permesso di impostare qualsiasi contatto come 'io remoto' nella pagina di modifica del contatto. Impostare questa opzione fa si che tutti i messaggi di quel contatto vengano ripetuti nello stream del'utente.";
+$a->strings["Block multiple registrations"] = "Blocca registrazioni multiple";
+$a->strings["Disallow users to register additional accounts for use as pages."] = "Non permette all'utente di registrare account extra da usare come pagine.";
+$a->strings["OpenID support"] = "Supporto OpenID";
+$a->strings["OpenID support for registration and logins."] = "Supporta OpenID per la registrazione e il login";
+$a->strings["Fullname check"] = "Controllo nome completo";
+$a->strings["Force users to register with a space between firstname and lastname in Full name, as an antispam measure"] = "Forza gli utenti a registrarsi con uno spazio tra il nome e il cognome in \"Nome completo\", come misura antispam";
+$a->strings["UTF-8 Regular expressions"] = "Espressioni regolari UTF-8";
+$a->strings["Use PHP UTF8 regular expressions"] = "Usa le espressioni regolari PHP in UTF8";
+$a->strings["Community Page Style"] = "Stile pagina Comunità";
+$a->strings["Type of community page to show. 'Global community' shows every public posting from an open distributed network that arrived on this server."] = "Tipo di pagina Comunità da mostrare. 'Comunità Globale' mostra tutti i messaggi pubblici arrivati su questo server da network aperti distribuiti.";
+$a->strings["Posts per user on community page"] = "Messaggi per utente nella pagina Comunità";
+$a->strings["The maximum number of posts per user on the community page. (Not valid for 'Global Community')"] = "Il numero massimo di messaggi per utente mostrato nella pagina Comuntà (non valido per 'Comunità globale')";
+$a->strings["Enable OStatus support"] = "Abilita supporto OStatus";
+$a->strings["Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All communications in OStatus are public, so privacy warnings will be occasionally displayed."] = "Fornisce la compatibilità integrata a OStatus (StatusNet, Gnu Social, etc.). Tutte le comunicazioni su OStatus sono pubbliche, quindi un avviso di privacy verrà mostrato occasionalmente.";
+$a->strings["OStatus conversation completion interval"] = "Intervallo completamento conversazioni OStatus";
+$a->strings["How often shall the poller check for new entries in OStatus conversations? This can be a very ressource task."] = "quanto spesso il poller deve controllare se esistono nuovi commenti in una conversazione OStatus? Questo è un lavoro che puo' richiedere molte risorse.";
+$a->strings["Enable Diaspora support"] = "Abilita il supporto a Diaspora";
+$a->strings["Provide built-in Diaspora network compatibility."] = "Fornisce compatibilità con il network Diaspora.";
+$a->strings["Only allow Friendica contacts"] = "Permetti solo contatti Friendica";
+$a->strings["All contacts must use Friendica protocols. All other built-in communication protocols disabled."] = "Tutti i contatti devono usare il protocollo di Friendica. Tutti gli altri protocolli sono disabilitati.";
+$a->strings["Verify SSL"] = "Verifica SSL";
+$a->strings["If you wish, you can turn on strict certificate checking. This will mean you cannot connect (at all) to self-signed SSL sites."] = "Se vuoi, puoi abilitare il controllo rigoroso dei certificati.Questo significa che non potrai collegarti (del tutto) con siti con certificati SSL auto-firmati.";
+$a->strings["Proxy user"] = "Utente Proxy";
+$a->strings["Proxy URL"] = "URL Proxy";
+$a->strings["Network timeout"] = "Timeout rete";
+$a->strings["Value is in seconds. Set to 0 for unlimited (not recommended)."] = "Valore in secondi. Imposta a 0 per illimitato (non raccomandato).";
+$a->strings["Delivery interval"] = "Intervallo di invio";
+$a->strings["Delay background delivery processes by this many seconds to reduce system load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 for large dedicated servers."] = "Ritarda il processo di invio in background  di n secondi per ridurre il carico di sistema. Raccomandato:  4-5 per host condivisit, 2-3 per VPS. 0-1 per grandi server dedicati.";
+$a->strings["Poll interval"] = "Intervallo di poll";
+$a->strings["Delay background polling processes by this many seconds to reduce system load. If 0, use delivery interval."] = "Ritarda il processo di poll in background di n secondi per ridurre il carico di sistema. Se 0, usa l'intervallo di invio.";
+$a->strings["Maximum Load Average"] = "Massimo carico medio";
+$a->strings["Maximum system load before delivery and poll processes are deferred - default 50."] = "Massimo carico di sistema prima che i processi di invio e di poll siano ritardati. Predefinito a 50.";
+$a->strings["Maximum Load Average (Frontend)"] = "Media Massimo Carico (Frontend)";
+$a->strings["Maximum system load before the frontend quits service - default 50."] = "Massimo carico di sistema prima che il frontend fermi il servizio - default 50.";
+$a->strings["Use MySQL full text engine"] = "Usa il motore MySQL full text";
+$a->strings["Activates the full text engine. Speeds up search - but can only search for four and more characters."] = "Attiva il motore full text. Velocizza la ricerca, ma puo' cercare solo per quattro o più caratteri.";
+$a->strings["Suppress Language"] = "Disattiva lingua";
+$a->strings["Suppress language information in meta information about a posting."] = "Disattiva le informazioni sulla lingua nei meta di un post.";
+$a->strings["Suppress Tags"] = "Sopprimi Tags";
+$a->strings["Suppress showing a list of hashtags at the end of the posting."] = "Non mostra la lista di hashtag in coda al messaggio";
+$a->strings["Path to item cache"] = "Percorso cache elementi";
+$a->strings["Cache duration in seconds"] = "Durata della cache in secondi";
+$a->strings["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."] = "Quanto a lungo devono essere mantenuti i file di cache? Il valore predefinito è 86400 secondi (un giorno). Per disabilitare la cache, imposta il valore a -1.";
+$a->strings["Maximum numbers of comments per post"] = "Numero massimo di commenti per post";
+$a->strings["How much comments should be shown for each post? Default value is 100."] = "Quanti commenti devono essere mostrati per ogni post? Default : 100.";
+$a->strings["Path for lock file"] = "Percorso al file di lock";
+$a->strings["Temp path"] = "Percorso file temporanei";
+$a->strings["Base path to installation"] = "Percorso base all'installazione";
+$a->strings["Disable picture proxy"] = "Disabilita il proxy immagini";
+$a->strings["The picture proxy increases performance and privacy. It shouldn't be used on systems with very low bandwith."] = "Il proxy immagini aumenta le performace e la privacy. Non dovrebbe essere usato su server con poca banda disponibile.";
+$a->strings["Enable old style pager"] = "Abilita la paginazione vecchio stile";
+$a->strings["The old style pager has page numbers but slows down massively the page speed."] = "La paginazione vecchio stile mostra i numeri delle pagine, ma rallenta la velocità di caricamento della pagina.";
+$a->strings["Only search in tags"] = "Cerca solo nei tag";
+$a->strings["On large systems the text search can slow down the system extremely."] = "Su server con molti dati, la ricerca nel testo può estremamente rallentare il sistema.";
+$a->strings["New base url"] = "Nuovo url base";
+$a->strings["Update has been marked successful"] = "L'aggiornamento è stato segnato come  di successo";
+$a->strings["Database structure update %s was successfully applied."] = "Aggiornamento struttura database %s applicata con successo.";
+$a->strings["Executing of database structure update %s failed with error: %s"] = "Aggiornamento struttura database %s fallita con errore: %s";
+$a->strings["Executing %s failed with error: %s"] = "Esecuzione di %s fallita con errore: %s";
+$a->strings["Update %s was successfully applied."] = "L'aggiornamento %s è stato applicato con successo";
+$a->strings["Update %s did not return a status. Unknown if it succeeded."] = "L'aggiornamento %s non ha riportato uno stato. Non so se è andato a buon fine.";
+$a->strings["There was no additional update function %s that needed to be called."] = "Non ci sono altre funzioni di aggiornamento %s da richiamare.";
+$a->strings["No failed updates."] = "Nessun aggiornamento fallito.";
+$a->strings["Check database structure"] = "Controlla struttura database";
+$a->strings["Failed Updates"] = "Aggiornamenti falliti";
+$a->strings["This does not include updates prior to 1139, which did not return a status."] = "Questo non include gli aggiornamenti prima del 1139, che non ritornano lo stato.";
+$a->strings["Mark success (if update was manually applied)"] = "Segna completato (se l'update è stato applicato manualmente)";
+$a->strings["Attempt to execute this update step automatically"] = "Cerco di eseguire questo aggiornamento in automatico";
+$a->strings["\n\t\t\tDear %1\$s,\n\t\t\t\tthe administrator of %2\$s has set up an account for you."] = "\nGentile %1\$s,\n    l'amministratore di %2\$s ha impostato un account per te.";
+$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."] = "\nI dettagli del tuo utente sono:\n    Indirizzo del sito: %1\$s\n    Nome utente: %2\$s\n    Password: %3\$s\n\nPuoi cambiare la tua password dalla pagina delle impostazioni del tuo account dopo esserti autenticato.\n\nPer favore, prenditi qualche momento per esaminare tutte le impostazioni presenti.\n\nPotresti voler aggiungere qualche informazione di base al tuo profilo predefinito (nella pagina \"Profili\"), così che le altre persone possano trovarti più facilmente.\n\nTi raccomandiamo di inserire il tuo nome completo, aggiungere una foto, aggiungere qualche parola chiave del profilo (molto utili per trovare nuovi contatti), e magari in quale nazione vivi, se non vuoi essere più specifico di così.\n\nNoi rispettiamo appieno la tua privacy, e nessuna di queste informazioni è necessaria o obbligatoria.\nSe sei nuovo e non conosci nessuno qui, possono aiutarti a trovare qualche nuovo e interessante contatto.\n\nGrazie e benvenuto su %4\$s";
+$a->strings["%s user blocked/unblocked"] = array(
+       0 => "%s utente bloccato/sbloccato",
+       1 => "%s utenti bloccati/sbloccati",
 );
-$a->strings["You have no more invitations available"] = "Non hai altri inviti disponibili";
-$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."] = "Visita %s per una lista di siti pubblici a cui puoi iscriverti. I membri Friendica su altri siti possono collegarsi uno con l'altro, come con membri di molti altri social network.";
-$a->strings["To accept this invitation, please visit and register at %s or any other public Friendica website."] = "Per accettare questo invito, visita e resitrati su %s o su un'altro sito web Friendica aperto al pubblico.";
-$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."] = "I siti Friendica son tutti collegati tra loro per creare una grossa rete sociale rispettosa della privacy, posseduta e controllata dai suoi membri. I siti Friendica possono anche collegarsi a molti altri social network tradizionali. Vai su %s per una lista di siti Friendica alternativi a cui puoi iscriverti.";
-$a->strings["Our apologies. This system is not currently configured to connect with other public sites or invite members."] = "Ci scusiamo, questo sistema non è configurato per collegarsi con altri siti pubblici o per invitare membri.";
-$a->strings["Send invitations"] = "Invia inviti";
-$a->strings["Enter email addresses, one per line:"] = "Inserisci gli indirizzi email, uno per riga:";
-$a->strings["You are cordially invited to join me and other close friends on Friendica - and help us to create a better social web."] = "Sei cordialmente invitato a unirti a me ed ad altri amici su Friendica, e ad aiutarci a creare una rete sociale migliore.";
-$a->strings["You will need to supply this invitation code: \$invite_code"] = "Sarà necessario fornire questo codice invito: \$invite_code";
-$a->strings["Once you have registered, please connect with me via my profile page at:"] = "Una volta registrato, connettiti con me dal mio profilo:";
-$a->strings["For more information about the Friendica project and why we feel it is important, please visit http://friendica.com"] = "Per maggiori informazioni sul progetto Friendica e perchè pensiamo sia importante, visita http://friendica.com";
-$a->strings["Photo Albums"] = "Album foto";
-$a->strings["Contact Photos"] = "Foto dei contatti";
-$a->strings["Upload New Photos"] = "Carica nuove foto";
-$a->strings["Contact information unavailable"] = "I dati di questo contatto non sono disponibili";
-$a->strings["Album not found."] = "Album non trovato.";
-$a->strings["Delete Album"] = "Rimuovi album";
-$a->strings["Do you really want to delete this photo album and all its photos?"] = "Vuoi davvero cancellare questo album e tutte le sue foto?";
-$a->strings["Delete Photo"] = "Rimuovi foto";
-$a->strings["Do you really want to delete this photo?"] = "Vuoi veramente cancellare questa foto?";
-$a->strings["%1\$s was tagged in %2\$s by %3\$s"] = "%1\$s è stato taggato in %2\$s da %3\$s";
-$a->strings["a photo"] = "una foto";
-$a->strings["Image exceeds size limit of "] = "L'immagine supera il limite di";
-$a->strings["Image file is empty."] = "Il file dell'immagine è vuoto.";
-$a->strings["No photos selected"] = "Nessuna foto selezionata";
-$a->strings["You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."] = "Hai usato %1$.2f MBytes su %2$.2f disponibili.";
-$a->strings["Upload Photos"] = "Carica foto";
-$a->strings["New album name: "] = "Nome nuovo album: ";
-$a->strings["or existing album name: "] = "o nome di un album esistente: ";
-$a->strings["Do not show a status post for this upload"] = "Non creare un post per questo upload";
-$a->strings["Permissions"] = "Permessi";
-$a->strings["Private Photo"] = "Foto privata";
-$a->strings["Public Photo"] = "Foto pubblica";
-$a->strings["Edit Album"] = "Modifica album";
-$a->strings["Show Newest First"] = "Mostra nuove foto per prime";
-$a->strings["Show Oldest First"] = "Mostra vecchie foto per prime";
-$a->strings["View Photo"] = "Vedi foto";
-$a->strings["Permission denied. Access to this item may be restricted."] = "Permesso negato. L'accesso a questo elemento può essere limitato.";
-$a->strings["Photo not available"] = "Foto non disponibile";
-$a->strings["View photo"] = "Vedi foto";
-$a->strings["Edit photo"] = "Modifica foto";
-$a->strings["Use as profile photo"] = "Usa come foto del profilo";
-$a->strings["View Full Size"] = "Vedi dimensione intera";
-$a->strings["Tags: "] = "Tag: ";
-$a->strings["[Remove any tag]"] = "[Rimuovi tutti i tag]";
+$a->strings["%s user deleted"] = array(
+       0 => "%s utente cancellato",
+       1 => "%s utenti cancellati",
+);
+$a->strings["User '%s' deleted"] = "Utente '%s' cancellato";
+$a->strings["User '%s' unblocked"] = "Utente '%s' sbloccato";
+$a->strings["User '%s' blocked"] = "Utente '%s' bloccato";
+$a->strings["Add User"] = "Aggiungi utente";
+$a->strings["select all"] = "seleziona tutti";
+$a->strings["User registrations waiting for confirm"] = "Richieste di registrazione in attesa di conferma";
+$a->strings["User waiting for permanent deletion"] = "Utente in attesa di cancellazione definitiva";
+$a->strings["Request date"] = "Data richiesta";
+$a->strings["No registrations."] = "Nessuna registrazione.";
+$a->strings["Deny"] = "Nega";
+$a->strings["Site admin"] = "Amministrazione sito";
+$a->strings["Account expired"] = "Account scaduto";
+$a->strings["New User"] = "Nuovo Utente";
+$a->strings["Register date"] = "Data registrazione";
+$a->strings["Last login"] = "Ultimo accesso";
+$a->strings["Last item"] = "Ultimo elemento";
+$a->strings["Deleted since"] = "Rimosso da";
+$a->strings["Selected users will be deleted!\\n\\nEverything these users had posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "Gli utenti selezionati saranno cancellati!\\n\\nTutto quello che gli utenti hanno inviato su questo sito sarà permanentemente canellato!\\n\\nSei sicuro?";
+$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?"] = "L'utente {0} sarà cancellato!\\n\\nTutto quello che ha inviato su questo sito sarà permanentemente cancellato!\\n\\nSei sicuro?";
+$a->strings["Name of the new user."] = "Nome del nuovo utente.";
+$a->strings["Nickname"] = "Nome utente";
+$a->strings["Nickname of the new user."] = "Nome utente del nuovo utente.";
+$a->strings["Email address of the new user."] = "Indirizzo Email del nuovo utente.";
+$a->strings["Plugin %s disabled."] = "Plugin %s disabilitato.";
+$a->strings["Plugin %s enabled."] = "Plugin %s abilitato.";
+$a->strings["Disable"] = "Disabilita";
+$a->strings["Enable"] = "Abilita";
+$a->strings["Toggle"] = "Inverti";
+$a->strings["Author: "] = "Autore: ";
+$a->strings["Maintainer: "] = "Manutentore: ";
+$a->strings["No themes found."] = "Nessun tema trovato.";
+$a->strings["Screenshot"] = "Anteprima";
+$a->strings["[Experimental]"] = "[Sperimentale]";
+$a->strings["[Unsupported]"] = "[Non supportato]";
+$a->strings["Log settings updated."] = "Impostazioni Log aggiornate.";
+$a->strings["Clear"] = "Pulisci";
+$a->strings["Enable Debugging"] = "Abilita Debugging";
+$a->strings["Log file"] = "File di Log";
+$a->strings["Must be writable by web server. Relative to your Friendica top-level directory."] = "Deve essere scrivibile dal server web. Relativo alla tua directory Friendica.";
+$a->strings["Log level"] = "Livello di Log";
+$a->strings["Close"] = "Chiudi";
+$a->strings["FTP Host"] = "Indirizzo FTP";
+$a->strings["FTP Path"] = "Percorso FTP";
+$a->strings["FTP User"] = "Utente FTP";
+$a->strings["FTP Password"] = "Pasword FTP";
+$a->strings["Image exceeds size limit of %d"] = "La dimensione dell'immagine supera il limite di %d";
+$a->strings["Unable to process image."] = "Impossibile caricare l'immagine.";
+$a->strings["Image upload failed."] = "Caricamento immagine fallito.";
+$a->strings["Welcome to %s"] = "Benvenuto su %s";
+$a->strings["OpenID protocol error. No ID returned."] = "Errore protocollo OpenID. Nessun ID ricevuto.";
+$a->strings["Account not found and OpenID registration is not permitted on this site."] = "L'account non è stato trovato, e la registrazione via OpenID non è permessa su questo sito.";
+$a->strings["Search Results For:"] = "Cerca risultati per:";
+$a->strings["Remove term"] = "Rimuovi termine";
+$a->strings["Commented Order"] = "Ordina per commento";
+$a->strings["Sort by Comment Date"] = "Ordina per data commento";
+$a->strings["Posted Order"] = "Ordina per invio";
+$a->strings["Sort by Post Date"] = "Ordina per data messaggio";
+$a->strings["Posts that mention or involve you"] = "Messaggi che ti citano o coinvolgono";
+$a->strings["New"] = "Nuovo";
+$a->strings["Activity Stream - by date"] = "Activity Stream - per data";
+$a->strings["Shared Links"] = "Links condivisi";
+$a->strings["Interesting Links"] = "Link Interessanti";
+$a->strings["Starred"] = "Preferiti";
+$a->strings["Favourite Posts"] = "Messaggi preferiti";
+$a->strings["Warning: This group contains %s member from an insecure network."] = array(
+       0 => "Attenzione: questo gruppo contiene %s membro da un network insicuro.",
+       1 => "Attenzione: questo gruppo contiene %s membri da un network insicuro.",
+);
+$a->strings["Private messages to this group are at risk of public disclosure."] = "I messaggi privati su questo gruppo potrebbero risultare visibili anche pubblicamente.";
+$a->strings["No such group"] = "Nessun gruppo";
+$a->strings["Group is empty"] = "Il gruppo è vuoto";
+$a->strings["Group: "] = "Gruppo: ";
+$a->strings["Contact: "] = "Contatto:";
+$a->strings["Private messages to this person are at risk of public disclosure."] = "I messaggi privati a questa persona potrebbero risultare visibili anche pubblicamente.";
+$a->strings["Invalid contact."] = "Contatto non valido.";
+$a->strings["- select -"] = "- seleziona -";
+$a->strings["This is Friendica, version"] = "Questo è Friendica, versione";
+$a->strings["running at web location"] = "in esecuzione all'indirizzo web";
+$a->strings["Please visit <a href=\"http://friendica.com\">Friendica.com</a> to learn more about the Friendica project."] = "Visita <a href=\"http://friendica.com\">Friendica.com</a> per saperne di più sul progetto Friendica.";
+$a->strings["Bug reports and issues: please visit"] = "Segnalazioni di bug e problemi: visita";
+$a->strings["Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - dot com"] = "Suggerimenti, lodi, donazioni, ecc -  e-mail a  \"Info\" at Friendica punto com";
+$a->strings["Installed plugins/addons/apps:"] = "Plugin/addon/applicazioni instalate";
+$a->strings["No installed plugins/addons/apps"] = "Nessun plugin/addons/applicazione installata";
+$a->strings["Applications"] = "Applicazioni";
+$a->strings["No installed applications."] = "Nessuna applicazione installata.";
+$a->strings["Upload New Photos"] = "Carica nuove foto";
+$a->strings["Contact information unavailable"] = "I dati di questo contatto non sono disponibili";
+$a->strings["Album not found."] = "Album non trovato.";
+$a->strings["Delete Album"] = "Rimuovi album";
+$a->strings["Do you really want to delete this photo album and all its photos?"] = "Vuoi davvero cancellare questo album e tutte le sue foto?";
+$a->strings["Delete Photo"] = "Rimuovi foto";
+$a->strings["Do you really want to delete this photo?"] = "Vuoi veramente cancellare questa foto?";
+$a->strings["%1\$s was tagged in %2\$s by %3\$s"] = "%1\$s è stato taggato in %2\$s da %3\$s";
+$a->strings["a photo"] = "una foto";
+$a->strings["Image exceeds size limit of "] = "L'immagine supera il limite di";
+$a->strings["Image file is empty."] = "Il file dell'immagine è vuoto.";
+$a->strings["No photos selected"] = "Nessuna foto selezionata";
+$a->strings["You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."] = "Hai usato %1$.2f MBytes su %2$.2f disponibili.";
+$a->strings["Upload Photos"] = "Carica foto";
+$a->strings["New album name: "] = "Nome nuovo album: ";
+$a->strings["or existing album name: "] = "o nome di un album esistente: ";
+$a->strings["Do not show a status post for this upload"] = "Non creare un post per questo upload";
+$a->strings["Permissions"] = "Permessi";
+$a->strings["Private Photo"] = "Foto privata";
+$a->strings["Public Photo"] = "Foto pubblica";
+$a->strings["Edit Album"] = "Modifica album";
+$a->strings["Show Newest First"] = "Mostra nuove foto per prime";
+$a->strings["Show Oldest First"] = "Mostra vecchie foto per prime";
+$a->strings["View Photo"] = "Vedi foto";
+$a->strings["Permission denied. Access to this item may be restricted."] = "Permesso negato. L'accesso a questo elemento può essere limitato.";
+$a->strings["Photo not available"] = "Foto non disponibile";
+$a->strings["View photo"] = "Vedi foto";
+$a->strings["Edit photo"] = "Modifica foto";
+$a->strings["Use as profile photo"] = "Usa come foto del profilo";
+$a->strings["View Full Size"] = "Vedi dimensione intera";
+$a->strings["Tags: "] = "Tag: ";
+$a->strings["[Remove any tag]"] = "[Rimuovi tutti i tag]";
 $a->strings["Rotate CW (right)"] = "Ruota a destra";
 $a->strings["Rotate CCW (left)"] = "Ruota a sinistra";
 $a->strings["New album name"] = "Nuovo nome dell'album";
@@ -1232,566 +1440,372 @@ $a->strings["Add a Tag"] = "Aggiungi tag";
 $a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"] = "Esempio: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping";
 $a->strings["Private photo"] = "Foto privata";
 $a->strings["Public photo"] = "Foto pubblica";
-$a->strings["Share"] = "Condividi";
 $a->strings["Recent Photos"] = "Foto recenti";
-$a->strings["Account approved."] = "Account approvato.";
-$a->strings["Registration revoked for %s"] = "Registrazione revocata per %s";
-$a->strings["Please login."] = "Accedi.";
+$a->strings["The post was created"] = "Il messaggio è stato creato";
+$a->strings["You already added this contact."] = "Hai già aggiunto questo contatto.";
+$a->strings["Contact added"] = "Contatto aggiunto";
 $a->strings["Move account"] = "Muovi account";
 $a->strings["You can import an account from another Friendica server."] = "Puoi importare un account da un altro server Friendica.";
 $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."] = "Devi esportare il tuo account dal vecchio server e caricarlo qui. Noi ricreeremo il tuo vecchio account qui, con tutti i tuoi contatti. Proveremo anche a informare i tuoi amici che ti sei spostato qui.";
 $a->strings["This feature is experimental. We can't import contacts from the OStatus network (statusnet/identi.ca) or from Diaspora"] = "Questa funzione è sperimentale. Non possiamo importare i contatti dalla rete OStatus (status.net/identi.ca) o da Diaspora";
 $a->strings["Account file"] = "File account";
 $a->strings["To export your account, go to \"Settings->Export your personal data\" and select \"Export account\""] = "Per esportare il tuo account, vai su \"Impostazioni -> Esporta i tuoi dati personali\" e seleziona \"Esporta account\"";
-$a->strings["Item not available."] = "Oggetto non disponibile.";
-$a->strings["Item was not found."] = "Oggetto non trovato.";
-$a->strings["Delete this item?"] = "Cancellare questo elemento?";
-$a->strings["show fewer"] = "mostra di meno";
-$a->strings["Update %s failed. See error logs."] = "aggiornamento %s fallito. Guarda i log di errore.";
-$a->strings["Create a New Account"] = "Crea un nuovo account";
-$a->strings["Logout"] = "Esci";
-$a->strings["Nickname or Email address: "] = "Nome utente o indirizzo email: ";
-$a->strings["Password: "] = "Password: ";
-$a->strings["Remember me"] = "Ricordati di me";
-$a->strings["Or login using OpenID: "] = "O entra con OpenID:";
-$a->strings["Forgot your password?"] = "Hai dimenticato la password?";
-$a->strings["Website Terms of Service"] = "Condizioni di servizio del sito web ";
-$a->strings["terms of service"] = "condizioni del servizio";
-$a->strings["Website Privacy Policy"] = "Politiche di privacy del sito";
-$a->strings["privacy policy"] = "politiche di privacy";
-$a->strings["Requested account is not available."] = "L'account richiesto non è disponibile.";
-$a->strings["Edit profile"] = "Modifica il profilo";
-$a->strings["Message"] = "Messaggio";
-$a->strings["Profiles"] = "Profili";
-$a->strings["Manage/edit profiles"] = "Gestisci/modifica i profili";
-$a->strings["Network:"] = "Rete:";
-$a->strings["g A l F d"] = "g A l d F";
-$a->strings["F d"] = "d F";
-$a->strings["[today]"] = "[oggi]";
-$a->strings["Birthday Reminders"] = "Promemoria compleanni";
-$a->strings["Birthdays this week:"] = "Compleanni questa settimana:";
-$a->strings["[No description]"] = "[Nessuna descrizione]";
-$a->strings["Event Reminders"] = "Promemoria";
-$a->strings["Events this week:"] = "Eventi di questa settimana:";
-$a->strings["Status"] = "Stato";
-$a->strings["Status Messages and Posts"] = "Messaggi di stato e post";
-$a->strings["Profile Details"] = "Dettagli del profilo";
-$a->strings["Videos"] = "Video";
-$a->strings["Events and Calendar"] = "Eventi e calendario";
-$a->strings["Only You Can See This"] = "Solo tu puoi vedere questo";
-$a->strings["This entry was edited"] = "Questa voce è stata modificata";
-$a->strings["ignore thread"] = "ignora la discussione";
-$a->strings["unignore thread"] = "non ignorare la discussione";
-$a->strings["toggle ignore status"] = "inverti stato \"Ignora\"";
-$a->strings["ignored"] = "ignorato";
-$a->strings["Categories:"] = "Categorie:";
-$a->strings["Filed under:"] = "Archiviato in:";
-$a->strings["via"] = "via";
-$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."] = "\nGli sviluppatori di Friendica hanno rilasciato l'aggiornamento %s\nrecentemente, ma quando ho provato a installarlo, qualcosa è \nandato terribilmente storto.\nBisogna sistemare le cose e non posso farlo da solo.\nContatta uno sviluppatore se non puoi aiutarmi da solo. Il mio database potrebbe essere invalido.";
-$a->strings["The error message is\n[pre]%s[/pre]"] = "Il messaggio di errore è\n[pre]%s[/pre]";
-$a->strings["Errors encountered creating database tables."] = "La creazione delle tabelle del database ha generato errori.";
-$a->strings["Errors encountered performing database changes."] = "Riscontrati errori applicando le modifiche al database.";
-$a->strings["Logged out."] = "Uscita effettuata.";
-$a->strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "Abbiamo incontrato un problema mentre contattavamo il server OpenID che ci hai fornito. Controlla di averlo scritto giusto.";
-$a->strings["The error message was:"] = "Il messaggio riportato era:";
-$a->strings["Add New Contact"] = "Aggiungi nuovo contatto";
-$a->strings["Enter address or web location"] = "Inserisci posizione o indirizzo web";
-$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Esempio: bob@example.com, http://example.com/barbara";
-$a->strings["%d invitation available"] = array(
-       0 => "%d invito disponibile",
-       1 => "%d inviti disponibili",
+$a->strings["Total invitation limit exceeded."] = "Limite totale degli inviti superato.";
+$a->strings["%s : Not a valid email address."] = "%s: non è un indirizzo email valido.";
+$a->strings["Please join us on Friendica"] = "Unisiciti a noi su Friendica";
+$a->strings["Invitation limit exceeded. Please contact your site administrator."] = "Limite degli inviti superato. Contatta l'amministratore del tuo sito.";
+$a->strings["%s : Message delivery failed."] = "%s: la consegna del messaggio fallita.";
+$a->strings["%d message sent."] = array(
+       0 => "%d messaggio inviato.",
+       1 => "%d messaggi inviati.",
 );
-$a->strings["Find People"] = "Trova persone";
-$a->strings["Enter name or interest"] = "Inserisci un nome o un interesse";
-$a->strings["Connect/Follow"] = "Connetti/segui";
-$a->strings["Examples: Robert Morgenstein, Fishing"] = "Esempi: Mario Rossi, Pesca";
-$a->strings["Similar Interests"] = "Interessi simili";
-$a->strings["Random Profile"] = "Profilo causale";
-$a->strings["Invite Friends"] = "Invita amici";
-$a->strings["Networks"] = "Reti";
-$a->strings["All Networks"] = "Tutte le Reti";
-$a->strings["Saved Folders"] = "Cartelle Salvate";
-$a->strings["Everything"] = "Tutto";
-$a->strings["Categories"] = "Categorie";
-$a->strings["General Features"] = "Funzionalità generali";
-$a->strings["Multiple Profiles"] = "Profili multipli";
-$a->strings["Ability to create multiple profiles"] = "Possibilità di creare profili multipli";
-$a->strings["Post Composition Features"] = "Funzionalità di composizione dei post";
-$a->strings["Richtext Editor"] = "Editor visuale";
-$a->strings["Enable richtext editor"] = "Abilita l'editor visuale";
-$a->strings["Post Preview"] = "Anteprima dei post";
-$a->strings["Allow previewing posts and comments before publishing them"] = "Permetti di avere un'anteprima di messaggi e commenti prima di pubblicarli";
-$a->strings["Auto-mention Forums"] = "Auto-cita i Forum";
-$a->strings["Add/remove mention when a fourm page is selected/deselected in ACL window."] = "Aggiunge o rimuove una citazione quando un forum è selezionato o deselezionato nella finestra dei permessi.";
-$a->strings["Network Sidebar Widgets"] = "Widget della barra laterale nella pagina Rete";
-$a->strings["Search by Date"] = "Cerca per data";
-$a->strings["Ability to select posts by date ranges"] = "Permette di filtrare i post per data";
-$a->strings["Group Filter"] = "Filtra gruppi";
-$a->strings["Enable widget to display Network posts only from selected group"] = "Abilita il widget per filtrare i post solo per il gruppo selezionato";
-$a->strings["Network Filter"] = "Filtro reti";
-$a->strings["Enable widget to display Network posts only from selected network"] = "Abilita il widget per mostare i post solo per la rete selezionata";
-$a->strings["Save search terms for re-use"] = "Salva i termini cercati per riutilizzarli";
-$a->strings["Network Tabs"] = "Schede pagina Rete";
-$a->strings["Network Personal Tab"] = "Scheda Personali";
-$a->strings["Enable tab to display only Network posts that you've interacted on"] = "Abilita la scheda per mostrare solo i post a cui hai partecipato";
-$a->strings["Network New Tab"] = "Scheda Nuovi";
-$a->strings["Enable tab to display only new Network posts (from the last 12 hours)"] = "Abilita la scheda per mostrare solo i post nuovi (nelle ultime 12 ore)";
-$a->strings["Network Shared Links Tab"] = "Scheda Link Condivisi";
-$a->strings["Enable tab to display only Network posts with links in them"] = "Abilita la scheda per mostrare solo i post che contengono link";
-$a->strings["Post/Comment Tools"] = "Strumenti per messaggi/commenti";
-$a->strings["Multiple Deletion"] = "Eliminazione multipla";
-$a->strings["Select and delete multiple posts/comments at once"] = "Seleziona ed elimina vari messagi e commenti in una volta sola";
-$a->strings["Edit Sent Posts"] = "Modifica i post inviati";
-$a->strings["Edit and correct posts and comments after sending"] = "Modifica e correggi messaggi e commenti dopo averli inviati";
-$a->strings["Tagging"] = "Aggiunta tag";
-$a->strings["Ability to tag existing posts"] = "Permette di aggiungere tag ai post già esistenti";
-$a->strings["Post Categories"] = "Cateorie post";
-$a->strings["Add categories to your posts"] = "Aggiungi categorie ai tuoi post";
-$a->strings["Ability to file posts under folders"] = "Permette di archiviare i post in cartelle";
-$a->strings["Dislike Posts"] = "Non mi piace";
-$a->strings["Ability to dislike posts/comments"] = "Permetti di inviare \"non mi piace\" ai messaggi";
-$a->strings["Star Posts"] = "Post preferiti";
-$a->strings["Ability to mark special posts with a star indicator"] = "Permette di segnare i post preferiti con una stella";
-$a->strings["Mute Post Notifications"] = "Silenzia le notifiche di nuovi post";
-$a->strings["Ability to mute notifications for a thread"] = "Permette di silenziare le notifiche di nuovi post in una discussione";
-$a->strings["Connect URL missing."] = "URL di connessione mancante.";
-$a->strings["This site is not configured to allow communications with other networks."] = "Questo sito non è configurato per permettere la comunicazione con altri network.";
-$a->strings["No compatible communication protocols or feeds were discovered."] = "Non sono stati trovati protocolli di comunicazione o feed compatibili.";
-$a->strings["The profile address specified does not provide adequate information."] = "L'indirizzo del profilo specificato non fornisce adeguate informazioni.";
-$a->strings["An author or name was not found."] = "Non è stato trovato un nome o un autore";
-$a->strings["No browser URL could be matched to this address."] = "Nessun URL puo' essere associato a questo indirizzo.";
-$a->strings["Unable to match @-style Identity Address with a known protocol or email contact."] = "Impossibile l'indirizzo identità con un protocollo conosciuto o con un contatto email.";
-$a->strings["Use mailto: in front of address to force email check."] = "Usa \"mailto:\" davanti all'indirizzo per forzare un controllo nelle email.";
-$a->strings["The profile address specified belongs to a network which has been disabled on this site."] = "L'indirizzo del profilo specificato appartiene a un network che è stato disabilitato su questo sito.";
-$a->strings["Limited profile. This person will be unable to receive direct/personal notifications from you."] = "Profilo limitato. Questa persona non sarà in grado di ricevere notifiche personali da te.";
-$a->strings["Unable to retrieve contact information."] = "Impossibile recuperare informazioni sul contatto.";
-$a->strings["following"] = "segue";
-$a->strings["A deleted group with this name was revived. Existing item permissions <strong>may</strong> apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "Un gruppo eliminato con questo nome è stato ricreato. I permessi  esistenti su un elemento <strong>possono</strong> essere applicati a questo gruppo e tutti i membri futuri. Se questo non è ciò che si intende, si prega di creare un altro gruppo con un nome diverso.";
-$a->strings["Default privacy group for new contacts"] = "Gruppo predefinito per i nuovi contatti";
-$a->strings["Everybody"] = "Tutti";
-$a->strings["edit"] = "modifica";
-$a->strings["Edit group"] = "Modifica gruppo";
-$a->strings["Create a new group"] = "Crea un nuovo gruppo";
-$a->strings["Contacts not in any group"] = "Contatti in nessun gruppo.";
-$a->strings["Miscellaneous"] = "Varie";
-$a->strings["year"] = "anno";
-$a->strings["month"] = "mese";
-$a->strings["day"] = "giorno";
-$a->strings["never"] = "mai";
-$a->strings["less than a second ago"] = "meno di un secondo fa";
-$a->strings["years"] = "anni";
-$a->strings["months"] = "mesi";
-$a->strings["week"] = "settimana";
-$a->strings["weeks"] = "settimane";
-$a->strings["days"] = "giorni";
-$a->strings["hour"] = "ora";
-$a->strings["hours"] = "ore";
-$a->strings["minute"] = "minuto";
-$a->strings["minutes"] = "minuti";
-$a->strings["second"] = "secondo";
-$a->strings["seconds"] = "secondi";
-$a->strings["%1\$d %2\$s ago"] = "%1\$d %2\$s fa";
-$a->strings["%s's birthday"] = "Compleanno di %s";
-$a->strings["Happy Birthday %s"] = "Buon compleanno %s";
-$a->strings["Visible to everybody"] = "Visibile a tutti";
-$a->strings["show"] = "mostra";
-$a->strings["don't show"] = "non mostrare";
-$a->strings["[no subject]"] = "[nessun oggetto]";
-$a->strings["stopped following"] = "tolto dai seguiti";
-$a->strings["Poke"] = "Stuzzica";
-$a->strings["View Status"] = "Visualizza stato";
-$a->strings["View Profile"] = "Visualizza profilo";
-$a->strings["View Photos"] = "Visualizza foto";
-$a->strings["Network Posts"] = "Post della Rete";
-$a->strings["Edit Contact"] = "Modifica contatti";
-$a->strings["Drop Contact"] = "Rimuovi contatto";
-$a->strings["Send PM"] = "Invia messaggio privato";
-$a->strings["Welcome "] = "Ciao";
-$a->strings["Please upload a profile photo."] = "Carica una foto per il profilo.";
-$a->strings["Welcome back "] = "Ciao ";
-$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."] = "Il token di sicurezza della form non era corretto. Probabilmente la form è rimasta aperta troppo a lunto (più di tre ore) prima di inviarla.";
-$a->strings["event"] = "l'evento";
-$a->strings["%1\$s poked %2\$s"] = "%1\$s ha stuzzicato %2\$s";
-$a->strings["poked"] = "ha stuzzicato";
-$a->strings["post/item"] = "post/elemento";
-$a->strings["%1\$s marked %2\$s's %3\$s as favorite"] = "%1\$s ha segnato il/la %3\$s di %2\$s come preferito";
-$a->strings["remove"] = "rimuovi";
-$a->strings["Delete Selected Items"] = "Cancella elementi selezionati";
-$a->strings["Follow Thread"] = "Segui la discussione";
-$a->strings["%s likes this."] = "Piace a %s.";
-$a->strings["%s doesn't like this."] = "Non piace a %s.";
-$a->strings["<span  %1\$s>%2\$d people</span> like this"] = "Piace a <span %1\$s>%2\$d persone</span>.";
-$a->strings["<span  %1\$s>%2\$d people</span> don't like this"] = "Non piace a <span %1\$s>%2\$d persone</span>.";
-$a->strings["and"] = "e";
-$a->strings[", and %d other people"] = "e altre %d persone";
-$a->strings["%s like this."] = "Piace a %s.";
-$a->strings["%s don't like this."] = "Non piace a %s.";
-$a->strings["Visible to <strong>everybody</strong>"] = "Visibile a <strong>tutti</strong>";
-$a->strings["Please enter a video link/URL:"] = "Inserisci un collegamento video / URL:";
-$a->strings["Please enter an audio link/URL:"] = "Inserisci un collegamento audio / URL:";
-$a->strings["Tag term:"] = "Tag:";
-$a->strings["Where are you right now?"] = "Dove sei ora?";
-$a->strings["Delete item(s)?"] = "Cancellare questo elemento/i?";
-$a->strings["Post to Email"] = "Invia a email";
-$a->strings["Connectors disabled, since \"%s\" is enabled."] = "Connettore disabilitato, dato che \"%s\" è abilitato.";
-$a->strings["permissions"] = "permessi";
-$a->strings["Post to Groups"] = "Invia ai Gruppi";
-$a->strings["Post to Contacts"] = "Invia ai Contatti";
-$a->strings["Private post"] = "Post privato";
-$a->strings["view full size"] = "vedi a schermo intero";
-$a->strings["newer"] = "nuovi";
-$a->strings["older"] = "vecchi";
-$a->strings["prev"] = "prec";
-$a->strings["first"] = "primo";
-$a->strings["last"] = "ultimo";
-$a->strings["next"] = "succ";
-$a->strings["No contacts"] = "Nessun contatto";
-$a->strings["%d Contact"] = array(
-       0 => "%d contatto",
-       1 => "%d contatti",
+$a->strings["You have no more invitations available"] = "Non hai altri inviti disponibili";
+$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."] = "Visita %s per una lista di siti pubblici a cui puoi iscriverti. I membri Friendica su altri siti possono collegarsi uno con l'altro, come con membri di molti altri social network.";
+$a->strings["To accept this invitation, please visit and register at %s or any other public Friendica website."] = "Per accettare questo invito, visita e resitrati su %s o su un'altro sito web Friendica aperto al pubblico.";
+$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."] = "I siti Friendica son tutti collegati tra loro per creare una grossa rete sociale rispettosa della privacy, posseduta e controllata dai suoi membri. I siti Friendica possono anche collegarsi a molti altri social network tradizionali. Vai su %s per una lista di siti Friendica alternativi a cui puoi iscriverti.";
+$a->strings["Our apologies. This system is not currently configured to connect with other public sites or invite members."] = "Ci scusiamo, questo sistema non è configurato per collegarsi con altri siti pubblici o per invitare membri.";
+$a->strings["Send invitations"] = "Invia inviti";
+$a->strings["Enter email addresses, one per line:"] = "Inserisci gli indirizzi email, uno per riga:";
+$a->strings["You are cordially invited to join me and other close friends on Friendica - and help us to create a better social web."] = "Sei cordialmente invitato a unirti a me ed ad altri amici su Friendica, e ad aiutarci a creare una rete sociale migliore.";
+$a->strings["You will need to supply this invitation code: \$invite_code"] = "Sarà necessario fornire questo codice invito: \$invite_code";
+$a->strings["Once you have registered, please connect with me via my profile page at:"] = "Una volta registrato, connettiti con me dal mio profilo:";
+$a->strings["For more information about the Friendica project and why we feel it is important, please visit http://friendica.com"] = "Per maggiori informazioni sul progetto Friendica e perchè pensiamo sia importante, visita http://friendica.com";
+$a->strings["Access denied."] = "Accesso negato.";
+$a->strings["No valid account found."] = "Nessun account valido trovato.";
+$a->strings["Password reset request issued. Check your email."] = "La richiesta per reimpostare la password è stata inviata. Controlla la tua email.";
+$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."] = "\nGentile %1\$s,\n    abbiamo ricevuto su \"%2\$s\" una richiesta di resettare la password del tuo account. Per confermare questa richiesta, selezionate il link di conferma qui sotto o incollatelo nella barra indirizzo del vostro browser.\n\nSe NON hai richiesto questa modifica, NON selezionare il link e ignora o cancella questa email.\n\nLa tua password non verrà modificata a meno che non possiamo verificare che tu abbia effettivamente richiesto la modifica.";
+$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"] = "\nSegui questo link per verificare la tua identità:\n\n%1\$s\n\nRiceverai in un successivo messaggio la nuova password.\nPotrai cambiarla dalla pagina \"Impostazioni\" del tuo account dopo esserti autenticato.\n\nI dettagli del tuo account sono:\n    Indirizzo del sito: %2\$s\n    Nome utente: %3\$s";
+$a->strings["Password reset requested at %s"] = "Richiesta reimpostazione password su %s";
+$a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "La richiesta non può essere verificata. (Puoi averla già richiesta precendentemente). Reimpostazione password fallita.";
+$a->strings["Your password has been reset as requested."] = "La tua password è stata reimpostata come richiesto.";
+$a->strings["Your new password is"] = "La tua nuova password è";
+$a->strings["Save or copy your new password - and then"] = "Salva o copia la tua nuova password, quindi";
+$a->strings["click here to login"] = "clicca qui per entrare";
+$a->strings["Your password may be changed from the <em>Settings</em> page after successful login."] = "Puoi cambiare la tua password dalla pagina <em>Impostazioni</em> dopo aver effettuato l'accesso.";
+$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"] = "\nGentile %1\$s,\n   La tua password è stata modificata come richiesto.\nSalva questa password, o sostituiscila immediatamente con qualcosa che puoi ricordare.";
+$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"] = "\nI dettagli del tuo account sono:\n\n   Indirizzo del sito: %1\$s\n   Nome utente: %2\$s\n   Password: %3\$s\n\nPuoi cambiare questa password dalla pagina \"Impostazioni\" del tuo account dopo esserti autenticato.";
+$a->strings["Your password has been changed at %s"] = "La tua password presso %s è stata cambiata";
+$a->strings["Forgot your Password?"] = "Hai dimenticato la password?";
+$a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Inserisci il tuo indirizzo email per reimpostare la password.";
+$a->strings["Nickname or Email: "] = "Nome utente o email: ";
+$a->strings["Reset"] = "Reimposta";
+$a->strings["Source (bbcode) text:"] = "Testo sorgente (bbcode):";
+$a->strings["Source (Diaspora) text to convert to BBcode:"] = "Testo sorgente (da Diaspora) da convertire in BBcode:";
+$a->strings["Source input: "] = "Sorgente:";
+$a->strings["bb2html (raw HTML): "] = "bb2html (HTML grezzo):";
+$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): "] = "Sorgente (formato Diaspora):";
+$a->strings["diaspora2bb: "] = "diaspora2bb: ";
+$a->strings["Not Extended"] = "Not Extended";
+$a->strings["Tag removed"] = "Tag rimosso";
+$a->strings["Remove Item Tag"] = "Rimuovi il tag";
+$a->strings["Select a tag to remove: "] = "Seleziona un tag da rimuovere: ";
+$a->strings["Remove My Account"] = "Rimuovi il mio account";
+$a->strings["This will completely remove your account. Once this has been done it is not recoverable."] = "Questo comando rimuoverà completamente il tuo account. Una volta rimosso non potrai più recuperarlo.";
+$a->strings["Please enter your password for verification:"] = "Inserisci la tua password per verifica:";
+$a->strings["Invalid profile identifier."] = "Indentificativo del profilo non valido.";
+$a->strings["Profile Visibility Editor"] = "Modifica visibilità del profilo";
+$a->strings["Visible To"] = "Visibile a";
+$a->strings["All Contacts (with secure profile access)"] = "Tutti i contatti (con profilo ad accesso sicuro)";
+$a->strings["Profile Match"] = "Profili corrispondenti";
+$a->strings["No keywords to match. Please add keywords to your default profile."] = "Nessuna parola chiave per l'abbinamento. Aggiungi parole chiave al tuo profilo predefinito.";
+$a->strings["is interested in:"] = "è interessato a:";
+$a->strings["Event title and start time are required."] = "Titolo e ora di inizio dell'evento sono richiesti.";
+$a->strings["l, F j"] = "l j F";
+$a->strings["Edit event"] = "Modifca l'evento";
+$a->strings["Create New Event"] = "Crea un nuovo evento";
+$a->strings["Previous"] = "Precendente";
+$a->strings["Next"] = "Successivo";
+$a->strings["hour:minute"] = "ora:minuti";
+$a->strings["Event details"] = "Dettagli dell'evento";
+$a->strings["Format is %s %s. Starting date and Title are required."] = "Il formato è %s %s. Data di inizio e Titolo sono richiesti.";
+$a->strings["Event Starts:"] = "L'evento inizia:";
+$a->strings["Required"] = "Richiesto";
+$a->strings["Finish date/time is not known or not relevant"] = "La data/ora di fine non è definita";
+$a->strings["Event Finishes:"] = "L'evento finisce:";
+$a->strings["Adjust for viewer timezone"] = "Visualizza con il fuso orario di chi legge";
+$a->strings["Description:"] = "Descrizione:";
+$a->strings["Title:"] = "Titolo:";
+$a->strings["Share this event"] = "Condividi questo evento";
+$a->strings["{0} wants to be your friend"] = "{0} vuole essere tuo amico";
+$a->strings["{0} sent you a message"] = "{0} ti ha inviato un messaggio";
+$a->strings["{0} requested registration"] = "{0} chiede la registrazione";
+$a->strings["{0} commented %s's post"] = "{0} ha commentato il post di %s";
+$a->strings["{0} liked %s's post"] = "a {0} piace il post di  %s";
+$a->strings["{0} disliked %s's post"] = "a {0} non piace il post di %s";
+$a->strings["{0} is now friends with %s"] = "{0} ora è amico di %s";
+$a->strings["{0} posted"] = "{0} ha inviato un nuovo messaggio";
+$a->strings["{0} tagged %s's post with #%s"] = "{0} ha taggato il post di %s con #%s";
+$a->strings["{0} mentioned you in a post"] = "{0} ti ha citato in un post";
+$a->strings["Mood"] = "Umore";
+$a->strings["Set your current mood and tell your friends"] = "Condividi il tuo umore con i tuoi amici";
+$a->strings["No results."] = "Nessun risultato.";
+$a->strings["Unable to locate contact information."] = "Impossibile trovare le informazioni del contatto.";
+$a->strings["Do you really want to delete this message?"] = "Vuoi veramente cancellare questo messaggio?";
+$a->strings["Message deleted."] = "Messaggio eliminato.";
+$a->strings["Conversation removed."] = "Conversazione rimossa.";
+$a->strings["No messages."] = "Nessun messaggio.";
+$a->strings["Unknown sender - %s"] = "Mittente sconosciuto - %s";
+$a->strings["You and %s"] = "Tu e %s";
+$a->strings["%s and You"] = "%s e Tu";
+$a->strings["Delete conversation"] = "Elimina la conversazione";
+$a->strings["D, d M Y - g:i A"] = "D d M Y - G:i";
+$a->strings["%d message"] = array(
+       0 => "%d messaggio",
+       1 => "%d messaggi",
 );
-$a->strings["poke"] = "stuzzica";
-$a->strings["ping"] = "invia un ping";
-$a->strings["pinged"] = "ha inviato un ping";
-$a->strings["prod"] = "pungola";
-$a->strings["prodded"] = "ha pungolato";
-$a->strings["slap"] = "schiaffeggia";
-$a->strings["slapped"] = "ha schiaffeggiato";
-$a->strings["finger"] = "tocca";
-$a->strings["fingered"] = "ha toccato";
-$a->strings["rebuff"] = "respingi";
-$a->strings["rebuffed"] = "ha respinto";
-$a->strings["happy"] = "felice";
-$a->strings["sad"] = "triste";
-$a->strings["mellow"] = "rilassato";
-$a->strings["tired"] = "stanco";
-$a->strings["perky"] = "vivace";
-$a->strings["angry"] = "arrabbiato";
-$a->strings["stupified"] = "stupefatto";
-$a->strings["puzzled"] = "confuso";
-$a->strings["interested"] = "interessato";
-$a->strings["bitter"] = "risentito";
-$a->strings["cheerful"] = "giocoso";
-$a->strings["alive"] = "vivo";
-$a->strings["annoyed"] = "annoiato";
-$a->strings["anxious"] = "ansioso";
-$a->strings["cranky"] = "irritabile";
-$a->strings["disturbed"] = "disturbato";
-$a->strings["frustrated"] = "frustato";
-$a->strings["motivated"] = "motivato";
-$a->strings["relaxed"] = "rilassato";
-$a->strings["surprised"] = "sorpreso";
-$a->strings["Monday"] = "Lunedì";
-$a->strings["Tuesday"] = "Martedì";
-$a->strings["Wednesday"] = "Mercoledì";
-$a->strings["Thursday"] = "Giovedì";
-$a->strings["Friday"] = "Venerdì";
-$a->strings["Saturday"] = "Sabato";
-$a->strings["Sunday"] = "Domenica";
-$a->strings["January"] = "Gennaio";
-$a->strings["February"] = "Febbraio";
-$a->strings["March"] = "Marzo";
-$a->strings["April"] = "Aprile";
-$a->strings["May"] = "Maggio";
-$a->strings["June"] = "Giugno";
-$a->strings["July"] = "Luglio";
-$a->strings["August"] = "Agosto";
-$a->strings["September"] = "Settembre";
-$a->strings["October"] = "Ottobre";
-$a->strings["November"] = "Novembre";
-$a->strings["December"] = "Dicembre";
-$a->strings["bytes"] = "bytes";
-$a->strings["Click to open/close"] = "Clicca per aprire/chiudere";
-$a->strings["default"] = "default";
-$a->strings["Select an alternate language"] = "Seleziona una diversa lingua";
-$a->strings["activity"] = "attività";
-$a->strings["post"] = "messaggio";
-$a->strings["Item filed"] = "Messaggio salvato";
-$a->strings["Image/photo"] = "Immagine/foto";
-$a->strings["<a href=\"%1\$s\" target=\"_blank\">%2\$s</a> %3\$s"] = "";
-$a->strings["<span><a href=\"%s\" target=\"_blank\">%s</a> wrote the following <a href=\"%s\" target=\"_blank\">post</a>"] = "<span><a href=\"%s\" target=\"_blank\">%s</a> ha scritto il seguente <a href=\"%s\" target=\"_blank\">messaggio</a>";
-$a->strings["$1 wrote:"] = "$1 ha scritto:";
-$a->strings["Encrypted content"] = "Contenuto criptato";
-$a->strings["(no subject)"] = "(nessun oggetto)";
-$a->strings["noreply"] = "nessuna risposta";
-$a->strings["Cannot locate DNS info for database server '%s'"] = "Non trovo le informazioni DNS per il database server '%s'";
-$a->strings["Unknown | Not categorised"] = "Sconosciuto | non categorizzato";
-$a->strings["Block immediately"] = "Blocca immediatamente";
-$a->strings["Shady, spammer, self-marketer"] = "Shady, spammer, self-marketer";
-$a->strings["Known to me, but no opinion"] = "Lo conosco, ma non ho un'opinione particolare";
-$a->strings["OK, probably harmless"] = "E' ok, probabilmente innocuo";
-$a->strings["Reputable, has my trust"] = "Rispettabile, ha la mia fiducia";
-$a->strings["Weekly"] = "Settimanalmente";
-$a->strings["Monthly"] = "Mensilmente";
-$a->strings["OStatus"] = "Ostatus";
-$a->strings["RSS/Atom"] = "RSS / Atom";
-$a->strings["Zot!"] = "Zot!";
-$a->strings["LinkedIn"] = "LinkedIn";
-$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"] = "Connettore Diaspora";
-$a->strings["Statusnet"] = "Statusnet";
-$a->strings["App.net"] = "App.net";
-$a->strings[" on Last.fm"] = "su Last.fm";
-$a->strings["Starts:"] = "Inizia:";
-$a->strings["Finishes:"] = "Finisce:";
-$a->strings["j F, Y"] = "j F Y";
-$a->strings["j F"] = "j F";
-$a->strings["Birthday:"] = "Compleanno:";
-$a->strings["Age:"] = "Età:";
-$a->strings["for %1\$d %2\$s"] = "per %1\$d %2\$s";
-$a->strings["Tags:"] = "Tag:";
-$a->strings["Religion:"] = "Religione:";
-$a->strings["Hobbies/Interests:"] = "Hobby/Interessi:";
-$a->strings["Contact information and Social Networks:"] = "Informazioni su contatti e social network:";
-$a->strings["Musical interests:"] = "Interessi musicali:";
-$a->strings["Books, literature:"] = "Libri, letteratura:";
-$a->strings["Television:"] = "Televisione:";
-$a->strings["Film/dance/culture/entertainment:"] = "Film/danza/cultura/intrattenimento:";
-$a->strings["Love/Romance:"] = "Amore:";
-$a->strings["Work/employment:"] = "Lavoro:";
-$a->strings["School/education:"] = "Scuola:";
-$a->strings["Click here to upgrade."] = "Clicca qui per aggiornare.";
-$a->strings["This action exceeds the limits set by your subscription plan."] = "Questa azione eccede i limiti del tuo piano di sottoscrizione.";
-$a->strings["This action is not available under your subscription plan."] = "Questa azione non è disponibile nel tuo piano di sottoscrizione.";
-$a->strings["End this session"] = "Finisci questa sessione";
-$a->strings["Your posts and conversations"] = "I tuoi messaggi e le tue conversazioni";
-$a->strings["Your profile page"] = "Pagina del tuo profilo";
-$a->strings["Your photos"] = "Le tue foto";
-$a->strings["Your videos"] = "I tuoi video";
-$a->strings["Your events"] = "I tuoi eventi";
-$a->strings["Personal notes"] = "Note personali";
-$a->strings["Your personal notes"] = "Le tue note personali";
-$a->strings["Sign in"] = "Entra";
-$a->strings["Home Page"] = "Home Page";
-$a->strings["Create an account"] = "Crea un account";
-$a->strings["Help and documentation"] = "Guida e documentazione";
-$a->strings["Apps"] = "Applicazioni";
-$a->strings["Addon applications, utilities, games"] = "Applicazioni, utilità e giochi aggiuntivi";
-$a->strings["Search site content"] = "Cerca nel contenuto del sito";
-$a->strings["Conversations on this site"] = "Conversazioni su questo sito";
-$a->strings["Conversations on the network"] = "";
-$a->strings["Directory"] = "Elenco";
-$a->strings["People directory"] = "Elenco delle persone";
-$a->strings["Information"] = "Informazioni";
-$a->strings["Information about this friendica instance"] = "Informazioni su questo server friendica";
-$a->strings["Conversations from your friends"] = "Conversazioni dai tuoi amici";
-$a->strings["Network Reset"] = "Reset pagina Rete";
-$a->strings["Load Network page with no filters"] = "Carica la pagina Rete senza nessun filtro";
-$a->strings["Friend Requests"] = "Richieste di amicizia";
-$a->strings["See all notifications"] = "Vedi tutte le notifiche";
-$a->strings["Mark all system notifications seen"] = "Segna tutte le notifiche come viste";
-$a->strings["Private mail"] = "Posta privata";
-$a->strings["Inbox"] = "In arrivo";
-$a->strings["Outbox"] = "Inviati";
-$a->strings["Manage"] = "Gestisci";
-$a->strings["Manage other pages"] = "Gestisci altre pagine";
-$a->strings["Account settings"] = "Parametri account";
-$a->strings["Manage/Edit Profiles"] = "Gestisci/Modifica i profili";
-$a->strings["Manage/edit friends and contacts"] = "Gestisci/modifica amici e contatti";
-$a->strings["Site setup and configuration"] = "Configurazione del sito";
-$a->strings["Navigation"] = "Navigazione";
-$a->strings["Site map"] = "Mappa del sito";
-$a->strings["User not found."] = "Utente non trovato.";
-$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."] = "Non c'è nessuno status con questo id.";
-$a->strings["There is no conversation with this id."] = "Non c'è nessuna conversazione con questo id";
-$a->strings["Invalid request."] = "";
-$a->strings["Invalid item."] = "";
-$a->strings["Invalid action. "] = "";
-$a->strings["DB error"] = "";
-$a->strings["An invitation is required."] = "E' richiesto un invito.";
-$a->strings["Invitation could not be verified."] = "L'invito non puo' essere verificato.";
-$a->strings["Invalid OpenID url"] = "Url OpenID non valido";
-$a->strings["Please enter the required information."] = "Inserisci le informazioni richieste.";
-$a->strings["Please use a shorter name."] = "Usa un nome più corto.";
-$a->strings["Name too short."] = "Il nome è troppo corto.";
-$a->strings["That doesn't appear to be your full (First Last) name."] = "Questo non sembra essere il tuo nome completo (Nome Cognome).";
-$a->strings["Your email domain is not among those allowed on this site."] = "Il dominio della tua email non è tra quelli autorizzati su questo sito.";
-$a->strings["Not a valid email address."] = "L'indirizzo email non è valido.";
-$a->strings["Cannot use that email."] = "Non puoi usare quell'email.";
-$a->strings["Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and must also begin with a letter."] = "Il tuo nome utente puo' contenere solo \"a-z\", \"0-9\", \"-\", e \"_\", e deve cominciare con una lettera.";
-$a->strings["Nickname is already registered. Please choose another."] = "Nome utente già registrato. Scegline un altro.";
-$a->strings["Nickname was once registered here and may not be re-used. Please choose another."] = "Questo nome utente stato già registrato. Per favore, sceglierne uno nuovo.";
-$a->strings["SERIOUS ERROR: Generation of security keys failed."] = "ERRORE GRAVE: La generazione delle chiavi di sicurezza è fallita.";
-$a->strings["An error occurred during registration. Please try again."] = "C'è stato un errore durante la registrazione. Prova ancora.";
-$a->strings["An error occurred creating your default profile. Please try again."] = "C'è stato un errore nella creazione del tuo profilo. Prova ancora.";
-$a->strings["Friends"] = "Amici";
-$a->strings["\n\t\tDear %1\$s,\n\t\t\tThank you for registering at %2\$s. Your account has been created.\n\t"] = "\nGentile %1\$s,\nGrazie per esserti registrato su %2\$s. Il tuo account è stato creato.";
-$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["Sharing notification from Diaspora network"] = "Notifica di condivisione dal network Diaspora*";
-$a->strings["Attachments:"] = "Allegati:";
-$a->strings["Do you really want to delete this item?"] = "Vuoi veramente cancellare questo elemento?";
-$a->strings["Archives"] = "Archivi";
-$a->strings["Male"] = "Maschio";
-$a->strings["Female"] = "Femmina";
-$a->strings["Currently Male"] = "Al momento maschio";
-$a->strings["Currently Female"] = "Al momento femmina";
-$a->strings["Mostly Male"] = "Prevalentemente maschio";
-$a->strings["Mostly Female"] = "Prevalentemente femmina";
-$a->strings["Transgender"] = "Transgender";
-$a->strings["Intersex"] = "Intersex";
-$a->strings["Transsexual"] = "Transessuale";
-$a->strings["Hermaphrodite"] = "Ermafrodito";
-$a->strings["Neuter"] = "Neutro";
-$a->strings["Non-specific"] = "Non specificato";
-$a->strings["Other"] = "Altro";
-$a->strings["Undecided"] = "Indeciso";
-$a->strings["Males"] = "Maschi";
-$a->strings["Females"] = "Femmine";
-$a->strings["Gay"] = "Gay";
-$a->strings["Lesbian"] = "Lesbica";
-$a->strings["No Preference"] = "Nessuna preferenza";
-$a->strings["Bisexual"] = "Bisessuale";
-$a->strings["Autosexual"] = "Autosessuale";
-$a->strings["Abstinent"] = "Astinente";
-$a->strings["Virgin"] = "Vergine";
-$a->strings["Deviant"] = "Deviato";
-$a->strings["Fetish"] = "Fetish";
-$a->strings["Oodles"] = "Un sacco";
-$a->strings["Nonsexual"] = "Asessuato";
-$a->strings["Single"] = "Single";
-$a->strings["Lonely"] = "Solitario";
-$a->strings["Available"] = "Disponibile";
-$a->strings["Unavailable"] = "Non disponibile";
-$a->strings["Has crush"] = "è cotto/a";
-$a->strings["Infatuated"] = "infatuato/a";
-$a->strings["Dating"] = "Disponibile a un incontro";
-$a->strings["Unfaithful"] = "Infedele";
-$a->strings["Sex Addict"] = "Sesso-dipendente";
-$a->strings["Friends/Benefits"] = "Amici con benefici";
-$a->strings["Casual"] = "Casual";
-$a->strings["Engaged"] = "Impegnato";
-$a->strings["Married"] = "Sposato";
-$a->strings["Imaginarily married"] = "immaginariamente sposato/a";
-$a->strings["Partners"] = "Partners";
-$a->strings["Cohabiting"] = "Coinquilino";
-$a->strings["Common law"] = "diritto comune";
-$a->strings["Happy"] = "Felice";
-$a->strings["Not looking"] = "Non guarda";
-$a->strings["Swinger"] = "Scambista";
-$a->strings["Betrayed"] = "Tradito";
-$a->strings["Separated"] = "Separato";
-$a->strings["Unstable"] = "Instabile";
-$a->strings["Divorced"] = "Divorziato";
-$a->strings["Imaginarily divorced"] = "immaginariamente divorziato/a";
-$a->strings["Widowed"] = "Vedovo";
-$a->strings["Uncertain"] = "Incerto";
-$a->strings["It's complicated"] = "E' complicato";
-$a->strings["Don't care"] = "Non interessa";
-$a->strings["Ask me"] = "Chiedimelo";
-$a->strings["Friendica Notification"] = "Notifica Friendica";
-$a->strings["Thank You,"] = "Grazie,";
-$a->strings["%s Administrator"] = "Amministratore %s";
-$a->strings["%s <!item_type!>"] = "%s <!item_type!>";
-$a->strings["[Friendica:Notify] New mail received at %s"] = "[Friendica:Notifica] Nuovo messaggio privato ricevuto su %s";
-$a->strings["%1\$s sent you a new private message at %2\$s."] = "%1\$s ti ha inviato un nuovo messaggio privato su %2\$s.";
-$a->strings["%1\$s sent you %2\$s."] = "%1\$s ti ha inviato %2\$s";
-$a->strings["a private message"] = "un messaggio privato";
-$a->strings["Please visit %s to view and/or reply to your private messages."] = "Visita %s per vedere e/o rispodere ai tuoi messaggi privati.";
-$a->strings["%1\$s commented on [url=%2\$s]a %3\$s[/url]"] = "%1\$s ha commentato [url=%2\$s]%3\$s[/url]";
-$a->strings["%1\$s commented on [url=%2\$s]%3\$s's %4\$s[/url]"] = "%1\$s ha commentato [url=%2\$s]%4\$s di %3\$s[/url]";
-$a->strings["%1\$s commented on [url=%2\$s]your %3\$s[/url]"] = "%1\$s ha commentato un [url=%2\$s]tuo %3\$s[/url]";
-$a->strings["[Friendica:Notify] Comment to conversation #%1\$d by %2\$s"] = "[Friendica:Notifica] Commento di %2\$s alla conversazione #%1\$d";
-$a->strings["%s commented on an item/conversation you have been following."] = "%s ha commentato un elemento che stavi seguendo.";
-$a->strings["Please visit %s to view and/or reply to the conversation."] = "Visita %s per vedere e/o commentare la conversazione";
-$a->strings["[Friendica:Notify] %s posted to your profile wall"] = "[Friendica:Notifica] %s ha scritto sulla tua bacheca";
-$a->strings["%1\$s posted to your profile wall at %2\$s"] = "%1\$s ha scritto sulla tua bacheca su %2\$s";
-$a->strings["%1\$s posted to [url=%2\$s]your wall[/url]"] = "%1\$s ha inviato un messaggio sulla [url=%2\$s]tua bacheca[/url]";
-$a->strings["[Friendica:Notify] %s tagged you"] = "[Friendica:Notifica] %s ti ha taggato";
-$a->strings["%1\$s tagged you at %2\$s"] = "%1\$s ti ha taggato su %2\$s";
-$a->strings["%1\$s [url=%2\$s]tagged you[/url]."] = "%1\$s [url=%2\$s]ti ha taggato[/url].";
-$a->strings["[Friendica:Notify] %s shared a new post"] = "[Friendica:Notifica] %s ha condiviso un nuovo messaggio";
-$a->strings["%1\$s shared a new post at %2\$s"] = "%1\$s ha condiviso un nuovo messaggio su %2\$s";
-$a->strings["%1\$s [url=%2\$s]shared a post[/url]."] = "%1\$s [url=%2\$s]ha condiviso un messaggio[/url].";
-$a->strings["[Friendica:Notify] %1\$s poked you"] = "[Friendica:Notifica] %1\$s ti ha stuzzicato";
-$a->strings["%1\$s poked you at %2\$s"] = "%1\$s ti ha stuzzicato su %2\$s";
-$a->strings["%1\$s [url=%2\$s]poked you[/url]."] = "%1\$s [url=%2\$s]ti ha stuzzicato[/url].";
-$a->strings["[Friendica:Notify] %s tagged your post"] = "[Friendica:Notifica] %s ha taggato un tuo messaggio";
-$a->strings["%1\$s tagged your post at %2\$s"] = "%1\$s ha taggato il tuo post su %2\$s";
-$a->strings["%1\$s tagged [url=%2\$s]your post[/url]"] = "%1\$s ha taggato [url=%2\$s]il tuo post[/url]";
-$a->strings["[Friendica:Notify] Introduction received"] = "[Friendica:Notifica] Hai ricevuto una presentazione";
-$a->strings["You've received an introduction from '%1\$s' at %2\$s"] = "Hai ricevuto un'introduzione da '%1\$s' su %2\$s";
-$a->strings["You've received [url=%1\$s]an introduction[/url] from %2\$s."] = "Hai ricevuto [url=%1\$s]un'introduzione[/url] da %2\$s.";
-$a->strings["You may visit their profile at %s"] = "Puoi visitare il suo profilo presso %s";
-$a->strings["Please visit %s to approve or reject the introduction."] = "Visita %s per approvare o rifiutare la presentazione.";
-$a->strings["[Friendica:Notify] A new person is sharing with you"] = "[Friendica:Notifica] Una nuova persona sta condividendo con te";
-$a->strings["%1\$s is sharing with you at %2\$s"] = "%1\$s sta condividendo con te su %2\$s";
-$a->strings["[Friendica:Notify] You have a new follower"] = "[Friendica:Notifica] Una nuova persona ti segue";
-$a->strings["You have a new follower at %2\$s : %1\$s"] = "Un nuovo utente ha iniziato a seguirti su %2\$s : %1\$s";
-$a->strings["[Friendica:Notify] Friend suggestion received"] = "[Friendica:Notifica] Hai ricevuto un suggerimento di amicizia";
-$a->strings["You've received a friend suggestion from '%1\$s' at %2\$s"] = "Hai ricevuto un suggerimento di amicizia da '%1\$s' su %2\$s";
-$a->strings["You've received [url=%1\$s]a friend suggestion[/url] for %2\$s from %3\$s."] = "Hai ricevuto [url=%1\$s]un suggerimento di amicizia[/url] per %2\$s su %3\$s";
-$a->strings["Name:"] = "Nome:";
-$a->strings["Photo:"] = "Foto:";
-$a->strings["Please visit %s to approve or reject the suggestion."] = "Visita %s per approvare o rifiutare il suggerimento.";
-$a->strings["[Friendica:Notify] Connection accepted"] = "[Friendica:Notifica] Connessione accettata";
-$a->strings["'%1\$s' has acepted your connection request at %2\$s"] = "'%1\$s' ha accettato la tua richiesta di connessione su %2\$s";
-$a->strings["%2\$s has accepted your [url=%1\$s]connection request[/url]."] = "%2\$s ha accettato la tua [url=%1\$s]richiesta di connessione[/url]";
-$a->strings["You are now mutual friends and may exchange status updates, photos, and email\n\twithout restriction."] = "Ora siete connessi reciprocamente e potete scambiarvi aggiornamenti di stato, foto e email\nsenza restrizioni";
-$a->strings["Please visit %s  if you wish to make any changes to this relationship."] = "Visita %s se desideri modificare questo collegamento.";
-$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' ha scelto di accettarti come \"fan\", il che limita alcune forme di comunicazione, come i messaggi privati, e alcune possibiltà di interazione col profilo. Se è una pagina di una comunità o di una celebrità, queste impostazioni sono state applicate automaticamente.";
-$a->strings["'%1\$s' may choose to extend this into a two-way or more permissive relationship in the future. "] = "'%1\$s' può decidere in futuro di estendere la connessione in una reciproca o più permissiva.";
-$a->strings["[Friendica System:Notify] registration request"] = "[Friendica System:Notifica] richiesta di registrazione";
-$a->strings["You've received a registration request from '%1\$s' at %2\$s"] = "Hai ricevuto una richiesta di registrazione da '%1\$s' su %2\$s";
-$a->strings["You've received a [url=%1\$s]registration request[/url] from %2\$s."] = "Hai ricevuto una [url=%1\$s]richiesta di registrazione[/url] da %2\$s.";
-$a->strings["Full Name:\t%1\$s\\nSite Location:\t%2\$s\\nLogin Name:\t%3\$s (%4\$s)"] = "Nome completo: %1\$s\nIndirizzo del sito: %2\$s\nNome utente: %3\$s (%4\$s)";
-$a->strings["Please visit %s to approve or reject the request."] = "Visita %s per approvare o rifiutare la richiesta.";
-$a->strings["Embedded content"] = "Contenuto incorporato";
-$a->strings["Embedding disabled"] = "Embed disabilitato";
-$a->strings["Error decoding account file"] = "Errore decodificando il file account";
-$a->strings["Error! No version data in file! This is not a Friendica account file?"] = "Errore! Nessuna informazione di versione nel file! Potrebbe non essere un file account di Friendica?";
-$a->strings["Error! Cannot check nickname"] = "Errore! Non posso controllare il nickname";
-$a->strings["User '%s' already exists on this server!"] = "L'utente '%s' esiste già su questo server!";
-$a->strings["User creation error"] = "Errore creando l'utente";
-$a->strings["User profile creation error"] = "Errore creando il profile dell'utente";
-$a->strings["%d contact not imported"] = array(
-       0 => "%d contatto non importato",
-       1 => "%d contatti non importati",
-);
-$a->strings["Done. You can now login with your username and password"] = "Fatto. Ora puoi entrare con il tuo nome utente e la tua password";
-$a->strings["toggle mobile"] = "commuta tema mobile";
-$a->strings["Theme settings"] = "Impostazioni tema";
-$a->strings["Set resize level for images in posts and comments (width and height)"] = "Dimensione immagini in messaggi e commenti (larghezza e altezza)";
-$a->strings["Set font-size for posts and comments"] = "Dimensione del carattere di messaggi e commenti";
-$a->strings["Set theme width"] = "Imposta la larghezza del tema";
-$a->strings["Color scheme"] = "Schema colori";
-$a->strings["Set line-height for posts and comments"] = "Altezza della linea di testo di messaggi e commenti";
-$a->strings["Set colour scheme"] = "Imposta schema colori";
-$a->strings["Alignment"] = "Allineamento";
-$a->strings["Left"] = "Sinistra";
-$a->strings["Center"] = "Centrato";
-$a->strings["Posts font size"] = "Dimensione caratteri post";
-$a->strings["Textareas font size"] = "Dimensione caratteri nelle aree di testo";
-$a->strings["Set resolution for middle column"] = "Imposta la dimensione della colonna centrale";
-$a->strings["Set color scheme"] = "Imposta lo schema dei colori";
-$a->strings["Set zoomfactor for Earth Layer"] = "Livello di zoom per Earth Layer";
-$a->strings["Set longitude (X) for Earth Layers"] = "Longitudine (X) per Earth Layers";
-$a->strings["Set latitude (Y) for Earth Layers"] = "Latitudine (Y) per Earth Layers";
-$a->strings["Community Pages"] = "Pagine Comunitarie";
-$a->strings["Earth Layers"] = "Earth Layers";
-$a->strings["Community Profiles"] = "Profili Comunità";
-$a->strings["Help or @NewHere ?"] = "Serve aiuto? Sei nuovo?";
-$a->strings["Connect Services"] = "Servizi di conessione";
-$a->strings["Find Friends"] = "Trova Amici";
-$a->strings["Last users"] = "Ultimi utenti";
-$a->strings["Last photos"] = "Ultime foto";
-$a->strings["Last likes"] = "Ultimi \"mi piace\"";
-$a->strings["Your contacts"] = "I tuoi contatti";
-$a->strings["Your personal photos"] = "Le tue foto personali";
-$a->strings["Local Directory"] = "Elenco Locale";
-$a->strings["Set zoomfactor for Earth Layers"] = "Livello di zoom per Earth Layers";
-$a->strings["Show/hide boxes at right-hand column:"] = "Mostra/Nascondi riquadri nella colonna destra";
-$a->strings["Set style"] = "Imposta stile";
-$a->strings["greenzero"] = "";
-$a->strings["purplezero"] = "";
-$a->strings["easterbunny"] = "";
-$a->strings["darkzero"] = "";
-$a->strings["comix"] = "";
-$a->strings["slackr"] = "";
-$a->strings["Variations"] = "";
+$a->strings["Message not available."] = "Messaggio non disponibile.";
+$a->strings["Delete message"] = "Elimina il messaggio";
+$a->strings["No secure communications available. You <strong>may</strong> be able to respond from the sender's profile page."] = "Nessuna comunicazione sicura disponibile, <strong>Potresti</strong> essere in grado di rispondere dalla pagina del profilo del mittente.";
+$a->strings["Send Reply"] = "Invia la risposta";
+$a->strings["Not available."] = "Non disponibile.";
+$a->strings["Profile not found."] = "Profilo non trovato.";
+$a->strings["Profile deleted."] = "Profilo elminato.";
+$a->strings["Profile-"] = "Profilo-";
+$a->strings["New profile created."] = "Il nuovo profilo è stato creato.";
+$a->strings["Profile unavailable to clone."] = "Impossibile duplicare il profilo.";
+$a->strings["Profile Name is required."] = "Il nome profilo è obbligatorio .";
+$a->strings["Marital Status"] = "Stato civile";
+$a->strings["Romantic Partner"] = "Partner romantico";
+$a->strings["Likes"] = "Mi piace";
+$a->strings["Dislikes"] = "Non mi piace";
+$a->strings["Work/Employment"] = "Lavoro/Impiego";
+$a->strings["Religion"] = "Religione";
+$a->strings["Political Views"] = "Orientamento Politico";
+$a->strings["Gender"] = "Sesso";
+$a->strings["Sexual Preference"] = "Preferenza sessuale";
+$a->strings["Homepage"] = "Homepage";
+$a->strings["Interests"] = "Interessi";
+$a->strings["Address"] = "Indirizzo";
+$a->strings["Location"] = "Posizione";
+$a->strings["Profile updated."] = "Profilo aggiornato.";
+$a->strings[" and "] = "e ";
+$a->strings["public profile"] = "profilo pubblico";
+$a->strings["%1\$s changed %2\$s to &ldquo;%3\$s&rdquo;"] = "%1\$s ha cambiato %2\$s in &ldquo;%3\$s&rdquo;";
+$a->strings[" - Visit %1\$s's %2\$s"] = "- Visita  %2\$s di %1\$s";
+$a->strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s ha un %2\$s aggiornato. Ha cambiato %3\$s";
+$a->strings["Hide contacts and friends:"] = "Nascondi contatti:";
+$a->strings["Hide your contact/friend list from viewers of this profile?"] = "Nascondi la tua lista di contatti/amici ai visitatori di questo profilo?";
+$a->strings["Edit Profile Details"] = "Modifica i dettagli del profilo";
+$a->strings["Change Profile Photo"] = "Cambia la foto del profilo";
+$a->strings["View this profile"] = "Visualizza questo profilo";
+$a->strings["Create a new profile using these settings"] = "Crea un nuovo profilo usando queste impostazioni";
+$a->strings["Clone this profile"] = "Clona questo profilo";
+$a->strings["Delete this profile"] = "Elimina questo profilo";
+$a->strings["Basic information"] = "Informazioni di base";
+$a->strings["Profile picture"] = "Immagine del profilo";
+$a->strings["Preferences"] = "Preferenze";
+$a->strings["Status information"] = "Informazioni stato";
+$a->strings["Additional information"] = "Informazioni aggiuntive";
+$a->strings["Upload Profile Photo"] = "Carica la foto del profilo";
+$a->strings["Profile Name:"] = "Nome del profilo:";
+$a->strings["Your Full Name:"] = "Il tuo nome completo:";
+$a->strings["Title/Description:"] = "Breve descrizione (es. titolo, posizione, altro):";
+$a->strings["Your Gender:"] = "Il tuo sesso:";
+$a->strings["Birthday (%s):"] = "Compleanno (%s)";
+$a->strings["Street Address:"] = "Indirizzo (via/piazza):";
+$a->strings["Locality/City:"] = "Località:";
+$a->strings["Postal/Zip Code:"] = "CAP:";
+$a->strings["Country:"] = "Nazione:";
+$a->strings["Region/State:"] = "Regione/Stato:";
+$a->strings["<span class=\"heart\">&hearts;</span> Marital Status:"] = "<span class=\"heart\">&hearts;</span> Stato sentimentale:";
+$a->strings["Who: (if applicable)"] = "Con chi: (se possibile)";
+$a->strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Esempio: cathy123, Cathy Williams, cathy@example.com";
+$a->strings["Since [date]:"] = "Dal [data]:";
+$a->strings["Homepage URL:"] = "Homepage:";
+$a->strings["Religious Views:"] = "Orientamento religioso:";
+$a->strings["Public Keywords:"] = "Parole chiave visibili a tutti:";
+$a->strings["Private Keywords:"] = "Parole chiave private:";
+$a->strings["Example: fishing photography software"] = "Esempio: pesca fotografia programmazione";
+$a->strings["(Used for suggesting potential friends, can be seen by others)"] = "(E' utilizzato per suggerire potenziali amici, può essere visto da altri)";
+$a->strings["(Used for searching profiles, never shown to others)"] = "(Usato per cercare tra i profili, non è mai visibile agli altri)";
+$a->strings["Tell us about yourself..."] = "Raccontaci di te...";
+$a->strings["Hobbies/Interests"] = "Hobby/interessi";
+$a->strings["Contact information and Social Networks"] = "Informazioni su contatti e social network";
+$a->strings["Musical interests"] = "Interessi musicali";
+$a->strings["Books, literature"] = "Libri, letteratura";
+$a->strings["Television"] = "Televisione";
+$a->strings["Film/dance/culture/entertainment"] = "Film/danza/cultura/intrattenimento";
+$a->strings["Love/romance"] = "Amore";
+$a->strings["Work/employment"] = "Lavoro/impiego";
+$a->strings["School/education"] = "Scuola/educazione";
+$a->strings["This is your <strong>public</strong> profile.<br />It <strong>may</strong> be visible to anybody using the internet."] = "Questo è il tuo profilo <strong>publico</strong>.<br /><strong>Potrebbe</strong> essere visto da chiunque attraverso internet.";
+$a->strings["Age: "] = "Età : ";
+$a->strings["Edit/Manage Profiles"] = "Modifica / Gestisci profili";
+$a->strings["Friendica Communications Server - Setup"] = "Friendica Comunicazione Server - Impostazioni";
+$a->strings["Could not connect to database."] = " Impossibile collegarsi con il database.";
+$a->strings["Could not create table."] = "Impossibile creare le tabelle.";
+$a->strings["Your Friendica site database has been installed."] = "Il tuo Friendica è stato installato.";
+$a->strings["You may need to import the file \"database.sql\" manually using phpmyadmin or mysql."] = "Potresti dover importare il file \"database.sql\" manualmente con phpmyadmin o mysql";
+$a->strings["Please see the file \"INSTALL.txt\"."] = "Leggi il file \"INSTALL.txt\".";
+$a->strings["System check"] = "Controllo sistema";
+$a->strings["Check again"] = "Controlla ancora";
+$a->strings["Database connection"] = "Connessione al database";
+$a->strings["In order to install Friendica we need to know how to connect to your database."] = "Per installare Friendica dobbiamo sapere come collegarci al tuo database.";
+$a->strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Contatta il tuo fornitore di hosting o l'amministratore del sito se hai domande su queste impostazioni.";
+$a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "Il database dovrà già esistere. Se non esiste, crealo prima di continuare.";
+$a->strings["Database Server Name"] = "Nome del database server";
+$a->strings["Database Login Name"] = "Nome utente database";
+$a->strings["Database Login Password"] = "Password utente database";
+$a->strings["Database Name"] = "Nome database";
+$a->strings["Site administrator email address"] = "Indirizzo email dell'amministratore del sito";
+$a->strings["Your account email address must match this in order to use the web admin panel."] = "Il tuo indirizzo email deve corrispondere a questo per poter usare il pannello di amministrazione web.";
+$a->strings["Please select a default timezone for your website"] = "Seleziona il fuso orario predefinito per il tuo sito web";
+$a->strings["Site settings"] = "Impostazioni sito";
+$a->strings["Could not find a command line version of PHP in the web server PATH."] = "Non riesco a trovare la versione di PHP da riga di comando nel PATH del server web";
+$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 <a href='http://friendica.com/node/27'>'Activating scheduled tasks'</a>"] = "Se non hai una versione a linea di comando di PHP installata sul tuo server, non sarai in grado di avviare il processo di poll in background via cron. Vedi <a href='http://friendica.com/node/27'>'Activating scheduled tasks'</a>";
+$a->strings["PHP executable path"] = "Percorso eseguibile PHP";
+$a->strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "Inserisci il percorso completo all'eseguibile di php. Puoi lasciare bianco questo campo per continuare l'installazione.";
+$a->strings["Command line PHP"] = "PHP da riga di comando";
+$a->strings["PHP executable is not the php cli binary (could be cgi-fgci version)"] = "L'eseguibile PHP non è il binario php cli (potrebbe essere la versione cgi-fcgi)";
+$a->strings["Found PHP version: "] = "Versione PHP:";
+$a->strings["PHP cli binary"] = "Binario PHP cli";
+$a->strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "La versione da riga di comando di PHP nel sistema non ha abilitato \"register_argc_argv\".";
+$a->strings["This is required for message delivery to work."] = "E' obbligatorio per far funzionare la consegna dei messaggi.";
+$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"] = "Errore: la funzione \"openssl_pkey_new\" in questo sistema non è in grado di generare le chiavi di criptazione";
+$a->strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "Se stai eseguendo friendika su windows, guarda \"http://www.php.net/manual/en/openssl.installation.php\".";
+$a->strings["Generate encryption keys"] = "Genera chiavi di criptazione";
+$a->strings["libCurl PHP module"] = "modulo PHP libCurl";
+$a->strings["GD graphics PHP module"] = "modulo PHP GD graphics";
+$a->strings["OpenSSL PHP module"] = "modulo PHP OpenSSL";
+$a->strings["mysqli PHP module"] = "modulo PHP mysqli";
+$a->strings["mb_string PHP module"] = "modulo PHP mb_string";
+$a->strings["Apache mod_rewrite module"] = "Modulo mod_rewrite di Apache";
+$a->strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Errore: E' il modulo mod-rewrite di Apache è richiesto, ma non risulta installato";
+$a->strings["Error: libCURL PHP module required but not installed."] = "Errore: il modulo libCURL di PHP è richiesto, ma non risulta installato.";
+$a->strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Errore: Il modulo GD graphics di PHP con supporto a JPEG è richiesto, ma non risulta installato.";
+$a->strings["Error: openssl PHP module required but not installed."] = "Errore: il modulo openssl di PHP è richiesto, ma non risulta installato.";
+$a->strings["Error: mysqli PHP module required but not installed."] = "Errore: il modulo mysqli di PHP è richiesto, ma non risulta installato";
+$a->strings["Error: mb_string PHP module required but not installed."] = "Errore: il modulo PHP mb_string è richiesto, ma non risulta installato.";
+$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."] = "L'installazione web deve poter creare un file chiamato \".htconfig.php\" nella cartella principale del tuo web server ma non è in grado di farlo.";
+$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."] = "Ciò è dovuto spesso a impostazioni di permessi, dato che il web server può non essere in grado di scrivere il file nella tua cartella, anche se tu puoi.";
+$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."] = "Alla fine di questa procedura, di daremo un testo da salvare in un file chiamato .htconfig.php nella tua cartella principale di Friendica";
+$a->strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"INSTALL.txt\" for instructions."] = "Puoi in alternativa saltare questa procedura ed eseguire l'installazione manualmente. Vedi il file \"INSTALL.txt\" per le istruzioni.";
+$a->strings[".htconfig.php is writable"] = ".htconfig.php è scrivibile";
+$a->strings["Friendica uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "Friendica usa il motore di template Smarty3 per renderizzare le sue pagine web. Smarty3 compila i template in PHP per velocizzare il rendering.";
+$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."] = "Per salvare questi template compilati, il server werb ha bisogno dell'accesso in scrittura alla cartella view/smarty3/ nella cartella principale dei Friendica.";
+$a->strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "Per favore, controlla che l'utente con cui il tuo server web gira (es www-data) ha accesso in scrittura a questa cartella.";
+$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."] = "Nota: come misura di sicurezza, dovresti dare accesso in scrittura solo alla cartella view/smarty3, non ai template (.tpl) che contiene.";
+$a->strings["view/smarty3 is writable"] = "view/smarty3 è scrivibile";
+$a->strings["Url rewrite in .htaccess is not working. Check your server configuration."] = "La riscrittura degli url in .htaccess non funziona. Controlla la configurazione del tuo server.";
+$a->strings["Url rewrite is working"] = "La riscrittura degli url funziona";
+$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."] = "Il file di configurazione del database \".htconfig.php\" non può essere scritto. Usa il testo qui di seguito per creare un file di configurazione nella cartella principale del tuo sito.";
+$a->strings["<h1>What next</h1>"] = "<h1>Cosa fare ora</h1>";
+$a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "IMPORTANTE: Devi impostare [manualmente] la pianificazione del poller.";
+$a->strings["Help:"] = "Guida:";
+$a->strings["Contact settings applied."] = "Contatto modificato.";
+$a->strings["Contact update failed."] = "Le modifiche al contatto non sono state salvate.";
+$a->strings["Repair Contact Settings"] = "Ripara il contatto";
+$a->strings["<strong>WARNING: This is highly advanced</strong> and if you enter incorrect information your communications with this contact may stop working."] = "<strong>ATTENZIONE: Queste sono impostazioni avanzate</strong> e se inserisci informazioni errate le tue comunicazioni con questo contatto potrebbero non funzionare più";
+$a->strings["Please use your browser 'Back' button <strong>now</strong> if you are uncertain what to do on this page."] = "Usa <strong>ora</strong> il tasto 'Indietro' del tuo browser se non sei sicuro di cosa fare in questa pagina.";
+$a->strings["Return to contact editor"] = "Ritorna alla modifica contatto";
+$a->strings["No mirroring"] = "Non duplicare";
+$a->strings["Mirror as forwarded posting"] = "Duplica come messaggi ricondivisi";
+$a->strings["Mirror as my own posting"] = "Duplica come miei messaggi";
+$a->strings["Refetch contact data"] = "Ricarica dati contatto";
+$a->strings["Account Nickname"] = "Nome utente";
+$a->strings["@Tagname - overrides Name/Nickname"] = "@TagName - al posto del nome utente";
+$a->strings["Account URL"] = "URL dell'utente";
+$a->strings["Friend Request URL"] = "URL Richiesta Amicizia";
+$a->strings["Friend Confirm URL"] = "URL Conferma Amicizia";
+$a->strings["Notification Endpoint URL"] = "URL Notifiche";
+$a->strings["Poll/Feed URL"] = "URL Feed";
+$a->strings["New photo from this URL"] = "Nuova foto da questo URL";
+$a->strings["Remote Self"] = "Io remoto";
+$a->strings["Mirror postings from this contact"] = "Ripeti i messaggi di questo contatto";
+$a->strings["Mark this contact as remote_self, this will cause friendica to repost new entries from this contact."] = "Imposta questo contatto come 'io remoto', questo farà si che friendica reinvii i nuovi messaggi da questo contatto.";
+$a->strings["Welcome to Friendica"] = "Benvenuto su Friendica";
+$a->strings["New Member Checklist"] = "Cose da fare per i Nuovi Utenti";
+$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."] = "Vorremmo offrirti qualche trucco e dei link alla guida per aiutarti ad avere un'esperienza divertente. Clicca su un qualsiasi elemento per visitare la relativa pagina. Un link a questa pagina sarà visibile nella tua home per due settimane dopo la tua registrazione.";
+$a->strings["Getting Started"] = "Come Iniziare";
+$a->strings["Friendica Walk-Through"] = "Friendica Passo-Passo";
+$a->strings["On your <em>Quick Start</em> page - find a brief introduction to your profile and network tabs, make some new connections, and find some groups to join."] = "Sulla tua pagina <em>Quick Start</em> - veloce introduzione alla tua pagina profilo e alla pagina Rete, fai qualche nuova amicizia, e trova qualche gruppo a cui unirti.";
+$a->strings["Go to Your Settings"] = "Vai alle tue Impostazioni";
+$a->strings["On your <em>Settings</em> page -  change your initial password. Also make a note of your Identity Address. This looks just like an email address - and will be useful in making friends on the free social web."] = "Nella tua pagina <em>Impostazioni</em> - cambia la tua password iniziale. Prendi anche nota del tuo Indirizzo Identità. Assomiglia a un indirizzo email e sarà utile per stringere amicizie nel web sociale libero.";
+$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."] = "Guarda le altre impostazioni, in particolare le impostazioni della privacy. Un profilo non pubblicato è come un numero di telefono non in elenco. In genere, dovresti pubblicare il tuo profilo - a meno che tutti i tuoi amici e potenziali tali sappiano esattamente come trovarti.";
+$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."] = "Carica una foto del profilo se non l'hai ancora fatto. Studi hanno mostrato che persone che hanno vere foto di se stessi hanno dieci volte più probabilità di fare amicizie rispetto alle persone che non ce l'hanno.";
+$a->strings["Edit Your Profile"] = "Modifica il tuo Profilo";
+$a->strings["Edit your <strong>default</strong> profile to your liking. Review the settings for hiding your list of friends and hiding the profile from unknown visitors."] = "Modifica il tuo profilo <strong>predefinito</strong> a piacimento. Rivedi le impostazioni per nascondere la tua lista di amici e nascondere il profilo ai visitatori sconosciuti.";
+$a->strings["Profile Keywords"] = "Parole chiave del profilo";
+$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."] = "Inserisci qualche parola chiave pubblica nel tuo profilo predefinito che descriva i tuoi interessi. Potremmo essere in grado di trovare altre persone con interessi similari e suggerirti delle amicizie.";
+$a->strings["Connecting"] = "Collegarsi";
+$a->strings["Authorise the Facebook Connector if you currently have a Facebook account and we will (optionally) import all your Facebook friends and conversations."] = "Autorizza il Facebook Connector se hai un account Facebook, e noi (opzionalmente) importeremo tuti i tuoi amici e le tue conversazioni da Facebook.";
+$a->strings["<em>If</em> this is your own personal server, installing the Facebook addon may ease your transition to the free social web."] = "<em>Se</em questo è il tuo server personale, installare il plugin per Facebook puo' aiutarti nella transizione verso il web sociale libero.";
+$a->strings["Importing Emails"] = "Importare le Email";
+$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"] = "Inserisci i tuoi dati di accesso all'email nella tua pagina Impostazioni Connettori se vuoi importare e interagire con amici o mailing list dalla tua casella di posta in arrivo";
+$a->strings["Go to Your Contacts Page"] = "Vai alla tua pagina Contatti";
+$a->strings["Your Contacts page is your gateway to managing friendships and connecting with friends on other networks. Typically you enter their address or site URL in the <em>Add New Contact</em> dialog."] = "La tua pagina Contatti è il mezzo per gestire le amicizie e collegarsi con amici su altre reti. Di solito, basta inserire l'indirizzo nel campo <em>Aggiungi Nuovo Contatto</em>";
+$a->strings["Go to Your Site's Directory"] = "Vai all'Elenco del tuo sito";
+$a->strings["The Directory page lets you find other people in this network or other federated sites. Look for a <em>Connect</em> or <em>Follow</em> link on their profile page. Provide your own Identity Address if requested."] = "La pagina Elenco ti permette di trovare altre persone in questa rete o in altri siti. Cerca un link <em>Connetti</em> o <em>Segui</em> nella loro pagina del profilo. Inserisci il tuo Indirizzo Identità, se richiesto.";
+$a->strings["Finding New People"] = "Trova nuove persone";
+$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."] = "Nel pannello laterale nella pagina \"Contatti\", ci sono diversi strumenti per trovare nuovi amici. Possiamo confrontare le persone per interessi, cercare le persone per nome e fornire suggerimenti basati sui tuoi contatti esistenti. Su un sito nuovo, i suggerimenti sono di solito presenti dopo 24 ore.";
+$a->strings["Group Your Contacts"] = "Raggruppa i tuoi contatti";
+$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."] = "Quando avrai alcuni amici, organizzali in gruppi di conversazioni private dalla barra laterale della tua pagina Contatti. Potrai interagire privatamente con ogni gruppo nella tua pagina Rete";
+$a->strings["Why Aren't My Posts Public?"] = "Perchè i miei post non sono pubblici?";
+$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 rispetta la tua provacy. Per impostazione predefinita, i tuoi post sono mostrati solo alle persone che hai aggiunto come amici. Per maggiori informazioni guarda la sezione della guida dal link qui sopra.";
+$a->strings["Getting Help"] = "Ottenere Aiuto";
+$a->strings["Go to the Help Section"] = "Vai alla sezione Guida";
+$a->strings["Our <strong>help</strong> pages may be consulted for detail on other program features and resources."] = "Le nostre pagine della <strong>guida</strong> possono essere consultate per avere dettagli su altre caratteristiche del programma e altre risorse.";
+$a->strings["Poke/Prod"] = "Tocca/Pungola";
+$a->strings["poke, prod or do other things to somebody"] = "tocca, pungola o fai altre cose a qualcuno";
+$a->strings["Recipient"] = "Destinatario";
+$a->strings["Choose what you wish to do to recipient"] = "Scegli cosa vuoi fare al destinatario";
+$a->strings["Make this post private"] = "Rendi questo post privato";
+$a->strings["Item has been removed."] = "L'oggetto è stato rimosso.";
+$a->strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s sta seguendo %3\$s di %2\$s";
+$a->strings["%1\$s welcomes %2\$s"] = "%s dà il benvenuto a %s";
+$a->strings["This may occasionally happen if contact was requested by both persons and it has already been approved."] = "Questo puo' accadere occasionalmente se la richiesta di contatto era stata inviata da entrambe le persone e  già approvata.";
+$a->strings["Response from remote site was not understood."] = "Errore di comunicazione con l'altro sito.";
+$a->strings["Unexpected response from remote site: "] = "La risposta dell'altro sito non può essere gestita: ";
+$a->strings["Confirmation completed successfully."] = "Conferma completata con successo.";
+$a->strings["Remote site reported: "] = "Il sito remoto riporta: ";
+$a->strings["Temporary failure. Please wait and try again."] = "Problema temporaneo. Attendi e riprova.";
+$a->strings["Introduction failed or was revoked."] = "La presentazione ha generato un errore o è stata revocata.";
+$a->strings["Unable to set contact photo."] = "Impossibile impostare la foto del contatto.";
+$a->strings["No user record found for '%s' "] = "Nessun utente trovato '%s'";
+$a->strings["Our site encryption key is apparently messed up."] = "La nostra chiave di criptazione del sito sembra essere corrotta.";
+$a->strings["Empty site URL was provided or URL could not be decrypted by us."] = "E' stato fornito un indirizzo vuoto o non possiamo decrittare l'indirizzo.";
+$a->strings["Contact record was not found for you on our site."] = "Il contatto non è stato trovato sul nostro sito.";
+$a->strings["Site public key not available in contact record for URL %s."] = "La chiave pubblica del sito non è disponibile per l'URL %s";
+$a->strings["The ID provided by your system is a duplicate on our system. It should work if you try again."] = "L'ID fornito dal tuo sistema è duplicato sul nostro sistema. Se riprovi dovrebbe funzionare.";
+$a->strings["Unable to set your contact credentials on our system."] = "Impossibile impostare le credenziali del tuo contatto sul nostro sistema.";
+$a->strings["Unable to update your contact profile details on our system"] = "Impossibile aggiornare i dettagli del tuo contatto sul nostro sistema";
+$a->strings["%1\$s has joined %2\$s"] = "%1\$s si è unito a %2\$s";
+$a->strings["Unable to locate original post."] = "Impossibile trovare il messaggio originale.";
+$a->strings["Empty post discarded."] = "Messaggio vuoto scartato.";
+$a->strings["System error. Post not saved."] = "Errore di sistema. Messaggio non salvato.";
+$a->strings["This message was sent to you by %s, a member of the Friendica social network."] = "Questo messaggio ti è stato inviato da %s, un membro del social network Friendica.";
+$a->strings["You may visit them online at %s"] = "Puoi visitarli online su %s";
+$a->strings["Please contact the sender by replying to this post if you do not wish to receive these messages."] = "Contatta il mittente rispondendo a questo post se non vuoi ricevere questi messaggi.";
+$a->strings["%s posted an update."] = "%s ha inviato un aggiornamento.";
+$a->strings["Image uploaded but image cropping failed."] = "L'immagine è stata caricata, ma il non è stato possibile ritagliarla.";
+$a->strings["Image size reduction [%s] failed."] = "Il ridimensionamento del'immagine [%s] è fallito.";
+$a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Ricarica la pagina con shift+F5 o cancella la cache del browser se la nuova foto non viene mostrata immediatamente.";
+$a->strings["Unable to process image"] = "Impossibile elaborare l'immagine";
+$a->strings["Upload File:"] = "Carica un file:";
+$a->strings["Select a profile:"] = "Seleziona un profilo:";
+$a->strings["Upload"] = "Carica";
+$a->strings["skip this step"] = "salta questo passaggio";
+$a->strings["select a photo from your photo albums"] = "seleziona una foto dai tuoi album";
+$a->strings["Crop Image"] = "Ritaglia immagine";
+$a->strings["Please adjust the image cropping for optimum viewing."] = "Ritaglia l'imagine per una visualizzazione migliore.";
+$a->strings["Done Editing"] = "Finito";
+$a->strings["Image uploaded successfully."] = "Immagine caricata con successo.";
+$a->strings["Friends of %s"] = "Amici di %s";
+$a->strings["No friends to display."] = "Nessun amico da visualizzare.";
+$a->strings["Find on this site"] = "Cerca nel sito";
+$a->strings["Site Directory"] = "Elenco del sito";
+$a->strings["Gender: "] = "Genere:";
+$a->strings["No entries (some entries may be hidden)."] = "Nessuna voce (qualche voce potrebbe essere nascosta).";
+$a->strings["Time Conversion"] = "Conversione Ora";
+$a->strings["Friendica provides this service for sharing events with other networks and friends in unknown timezones."] = "Friendica fornisce questo servizio per la condivisione di eventi con altre reti e amici in fusi orari sconosciuti.";
+$a->strings["UTC time: %s"] = "Ora UTC: %s";
+$a->strings["Current timezone: %s"] = "Fuso orario corrente: %s";
+$a->strings["Converted localtime: %s"] = "Ora locale convertita: %s";
+$a->strings["Please select your timezone:"] = "Selezionare il tuo fuso orario:";
index ec003c07720e3b5c117a6c248f828807251f4143..df47269834f681d2a3c69fe7b457552bd201d62f 100644 (file)
@@ -9,13 +9,14 @@
 # Gert Cauwenberg <gcauwenberg@gmail.com>, 2013
 # jeroenpraat <jeroenpraat@xs4all.nl>, 2012-2014
 # jeroenpraat <jeroenpraat@xs4all.nl>, 2012
+# Karel Vandecandelaere <karel@dasrakel.eu>, 2015
 msgid ""
 msgstr ""
 "Project-Id-Version: friendica\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-09 08:57+0100\n"
-"PO-Revision-Date: 2015-02-09 09:46+0000\n"
-"Last-Translator: fabrixxm <fabrix.xm@gmail.com>\n"
+"POT-Creation-Date: 2015-04-04 17:54+0200\n"
+"PO-Revision-Date: 2015-05-18 10:07+0000\n"
+"Last-Translator: Karel Vandecandelaere <karel@dasrakel.eu>\n"
 "Language-Team: Dutch (http://www.transifex.com/projects/p/friendica/language/nl/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -23,4421 +24,4523 @@ msgstr ""
 "Language: nl\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
-#: ../../mod/contacts.php:108
-#, php-format
-msgid "%d contact edited."
-msgid_plural "%d contacts edited"
-msgstr[0] ""
-msgstr[1] ""
-
-#: ../../mod/contacts.php:139 ../../mod/contacts.php:272
-msgid "Could not access contact record."
-msgstr "Kon geen toegang krijgen tot de contactgegevens"
+#: ../../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"
 
-#: ../../mod/contacts.php:153
-msgid "Could not locate selected profile."
-msgstr "Kon het geselecteerde profiel niet vinden."
+#: ../../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"
 
-#: ../../mod/contacts.php:186
-msgid "Contact updated."
-msgstr "Contact bijgewerkt."
+#: ../../view/theme/cleanzero/config.php:83
+msgid "Set resize level for images in posts and comments (width and height)"
+msgstr ""
 
-#: ../../mod/contacts.php:188 ../../mod/dfrn_request.php:576
-msgid "Failed to update contact record."
-msgstr "Ik kon de contactgegevens niet aanpassen."
+#: ../../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"
 
-#: ../../mod/contacts.php:254 ../../mod/manage.php:96
-#: ../../mod/display.php:499 ../../mod/profile_photo.php:19
-#: ../../mod/profile_photo.php:169 ../../mod/profile_photo.php:180
-#: ../../mod/profile_photo.php:193 ../../mod/follow.php:9
-#: ../../mod/item.php:168 ../../mod/item.php:184 ../../mod/group.php:19
-#: ../../mod/dfrn_confirm.php:55 ../../mod/fsuggest.php:78
-#: ../../mod/wall_upload.php:66 ../../mod/viewcontacts.php:24
-#: ../../mod/notifications.php:66 ../../mod/message.php:38
-#: ../../mod/message.php:174 ../../mod/crepair.php:119
-#: ../../mod/nogroup.php:25 ../../mod/network.php:4 ../../mod/allfriends.php:9
-#: ../../mod/events.php:140 ../../mod/install.php:151
-#: ../../mod/wallmessage.php:9 ../../mod/wallmessage.php:33
-#: ../../mod/wallmessage.php:79 ../../mod/wallmessage.php:103
-#: ../../mod/wall_attach.php:55 ../../mod/settings.php:102
-#: ../../mod/settings.php:596 ../../mod/settings.php:601
-#: ../../mod/register.php:42 ../../mod/delegate.php:12 ../../mod/mood.php:114
-#: ../../mod/suggest.php:58 ../../mod/profiles.php:165
-#: ../../mod/profiles.php:618 ../../mod/editpost.php:10 ../../mod/api.php:26
-#: ../../mod/api.php:31 ../../mod/notes.php:20 ../../mod/poke.php:135
-#: ../../mod/invite.php:15 ../../mod/invite.php:101 ../../mod/photos.php:134
-#: ../../mod/photos.php:1050 ../../mod/regmod.php:110 ../../mod/uimport.php:23
-#: ../../mod/attach.php:33 ../../include/items.php:4712 ../../index.php:369
-msgid "Permission denied."
-msgstr "Toegang geweigerd"
+#: ../../view/theme/cleanzero/config.php:85
+msgid "Set theme width"
+msgstr "Stel breedte van het thema in"
 
-#: ../../mod/contacts.php:287
-msgid "Contact has been blocked"
-msgstr "Contact is geblokkeerd"
+#: ../../view/theme/cleanzero/config.php:86
+#: ../../view/theme/quattro/config.php:68
+msgid "Color scheme"
+msgstr "Kleurschema"
 
-#: ../../mod/contacts.php:287
-msgid "Contact has been unblocked"
-msgstr "Contact is gedeblokkeerd"
+#: ../../view/theme/vier/config.php:59
+msgid "Set style"
+msgstr ""
 
-#: ../../mod/contacts.php:298
-msgid "Contact has been ignored"
-msgstr "Contact wordt genegeerd"
+#: ../../view/theme/duepuntozero/config.php:44 ../../include/text.php:1719
+#: ../../include/user.php:247
+msgid "default"
+msgstr "standaard"
 
-#: ../../mod/contacts.php:298
-msgid "Contact has been unignored"
-msgstr "Contact wordt niet meer genegeerd"
+#: ../../view/theme/duepuntozero/config.php:45
+msgid "greenzero"
+msgstr ""
 
-#: ../../mod/contacts.php:310
-msgid "Contact has been archived"
-msgstr "Contact is gearchiveerd"
+#: ../../view/theme/duepuntozero/config.php:46
+msgid "purplezero"
+msgstr ""
 
-#: ../../mod/contacts.php:310
-msgid "Contact has been unarchived"
-msgstr "Contact is niet meer gearchiveerd"
+#: ../../view/theme/duepuntozero/config.php:47
+msgid "easterbunny"
+msgstr ""
 
-#: ../../mod/contacts.php:335 ../../mod/contacts.php:711
-msgid "Do you really want to delete this contact?"
-msgstr "Wil je echt dit contact verwijderen?"
+#: ../../view/theme/duepuntozero/config.php:48
+msgid "darkzero"
+msgstr ""
 
-#: ../../mod/contacts.php:337 ../../mod/message.php:209
-#: ../../mod/settings.php:1010 ../../mod/settings.php:1016
-#: ../../mod/settings.php:1024 ../../mod/settings.php:1028
-#: ../../mod/settings.php:1033 ../../mod/settings.php:1039
-#: ../../mod/settings.php:1045 ../../mod/settings.php:1051
-#: ../../mod/settings.php:1081 ../../mod/settings.php:1082
-#: ../../mod/settings.php:1083 ../../mod/settings.php:1084
-#: ../../mod/settings.php:1085 ../../mod/dfrn_request.php:830
-#: ../../mod/register.php:233 ../../mod/suggest.php:29
-#: ../../mod/profiles.php:661 ../../mod/profiles.php:664 ../../mod/api.php:105
-#: ../../include/items.php:4557
-msgid "Yes"
-msgstr "Ja"
+#: ../../view/theme/duepuntozero/config.php:49
+msgid "comix"
+msgstr ""
 
-#: ../../mod/contacts.php:340 ../../mod/tagrm.php:11 ../../mod/tagrm.php:94
-#: ../../mod/message.php:212 ../../mod/fbrowser.php:81
-#: ../../mod/fbrowser.php:116 ../../mod/settings.php:615
-#: ../../mod/settings.php:641 ../../mod/dfrn_request.php:844
-#: ../../mod/suggest.php:32 ../../mod/editpost.php:148
-#: ../../mod/photos.php:203 ../../mod/photos.php:292
-#: ../../include/conversation.php:1129 ../../include/items.php:4560
-msgid "Cancel"
-msgstr "Annuleren"
+#: ../../view/theme/duepuntozero/config.php:50
+msgid "slackr"
+msgstr ""
 
-#: ../../mod/contacts.php:352
-msgid "Contact has been removed."
-msgstr "Contact is verwijderd."
+#: ../../view/theme/duepuntozero/config.php:62
+msgid "Variations"
+msgstr ""
 
-#: ../../mod/contacts.php:390
-#, php-format
-msgid "You are mutual friends with %s"
-msgstr "Je bent wederzijds bevriend met %s"
+#: ../../view/theme/diabook/config.php:142
+#: ../../view/theme/diabook/theme.php:621 ../../include/acl_selectors.php:335
+msgid "don't show"
+msgstr "niet tonen"
 
-#: ../../mod/contacts.php:394
-#, php-format
-msgid "You are sharing with %s"
-msgstr "Je deelt met %s"
+#: ../../view/theme/diabook/config.php:142
+#: ../../view/theme/diabook/theme.php:621 ../../include/acl_selectors.php:334
+msgid "show"
+msgstr "tonen"
 
-#: ../../mod/contacts.php:399
-#, php-format
-msgid "%s is sharing with you"
-msgstr "%s deelt met jou"
+#: ../../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"
 
-#: ../../mod/contacts.php:416
-msgid "Private communications are not available for this contact."
-msgstr "Privécommunicatie met dit contact is niet beschikbaar."
+#: ../../view/theme/diabook/config.php:153
+msgid "Set resolution for middle column"
+msgstr "Stel resolutie in voor de middelste kolom. "
 
-#: ../../mod/contacts.php:419 ../../mod/admin.php:569
-msgid "Never"
-msgstr "Nooit"
+#: ../../view/theme/diabook/config.php:154
+msgid "Set color scheme"
+msgstr "Stel kleurenschema in"
 
-#: ../../mod/contacts.php:423
-msgid "(Update was successful)"
-msgstr "(Wijziging is geslaagd)"
+#: ../../view/theme/diabook/config.php:155
+msgid "Set zoomfactor for Earth Layer"
+msgstr ""
 
-#: ../../mod/contacts.php:423
-msgid "(Update was not successful)"
-msgstr "(Wijziging is niet geslaagd)"
+#: ../../view/theme/diabook/config.php:156
+#: ../../view/theme/diabook/theme.php:585
+msgid "Set longitude (X) for Earth Layers"
+msgstr ""
 
-#: ../../mod/contacts.php:425
-msgid "Suggest friends"
-msgstr "Stel vrienden voor"
+#: ../../view/theme/diabook/config.php:157
+#: ../../view/theme/diabook/theme.php:586
+msgid "Set latitude (Y) for Earth Layers"
+msgstr ""
 
-#: ../../mod/contacts.php:429
-#, php-format
-msgid "Network type: %s"
-msgstr "Netwerk type: %s"
+#: ../../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"
 
-#: ../../mod/contacts.php:432 ../../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"
+#: ../../view/theme/diabook/config.php:159
+#: ../../view/theme/diabook/theme.php:579
+#: ../../view/theme/diabook/theme.php:625
+msgid "Earth Layers"
+msgstr "Earth Layers"
 
-#: ../../mod/contacts.php:437
-msgid "View all contacts"
-msgstr "Alle contacten zien"
+#: ../../view/theme/diabook/config.php:160
+#: ../../view/theme/diabook/theme.php:391
+#: ../../view/theme/diabook/theme.php:626
+msgid "Community Profiles"
+msgstr "Forum/groepsprofielen"
 
-#: ../../mod/contacts.php:442 ../../mod/contacts.php:501
-#: ../../mod/contacts.php:714 ../../mod/admin.php:1009
-msgid "Unblock"
-msgstr "Blokkering opheffen"
+#: ../../view/theme/diabook/config.php:161
+#: ../../view/theme/diabook/theme.php:599
+#: ../../view/theme/diabook/theme.php:627
+msgid "Help or @NewHere ?"
+msgstr ""
 
-#: ../../mod/contacts.php:442 ../../mod/contacts.php:501
-#: ../../mod/contacts.php:714 ../../mod/admin.php:1008
-msgid "Block"
-msgstr "Blokkeren"
+#: ../../view/theme/diabook/config.php:162
+#: ../../view/theme/diabook/theme.php:606
+#: ../../view/theme/diabook/theme.php:628
+msgid "Connect Services"
+msgstr "Diensten verbinden"
 
-#: ../../mod/contacts.php:445
-msgid "Toggle Blocked status"
-msgstr "Schakel geblokkeerde status"
+#: ../../view/theme/diabook/config.php:163
+#: ../../view/theme/diabook/theme.php:523
+#: ../../view/theme/diabook/theme.php:629
+msgid "Find Friends"
+msgstr "Zoek vrienden"
 
-#: ../../mod/contacts.php:448 ../../mod/contacts.php:502
-#: ../../mod/contacts.php:715
-msgid "Unignore"
-msgstr "Negeer niet meer"
+#: ../../view/theme/diabook/config.php:164
+#: ../../view/theme/diabook/theme.php:412
+#: ../../view/theme/diabook/theme.php:630
+msgid "Last users"
+msgstr "Laatste gebruikers"
 
-#: ../../mod/contacts.php:448 ../../mod/contacts.php:502
-#: ../../mod/contacts.php:715 ../../mod/notifications.php:51
-#: ../../mod/notifications.php:164 ../../mod/notifications.php:210
-msgid "Ignore"
-msgstr "Negeren"
+#: ../../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"
 
-#: ../../mod/contacts.php:451
-msgid "Toggle Ignored status"
-msgstr "Schakel negeerstatus"
+#: ../../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"
 
-#: ../../mod/contacts.php:455 ../../mod/contacts.php:716
-msgid "Unarchive"
-msgstr "Archiveer niet meer"
+#: ../../view/theme/diabook/theme.php:123 ../../include/nav.php:105
+#: ../../include/nav.php:148 ../../mod/notifications.php:93
+msgid "Home"
+msgstr "Tijdlijn"
 
-#: ../../mod/contacts.php:455 ../../mod/contacts.php:716
-msgid "Archive"
-msgstr "Archiveer"
+#: ../../view/theme/diabook/theme.php:123 ../../include/nav.php:76
+#: ../../include/nav.php:148
+msgid "Your posts and conversations"
+msgstr "Jouw berichten en conversaties"
 
-#: ../../mod/contacts.php:458
-msgid "Toggle Archive status"
-msgstr "Schakel archiveringsstatus"
+#: ../../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"
 
-#: ../../mod/contacts.php:461
-msgid "Repair"
-msgstr "Herstellen"
+#: ../../view/theme/diabook/theme.php:124 ../../include/nav.php:77
+msgid "Your profile page"
+msgstr "Jouw profiel pagina"
 
-#: ../../mod/contacts.php:464
-msgid "Advanced Contact Settings"
-msgstr "Geavanceerde instellingen voor contacten"
+#: ../../view/theme/diabook/theme.php:125 ../../include/nav.php:177
+#: ../../mod/contacts.php:718
+msgid "Contacts"
+msgstr "Contacten"
 
-#: ../../mod/contacts.php:470
-msgid "Communications lost with this contact!"
-msgstr "Communicatie met dit contact is verbroken!"
+#: ../../view/theme/diabook/theme.php:125
+msgid "Your contacts"
+msgstr "Jouw contacten"
 
-#: ../../mod/contacts.php:473
-msgid "Contact Editor"
-msgstr "Contactbewerker"
+#: ../../view/theme/diabook/theme.php:126 ../../boot.php:2140
+#: ../../include/nav.php:78 ../../mod/fbrowser.php:25
+msgid "Photos"
+msgstr "Foto's"
 
-#: ../../mod/contacts.php:475 ../../mod/manage.php:110
-#: ../../mod/fsuggest.php:107 ../../mod/message.php:335
-#: ../../mod/message.php:564 ../../mod/crepair.php:186
-#: ../../mod/events.php:478 ../../mod/content.php:710
-#: ../../mod/install.php:248 ../../mod/install.php:286 ../../mod/mood.php:137
-#: ../../mod/profiles.php:686 ../../mod/localtime.php:45
-#: ../../mod/poke.php:199 ../../mod/invite.php:140 ../../mod/photos.php:1084
-#: ../../mod/photos.php:1203 ../../mod/photos.php:1514
-#: ../../mod/photos.php:1565 ../../mod/photos.php:1609
-#: ../../mod/photos.php:1697 ../../object/Item.php:678
-#: ../../view/theme/cleanzero/config.php:80
-#: ../../view/theme/dispy/config.php:70 ../../view/theme/quattro/config.php:64
-#: ../../view/theme/diabook/config.php:148
-#: ../../view/theme/diabook/theme.php:633 ../../view/theme/vier/config.php:53
-#: ../../view/theme/duepuntozero/config.php:59
-msgid "Submit"
-msgstr "Opslaan"
+#: ../../view/theme/diabook/theme.php:126 ../../include/nav.php:78
+msgid "Your photos"
+msgstr "Jouw foto's"
 
-#: ../../mod/contacts.php:476
-msgid "Profile Visibility"
-msgstr "Zichtbaarheid profiel"
+#: ../../view/theme/diabook/theme.php:127 ../../boot.php:2157
+#: ../../include/nav.php:80 ../../mod/events.php:370
+msgid "Events"
+msgstr "Gebeurtenissen"
 
-#: ../../mod/contacts.php:477
-#, 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. "
+#: ../../view/theme/diabook/theme.php:127 ../../include/nav.php:80
+msgid "Your events"
+msgstr "Jouw gebeurtenissen"
 
-#: ../../mod/contacts.php:478
-msgid "Contact Information / Notes"
-msgstr "Contactinformatie / aantekeningen"
+#: ../../view/theme/diabook/theme.php:128 ../../include/nav.php:81
+msgid "Personal notes"
+msgstr "Persoonlijke nota's"
 
-#: ../../mod/contacts.php:479
-msgid "Edit contact notes"
-msgstr "Wijzig aantekeningen over dit contact"
-
-#: ../../mod/contacts.php:484 ../../mod/contacts.php:679
-#: ../../mod/viewcontacts.php:64 ../../mod/nogroup.php:40
-#, php-format
-msgid "Visit %s's profile [%s]"
-msgstr "Bekijk het profiel van %s [%s]"
-
-#: ../../mod/contacts.php:485
-msgid "Block/Unblock contact"
-msgstr "Blokkeer/deblokkeer contact"
-
-#: ../../mod/contacts.php:486
-msgid "Ignore contact"
-msgstr "Negeer contact"
+#: ../../view/theme/diabook/theme.php:128
+msgid "Your personal photos"
+msgstr "Jouw persoonlijke foto's"
 
-#: ../../mod/contacts.php:487
-msgid "Repair URL settings"
-msgstr "Repareer URL-instellingen"
+#: ../../view/theme/diabook/theme.php:129 ../../include/nav.php:129
+#: ../../include/nav.php:131 ../../mod/community.php:32
+msgid "Community"
+msgstr "Website"
 
-#: ../../mod/contacts.php:488
-msgid "View conversations"
-msgstr "Toon conversaties"
+#: ../../view/theme/diabook/theme.php:463 ../../include/conversation.php:118
+#: ../../include/conversation.php:245 ../../include/text.php:1983
+msgid "event"
+msgstr "gebeurtenis"
 
-#: ../../mod/contacts.php:490
-msgid "Delete contact"
-msgstr "Verwijder contact"
+#: ../../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"
 
-#: ../../mod/contacts.php:494
-msgid "Last update:"
-msgstr "Laatste wijziging:"
+#: ../../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"
 
-#: ../../mod/contacts.php:496
-msgid "Update public posts"
-msgstr "Openbare posts aanpassen"
+#: ../../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"
 
-#: ../../mod/contacts.php:498 ../../mod/admin.php:1503
-msgid "Update now"
-msgstr "Wijzig nu"
+#: ../../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"
 
-#: ../../mod/contacts.php:505
-msgid "Currently blocked"
-msgstr "Op dit moment geblokkeerd"
+#: ../../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"
 
-#: ../../mod/contacts.php:506
-msgid "Currently ignored"
-msgstr "Op dit moment genegeerd"
+#: ../../view/theme/diabook/theme.php:524
+msgid "Local Directory"
+msgstr "Lokale gids"
 
-#: ../../mod/contacts.php:507
-msgid "Currently archived"
-msgstr "Op dit moment gearchiveerd"
+#: ../../view/theme/diabook/theme.php:525 ../../mod/directory.php:51
+msgid "Global Directory"
+msgstr "Globale gids"
 
-#: ../../mod/contacts.php:508 ../../mod/notifications.php:157
-#: ../../mod/notifications.php:204
-msgid "Hide this contact from others"
-msgstr "Verberg dit contact voor anderen"
+#: ../../view/theme/diabook/theme.php:526 ../../include/contact_widgets.php:36
+msgid "Similar Interests"
+msgstr "Dezelfde interesses"
 
-#: ../../mod/contacts.php:508
-msgid ""
-"Replies/likes to your public posts <strong>may</strong> still be visible"
-msgstr "Antwoorden of 'vind ik leuk's op je openbare posts <strong>kunnen</strong> nog zichtbaar zijn"
+#: ../../view/theme/diabook/theme.php:527 ../../include/contact_widgets.php:35
+#: ../../mod/suggest.php:68
+msgid "Friend Suggestions"
+msgstr "Vriendschapsvoorstellen"
 
-#: ../../mod/contacts.php:509
-msgid "Notification for new posts"
-msgstr "Meldingen voor nieuwe berichten"
+#: ../../view/theme/diabook/theme.php:528 ../../include/contact_widgets.php:38
+msgid "Invite Friends"
+msgstr "Vrienden uitnodigen"
 
-#: ../../mod/contacts.php:509
-msgid "Send a notification of every new post of this contact"
-msgstr ""
+#: ../../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"
 
-#: ../../mod/contacts.php:510
-msgid "Fetch further information for feeds"
+#: ../../view/theme/diabook/theme.php:584
+msgid "Set zoomfactor for Earth Layers"
 msgstr ""
 
-#: ../../mod/contacts.php:511
-msgid "Disabled"
+#: ../../view/theme/diabook/theme.php:622
+msgid "Show/hide boxes at right-hand column:"
 msgstr ""
 
-#: ../../mod/contacts.php:511
-msgid "Fetch information"
-msgstr ""
+#: ../../view/theme/quattro/config.php:67
+msgid "Alignment"
+msgstr "Uitlijning"
 
-#: ../../mod/contacts.php:511
-msgid "Fetch information and keywords"
-msgstr ""
+#: ../../view/theme/quattro/config.php:67
+msgid "Left"
+msgstr "Links"
 
-#: ../../mod/contacts.php:513
-msgid "Blacklisted keywords"
-msgstr ""
+#: ../../view/theme/quattro/config.php:67
+msgid "Center"
+msgstr "Gecentreerd"
 
-#: ../../mod/contacts.php:513
-msgid ""
-"Comma separated list of keywords that should not be converted to hashtags, "
-"when \"Fetch information and keywords\" is selected"
-msgstr ""
+#: ../../view/theme/quattro/config.php:69
+msgid "Posts font size"
+msgstr "Lettergrootte berichten"
 
-#: ../../mod/contacts.php:564
-msgid "Suggestions"
-msgstr "Voorstellen"
+#: ../../view/theme/quattro/config.php:70
+msgid "Textareas font size"
+msgstr "Lettergrootte tekstgebieden"
 
-#: ../../mod/contacts.php:567
-msgid "Suggest potential friends"
-msgstr "Stel vrienden voor"
+#: ../../view/theme/dispy/config.php:75
+msgid "Set colour scheme"
+msgstr "Stel kleurschema in"
 
-#: ../../mod/contacts.php:570 ../../mod/group.php:194
-msgid "All Contacts"
-msgstr "Alle Contacten"
+#: ../../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. "
 
-#: ../../mod/contacts.php:573
-msgid "Show all contacts"
-msgstr "Toon alle contacten"
+#: ../../index.php:255 ../../mod/help.php:42
+msgid "Not Found"
+msgstr "Niet gevonden"
 
-#: ../../mod/contacts.php:576
-msgid "Unblocked"
-msgstr "Niet geblokkeerd"
+#: ../../index.php:258 ../../mod/help.php:45
+msgid "Page not found."
+msgstr "Pagina niet gevonden"
 
-#: ../../mod/contacts.php:579
-msgid "Only show unblocked contacts"
-msgstr "Toon alleen niet-geblokkeerde contacten"
+#: ../../index.php:367 ../../mod/group.php:72 ../../mod/profperm.php:19
+msgid "Permission denied"
+msgstr "Toegang geweigerd"
 
-#: ../../mod/contacts.php:583
-msgid "Blocked"
-msgstr "Geblokkeerd"
+#: ../../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"
 
-#: ../../mod/contacts.php:586
-msgid "Only show blocked contacts"
-msgstr "Toon alleen geblokkeerde contacten"
+#: ../../index.php:427
+msgid "toggle mobile"
+msgstr "mobiel thema omwisselen"
 
-#: ../../mod/contacts.php:590
-msgid "Ignored"
-msgstr "Genegeerd"
+#: ../../addon-wrk/openidserver/lib/render/trust.php:30
+#, php-format
+msgid "Do you wish to confirm your identity (<tt>%s</tt>) with <tt>%s</tt>"
+msgstr ""
 
-#: ../../mod/contacts.php:593
-msgid "Only show ignored contacts"
-msgstr "Toon alleen genegeerde contacten"
+#: ../../addon-wrk/openidserver/lib/render/trust.php:43
+#: ../../mod/dfrn_request.php:676
+msgid "Confirm"
+msgstr "Bevestig"
 
-#: ../../mod/contacts.php:597
-msgid "Archived"
-msgstr "Gearchiveerd"
+#: ../../addon-wrk/openidserver/lib/render/trust.php:44
+msgid "Do not confirm"
+msgstr "Bevestig niet"
 
-#: ../../mod/contacts.php:600
-msgid "Only show archived contacts"
-msgstr "Toon alleen gearchiveerde contacten"
+#: ../../addon-wrk/openidserver/lib/render/trust.php:48
+msgid "Trust This Site"
+msgstr "Vertrouw deze website"
 
-#: ../../mod/contacts.php:604
-msgid "Hidden"
-msgstr "Verborgen"
+#: ../../addon-wrk/openidserver/lib/render/trust.php:53
+msgid "No Identifier Sent"
+msgstr ""
 
-#: ../../mod/contacts.php:607
-msgid "Only show hidden contacts"
-msgstr "Toon alleen verborgen contacten"
+#: ../../addon-wrk/openidserver/lib/render/wronguser.php:5
+msgid "Requested identity don't match logged in user."
+msgstr ""
 
-#: ../../mod/contacts.php:655
-msgid "Mutual Friendship"
-msgstr "Wederzijdse vriendschap"
+#: ../../addon-wrk/openidserver/lib/render.php:27
+#, php-format
+msgid "Please wait; you are being redirected to <%s>"
+msgstr ""
 
-#: ../../mod/contacts.php:659
-msgid "is a fan of yours"
-msgstr "Is een fan van jou"
+#: ../../boot.php:749
+msgid "Delete this item?"
+msgstr "Dit item verwijderen?"
 
-#: ../../mod/contacts.php:663
-msgid "you are a fan of"
-msgstr "Jij bent een fan van"
+#: ../../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"
 
-#: ../../mod/contacts.php:680 ../../mod/nogroup.php:41
-msgid "Edit contact"
-msgstr "Contact bewerken"
+#: ../../boot.php:751 ../../include/contact_widgets.php:205
+#: ../../object/Item.php:390 ../../mod/content.php:606
+msgid "show more"
+msgstr "toon meer"
 
-#: ../../mod/contacts.php:702 ../../include/nav.php:177
-#: ../../view/theme/diabook/theme.php:125
-msgid "Contacts"
-msgstr "Contacten"
+#: ../../boot.php:752
+msgid "show fewer"
+msgstr "Minder tonen"
 
-#: ../../mod/contacts.php:706
-msgid "Search your contacts"
-msgstr "Doorzoek je contacten"
+#: ../../boot.php:1122
+#, php-format
+msgid "Update %s failed. See error logs."
+msgstr "Wijziging %s mislukt. Lees de error logbestanden."
 
-#: ../../mod/contacts.php:707 ../../mod/directory.php:61
-msgid "Finding: "
-msgstr "Gevonden:"
+#: ../../boot.php:1229
+msgid "Create a New Account"
+msgstr "Nieuwe account aanmaken"
 
-#: ../../mod/contacts.php:708 ../../mod/directory.php:63
-#: ../../include/contact_widgets.php:34
-msgid "Find"
-msgstr "Zoek"
+#: ../../boot.php:1230 ../../include/nav.php:109 ../../mod/register.php:269
+msgid "Register"
+msgstr "Registreer"
 
-#: ../../mod/contacts.php:713 ../../mod/settings.php:132
-#: ../../mod/settings.php:640
-msgid "Update"
-msgstr "Wijzigen"
+#: ../../boot.php:1254 ../../include/nav.php:73
+msgid "Logout"
+msgstr "Uitloggen"
 
-#: ../../mod/contacts.php:717 ../../mod/group.php:171 ../../mod/admin.php:1007
-#: ../../mod/content.php:438 ../../mod/content.php:741
-#: ../../mod/settings.php:677 ../../mod/photos.php:1654
-#: ../../object/Item.php:130 ../../include/conversation.php:614
-msgid "Delete"
-msgstr "Verwijder"
+#: ../../boot.php:1255 ../../include/nav.php:92 ../../mod/bookmarklet.php:12
+msgid "Login"
+msgstr "Login"
 
-#: ../../mod/hcard.php:10
-msgid "No profile"
-msgstr "Geen profiel"
+#: ../../boot.php:1257
+msgid "Nickname or Email address: "
+msgstr "Bijnaam of e-mailadres:"
 
-#: ../../mod/manage.php:106
-msgid "Manage Identities and/or Pages"
-msgstr "Beheer Identiteiten en/of Pagina's"
+#: ../../boot.php:1258
+msgid "Password: "
+msgstr "Wachtwoord:"
 
-#: ../../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."
+#: ../../boot.php:1259
+msgid "Remember me"
+msgstr "Onthou me"
 
-#: ../../mod/manage.php:108
-msgid "Select an identity to manage: "
-msgstr "Selecteer een identiteit om te beheren:"
+#: ../../boot.php:1262
+msgid "Or login using OpenID: "
+msgstr "Of log in met OpenID:"
 
-#: ../../mod/oexchange.php:25
-msgid "Post successful."
-msgstr "Bericht succesvol geplaatst."
+#: ../../boot.php:1268
+msgid "Forgot your password?"
+msgstr "Wachtwoord vergeten?"
 
-#: ../../mod/profperm.php:19 ../../mod/group.php:72 ../../index.php:368
-msgid "Permission denied"
-msgstr "Toegang geweigerd"
+#: ../../boot.php:1269 ../../mod/lostpass.php:109
+msgid "Password Reset"
+msgstr "Wachtwoord opnieuw instellen"
 
-#: ../../mod/profperm.php:25 ../../mod/profperm.php:55
-msgid "Invalid profile identifier."
-msgstr "Ongeldige profiel-identificatie."
+#: ../../boot.php:1271
+msgid "Website Terms of Service"
+msgstr "Gebruikersvoorwaarden website"
 
-#: ../../mod/profperm.php:101
-msgid "Profile Visibility Editor"
-msgstr ""
+#: ../../boot.php:1272
+msgid "terms of service"
+msgstr "servicevoorwaarden"
 
-#: ../../mod/profperm.php:103 ../../mod/newmember.php:32 ../../boot.php:2119
-#: ../../include/profile_advanced.php:7 ../../include/profile_advanced.php:87
-#: ../../include/nav.php:77 ../../view/theme/diabook/theme.php:124
-msgid "Profile"
-msgstr "Profiel"
+#: ../../boot.php:1274
+msgid "Website Privacy Policy"
+msgstr "Privacybeleid website"
 
-#: ../../mod/profperm.php:105 ../../mod/group.php:224
-msgid "Click on a contact to add or remove."
-msgstr "Klik op een contact om het toe te voegen of te verwijderen."
+#: ../../boot.php:1275
+msgid "privacy policy"
+msgstr "privacybeleid"
 
-#: ../../mod/profperm.php:114
-msgid "Visible To"
-msgstr "Zichtbaar voor"
+#: ../../boot.php:1408
+msgid "Requested account is not available."
+msgstr "Gevraagde account is niet beschikbaar."
 
-#: ../../mod/profperm.php:130
-msgid "All Contacts (with secure profile access)"
-msgstr "Alle contacten (met veilige profieltoegang)"
+#: ../../boot.php:1447 ../../mod/profile.php:21
+msgid "Requested profile is not available."
+msgstr "Gevraagde profiel is niet beschikbaar."
 
-#: ../../mod/display.php:82 ../../mod/display.php:284
-#: ../../mod/display.php:503 ../../mod/viewsrc.php:15 ../../mod/admin.php:169
-#: ../../mod/admin.php:1052 ../../mod/admin.php:1265 ../../mod/notice.php:15
-#: ../../include/items.php:4516
-msgid "Item not found."
-msgstr "Item niet gevonden."
+#: ../../boot.php:1490 ../../boot.php:1624
+#: ../../include/profile_advanced.php:84
+msgid "Edit profile"
+msgstr "Bewerk profiel"
 
-#: ../../mod/display.php:212 ../../mod/videos.php:115
-#: ../../mod/viewcontacts.php:19 ../../mod/community.php:18
-#: ../../mod/dfrn_request.php:762 ../../mod/search.php:89
-#: ../../mod/directory.php:33 ../../mod/photos.php:920
-msgid "Public access denied."
-msgstr "Niet vrij toegankelijk"
+#: ../../boot.php:1557 ../../include/contact_widgets.php:10
+#: ../../mod/suggest.php:90 ../../mod/match.php:58
+msgid "Connect"
+msgstr "Verbinden"
 
-#: ../../mod/display.php:332 ../../mod/profile.php:155
-msgid "Access to this profile has been restricted."
-msgstr "Toegang tot dit profiel is beperkt."
+#: ../../boot.php:1589
+msgid "Message"
+msgstr "Bericht"
 
-#: ../../mod/display.php:496
-msgid "Item has been removed."
-msgstr "Item is verwijderd."
+#: ../../boot.php:1595 ../../include/nav.php:175
+msgid "Profiles"
+msgstr "Profielen"
 
-#: ../../mod/newmember.php:6
-msgid "Welcome to Friendica"
-msgstr "Welkom bij Friendica"
+#: ../../boot.php:1595
+msgid "Manage/edit profiles"
+msgstr "Beheer/wijzig profielen"
 
-#: ../../mod/newmember.php:8
-msgid "New Member Checklist"
-msgstr "Checklist voor nieuwe leden"
+#: ../../boot.php:1600 ../../boot.php:1626 ../../mod/profiles.php:804
+msgid "Change profile photo"
+msgstr "Profiel foto wijzigen"
 
-#: ../../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."
+#: ../../boot.php:1601 ../../mod/profiles.php:805
+msgid "Create New Profile"
+msgstr "Maak nieuw profiel"
 
-#: ../../mod/newmember.php:14
-msgid "Getting Started"
-msgstr "Aan de slag"
+#: ../../boot.php:1611 ../../mod/profiles.php:816
+msgid "Profile Image"
+msgstr "Profiel afbeelding"
 
-#: ../../mod/newmember.php:18
-msgid "Friendica Walk-Through"
-msgstr "Doorloop Friendica"
+#: ../../boot.php:1614 ../../mod/profiles.php:818
+msgid "visible to everybody"
+msgstr "zichtbaar voor iedereen"
 
-#: ../../mod/newmember.php:18
-msgid ""
-"On your <em>Quick Start</em> page - find a brief introduction to your "
-"profile and network tabs, make some new connections, and find some groups to"
-" join."
-msgstr "Op je <em>Snelstart</em> pagina kun je een korte inleiding vinden over je profiel en netwerk tabs, om enkele nieuwe connecties te leggen en groepen te vinden om lid van te worden."
+#: ../../boot.php:1615 ../../mod/profiles.php:819
+msgid "Edit visibility"
+msgstr "Pas zichtbaarheid aan"
 
-#: ../../mod/newmember.php:22 ../../mod/admin.php:1104
-#: ../../mod/admin.php:1325 ../../mod/settings.php:85
-#: ../../include/nav.php:172 ../../view/theme/diabook/theme.php:544
-#: ../../view/theme/diabook/theme.php:648
-msgid "Settings"
-msgstr "Instellingen"
+#: ../../boot.php:1637 ../../include/event.php:40
+#: ../../include/bb2diaspora.php:155 ../../mod/events.php:471
+#: ../../mod/directory.php:136
+msgid "Location:"
+msgstr "Plaats:"
 
-#: ../../mod/newmember.php:26
-msgid "Go to Your Settings"
-msgstr "Ga naar je instellingen"
+#: ../../boot.php:1639 ../../include/profile_advanced.php:17
+#: ../../mod/directory.php:138
+msgid "Gender:"
+msgstr "Geslacht:"
 
-#: ../../mod/newmember.php:26
-msgid ""
-"On your <em>Settings</em> page -  change your initial password. Also make a "
-"note of your Identity Address. This looks just like an email address - and "
-"will be useful in making friends on the free social web."
-msgstr "Verander je initieel wachtwoord op je <em>instellingenpagina</em>. Noteer ook het adres van je identiteit. Dit ziet er uit als een e-mailadres - en zal nuttig zijn om vrienden te maken op het vrije sociale web."
+#: ../../boot.php:1642 ../../include/profile_advanced.php:37
+#: ../../mod/directory.php:140
+msgid "Status:"
+msgstr "Tijdlijn:"
 
-#: ../../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."
+#: ../../boot.php:1644 ../../include/profile_advanced.php:48
+#: ../../mod/directory.php:142
+msgid "Homepage:"
+msgstr "Website:"
 
-#: ../../mod/newmember.php:36 ../../mod/profile_photo.php:244
-#: ../../mod/profiles.php:699
-msgid "Upload Profile Photo"
-msgstr "Profielfoto uploaden"
+#: ../../boot.php:1646 ../../include/profile_advanced.php:58
+#: ../../mod/directory.php:144
+msgid "About:"
+msgstr "Over:"
 
-#: ../../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."
+#: ../../boot.php:1711
+msgid "Network:"
+msgstr ""
 
-#: ../../mod/newmember.php:38
-msgid "Edit Your Profile"
-msgstr "Bewerk je profiel"
+#: ../../boot.php:1743 ../../boot.php:1829
+msgid "g A l F d"
+msgstr "G l j F"
 
-#: ../../mod/newmember.php:38
-msgid ""
-"Edit your <strong>default</strong> profile to your liking. Review the "
-"settings for hiding your list of friends and hiding the profile from unknown"
-" visitors."
-msgstr "Bewerk je <strong>standaard</strong> profiel zoals je wilt. Controleer de instellingen om je vriendenlijst te verbergen, en om je profiel voor ongekende bezoekers te verbergen."
+#: ../../boot.php:1744 ../../boot.php:1830
+msgid "F d"
+msgstr "d F"
 
-#: ../../mod/newmember.php:40
-msgid "Profile Keywords"
-msgstr "Sleutelwoorden voor dit profiel"
+#: ../../boot.php:1789 ../../boot.php:1877
+msgid "[today]"
+msgstr "[vandaag]"
 
-#: ../../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."
+#: ../../boot.php:1801
+msgid "Birthday Reminders"
+msgstr "Verjaardagsherinneringen"
 
-#: ../../mod/newmember.php:44
-msgid "Connecting"
-msgstr "Verbinding aan het maken"
+#: ../../boot.php:1802
+msgid "Birthdays this week:"
+msgstr "Verjaardagen deze week:"
 
-#: ../../mod/newmember.php:49 ../../mod/newmember.php:51
-#: ../../include/contact_selectors.php:81
-msgid "Facebook"
-msgstr "Facebook"
+#: ../../boot.php:1864
+msgid "[No description]"
+msgstr "[Geen omschrijving]"
 
-#: ../../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."
+#: ../../boot.php:1888
+msgid "Event Reminders"
+msgstr "Gebeurtenisherinneringen"
 
-#: ../../mod/newmember.php:51
-msgid ""
-"<em>If</em> this is your own personal server, installing the Facebook addon "
-"may ease your transition to the free social web."
-msgstr "<em>Als</em> dit jouw eigen persoonlijke server is kan het installeren van de Facebook toevoeging je overgang naar het vrije sociale web vergemakkelijken."
+#: ../../boot.php:1889
+msgid "Events this week:"
+msgstr "Gebeurtenissen deze week:"
 
-#: ../../mod/newmember.php:56
-msgid "Importing Emails"
-msgstr "E-mails importeren"
+#: ../../boot.php:2126 ../../include/nav.php:76
+msgid "Status"
+msgstr "Tijdlijn"
 
-#: ../../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"
+#: ../../boot.php:2129
+msgid "Status Messages and Posts"
+msgstr "Berichten op jouw tijdlijn"
 
-#: ../../mod/newmember.php:58
-msgid "Go to Your Contacts Page"
-msgstr "Ga naar je contactenpagina"
+#: ../../boot.php:2136
+msgid "Profile Details"
+msgstr "Profieldetails"
 
-#: ../../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 <em>Add New Contact</em> 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 <em>Voeg nieuw contact toe</em> dialoog."
+#: ../../boot.php:2143 ../../mod/photos.php:52
+msgid "Photo Albums"
+msgstr "Fotoalbums"
 
-#: ../../mod/newmember.php:60
-msgid "Go to Your Site's Directory"
-msgstr "Ga naar de gids van je website"
+#: ../../boot.php:2147 ../../boot.php:2150 ../../include/nav.php:79
+msgid "Videos"
+msgstr "Video's"
 
-#: ../../mod/newmember.php:60
-msgid ""
-"The Directory page lets you find other people in this network or other "
-"federated sites. Look for a <em>Connect</em> or <em>Follow</em> link on "
-"their profile page. Provide your own Identity Address if requested."
-msgstr "In de gids vind je andere mensen in dit netwerk of op andere federatieve sites. Zoek naar het woord <em>Connect</em> of <em>Follow</em> op hun profielpagina (meestal aan de linkerkant). Vul je eigen identiteitsadres in wanneer daar om wordt gevraagd."
+#: ../../boot.php:2160
+msgid "Events and Calendar"
+msgstr "Gebeurtenissen en kalender"
 
-#: ../../mod/newmember.php:62
-msgid "Finding New People"
-msgstr "Nieuwe mensen vinden"
+#: ../../boot.php:2164 ../../mod/notes.php:44
+msgid "Personal Notes"
+msgstr "Persoonlijke Nota's"
 
-#: ../../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."
+#: ../../boot.php:2167
+msgid "Only You Can See This"
+msgstr "Alleen jij kunt dit zien"
 
-#: ../../mod/newmember.php:66 ../../include/group.php:270
-msgid "Groups"
-msgstr "Groepen"
+#: ../../include/features.php:23
+msgid "General Features"
+msgstr "Algemene functies"
 
-#: ../../mod/newmember.php:70
-msgid "Group Your Contacts"
-msgstr "Groepeer je contacten"
+#: ../../include/features.php:25
+msgid "Multiple Profiles"
+msgstr "Meerdere profielen"
 
-#: ../../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. "
+#: ../../include/features.php:25
+msgid "Ability to create multiple profiles"
+msgstr "Mogelijkheid om meerdere profielen aan te maken"
 
-#: ../../mod/newmember.php:73
-msgid "Why Aren't My Posts Public?"
-msgstr "Waarom zijn mijn berichten niet openbaar?"
+#: ../../include/features.php:30
+msgid "Post Composition Features"
+msgstr "Functies voor het opstellen van berichten"
 
-#: ../../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."
+#: ../../include/features.php:31
+msgid "Richtext Editor"
+msgstr "Tekstverwerker met opmaak"
 
-#: ../../mod/newmember.php:78
-msgid "Getting Help"
-msgstr "Hulp krijgen"
+#: ../../include/features.php:31
+msgid "Enable richtext editor"
+msgstr "Gebruik een tekstverwerker met eenvoudige opmaakfuncties"
 
-#: ../../mod/newmember.php:82
-msgid "Go to the Help Section"
-msgstr "Ga naar de help"
+#: ../../include/features.php:32
+msgid "Post Preview"
+msgstr "Voorvertoning bericht"
 
-#: ../../mod/newmember.php:82
-msgid ""
-"Our <strong>help</strong> pages may be consulted for detail on other program"
-" features and resources."
-msgstr "Je kunt onze <strong>help</strong> pagina's raadplegen voor gedetailleerde informatie over andere functies van dit programma."
+#: ../../include/features.php:32
+msgid "Allow previewing posts and comments before publishing them"
+msgstr ""
 
-#: ../../mod/openid.php:24
-msgid "OpenID protocol error. No ID returned."
-msgstr "OpenID protocol fout. Geen ID Gevonden."
+#: ../../include/features.php:33
+msgid "Auto-mention Forums"
+msgstr ""
 
-#: ../../mod/openid.php:53
+#: ../../include/features.php:33
 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."
+"Add/remove mention when a fourm page is selected/deselected in ACL window."
+msgstr ""
 
-#: ../../mod/profile_photo.php:44
-msgid "Image uploaded but image cropping failed."
-msgstr "Afbeelding opgeladen, maar bijsnijden mislukt."
+#: ../../include/features.php:38
+msgid "Network Sidebar Widgets"
+msgstr "Zijbalkwidgets op netwerkpagina"
 
-#: ../../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
-#: ../../mod/photos.php:155 ../../mod/photos.php:731 ../../mod/photos.php:1187
-#: ../../mod/photos.php:1210 ../../include/user.php:335
-#: ../../include/user.php:342 ../../include/user.php:349
-#: ../../view/theme/diabook/theme.php:500
-msgid "Profile Photos"
-msgstr "Profielfoto's"
+#: ../../include/features.php:39
+msgid "Search by Date"
+msgstr "Zoeken op datum"
 
-#: ../../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."
+#: ../../include/features.php:39
+msgid "Ability to select posts by date ranges"
+msgstr "Mogelijkheid om berichten te selecteren volgens datumbereik"
 
-#: ../../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."
+#: ../../include/features.php:40
+msgid "Group Filter"
+msgstr "Groepsfilter"
 
-#: ../../mod/profile_photo.php:128
-msgid "Unable to process image"
-msgstr "Ik kan de afbeelding niet verwerken"
+#: ../../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"
 
-#: ../../mod/profile_photo.php:144 ../../mod/wall_upload.php:122
-#, php-format
-msgid "Image exceeds size limit of %d"
-msgstr "Afbeelding is groter dan de toegestane %d"
+#: ../../include/features.php:41
+msgid "Network Filter"
+msgstr "Netwerkfilter"
 
-#: ../../mod/profile_photo.php:153 ../../mod/wall_upload.php:144
-#: ../../mod/photos.php:807
-msgid "Unable to process image."
-msgstr "Niet in staat om de afbeelding te verwerken"
+#: ../../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"
 
-#: ../../mod/profile_photo.php:242
-msgid "Upload File:"
-msgstr "Upload bestand:"
+#: ../../include/features.php:42 ../../mod/network.php:194
+#: ../../mod/search.php:30
+msgid "Saved Searches"
+msgstr "Opgeslagen zoekopdrachten"
 
-#: ../../mod/profile_photo.php:243
-msgid "Select a profile:"
-msgstr "Kies een profiel:"
+#: ../../include/features.php:42
+msgid "Save search terms for re-use"
+msgstr "Sla zoekopdrachten op voor hergebruik"
 
-#: ../../mod/profile_photo.php:245
-msgid "Upload"
-msgstr "Uploaden"
+#: ../../include/features.php:47
+msgid "Network Tabs"
+msgstr "Netwerktabs"
 
-#: ../../mod/profile_photo.php:248 ../../mod/settings.php:1062
-msgid "or"
-msgstr "of"
+#: ../../include/features.php:48
+msgid "Network Personal Tab"
+msgstr "Persoonlijke netwerktab"
 
-#: ../../mod/profile_photo.php:248
-msgid "skip this step"
-msgstr "Deze stap overslaan"
+#: ../../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"
 
-#: ../../mod/profile_photo.php:248
-msgid "select a photo from your photo albums"
-msgstr "Kies een foto uit je fotoalbums"
+#: ../../include/features.php:49
+msgid "Network New Tab"
+msgstr "Nieuwe netwerktab"
 
-#: ../../mod/profile_photo.php:262
-msgid "Crop Image"
-msgstr "Afbeelding bijsnijden"
+#: ../../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)"
 
-#: ../../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."
+#: ../../include/features.php:50
+msgid "Network Shared Links Tab"
+msgstr ""
 
-#: ../../mod/profile_photo.php:265
-msgid "Done Editing"
-msgstr "Wijzigingen compleet"
+#: ../../include/features.php:50
+msgid "Enable tab to display only Network posts with links in them"
+msgstr ""
 
-#: ../../mod/profile_photo.php:299
-msgid "Image uploaded successfully."
-msgstr "Uploaden van afbeelding gelukt."
+#: ../../include/features.php:55
+msgid "Post/Comment Tools"
+msgstr "Bericht-/reactiehulpmiddelen"
 
-#: ../../mod/profile_photo.php:301 ../../mod/wall_upload.php:172
-#: ../../mod/photos.php:834
-msgid "Image upload failed."
-msgstr "Uploaden van afbeelding mislukt."
+#: ../../include/features.php:56
+msgid "Multiple Deletion"
+msgstr "Meervoudige verwijdering"
 
-#: ../../mod/subthread.php:87 ../../mod/tagger.php:62 ../../mod/like.php:149
-#: ../../include/conversation.php:126 ../../include/conversation.php:254
-#: ../../include/text.php:1968 ../../include/diaspora.php:2087
-#: ../../view/theme/diabook/theme.php:471
-msgid "photo"
-msgstr "foto"
+#: ../../include/features.php:56
+msgid "Select and delete multiple posts/comments at once"
+msgstr "Selecteer en verwijder meerdere berichten/reacties in een keer"
 
-#: ../../mod/subthread.php:87 ../../mod/tagger.php:62 ../../mod/like.php:149
-#: ../../mod/like.php:319 ../../include/conversation.php:121
-#: ../../include/conversation.php:130 ../../include/conversation.php:249
-#: ../../include/conversation.php:258 ../../include/diaspora.php:2087
-#: ../../view/theme/diabook/theme.php:466
-#: ../../view/theme/diabook/theme.php:475
-msgid "status"
-msgstr "status"
+#: ../../include/features.php:57
+msgid "Edit Sent Posts"
+msgstr "Bewerk verzonden berichten"
 
-#: ../../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"
+#: ../../include/features.php:57
+msgid "Edit and correct posts and comments after sending"
+msgstr "Bewerk en corrigeer berichten en reacties na verzending"
 
-#: ../../mod/tagrm.php:41
-msgid "Tag removed"
-msgstr "Label verwijderd"
+#: ../../include/features.php:58
+msgid "Tagging"
+msgstr "Labelen"
 
-#: ../../mod/tagrm.php:79
-msgid "Remove Item Tag"
-msgstr "Verwijder label van item"
+#: ../../include/features.php:58
+msgid "Ability to tag existing posts"
+msgstr "Mogelijkheid om bestaande berichten te labelen"
 
-#: ../../mod/tagrm.php:81
-msgid "Select a tag to remove: "
-msgstr "Selecteer een label om te verwijderen: "
+#: ../../include/features.php:59
+msgid "Post Categories"
+msgstr "Categorieën berichten"
 
-#: ../../mod/tagrm.php:93 ../../mod/delegate.php:139
-msgid "Remove"
-msgstr "Verwijderen"
+#: ../../include/features.php:59
+msgid "Add categories to your posts"
+msgstr "Voeg categorieën toe aan je berichten"
 
-#: ../../mod/filer.php:30 ../../include/conversation.php:1006
-#: ../../include/conversation.php:1024
-msgid "Save to Folder:"
-msgstr "Bewaren in map:"
+#: ../../include/features.php:60 ../../include/contact_widgets.php:104
+msgid "Saved Folders"
+msgstr "Bewaarde Mappen"
 
-#: ../../mod/filer.php:30
-msgid "- select -"
-msgstr "- Kies -"
+#: ../../include/features.php:60
+msgid "Ability to file posts under folders"
+msgstr "Mogelijkheid om berichten in mappen te bewaren"
 
-#: ../../mod/filer.php:31 ../../mod/editpost.php:109 ../../mod/notes.php:63
-#: ../../include/text.php:956
-msgid "Save"
-msgstr "Bewaren"
+#: ../../include/features.php:61
+msgid "Dislike Posts"
+msgstr "Vind berichten niet leuk"
 
-#: ../../mod/follow.php:27
-msgid "Contact added"
-msgstr "Contact toegevoegd"
+#: ../../include/features.php:61
+msgid "Ability to dislike posts/comments"
+msgstr "Mogelijkheid om berichten of reacties niet leuk te vinden"
 
-#: ../../mod/item.php:113
-msgid "Unable to locate original post."
-msgstr "Ik kan de originele post niet meer vinden."
+#: ../../include/features.php:62
+msgid "Star Posts"
+msgstr "Geef berichten een ster"
 
-#: ../../mod/item.php:345
-msgid "Empty post discarded."
-msgstr "Lege post weggegooid."
+#: ../../include/features.php:62
+msgid "Ability to mark special posts with a star indicator"
+msgstr ""
 
-#: ../../mod/item.php:484 ../../mod/wall_upload.php:169
-#: ../../mod/wall_upload.php:178 ../../mod/wall_upload.php:185
-#: ../../include/Photo.php:916 ../../include/Photo.php:931
-#: ../../include/Photo.php:938 ../../include/Photo.php:960
-#: ../../include/message.php:144
-msgid "Wall Photos"
+#: ../../include/features.php:63
+msgid "Mute Post Notifications"
 msgstr ""
 
-#: ../../mod/item.php:938
-msgid "System error. Post not saved."
-msgstr "Systeemfout. Post niet bewaard."
+#: ../../include/features.php:63
+msgid "Ability to mute notifications for a thread"
+msgstr ""
 
-#: ../../mod/item.php:964
+#: ../../include/items.php:2307 ../../include/datetime.php:477
 #, 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."
+msgid "%s's birthday"
+msgstr "%s's verjaardag"
 
-#: ../../mod/item.php:966
+#: ../../include/items.php:2308 ../../include/datetime.php:478
 #, php-format
-msgid "You may visit them online at %s"
-msgstr "Je kunt ze online bezoeken op %s"
+msgid "Happy Birthday %s"
+msgstr "Gefeliciteerd %s"
 
-#: ../../mod/item.php:967
-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."
+#: ../../include/items.php:4111 ../../mod/dfrn_request.php:717
+#: ../../mod/dfrn_confirm.php:752
+msgid "[Name Withheld]"
+msgstr "[Naam achtergehouden]"
 
-#: ../../mod/item.php:971
-#, php-format
-msgid "%s posted an update."
-msgstr "%s heeft een wijziging geplaatst."
+#: ../../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."
 
-#: ../../mod/group.php:29
-msgid "Group created."
-msgstr "Groep aangemaakt."
+#: ../../include/items.php:4658
+msgid "Do you really want to delete this item?"
+msgstr "Wil je echt dit item verwijderen?"
 
-#: ../../mod/group.php:35
-msgid "Could not create group."
-msgstr "Kon de groep niet aanmaken."
+#: ../../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"
 
-#: ../../mod/group.php:47 ../../mod/group.php:140
-msgid "Group not found."
-msgstr "Groep niet gevonden."
+#: ../../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"
 
-#: ../../mod/group.php:60
-msgid "Group name changed."
-msgstr "Groepsnaam gewijzigd."
+#: ../../include/items.php:4881
+msgid "Archives"
+msgstr "Archieven"
 
-#: ../../mod/group.php:87
-msgid "Save Group"
-msgstr ""
+#: ../../include/group.php:25
+msgid ""
+"A deleted group with this name was revived. Existing item permissions "
+"<strong>may</strong> apply to this group and any future members. If this is "
+"not what you intended, please create another group with a different name."
+msgstr "Een verwijderde groep met deze naam is weer tot leven gewekt. Bestaande itemrechten <strong>kunnen</strong> voor deze groep en toekomstige leden gelden. Wanneer je niet zo had bedoeld kan je een andere groep met een andere naam creëren. "
 
-#: ../../mod/group.php:93
-msgid "Create a group of contacts/friends."
-msgstr "Maak een groep contacten/vrienden aan."
+#: ../../include/group.php:207
+msgid "Default privacy group for new contacts"
+msgstr ""
 
-#: ../../mod/group.php:94 ../../mod/group.php:180
-msgid "Group Name: "
-msgstr "Groepsnaam:"
+#: ../../include/group.php:226
+msgid "Everybody"
+msgstr "Iedereen"
 
-#: ../../mod/group.php:113
-msgid "Group removed."
-msgstr "Groep verwijderd."
+#: ../../include/group.php:249
+msgid "edit"
+msgstr "verander"
 
-#: ../../mod/group.php:115
-msgid "Unable to remove group."
-msgstr "Niet in staat om groep te verwijderen."
+#: ../../include/group.php:270 ../../mod/newmember.php:66
+msgid "Groups"
+msgstr "Groepen"
 
-#: ../../mod/group.php:179
-msgid "Group Editor"
-msgstr "Groepsbewerker"
+#: ../../include/group.php:271
+msgid "Edit group"
+msgstr "Verander groep"
 
-#: ../../mod/group.php:192
-msgid "Members"
-msgstr "Leden"
+#: ../../include/group.php:272
+msgid "Create a new group"
+msgstr "Maak nieuwe groep"
 
-#: ../../mod/apps.php:7 ../../index.php:212
-msgid "You must be logged in to use addons. "
-msgstr "Je moet ingelogd zijn om deze addons te kunnen gebruiken. "
+#: ../../include/group.php:273
+msgid "Contacts not in any group"
+msgstr ""
 
-#: ../../mod/apps.php:11
-msgid "Applications"
-msgstr "Toepassingen"
+#: ../../include/group.php:275 ../../mod/network.php:195
+msgid "add"
+msgstr "toevoegen"
 
-#: ../../mod/apps.php:14
-msgid "No installed applications."
-msgstr "Geen toepassingen geïnstalleerd"
+#: ../../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 ""
 
-#: ../../mod/dfrn_confirm.php:64 ../../mod/profiles.php:18
-#: ../../mod/profiles.php:133 ../../mod/profiles.php:179
-#: ../../mod/profiles.php:630
-msgid "Profile not found."
-msgstr "Profiel niet gevonden"
+#: ../../include/dba.php:56 ../../include/dba_pdo.php:72
+#, php-format
+msgid "Cannot locate DNS info for database server '%s'"
+msgstr ""
 
-#: ../../mod/dfrn_confirm.php:120 ../../mod/fsuggest.php:20
-#: ../../mod/fsuggest.php:92 ../../mod/crepair.php:133
-msgid "Contact not found."
-msgstr "Contact niet gevonden"
+#: ../../include/contact_widgets.php:6
+msgid "Add New Contact"
+msgstr "Nieuw Contact toevoegen"
 
-#: ../../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."
+#: ../../include/contact_widgets.php:7
+msgid "Enter address or web location"
+msgstr "Voeg een webadres of -locatie in:"
 
-#: ../../mod/dfrn_confirm.php:240
-msgid "Response from remote site was not understood."
-msgstr "Antwoord van de website op afstand werd niet begrepen."
+#: ../../include/contact_widgets.php:8
+msgid "Example: bob@example.com, http://example.com/barbara"
+msgstr "Voorbeeld: jan@voorbeeld.be, http://voorbeeld.nl/barbara"
 
-#: ../../mod/dfrn_confirm.php:249 ../../mod/dfrn_confirm.php:254
-msgid "Unexpected response from remote site: "
-msgstr "Onverwacht antwoord van website op afstand:"
+#: ../../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"
 
-#: ../../mod/dfrn_confirm.php:263
-msgid "Confirmation completed successfully."
-msgstr "Bevestiging werd correct voltooid."
+#: ../../include/contact_widgets.php:30
+msgid "Find People"
+msgstr "Zoek mensen"
 
-#: ../../mod/dfrn_confirm.php:265 ../../mod/dfrn_confirm.php:279
-#: ../../mod/dfrn_confirm.php:286
-msgid "Remote site reported: "
-msgstr "Website op afstand berichtte: "
+#: ../../include/contact_widgets.php:31
+msgid "Enter name or interest"
+msgstr "Vul naam of interesse in"
 
-#: ../../mod/dfrn_confirm.php:277
-msgid "Temporary failure. Please wait and try again."
-msgstr "Tijdelijke fout. Wacht even en probeer opnieuw."
+#: ../../include/contact_widgets.php:32
+msgid "Connect/Follow"
+msgstr "Verbind/Volg"
 
-#: ../../mod/dfrn_confirm.php:284
-msgid "Introduction failed or was revoked."
-msgstr "Verzoek mislukt of herroepen."
+#: ../../include/contact_widgets.php:33
+msgid "Examples: Robert Morgenstein, Fishing"
+msgstr "Voorbeelden: Jan Peeters, Vissen"
 
-#: ../../mod/dfrn_confirm.php:429
-msgid "Unable to set contact photo."
-msgstr "Ik kan geen contact foto instellen."
+#: ../../include/contact_widgets.php:34 ../../mod/contacts.php:724
+#: ../../mod/directory.php:63
+msgid "Find"
+msgstr "Zoek"
 
-#: ../../mod/dfrn_confirm.php:486 ../../include/conversation.php:172
-#: ../../include/diaspora.php:620
-#, php-format
-msgid "%1$s is now friends with %2$s"
-msgstr "%1$s is nu bevriend met %2$s"
+#: ../../include/contact_widgets.php:37
+msgid "Random Profile"
+msgstr "Willekeurig Profiel"
 
-#: ../../mod/dfrn_confirm.php:571
-#, php-format
-msgid "No user record found for '%s' "
-msgstr "Geen gebruiker gevonden voor '%s'"
+#: ../../include/contact_widgets.php:71
+msgid "Networks"
+msgstr "Netwerken"
 
-#: ../../mod/dfrn_confirm.php:581
-msgid "Our site encryption key is apparently messed up."
-msgstr "De encryptie-sleutel van onze webstek is blijkbaar beschadigd."
+#: ../../include/contact_widgets.php:74
+msgid "All Networks"
+msgstr "Alle netwerken"
 
-#: ../../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."
+#: ../../include/contact_widgets.php:107 ../../include/contact_widgets.php:139
+msgid "Everything"
+msgstr "Alles"
 
-#: ../../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."
+#: ../../include/contact_widgets.php:136
+msgid "Categories"
+msgstr "Categorieën"
 
-#: ../../mod/dfrn_confirm.php:627
+#: ../../include/contact_widgets.php:200 ../../mod/contacts.php:439
 #, 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."
+msgid "%d contact in common"
+msgid_plural "%d contacts in common"
+msgstr[0] "%d gedeeld contact"
+msgstr[1] "%d gedeelde contacten"
 
-#: ../../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."
+#: ../../include/enotify.php:18
+msgid "Friendica Notification"
+msgstr "Friendica Notificatie"
 
-#: ../../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."
+#: ../../include/enotify.php:21
+msgid "Thank You,"
+msgstr "Bedankt"
 
-#: ../../mod/dfrn_confirm.php:725
-msgid "Unable to update your contact profile details on our system"
-msgstr ""
+#: ../../include/enotify.php:23
+#, php-format
+msgid "%s Administrator"
+msgstr "%s Beheerder"
 
-#: ../../mod/dfrn_confirm.php:752 ../../mod/dfrn_request.php:717
-#: ../../include/items.php:4008
-msgid "[Name Withheld]"
-msgstr "[Naam achtergehouden]"
+#: ../../include/enotify.php:33 ../../include/delivery.php:467
+#: ../../include/notifier.php:796
+msgid "noreply"
+msgstr "geen reactie"
 
-#: ../../mod/dfrn_confirm.php:797
+#: ../../include/enotify.php:64
 #, php-format
-msgid "%1$s has joined %2$s"
-msgstr "%1$s is toegetreden tot %2$s"
+msgid "%s <!item_type!>"
+msgstr "%s <!item_type!>"
 
-#: ../../mod/profile.php:21 ../../boot.php:1458
-msgid "Requested profile is not available."
-msgstr "Gevraagde profiel is niet beschikbaar."
+#: ../../include/enotify.php:68
+#, php-format
+msgid "[Friendica:Notify] New mail received at %s"
+msgstr "[Friendica:Notificatie] Nieuw bericht ontvangen op %s"
 
-#: ../../mod/profile.php:180
-msgid "Tips for New Members"
-msgstr "Tips voor nieuwe leden"
+#: ../../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."
 
-#: ../../mod/videos.php:125
-msgid "No videos selected"
-msgstr "Geen video's geselecteerd"
+#: ../../include/enotify.php:71
+#, php-format
+msgid "%1$s sent you %2$s."
+msgstr "%1$s stuurde jou %2$s."
 
-#: ../../mod/videos.php:226 ../../mod/photos.php:1031
-msgid "Access to this item is restricted."
-msgstr "Toegang tot dit item is beperkt."
+#: ../../include/enotify.php:71
+msgid "a private message"
+msgstr "een prive bericht"
 
-#: ../../mod/videos.php:301 ../../include/text.php:1405
-msgid "View Video"
-msgstr "Bekijk Video"
+#: ../../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."
 
-#: ../../mod/videos.php:308 ../../mod/photos.php:1808
-msgid "View Album"
-msgstr "Album bekijken"
+#: ../../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]"
 
-#: ../../mod/videos.php:317
-msgid "Recent Videos"
-msgstr "Recente video's"
+#: ../../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]"
 
-#: ../../mod/videos.php:319
-msgid "Upload New Videos"
-msgstr "Nieuwe video's uploaden"
+#: ../../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]"
 
-#: ../../mod/tagger.php:95 ../../include/conversation.php:266
+#: ../../include/enotify.php:149
 #, 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"
+msgid "[Friendica:Notify] Comment to conversation #%1$d by %2$s"
+msgstr ""
 
-#: ../../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
+#: ../../include/enotify.php:150
 #, php-format
-msgid "Suggest a friend for %s"
-msgstr "Stel een vriend voor aan %s"
+msgid "%s commented on an item/conversation you have been following."
+msgstr "%s gaf een reactie op een bericht/conversatie die jij volgt."
 
-#: ../../mod/lostpass.php:19
-msgid "No valid account found."
-msgstr "Geen geldige account gevonden."
+#: ../../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."
 
-#: ../../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."
+#: ../../include/enotify.php:160
+#, php-format
+msgid "[Friendica:Notify] %s posted to your profile wall"
+msgstr ""
 
-#: ../../mod/lostpass.php:42
+#: ../../include/enotify.php:162
 #, 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."
+msgid "%1$s posted to your profile wall at %2$s"
 msgstr ""
 
-#: ../../mod/lostpass.php:53
+#: ../../include/enotify.php:164
 #, 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"
+msgid "%1$s posted to [url=%2$s]your wall[/url]"
 msgstr ""
 
-#: ../../mod/lostpass.php:72
+#: ../../include/enotify.php:175
 #, php-format
-msgid "Password reset requested at %s"
-msgstr "Op %s werd gevraagd je wachtwoord opnieuw in te stellen"
+msgid "[Friendica:Notify] %s tagged you"
+msgstr "[Friendica:Notificatie] %s heeft jou genoemd"
 
-#: ../../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."
+#: ../../include/enotify.php:176
+#, php-format
+msgid "%1$s tagged you at %2$s"
+msgstr "%1$s heeft jou in %2$s genoemd"
 
-#: ../../mod/lostpass.php:109 ../../boot.php:1280
-msgid "Password Reset"
-msgstr "Wachtwoord opnieuw instellen"
+#: ../../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]."
 
-#: ../../mod/lostpass.php:110
-msgid "Your password has been reset as requested."
-msgstr "Je wachtwoord is opnieuw ingesteld zoals gevraagd."
+#: ../../include/enotify.php:188
+#, php-format
+msgid "[Friendica:Notify] %s shared a new post"
+msgstr ""
 
-#: ../../mod/lostpass.php:111
-msgid "Your new password is"
-msgstr "Je nieuwe wachtwoord is"
+#: ../../include/enotify.php:189
+#, php-format
+msgid "%1$s shared a new post at %2$s"
+msgstr ""
 
-#: ../../mod/lostpass.php:112
-msgid "Save or copy your new password - and then"
-msgstr "Bewaar of kopieer je nieuw wachtwoord - en dan"
+#: ../../include/enotify.php:190
+#, php-format
+msgid "%1$s [url=%2$s]shared a post[/url]."
+msgstr ""
 
-#: ../../mod/lostpass.php:113
-msgid "click here to login"
-msgstr "klik hier om in te loggen"
+#: ../../include/enotify.php:202
+#, php-format
+msgid "[Friendica:Notify] %1$s poked you"
+msgstr "[Friendica:Notify] %1$s heeft jou aangestoten"
 
-#: ../../mod/lostpass.php:114
-msgid ""
-"Your password may be changed from the <em>Settings</em> page after "
-"successful login."
-msgstr "Je kunt dit wachtwoord veranderen nadat je bent ingelogd op de <em>Instellingen></em> pagina."
+#: ../../include/enotify.php:203
+#, php-format
+msgid "%1$s poked you at %2$s"
+msgstr "%1$s heeft jou aangestoten op %2$s"
 
-#: ../../mod/lostpass.php:125
+#: ../../include/enotify.php:204
 #, 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"
+msgid "%1$s [url=%2$s]poked you[/url]."
 msgstr ""
 
-#: ../../mod/lostpass.php:131
+#: ../../include/enotify.php:219
 #, 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 ""
+msgid "[Friendica:Notify] %s tagged your post"
+msgstr "[Friendica:Notificatie] %s heeft jouw bericht gelabeld"
 
-#: ../../mod/lostpass.php:147
+#: ../../include/enotify.php:220
 #, php-format
-msgid "Your password has been changed at %s"
-msgstr "Je wachtwoord is veranderd op %s"
+msgid "%1$s tagged your post at %2$s"
+msgstr "%1$s heeft jouw bericht gelabeld in %2$s"
 
-#: ../../mod/lostpass.php:159
-msgid "Forgot your Password?"
-msgstr "Wachtwoord vergeten?"
+#: ../../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]"
 
-#: ../../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."
+#: ../../include/enotify.php:232
+msgid "[Friendica:Notify] Introduction received"
+msgstr "[Friendica:Notificatie] Vriendschaps-/connectieverzoek ontvangen"
 
-#: ../../mod/lostpass.php:161
-msgid "Nickname or Email: "
-msgstr "Bijnaam of e-mail:"
+#: ../../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"
 
-#: ../../mod/lostpass.php:162
-msgid "Reset"
-msgstr "Opnieuw"
+#: ../../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."
 
-#: ../../mod/like.php:166 ../../include/conversation.php:137
-#: ../../include/diaspora.php:2103 ../../view/theme/diabook/theme.php:480
+#: ../../include/enotify.php:237 ../../include/enotify.php:279
 #, php-format
-msgid "%1$s likes %2$s's %3$s"
-msgstr "%1$s vindt het %3$s van %2$s leuk"
+msgid "You may visit their profile at %s"
+msgstr "U kunt hun profiel bezoeken op %s"
 
-#: ../../mod/like.php:168 ../../include/conversation.php:140
+#: ../../include/enotify.php:239
 #, 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"
+msgid "Please visit %s to approve or reject the introduction."
+msgstr "Bezoek %s om het verzoek goed of af te keuren."
 
-#: ../../mod/ping.php:240
-msgid "{0} wants to be your friend"
-msgstr "{0} wilt je vriend worden"
+#: ../../include/enotify.php:247
+msgid "[Friendica:Notify] A new person is sharing with you"
+msgstr ""
 
-#: ../../mod/ping.php:245
-msgid "{0} sent you a message"
-msgstr "{0} stuurde jou een bericht"
+#: ../../include/enotify.php:248 ../../include/enotify.php:249
+#, php-format
+msgid "%1$s is sharing with you at %2$s"
+msgstr ""
 
-#: ../../mod/ping.php:250
-msgid "{0} requested registration"
-msgstr "{0} vroeg om zich te registreren"
+#: ../../include/enotify.php:255
+msgid "[Friendica:Notify] You have a new follower"
+msgstr ""
 
-#: ../../mod/ping.php:256
+#: ../../include/enotify.php:256 ../../include/enotify.php:257
 #, php-format
-msgid "{0} commented %s's post"
-msgstr "{0} gaf een reactie op het bericht van %s"
+msgid "You have a new follower at %2$s : %1$s"
+msgstr ""
 
-#: ../../mod/ping.php:261
-#, php-format
-msgid "{0} liked %s's post"
-msgstr "{0} vond het bericht van %s leuk"
+#: ../../include/enotify.php:270
+msgid "[Friendica:Notify] Friend suggestion received"
+msgstr ""
 
-#: ../../mod/ping.php:266
+#: ../../include/enotify.php:271
 #, php-format
-msgid "{0} disliked %s's post"
-msgstr "{0} vond het bericht van %s niet leuk"
+msgid "You've received a friend suggestion from '%1$s' at %2$s"
+msgstr ""
 
-#: ../../mod/ping.php:271
+#: ../../include/enotify.php:272
 #, php-format
-msgid "{0} is now friends with %s"
-msgstr "{0} is nu bevriend met %s"
+msgid ""
+"You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s."
+msgstr ""
 
-#: ../../mod/ping.php:276
-msgid "{0} posted"
-msgstr "{0} plaatste"
+#: ../../include/enotify.php:277
+msgid "Name:"
+msgstr "Naam:"
 
-#: ../../mod/ping.php:281
+#: ../../include/enotify.php:278
+msgid "Photo:"
+msgstr "Foto: "
+
+#: ../../include/enotify.php:281
 #, php-format
-msgid "{0} tagged %s's post with #%s"
-msgstr "{0} labelde %s's bericht met #%s"
+msgid "Please visit %s to approve or reject the suggestion."
+msgstr ""
 
-#: ../../mod/ping.php:287
-msgid "{0} mentioned you in a post"
-msgstr "{0} vermeldde je in een bericht"
+#: ../../include/enotify.php:289 ../../include/enotify.php:302
+msgid "[Friendica:Notify] Connection accepted"
+msgstr ""
 
-#: ../../mod/viewcontacts.php:41
-msgid "No contacts."
-msgstr "Geen contacten."
+#: ../../include/enotify.php:290 ../../include/enotify.php:303
+#, php-format
+msgid "'%1$s' has acepted your connection request at %2$s"
+msgstr ""
 
-#: ../../mod/viewcontacts.php:78 ../../include/text.php:876
-msgid "View Contacts"
-msgstr "Bekijk contacten"
+#: ../../include/enotify.php:291 ../../include/enotify.php:304
+#, php-format
+msgid "%2$s has accepted your [url=%1$s]connection request[/url]."
+msgstr ""
 
-#: ../../mod/notifications.php:26
-msgid "Invalid request identifier."
-msgstr "Ongeldige <em>request identifier</em>."
+#: ../../include/enotify.php:294
+msgid ""
+"You are now mutual friends and may exchange status updates, photos, and email\n"
+"\twithout restriction."
+msgstr ""
 
-#: ../../mod/notifications.php:35 ../../mod/notifications.php:165
-#: ../../mod/notifications.php:211
-msgid "Discard"
-msgstr "Verwerpen"
+#: ../../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 ""
 
-#: ../../mod/notifications.php:78
-msgid "System"
-msgstr "Systeem"
+#: ../../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 ""
 
-#: ../../mod/notifications.php:83 ../../include/nav.php:145
-msgid "Network"
-msgstr "Netwerk"
+#: ../../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 ""
 
-#: ../../mod/notifications.php:88 ../../mod/network.php:371
-msgid "Personal"
-msgstr "Persoonlijk"
+#: ../../include/enotify.php:322
+msgid "[Friendica System:Notify] registration request"
+msgstr ""
 
-#: ../../mod/notifications.php:93 ../../include/nav.php:105
-#: ../../include/nav.php:148 ../../view/theme/diabook/theme.php:123
-msgid "Home"
-msgstr "Tijdlijn"
+#: ../../include/enotify.php:323
+#, php-format
+msgid "You've received a registration request from '%1$s' at %2$s"
+msgstr ""
 
-#: ../../mod/notifications.php:98 ../../include/nav.php:154
-msgid "Introductions"
-msgstr "Verzoeken"
+#: ../../include/enotify.php:324
+#, php-format
+msgid "You've received a [url=%1$s]registration request[/url] from %2$s."
+msgstr ""
 
-#: ../../mod/notifications.php:122
-msgid "Show Ignored Requests"
-msgstr "Toon genegeerde verzoeken"
+#: ../../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 ""
 
-#: ../../mod/notifications.php:122
-msgid "Hide Ignored Requests"
-msgstr "Verberg genegeerde verzoeken"
+#: ../../include/enotify.php:330
+#, php-format
+msgid "Please visit %s to approve or reject the request."
+msgstr ""
 
-#: ../../mod/notifications.php:149 ../../mod/notifications.php:195
-msgid "Notification type: "
-msgstr "Notificatiesoort:"
+#: ../../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"
 
-#: ../../mod/notifications.php:150
-msgid "Friend Suggestion"
-msgstr "Vriendschapsvoorstel"
+#: ../../include/api.php:770
+#, php-format
+msgid "Daily posting limit of %d posts reached. The post was rejected."
+msgstr ""
 
-#: ../../mod/notifications.php:152
+#: ../../include/api.php:789
 #, php-format
-msgid "suggested by %s"
-msgstr "Voorgesteld door %s"
+msgid "Weekly posting limit of %d posts reached. The post was rejected."
+msgstr ""
 
-#: ../../mod/notifications.php:158 ../../mod/notifications.php:205
-msgid "Post a new friend activity"
-msgstr "Bericht over een nieuwe vriend"
+#: ../../include/api.php:808
+#, php-format
+msgid "Monthly posting limit of %d posts reached. The post was rejected."
+msgstr ""
 
-#: ../../mod/notifications.php:158 ../../mod/notifications.php:205
-msgid "if applicable"
-msgstr "Indien toepasbaar"
+#: ../../include/api.php:1271
+msgid "There is no status with this id."
+msgstr "Er is geen status met dit kenmerk"
 
-#: ../../mod/notifications.php:161 ../../mod/notifications.php:208
-#: ../../mod/admin.php:1005
-msgid "Approve"
-msgstr "Goedkeuren"
+#: ../../include/api.php:1341
+msgid "There is no conversation with this id."
+msgstr ""
 
-#: ../../mod/notifications.php:181
-msgid "Claims to be known to you: "
-msgstr "Denkt dat u hem of haar kent:"
+#: ../../include/api.php:1613
+msgid "Invalid request."
+msgstr ""
 
-#: ../../mod/notifications.php:181
-msgid "yes"
-msgstr "Ja"
+#: ../../include/api.php:1624
+msgid "Invalid item."
+msgstr ""
 
-#: ../../mod/notifications.php:181
-msgid "no"
-msgstr "Nee"
+#: ../../include/api.php:1634
+msgid "Invalid action. "
+msgstr ""
 
-#: ../../mod/notifications.php:188
-msgid "Approve as: "
-msgstr "Goedkeuren als:"
+#: ../../include/api.php:1642
+msgid "DB error"
+msgstr ""
 
-#: ../../mod/notifications.php:189
-msgid "Friend"
-msgstr "Vriend"
+#: ../../include/network.php:890
+msgid "view full size"
+msgstr "Volledig formaat"
 
-#: ../../mod/notifications.php:190
-msgid "Sharer"
-msgstr "Deler"
+#: ../../include/Scrape.php:608
+msgid " on Last.fm"
+msgstr " op Last.fm"
 
-#: ../../mod/notifications.php:190
-msgid "Fan/Admirer"
-msgstr "Fan/Bewonderaar"
+#: ../../include/profile_advanced.php:15 ../../mod/settings.php:1133
+msgid "Full Name:"
+msgstr "Volledige Naam:"
 
-#: ../../mod/notifications.php:196
-msgid "Friend/Connect Request"
-msgstr "Vriendschapsverzoek"
+#: ../../include/profile_advanced.php:22
+msgid "j F, Y"
+msgstr "F j Y"
 
-#: ../../mod/notifications.php:196
-msgid "New Follower"
-msgstr "Nieuwe Volger"
+#: ../../include/profile_advanced.php:23
+msgid "j F"
+msgstr "F j"
 
-#: ../../mod/notifications.php:217
-msgid "No introductions."
-msgstr "Geen vriendschaps- of connectieverzoeken."
+#: ../../include/profile_advanced.php:30
+msgid "Birthday:"
+msgstr "Verjaardag:"
 
-#: ../../mod/notifications.php:220 ../../include/nav.php:155
-msgid "Notifications"
-msgstr "Notificaties"
+#: ../../include/profile_advanced.php:34
+msgid "Age:"
+msgstr "Leeftijd:"
 
-#: ../../mod/notifications.php:258 ../../mod/notifications.php:387
-#: ../../mod/notifications.php:478
+#: ../../include/profile_advanced.php:43
 #, php-format
-msgid "%s liked %s's post"
-msgstr "%s vond het bericht van %s leuk"
+msgid "for %1$d %2$s"
+msgstr "voor %1$d %2$s"
 
-#: ../../mod/notifications.php:268 ../../mod/notifications.php:397
-#: ../../mod/notifications.php:488
-#, php-format
-msgid "%s disliked %s's post"
-msgstr "%s vond het bericht van %s niet leuk"
+#: ../../include/profile_advanced.php:46 ../../mod/profiles.php:714
+msgid "Sexual Preference:"
+msgstr "Seksuele Voorkeur:"
 
-#: ../../mod/notifications.php:283 ../../mod/notifications.php:412
-#: ../../mod/notifications.php:503
-#, php-format
-msgid "%s is now friends with %s"
-msgstr "%s is nu bevriend met %s"
+#: ../../include/profile_advanced.php:50 ../../mod/profiles.php:716
+msgid "Hometown:"
+msgstr "Woonplaats:"
 
-#: ../../mod/notifications.php:290 ../../mod/notifications.php:419
-#, php-format
-msgid "%s created a new post"
-msgstr "%s schreef een nieuw bericht"
+#: ../../include/profile_advanced.php:52
+msgid "Tags:"
+msgstr "Labels:"
 
-#: ../../mod/notifications.php:291 ../../mod/notifications.php:420
-#: ../../mod/notifications.php:513
-#, php-format
-msgid "%s commented on %s's post"
-msgstr "%s gaf een reactie op het bericht van %s"
+#: ../../include/profile_advanced.php:54 ../../mod/profiles.php:717
+msgid "Political Views:"
+msgstr "Politieke standpunten:"
 
-#: ../../mod/notifications.php:306
-msgid "No more network notifications."
-msgstr "Geen netwerknotificaties meer"
+#: ../../include/profile_advanced.php:56
+msgid "Religion:"
+msgstr "Religie:"
 
-#: ../../mod/notifications.php:310
-msgid "Network Notifications"
-msgstr "Netwerknotificaties"
+#: ../../include/profile_advanced.php:60
+msgid "Hobbies/Interests:"
+msgstr "Hobby:"
 
-#: ../../mod/notifications.php:336 ../../mod/notify.php:75
-msgid "No more system notifications."
-msgstr "Geen systeemnotificaties meer."
+#: ../../include/profile_advanced.php:62 ../../mod/profiles.php:721
+msgid "Likes:"
+msgstr "Houdt van:"
 
-#: ../../mod/notifications.php:340 ../../mod/notify.php:79
-msgid "System Notifications"
-msgstr "Systeemnotificaties"
+#: ../../include/profile_advanced.php:64 ../../mod/profiles.php:722
+msgid "Dislikes:"
+msgstr "Houdt niet van:"
 
-#: ../../mod/notifications.php:435
-msgid "No more personal notifications."
-msgstr "Geen persoonlijke notificaties meer"
+#: ../../include/profile_advanced.php:67
+msgid "Contact information and Social Networks:"
+msgstr "Contactinformatie en sociale netwerken:"
 
-#: ../../mod/notifications.php:439
-msgid "Personal Notifications"
-msgstr "Persoonlijke notificaties"
+#: ../../include/profile_advanced.php:69
+msgid "Musical interests:"
+msgstr "Muzikale interesse "
 
-#: ../../mod/notifications.php:520
-msgid "No more home notifications."
-msgstr "Geen tijdlijn-notificaties meer"
+#: ../../include/profile_advanced.php:71
+msgid "Books, literature:"
+msgstr "Boeken, literatuur:"
 
-#: ../../mod/notifications.php:524
-msgid "Home Notifications"
-msgstr "Tijdlijn-notificaties"
+#: ../../include/profile_advanced.php:73
+msgid "Television:"
+msgstr "Televisie"
 
-#: ../../mod/babel.php:17
-msgid "Source (bbcode) text:"
-msgstr "Bron (bbcode) tekst:"
+#: ../../include/profile_advanced.php:75
+msgid "Film/dance/culture/entertainment:"
+msgstr "Film/dans/cultuur/ontspanning:"
 
-#: ../../mod/babel.php:23
-msgid "Source (Diaspora) text to convert to BBcode:"
-msgstr "Bron (Diaspora) tekst om naar BBCode om te zetten:"
+#: ../../include/profile_advanced.php:77
+msgid "Love/Romance:"
+msgstr "Liefde/romance:"
 
-#: ../../mod/babel.php:31
-msgid "Source input: "
-msgstr "Bron ingave:"
+#: ../../include/profile_advanced.php:79
+msgid "Work/employment:"
+msgstr "Werk/beroep:"
 
-#: ../../mod/babel.php:35
-msgid "bb2html (raw HTML): "
-msgstr "bb2html (ruwe HTML):"
+#: ../../include/profile_advanced.php:81
+msgid "School/education:"
+msgstr "School/opleiding:"
 
-#: ../../mod/babel.php:39
-msgid "bb2html: "
-msgstr "bb2html:"
+#: ../../include/nav.php:34 ../../mod/navigation.php:20
+msgid "Nothing new here"
+msgstr "Niets nieuw hier"
 
-#: ../../mod/babel.php:43
-msgid "bb2html2bb: "
-msgstr "bb2html2bb: "
+#: ../../include/nav.php:38 ../../mod/navigation.php:24
+msgid "Clear notifications"
+msgstr "Notificaties verwijderen"
 
-#: ../../mod/babel.php:47
-msgid "bb2md: "
-msgstr "bb2md: "
+#: ../../include/nav.php:73
+msgid "End this session"
+msgstr "Deze sessie beëindigen"
 
-#: ../../mod/babel.php:51
-msgid "bb2md2html: "
-msgstr "bb2md2html: "
+#: ../../include/nav.php:79
+msgid "Your videos"
+msgstr ""
 
-#: ../../mod/babel.php:55
-msgid "bb2dia2bb: "
-msgstr "bb2dia2bb: "
+#: ../../include/nav.php:81
+msgid "Your personal notes"
+msgstr ""
 
-#: ../../mod/babel.php:59
-msgid "bb2md2html2bb: "
-msgstr "bb2md2html2bb: "
+#: ../../include/nav.php:92
+msgid "Sign in"
+msgstr "Inloggen"
 
-#: ../../mod/babel.php:69
-msgid "Source input (Diaspora format): "
-msgstr "Bron ingave (Diaspora formaat):"
+#: ../../include/nav.php:105
+msgid "Home Page"
+msgstr "Jouw tijdlijn"
 
-#: ../../mod/babel.php:74
-msgid "diaspora2bb: "
-msgstr "diaspora2bb: "
+#: ../../include/nav.php:109
+msgid "Create an account"
+msgstr "Maak een accoount"
 
-#: ../../mod/navigation.php:20 ../../include/nav.php:34
-msgid "Nothing new here"
-msgstr "Niets nieuw hier"
+#: ../../include/nav.php:114 ../../mod/help.php:36
+msgid "Help"
+msgstr "Help"
 
-#: ../../mod/navigation.php:24 ../../include/nav.php:38
-msgid "Clear notifications"
-msgstr "Notificaties verwijderen"
+#: ../../include/nav.php:114
+msgid "Help and documentation"
+msgstr "Hulp en documentatie"
 
-#: ../../mod/message.php:9 ../../include/nav.php:164
-msgid "New Message"
-msgstr "Nieuw Bericht"
+#: ../../include/nav.php:117
+msgid "Apps"
+msgstr "Apps"
 
-#: ../../mod/message.php:63 ../../mod/wallmessage.php:56
-msgid "No recipient selected."
-msgstr "Geen ontvanger geselecteerd."
+#: ../../include/nav.php:117
+msgid "Addon applications, utilities, games"
+msgstr "Extra toepassingen, hulpmiddelen of spelletjes"
 
-#: ../../mod/message.php:67
-msgid "Unable to locate contact information."
-msgstr "Ik kan geen contact informatie vinden."
+#: ../../include/nav.php:119 ../../include/text.php:968
+#: ../../include/text.php:969 ../../mod/search.php:99
+msgid "Search"
+msgstr "Zoeken"
 
-#: ../../mod/message.php:70 ../../mod/wallmessage.php:62
-msgid "Message could not be sent."
-msgstr "Bericht kon niet verzonden worden."
+#: ../../include/nav.php:119
+msgid "Search site content"
+msgstr "Doorzoek de inhoud van de website"
 
-#: ../../mod/message.php:73 ../../mod/wallmessage.php:65
-msgid "Message collection failure."
-msgstr "Fout bij het verzamelen van berichten."
+#: ../../include/nav.php:129
+msgid "Conversations on this site"
+msgstr "Conversaties op deze website"
 
-#: ../../mod/message.php:76 ../../mod/wallmessage.php:68
-msgid "Message sent."
-msgstr "Bericht verzonden."
+#: ../../include/nav.php:131
+msgid "Conversations on the network"
+msgstr ""
 
-#: ../../mod/message.php:182 ../../include/nav.php:161
-msgid "Messages"
-msgstr "Privéberichten"
+#: ../../include/nav.php:133
+msgid "Directory"
+msgstr "Gids"
 
-#: ../../mod/message.php:207
-msgid "Do you really want to delete this message?"
-msgstr "Wil je echt dit bericht verwijderen?"
+#: ../../include/nav.php:133
+msgid "People directory"
+msgstr "Personengids"
 
-#: ../../mod/message.php:227
-msgid "Message deleted."
-msgstr "Bericht verwijderd."
+#: ../../include/nav.php:135
+msgid "Information"
+msgstr "Informatie"
 
-#: ../../mod/message.php:258
-msgid "Conversation removed."
-msgstr "Gesprek verwijderd."
+#: ../../include/nav.php:135
+msgid "Information about this friendica instance"
+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:1002 ../../include/conversation.php:1020
-msgid "Please enter a link URL:"
-msgstr "Vul een internetadres/URL in:"
+#: ../../include/nav.php:145 ../../mod/notifications.php:83
+msgid "Network"
+msgstr "Netwerk"
 
-#: ../../mod/message.php:319 ../../mod/wallmessage.php:142
-msgid "Send Private Message"
-msgstr "Verstuur privébericht"
+#: ../../include/nav.php:145
+msgid "Conversations from your friends"
+msgstr "Conversaties van je vrienden"
 
-#: ../../mod/message.php:320 ../../mod/message.php:553
-#: ../../mod/wallmessage.php:144
-msgid "To:"
-msgstr "Aan:"
+#: ../../include/nav.php:146
+msgid "Network Reset"
+msgstr "Netwerkpagina opnieuw instellen"
 
-#: ../../mod/message.php:325 ../../mod/message.php:555
-#: ../../mod/wallmessage.php:145
-msgid "Subject:"
-msgstr "Onderwerp:"
+#: ../../include/nav.php:146
+msgid "Load Network page with no filters"
+msgstr "Laad de netwerkpagina zonder filters"
 
-#: ../../mod/message.php:329 ../../mod/message.php:558
-#: ../../mod/wallmessage.php:151 ../../mod/invite.php:134
-msgid "Your message:"
-msgstr "Jouw bericht:"
+#: ../../include/nav.php:154 ../../mod/notifications.php:98
+msgid "Introductions"
+msgstr "Verzoeken"
 
-#: ../../mod/message.php:332 ../../mod/message.php:562
-#: ../../mod/wallmessage.php:154 ../../mod/editpost.php:110
-#: ../../include/conversation.php:1091
-msgid "Upload photo"
-msgstr "Foto uploaden"
+#: ../../include/nav.php:154
+msgid "Friend Requests"
+msgstr "Vriendschapsverzoeken"
 
-#: ../../mod/message.php:333 ../../mod/message.php:563
-#: ../../mod/wallmessage.php:155 ../../mod/editpost.php:114
-#: ../../include/conversation.php:1095
-msgid "Insert web link"
-msgstr "Voeg een webadres in"
+#: ../../include/nav.php:155 ../../mod/notifications.php:224
+msgid "Notifications"
+msgstr "Notificaties"
 
-#: ../../mod/message.php:334 ../../mod/message.php:565
-#: ../../mod/content.php:499 ../../mod/content.php:883
-#: ../../mod/wallmessage.php:156 ../../mod/editpost.php:124
-#: ../../mod/photos.php:1545 ../../object/Item.php:364
-#: ../../include/conversation.php:692 ../../include/conversation.php:1109
-msgid "Please wait"
-msgstr "Even geduld"
+#: ../../include/nav.php:156
+msgid "See all notifications"
+msgstr "Toon alle notificaties"
 
-#: ../../mod/message.php:371
-msgid "No messages."
-msgstr "Geen berichten."
+#: ../../include/nav.php:157
+msgid "Mark all system notifications seen"
+msgstr "Alle systeemnotificaties als gelezen markeren"
 
-#: ../../mod/message.php:378
-#, php-format
-msgid "Unknown sender - %s"
-msgstr "Onbekende afzender - %s"
+#: ../../include/nav.php:161 ../../mod/message.php:182
+msgid "Messages"
+msgstr "Privéberichten"
 
-#: ../../mod/message.php:381
-#, php-format
-msgid "You and %s"
-msgstr "Jij en %s"
+#: ../../include/nav.php:161
+msgid "Private mail"
+msgstr "Privéberichten"
 
-#: ../../mod/message.php:384
-#, php-format
-msgid "%s and You"
-msgstr "%s en jij"
+#: ../../include/nav.php:162
+msgid "Inbox"
+msgstr "Inbox"
 
-#: ../../mod/message.php:405 ../../mod/message.php:546
-msgid "Delete conversation"
-msgstr "Verwijder gesprek"
+#: ../../include/nav.php:163
+msgid "Outbox"
+msgstr "Verzonden berichten"
 
-#: ../../mod/message.php:408
-msgid "D, d M Y - g:i A"
-msgstr "D, d M Y - g:i A"
+#: ../../include/nav.php:164 ../../mod/message.php:9
+msgid "New Message"
+msgstr "Nieuw Bericht"
 
-#: ../../mod/message.php:411
-#, php-format
-msgid "%d message"
-msgid_plural "%d messages"
-msgstr[0] "%d bericht"
-msgstr[1] "%d berichten"
+#: ../../include/nav.php:167
+msgid "Manage"
+msgstr "Beheren"
 
-#: ../../mod/message.php:450
-msgid "Message not available."
-msgstr "Bericht niet beschikbaar."
+#: ../../include/nav.php:167
+msgid "Manage other pages"
+msgstr "Andere pagina's beheren"
 
-#: ../../mod/message.php:520
-msgid "Delete message"
-msgstr "Verwijder bericht"
+#: ../../include/nav.php:170 ../../mod/settings.php:67
+msgid "Delegations"
+msgstr ""
 
-#: ../../mod/message.php:548
-msgid ""
-"No secure communications available. You <strong>may</strong> be able to "
-"respond from the sender's profile page."
-msgstr "Geen beveiligde communicatie beschikbaar. Je kunt <strong>misschien</strong> antwoorden vanaf de profiel-pagina van de afzender."
+#: ../../include/nav.php:170 ../../mod/delegate.php:130
+msgid "Delegate Page Management"
+msgstr "Paginabeheer uitbesteden"
 
-#: ../../mod/message.php:552
-msgid "Send Reply"
-msgstr "Verstuur Antwoord"
+#: ../../include/nav.php:172
+msgid "Account settings"
+msgstr "Account instellingen"
 
-#: ../../mod/update_display.php:22 ../../mod/update_community.php:18
-#: ../../mod/update_notes.php:37 ../../mod/update_profile.php:41
-#: ../../mod/update_network.php:25
-msgid "[Embedded content - reload page to view]"
-msgstr "[Ingebedde inhoud - herlaad pagina om het te bekijken]"
+#: ../../include/nav.php:175
+msgid "Manage/Edit Profiles"
+msgstr "Beheer/Wijzig Profielen"
 
-#: ../../mod/crepair.php:106
-msgid "Contact settings applied."
-msgstr "Contactinstellingen toegepast."
+#: ../../include/nav.php:177
+msgid "Manage/edit friends and contacts"
+msgstr "Beheer/Wijzig vrienden en contacten"
 
-#: ../../mod/crepair.php:108
-msgid "Contact update failed."
-msgstr "Aanpassen van contact mislukt."
+#: ../../include/nav.php:184 ../../mod/admin.php:130
+msgid "Admin"
+msgstr "Beheer"
 
-#: ../../mod/crepair.php:139
-msgid "Repair Contact Settings"
-msgstr "Contactinstellingen herstellen"
+#: ../../include/nav.php:184
+msgid "Site setup and configuration"
+msgstr "Website opzetten en configureren"
 
-#: ../../mod/crepair.php:141
-msgid ""
-"<strong>WARNING: This is highly advanced</strong> and if you enter incorrect"
-" information your communications with this contact may stop working."
-msgstr ""
+#: ../../include/nav.php:188
+msgid "Navigation"
+msgstr "Navigatie"
 
-#: ../../mod/crepair.php:142
-msgid ""
-"Please use your browser 'Back' button <strong>now</strong> if you are "
-"uncertain what to do on this page."
-msgstr "Gebruik <strong>nu</strong> de \"terug\"-knop in je webbrowser wanneer je niet weet wat je op deze pagina moet doen."
+#: ../../include/nav.php:188
+msgid "Site map"
+msgstr "Sitemap"
 
-#: ../../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"
+#: ../../include/plugin.php:455 ../../include/plugin.php:457
+msgid "Click here to upgrade."
 msgstr ""
 
-#: ../../mod/crepair.php:159
-msgid "Mirror as forwarded posting"
+#: ../../include/plugin.php:463
+msgid "This action exceeds the limits set by your subscription plan."
 msgstr ""
 
-#: ../../mod/crepair.php:159 ../../mod/crepair.php:161
-msgid "Mirror as my own posting"
+#: ../../include/plugin.php:468
+msgid "This action is not available under your subscription plan."
 msgstr ""
 
-#: ../../mod/crepair.php:165 ../../mod/admin.php:1003 ../../mod/admin.php:1015
-#: ../../mod/admin.php:1016 ../../mod/admin.php:1029
-#: ../../mod/settings.php:616 ../../mod/settings.php:642
-msgid "Name"
-msgstr "Naam"
+#: ../../include/follow.php:27 ../../mod/dfrn_request.php:507
+msgid "Disallowed profile URL."
+msgstr "Niet toegelaten profiel adres."
 
-#: ../../mod/crepair.php:166
-msgid "Account Nickname"
-msgstr "Bijnaam account"
+#: ../../include/follow.php:32
+msgid "Connect URL missing."
+msgstr ""
 
-#: ../../mod/crepair.php:167
-msgid "@Tagname - overrides Name/Nickname"
-msgstr "@Labelnaam - krijgt voorrang op naam/bijnaam"
+#: ../../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."
 
-#: ../../mod/crepair.php:168
-msgid "Account URL"
-msgstr "URL account"
+#: ../../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."
 
-#: ../../mod/crepair.php:169
-msgid "Friend Request URL"
-msgstr "URL vriendschapsverzoek"
+#: ../../include/follow.php:78
+msgid "The profile address specified does not provide adequate information."
+msgstr ""
 
-#: ../../mod/crepair.php:170
-msgid "Friend Confirm URL"
+#: ../../include/follow.php:82
+msgid "An author or name was not found."
 msgstr ""
 
-#: ../../mod/crepair.php:171
-msgid "Notification Endpoint URL"
+#: ../../include/follow.php:84
+msgid "No browser URL could be matched to this address."
 msgstr ""
 
-#: ../../mod/crepair.php:172
-msgid "Poll/Feed URL"
-msgstr "URL poll/feed"
+#: ../../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."
 
-#: ../../mod/crepair.php:173
-msgid "New photo from this URL"
-msgstr "Nieuwe foto van deze URL"
+#: ../../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."
 
-#: ../../mod/crepair.php:174
-msgid "Remote Self"
+#: ../../include/follow.php:93
+msgid ""
+"The profile address specified belongs to a network which has been disabled "
+"on this site."
 msgstr ""
 
-#: ../../mod/crepair.php:176
-msgid "Mirror postings from this contact"
+#: ../../include/follow.php:103
+msgid ""
+"Limited profile. This person will be unable to receive direct/personal "
+"notifications from you."
 msgstr ""
 
-#: ../../mod/crepair.php:176
-msgid ""
-"Mark this contact as remote_self, this will cause friendica to repost new "
-"entries from this contact."
+#: ../../include/follow.php:205
+msgid "Unable to retrieve contact information."
 msgstr ""
 
-#: ../../mod/bookmarklet.php:12 ../../boot.php:1266 ../../include/nav.php:92
-msgid "Login"
-msgstr "Login"
+#: ../../include/follow.php:258
+msgid "following"
+msgstr "volgend"
 
-#: ../../mod/bookmarklet.php:41
-msgid "The post was created"
+#: ../../include/uimport.php:94
+msgid "Error decoding account file"
 msgstr ""
 
-#: ../../mod/viewsrc.php:7
-msgid "Access denied."
-msgstr "Toegang geweigerd"
+#: ../../include/uimport.php:100
+msgid "Error! No version data in file! This is not a Friendica account file?"
+msgstr ""
 
-#: ../../mod/dirfind.php:26
-msgid "People Search"
-msgstr "Mensen Zoeken"
+#: ../../include/uimport.php:116 ../../include/uimport.php:127
+msgid "Error! Cannot check nickname"
+msgstr ""
 
-#: ../../mod/dirfind.php:60 ../../mod/match.php:65
-msgid "No matches"
-msgstr "Geen resultaten"
+#: ../../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!"
 
-#: ../../mod/fbrowser.php:25 ../../boot.php:2126 ../../include/nav.php:78
-#: ../../view/theme/diabook/theme.php:126
-msgid "Photos"
-msgstr "Foto's"
+#: ../../include/uimport.php:153
+msgid "User creation error"
+msgstr "Fout bij het aanmaken van de gebruiker"
 
-#: ../../mod/fbrowser.php:113
-msgid "Files"
-msgstr "Bestanden"
+#: ../../include/uimport.php:171
+msgid "User profile creation error"
+msgstr "Fout bij het aanmaken van het gebruikersprofiel"
 
-#: ../../mod/nogroup.php:59
-msgid "Contacts who are not members of a group"
-msgstr "Contacten die geen leden zijn van een groep"
+#: ../../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"
 
-#: ../../mod/admin.php:57
-msgid "Theme settings updated."
-msgstr "Thema-instellingen aangepast."
+#: ../../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"
 
-#: ../../mod/admin.php:104 ../../mod/admin.php:619
-msgid "Site"
-msgstr "Website"
+#: ../../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"
 
-#: ../../mod/admin.php:105 ../../mod/admin.php:998 ../../mod/admin.php:1013
-msgid "Users"
-msgstr "Gebruiker"
+#: ../../include/event.php:20 ../../include/bb2diaspora.php:139
+msgid "Starts:"
+msgstr "Begint:"
 
-#: ../../mod/admin.php:106 ../../mod/admin.php:1102 ../../mod/admin.php:1155
-#: ../../mod/settings.php:57
-msgid "Plugins"
-msgstr "Plugins"
+#: ../../include/event.php:30 ../../include/bb2diaspora.php:147
+msgid "Finishes:"
+msgstr "Eindigt:"
 
-#: ../../mod/admin.php:107 ../../mod/admin.php:1323 ../../mod/admin.php:1357
-msgid "Themes"
-msgstr "Thema's"
+#: ../../include/Contact.php:119
+msgid "stopped following"
+msgstr ""
 
-#: ../../mod/admin.php:108
-msgid "DB updates"
-msgstr "DB aanpassingen"
+#: ../../include/Contact.php:232 ../../include/conversation.php:881
+msgid "Poke"
+msgstr "Aanstoten"
 
-#: ../../mod/admin.php:123 ../../mod/admin.php:132 ../../mod/admin.php:1444
-msgid "Logs"
-msgstr "Logs"
+#: ../../include/Contact.php:233 ../../include/conversation.php:875
+msgid "View Status"
+msgstr "Bekijk status"
 
-#: ../../mod/admin.php:124
-msgid "probe address"
-msgstr ""
+#: ../../include/Contact.php:234 ../../include/conversation.php:876
+msgid "View Profile"
+msgstr "Bekijk profiel"
 
-#: ../../mod/admin.php:125
-msgid "check webfinger"
-msgstr ""
+#: ../../include/Contact.php:235 ../../include/conversation.php:877
+msgid "View Photos"
+msgstr "Bekijk foto's"
 
-#: ../../mod/admin.php:130 ../../include/nav.php:184
-msgid "Admin"
-msgstr "Beheer"
+#: ../../include/Contact.php:236 ../../include/Contact.php:259
+#: ../../include/conversation.php:878
+msgid "Network Posts"
+msgstr "Netwerkberichten"
 
-#: ../../mod/admin.php:131
-msgid "Plugin Features"
-msgstr "Plugin Functies"
+#: ../../include/Contact.php:237 ../../include/Contact.php:259
+#: ../../include/conversation.php:879
+msgid "Edit Contact"
+msgstr "Bewerk contact"
 
-#: ../../mod/admin.php:133
-msgid "diagnostics"
-msgstr ""
+#: ../../include/Contact.php:238
+msgid "Drop Contact"
+msgstr "Verwijder contact"
 
-#: ../../mod/admin.php:134
-msgid "User registrations waiting for confirmation"
-msgstr "Gebruikersregistraties wachten op bevestiging"
+#: ../../include/Contact.php:239 ../../include/Contact.php:259
+#: ../../include/conversation.php:880
+msgid "Send PM"
+msgstr "Stuur een privébericht"
 
-#: ../../mod/admin.php:193 ../../mod/admin.php:952
-msgid "Normal Account"
-msgstr "Normaal account"
+#: ../../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 ""
 
-#: ../../mod/admin.php:194 ../../mod/admin.php:953
-msgid "Soapbox Account"
-msgstr "Zeepkist-account"
+#: ../../include/dbstructure.php:31
+#, php-format
+msgid ""
+"The error message is\n"
+"[pre]%s[/pre]"
+msgstr ""
 
-#: ../../mod/admin.php:195 ../../mod/admin.php:954
-msgid "Community/Celebrity Account"
-msgstr "Account voor een groep/forum of beroemdheid"
+#: ../../include/dbstructure.php:150
+msgid "Errors encountered creating database tables."
+msgstr "Tijdens het aanmaken van databasetabellen zijn fouten vastgesteld."
 
-#: ../../mod/admin.php:196 ../../mod/admin.php:955
-msgid "Automatic Friend Account"
-msgstr "Automatisch Vriendschapsaccount"
+#: ../../include/dbstructure.php:208
+msgid "Errors encountered performing database changes."
+msgstr ""
 
-#: ../../mod/admin.php:197
-msgid "Blog Account"
-msgstr "Blog Account"
+#: ../../include/datetime.php:43 ../../include/datetime.php:45
+msgid "Miscellaneous"
+msgstr "Diversen"
 
-#: ../../mod/admin.php:198
-msgid "Private Forum"
-msgstr "Privéforum/-groep"
+#: ../../include/datetime.php:153 ../../include/datetime.php:290
+msgid "year"
+msgstr "jaar"
 
-#: ../../mod/admin.php:217
-msgid "Message queues"
-msgstr "Bericht-wachtrijen"
+#: ../../include/datetime.php:158 ../../include/datetime.php:291
+msgid "month"
+msgstr "maand"
 
-#: ../../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
-msgid "Administration"
-msgstr "Beheer"
+#: ../../include/datetime.php:163 ../../include/datetime.php:293
+msgid "day"
+msgstr "dag"
 
-#: ../../mod/admin.php:223
-msgid "Summary"
-msgstr "Samenvatting"
+#: ../../include/datetime.php:276
+msgid "never"
+msgstr "nooit"
 
-#: ../../mod/admin.php:225
-msgid "Registered users"
-msgstr "Geregistreerde gebruikers"
+#: ../../include/datetime.php:282
+msgid "less than a second ago"
+msgstr "minder dan een seconde geleden"
 
-#: ../../mod/admin.php:227
-msgid "Pending registrations"
-msgstr "Registraties die in de wacht staan"
+#: ../../include/datetime.php:290
+msgid "years"
+msgstr "jaren"
 
-#: ../../mod/admin.php:228
-msgid "Version"
-msgstr "Versie"
+#: ../../include/datetime.php:291
+msgid "months"
+msgstr "maanden"
 
-#: ../../mod/admin.php:232
-msgid "Active plugins"
-msgstr "Actieve plug-ins"
+#: ../../include/datetime.php:292
+msgid "week"
+msgstr "week"
 
-#: ../../mod/admin.php:255
-msgid "Can not parse base url. Must have at least <scheme>://<domain>"
-msgstr ""
+#: ../../include/datetime.php:292
+msgid "weeks"
+msgstr "weken"
 
-#: ../../mod/admin.php:516
-msgid "Site settings updated."
-msgstr "Site instellingen gewijzigd."
+#: ../../include/datetime.php:293
+msgid "days"
+msgstr "dagen"
 
-#: ../../mod/admin.php:545 ../../mod/settings.php:828
-msgid "No special theme for mobile devices"
-msgstr "Geen speciaal thema voor mobiele apparaten"
+#: ../../include/datetime.php:294
+msgid "hour"
+msgstr "uur"
 
-#: ../../mod/admin.php:562
-msgid "No community page"
-msgstr ""
+#: ../../include/datetime.php:294
+msgid "hours"
+msgstr "uren"
 
-#: ../../mod/admin.php:563
-msgid "Public postings from users of this site"
-msgstr ""
+#: ../../include/datetime.php:295
+msgid "minute"
+msgstr "minuut"
 
-#: ../../mod/admin.php:564
-msgid "Global community page"
-msgstr ""
+#: ../../include/datetime.php:295
+msgid "minutes"
+msgstr "minuten"
 
-#: ../../mod/admin.php:570
-msgid "At post arrival"
-msgstr ""
+#: ../../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"
 
-#: ../../mod/admin.php:571 ../../include/contact_selectors.php:56
+#: ../../include/contact_selectors.php:56 ../../mod/admin.php:571
 msgid "Frequently"
 msgstr "Frequent"
 
-#: ../../mod/admin.php:572 ../../include/contact_selectors.php:57
+#: ../../include/contact_selectors.php:57 ../../mod/admin.php:572
 msgid "Hourly"
 msgstr "elk uur"
 
-#: ../../mod/admin.php:573 ../../include/contact_selectors.php:58
+#: ../../include/contact_selectors.php:58 ../../mod/admin.php:573
 msgid "Twice daily"
 msgstr "Twee keer per dag"
 
-#: ../../mod/admin.php:574 ../../include/contact_selectors.php:59
+#: ../../include/contact_selectors.php:59 ../../mod/admin.php:574
 msgid "Daily"
 msgstr "dagelijks"
 
-#: ../../mod/admin.php:579
-msgid "Multi user instance"
-msgstr "Server voor meerdere gebruikers"
+#: ../../include/contact_selectors.php:60
+msgid "Weekly"
+msgstr "wekelijks"
 
-#: ../../mod/admin.php:602
-msgid "Closed"
-msgstr "Gesloten"
+#: ../../include/contact_selectors.php:61
+msgid "Monthly"
+msgstr "maandelijks"
 
-#: ../../mod/admin.php:603
-msgid "Requires approval"
-msgstr "Toestemming vereist"
+#: ../../include/contact_selectors.php:76 ../../mod/dfrn_request.php:836
+msgid "Friendica"
+msgstr "Friendica"
 
-#: ../../mod/admin.php:604
-msgid "Open"
-msgstr "Open"
+#: ../../include/contact_selectors.php:77
+msgid "OStatus"
+msgstr "OStatus"
 
-#: ../../mod/admin.php:608
-msgid "No SSL policy, links will track page SSL state"
-msgstr "Geen SSL beleid, links zullen SSL status van pagina volgen"
+#: ../../include/contact_selectors.php:78
+msgid "RSS/Atom"
+msgstr "RSS/Atom"
 
-#: ../../mod/admin.php:609
-msgid "Force all links to use SSL"
-msgstr "Verplicht alle links om SSL te gebruiken"
+#: ../../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"
 
-#: ../../mod/admin.php:610
-msgid "Self-signed certificate, use SSL for local links only (discouraged)"
-msgstr "Zelf-ondertekend certificaat, gebruik SSL alleen voor lokale links (afgeraden)"
+#: ../../include/contact_selectors.php:80 ../../mod/settings.php:741
+#: ../../mod/dfrn_request.php:838
+msgid "Diaspora"
+msgstr "Diaspora"
 
-#: ../../mod/admin.php:620 ../../mod/admin.php:1156 ../../mod/admin.php:1358
-#: ../../mod/admin.php:1445 ../../mod/settings.php:614
-#: ../../mod/settings.php:724 ../../mod/settings.php:798
-#: ../../mod/settings.php:880 ../../mod/settings.php:1113
-msgid "Save Settings"
-msgstr "Instellingen opslaan"
+#: ../../include/contact_selectors.php:81 ../../mod/newmember.php:49
+#: ../../mod/newmember.php:51
+msgid "Facebook"
+msgstr "Facebook"
 
-#: ../../mod/admin.php:621 ../../mod/register.php:255
-msgid "Registration"
-msgstr "Registratie"
+#: ../../include/contact_selectors.php:82
+msgid "Zot!"
+msgstr "Zot!"
 
-#: ../../mod/admin.php:622
-msgid "File upload"
-msgstr "Uploaden bestand"
+#: ../../include/contact_selectors.php:83
+msgid "LinkedIn"
+msgstr "Linkedln"
 
-#: ../../mod/admin.php:623
-msgid "Policies"
-msgstr "Beleid"
+#: ../../include/contact_selectors.php:84
+msgid "XMPP/IM"
+msgstr "XMPP/IM"
 
-#: ../../mod/admin.php:624
-msgid "Advanced"
-msgstr "Geavanceerd"
+#: ../../include/contact_selectors.php:85
+msgid "MySpace"
+msgstr "Myspace"
 
-#: ../../mod/admin.php:625
-msgid "Performance"
-msgstr "Performantie"
+#: ../../include/contact_selectors.php:87
+msgid "Google+"
+msgstr "Google+"
 
-#: ../../mod/admin.php:626
-msgid ""
-"Relocate - WARNING: advanced function. Could make this server unreachable."
-msgstr ""
+#: ../../include/contact_selectors.php:88
+msgid "pump.io"
+msgstr "pump.io"
 
-#: ../../mod/admin.php:629
-msgid "Site name"
-msgstr "Site naam"
+#: ../../include/contact_selectors.php:89
+msgid "Twitter"
+msgstr "Twitter"
 
-#: ../../mod/admin.php:630
-msgid "Host name"
-msgstr ""
+#: ../../include/contact_selectors.php:90
+msgid "Diaspora Connector"
+msgstr "Diaspora-connector"
 
-#: ../../mod/admin.php:631
-msgid "Sender Email"
+#: ../../include/contact_selectors.php:91
+msgid "Statusnet"
+msgstr "Statusnet"
+
+#: ../../include/contact_selectors.php:92
+msgid "App.net"
 msgstr ""
 
-#: ../../mod/admin.php:632
-msgid "Banner/Logo"
-msgstr "Banner/Logo"
+#: ../../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"
 
-#: ../../mod/admin.php:633
-msgid "Shortcut icon"
+#: ../../include/diaspora.php:704
+msgid "Sharing notification from Diaspora network"
 msgstr ""
 
-#: ../../mod/admin.php:634
-msgid "Touch icon"
-msgstr ""
+#: ../../include/diaspora.php:2444
+msgid "Attachments:"
+msgstr "Bijlagen:"
 
-#: ../../mod/admin.php:635
-msgid "Additional Info"
-msgstr ""
+#: ../../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"
 
-#: ../../mod/admin.php:635
-msgid ""
-"For public servers: you can add additional information here that will be "
-"listed at dir.friendica.com/siteinfo."
-msgstr ""
+#: ../../include/conversation.php:206
+#, php-format
+msgid "%1$s poked %2$s"
+msgstr "%1$s stootte %2$s aan"
 
-#: ../../mod/admin.php:636
-msgid "System language"
-msgstr "Systeemtaal"
+#: ../../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"
 
-#: ../../mod/admin.php:637
-msgid "System theme"
-msgstr "Systeem thema"
+#: ../../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"
 
-#: ../../mod/admin.php:637
-msgid ""
-"Default system theme - may be over-ridden by user profiles - <a href='#' "
-"id='cnftheme'>change theme settings</a>"
-msgstr "Standaard systeem thema - kan door gebruikersprofielen veranderd worden - <a href='#' id='cnftheme'>verander thema instellingen</a>"
+#: ../../include/conversation.php:290
+msgid "post/item"
+msgstr "bericht/item"
 
-#: ../../mod/admin.php:638
-msgid "Mobile system theme"
-msgstr "Mobiel systeem thema"
+#: ../../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"
 
-#: ../../mod/admin.php:638
-msgid "Theme for mobile devices"
-msgstr "Thema voor mobiele apparaten"
+#: ../../include/conversation.php:612 ../../object/Item.php:129
+#: ../../mod/photos.php:1653 ../../mod/content.php:437
+#: ../../mod/content.php:740
+msgid "Select"
+msgstr "Kies"
 
-#: ../../mod/admin.php:639
-msgid "SSL link policy"
-msgstr "Beleid SSL-links"
+#: ../../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
+msgid "Delete"
+msgstr "Verwijder"
 
-#: ../../mod/admin.php:639
-msgid "Determines whether generated links should be forced to use SSL"
-msgstr "Bepaald of gegenereerde verwijzingen verplicht SSL moeten gebruiken"
+#: ../../include/conversation.php:653 ../../object/Item.php:326
+#: ../../object/Item.php:327 ../../mod/content.php:471
+#: ../../mod/content.php:852 ../../mod/content.php:853
+#, php-format
+msgid "View %s's profile @ %s"
+msgstr "Bekijk het profiel van %s @ %s"
 
-#: ../../mod/admin.php:640
-msgid "Force SSL"
-msgstr ""
+#: ../../include/conversation.php:665 ../../object/Item.php:316
+msgid "Categories:"
+msgstr "Categorieën:"
 
-#: ../../mod/admin.php:640
-msgid ""
-"Force all Non-SSL requests to SSL - Attention: on some systems it could lead"
-" to endless loops."
-msgstr ""
+#: ../../include/conversation.php:666 ../../object/Item.php:317
+msgid "Filed under:"
+msgstr "Bewaard onder:"
 
-#: ../../mod/admin.php:641
-msgid "Old style 'Share'"
-msgstr ""
+#: ../../include/conversation.php:673 ../../object/Item.php:340
+#: ../../mod/content.php:481 ../../mod/content.php:864
+#, php-format
+msgid "%s from %s"
+msgstr "%s van %s"
 
-#: ../../mod/admin.php:641
-msgid "Deactivates the bbcode element 'share' for repeating items."
-msgstr ""
+#: ../../include/conversation.php:689 ../../mod/content.php:497
+msgid "View in context"
+msgstr "In context bekijken"
 
-#: ../../mod/admin.php:642
-msgid "Hide help entry from navigation menu"
-msgstr "Verberg de 'help' uit het navigatiemenu"
+#: ../../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
+msgid "Please wait"
+msgstr "Even geduld"
 
-#: ../../mod/admin.php:642
-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."
+#: ../../include/conversation.php:771
+msgid "remove"
+msgstr "verwijder"
 
-#: ../../mod/admin.php:643
-msgid "Single user instance"
-msgstr "Server voor één gebruiker"
+#: ../../include/conversation.php:775
+msgid "Delete Selected Items"
+msgstr "Geselecteerde items verwijderen"
 
-#: ../../mod/admin.php:643
-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."
+#: ../../include/conversation.php:874
+msgid "Follow Thread"
+msgstr "Conversatie volgen"
 
-#: ../../mod/admin.php:644
-msgid "Maximum image size"
-msgstr "Maximum afbeeldingsgrootte"
+#: ../../include/conversation.php:943
+#, php-format
+msgid "%s likes this."
+msgstr "%s vindt dit leuk."
 
-#: ../../mod/admin.php:644
-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."
+#: ../../include/conversation.php:943
+#, php-format
+msgid "%s doesn't like this."
+msgstr "%s vindt dit niet leuk."
 
-#: ../../mod/admin.php:645
-msgid "Maximum image length"
-msgstr "Maximum afbeeldingslengte"
+#: ../../include/conversation.php:948
+#, php-format
+msgid "<span  %1$s>%2$d people</span> like this"
+msgstr "<span  %1$s>%2$d mensen</span> vinden dit leuk"
 
-#: ../../mod/admin.php:645
-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."
+#: ../../include/conversation.php:951
+#, php-format
+msgid "<span  %1$s>%2$d people</span> don't like this"
+msgstr "<span  %1$s>%2$d people</span> vinden dit niet leuk"
 
-#: ../../mod/admin.php:646
-msgid "JPEG image quality"
-msgstr "JPEG afbeeldingskwaliteit"
+#: ../../include/conversation.php:965
+msgid "and"
+msgstr "en"
 
-#: ../../mod/admin.php:646
-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."
+#: ../../include/conversation.php:971
+#, php-format
+msgid ", and %d other people"
+msgstr ", en %d andere mensen"
 
-#: ../../mod/admin.php:648
-msgid "Register policy"
-msgstr "Registratiebeleid"
+#: ../../include/conversation.php:973
+#, php-format
+msgid "%s like this."
+msgstr "%s vindt dit leuk."
 
-#: ../../mod/admin.php:649
-msgid "Maximum Daily Registrations"
-msgstr "Maximum aantal registraties per dag"
+#: ../../include/conversation.php:973
+#, php-format
+msgid "%s don't like this."
+msgstr "%s vindt dit niet leuk."
 
-#: ../../mod/admin.php:649
-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."
+#: ../../include/conversation.php:1000 ../../include/conversation.php:1018
+msgid "Visible to <strong>everybody</strong>"
+msgstr "Zichtbaar voor <strong>iedereen</strong>"
 
-#: ../../mod/admin.php:650
-msgid "Register text"
-msgstr "Registratietekst"
+#: ../../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:"
 
-#: ../../mod/admin.php:650
-msgid "Will be displayed prominently on the registration page."
-msgstr "Dit zal prominent op de registratiepagina getoond worden."
+#: ../../include/conversation.php:1002 ../../include/conversation.php:1020
+msgid "Please enter a video link/URL:"
+msgstr "Vul een videolink/URL in:"
 
-#: ../../mod/admin.php:651
-msgid "Accounts abandoned after x days"
-msgstr "Verlaten accounts na x dagen"
+#: ../../include/conversation.php:1003 ../../include/conversation.php:1021
+msgid "Please enter an audio link/URL:"
+msgstr "Vul een audiolink/URL in:"
 
-#: ../../mod/admin.php:651
-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."
+#: ../../include/conversation.php:1004 ../../include/conversation.php:1022
+msgid "Tag term:"
+msgstr "Label:"
 
-#: ../../mod/admin.php:652
-msgid "Allowed friend domains"
-msgstr "Toegelaten vriend domeinen"
+#: ../../include/conversation.php:1005 ../../include/conversation.php:1023
+#: ../../mod/filer.php:30
+msgid "Save to Folder:"
+msgstr "Bewaren in map:"
 
-#: ../../mod/admin.php:652
-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."
+#: ../../include/conversation.php:1006 ../../include/conversation.php:1024
+msgid "Where are you right now?"
+msgstr "Waar ben je nu?"
 
-#: ../../mod/admin.php:653
-msgid "Allowed email domains"
-msgstr "Toegelaten e-mail domeinen"
+#: ../../include/conversation.php:1007
+msgid "Delete item(s)?"
+msgstr "Item(s) verwijderen?"
 
-#: ../../mod/admin.php:653
-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."
+#: ../../include/conversation.php:1050
+msgid "Post to Email"
+msgstr "Verzenden per e-mail"
 
-#: ../../mod/admin.php:654
-msgid "Block public"
-msgstr "Openbare toegang blokkeren"
+#: ../../include/conversation.php:1055
+#, php-format
+msgid "Connectors disabled, since \"%s\" is enabled."
+msgstr ""
 
-#: ../../mod/admin.php:654
-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."
+#: ../../include/conversation.php:1056 ../../mod/settings.php:1033
+msgid "Hide your profile details from unknown viewers?"
+msgstr "Je profieldetails verbergen voor onbekende bezoekers?"
 
-#: ../../mod/admin.php:655
-msgid "Force publish"
-msgstr "Dwing publiceren af"
+#: ../../include/conversation.php:1089 ../../mod/photos.php:1544
+msgid "Share"
+msgstr "Delen"
 
-#: ../../mod/admin.php:655
-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."
+#: ../../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"
 
-#: ../../mod/admin.php:656
-msgid "Global directory update URL"
-msgstr "Update-adres van de globale gids"
+#: ../../include/conversation.php:1091 ../../mod/editpost.php:111
+msgid "upload photo"
+msgstr "Foto uploaden"
 
-#: ../../mod/admin.php:656
-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."
+#: ../../include/conversation.php:1092 ../../mod/editpost.php:112
+msgid "Attach file"
+msgstr "Bestand bijvoegen"
 
-#: ../../mod/admin.php:657
-msgid "Allow threaded items"
-msgstr "Sta threads in conversaties toe"
+#: ../../include/conversation.php:1093 ../../mod/editpost.php:113
+msgid "attach file"
+msgstr "bestand bijvoegen"
 
-#: ../../mod/admin.php:657
-msgid "Allow infinite level threading for items on this site."
-msgstr "Sta oneindige niveaus threads in conversaties op deze website toe."
+#: ../../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"
 
-#: ../../mod/admin.php:658
-msgid "Private posts by default for new users"
-msgstr "Privéberichten als standaard voor nieuwe gebruikers"
+#: ../../include/conversation.php:1095 ../../mod/editpost.php:115
+msgid "web link"
+msgstr "webadres"
 
-#: ../../mod/admin.php:658
-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."
+#: ../../include/conversation.php:1096 ../../mod/editpost.php:116
+msgid "Insert video link"
+msgstr "Voeg video toe"
 
-#: ../../mod/admin.php:659
-msgid "Don't include post content in email notifications"
-msgstr "De inhoud van het bericht niet insluiten bij e-mailnotificaties"
+#: ../../include/conversation.php:1097 ../../mod/editpost.php:117
+msgid "video link"
+msgstr "video adres"
 
-#: ../../mod/admin.php:659
-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."
+#: ../../include/conversation.php:1098 ../../mod/editpost.php:118
+msgid "Insert audio link"
+msgstr "Voeg audio adres toe"
 
-#: ../../mod/admin.php:660
-msgid "Disallow public access to addons listed in the apps menu."
-msgstr ""
+#: ../../include/conversation.php:1099 ../../mod/editpost.php:119
+msgid "audio link"
+msgstr "audio adres"
 
-#: ../../mod/admin.php:660
-msgid ""
-"Checking this box will restrict addons listed in the apps menu to members "
-"only."
-msgstr ""
+#: ../../include/conversation.php:1100 ../../mod/editpost.php:120
+msgid "Set your location"
+msgstr "Stel uw locatie in"
 
-#: ../../mod/admin.php:661
-msgid "Don't embed private images in posts"
-msgstr ""
+#: ../../include/conversation.php:1101 ../../mod/editpost.php:121
+msgid "set location"
+msgstr "Stel uw locatie in"
 
-#: ../../mod/admin.php:661
-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 "
-"photos will have to authenticate and load each image, which may take a "
-"while."
-msgstr ""
+#: ../../include/conversation.php:1102 ../../mod/editpost.php:122
+msgid "Clear browser location"
+msgstr "Verwijder locatie uit uw webbrowser"
 
-#: ../../mod/admin.php:662
-msgid "Allow Users to set remote_self"
-msgstr ""
+#: ../../include/conversation.php:1103 ../../mod/editpost.php:123
+msgid "clear location"
+msgstr "Verwijder locatie uit uw webbrowser"
 
-#: ../../mod/admin.php:662
-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 ""
+#: ../../include/conversation.php:1105 ../../mod/editpost.php:137
+msgid "Set title"
+msgstr "Titel plaatsen"
 
-#: ../../mod/admin.php:663
-msgid "Block multiple registrations"
-msgstr "Blokkeer meerdere registraties"
+#: ../../include/conversation.php:1107 ../../mod/editpost.php:139
+msgid "Categories (comma-separated list)"
+msgstr "Categorieën (komma-gescheiden lijst)"
 
-#: ../../mod/admin.php:663
-msgid "Disallow users to register additional accounts for use as pages."
-msgstr "Laat niet toe dat gebruikers meerdere accounts aanmaken."
+#: ../../include/conversation.php:1109 ../../mod/editpost.php:125
+msgid "Permission settings"
+msgstr "Instellingen van rechten"
 
-#: ../../mod/admin.php:664
-msgid "OpenID support"
-msgstr "OpenID ondersteuning"
+#: ../../include/conversation.php:1110
+msgid "permissions"
+msgstr "rechten"
 
-#: ../../mod/admin.php:664
-msgid "OpenID support for registration and logins."
-msgstr "OpenID ondersteuning voor registraties en logins."
+#: ../../include/conversation.php:1118 ../../mod/editpost.php:133
+msgid "CC: email addresses"
+msgstr "CC: e-mailadressen"
 
-#: ../../mod/admin.php:665
-msgid "Fullname check"
-msgstr "Controleer volledige naam"
+#: ../../include/conversation.php:1119 ../../mod/editpost.php:134
+msgid "Public post"
+msgstr "Openbare post"
 
-#: ../../mod/admin.php:665
-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"
+#: ../../include/conversation.php:1121 ../../mod/editpost.php:140
+msgid "Example: bob@example.com, mary@example.com"
+msgstr "Voorbeeld: bob@voorbeeld.nl, an@voorbeeld.be"
 
-#: ../../mod/admin.php:666
-msgid "UTF-8 Regular expressions"
-msgstr "UTF-8 reguliere uitdrukkingen"
+#: ../../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"
 
-#: ../../mod/admin.php:666
-msgid "Use PHP UTF8 regular expressions"
-msgstr "Gebruik PHP UTF8 reguliere uitdrukkingen"
+#: ../../include/conversation.php:1134
+msgid "Post to Groups"
+msgstr "Verzenden naar Groepen"
 
-#: ../../mod/admin.php:667
-msgid "Community Page Style"
-msgstr ""
+#: ../../include/conversation.php:1135
+msgid "Post to Contacts"
+msgstr "Verzenden naar Contacten"
 
-#: ../../mod/admin.php:667
-msgid ""
-"Type of community page to show. 'Global community' shows every public "
-"posting from an open distributed network that arrived on this server."
-msgstr ""
+#: ../../include/conversation.php:1136
+msgid "Private post"
+msgstr "Privé verzending"
 
-#: ../../mod/admin.php:668
-msgid "Posts per user on community page"
-msgstr ""
+#: ../../include/text.php:297
+msgid "newer"
+msgstr "nieuwere berichten"
 
-#: ../../mod/admin.php:668
-msgid ""
-"The maximum number of posts per user on the community page. (Not valid for "
-"'Global Community')"
-msgstr ""
+#: ../../include/text.php:299
+msgid "older"
+msgstr "oudere berichten"
 
-#: ../../mod/admin.php:669
-msgid "Enable OStatus support"
-msgstr "Activeer OStatus ondersteuning"
+#: ../../include/text.php:304
+msgid "prev"
+msgstr "vorige"
 
-#: ../../mod/admin.php:669
-msgid ""
-"Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All "
-"communications in OStatus are public, so privacy warnings will be "
-"occasionally displayed."
-msgstr ""
+#: ../../include/text.php:306
+msgid "first"
+msgstr "eerste"
 
-#: ../../mod/admin.php:670
-msgid "OStatus conversation completion interval"
-msgstr ""
+#: ../../include/text.php:338
+msgid "last"
+msgstr "laatste"
 
-#: ../../mod/admin.php:670
-msgid ""
-"How often shall the poller check for new entries in OStatus conversations? "
-"This can be a very ressource task."
+#: ../../include/text.php:341
+msgid "next"
+msgstr "volgende"
+
+#: ../../include/text.php:396
+msgid "Loading more entries..."
 msgstr ""
 
-#: ../../mod/admin.php:671
-msgid "Enable Diaspora support"
-msgstr "Activeer Diaspora ondersteuning"
+#: ../../include/text.php:397
+msgid "The end"
+msgstr ""
 
-#: ../../mod/admin.php:671
-msgid "Provide built-in Diaspora network compatibility."
-msgstr "Bied ingebouwde ondersteuning voor het Diaspora netwerk."
+#: ../../include/text.php:870
+msgid "No contacts"
+msgstr "Geen contacten"
 
-#: ../../mod/admin.php:672
-msgid "Only allow Friendica contacts"
-msgstr "Laat alleen Friendica contacten toe"
+#: ../../include/text.php:879
+#, php-format
+msgid "%d Contact"
+msgid_plural "%d Contacts"
+msgstr[0] "%d contact"
+msgstr[1] "%d contacten"
 
-#: ../../mod/admin.php:672
-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."
+#: ../../include/text.php:891 ../../mod/viewcontacts.php:78
+msgid "View Contacts"
+msgstr "Bekijk contacten"
 
-#: ../../mod/admin.php:673
-msgid "Verify SSL"
-msgstr "Controleer SSL"
+#: ../../include/text.php:971 ../../mod/editpost.php:109
+#: ../../mod/notes.php:63 ../../mod/filer.php:31
+msgid "Save"
+msgstr "Bewaren"
 
-#: ../../mod/admin.php:673
-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."
+#: ../../include/text.php:1020
+msgid "poke"
+msgstr "aanstoten"
 
-#: ../../mod/admin.php:674
-msgid "Proxy user"
-msgstr "Proxy-gebruiker"
+#: ../../include/text.php:1020
+msgid "poked"
+msgstr "aangestoten"
 
-#: ../../mod/admin.php:675
-msgid "Proxy URL"
-msgstr "Proxy-URL"
+#: ../../include/text.php:1021
+msgid "ping"
+msgstr "ping"
 
-#: ../../mod/admin.php:676
-msgid "Network timeout"
-msgstr "Netwerk timeout"
+#: ../../include/text.php:1021
+msgid "pinged"
+msgstr "gepingd"
 
-#: ../../mod/admin.php:676
-msgid "Value is in seconds. Set to 0 for unlimited (not recommended)."
-msgstr "Waarde is in seconden. Zet op 0 voor onbeperkt (niet aanbevolen)."
+#: ../../include/text.php:1022
+msgid "prod"
+msgstr "porren"
 
-#: ../../mod/admin.php:677
-msgid "Delivery interval"
-msgstr "Afleverinterval"
+#: ../../include/text.php:1022
+msgid "prodded"
+msgstr "gepord"
 
-#: ../../mod/admin.php:677
-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."
+#: ../../include/text.php:1023
+msgid "slap"
+msgstr "slaan"
 
-#: ../../mod/admin.php:678
-msgid "Poll interval"
-msgstr "Poll-interval"
+#: ../../include/text.php:1023
+msgid "slapped"
+msgstr "geslagen"
 
-#: ../../mod/admin.php:678
-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."
+#: ../../include/text.php:1024
+msgid "finger"
+msgstr "finger"
 
-#: ../../mod/admin.php:679
-msgid "Maximum Load Average"
-msgstr "Maximum gemiddelde belasting"
+#: ../../include/text.php:1024
+msgid "fingered"
+msgstr "gerfingerd"
 
-#: ../../mod/admin.php:679
-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."
+#: ../../include/text.php:1025
+msgid "rebuff"
+msgstr "afpoeieren"
 
-#: ../../mod/admin.php:681
-msgid "Use MySQL full text engine"
-msgstr "Gebruik de tekst-zoekfunctie van MySQL"
+#: ../../include/text.php:1025
+msgid "rebuffed"
+msgstr "afgepoeierd"
 
-#: ../../mod/admin.php:681
-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."
+#: ../../include/text.php:1039
+msgid "happy"
+msgstr "Blij"
 
-#: ../../mod/admin.php:682
-msgid "Suppress Language"
-msgstr ""
+#: ../../include/text.php:1040
+msgid "sad"
+msgstr "Verdrietig"
 
-#: ../../mod/admin.php:682
-msgid "Suppress language information in meta information about a posting."
-msgstr ""
+#: ../../include/text.php:1041
+msgid "mellow"
+msgstr "mellow"
 
-#: ../../mod/admin.php:683
-msgid "Suppress Tags"
-msgstr ""
+#: ../../include/text.php:1042
+msgid "tired"
+msgstr "vermoeid"
 
-#: ../../mod/admin.php:683
-msgid "Suppress showing a list of hashtags at the end of the posting."
-msgstr ""
+#: ../../include/text.php:1043
+msgid "perky"
+msgstr "parmantig"
 
-#: ../../mod/admin.php:684
-msgid "Path to item cache"
-msgstr "Pad naar cache voor items"
+#: ../../include/text.php:1044
+msgid "angry"
+msgstr "boos"
 
-#: ../../mod/admin.php:685
-msgid "Cache duration in seconds"
-msgstr "Cache tijdsduur in seconden"
+#: ../../include/text.php:1045
+msgid "stupified"
+msgstr "verbijsterd"
 
-#: ../../mod/admin.php:685
-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 ""
+#: ../../include/text.php:1046
+msgid "puzzled"
+msgstr "onzeker"
 
-#: ../../mod/admin.php:686
-msgid "Maximum numbers of comments per post"
-msgstr ""
+#: ../../include/text.php:1047
+msgid "interested"
+msgstr "Geïnteresseerd"
 
-#: ../../mod/admin.php:686
-msgid "How much comments should be shown for each post? Default value is 100."
-msgstr ""
+#: ../../include/text.php:1048
+msgid "bitter"
+msgstr "bitter"
 
-#: ../../mod/admin.php:687
-msgid "Path for lock file"
-msgstr "Pad voor lock bestand"
+#: ../../include/text.php:1049
+msgid "cheerful"
+msgstr "vrolijk"
 
-#: ../../mod/admin.php:688
-msgid "Temp path"
-msgstr "Tijdelijk pad"
+#: ../../include/text.php:1050
+msgid "alive"
+msgstr "levend"
 
-#: ../../mod/admin.php:689
-msgid "Base path to installation"
-msgstr "Basispad voor installatie"
+#: ../../include/text.php:1051
+msgid "annoyed"
+msgstr "verveeld"
 
-#: ../../mod/admin.php:690
-msgid "Disable picture proxy"
-msgstr ""
+#: ../../include/text.php:1052
+msgid "anxious"
+msgstr "bezorgd"
 
-#: ../../mod/admin.php:690
-msgid ""
-"The picture proxy increases performance and privacy. It shouldn't be used on"
-" systems with very low bandwith."
-msgstr ""
+#: ../../include/text.php:1053
+msgid "cranky"
+msgstr "humeurig "
 
-#: ../../mod/admin.php:691
-msgid "Enable old style pager"
-msgstr ""
+#: ../../include/text.php:1054
+msgid "disturbed"
+msgstr "verontrust"
 
-#: ../../mod/admin.php:691
-msgid ""
-"The old style pager has page numbers but slows down massively the page "
-"speed."
-msgstr ""
+#: ../../include/text.php:1055
+msgid "frustrated"
+msgstr "gefrustreerd"
 
-#: ../../mod/admin.php:692
-msgid "Only search in tags"
-msgstr ""
+#: ../../include/text.php:1056
+msgid "motivated"
+msgstr "gemotiveerd"
 
-#: ../../mod/admin.php:692
-msgid "On large systems the text search can slow down the system extremely."
-msgstr ""
+#: ../../include/text.php:1057
+msgid "relaxed"
+msgstr "ontspannen"
 
-#: ../../mod/admin.php:694
-msgid "New base url"
-msgstr ""
+#: ../../include/text.php:1058
+msgid "surprised"
+msgstr "verbaasd"
 
-#: ../../mod/admin.php:711
-msgid "Update has been marked successful"
-msgstr "Wijziging succesvol gemarkeerd "
+#: ../../include/text.php:1228
+msgid "Monday"
+msgstr "Maandag"
 
-#: ../../mod/admin.php:719
-#, php-format
-msgid "Database structure update %s was successfully applied."
-msgstr ""
+#: ../../include/text.php:1228
+msgid "Tuesday"
+msgstr "Dinsdag"
 
-#: ../../mod/admin.php:722
-#, php-format
-msgid "Executing of database structure update %s failed with error: %s"
-msgstr ""
+#: ../../include/text.php:1228
+msgid "Wednesday"
+msgstr "Woensdag"
 
-#: ../../mod/admin.php:734
-#, php-format
-msgid "Executing %s failed with error: %s"
-msgstr ""
+#: ../../include/text.php:1228
+msgid "Thursday"
+msgstr "Donderdag"
 
-#: ../../mod/admin.php:737
-#, php-format
-msgid "Update %s was successfully applied."
-msgstr "Wijziging %s geslaagd."
+#: ../../include/text.php:1228
+msgid "Friday"
+msgstr "Vrijdag"
 
-#: ../../mod/admin.php:741
-#, 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."
+#: ../../include/text.php:1228
+msgid "Saturday"
+msgstr "Zaterdag"
 
-#: ../../mod/admin.php:743
-#, php-format
-msgid "There was no additional update function %s that needed to be called."
-msgstr ""
+#: ../../include/text.php:1228
+msgid "Sunday"
+msgstr "Zondag"
 
-#: ../../mod/admin.php:762
-msgid "No failed updates."
-msgstr "Geen misluke wijzigingen"
+#: ../../include/text.php:1232
+msgid "January"
+msgstr "Januari"
 
-#: ../../mod/admin.php:763
-msgid "Check database structure"
-msgstr ""
+#: ../../include/text.php:1232
+msgid "February"
+msgstr "Februari"
 
-#: ../../mod/admin.php:768
-msgid "Failed Updates"
-msgstr "Misluke wijzigingen"
+#: ../../include/text.php:1232
+msgid "March"
+msgstr "Maart"
 
-#: ../../mod/admin.php:769
-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."
+#: ../../include/text.php:1232
+msgid "April"
+msgstr "April"
 
-#: ../../mod/admin.php:770
-msgid "Mark success (if update was manually applied)"
-msgstr "Markeren als succes (als aanpassing manueel doorgevoerd werd)"
+#: ../../include/text.php:1232
+msgid "May"
+msgstr "Mei"
 
-#: ../../mod/admin.php:771
-msgid "Attempt to execute this update step automatically"
-msgstr "Probeer deze stap automatisch uit te voeren"
+#: ../../include/text.php:1232
+msgid "June"
+msgstr "Juni"
 
-#: ../../mod/admin.php:803
-#, php-format
-msgid ""
-"\n"
-"\t\t\tDear %1$s,\n"
-"\t\t\t\tthe administrator of %2$s has set up an account for you."
-msgstr ""
+#: ../../include/text.php:1232
+msgid "July"
+msgstr "Juli"
 
-#: ../../mod/admin.php:806
-#, php-format
-msgid ""
-"\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."
-msgstr ""
+#: ../../include/text.php:1232
+msgid "August"
+msgstr "Augustus"
 
-#: ../../mod/admin.php:838 ../../include/user.php:413
-#, php-format
-msgid "Registration details for %s"
-msgstr "Registratie details voor %s"
+#: ../../include/text.php:1232
+msgid "September"
+msgstr "September"
 
-#: ../../mod/admin.php:850
-#, 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"
+#: ../../include/text.php:1232
+msgid "October"
+msgstr "Oktober"
 
-#: ../../mod/admin.php:857
-#, php-format
-msgid "%s user deleted"
-msgid_plural "%s users deleted"
-msgstr[0] "%s gebruiker verwijderd"
-msgstr[1] "%s gebruikers verwijderd"
+#: ../../include/text.php:1232
+msgid "November"
+msgstr "November"
 
-#: ../../mod/admin.php:896
-#, php-format
-msgid "User '%s' deleted"
-msgstr "Gebruiker '%s' verwijderd"
+#: ../../include/text.php:1232
+msgid "December"
+msgstr "December"
 
-#: ../../mod/admin.php:904
-#, php-format
-msgid "User '%s' unblocked"
-msgstr "Gebruiker '%s' niet meer geblokkeerd"
+#: ../../include/text.php:1422 ../../mod/videos.php:301
+msgid "View Video"
+msgstr "Bekijk Video"
 
-#: ../../mod/admin.php:904
-#, php-format
-msgid "User '%s' blocked"
-msgstr "Gebruiker '%s' geblokkeerd"
+#: ../../include/text.php:1454
+msgid "bytes"
+msgstr "bytes"
 
-#: ../../mod/admin.php:999
-msgid "Add User"
-msgstr "Gebruiker toevoegen"
+#: ../../include/text.php:1478 ../../include/text.php:1490
+msgid "Click to open/close"
+msgstr "klik om te openen/sluiten"
 
-#: ../../mod/admin.php:1000
-msgid "select all"
-msgstr "Alles selecteren"
+#: ../../include/text.php:1664 ../../include/text.php:1674
+#: ../../mod/events.php:335
+msgid "link to source"
+msgstr "Verwijzing naar bron"
 
-#: ../../mod/admin.php:1001
-msgid "User registrations waiting for confirm"
-msgstr "Gebruikersregistraties wachten op een bevestiging"
+#: ../../include/text.php:1731
+msgid "Select an alternate language"
+msgstr "Kies een andere taal"
 
-#: ../../mod/admin.php:1002
-msgid "User waiting for permanent deletion"
-msgstr ""
+#: ../../include/text.php:1987
+msgid "activity"
+msgstr "activiteit"
 
-#: ../../mod/admin.php:1003
-msgid "Request date"
-msgstr "Registratiedatum"
+#: ../../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"
 
-#: ../../mod/admin.php:1003 ../../mod/admin.php:1015 ../../mod/admin.php:1016
-#: ../../mod/admin.php:1031 ../../include/contact_selectors.php:79
-#: ../../include/contact_selectors.php:86
-msgid "Email"
-msgstr "E-mail"
+#: ../../include/text.php:1990
+msgid "post"
+msgstr "bericht"
 
-#: ../../mod/admin.php:1004
-msgid "No registrations."
-msgstr "Geen registraties."
+#: ../../include/text.php:2158
+msgid "Item filed"
+msgstr "Item bewaard"
 
-#: ../../mod/admin.php:1006
-msgid "Deny"
-msgstr "Weiger"
+#: ../../include/auth.php:38
+msgid "Logged out."
+msgstr "Uitgelogd."
 
-#: ../../mod/admin.php:1010
-msgid "Site admin"
-msgstr "Sitebeheerder"
+#: ../../include/auth.php:112 ../../include/auth.php:175
+#: ../../mod/openid.php:93
+msgid "Login failed."
+msgstr "Login mislukt."
 
-#: ../../mod/admin.php:1011
-msgid "Account expired"
-msgstr "Account verlopen"
+#: ../../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 ""
 
-#: ../../mod/admin.php:1014
-msgid "New User"
-msgstr "Nieuwe gebruiker"
+#: ../../include/auth.php:128 ../../include/user.php:67
+msgid "The error message was:"
+msgstr "De foutboodschap was:"
 
-#: ../../mod/admin.php:1015 ../../mod/admin.php:1016
-msgid "Register date"
-msgstr "Registratiedatum"
+#: ../../include/bbcode.php:433 ../../include/bbcode.php:1066
+#: ../../include/bbcode.php:1067
+msgid "Image/photo"
+msgstr "Afbeelding/foto"
 
-#: ../../mod/admin.php:1015 ../../mod/admin.php:1016
-msgid "Last login"
-msgstr "Laatste login"
+#: ../../include/bbcode.php:531
+#, php-format
+msgid "<a href=\"%1$s\" target=\"_blank\">%2$s</a> %3$s"
+msgstr ""
 
-#: ../../mod/admin.php:1015 ../../mod/admin.php:1016
-msgid "Last item"
-msgstr "Laatste item"
+#: ../../include/bbcode.php:565
+#, php-format
+msgid ""
+"<span><a href=\"%s\" target=\"_blank\">%s</a> wrote the following <a "
+"href=\"%s\" target=\"_blank\">post</a>"
+msgstr ""
 
-#: ../../mod/admin.php:1015
-msgid "Deleted since"
-msgstr "Verwijderd sinds"
+#: ../../include/bbcode.php:1030 ../../include/bbcode.php:1050
+msgid "$1 wrote:"
+msgstr "$1 schreef:"
 
-#: ../../mod/admin.php:1016 ../../mod/settings.php:36
-msgid "Account"
-msgstr "Account"
+#: ../../include/bbcode.php:1075 ../../include/bbcode.php:1076
+msgid "Encrypted content"
+msgstr "Versleutelde inhoud"
 
-#: ../../mod/admin.php:1018
-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?"
+#: ../../include/security.php:22
+msgid "Welcome "
+msgstr "Welkom"
 
-#: ../../mod/admin.php:1019
-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?"
+#: ../../include/security.php:23
+msgid "Please upload a profile photo."
+msgstr "Upload een profielfoto."
 
-#: ../../mod/admin.php:1029
-msgid "Name of the new user."
-msgstr "Naam van nieuwe gebruiker"
+#: ../../include/security.php:26
+msgid "Welcome back "
+msgstr "Welkom terug "
 
-#: ../../mod/admin.php:1030
-msgid "Nickname"
-msgstr "Bijnaam"
+#: ../../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 ""
 
-#: ../../mod/admin.php:1030
-msgid "Nickname of the new user."
-msgstr "Bijnaam van nieuwe gebruiker"
+#: ../../include/oembed.php:213
+msgid "Embedded content"
+msgstr "Ingebedde inhoud"
 
-#: ../../mod/admin.php:1031
-msgid "Email address of the new user."
-msgstr "E-mailadres van nieuwe gebruiker"
+#: ../../include/oembed.php:222
+msgid "Embedding disabled"
+msgstr "Inbedden uitgeschakeld"
 
-#: ../../mod/admin.php:1064
-#, php-format
-msgid "Plugin %s disabled."
-msgstr "Plugin %s uitgeschakeld."
+#: ../../include/profile_selectors.php:6
+msgid "Male"
+msgstr "Man"
 
-#: ../../mod/admin.php:1068
-#, php-format
-msgid "Plugin %s enabled."
-msgstr "Plugin %s ingeschakeld."
+#: ../../include/profile_selectors.php:6
+msgid "Female"
+msgstr "Vrouw"
 
-#: ../../mod/admin.php:1078 ../../mod/admin.php:1294
-msgid "Disable"
-msgstr "Uitschakelen"
+#: ../../include/profile_selectors.php:6
+msgid "Currently Male"
+msgstr "Momenteel mannelijk"
 
-#: ../../mod/admin.php:1080 ../../mod/admin.php:1296
-msgid "Enable"
-msgstr "Inschakelen"
+#: ../../include/profile_selectors.php:6
+msgid "Currently Female"
+msgstr "Momenteel vrouwelijk"
 
-#: ../../mod/admin.php:1103 ../../mod/admin.php:1324
-msgid "Toggle"
-msgstr "Schakelaar"
+#: ../../include/profile_selectors.php:6
+msgid "Mostly Male"
+msgstr "Meestal mannelijk"
 
-#: ../../mod/admin.php:1111 ../../mod/admin.php:1334
-msgid "Author: "
-msgstr "Auteur:"
+#: ../../include/profile_selectors.php:6
+msgid "Mostly Female"
+msgstr "Meestal vrouwelijk"
 
-#: ../../mod/admin.php:1112 ../../mod/admin.php:1335
-msgid "Maintainer: "
-msgstr "Onderhoud:"
+#: ../../include/profile_selectors.php:6
+msgid "Transgender"
+msgstr "Transgender"
 
-#: ../../mod/admin.php:1254
-msgid "No themes found."
-msgstr "Geen thema's gevonden."
+#: ../../include/profile_selectors.php:6
+msgid "Intersex"
+msgstr "Interseksueel"
 
-#: ../../mod/admin.php:1316
-msgid "Screenshot"
-msgstr "Schermafdruk"
+#: ../../include/profile_selectors.php:6
+msgid "Transsexual"
+msgstr "Transseksueel"
 
-#: ../../mod/admin.php:1362
-msgid "[Experimental]"
-msgstr "[Experimenteel]"
+#: ../../include/profile_selectors.php:6
+msgid "Hermaphrodite"
+msgstr "Hermafrodiet"
 
-#: ../../mod/admin.php:1363
-msgid "[Unsupported]"
-msgstr "[Niet ondersteund]"
+#: ../../include/profile_selectors.php:6
+msgid "Neuter"
+msgstr "Genderneutraal"
 
-#: ../../mod/admin.php:1390
-msgid "Log settings updated."
-msgstr "Log instellingen gewijzigd"
+#: ../../include/profile_selectors.php:6
+msgid "Non-specific"
+msgstr "Niet-specifiek"
 
-#: ../../mod/admin.php:1446
-msgid "Clear"
-msgstr "Wis"
+#: ../../include/profile_selectors.php:6
+msgid "Other"
+msgstr "Anders"
 
-#: ../../mod/admin.php:1452
-msgid "Enable Debugging"
-msgstr ""
+#: ../../include/profile_selectors.php:6
+msgid "Undecided"
+msgstr "Onbeslist"
 
-#: ../../mod/admin.php:1453
-msgid "Log file"
-msgstr "Logbestand"
+#: ../../include/profile_selectors.php:23
+msgid "Males"
+msgstr "Manen"
 
-#: ../../mod/admin.php:1453
-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."
+#: ../../include/profile_selectors.php:23
+msgid "Females"
+msgstr "Vrouwen"
 
-#: ../../mod/admin.php:1454
-msgid "Log level"
-msgstr "Log niveau"
+#: ../../include/profile_selectors.php:23
+msgid "Gay"
+msgstr "Homo"
 
-#: ../../mod/admin.php:1504
-msgid "Close"
-msgstr "Afsluiten"
+#: ../../include/profile_selectors.php:23
+msgid "Lesbian"
+msgstr "Lesbie"
 
-#: ../../mod/admin.php:1510
-msgid "FTP Host"
-msgstr "FTP Server"
+#: ../../include/profile_selectors.php:23
+msgid "No Preference"
+msgstr "Geen voorkeur"
 
-#: ../../mod/admin.php:1511
-msgid "FTP Path"
-msgstr "FTP Pad"
+#: ../../include/profile_selectors.php:23
+msgid "Bisexual"
+msgstr "Biseksueel"
 
-#: ../../mod/admin.php:1512
-msgid "FTP User"
-msgstr "FTP Gebruiker"
+#: ../../include/profile_selectors.php:23
+msgid "Autosexual"
+msgstr "Autoseksueel"
 
-#: ../../mod/admin.php:1513
-msgid "FTP Password"
-msgstr "FTP wachtwoord"
-
-#: ../../mod/network.php:142
-msgid "Search Results For:"
-msgstr "Zoekresultaten voor:"
+#: ../../include/profile_selectors.php:23
+msgid "Abstinent"
+msgstr "Onthouder"
 
-#: ../../mod/network.php:185 ../../mod/search.php:21
-msgid "Remove term"
-msgstr "Verwijder zoekterm"
+#: ../../include/profile_selectors.php:23
+msgid "Virgin"
+msgstr "Maagd"
 
-#: ../../mod/network.php:194 ../../mod/search.php:30
-#: ../../include/features.php:42
-msgid "Saved Searches"
-msgstr "Opgeslagen zoekopdrachten"
+#: ../../include/profile_selectors.php:23
+msgid "Deviant"
+msgstr "Afwijkend"
 
-#: ../../mod/network.php:195 ../../include/group.php:275
-msgid "add"
-msgstr "toevoegen"
+#: ../../include/profile_selectors.php:23
+msgid "Fetish"
+msgstr "Fetisj"
 
-#: ../../mod/network.php:356
-msgid "Commented Order"
-msgstr "Nieuwe reacties bovenaan"
+#: ../../include/profile_selectors.php:23
+msgid "Oodles"
+msgstr "Veel"
 
-#: ../../mod/network.php:359
-msgid "Sort by Comment Date"
-msgstr "Berichten met nieuwe reacties bovenaan"
+#: ../../include/profile_selectors.php:23
+msgid "Nonsexual"
+msgstr "Niet seksueel"
 
-#: ../../mod/network.php:362
-msgid "Posted Order"
-msgstr "Nieuwe berichten bovenaan"
+#: ../../include/profile_selectors.php:42
+msgid "Single"
+msgstr "Alleenstaand"
 
-#: ../../mod/network.php:365
-msgid "Sort by Post Date"
-msgstr "Nieuwe berichten bovenaan"
+#: ../../include/profile_selectors.php:42
+msgid "Lonely"
+msgstr "Eenzaam"
 
-#: ../../mod/network.php:374
-msgid "Posts that mention or involve you"
-msgstr "Alleen berichten die jou vermelden of op jou betrekking hebben"
+#: ../../include/profile_selectors.php:42
+msgid "Available"
+msgstr "Beschikbaar"
 
-#: ../../mod/network.php:380
-msgid "New"
-msgstr "Nieuw"
+#: ../../include/profile_selectors.php:42
+msgid "Unavailable"
+msgstr "Onbeschikbaar"
 
-#: ../../mod/network.php:383
-msgid "Activity Stream - by date"
-msgstr "Activiteitenstroom - volgens datum"
+#: ../../include/profile_selectors.php:42
+msgid "Has crush"
+msgstr "Verliefd"
 
-#: ../../mod/network.php:389
-msgid "Shared Links"
-msgstr "Gedeelde links"
+#: ../../include/profile_selectors.php:42
+msgid "Infatuated"
+msgstr "Smoorverliefd"
 
-#: ../../mod/network.php:392
-msgid "Interesting Links"
-msgstr "Interessante links"
+#: ../../include/profile_selectors.php:42
+msgid "Dating"
+msgstr "Aan het daten"
 
-#: ../../mod/network.php:398
-msgid "Starred"
-msgstr "Met ster"
+#: ../../include/profile_selectors.php:42
+msgid "Unfaithful"
+msgstr "Ontrouw"
 
-#: ../../mod/network.php:401
-msgid "Favourite Posts"
-msgstr "Favoriete berichten"
+#: ../../include/profile_selectors.php:42
+msgid "Sex Addict"
+msgstr "Seksverslaafd"
 
-#: ../../mod/network.php:463
-#, 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] "Waarschuwing: Deze groep bevat %s lid van een onveilig netwerk."
-msgstr[1] "Waarschuwing: Deze groep bevat %s leden van een onveilig netwerk."
+#: ../../include/profile_selectors.php:42 ../../include/user.php:289
+#: ../../include/user.php:293
+msgid "Friends"
+msgstr "Vrienden"
 
-#: ../../mod/network.php:466
-msgid "Private messages to this group are at risk of public disclosure."
-msgstr "Privéberichten naar deze groep kunnen openbaar gemaakt worden."
+#: ../../include/profile_selectors.php:42
+msgid "Friends/Benefits"
+msgstr "Vriendschap plus"
 
-#: ../../mod/network.php:520 ../../mod/content.php:119
-msgid "No such group"
-msgstr "Zo'n groep bestaat niet"
+#: ../../include/profile_selectors.php:42
+msgid "Casual"
+msgstr "Ongebonden/vluchtig"
 
-#: ../../mod/network.php:537 ../../mod/content.php:130
-msgid "Group is empty"
-msgstr "De groep is leeg"
+#: ../../include/profile_selectors.php:42
+msgid "Engaged"
+msgstr "Verloofd"
 
-#: ../../mod/network.php:544 ../../mod/content.php:134
-msgid "Group: "
-msgstr "Groep:"
+#: ../../include/profile_selectors.php:42
+msgid "Married"
+msgstr "Getrouwd"
 
-#: ../../mod/network.php:554
-msgid "Contact: "
-msgstr "Contact: "
+#: ../../include/profile_selectors.php:42
+msgid "Imaginarily married"
+msgstr "Denkbeeldig getrouwd"
 
-#: ../../mod/network.php:556
-msgid "Private messages to this person are at risk of public disclosure."
-msgstr "Privéberichten naar deze persoon kunnen openbaar gemaakt worden."
+#: ../../include/profile_selectors.php:42
+msgid "Partners"
+msgstr "Partners"
 
-#: ../../mod/network.php:561
-msgid "Invalid contact."
-msgstr "Ongeldig contact."
+#: ../../include/profile_selectors.php:42
+msgid "Cohabiting"
+msgstr "Samenwonend"
 
-#: ../../mod/allfriends.php:34
-#, php-format
-msgid "Friends of %s"
-msgstr "Vrienden van %s"
+#: ../../include/profile_selectors.php:42
+msgid "Common law"
+msgstr "Common-law-huwelijk"
 
-#: ../../mod/allfriends.php:40
-msgid "No friends to display."
-msgstr "Geen vrienden om te laten zien."
+#: ../../include/profile_selectors.php:42
+msgid "Happy"
+msgstr "Blij"
 
-#: ../../mod/events.php:66
-msgid "Event title and start time are required."
-msgstr "Titel en begintijd van de gebeurtenis zijn vereist."
+#: ../../include/profile_selectors.php:42
+msgid "Not looking"
+msgstr ""
 
-#: ../../mod/events.php:291
-msgid "l, F j"
-msgstr "l j F"
+#: ../../include/profile_selectors.php:42
+msgid "Swinger"
+msgstr "Swinger"
 
-#: ../../mod/events.php:313
-msgid "Edit event"
-msgstr "Gebeurtenis bewerken"
+#: ../../include/profile_selectors.php:42
+msgid "Betrayed"
+msgstr "Bedrogen"
 
-#: ../../mod/events.php:335 ../../include/text.php:1647
-#: ../../include/text.php:1657
-msgid "link to source"
-msgstr "Verwijzing naar bron"
+#: ../../include/profile_selectors.php:42
+msgid "Separated"
+msgstr "Uit elkaar"
 
-#: ../../mod/events.php:370 ../../boot.php:2143 ../../include/nav.php:80
-#: ../../view/theme/diabook/theme.php:127
-msgid "Events"
-msgstr "Gebeurtenissen"
+#: ../../include/profile_selectors.php:42
+msgid "Unstable"
+msgstr "Onstabiel"
 
-#: ../../mod/events.php:371
-msgid "Create New Event"
-msgstr "Maak een nieuwe gebeurtenis"
+#: ../../include/profile_selectors.php:42
+msgid "Divorced"
+msgstr "Gescheiden"
 
-#: ../../mod/events.php:372
-msgid "Previous"
-msgstr "Vorige"
+#: ../../include/profile_selectors.php:42
+msgid "Imaginarily divorced"
+msgstr "Denkbeeldig gescheiden"
 
-#: ../../mod/events.php:373 ../../mod/install.php:207
-msgid "Next"
-msgstr "Volgende"
+#: ../../include/profile_selectors.php:42
+msgid "Widowed"
+msgstr "Weduwnaar/weduwe"
 
-#: ../../mod/events.php:446
-msgid "hour:minute"
-msgstr "uur:minuut"
+#: ../../include/profile_selectors.php:42
+msgid "Uncertain"
+msgstr "Onzeker"
 
-#: ../../mod/events.php:456
-msgid "Event details"
-msgstr "Gebeurtenis details"
+#: ../../include/profile_selectors.php:42
+msgid "It's complicated"
+msgstr "Het is gecompliceerd"
 
-#: ../../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."
+#: ../../include/profile_selectors.php:42
+msgid "Don't care"
+msgstr "Kan me niet schelen"
 
-#: ../../mod/events.php:459
-msgid "Event Starts:"
-msgstr "Gebeurtenis begint:"
+#: ../../include/profile_selectors.php:42
+msgid "Ask me"
+msgstr "Vraag me"
 
-#: ../../mod/events.php:459 ../../mod/events.php:473
-msgid "Required"
-msgstr "Vereist"
+#: ../../include/user.php:40
+msgid "An invitation is required."
+msgstr "Een uitnodiging is vereist."
 
-#: ../../mod/events.php:462
-msgid "Finish date/time is not known or not relevant"
-msgstr "Einddatum/tijd is niet gekend of niet relevant"
+#: ../../include/user.php:45
+msgid "Invitation could not be verified."
+msgstr "Uitnodiging kon niet geverifieerd worden."
 
-#: ../../mod/events.php:464
-msgid "Event Finishes:"
-msgstr "Gebeurtenis eindigt:"
+#: ../../include/user.php:53
+msgid "Invalid OpenID url"
+msgstr "Ongeldige OpenID url"
 
-#: ../../mod/events.php:467
-msgid "Adjust for viewer timezone"
-msgstr "Pas aan aan de tijdzone van de gebruiker"
+#: ../../include/user.php:74
+msgid "Please enter the required information."
+msgstr "Vul de vereiste informatie in."
 
-#: ../../mod/events.php:469
-msgid "Description:"
-msgstr "Beschrijving:"
+#: ../../include/user.php:88
+msgid "Please use a shorter name."
+msgstr "gebruik een kortere naam"
 
-#: ../../mod/events.php:471 ../../mod/directory.php:136 ../../boot.php:1648
-#: ../../include/bb2diaspora.php:170 ../../include/event.php:40
-msgid "Location:"
-msgstr "Plaats:"
+#: ../../include/user.php:90
+msgid "Name too short."
+msgstr "Naam te kort"
 
-#: ../../mod/events.php:473
-msgid "Title:"
-msgstr "Titel:"
+#: ../../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."
 
-#: ../../mod/events.php:475
-msgid "Share this event"
-msgstr "Deel deze gebeurtenis"
+#: ../../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."
 
-#: ../../mod/content.php:437 ../../mod/content.php:740
-#: ../../mod/photos.php:1653 ../../object/Item.php:129
-#: ../../include/conversation.php:613
-msgid "Select"
-msgstr "Kies"
+#: ../../include/user.php:113
+msgid "Not a valid email address."
+msgstr "Geen geldig e-mailadres."
 
-#: ../../mod/content.php:471 ../../mod/content.php:852
-#: ../../mod/content.php:853 ../../object/Item.php:326
-#: ../../object/Item.php:327 ../../include/conversation.php:654
-#, php-format
-msgid "View %s's profile @ %s"
-msgstr "Bekijk het profiel van %s @ %s"
+#: ../../include/user.php:126
+msgid "Cannot use that email."
+msgstr "Ik kan die e-mail niet gebruiken."
 
-#: ../../mod/content.php:481 ../../mod/content.php:864
-#: ../../object/Item.php:340 ../../include/conversation.php:674
+#: ../../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 "%s from %s"
-msgstr "%s van %s"
+msgid ""
+"\n"
+"\t\tDear %1$s,\n"
+"\t\t\tThank you for registering at %2$s. Your account has been created.\n"
+"\t"
+msgstr ""
 
-#: ../../mod/content.php:497 ../../include/conversation.php:690
-msgid "View in context"
-msgstr "In context bekijken"
+#: ../../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 ""
 
-#: ../../mod/content.php:603 ../../object/Item.php:387
+#: ../../include/user.php:413 ../../mod/admin.php:838
 #, php-format
-msgid "%d comment"
-msgid_plural "%d comments"
-msgstr[0] "%d reactie"
-msgstr[1] "%d reacties"
+msgid "Registration details for %s"
+msgstr "Registratie details voor %s"
 
-#: ../../mod/content.php:605 ../../object/Item.php:389
-#: ../../object/Item.php:402 ../../include/text.php:1972
-msgid "comment"
-msgid_plural "comments"
-msgstr[0] "reactie"
-msgstr[1] "reacties"
+#: ../../include/acl_selectors.php:333
+msgid "Visible to everybody"
+msgstr "Zichtbaar voor iedereen"
 
-#: ../../mod/content.php:606 ../../boot.php:751 ../../object/Item.php:390
-#: ../../include/contact_widgets.php:205
-msgid "show more"
-msgstr "toon meer"
+#: ../../object/Item.php:94
+msgid "This entry was edited"
+msgstr ""
 
-#: ../../mod/content.php:620 ../../mod/photos.php:1359
-#: ../../object/Item.php:116
+#: ../../object/Item.php:116 ../../mod/photos.php:1359
+#: ../../mod/content.php:620
 msgid "Private Message"
 msgstr "Privébericht"
 
-#: ../../mod/content.php:684 ../../mod/photos.php:1542
-#: ../../object/Item.php:231
+#: ../../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"
 
-#: ../../mod/content.php:684 ../../object/Item.php:231
+#: ../../object/Item.php:231 ../../mod/content.php:684
 msgid "like"
 msgstr "leuk"
 
-#: ../../mod/content.php:685 ../../mod/photos.php:1543
-#: ../../object/Item.php:232
+#: ../../object/Item.php:232 ../../mod/photos.php:1543
+#: ../../mod/content.php:685
 msgid "I don't like this (toggle)"
 msgstr "Vind ik niet leuk"
 
-#: ../../mod/content.php:685 ../../object/Item.php:232
+#: ../../object/Item.php:232 ../../mod/content.php:685
 msgid "dislike"
 msgstr "niet leuk"
 
-#: ../../mod/content.php:687 ../../object/Item.php:234
+#: ../../object/Item.php:234 ../../mod/content.php:687
 msgid "Share this"
 msgstr "Delen"
 
-#: ../../mod/content.php:687 ../../object/Item.php:234
+#: ../../object/Item.php:234 ../../mod/content.php:687
 msgid "share"
 msgstr "Delen"
 
-#: ../../mod/content.php:707 ../../mod/photos.php:1562
+#: ../../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
+#, 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
-#: ../../object/Item.php:675
+#: ../../mod/content.php:707
 msgid "This is you"
 msgstr "Dit ben jij"
 
-#: ../../mod/content.php:709 ../../mod/photos.php:1564
-#: ../../mod/photos.php:1608 ../../mod/photos.php:1696 ../../boot.php:750
-#: ../../object/Item.php:361 ../../object/Item.php:677
-msgid "Comment"
-msgstr "Reacties"
-
-#: ../../mod/content.php:711 ../../object/Item.php:679
+#: ../../object/Item.php:679 ../../mod/content.php:711
 msgid "Bold"
 msgstr "Vet"
 
-#: ../../mod/content.php:712 ../../object/Item.php:680
+#: ../../object/Item.php:680 ../../mod/content.php:712
 msgid "Italic"
 msgstr "Cursief"
 
-#: ../../mod/content.php:713 ../../object/Item.php:681
+#: ../../object/Item.php:681 ../../mod/content.php:713
 msgid "Underline"
 msgstr "Onderstrepen"
 
-#: ../../mod/content.php:714 ../../object/Item.php:682
+#: ../../object/Item.php:682 ../../mod/content.php:714
 msgid "Quote"
 msgstr "Citeren"
 
-#: ../../mod/content.php:715 ../../object/Item.php:683
+#: ../../object/Item.php:683 ../../mod/content.php:715
 msgid "Code"
 msgstr "Broncode"
 
-#: ../../mod/content.php:716 ../../object/Item.php:684
+#: ../../object/Item.php:684 ../../mod/content.php:716
 msgid "Image"
 msgstr "Afbeelding"
 
-#: ../../mod/content.php:717 ../../object/Item.php:685
+#: ../../object/Item.php:685 ../../mod/content.php:717
 msgid "Link"
 msgstr "Link"
 
-#: ../../mod/content.php:718 ../../object/Item.php:686
+#: ../../object/Item.php:686 ../../mod/content.php:718
 msgid "Video"
 msgstr "Video"
 
-#: ../../mod/content.php:719 ../../mod/editpost.php:145
-#: ../../mod/photos.php:1566 ../../mod/photos.php:1610
-#: ../../mod/photos.php:1698 ../../object/Item.php:687
-#: ../../include/conversation.php:1126
-msgid "Preview"
-msgstr "Voorvertoning"
-
-#: ../../mod/content.php:728 ../../mod/settings.php:676
-#: ../../object/Item.php:120
-msgid "Edit"
-msgstr "Bewerken"
-
-#: ../../mod/content.php:753 ../../object/Item.php:195
-msgid "add star"
-msgstr "ster toevoegen"
+#: ../../mod/attach.php:8
+msgid "Item not available."
+msgstr "Item niet beschikbaar"
 
-#: ../../mod/content.php:754 ../../object/Item.php:196
-msgid "remove star"
-msgstr "ster verwijderen"
+#: ../../mod/attach.php:20
+msgid "Item was not found."
+msgstr "Item niet gevonden"
 
-#: ../../mod/content.php:755 ../../object/Item.php:197
-msgid "toggle star status"
-msgstr "ster toevoegen of verwijderen"
+#: ../../mod/wallmessage.php:42 ../../mod/wallmessage.php:112
+#, php-format
+msgid "Number of daily wall messages for %s exceeded. Message failed."
+msgstr ""
 
-#: ../../mod/content.php:758 ../../object/Item.php:200
-msgid "starred"
-msgstr "met ster"
+#: ../../mod/wallmessage.php:56 ../../mod/message.php:63
+msgid "No recipient selected."
+msgstr "Geen ontvanger geselecteerd."
 
-#: ../../mod/content.php:759 ../../object/Item.php:220
-msgid "add tag"
-msgstr "label toevoegen"
+#: ../../mod/wallmessage.php:59
+msgid "Unable to check your home location."
+msgstr "Niet in staat om je tijdlijn-locatie vast te stellen"
 
-#: ../../mod/content.php:763 ../../object/Item.php:133
-msgid "save to folder"
-msgstr "Bewaren in map"
+#: ../../mod/wallmessage.php:62 ../../mod/message.php:70
+msgid "Message could not be sent."
+msgstr "Bericht kon niet verzonden worden."
 
-#: ../../mod/content.php:854 ../../object/Item.php:328
-msgid "to"
-msgstr "aan"
+#: ../../mod/wallmessage.php:65 ../../mod/message.php:73
+msgid "Message collection failure."
+msgstr "Fout bij het verzamelen van berichten."
 
-#: ../../mod/content.php:855 ../../object/Item.php:330
-msgid "Wall-to-Wall"
-msgstr "wall-to-wall"
+#: ../../mod/wallmessage.php:68 ../../mod/message.php:76
+msgid "Message sent."
+msgstr "Bericht verzonden."
 
-#: ../../mod/content.php:856 ../../object/Item.php:331
-msgid "via Wall-To-Wall:"
-msgstr "via wall-to-wall"
+#: ../../mod/wallmessage.php:86 ../../mod/wallmessage.php:95
+msgid "No recipient."
+msgstr "Geen ontvanger."
 
-#: ../../mod/removeme.php:46 ../../mod/removeme.php:49
-msgid "Remove My Account"
-msgstr "Verwijder mijn account"
+#: ../../mod/wallmessage.php:142 ../../mod/message.php:319
+msgid "Send Private Message"
+msgstr "Verstuur privébericht"
 
-#: ../../mod/removeme.php:47
+#: ../../mod/wallmessage.php:143
+#, php-format
 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."
+"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/removeme.php:48
-msgid "Please enter your password for verification:"
-msgstr "Voer je wachtwoord in voor verificatie:"
+#: ../../mod/wallmessage.php:144 ../../mod/message.php:320
+#: ../../mod/message.php:553
+msgid "To:"
+msgstr "Aan:"
 
-#: ../../mod/install.php:117
-msgid "Friendica Communications Server - Setup"
-msgstr ""
+#: ../../mod/wallmessage.php:145 ../../mod/message.php:325
+#: ../../mod/message.php:555
+msgid "Subject:"
+msgstr "Onderwerp:"
 
-#: ../../mod/install.php:123
-msgid "Could not connect to database."
-msgstr "Kon geen toegang krijgen tot de database."
+#: ../../mod/wallmessage.php:151 ../../mod/invite.php:134
+#: ../../mod/message.php:329 ../../mod/message.php:558
+msgid "Your message:"
+msgstr "Jouw bericht:"
 
-#: ../../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/group.php:29
+msgid "Group created."
+msgstr "Groep aangemaakt."
 
-#: ../../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/group.php:35
+msgid "Could not create group."
+msgstr "Kon de groep niet aanmaken."
 
-#: ../../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/group.php:47 ../../mod/group.php:140
+msgid "Group not found."
+msgstr "Groep niet gevonden."
 
-#: ../../mod/install.php:203
-msgid "System check"
-msgstr "Systeemcontrole"
+#: ../../mod/group.php:60
+msgid "Group name changed."
+msgstr "Groepsnaam gewijzigd."
 
-#: ../../mod/install.php:208
-msgid "Check again"
-msgstr "Controleer opnieuw"
+#: ../../mod/group.php:87
+msgid "Save Group"
+msgstr ""
 
-#: ../../mod/install.php:227
-msgid "Database connection"
-msgstr "Verbinding met database"
+#: ../../mod/group.php:93
+msgid "Create a group of contacts/friends."
+msgstr "Maak een groep contacten/vrienden aan."
 
-#: ../../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/group.php:94 ../../mod/group.php:180
+msgid "Group Name: "
+msgstr "Groepsnaam:"
 
-#: ../../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/group.php:113
+msgid "Group removed."
+msgstr "Groep verwijderd."
 
-#: ../../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/group.php:115
+msgid "Unable to remove group."
+msgstr "Niet in staat om groep te verwijderen."
 
-#: ../../mod/install.php:234
-msgid "Database Server Name"
-msgstr "Servernaam database"
+#: ../../mod/group.php:179
+msgid "Group Editor"
+msgstr "Groepsbewerker"
 
-#: ../../mod/install.php:235
-msgid "Database Login Name"
-msgstr "Gebruikersnaam database"
+#: ../../mod/group.php:192
+msgid "Members"
+msgstr "Leden"
 
-#: ../../mod/install.php:236
-msgid "Database Login Password"
-msgstr "Wachtwoord database"
+#: ../../mod/group.php:194 ../../mod/contacts.php:586
+msgid "All Contacts"
+msgstr "Alle Contacten"
 
-#: ../../mod/install.php:237
-msgid "Database Name"
-msgstr "Naam database"
+#: ../../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/install.php:238 ../../mod/install.php:277
-msgid "Site administrator email address"
-msgstr "E-mailadres van de websitebeheerder"
+#: ../../mod/delegate.php:101
+msgid "No potential page delegates located."
+msgstr "Niemand gevonden waar het paginabeheer mogelijk aan uitbesteed kan worden."
 
-#: ../../mod/install.php:238 ../../mod/install.php:277
+#: ../../mod/delegate.php:132
 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."
+"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/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/delegate.php:133
+msgid "Existing Page Managers"
+msgstr "Bestaande paginabeheerders"
 
-#: ../../mod/install.php:267
-msgid "Site settings"
-msgstr "Website-instellingen"
+#: ../../mod/delegate.php:135
+msgid "Existing Page Delegates"
+msgstr "Bestaande personen waaraan het paginabeheer is uitbesteed"
 
-#: ../../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/delegate.php:137
+msgid "Potential Delegates"
+msgstr "Mogelijke personen waaraan het paginabeheer kan worden uitbesteed "
 
-#: ../../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 <a "
-"href='http://friendica.com/node/27'>'Activating scheduled tasks'</a>"
-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  <a href='http://friendica.com/node/27'>'Activeren van geplande taken'</a>"
+#: ../../mod/delegate.php:139 ../../mod/tagrm.php:93
+msgid "Remove"
+msgstr "Verwijderen"
 
-#: ../../mod/install.php:326
-msgid "PHP executable path"
-msgstr "PATH van het PHP commando"
+#: ../../mod/delegate.php:140
+msgid "Add"
+msgstr "Toevoegen"
 
-#: ../../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/delegate.php:141
+msgid "No entries."
+msgstr "Geen gegevens."
 
-#: ../../mod/install.php:331
-msgid "Command line PHP"
-msgstr "PHP-opdrachtregel"
+#: ../../mod/notifications.php:26
+msgid "Invalid request identifier."
+msgstr "Ongeldige <em>request identifier</em>."
 
-#: ../../mod/install.php:340
-msgid "PHP executable is not the php cli binary (could be cgi-fgci version)"
-msgstr ""
+#: ../../mod/notifications.php:35 ../../mod/notifications.php:165
+#: ../../mod/notifications.php:215
+msgid "Discard"
+msgstr "Verwerpen"
 
-#: ../../mod/install.php:341
-msgid "Found PHP version: "
-msgstr "Gevonden PHP versie:"
+#: ../../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/install.php:343
-msgid "PHP cli binary"
-msgstr ""
+#: ../../mod/notifications.php:78
+msgid "System"
+msgstr "Systeem"
 
-#: ../../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/notifications.php:88 ../../mod/network.php:371
+msgid "Personal"
+msgstr "Persoonlijk"
 
-#: ../../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/notifications.php:122
+msgid "Show Ignored Requests"
+msgstr "Toon genegeerde verzoeken"
 
-#: ../../mod/install.php:357
-msgid "PHP register_argc_argv"
-msgstr "PHP register_argc_argv"
+#: ../../mod/notifications.php:122
+msgid "Hide Ignored Requests"
+msgstr "Verberg genegeerde verzoeken"
 
-#: ../../mod/install.php:378
-msgid ""
-"Error: the \"openssl_pkey_new\" function on this system is not able to "
-"generate encryption keys"
-msgstr ""
+#: ../../mod/notifications.php:149 ../../mod/notifications.php:199
+msgid "Notification type: "
+msgstr "Notificatiesoort:"
 
-#: ../../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/notifications.php:150
+msgid "Friend Suggestion"
+msgstr "Vriendschapsvoorstel"
 
-#: ../../mod/install.php:381
-msgid "Generate encryption keys"
-msgstr ""
+#: ../../mod/notifications.php:152
+#, php-format
+msgid "suggested by %s"
+msgstr "Voorgesteld door %s"
 
-#: ../../mod/install.php:388
-msgid "libCurl PHP module"
-msgstr "libCurl PHP module"
+#: ../../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/install.php:389
-msgid "GD graphics PHP module"
-msgstr "GD graphics PHP module"
+#: ../../mod/notifications.php:158 ../../mod/notifications.php:209
+msgid "Post a new friend activity"
+msgstr "Bericht over een nieuwe vriend"
 
-#: ../../mod/install.php:390
-msgid "OpenSSL PHP module"
-msgstr "OpenSSL PHP module"
+#: ../../mod/notifications.php:158 ../../mod/notifications.php:209
+msgid "if applicable"
+msgstr "Indien toepasbaar"
 
-#: ../../mod/install.php:391
-msgid "mysqli PHP module"
-msgstr "mysqli PHP module"
+#: ../../mod/notifications.php:161 ../../mod/notifications.php:212
+#: ../../mod/admin.php:1005
+msgid "Approve"
+msgstr "Goedkeuren"
 
-#: ../../mod/install.php:392
-msgid "mb_string PHP module"
-msgstr "mb_string PHP module"
+#: ../../mod/notifications.php:181
+msgid "Claims to be known to you: "
+msgstr "Denkt dat u hem of haar kent:"
 
-#: ../../mod/install.php:397 ../../mod/install.php:399
-msgid "Apache mod_rewrite module"
-msgstr "Apache mod_rewrite module"
+#: ../../mod/notifications.php:181
+msgid "yes"
+msgstr "Ja"
 
-#: ../../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/notifications.php:181
+msgid "no"
+msgstr "Nee"
 
-#: ../../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/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/install.php:409
+#: ../../mod/notifications.php:185
 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."
+"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/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/notifications.php:193
+msgid "Friend"
+msgstr "Vriend"
 
-#: ../../mod/install.php:472
-msgid ""
-"Url rewrite in .htaccess is not working. Check your server configuration."
-msgstr ""
+#: ../../mod/notifications.php:194
+msgid "Sharer"
+msgstr "Deler"
 
-#: ../../mod/install.php:474
-msgid "Url rewrite is working"
-msgstr ""
+#: ../../mod/notifications.php:194
+msgid "Fan/Admirer"
+msgstr "Fan/Bewonderaar"
 
-#: ../../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/notifications.php:200
+msgid "Friend/Connect Request"
+msgstr "Vriendschapsverzoek"
 
-#: ../../mod/install.php:523
-msgid "<h1>What next</h1>"
-msgstr "<h1>Wat nu</h1>"
+#: ../../mod/notifications.php:200
+msgid "New Follower"
+msgstr "Nieuwe Volger"
 
-#: ../../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/notifications.php:221
+msgid "No introductions."
+msgstr "Geen vriendschaps- of connectieverzoeken."
 
-#: ../../mod/wallmessage.php:42 ../../mod/wallmessage.php:112
+#: ../../mod/notifications.php:262 ../../mod/notifications.php:391
+#: ../../mod/notifications.php:482
 #, 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 "Niet in staat om je tijdlijn-locatie vast te stellen"
-
-#: ../../mod/wallmessage.php:86 ../../mod/wallmessage.php:95
-msgid "No recipient."
-msgstr "Geen ontvanger."
+msgid "%s liked %s's post"
+msgstr "%s vond het bericht van %s leuk"
 
-#: ../../mod/wallmessage.php:143
+#: ../../mod/notifications.php:272 ../../mod/notifications.php:401
+#: ../../mod/notifications.php:492
 #, 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/help.php:79
-msgid "Help:"
-msgstr "Help:"
-
-#: ../../mod/help.php:84 ../../include/nav.php:114
-msgid "Help"
-msgstr "Help"
-
-#: ../../mod/help.php:90 ../../index.php:256
-msgid "Not Found"
-msgstr "Niet gevonden"
-
-#: ../../mod/help.php:93 ../../index.php:259
-msgid "Page not found."
-msgstr "Pagina niet gevonden"
+msgid "%s disliked %s's post"
+msgstr "%s vond het bericht van %s niet leuk"
 
-#: ../../mod/dfrn_poll.php:103 ../../mod/dfrn_poll.php:536
+#: ../../mod/notifications.php:287 ../../mod/notifications.php:416
+#: ../../mod/notifications.php:507
 #, php-format
-msgid "%1$s welcomes %2$s"
-msgstr "%1$s heet %2$s van harte welkom"
+msgid "%s is now friends with %s"
+msgstr "%s is nu bevriend met %s"
 
-#: ../../mod/home.php:35
+#: ../../mod/notifications.php:294 ../../mod/notifications.php:423
 #, php-format
-msgid "Welcome to %s"
-msgstr "Welkom op %s"
-
-#: ../../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 ""
+msgid "%s created a new post"
+msgstr "%s schreef een nieuw bericht"
 
-#: ../../mod/wall_attach.php:81
+#: ../../mod/notifications.php:295 ../../mod/notifications.php:424
+#: ../../mod/notifications.php:517
 #, php-format
-msgid "File exceeds size limit of %d"
-msgstr "Bestand is groter dan de toegelaten %d"
+msgid "%s commented on %s's post"
+msgstr "%s gaf een reactie op het bericht van %s"
 
-#: ../../mod/wall_attach.php:122 ../../mod/wall_attach.php:133
-msgid "File upload failed."
-msgstr "Uploaden van bestand mislukt."
+#: ../../mod/notifications.php:310
+msgid "No more network notifications."
+msgstr "Geen netwerknotificaties meer"
 
-#: ../../mod/match.php:12
-msgid "Profile Match"
-msgstr "Profielmatch"
+#: ../../mod/notifications.php:314
+msgid "Network Notifications"
+msgstr "Netwerknotificaties"
 
-#: ../../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/notifications.php:340 ../../mod/notify.php:75
+msgid "No more system notifications."
+msgstr "Geen systeemnotificaties meer."
 
-#: ../../mod/match.php:57
-msgid "is interested in:"
-msgstr "Is geïnteresseerd in:"
+#: ../../mod/notifications.php:344 ../../mod/notify.php:79
+msgid "System Notifications"
+msgstr "Systeemnotificaties"
 
-#: ../../mod/match.php:58 ../../mod/suggest.php:90 ../../boot.php:1568
-#: ../../include/contact_widgets.php:10
-msgid "Connect"
-msgstr "Verbinden"
+#: ../../mod/notifications.php:439
+msgid "No more personal notifications."
+msgstr "Geen persoonlijke notificaties meer"
 
-#: ../../mod/share.php:44
-msgid "link"
-msgstr "link"
+#: ../../mod/notifications.php:443
+msgid "Personal Notifications"
+msgstr "Persoonlijke notificaties"
 
-#: ../../mod/community.php:23
-msgid "Not available."
-msgstr "Niet beschikbaar"
+#: ../../mod/notifications.php:524
+msgid "No more home notifications."
+msgstr "Geen tijdlijn-notificaties meer"
 
-#: ../../mod/community.php:32 ../../include/nav.php:129
-#: ../../include/nav.php:131 ../../view/theme/diabook/theme.php:129
-msgid "Community"
-msgstr "Website"
+#: ../../mod/notifications.php:528
+msgid "Home Notifications"
+msgstr "Tijdlijn-notificaties"
 
-#: ../../mod/community.php:62 ../../mod/community.php:71
-#: ../../mod/search.php:168 ../../mod/search.php:192
-msgid "No results."
-msgstr "Geen resultaten."
+#: ../../mod/hcard.php:10
+msgid "No profile"
+msgstr "Geen profiel"
 
-#: ../../mod/settings.php:29 ../../mod/photos.php:80
+#: ../../mod/settings.php:34 ../../mod/photos.php:80
 msgid "everybody"
 msgstr "iedereen"
 
-#: ../../mod/settings.php:41
+#: ../../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:46
+#: ../../mod/settings.php:51
 msgid "Display"
 msgstr "Weergave"
 
-#: ../../mod/settings.php:52 ../../mod/settings.php:780
+#: ../../mod/settings.php:57 ../../mod/settings.php:785
 msgid "Social Networks"
 msgstr "Sociale netwerken"
 
-#: ../../mod/settings.php:62 ../../include/nav.php:170
-msgid "Delegations"
-msgstr ""
+#: ../../mod/settings.php:62 ../../mod/admin.php:106 ../../mod/admin.php:1102
+#: ../../mod/admin.php:1155
+msgid "Plugins"
+msgstr "Plugins"
 
-#: ../../mod/settings.php:67
+#: ../../mod/settings.php:72
 msgid "Connected apps"
 msgstr "Verbonden applicaties"
 
-#: ../../mod/settings.php:72 ../../mod/uexport.php:85
+#: ../../mod/settings.php:77 ../../mod/uexport.php:85
 msgid "Export personal data"
 msgstr "Persoonlijke gegevens exporteren"
 
-#: ../../mod/settings.php:77
+#: ../../mod/settings.php:82
 msgid "Remove account"
 msgstr "Account verwijderen"
 
-#: ../../mod/settings.php:129
+#: ../../mod/settings.php:134
 msgid "Missing some important data!"
 msgstr "Een belangrijk gegeven ontbreekt!"
 
-#: ../../mod/settings.php:238
+#: ../../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:243
+#: ../../mod/settings.php:248
 msgid "Email settings updated."
 msgstr "E-mail instellingen bijgewerkt.."
 
-#: ../../mod/settings.php:258
+#: ../../mod/settings.php:263
 msgid "Features updated"
 msgstr "Functies bijgewerkt"
 
-#: ../../mod/settings.php:321
+#: ../../mod/settings.php:326
 msgid "Relocate message has been send to your contacts"
 msgstr ""
 
-#: ../../mod/settings.php:335
+#: ../../mod/settings.php:340
 msgid "Passwords do not match. Password unchanged."
 msgstr "Wachtwoorden komen niet overeen. Wachtwoord niet gewijzigd."
 
-#: ../../mod/settings.php:340
+#: ../../mod/settings.php:345
 msgid "Empty passwords are not allowed. Password unchanged."
 msgstr "Lege wachtwoorden zijn niet toegelaten. Wachtwoord niet gewijzigd."
 
-#: ../../mod/settings.php:348
+#: ../../mod/settings.php:353
 msgid "Wrong password."
 msgstr "Verkeerd wachtwoord."
 
-#: ../../mod/settings.php:359
+#: ../../mod/settings.php:364
 msgid "Password changed."
 msgstr "Wachtwoord gewijzigd."
 
-#: ../../mod/settings.php:361
+#: ../../mod/settings.php:366
 msgid "Password update failed. Please try again."
 msgstr "Wachtwoord-)wijziging mislukt. Probeer opnieuw."
 
-#: ../../mod/settings.php:428
+#: ../../mod/settings.php:433
 msgid " Please use a shorter name."
 msgstr "Gebruik een kortere naam."
 
-#: ../../mod/settings.php:430
+#: ../../mod/settings.php:435
 msgid " Name too short."
 msgstr "Naam te kort."
 
-#: ../../mod/settings.php:439
+#: ../../mod/settings.php:444
 msgid "Wrong Password"
 msgstr "Verkeerd wachtwoord"
 
-#: ../../mod/settings.php:444
+#: ../../mod/settings.php:449
 msgid " Not valid email."
 msgstr "Geen geldig e-mailadres."
 
-#: ../../mod/settings.php:450
+#: ../../mod/settings.php:455
 msgid " Cannot change to that email."
 msgstr "Kan niet veranderen naar die e-mail."
 
-#: ../../mod/settings.php:506
+#: ../../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:510
+#: ../../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:540
+#: ../../mod/settings.php:545
 msgid "Settings updated."
 msgstr "Instellingen bijgewerkt."
 
-#: ../../mod/settings.php:613 ../../mod/settings.php:639
-#: ../../mod/settings.php:675
+#: ../../mod/settings.php:618 ../../mod/settings.php:644
+#: ../../mod/settings.php:680
 msgid "Add application"
 msgstr "Toepassing toevoegen"
 
-#: ../../mod/settings.php:617 ../../mod/settings.php:643
+#: ../../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:618 ../../mod/settings.php:644
+#: ../../mod/settings.php:623 ../../mod/settings.php:649
 msgid "Consumer Secret"
 msgstr "Gebruikersgeheim"
 
-#: ../../mod/settings.php:619 ../../mod/settings.php:645
+#: ../../mod/settings.php:624 ../../mod/settings.php:650
 msgid "Redirect"
 msgstr "Doorverwijzing"
 
-#: ../../mod/settings.php:620 ../../mod/settings.php:646
+#: ../../mod/settings.php:625 ../../mod/settings.php:651
 msgid "Icon url"
 msgstr "URL pictogram"
 
-#: ../../mod/settings.php:631
+#: ../../mod/settings.php:636
 msgid "You can't edit this application."
 msgstr "Je kunt deze toepassing niet wijzigen."
 
-#: ../../mod/settings.php:674
+#: ../../mod/settings.php:679
 msgid "Connected Apps"
 msgstr "Verbonden applicaties"
 
-#: ../../mod/settings.php:678
+#: ../../mod/settings.php:683
 msgid "Client key starts with"
 msgstr ""
 
-#: ../../mod/settings.php:679
+#: ../../mod/settings.php:684
 msgid "No name"
 msgstr "Geen naam"
 
-#: ../../mod/settings.php:680
+#: ../../mod/settings.php:685
 msgid "Remove authorization"
 msgstr "Verwijder authorisatie"
 
-#: ../../mod/settings.php:692
+#: ../../mod/settings.php:697
 msgid "No Plugin settings configured"
 msgstr ""
 
-#: ../../mod/settings.php:700
+#: ../../mod/settings.php:705
 msgid "Plugin Settings"
 msgstr "Plugin Instellingen"
 
-#: ../../mod/settings.php:714
+#: ../../mod/settings.php:719
 msgid "Off"
 msgstr "Uit"
 
-#: ../../mod/settings.php:714
+#: ../../mod/settings.php:719
 msgid "On"
 msgstr "Aan"
 
-#: ../../mod/settings.php:722
+#: ../../mod/settings.php:727
 msgid "Additional Features"
 msgstr "Extra functies"
 
-#: ../../mod/settings.php:736 ../../mod/settings.php:737
+#: ../../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:736 ../../mod/dfrn_request.php:838
-#: ../../include/contact_selectors.php:80
-msgid "Diaspora"
-msgstr "Diaspora"
-
-#: ../../mod/settings.php:736 ../../mod/settings.php:737
+#: ../../mod/settings.php:741 ../../mod/settings.php:742
 msgid "enabled"
 msgstr "ingeschakeld"
 
-#: ../../mod/settings.php:736 ../../mod/settings.php:737
+#: ../../mod/settings.php:741 ../../mod/settings.php:742
 msgid "disabled"
 msgstr "uitgeschakeld"
 
-#: ../../mod/settings.php:737
+#: ../../mod/settings.php:742
 msgid "StatusNet"
 msgstr "StatusNet"
 
-#: ../../mod/settings.php:773
+#: ../../mod/settings.php:778
 msgid "Email access is disabled on this site."
 msgstr "E-mailtoegang is op deze website uitgeschakeld."
 
-#: ../../mod/settings.php:785
+#: ../../mod/settings.php:790
 msgid "Email/Mailbox Setup"
 msgstr "E-mail Instellen"
 
-#: ../../mod/settings.php:786
+#: ../../mod/settings.php:791
 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:787
+#: ../../mod/settings.php:792
 msgid "Last successful email check:"
 msgstr "Laatste succesvolle e-mail controle:"
 
-#: ../../mod/settings.php:789
+#: ../../mod/settings.php:794
 msgid "IMAP server name:"
 msgstr "IMAP server naam:"
 
-#: ../../mod/settings.php:790
+#: ../../mod/settings.php:795
 msgid "IMAP port:"
 msgstr "IMAP poort:"
 
-#: ../../mod/settings.php:791
+#: ../../mod/settings.php:796
 msgid "Security:"
 msgstr "Beveiliging:"
 
-#: ../../mod/settings.php:791 ../../mod/settings.php:796
+#: ../../mod/settings.php:796 ../../mod/settings.php:801
 msgid "None"
 msgstr "Geen"
 
-#: ../../mod/settings.php:792
+#: ../../mod/settings.php:797
 msgid "Email login name:"
 msgstr "E-mail login naam:"
 
-#: ../../mod/settings.php:793
+#: ../../mod/settings.php:798
 msgid "Email password:"
 msgstr "E-mail wachtwoord:"
 
-#: ../../mod/settings.php:794
+#: ../../mod/settings.php:799
 msgid "Reply-to address:"
 msgstr "Antwoord adres:"
 
-#: ../../mod/settings.php:795
+#: ../../mod/settings.php:800
 msgid "Send public posts to all email contacts:"
 msgstr "Openbare posts naar alle e-mail contacten versturen:"
 
-#: ../../mod/settings.php:796
+#: ../../mod/settings.php:801
 msgid "Action after import:"
 msgstr "Actie na importeren:"
 
-#: ../../mod/settings.php:796
+#: ../../mod/settings.php:801
 msgid "Mark as seen"
 msgstr "Als 'gelezen' markeren"
 
-#: ../../mod/settings.php:796
+#: ../../mod/settings.php:801
 msgid "Move to folder"
 msgstr "Naar map verplaatsen"
 
-#: ../../mod/settings.php:797
+#: ../../mod/settings.php:802
 msgid "Move to folder:"
 msgstr "Verplaatsen naar map:"
 
-#: ../../mod/settings.php:878
+#: ../../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:884 ../../mod/settings.php:899
+#: ../../mod/settings.php:889 ../../mod/settings.php:904
 msgid "Display Theme:"
 msgstr "Schermthema:"
 
-#: ../../mod/settings.php:885
+#: ../../mod/settings.php:890
 msgid "Mobile Theme:"
 msgstr "Mobiel thema:"
 
-#: ../../mod/settings.php:886
+#: ../../mod/settings.php:891
 msgid "Update browser every xx seconds"
 msgstr "Browser elke xx seconden verversen"
 
-#: ../../mod/settings.php:886
+#: ../../mod/settings.php:891
 msgid "Minimum of 10 seconds, no maximum"
 msgstr "Minimum 10 seconden, geen maximum"
 
-#: ../../mod/settings.php:887
+#: ../../mod/settings.php:892
 msgid "Number of items to display per page:"
 msgstr "Aantal items te tonen per pagina:"
 
-#: ../../mod/settings.php:887 ../../mod/settings.php:888
+#: ../../mod/settings.php:892 ../../mod/settings.php:893
 msgid "Maximum of 100 items"
 msgstr "Maximum 100 items"
 
-#: ../../mod/settings.php:888
+#: ../../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:889
+#: ../../mod/settings.php:894
 msgid "Don't show emoticons"
 msgstr "Emoticons niet tonen"
 
-#: ../../mod/settings.php:890
+#: ../../mod/settings.php:895
 msgid "Don't show notices"
 msgstr ""
 
-#: ../../mod/settings.php:891
+#: ../../mod/settings.php:896
 msgid "Infinite scroll"
 msgstr "Oneindig scrollen"
 
-#: ../../mod/settings.php:892
+#: ../../mod/settings.php:897
 msgid "Automatic updates only at the top of the network page"
 msgstr ""
 
-#: ../../mod/settings.php:969
+#: ../../mod/settings.php:974
 msgid "User Types"
 msgstr "Gebruikerstypes"
 
-#: ../../mod/settings.php:970
+#: ../../mod/settings.php:975
 msgid "Community Types"
 msgstr "Forum/groepstypes"
 
-#: ../../mod/settings.php:971
+#: ../../mod/settings.php:976
 msgid "Normal Account Page"
 msgstr "Normale accountpagina"
 
-#: ../../mod/settings.php:972
+#: ../../mod/settings.php:977
 msgid "This account is a normal personal profile"
 msgstr "Deze account is een normaal persoonlijk profiel"
 
-#: ../../mod/settings.php:975
+#: ../../mod/settings.php:980
 msgid "Soapbox Page"
 msgstr "Zeepkist-pagina"
 
-#: ../../mod/settings.php:976
+#: ../../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:979
+#: ../../mod/settings.php:984
 msgid "Community Forum/Celebrity Account"
 msgstr "Forum/groeps- of beroemdheid-account"
 
-#: ../../mod/settings.php:980
+#: ../../mod/settings.php:985
 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:983
+#: ../../mod/settings.php:988
 msgid "Automatic Friend Page"
 msgstr "Automatisch Vriendschapspagina"
 
-#: ../../mod/settings.php:984
+#: ../../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:987
+#: ../../mod/settings.php:992
 msgid "Private Forum [Experimental]"
 msgstr "Privé-forum [experimenteel]"
 
-#: ../../mod/settings.php:988
+#: ../../mod/settings.php:993
 msgid "Private forum - approved members only"
 msgstr "Privé-forum - enkel voor goedgekeurde leden"
 
-#: ../../mod/settings.php:1000
+#: ../../mod/settings.php:1005
 msgid "OpenID:"
 msgstr "OpenID:"
 
-#: ../../mod/settings.php:1000
+#: ../../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:1010
+#: ../../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:1010 ../../mod/settings.php:1016
-#: ../../mod/settings.php:1024 ../../mod/settings.php:1028
-#: ../../mod/settings.php:1033 ../../mod/settings.php:1039
-#: ../../mod/settings.php:1045 ../../mod/settings.php:1051
-#: ../../mod/settings.php:1081 ../../mod/settings.php:1082
-#: ../../mod/settings.php:1083 ../../mod/settings.php:1084
-#: ../../mod/settings.php:1085 ../../mod/dfrn_request.php:830
-#: ../../mod/register.php:234 ../../mod/profiles.php:661
-#: ../../mod/profiles.php:665 ../../mod/api.php:106
+#: ../../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:1016
+#: ../../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:1024
+#: ../../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:1028 ../../include/conversation.php:1057
-msgid "Hide your profile details from unknown viewers?"
-msgstr "Je profieldetails verbergen voor onbekende bezoekers?"
-
-#: ../../mod/settings.php:1028
+#: ../../mod/settings.php:1033
 msgid ""
 "If enabled, posting public messages to Diaspora and other networks isn't "
 "possible."
 msgstr ""
 
-#: ../../mod/settings.php:1033
+#: ../../mod/settings.php:1038
 msgid "Allow friends to post to your profile page?"
 msgstr "Vrienden toestaan om op jou profielpagina te posten?"
 
-#: ../../mod/settings.php:1039
+#: ../../mod/settings.php:1044
 msgid "Allow friends to tag your posts?"
 msgstr "Sta vrienden toe om jouw berichten te labelen?"
 
-#: ../../mod/settings.php:1045
+#: ../../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:1051
+#: ../../mod/settings.php:1056
 msgid "Permit unknown people to send you private mail?"
 msgstr "Mogen onbekende personen jou privé berichten sturen?"
 
-#: ../../mod/settings.php:1059
+#: ../../mod/settings.php:1064
 msgid "Profile is <strong>not published</strong>."
 msgstr "Profiel is <strong>niet gepubliceerd</strong>."
 
-#: ../../mod/settings.php:1067
+#: ../../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:1078
+#: ../../mod/settings.php:1083
 msgid "Automatically expire posts after this many days:"
 msgstr "Laat berichten automatisch vervallen na zo veel dagen:"
 
-#: ../../mod/settings.php:1078
+#: ../../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:1079
+#: ../../mod/settings.php:1084
 msgid "Advanced expiration settings"
 msgstr "Geavanceerde instellingen voor vervallen"
 
-#: ../../mod/settings.php:1080
+#: ../../mod/settings.php:1085
 msgid "Advanced Expiration"
 msgstr "Geavanceerd Verval:"
 
-#: ../../mod/settings.php:1081
+#: ../../mod/settings.php:1086
 msgid "Expire posts:"
 msgstr "Laat berichten vervallen:"
 
-#: ../../mod/settings.php:1082
+#: ../../mod/settings.php:1087
 msgid "Expire personal notes:"
 msgstr "Laat persoonlijke aantekeningen verlopen:"
 
-#: ../../mod/settings.php:1083
+#: ../../mod/settings.php:1088
 msgid "Expire starred posts:"
 msgstr "Laat berichten met ster verlopen"
 
-#: ../../mod/settings.php:1084
+#: ../../mod/settings.php:1089
 msgid "Expire photos:"
 msgstr "Laat foto's vervallen:"
 
-#: ../../mod/settings.php:1085
+#: ../../mod/settings.php:1090
 msgid "Only expire posts by others:"
 msgstr "Laat alleen berichten door anderen vervallen:"
 
-#: ../../mod/settings.php:1111
+#: ../../mod/settings.php:1116
 msgid "Account Settings"
 msgstr "Account Instellingen"
 
-#: ../../mod/settings.php:1119
+#: ../../mod/settings.php:1124
 msgid "Password Settings"
 msgstr "Wachtwoord Instellingen"
 
-#: ../../mod/settings.php:1120
+#: ../../mod/settings.php:1125
 msgid "New Password:"
 msgstr "Nieuw Wachtwoord:"
 
-#: ../../mod/settings.php:1121
+#: ../../mod/settings.php:1126
 msgid "Confirm:"
 msgstr "Bevestig:"
 
-#: ../../mod/settings.php:1121
+#: ../../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:1122
+#: ../../mod/settings.php:1127
 msgid "Current Password:"
 msgstr "Huidig wachtwoord:"
 
-#: ../../mod/settings.php:1122 ../../mod/settings.php:1123
+#: ../../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:1123
+#: ../../mod/settings.php:1128
 msgid "Password:"
 msgstr "Wachtwoord:"
 
-#: ../../mod/settings.php:1127
+#: ../../mod/settings.php:1132
 msgid "Basic Settings"
 msgstr "Basis Instellingen"
 
-#: ../../mod/settings.php:1128 ../../include/profile_advanced.php:15
-msgid "Full Name:"
-msgstr "Volledige Naam:"
-
-#: ../../mod/settings.php:1129
+#: ../../mod/settings.php:1134
 msgid "Email Address:"
 msgstr "E-mailadres:"
 
-#: ../../mod/settings.php:1130
+#: ../../mod/settings.php:1135
 msgid "Your Timezone:"
 msgstr "Je Tijdzone:"
 
-#: ../../mod/settings.php:1131
+#: ../../mod/settings.php:1136
 msgid "Default Post Location:"
 msgstr "Standaard locatie:"
 
-#: ../../mod/settings.php:1132
+#: ../../mod/settings.php:1137
 msgid "Use Browser Location:"
 msgstr "Gebruik Webbrowser Locatie:"
 
-#: ../../mod/settings.php:1135
+#: ../../mod/settings.php:1140
 msgid "Security and Privacy Settings"
 msgstr "Instellingen voor Beveiliging en Privacy"
 
-#: ../../mod/settings.php:1137
+#: ../../mod/settings.php:1142
 msgid "Maximum Friend Requests/Day:"
 msgstr "Maximum aantal vriendschapsverzoeken per dag:"
 
-#: ../../mod/settings.php:1137 ../../mod/settings.php:1167
+#: ../../mod/settings.php:1142 ../../mod/settings.php:1172
 msgid "(to prevent spam abuse)"
 msgstr "(om spam misbruik te voorkomen)"
 
-#: ../../mod/settings.php:1138
+#: ../../mod/settings.php:1143
 msgid "Default Post Permissions"
 msgstr "Standaard rechten voor nieuwe berichten"
 
-#: ../../mod/settings.php:1139
+#: ../../mod/settings.php:1144
 msgid "(click to open/close)"
 msgstr "(klik om te openen/sluiten)"
 
-#: ../../mod/settings.php:1148 ../../mod/photos.php:1146
+#: ../../mod/settings.php:1153 ../../mod/photos.php:1146
 #: ../../mod/photos.php:1519
 msgid "Show to Groups"
 msgstr "Tonen aan groepen"
 
-#: ../../mod/settings.php:1149 ../../mod/photos.php:1147
+#: ../../mod/settings.php:1154 ../../mod/photos.php:1147
 #: ../../mod/photos.php:1520
 msgid "Show to Contacts"
 msgstr "Tonen aan contacten"
 
-#: ../../mod/settings.php:1150
+#: ../../mod/settings.php:1155
 msgid "Default Private Post"
 msgstr "Standaard Privé Post"
 
-#: ../../mod/settings.php:1151
+#: ../../mod/settings.php:1156
 msgid "Default Public Post"
 msgstr "Standaard Publieke Post"
 
-#: ../../mod/settings.php:1155
+#: ../../mod/settings.php:1160
 msgid "Default Permissions for New Posts"
 msgstr "Standaard rechten voor nieuwe berichten"
 
-#: ../../mod/settings.php:1167
+#: ../../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:1170
+#: ../../mod/settings.php:1175
 msgid "Notification Settings"
 msgstr "Notificatie Instellingen"
 
-#: ../../mod/settings.php:1171
+#: ../../mod/settings.php:1176
 msgid "By default post a status message when:"
 msgstr "Post automatisch een bericht op je tijdlijn wanneer:"
 
-#: ../../mod/settings.php:1172
+#: ../../mod/settings.php:1177
 msgid "accepting a friend request"
 msgstr "Een vriendschapsverzoek accepteren"
 
-#: ../../mod/settings.php:1173
+#: ../../mod/settings.php:1178
 msgid "joining a forum/community"
 msgstr "Lid worden van een groep/forum"
 
-#: ../../mod/settings.php:1174
+#: ../../mod/settings.php:1179
 msgid "making an <em>interesting</em> profile change"
 msgstr "Een <em>interessante</em> verandering aan je profiel"
 
-#: ../../mod/settings.php:1175
+#: ../../mod/settings.php:1180
 msgid "Send a notification email when:"
 msgstr "Stuur een notificatie e-mail wanneer:"
 
-#: ../../mod/settings.php:1176
+#: ../../mod/settings.php:1181
 msgid "You receive an introduction"
 msgstr "Je ontvangt een vriendschaps- of connectieverzoek"
 
-#: ../../mod/settings.php:1177
+#: ../../mod/settings.php:1182
 msgid "Your introductions are confirmed"
 msgstr "Jouw vriendschaps- of connectieverzoeken zijn bevestigd"
 
-#: ../../mod/settings.php:1178
+#: ../../mod/settings.php:1183
 msgid "Someone writes on your profile wall"
 msgstr "Iemand iets op je tijdlijn schrijft"
 
-#: ../../mod/settings.php:1179
+#: ../../mod/settings.php:1184
 msgid "Someone writes a followup comment"
 msgstr "Iemand een reactie schrijft"
 
-#: ../../mod/settings.php:1180
+#: ../../mod/settings.php:1185
 msgid "You receive a private message"
 msgstr "Je een privé-bericht ontvangt"
 
-#: ../../mod/settings.php:1181
+#: ../../mod/settings.php:1186
 msgid "You receive a friend suggestion"
 msgstr "Je een suggestie voor een vriendschap ontvangt"
 
-#: ../../mod/settings.php:1182
+#: ../../mod/settings.php:1187
 msgid "You are tagged in a post"
 msgstr "Je expliciet in een bericht bent genoemd"
 
-#: ../../mod/settings.php:1183
+#: ../../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:1185
+#: ../../mod/settings.php:1190
 msgid "Text-only notification emails"
 msgstr ""
 
-#: ../../mod/settings.php:1187
+#: ../../mod/settings.php:1192
 msgid "Send text only notification emails, without the html part"
 msgstr ""
 
-#: ../../mod/settings.php:1189
+#: ../../mod/settings.php:1194
 msgid "Advanced Account/Page Type Settings"
 msgstr ""
 
-#: ../../mod/settings.php:1190
+#: ../../mod/settings.php:1195
 msgid "Change the behaviour of this account for special situations"
 msgstr ""
 
-#: ../../mod/settings.php:1193
+#: ../../mod/settings.php:1198
 msgid "Relocate"
 msgstr ""
 
-#: ../../mod/settings.php:1194
+#: ../../mod/settings.php:1199
 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:1195
+#: ../../mod/settings.php:1200
 msgid "Resend relocate message to contacts"
 msgstr ""
 
-#: ../../mod/dfrn_request.php:95
-msgid "This introduction has already been accepted."
-msgstr "Verzoek is al goedgekeurd"
+#: ../../mod/common.php:42
+msgid "Common Friends"
+msgstr "Gedeelde Vrienden"
 
-#: ../../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/common.php:78
+msgid "No contacts in common."
+msgstr "Geen gedeelde contacten."
 
-#: ../../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/lockview.php:31 ../../mod/lockview.php:39
+msgid "Remote privacy information not available."
+msgstr "Privacyinformatie op afstand niet beschikbaar."
 
-#: ../../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/lockview.php:48
+msgid "Visible to:"
+msgstr "Zichtbaar voor:"
 
-#: ../../mod/dfrn_request.php:130 ../../mod/dfrn_request.php:528
+#: ../../mod/contacts.php:112
 #, 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 "%d contact edited."
+msgid_plural "%d contacts edited"
+msgstr[0] ""
+msgstr[1] ""
 
-#: ../../mod/dfrn_request.php:172
-msgid "Introduction complete."
-msgstr "Verzoek voltooid."
+#: ../../mod/contacts.php:143 ../../mod/contacts.php:276
+msgid "Could not access contact record."
+msgstr "Kon geen toegang krijgen tot de contactgegevens"
 
-#: ../../mod/dfrn_request.php:214
-msgid "Unrecoverable protocol error."
-msgstr "Onherstelbare protocolfout. "
+#: ../../mod/contacts.php:157
+msgid "Could not locate selected profile."
+msgstr "Kon het geselecteerde profiel niet vinden."
 
-#: ../../mod/dfrn_request.php:242
-msgid "Profile unavailable."
-msgstr "Profiel onbeschikbaar"
+#: ../../mod/contacts.php:190
+msgid "Contact updated."
+msgstr "Contact bijgewerkt."
 
-#: ../../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/contacts.php:192 ../../mod/dfrn_request.php:576
+msgid "Failed to update contact record."
+msgstr "Ik kon de contactgegevens niet aanpassen."
 
-#: ../../mod/dfrn_request.php:268
-msgid "Spam protection measures have been invoked."
-msgstr "Beveiligingsmaatregelen tegen spam zijn in werking getreden."
+#: ../../mod/contacts.php:291
+msgid "Contact has been blocked"
+msgstr "Contact is geblokkeerd"
 
-#: ../../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/contacts.php:291
+msgid "Contact has been unblocked"
+msgstr "Contact is gedeblokkeerd"
 
-#: ../../mod/dfrn_request.php:331
-msgid "Invalid locator"
-msgstr "Ongeldige plaatsbepaler"
+#: ../../mod/contacts.php:302
+msgid "Contact has been ignored"
+msgstr "Contact wordt genegeerd"
 
-#: ../../mod/dfrn_request.php:340
-msgid "Invalid email address."
-msgstr "Geen geldig e-mailadres"
+#: ../../mod/contacts.php:302
+msgid "Contact has been unignored"
+msgstr "Contact wordt niet meer genegeerd"
 
-#: ../../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/contacts.php:314
+msgid "Contact has been archived"
+msgstr "Contact is gearchiveerd"
 
-#: ../../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/contacts.php:314
+msgid "Contact has been unarchived"
+msgstr "Contact is niet meer gearchiveerd"
 
-#: ../../mod/dfrn_request.php:476
-msgid "You have already introduced yourself here."
-msgstr "Je hebt jezelf hier al voorgesteld."
+#: ../../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/dfrn_request.php:480
+#: ../../mod/contacts.php:356
+msgid "Contact has been removed."
+msgstr "Contact is verwijderd."
+
+#: ../../mod/contacts.php:394
 #, php-format
-msgid "Apparently you are already friends with %s."
-msgstr "Blijkbaar bent u al bevriend met %s."
+msgid "You are mutual friends with %s"
+msgstr "Je bent wederzijds bevriend met %s"
 
-#: ../../mod/dfrn_request.php:501
-msgid "Invalid profile URL."
-msgstr "Ongeldig profiel adres."
+#: ../../mod/contacts.php:398
+#, php-format
+msgid "You are sharing with %s"
+msgstr "Je deelt met %s"
 
-#: ../../mod/dfrn_request.php:507 ../../include/follow.php:27
-msgid "Disallowed profile URL."
-msgstr "Niet toegelaten profiel adres."
+#: ../../mod/contacts.php:403
+#, php-format
+msgid "%s is sharing with you"
+msgstr "%s deelt met jou"
 
-#: ../../mod/dfrn_request.php:597
-msgid "Your introduction has been sent."
-msgstr "Je verzoek is verzonden."
+#: ../../mod/contacts.php:423
+msgid "Private communications are not available for this contact."
+msgstr "Privécommunicatie met dit contact is niet beschikbaar."
 
-#: ../../mod/dfrn_request.php:650
-msgid "Please login to confirm introduction."
-msgstr "Log in om je verzoek te bevestigen."
+#: ../../mod/contacts.php:426 ../../mod/admin.php:569
+msgid "Never"
+msgstr "Nooit"
 
-#: ../../mod/dfrn_request.php:660
-msgid ""
-"Incorrect identity currently logged in. Please login to "
-"<strong>this</strong> profile."
-msgstr "Je huidige identiteit is niet de juiste. Log met <strong>dit</strong> profiel in."
+#: ../../mod/contacts.php:430
+msgid "(Update was successful)"
+msgstr "(Wijziging is geslaagd)"
 
-#: ../../mod/dfrn_request.php:671
-msgid "Hide this contact"
-msgstr "Verberg dit contact"
+#: ../../mod/contacts.php:430
+msgid "(Update was not successful)"
+msgstr "(Wijziging is niet geslaagd)"
 
-#: ../../mod/dfrn_request.php:674
-#, php-format
-msgid "Welcome home %s."
-msgstr "Welkom terug %s."
+#: ../../mod/contacts.php:432
+msgid "Suggest friends"
+msgstr "Stel vrienden voor"
 
-#: ../../mod/dfrn_request.php:675
+#: ../../mod/contacts.php:436
 #, php-format
-msgid "Please confirm your introduction/connection request to %s."
-msgstr "Bevestig je vriendschaps-/connectieverzoek voor %s."
+msgid "Network type: %s"
+msgstr "Netwerk type: %s"
 
-#: ../../mod/dfrn_request.php:676
-msgid "Confirm"
-msgstr "Bevestig"
+#: ../../mod/contacts.php:444
+msgid "View all contacts"
+msgstr "Alle contacten zien"
 
-#: ../../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/contacts.php:449 ../../mod/contacts.php:518
+#: ../../mod/contacts.php:730 ../../mod/admin.php:1009
+msgid "Unblock"
+msgstr "Blokkering opheffen"
 
-#: ../../mod/dfrn_request.php:824
-msgid ""
-"If you are not yet a member of the free social web, <a "
-"href=\"http://dir.friendica.com/siteinfo\">follow this link to find a public"
-" Friendica site and join us today</a>."
-msgstr "Als je nog geen lid bent van het vrije sociale web,  <a href=\"http://dir.friendica.com/siteinfo\">volg dan deze link om een openbare Friendica-website te vinden, en sluit je vandaag nog aan</a>."
+#: ../../mod/contacts.php:449 ../../mod/contacts.php:518
+#: ../../mod/contacts.php:730 ../../mod/admin.php:1008
+msgid "Block"
+msgstr "Blokkeren"
 
-#: ../../mod/dfrn_request.php:827
-msgid "Friend/Connection Request"
-msgstr "Vriendschaps-/connectieverzoek"
+#: ../../mod/contacts.php:452
+msgid "Toggle Blocked status"
+msgstr "Schakel geblokkeerde status"
 
-#: ../../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/contacts.php:455 ../../mod/contacts.php:519
+#: ../../mod/contacts.php:731
+msgid "Unignore"
+msgstr "Negeer niet meer"
 
-#: ../../mod/dfrn_request.php:829
-msgid "Please answer the following:"
-msgstr "Beantwoord het volgende:"
+#: ../../mod/contacts.php:458
+msgid "Toggle Ignored status"
+msgstr "Schakel negeerstatus"
 
-#: ../../mod/dfrn_request.php:830
+#: ../../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 "Does %s know you?"
-msgstr "Kent %s jou?"
+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/dfrn_request.php:834
-msgid "Add a personal note:"
-msgstr "Voeg een persoonlijke opmerking toe:"
+#: ../../mod/contacts.php:495
+msgid "Contact Information / Notes"
+msgstr "Contactinformatie / aantekeningen"
 
-#: ../../mod/dfrn_request.php:836 ../../include/contact_selectors.php:76
-msgid "Friendica"
-msgstr "Friendica"
+#: ../../mod/contacts.php:496
+msgid "Edit contact notes"
+msgstr "Wijzig aantekeningen over dit contact"
 
-#: ../../mod/dfrn_request.php:837
-msgid "StatusNet/Federated Social Web"
-msgstr "StatusNet/Gefedereerde Sociale Web"
+#: ../../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/dfrn_request.php:839
+#: ../../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 <strong>may</strong> still be visible"
+msgstr "Antwoorden of 'vind ik leuk's op je openbare posts <strong>kunnen</strong> 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
+msgid "[Embedded content - reload page to view]"
+msgstr "[Ingebedde inhoud - herlaad pagina om het te bekijken]"
+
+#: ../../mod/uexport.php:77
+msgid "Export account"
+msgstr "Account exporteren"
+
+#: ../../mod/uexport.php:77
 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."
+"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/dfrn_request.php:840
-msgid "Your Identity Address:"
-msgstr "Adres van uw identiteit:"
+#: ../../mod/uexport.php:78
+msgid "Export all"
+msgstr "Alles exporteren"
 
-#: ../../mod/dfrn_request.php:843
-msgid "Submit Request"
-msgstr "Aanvraag indienen"
+#: ../../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 ""
@@ -4493,6 +4596,10 @@ msgstr "Lidmaatschap van deze website is uitsluitend op uitnodiging."
 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):"
@@ -4512,10 +4619,6 @@ msgstr "Kies een bijnaam voor je profiel. Deze moet met een letter beginnen. Je
 msgid "Choose a nickname: "
 msgstr "Kies een bijnaam:"
 
-#: ../../mod/register.php:269 ../../boot.php:1241 ../../include/nav.php:109
-msgid "Register"
-msgstr "Registreer"
-
 #: ../../mod/register.php:275 ../../mod/uimport.php:64
 msgid "Import"
 msgstr "Importeren"
@@ -4524,3353 +4627,3303 @@ msgstr "Importeren"
 msgid "Import your profile to this friendica instance"
 msgstr ""
 
+#: ../../mod/oexchange.php:25
+msgid "Post successful."
+msgstr "Bericht succesvol geplaatst."
+
 #: ../../mod/maintenance.php:5
 msgid "System down for maintenance"
 msgstr "Systeem onbeschikbaar wegens onderhoud"
 
-#: ../../mod/search.php:99 ../../include/text.php:953
-#: ../../include/text.php:954 ../../include/nav.php:119
-msgid "Search"
-msgstr "Zoeken"
+#: ../../mod/profile.php:155 ../../mod/display.php:332
+msgid "Access to this profile has been restricted."
+msgstr "Toegang tot dit profiel is beperkt."
 
-#: ../../mod/directory.php:51 ../../view/theme/diabook/theme.php:525
-msgid "Global Directory"
-msgstr "Globale gids"
+#: ../../mod/profile.php:180
+msgid "Tips for New Members"
+msgstr "Tips voor nieuwe leden"
 
-#: ../../mod/directory.php:59
-msgid "Find on this site"
-msgstr "Op deze website zoeken"
+#: ../../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/directory.php:62
-msgid "Site Directory"
-msgstr "Websitegids"
+#: ../../mod/videos.php:125
+msgid "No videos selected"
+msgstr "Geen video's geselecteerd"
 
-#: ../../mod/directory.php:113 ../../mod/profiles.php:750
-msgid "Age: "
-msgstr "Leeftijd:"
+#: ../../mod/videos.php:226 ../../mod/photos.php:1031
+msgid "Access to this item is restricted."
+msgstr "Toegang tot dit item is beperkt."
 
-#: ../../mod/directory.php:116
-msgid "Gender: "
-msgstr "Geslacht:"
+#: ../../mod/videos.php:308 ../../mod/photos.php:1808
+msgid "View Album"
+msgstr "Album bekijken"
 
-#: ../../mod/directory.php:138 ../../boot.php:1650
-#: ../../include/profile_advanced.php:17
-msgid "Gender:"
-msgstr "Geslacht:"
+#: ../../mod/videos.php:317
+msgid "Recent Videos"
+msgstr "Recente video's"
 
-#: ../../mod/directory.php:140 ../../boot.php:1653
-#: ../../include/profile_advanced.php:37
-msgid "Status:"
-msgstr "Tijdlijn:"
+#: ../../mod/videos.php:319
+msgid "Upload New Videos"
+msgstr "Nieuwe video's uploaden"
 
-#: ../../mod/directory.php:142 ../../boot.php:1655
-#: ../../include/profile_advanced.php:48
-msgid "Homepage:"
-msgstr "Website:"
+#: ../../mod/manage.php:106
+msgid "Manage Identities and/or Pages"
+msgstr "Beheer Identiteiten en/of Pagina's"
 
-#: ../../mod/directory.php:144 ../../boot.php:1657
-#: ../../include/profile_advanced.php:58
-msgid "About:"
-msgstr "Over:"
+#: ../../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/directory.php:189
-msgid "No entries (some entries may be hidden)."
-msgstr "Geen gegevens (sommige gegevens kunnen verborgen zijn)."
+#: ../../mod/manage.php:108
+msgid "Select an identity to manage: "
+msgstr "Selecteer een identiteit om te beheren:"
 
-#: ../../mod/delegate.php:101
-msgid "No potential page delegates located."
-msgstr "Niemand gevonden waar het paginabeheer mogelijk aan uitbesteed kan worden."
+#: ../../mod/editpost.php:17 ../../mod/editpost.php:27
+msgid "Item not found"
+msgstr "Item niet gevonden"
 
-#: ../../mod/delegate.php:130 ../../include/nav.php:170
-msgid "Delegate Page Management"
-msgstr "Paginabeheer uitbesteden"
+#: ../../mod/editpost.php:39
+msgid "Edit post"
+msgstr "Bericht bewerken"
 
-#: ../../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/dirfind.php:26
+msgid "People Search"
+msgstr "Mensen Zoeken"
 
-#: ../../mod/delegate.php:133
-msgid "Existing Page Managers"
-msgstr "Bestaande paginabeheerders"
+#: ../../mod/dirfind.php:60 ../../mod/match.php:65
+msgid "No matches"
+msgstr "Geen resultaten"
 
-#: ../../mod/delegate.php:135
-msgid "Existing Page Delegates"
-msgstr "Bestaande personen waaraan het paginabeheer is uitbesteed"
+#: ../../mod/regmod.php:55
+msgid "Account approved."
+msgstr "Account goedgekeurd."
 
-#: ../../mod/delegate.php:137
-msgid "Potential Delegates"
-msgstr "Mogelijke personen waaraan het paginabeheer kan worden uitbesteed "
+#: ../../mod/regmod.php:92
+#, php-format
+msgid "Registration revoked for %s"
+msgstr "Registratie ingetrokken voor %s"
 
-#: ../../mod/delegate.php:140
-msgid "Add"
-msgstr "Toevoegen"
+#: ../../mod/regmod.php:104
+msgid "Please login."
+msgstr "Inloggen."
 
-#: ../../mod/delegate.php:141
-msgid "No entries."
-msgstr "Geen gegevens."
+#: ../../mod/dfrn_request.php:95
+msgid "This introduction has already been accepted."
+msgstr "Verzoek is al goedgekeurd"
 
-#: ../../mod/common.php:42
-msgid "Common Friends"
-msgstr "Gedeelde Vrienden"
+#: ../../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/common.php:78
-msgid "No contacts in common."
-msgstr "Geen gedeelde contacten."
+#: ../../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/uexport.php:77
-msgid "Export account"
-msgstr "Account exporteren"
+#: ../../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/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/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/uexport.php:78
-msgid "Export all"
-msgstr "Alles exporteren"
+#: ../../mod/dfrn_request.php:172
+msgid "Introduction complete."
+msgstr "Verzoek voltooid."
 
-#: ../../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/dfrn_request.php:214
+msgid "Unrecoverable protocol error."
+msgstr "Onherstelbare protocolfout. "
 
-#: ../../mod/mood.php:62 ../../include/conversation.php:227
+#: ../../mod/dfrn_request.php:242
+msgid "Profile unavailable."
+msgstr "Profiel onbeschikbaar"
+
+#: ../../mod/dfrn_request.php:267
 #, php-format
-msgid "%1$s is currently %2$s"
-msgstr "%1$s is op dit moment %2$s"
+msgid "%s has received too many connection requests today."
+msgstr "%s heeft te veel verzoeken gehad vandaag."
 
-#: ../../mod/mood.php:133
-msgid "Mood"
-msgstr "Stemming"
+#: ../../mod/dfrn_request.php:268
+msgid "Spam protection measures have been invoked."
+msgstr "Beveiligingsmaatregelen tegen spam zijn in werking getreden."
 
-#: ../../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/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/suggest.php:27
-msgid "Do you really want to delete this suggestion?"
-msgstr "Wil je echt dit voorstel verwijderen?"
+#: ../../mod/dfrn_request.php:331
+msgid "Invalid locator"
+msgstr "Ongeldige plaatsbepaler"
 
-#: ../../mod/suggest.php:68 ../../include/contact_widgets.php:35
-#: ../../view/theme/diabook/theme.php:527
-msgid "Friend Suggestions"
-msgstr "Vriendschapsvoorstellen"
+#: ../../mod/dfrn_request.php:340
+msgid "Invalid email address."
+msgstr "Geen geldig e-mailadres"
 
-#: ../../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/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/suggest.php:92
-msgid "Ignore/Hide"
-msgstr "Negeren/Verbergen"
+#: ../../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/profiles.php:37
-msgid "Profile deleted."
-msgstr "Profiel verwijderd"
+#: ../../mod/dfrn_request.php:476
+msgid "You have already introduced yourself here."
+msgstr "Je hebt jezelf hier al voorgesteld."
 
-#: ../../mod/profiles.php:55 ../../mod/profiles.php:89
-msgid "Profile-"
-msgstr "Profiel-"
+#: ../../mod/dfrn_request.php:480
+#, php-format
+msgid "Apparently you are already friends with %s."
+msgstr "Blijkbaar bent u al bevriend met %s."
 
-#: ../../mod/profiles.php:74 ../../mod/profiles.php:117
-msgid "New profile created."
-msgstr "Nieuw profiel aangemaakt."
+#: ../../mod/dfrn_request.php:501
+msgid "Invalid profile URL."
+msgstr "Ongeldig profiel adres."
 
-#: ../../mod/profiles.php:95
-msgid "Profile unavailable to clone."
-msgstr "Profiel niet beschikbaar om te klonen."
+#: ../../mod/dfrn_request.php:597
+msgid "Your introduction has been sent."
+msgstr "Je verzoek is verzonden."
 
-#: ../../mod/profiles.php:189
-msgid "Profile Name is required."
-msgstr "Profielnaam is vereist."
+#: ../../mod/dfrn_request.php:650
+msgid "Please login to confirm introduction."
+msgstr "Log in om je verzoek te bevestigen."
 
-#: ../../mod/profiles.php:340
-msgid "Marital Status"
-msgstr "Echtelijke staat"
+#: ../../mod/dfrn_request.php:660
+msgid ""
+"Incorrect identity currently logged in. Please login to "
+"<strong>this</strong> profile."
+msgstr "Je huidige identiteit is niet de juiste. Log met <strong>dit</strong> profiel in."
 
-#: ../../mod/profiles.php:344
-msgid "Romantic Partner"
-msgstr "Romantische Partner"
+#: ../../mod/dfrn_request.php:671
+msgid "Hide this contact"
+msgstr "Verberg dit contact"
 
-#: ../../mod/profiles.php:348
-msgid "Likes"
-msgstr "Houdt van"
+#: ../../mod/dfrn_request.php:674
+#, php-format
+msgid "Welcome home %s."
+msgstr "Welkom terug %s."
 
-#: ../../mod/profiles.php:352
-msgid "Dislikes"
-msgstr "Houdt niet van"
+#: ../../mod/dfrn_request.php:675
+#, php-format
+msgid "Please confirm your introduction/connection request to %s."
+msgstr "Bevestig je vriendschaps-/connectieverzoek voor %s."
 
-#: ../../mod/profiles.php:356
-msgid "Work/Employment"
-msgstr "Werk"
+#: ../../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/profiles.php:359
-msgid "Religion"
-msgstr "Godsdienst"
+#: ../../mod/dfrn_request.php:824
+msgid ""
+"If you are not yet a member of the free social web, <a "
+"href=\"http://dir.friendica.com/siteinfo\">follow this link to find a public"
+" Friendica site and join us today</a>."
+msgstr "Als je nog geen lid bent van het vrije sociale web,  <a href=\"http://dir.friendica.com/siteinfo\">volg dan deze link om een openbare Friendica-website te vinden, en sluit je vandaag nog aan</a>."
 
-#: ../../mod/profiles.php:363
-msgid "Political Views"
-msgstr "Politieke standpunten"
+#: ../../mod/dfrn_request.php:827
+msgid "Friend/Connection Request"
+msgstr "Vriendschaps-/connectieverzoek"
 
-#: ../../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/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/profiles.php:390 ../../mod/profiles.php:694
-msgid "Location"
-msgstr "Plaats"
+#: ../../mod/dfrn_request.php:829
+msgid "Please answer the following:"
+msgstr "Beantwoord het volgende:"
 
-#: ../../mod/profiles.php:473
-msgid "Profile updated."
-msgstr "Profiel bijgewerkt."
+#: ../../mod/dfrn_request.php:830
+#, php-format
+msgid "Does %s know you?"
+msgstr "Kent %s jou?"
 
-#: ../../mod/profiles.php:568
-msgid " and "
-msgstr "en"
+#: ../../mod/dfrn_request.php:834
+msgid "Add a personal note:"
+msgstr "Voeg een persoonlijke opmerking toe:"
 
-#: ../../mod/profiles.php:576
-msgid "public profile"
-msgstr "publiek profiel"
+#: ../../mod/dfrn_request.php:837
+msgid "StatusNet/Federated Social Web"
+msgstr "StatusNet/Gefedereerde Sociale Web"
 
-#: ../../mod/profiles.php:579
+#: ../../mod/dfrn_request.php:839
 #, php-format
-msgid "%1$s changed %2$s to &ldquo;%3$s&rdquo;"
-msgstr "%1$s veranderde %2$s naar &ldquo;%3$s&rdquo;"
+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/profiles.php:580
-#, php-format
-msgid " - Visit %1$s's %2$s"
-msgstr " - Bezoek %2$s van %1$s"
+#: ../../mod/dfrn_request.php:840
+msgid "Your Identity Address:"
+msgstr "Adres van uw identiteit:"
 
-#: ../../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/dfrn_request.php:843
+msgid "Submit Request"
+msgstr "Aanvraag indienen"
 
-#: ../../mod/profiles.php:658
-msgid "Hide contacts and friends:"
+#: ../../mod/fbrowser.php:113
+msgid "Files"
+msgstr "Bestanden"
+
+#: ../../mod/api.php:76 ../../mod/api.php:102
+msgid "Authorize application connection"
 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/api.php:77
+msgid "Return to your app and insert this Securty Code:"
+msgstr ""
 
-#: ../../mod/profiles.php:685
-msgid "Edit Profile Details"
-msgstr "Profieldetails bewerken"
+#: ../../mod/api.php:89
+msgid "Please login to continue."
+msgstr "Log in om verder te gaan."
 
-#: ../../mod/profiles.php:687
-msgid "Change Profile Photo"
-msgstr "Profielfoto wijzigen"
+#: ../../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/profiles.php:688
-msgid "View this profile"
-msgstr "Dit profiel bekijken"
+#: ../../mod/suggest.php:27
+msgid "Do you really want to delete this suggestion?"
+msgstr "Wil je echt dit voorstel verwijderen?"
 
-#: ../../mod/profiles.php:689
-msgid "Create a new profile using these settings"
-msgstr "Nieuw profiel aanmaken met deze instellingen"
+#: ../../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/profiles.php:690
-msgid "Clone this profile"
-msgstr "Dit profiel klonen"
+#: ../../mod/suggest.php:92
+msgid "Ignore/Hide"
+msgstr "Negeren/Verbergen"
 
-#: ../../mod/profiles.php:691
-msgid "Delete this profile"
-msgstr "Dit profiel verwijderen"
+#: ../../mod/nogroup.php:59
+msgid "Contacts who are not members of a group"
+msgstr "Contacten die geen leden zijn van een groep"
 
-#: ../../mod/profiles.php:692
-msgid "Basic information"
-msgstr ""
+#: ../../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/profiles.php:693
-msgid "Profile picture"
-msgstr ""
+#: ../../mod/fsuggest.php:63
+msgid "Friend suggestion sent."
+msgstr "Vriendschapsvoorstel verzonden."
 
-#: ../../mod/profiles.php:695
-msgid "Preferences"
-msgstr ""
+#: ../../mod/fsuggest.php:97
+msgid "Suggest Friends"
+msgstr "Stel vrienden voor"
 
-#: ../../mod/profiles.php:696
-msgid "Status information"
-msgstr ""
+#: ../../mod/fsuggest.php:99
+#, php-format
+msgid "Suggest a friend for %s"
+msgstr "Stel een vriend voor aan %s"
 
-#: ../../mod/profiles.php:697
-msgid "Additional information"
-msgstr ""
+#: ../../mod/share.php:44
+msgid "link"
+msgstr "link"
 
-#: ../../mod/profiles.php:700
-msgid "Profile Name:"
-msgstr "Profiel Naam:"
+#: ../../mod/viewcontacts.php:41
+msgid "No contacts."
+msgstr "Geen contacten."
 
-#: ../../mod/profiles.php:701
-msgid "Your Full Name:"
-msgstr "Je volledige naam:"
+#: ../../mod/admin.php:57
+msgid "Theme settings updated."
+msgstr "Thema-instellingen aangepast."
 
-#: ../../mod/profiles.php:702
-msgid "Title/Description:"
-msgstr "Titel/Beschrijving:"
+#: ../../mod/admin.php:104 ../../mod/admin.php:619
+msgid "Site"
+msgstr "Website"
 
-#: ../../mod/profiles.php:703
-msgid "Your Gender:"
-msgstr "Je Geslacht:"
+#: ../../mod/admin.php:105 ../../mod/admin.php:998 ../../mod/admin.php:1013
+msgid "Users"
+msgstr "Gebruiker"
 
-#: ../../mod/profiles.php:704
-#, php-format
-msgid "Birthday (%s):"
-msgstr "Geboortedatum (%s):"
+#: ../../mod/admin.php:107 ../../mod/admin.php:1323 ../../mod/admin.php:1357
+msgid "Themes"
+msgstr "Thema's"
 
-#: ../../mod/profiles.php:705
-msgid "Street Address:"
-msgstr "Postadres:"
+#: ../../mod/admin.php:108
+msgid "DB updates"
+msgstr "DB aanpassingen"
 
-#: ../../mod/profiles.php:706
-msgid "Locality/City:"
-msgstr "Gemeente/Stad:"
+#: ../../mod/admin.php:123 ../../mod/admin.php:132 ../../mod/admin.php:1444
+msgid "Logs"
+msgstr "Logs"
 
-#: ../../mod/profiles.php:707
-msgid "Postal/Zip Code:"
-msgstr "Postcode:"
+#: ../../mod/admin.php:124
+msgid "probe address"
+msgstr ""
 
-#: ../../mod/profiles.php:708
-msgid "Country:"
-msgstr "Land:"
+#: ../../mod/admin.php:125
+msgid "check webfinger"
+msgstr ""
 
-#: ../../mod/profiles.php:709
-msgid "Region/State:"
-msgstr "Regio/Staat:"
+#: ../../mod/admin.php:131
+msgid "Plugin Features"
+msgstr "Plugin Functies"
 
-#: ../../mod/profiles.php:710
-msgid "<span class=\"heart\">&hearts;</span> Marital Status:"
-msgstr "<span class=\"heart\">&hearts;</span> Echtelijke Staat:"
+#: ../../mod/admin.php:133
+msgid "diagnostics"
+msgstr ""
 
-#: ../../mod/profiles.php:711
-msgid "Who: (if applicable)"
-msgstr "Wie: (indien toepasbaar)"
+#: ../../mod/admin.php:134
+msgid "User registrations waiting for confirmation"
+msgstr "Gebruikersregistraties wachten op bevestiging"
 
-#: ../../mod/profiles.php:712
-msgid "Examples: cathy123, Cathy Williams, cathy@example.com"
-msgstr "Voorbeelden: Kathleen123, Kathleen Peeters, kathleen@voorbeeld.nl"
+#: ../../mod/admin.php:193 ../../mod/admin.php:952
+msgid "Normal Account"
+msgstr "Normaal account"
 
-#: ../../mod/profiles.php:713
-msgid "Since [date]:"
-msgstr "Sinds [datum]:"
+#: ../../mod/admin.php:194 ../../mod/admin.php:953
+msgid "Soapbox Account"
+msgstr "Zeepkist-account"
 
-#: ../../mod/profiles.php:714 ../../include/profile_advanced.php:46
-msgid "Sexual Preference:"
-msgstr "Seksuele Voorkeur:"
+#: ../../mod/admin.php:195 ../../mod/admin.php:954
+msgid "Community/Celebrity Account"
+msgstr "Account voor een groep/forum of beroemdheid"
 
-#: ../../mod/profiles.php:715
-msgid "Homepage URL:"
-msgstr "Adres tijdlijn:"
+#: ../../mod/admin.php:196 ../../mod/admin.php:955
+msgid "Automatic Friend Account"
+msgstr "Automatisch Vriendschapsaccount"
 
-#: ../../mod/profiles.php:716 ../../include/profile_advanced.php:50
-msgid "Hometown:"
-msgstr "Woonplaats:"
+#: ../../mod/admin.php:197
+msgid "Blog Account"
+msgstr "Blog Account"
 
-#: ../../mod/profiles.php:717 ../../include/profile_advanced.php:54
-msgid "Political Views:"
-msgstr "Politieke standpunten:"
+#: ../../mod/admin.php:198
+msgid "Private Forum"
+msgstr "Privéforum/-groep"
 
-#: ../../mod/profiles.php:718
-msgid "Religious Views:"
-msgstr "Geloof:"
+#: ../../mod/admin.php:217
+msgid "Message queues"
+msgstr "Bericht-wachtrijen"
 
-#: ../../mod/profiles.php:719
-msgid "Public Keywords:"
-msgstr "Publieke Sleutelwoorden:"
+#: ../../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
+msgid "Administration"
+msgstr "Beheer"
 
-#: ../../mod/profiles.php:720
-msgid "Private Keywords:"
-msgstr "Privé Sleutelwoorden:"
+#: ../../mod/admin.php:223
+msgid "Summary"
+msgstr "Samenvatting"
 
-#: ../../mod/profiles.php:721 ../../include/profile_advanced.php:62
-msgid "Likes:"
-msgstr "Houdt van:"
+#: ../../mod/admin.php:225
+msgid "Registered users"
+msgstr "Geregistreerde gebruikers"
 
-#: ../../mod/profiles.php:722 ../../include/profile_advanced.php:64
-msgid "Dislikes:"
-msgstr "Houdt niet van:"
+#: ../../mod/admin.php:227
+msgid "Pending registrations"
+msgstr "Registraties die in de wacht staan"
 
-#: ../../mod/profiles.php:723
-msgid "Example: fishing photography software"
-msgstr "Voorbeeld: vissen fotografie software"
+#: ../../mod/admin.php:228
+msgid "Version"
+msgstr "Versie"
 
-#: ../../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/admin.php:232
+msgid "Active plugins"
+msgstr "Actieve plug-ins"
 
-#: ../../mod/profiles.php:725
-msgid "(Used for searching profiles, never shown to others)"
-msgstr "(Gebruikt om profielen te zoeken, nooit aan anderen getoond)"
+#: ../../mod/admin.php:255
+msgid "Can not parse base url. Must have at least <scheme>://<domain>"
+msgstr ""
 
-#: ../../mod/profiles.php:726
-msgid "Tell us about yourself..."
-msgstr "Vertel iets over jezelf..."
+#: ../../mod/admin.php:516
+msgid "Site settings updated."
+msgstr "Site instellingen gewijzigd."
 
-#: ../../mod/profiles.php:727
-msgid "Hobbies/Interests"
-msgstr "Hobby's/Interesses"
+#: ../../mod/admin.php:562
+msgid "No community page"
+msgstr ""
 
-#: ../../mod/profiles.php:728
-msgid "Contact information and Social Networks"
-msgstr "Contactinformatie en sociale netwerken"
+#: ../../mod/admin.php:563
+msgid "Public postings from users of this site"
+msgstr ""
 
-#: ../../mod/profiles.php:729
-msgid "Musical interests"
-msgstr "Muzikale interesses"
+#: ../../mod/admin.php:564
+msgid "Global community page"
+msgstr ""
 
-#: ../../mod/profiles.php:730
-msgid "Books, literature"
-msgstr "Boeken, literatuur"
+#: ../../mod/admin.php:570
+msgid "At post arrival"
+msgstr ""
 
-#: ../../mod/profiles.php:731
-msgid "Television"
-msgstr "Televisie"
+#: ../../mod/admin.php:579
+msgid "Multi user instance"
+msgstr "Server voor meerdere gebruikers"
 
-#: ../../mod/profiles.php:732
-msgid "Film/dance/culture/entertainment"
-msgstr "Film/dans/cultuur/ontspanning"
+#: ../../mod/admin.php:602
+msgid "Closed"
+msgstr "Gesloten"
 
-#: ../../mod/profiles.php:733
-msgid "Love/romance"
-msgstr "Liefde/romance"
+#: ../../mod/admin.php:603
+msgid "Requires approval"
+msgstr "Toestemming vereist"
 
-#: ../../mod/profiles.php:734
-msgid "Work/employment"
-msgstr "Werk"
+#: ../../mod/admin.php:604
+msgid "Open"
+msgstr "Open"
 
-#: ../../mod/profiles.php:735
-msgid "School/education"
-msgstr "School/opleiding"
+#: ../../mod/admin.php:608
+msgid "No SSL policy, links will track page SSL state"
+msgstr "Geen SSL beleid, links zullen SSL status van pagina volgen"
 
-#: ../../mod/profiles.php:740
-msgid ""
-"This is your <strong>public</strong> profile.<br />It <strong>may</strong> "
-"be visible to anybody using the internet."
-msgstr "Dit is jouw <strong>publiek</strong> profiel.<br />Het <strong>kan</strong> zichtbaar zijn voor iedereen op het internet."
+#: ../../mod/admin.php:609
+msgid "Force all links to use SSL"
+msgstr "Verplicht alle links om SSL te gebruiken"
 
-#: ../../mod/profiles.php:803
-msgid "Edit/Manage Profiles"
-msgstr "Wijzig/Beheer Profielen"
+#: ../../mod/admin.php:610
+msgid "Self-signed certificate, use SSL for local links only (discouraged)"
+msgstr "Zelf-ondertekend certificaat, gebruik SSL alleen voor lokale links (afgeraden)"
 
-#: ../../mod/profiles.php:804 ../../boot.php:1611 ../../boot.php:1637
-msgid "Change profile photo"
-msgstr "Profiel foto wijzigen"
+#: ../../mod/admin.php:622
+msgid "File upload"
+msgstr "Uploaden bestand"
 
-#: ../../mod/profiles.php:805 ../../boot.php:1612
-msgid "Create New Profile"
-msgstr "Maak nieuw profiel"
+#: ../../mod/admin.php:623
+msgid "Policies"
+msgstr "Beleid"
 
-#: ../../mod/profiles.php:816 ../../boot.php:1622
-msgid "Profile Image"
-msgstr "Profiel afbeelding"
+#: ../../mod/admin.php:624
+msgid "Advanced"
+msgstr "Geavanceerd"
 
-#: ../../mod/profiles.php:818 ../../boot.php:1625
-msgid "visible to everybody"
-msgstr "zichtbaar voor iedereen"
+#: ../../mod/admin.php:625
+msgid "Performance"
+msgstr "Performantie"
 
-#: ../../mod/profiles.php:819 ../../boot.php:1626
-msgid "Edit visibility"
-msgstr "Pas zichtbaarheid aan"
+#: ../../mod/admin.php:626
+msgid ""
+"Relocate - WARNING: advanced function. Could make this server unreachable."
+msgstr ""
 
-#: ../../mod/editpost.php:17 ../../mod/editpost.php:27
-msgid "Item not found"
-msgstr "Item niet gevonden"
+#: ../../mod/admin.php:629
+msgid "Site name"
+msgstr "Site naam"
 
-#: ../../mod/editpost.php:39
-msgid "Edit post"
-msgstr "Bericht bewerken"
+#: ../../mod/admin.php:630
+msgid "Host name"
+msgstr ""
 
-#: ../../mod/editpost.php:111 ../../include/conversation.php:1092
-msgid "upload photo"
-msgstr "Foto uploaden"
+#: ../../mod/admin.php:631
+msgid "Sender Email"
+msgstr ""
 
-#: ../../mod/editpost.php:112 ../../include/conversation.php:1093
-msgid "Attach file"
-msgstr "Bestand bijvoegen"
+#: ../../mod/admin.php:632
+msgid "Banner/Logo"
+msgstr "Banner/Logo"
 
-#: ../../mod/editpost.php:113 ../../include/conversation.php:1094
-msgid "attach file"
-msgstr "bestand bijvoegen"
+#: ../../mod/admin.php:633
+msgid "Shortcut icon"
+msgstr ""
 
-#: ../../mod/editpost.php:115 ../../include/conversation.php:1096
-msgid "web link"
-msgstr "webadres"
+#: ../../mod/admin.php:634
+msgid "Touch icon"
+msgstr ""
 
-#: ../../mod/editpost.php:116 ../../include/conversation.php:1097
-msgid "Insert video link"
-msgstr "Voeg video toe"
+#: ../../mod/admin.php:635
+msgid "Additional Info"
+msgstr ""
 
-#: ../../mod/editpost.php:117 ../../include/conversation.php:1098
-msgid "video link"
-msgstr "video adres"
+#: ../../mod/admin.php:635
+msgid ""
+"For public servers: you can add additional information here that will be "
+"listed at dir.friendica.com/siteinfo."
+msgstr ""
 
-#: ../../mod/editpost.php:118 ../../include/conversation.php:1099
-msgid "Insert audio link"
-msgstr "Voeg audio adres toe"
+#: ../../mod/admin.php:636
+msgid "System language"
+msgstr "Systeemtaal"
 
-#: ../../mod/editpost.php:119 ../../include/conversation.php:1100
-msgid "audio link"
-msgstr "audio adres"
+#: ../../mod/admin.php:637
+msgid "System theme"
+msgstr "Systeem thema"
 
-#: ../../mod/editpost.php:120 ../../include/conversation.php:1101
-msgid "Set your location"
-msgstr "Stel uw locatie in"
+#: ../../mod/admin.php:637
+msgid ""
+"Default system theme - may be over-ridden by user profiles - <a href='#' "
+"id='cnftheme'>change theme settings</a>"
+msgstr "Standaard systeem thema - kan door gebruikersprofielen veranderd worden - <a href='#' id='cnftheme'>verander thema instellingen</a>"
 
-#: ../../mod/editpost.php:121 ../../include/conversation.php:1102
-msgid "set location"
-msgstr "Stel uw locatie in"
+#: ../../mod/admin.php:638
+msgid "Mobile system theme"
+msgstr "Mobiel systeem thema"
 
-#: ../../mod/editpost.php:122 ../../include/conversation.php:1103
-msgid "Clear browser location"
-msgstr "Verwijder locatie uit uw webbrowser"
+#: ../../mod/admin.php:638
+msgid "Theme for mobile devices"
+msgstr "Thema voor mobiele apparaten"
 
-#: ../../mod/editpost.php:123 ../../include/conversation.php:1104
-msgid "clear location"
-msgstr "Verwijder locatie uit uw webbrowser"
+#: ../../mod/admin.php:639
+msgid "SSL link policy"
+msgstr "Beleid SSL-links"
 
-#: ../../mod/editpost.php:125 ../../include/conversation.php:1110
-msgid "Permission settings"
-msgstr "Instellingen van rechten"
+#: ../../mod/admin.php:639
+msgid "Determines whether generated links should be forced to use SSL"
+msgstr "Bepaald of gegenereerde verwijzingen verplicht SSL moeten gebruiken"
 
-#: ../../mod/editpost.php:133 ../../include/conversation.php:1119
-msgid "CC: email addresses"
-msgstr "CC: e-mailadressen"
+#: ../../mod/admin.php:640
+msgid "Force SSL"
+msgstr ""
 
-#: ../../mod/editpost.php:134 ../../include/conversation.php:1120
-msgid "Public post"
-msgstr "Openbare post"
+#: ../../mod/admin.php:640
+msgid ""
+"Force all Non-SSL requests to SSL - Attention: on some systems it could lead"
+" to endless loops."
+msgstr ""
 
-#: ../../mod/editpost.php:137 ../../include/conversation.php:1106
-msgid "Set title"
-msgstr "Titel plaatsen"
+#: ../../mod/admin.php:641
+msgid "Old style 'Share'"
+msgstr ""
 
-#: ../../mod/editpost.php:139 ../../include/conversation.php:1108
-msgid "Categories (comma-separated list)"
-msgstr "Categorieën (komma-gescheiden lijst)"
+#: ../../mod/admin.php:641
+msgid "Deactivates the bbcode element 'share' for repeating items."
+msgstr ""
 
-#: ../../mod/editpost.php:140 ../../include/conversation.php:1122
-msgid "Example: bob@example.com, mary@example.com"
-msgstr "Voorbeeld: bob@voorbeeld.nl, an@voorbeeld.be"
-
-#: ../../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/admin.php:642
+msgid "Hide help entry from navigation menu"
+msgstr "Verberg de 'help' uit het navigatiemenu"
 
-#: ../../mod/friendica.php:62
+#: ../../mod/admin.php:642
 msgid ""
-"Please visit <a href=\"http://friendica.com\">Friendica.com</a> to learn "
-"more about the Friendica project."
-msgstr "Bezoek <a href=\"http://friendica.com\">Friendica.com</a> om meer te leren over het Friendica project."
+"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/friendica.php:64
-msgid "Bug reports and issues: please visit"
-msgstr "Bug rapporten en problemen: bezoek"
+#: ../../mod/admin.php:643
+msgid "Single user instance"
+msgstr "Server voor één gebruiker"
 
-#: ../../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/admin.php:643
+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/friendica.php:79
-msgid "Installed plugins/addons/apps:"
-msgstr "Geïnstalleerde plugins/toepassingen:"
+#: ../../mod/admin.php:644
+msgid "Maximum image size"
+msgstr "Maximum afbeeldingsgrootte"
 
-#: ../../mod/friendica.php:92
-msgid "No installed plugins/addons/apps"
-msgstr "Geen plugins of toepassingen geïnstalleerd"
+#: ../../mod/admin.php:644
+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/api.php:76 ../../mod/api.php:102
-msgid "Authorize application connection"
-msgstr ""
+#: ../../mod/admin.php:645
+msgid "Maximum image length"
+msgstr "Maximum afbeeldingslengte"
 
-#: ../../mod/api.php:77
-msgid "Return to your app and insert this Securty Code:"
-msgstr ""
+#: ../../mod/admin.php:645
+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/api.php:89
-msgid "Please login to continue."
-msgstr "Log in om verder te gaan."
+#: ../../mod/admin.php:646
+msgid "JPEG image quality"
+msgstr "JPEG afbeeldingskwaliteit"
 
-#: ../../mod/api.php:104
+#: ../../mod/admin.php:646
 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?"
+"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/lockview.php:31 ../../mod/lockview.php:39
-msgid "Remote privacy information not available."
-msgstr "Privacyinformatie op afstand niet beschikbaar."
+#: ../../mod/admin.php:648
+msgid "Register policy"
+msgstr "Registratiebeleid"
 
-#: ../../mod/lockview.php:48
-msgid "Visible to:"
-msgstr "Zichtbaar voor:"
+#: ../../mod/admin.php:649
+msgid "Maximum Daily Registrations"
+msgstr "Maximum aantal registraties per dag"
 
-#: ../../mod/notes.php:44 ../../boot.php:2150
-msgid "Personal Notes"
-msgstr "Persoonlijke Nota's"
+#: ../../mod/admin.php:649
+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/localtime.php:12 ../../include/bb2diaspora.php:148
-#: ../../include/event.php:11
-msgid "l F d, Y \\@ g:i A"
-msgstr "l F d, Y \\@ g:i A"
+#: ../../mod/admin.php:650
+msgid "Register text"
+msgstr "Registratietekst"
 
-#: ../../mod/localtime.php:24
-msgid "Time Conversion"
-msgstr "Tijdsconversie"
+#: ../../mod/admin.php:650
+msgid "Will be displayed prominently on the registration page."
+msgstr "Dit zal prominent op de registratiepagina getoond worden."
 
-#: ../../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/admin.php:651
+msgid "Accounts abandoned after x days"
+msgstr "Verlaten accounts na x dagen"
 
-#: ../../mod/localtime.php:30
-#, php-format
-msgid "UTC time: %s"
-msgstr "UTC tijd: %s"
+#: ../../mod/admin.php:651
+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/localtime.php:33
-#, php-format
-msgid "Current timezone: %s"
-msgstr "Huidige Tijdzone: %s"
+#: ../../mod/admin.php:652
+msgid "Allowed friend domains"
+msgstr "Toegelaten vriend domeinen"
 
-#: ../../mod/localtime.php:36
-#, php-format
-msgid "Converted localtime: %s"
-msgstr "Omgerekende lokale tijd: %s"
+#: ../../mod/admin.php:652
+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/localtime.php:41
-msgid "Please select your timezone:"
-msgstr "Selecteer je tijdzone:"
+#: ../../mod/admin.php:653
+msgid "Allowed email domains"
+msgstr "Toegelaten e-mail domeinen"
 
-#: ../../mod/poke.php:192
-msgid "Poke/Prod"
-msgstr "Aanstoten/porren"
+#: ../../mod/admin.php:653
+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/poke.php:193
-msgid "poke, prod or do other things to somebody"
-msgstr "aanstoten, porren of andere dingen met iemand doen"
+#: ../../mod/admin.php:654
+msgid "Block public"
+msgstr "Openbare toegang blokkeren"
 
-#: ../../mod/poke.php:194
-msgid "Recipient"
-msgstr "Ontvanger"
+#: ../../mod/admin.php:654
+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/poke.php:195
-msgid "Choose what you wish to do to recipient"
-msgstr "Kies wat je met de ontvanger wil doen"
+#: ../../mod/admin.php:655
+msgid "Force publish"
+msgstr "Dwing publiceren af"
 
-#: ../../mod/poke.php:198
-msgid "Make this post private"
-msgstr "Dit bericht privé maken"
+#: ../../mod/admin.php:655
+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/invite.php:27
-msgid "Total invitation limit exceeded."
-msgstr "Totale uitnodigingslimiet overschreden."
+#: ../../mod/admin.php:656
+msgid "Global directory update URL"
+msgstr "Update-adres van de globale gids"
 
-#: ../../mod/invite.php:49
-#, php-format
-msgid "%s : Not a valid email address."
-msgstr "%s: Geen geldig e-mailadres."
+#: ../../mod/admin.php:656
+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/invite.php:73
-msgid "Please join us on Friendica"
-msgstr "Kom bij ons op Friendica"
+#: ../../mod/admin.php:657
+msgid "Allow threaded items"
+msgstr "Sta threads in conversaties toe"
 
-#: ../../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/admin.php:657
+msgid "Allow infinite level threading for items on this site."
+msgstr "Sta oneindige niveaus threads in conversaties op deze website toe."
 
-#: ../../mod/invite.php:89
-#, php-format
-msgid "%s : Message delivery failed."
-msgstr "%s : Aflevering van bericht mislukt."
+#: ../../mod/admin.php:658
+msgid "Private posts by default for new users"
+msgstr "Privéberichten als standaard voor nieuwe gebruikers"
 
-#: ../../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/admin.php:658
+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/invite.php:112
-msgid "You have no more invitations available"
-msgstr "Je kunt geen uitnodigingen meer sturen"
+#: ../../mod/admin.php:659
+msgid "Don't include post content in email notifications"
+msgstr "De inhoud van het bericht niet insluiten bij e-mailnotificaties"
 
-#: ../../mod/invite.php:120
-#, php-format
+#: ../../mod/admin.php:659
 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."
+"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/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/admin.php:660
+msgid "Disallow public access to addons listed in the apps menu."
+msgstr ""
 
-#: ../../mod/invite.php:123
-#, php-format
+#: ../../mod/admin.php:660
 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"
+"Checking this box will restrict addons listed in the apps menu to members "
+"only."
+msgstr ""
 
-#: ../../mod/invite.php:133
-msgid "Enter email addresses, one per line:"
-msgstr "Vul e-mailadressen in, één per lijn:"
+#: ../../mod/admin.php:661
+msgid "Don't embed private images in posts"
+msgstr ""
 
-#: ../../mod/invite.php:135
+#: ../../mod/admin.php:661
 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"
+"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 "
+"photos will have to authenticate and load each image, which may take a "
+"while."
+msgstr ""
 
-#: ../../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/admin.php:662
+msgid "Allow Users to set remote_self"
+msgstr ""
 
-#: ../../mod/invite.php:139
+#: ../../mod/admin.php:662
 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"
+"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/photos.php:52 ../../boot.php:2129
-msgid "Photo Albums"
-msgstr "Fotoalbums"
+#: ../../mod/admin.php:663
+msgid "Block multiple registrations"
+msgstr "Blokkeer meerdere registraties"
 
-#: ../../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
-#: ../../view/theme/diabook/theme.php:499
-msgid "Contact Photos"
-msgstr "Contactfoto's"
+#: ../../mod/admin.php:663
+msgid "Disallow users to register additional accounts for use as pages."
+msgstr "Laat niet toe dat gebruikers meerdere accounts aanmaken."
 
-#: ../../mod/photos.php:67 ../../mod/photos.php:1262 ../../mod/photos.php:1819
-msgid "Upload New Photos"
-msgstr "Nieuwe foto's uploaden"
+#: ../../mod/admin.php:664
+msgid "OpenID support"
+msgstr "OpenID ondersteuning"
 
-#: ../../mod/photos.php:144
-msgid "Contact information unavailable"
-msgstr "Contactinformatie niet beschikbaar"
+#: ../../mod/admin.php:664
+msgid "OpenID support for registration and logins."
+msgstr "OpenID ondersteuning voor registraties en logins."
 
-#: ../../mod/photos.php:165
-msgid "Album not found."
-msgstr "Album niet gevonden"
+#: ../../mod/admin.php:665
+msgid "Fullname check"
+msgstr "Controleer volledige naam"
 
-#: ../../mod/photos.php:188 ../../mod/photos.php:200 ../../mod/photos.php:1204
-msgid "Delete Album"
-msgstr "Verwijder album"
+#: ../../mod/admin.php:665
+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/photos.php:198
-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/admin.php:666
+msgid "UTF-8 Regular expressions"
+msgstr "UTF-8 reguliere uitdrukkingen"
 
-#: ../../mod/photos.php:278 ../../mod/photos.php:289 ../../mod/photos.php:1515
-msgid "Delete Photo"
-msgstr "Verwijder foto"
+#: ../../mod/admin.php:666
+msgid "Use PHP UTF8 regular expressions"
+msgstr "Gebruik PHP UTF8 reguliere uitdrukkingen"
 
-#: ../../mod/photos.php:287
-msgid "Do you really want to delete this photo?"
-msgstr "Wil je echt deze foto verwijderen?"
+#: ../../mod/admin.php:667
+msgid "Community Page Style"
+msgstr ""
 
-#: ../../mod/photos.php:662
-#, 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/admin.php:667
+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/photos.php:662
-msgid "a photo"
-msgstr "een foto"
+#: ../../mod/admin.php:668
+msgid "Posts per user on community page"
+msgstr ""
 
-#: ../../mod/photos.php:767
-msgid "Image exceeds size limit of "
-msgstr "Afbeelding is groter dan de maximale afmeting van"
+#: ../../mod/admin.php:668
+msgid ""
+"The maximum number of posts per user on the community page. (Not valid for "
+"'Global Community')"
+msgstr ""
 
-#: ../../mod/photos.php:775
-msgid "Image file is empty."
-msgstr "Afbeeldingsbestand is leeg."
+#: ../../mod/admin.php:669
+msgid "Enable OStatus support"
+msgstr "Activeer OStatus ondersteuning"
 
-#: ../../mod/photos.php:930
-msgid "No photos selected"
-msgstr "Geen foto's geselecteerd"
+#: ../../mod/admin.php:669
+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/photos.php:1094
-#, 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/admin.php:670
+msgid "OStatus conversation completion interval"
+msgstr ""
 
-#: ../../mod/photos.php:1129
-msgid "Upload Photos"
-msgstr "Upload foto's"
+#: ../../mod/admin.php:670
+msgid ""
+"How often shall the poller check for new entries in OStatus conversations? "
+"This can be a very ressource task."
+msgstr ""
 
-#: ../../mod/photos.php:1133 ../../mod/photos.php:1199
-msgid "New album name: "
-msgstr "Nieuwe albumnaam: "
+#: ../../mod/admin.php:671
+msgid "Enable Diaspora support"
+msgstr "Activeer Diaspora ondersteuning"
 
-#: ../../mod/photos.php:1134
-msgid "or existing album name: "
-msgstr "of bestaande albumnaam: "
+#: ../../mod/admin.php:671
+msgid "Provide built-in Diaspora network compatibility."
+msgstr "Bied ingebouwde ondersteuning voor het Diaspora netwerk."
 
-#: ../../mod/photos.php:1135
-msgid "Do not show a status post for this upload"
-msgstr "Toon geen bericht op je tijdlijn van deze upload"
+#: ../../mod/admin.php:672
+msgid "Only allow Friendica contacts"
+msgstr "Laat alleen Friendica contacten toe"
 
-#: ../../mod/photos.php:1137 ../../mod/photos.php:1510
-msgid "Permissions"
-msgstr "Rechten"
+#: ../../mod/admin.php:672
+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/photos.php:1148
-msgid "Private Photo"
-msgstr "Privé foto"
+#: ../../mod/admin.php:673
+msgid "Verify SSL"
+msgstr "Controleer SSL"
 
-#: ../../mod/photos.php:1149
-msgid "Public Photo"
-msgstr "Publieke foto"
+#: ../../mod/admin.php:673
+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/photos.php:1212
-msgid "Edit Album"
-msgstr "Album wijzigen"
+#: ../../mod/admin.php:674
+msgid "Proxy user"
+msgstr "Proxy-gebruiker"
 
-#: ../../mod/photos.php:1218
-msgid "Show Newest First"
-msgstr "Toon niewste eerst"
+#: ../../mod/admin.php:675
+msgid "Proxy URL"
+msgstr "Proxy-URL"
 
-#: ../../mod/photos.php:1220
-msgid "Show Oldest First"
-msgstr "Toon oudste eerst"
+#: ../../mod/admin.php:676
+msgid "Network timeout"
+msgstr "Netwerk timeout"
 
-#: ../../mod/photos.php:1248 ../../mod/photos.php:1802
-msgid "View Photo"
-msgstr "Bekijk foto"
+#: ../../mod/admin.php:676
+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/photos.php:1294
-msgid "Permission denied. Access to this item may be restricted."
-msgstr "Toegang geweigerd. Toegang tot dit item is mogelijk beperkt."
+#: ../../mod/admin.php:677
+msgid "Delivery interval"
+msgstr "Afleverinterval"
 
-#: ../../mod/photos.php:1296
-msgid "Photo not available"
-msgstr "Foto is niet beschikbaar"
+#: ../../mod/admin.php:677
+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/photos.php:1352
-msgid "View photo"
-msgstr "Bekijk foto"
+#: ../../mod/admin.php:678
+msgid "Poll interval"
+msgstr "Poll-interval"
 
-#: ../../mod/photos.php:1352
-msgid "Edit photo"
-msgstr "Bewerk foto"
+#: ../../mod/admin.php:678
+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/photos.php:1353
-msgid "Use as profile photo"
-msgstr "Gebruik als profielfoto"
-
-#: ../../mod/photos.php:1378
-msgid "View Full Size"
-msgstr "Bekijk in volledig formaat"
-
-#: ../../mod/photos.php:1457
-msgid "Tags: "
-msgstr "Labels: "
-
-#: ../../mod/photos.php:1460
-msgid "[Remove any tag]"
-msgstr "[Alle labels verwijderen]"
+#: ../../mod/admin.php:679
+msgid "Maximum Load Average"
+msgstr "Maximum gemiddelde belasting"
 
-#: ../../mod/photos.php:1500
-msgid "Rotate CW (right)"
-msgstr "Roteren met de klok mee (rechts)"
+#: ../../mod/admin.php:679
+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/photos.php:1501
-msgid "Rotate CCW (left)"
-msgstr "Roteren tegen de klok in (links)"
+#: ../../mod/admin.php:681
+msgid "Use MySQL full text engine"
+msgstr "Gebruik de tekst-zoekfunctie van MySQL"
 
-#: ../../mod/photos.php:1503
-msgid "New album name"
-msgstr "Nieuwe albumnaam"
+#: ../../mod/admin.php:681
+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/photos.php:1506
-msgid "Caption"
-msgstr "Onderschrift"
+#: ../../mod/admin.php:682
+msgid "Suppress Language"
+msgstr ""
 
-#: ../../mod/photos.php:1508
-msgid "Add a Tag"
-msgstr "Een label toevoegen"
+#: ../../mod/admin.php:682
+msgid "Suppress language information in meta information about a posting."
+msgstr ""
 
-#: ../../mod/photos.php:1512
-msgid ""
-"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
-msgstr "Voorbeeld: @bob, @Barbara_Jansen, @jan@voorbeeld.nl, #Ardennen, #camping "
+#: ../../mod/admin.php:683
+msgid "Suppress Tags"
+msgstr ""
 
-#: ../../mod/photos.php:1521
-msgid "Private photo"
-msgstr "Privé foto"
+#: ../../mod/admin.php:683
+msgid "Suppress showing a list of hashtags at the end of the posting."
+msgstr ""
 
-#: ../../mod/photos.php:1522
-msgid "Public photo"
-msgstr "Publieke foto"
+#: ../../mod/admin.php:684
+msgid "Path to item cache"
+msgstr "Pad naar cache voor items"
 
-#: ../../mod/photos.php:1544 ../../include/conversation.php:1090
-msgid "Share"
-msgstr "Delen"
+#: ../../mod/admin.php:685
+msgid "Cache duration in seconds"
+msgstr "Cache tijdsduur in seconden"
 
-#: ../../mod/photos.php:1817
-msgid "Recent Photos"
-msgstr "Recente foto's"
+#: ../../mod/admin.php:685
+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/regmod.php:55
-msgid "Account approved."
-msgstr "Account goedgekeurd."
+#: ../../mod/admin.php:686
+msgid "Maximum numbers of comments per post"
+msgstr ""
 
-#: ../../mod/regmod.php:92
-#, php-format
-msgid "Registration revoked for %s"
-msgstr "Registratie ingetrokken voor %s"
+#: ../../mod/admin.php:686
+msgid "How much comments should be shown for each post? Default value is 100."
+msgstr ""
 
-#: ../../mod/regmod.php:104
-msgid "Please login."
-msgstr "Inloggen."
+#: ../../mod/admin.php:687
+msgid "Path for lock file"
+msgstr "Pad voor lock bestand"
 
-#: ../../mod/uimport.php:66
-msgid "Move account"
-msgstr "Account verplaatsen"
+#: ../../mod/admin.php:688
+msgid "Temp path"
+msgstr "Tijdelijk pad"
 
-#: ../../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/admin.php:689
+msgid "Base path to installation"
+msgstr "Basispad voor installatie"
 
-#: ../../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/admin.php:690
+msgid "Disable picture proxy"
+msgstr ""
 
-#: ../../mod/uimport.php:69
+#: ../../mod/admin.php:690
 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."
+"The picture proxy increases performance and privacy. It shouldn't be used on"
+" systems with very low bandwith."
+msgstr ""
 
-#: ../../mod/uimport.php:70
-msgid "Account file"
-msgstr "Account bestand"
+#: ../../mod/admin.php:691
+msgid "Enable old style pager"
+msgstr ""
 
-#: ../../mod/uimport.php:70
+#: ../../mod/admin.php:691
 msgid ""
-"To export your account, go to \"Settings->Export your personal data\" and "
-"select \"Export account\""
+"The old style pager has page numbers but slows down massively the page "
+"speed."
 msgstr ""
 
-#: ../../mod/attach.php:8
-msgid "Item not available."
-msgstr "Item niet beschikbaar"
+#: ../../mod/admin.php:692
+msgid "Only search in tags"
+msgstr ""
 
-#: ../../mod/attach.php:20
-msgid "Item was not found."
-msgstr "Item niet gevonden"
+#: ../../mod/admin.php:692
+msgid "On large systems the text search can slow down the system extremely."
+msgstr ""
 
-#: ../../boot.php:749
-msgid "Delete this item?"
-msgstr "Dit item verwijderen?"
+#: ../../mod/admin.php:694
+msgid "New base url"
+msgstr ""
 
-#: ../../boot.php:752
-msgid "show fewer"
-msgstr "Minder tonen"
+#: ../../mod/admin.php:711
+msgid "Update has been marked successful"
+msgstr "Wijziging succesvol gemarkeerd "
 
-#: ../../boot.php:1122
+#: ../../mod/admin.php:719
 #, php-format
-msgid "Update %s failed. See error logs."
-msgstr "Wijziging %s mislukt. Lees de error logbestanden."
-
-#: ../../boot.php:1240
-msgid "Create a New Account"
-msgstr "Nieuw account aanmaken"
-
-#: ../../boot.php:1265 ../../include/nav.php:73
-msgid "Logout"
-msgstr "Uitloggen"
-
-#: ../../boot.php:1268
-msgid "Nickname or Email address: "
-msgstr "Bijnaam of e-mailadres:"
+msgid "Database structure update %s was successfully applied."
+msgstr ""
 
-#: ../../boot.php:1269
-msgid "Password: "
-msgstr "Wachtwoord:"
+#: ../../mod/admin.php:722
+#, php-format
+msgid "Executing of database structure update %s failed with error: %s"
+msgstr ""
 
-#: ../../boot.php:1270
-msgid "Remember me"
-msgstr "Onthou me"
+#: ../../mod/admin.php:734
+#, php-format
+msgid "Executing %s failed with error: %s"
+msgstr ""
 
-#: ../../boot.php:1273
-msgid "Or login using OpenID: "
-msgstr "Of log in met OpenID:"
+#: ../../mod/admin.php:737
+#, php-format
+msgid "Update %s was successfully applied."
+msgstr "Wijziging %s geslaagd."
 
-#: ../../boot.php:1279
-msgid "Forgot your password?"
-msgstr "Wachtwoord vergeten?"
+#: ../../mod/admin.php:741
+#, 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."
 
-#: ../../boot.php:1282
-msgid "Website Terms of Service"
-msgstr "Gebruikersvoorwaarden website"
+#: ../../mod/admin.php:743
+#, php-format
+msgid "There was no additional update function %s that needed to be called."
+msgstr ""
 
-#: ../../boot.php:1283
-msgid "terms of service"
-msgstr "servicevoorwaarden"
+#: ../../mod/admin.php:762
+msgid "No failed updates."
+msgstr "Geen misluke wijzigingen"
 
-#: ../../boot.php:1285
-msgid "Website Privacy Policy"
-msgstr "Privacybeleid website"
+#: ../../mod/admin.php:763
+msgid "Check database structure"
+msgstr ""
 
-#: ../../boot.php:1286
-msgid "privacy policy"
-msgstr "privacybeleid"
+#: ../../mod/admin.php:768
+msgid "Failed Updates"
+msgstr "Misluke wijzigingen"
 
-#: ../../boot.php:1419
-msgid "Requested account is not available."
-msgstr "Gevraagde account is niet beschikbaar."
+#: ../../mod/admin.php:769
+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."
 
-#: ../../boot.php:1501 ../../boot.php:1635
-#: ../../include/profile_advanced.php:84
-msgid "Edit profile"
-msgstr "Bewerk profiel"
+#: ../../mod/admin.php:770
+msgid "Mark success (if update was manually applied)"
+msgstr "Markeren als succes (als aanpassing manueel doorgevoerd werd)"
 
-#: ../../boot.php:1600
-msgid "Message"
-msgstr "Bericht"
+#: ../../mod/admin.php:771
+msgid "Attempt to execute this update step automatically"
+msgstr "Probeer deze stap automatisch uit te voeren"
 
-#: ../../boot.php:1606 ../../include/nav.php:175
-msgid "Profiles"
-msgstr "Profielen"
+#: ../../mod/admin.php:803
+#, php-format
+msgid ""
+"\n"
+"\t\t\tDear %1$s,\n"
+"\t\t\t\tthe administrator of %2$s has set up an account for you."
+msgstr ""
 
-#: ../../boot.php:1606
-msgid "Manage/edit profiles"
-msgstr "Beheer/wijzig profielen"
-
-#: ../../boot.php:1706
-msgid "Network:"
+#: ../../mod/admin.php:806
+#, php-format
+msgid ""
+"\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."
 msgstr ""
 
-#: ../../boot.php:1736 ../../boot.php:1822
-msgid "g A l F d"
-msgstr "G l j F"
-
-#: ../../boot.php:1737 ../../boot.php:1823
-msgid "F d"
-msgstr "d F"
-
-#: ../../boot.php:1782 ../../boot.php:1863
-msgid "[today]"
-msgstr "[vandaag]"
-
-#: ../../boot.php:1794
-msgid "Birthday Reminders"
-msgstr "Verjaardagsherinneringen"
+#: ../../mod/admin.php:850
+#, 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"
 
-#: ../../boot.php:1795
-msgid "Birthdays this week:"
-msgstr "Verjaardagen deze week:"
+#: ../../mod/admin.php:857
+#, php-format
+msgid "%s user deleted"
+msgid_plural "%s users deleted"
+msgstr[0] "%s gebruiker verwijderd"
+msgstr[1] "%s gebruikers verwijderd"
 
-#: ../../boot.php:1856
-msgid "[No description]"
-msgstr "[Geen beschrijving]"
+#: ../../mod/admin.php:896
+#, php-format
+msgid "User '%s' deleted"
+msgstr "Gebruiker '%s' verwijderd"
 
-#: ../../boot.php:1874
-msgid "Event Reminders"
-msgstr "Gebeurtenisherinneringen"
+#: ../../mod/admin.php:904
+#, php-format
+msgid "User '%s' unblocked"
+msgstr "Gebruiker '%s' niet meer geblokkeerd"
 
-#: ../../boot.php:1875
-msgid "Events this week:"
-msgstr "Gebeurtenissen deze week:"
+#: ../../mod/admin.php:904
+#, php-format
+msgid "User '%s' blocked"
+msgstr "Gebruiker '%s' geblokkeerd"
 
-#: ../../boot.php:2112 ../../include/nav.php:76
-msgid "Status"
-msgstr "Tijdlijn"
+#: ../../mod/admin.php:999
+msgid "Add User"
+msgstr "Gebruiker toevoegen"
 
-#: ../../boot.php:2115
-msgid "Status Messages and Posts"
-msgstr "Berichten op jouw tijdlijn"
+#: ../../mod/admin.php:1000
+msgid "select all"
+msgstr "Alles selecteren"
 
-#: ../../boot.php:2122
-msgid "Profile Details"
-msgstr "Profieldetails"
+#: ../../mod/admin.php:1001
+msgid "User registrations waiting for confirm"
+msgstr "Gebruikersregistraties wachten op een bevestiging"
 
-#: ../../boot.php:2133 ../../boot.php:2136 ../../include/nav.php:79
-msgid "Videos"
-msgstr "Video's"
+#: ../../mod/admin.php:1002
+msgid "User waiting for permanent deletion"
+msgstr ""
 
-#: ../../boot.php:2146
-msgid "Events and Calendar"
-msgstr "Gebeurtenissen en kalender"
+#: ../../mod/admin.php:1003
+msgid "Request date"
+msgstr "Registratiedatum"
 
-#: ../../boot.php:2153
-msgid "Only You Can See This"
-msgstr "Alleen jij kunt dit zien"
+#: ../../mod/admin.php:1004
+msgid "No registrations."
+msgstr "Geen registraties."
 
-#: ../../object/Item.php:94
-msgid "This entry was edited"
-msgstr ""
+#: ../../mod/admin.php:1006
+msgid "Deny"
+msgstr "Weiger"
 
-#: ../../object/Item.php:208
-msgid "ignore thread"
-msgstr ""
+#: ../../mod/admin.php:1010
+msgid "Site admin"
+msgstr "Sitebeheerder"
 
-#: ../../object/Item.php:209
-msgid "unignore thread"
-msgstr ""
+#: ../../mod/admin.php:1011
+msgid "Account expired"
+msgstr "Account verlopen"
 
-#: ../../object/Item.php:210
-msgid "toggle ignore status"
-msgstr ""
+#: ../../mod/admin.php:1014
+msgid "New User"
+msgstr "Nieuwe gebruiker"
 
-#: ../../object/Item.php:213
-msgid "ignored"
-msgstr ""
+#: ../../mod/admin.php:1015 ../../mod/admin.php:1016
+msgid "Register date"
+msgstr "Registratiedatum"
 
-#: ../../object/Item.php:316 ../../include/conversation.php:666
-msgid "Categories:"
-msgstr "Categorieën:"
+#: ../../mod/admin.php:1015 ../../mod/admin.php:1016
+msgid "Last login"
+msgstr "Laatste login"
 
-#: ../../object/Item.php:317 ../../include/conversation.php:667
-msgid "Filed under:"
-msgstr "Bewaard onder:"
+#: ../../mod/admin.php:1015 ../../mod/admin.php:1016
+msgid "Last item"
+msgstr "Laatste item"
 
-#: ../../object/Item.php:329
-msgid "via"
-msgstr "via"
+#: ../../mod/admin.php:1015
+msgid "Deleted since"
+msgstr "Verwijderd sinds"
 
-#: ../../include/dbstructure.php:26
-#, php-format
+#: ../../mod/admin.php:1018
 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 ""
+"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?"
 
-#: ../../include/dbstructure.php:31
-#, php-format
+#: ../../mod/admin.php:1019
 msgid ""
-"The error message is\n"
-"[pre]%s[/pre]"
-msgstr ""
-
-#: ../../include/dbstructure.php:162
-msgid "Errors encountered creating database tables."
-msgstr "Tijdens het aanmaken van databasetabellen zijn fouten vastgesteld."
-
-#: ../../include/dbstructure.php:220
-msgid "Errors encountered performing database changes."
-msgstr ""
-
-#: ../../include/auth.php:38
-msgid "Logged out."
-msgstr "Uitgelogd."
+"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?"
 
-#: ../../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 ""
+#: ../../mod/admin.php:1029
+msgid "Name of the new user."
+msgstr "Naam van nieuwe gebruiker"
 
-#: ../../include/auth.php:128 ../../include/user.php:67
-msgid "The error message was:"
-msgstr "De foutboodschap was:"
+#: ../../mod/admin.php:1030
+msgid "Nickname"
+msgstr "Bijnaam"
 
-#: ../../include/contact_widgets.php:6
-msgid "Add New Contact"
-msgstr "Nieuw Contact toevoegen"
+#: ../../mod/admin.php:1030
+msgid "Nickname of the new user."
+msgstr "Bijnaam van nieuwe gebruiker"
 
-#: ../../include/contact_widgets.php:7
-msgid "Enter address or web location"
-msgstr "Voeg een webadres of -locatie in:"
+#: ../../mod/admin.php:1031
+msgid "Email address of the new user."
+msgstr "E-mailadres van nieuwe gebruiker"
 
-#: ../../include/contact_widgets.php:8
-msgid "Example: bob@example.com, http://example.com/barbara"
-msgstr "Voorbeeld: jan@voorbeeld.be, http://voorbeeld.nl/barbara"
+#: ../../mod/admin.php:1064
+#, php-format
+msgid "Plugin %s disabled."
+msgstr "Plugin %s uitgeschakeld."
 
-#: ../../include/contact_widgets.php:24
+#: ../../mod/admin.php:1068
 #, php-format
-msgid "%d invitation available"
-msgid_plural "%d invitations available"
-msgstr[0] "%d uitnodiging beschikbaar"
-msgstr[1] "%d uitnodigingen beschikbaar"
+msgid "Plugin %s enabled."
+msgstr "Plugin %s ingeschakeld."
 
-#: ../../include/contact_widgets.php:30
-msgid "Find People"
-msgstr "Zoek mensen"
+#: ../../mod/admin.php:1078 ../../mod/admin.php:1294
+msgid "Disable"
+msgstr "Uitschakelen"
 
-#: ../../include/contact_widgets.php:31
-msgid "Enter name or interest"
-msgstr "Vul naam of interesse in"
+#: ../../mod/admin.php:1080 ../../mod/admin.php:1296
+msgid "Enable"
+msgstr "Inschakelen"
 
-#: ../../include/contact_widgets.php:32
-msgid "Connect/Follow"
-msgstr "Verbind/Volg"
+#: ../../mod/admin.php:1103 ../../mod/admin.php:1324
+msgid "Toggle"
+msgstr "Schakelaar"
 
-#: ../../include/contact_widgets.php:33
-msgid "Examples: Robert Morgenstein, Fishing"
-msgstr "Voorbeelden: Jan Peeters, Vissen"
+#: ../../mod/admin.php:1111 ../../mod/admin.php:1334
+msgid "Author: "
+msgstr "Auteur:"
 
-#: ../../include/contact_widgets.php:36 ../../view/theme/diabook/theme.php:526
-msgid "Similar Interests"
-msgstr "Dezelfde interesses"
+#: ../../mod/admin.php:1112 ../../mod/admin.php:1335
+msgid "Maintainer: "
+msgstr "Onderhoud:"
 
-#: ../../include/contact_widgets.php:37
-msgid "Random Profile"
-msgstr "Willekeurig Profiel"
+#: ../../mod/admin.php:1254
+msgid "No themes found."
+msgstr "Geen thema's gevonden."
 
-#: ../../include/contact_widgets.php:38 ../../view/theme/diabook/theme.php:528
-msgid "Invite Friends"
-msgstr "Vrienden uitnodigen"
+#: ../../mod/admin.php:1316
+msgid "Screenshot"
+msgstr "Schermafdruk"
 
-#: ../../include/contact_widgets.php:71
-msgid "Networks"
-msgstr "Netwerken"
+#: ../../mod/admin.php:1362
+msgid "[Experimental]"
+msgstr "[Experimenteel]"
 
-#: ../../include/contact_widgets.php:74
-msgid "All Networks"
-msgstr "Alle netwerken"
+#: ../../mod/admin.php:1363
+msgid "[Unsupported]"
+msgstr "[Niet ondersteund]"
 
-#: ../../include/contact_widgets.php:104 ../../include/features.php:60
-msgid "Saved Folders"
-msgstr "Bewaarde Mappen"
+#: ../../mod/admin.php:1390
+msgid "Log settings updated."
+msgstr "Log instellingen gewijzigd"
 
-#: ../../include/contact_widgets.php:107 ../../include/contact_widgets.php:139
-msgid "Everything"
-msgstr "Alles"
+#: ../../mod/admin.php:1446
+msgid "Clear"
+msgstr "Wis"
 
-#: ../../include/contact_widgets.php:136
-msgid "Categories"
-msgstr "Categorieën"
+#: ../../mod/admin.php:1452
+msgid "Enable Debugging"
+msgstr ""
 
-#: ../../include/features.php:23
-msgid "General Features"
-msgstr "Algemene functies"
+#: ../../mod/admin.php:1453
+msgid "Log file"
+msgstr "Logbestand"
 
-#: ../../include/features.php:25
-msgid "Multiple Profiles"
-msgstr "Meerdere profielen"
+#: ../../mod/admin.php:1453
+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."
 
-#: ../../include/features.php:25
-msgid "Ability to create multiple profiles"
-msgstr "Mogelijkheid om meerdere profielen aan te maken"
+#: ../../mod/admin.php:1454
+msgid "Log level"
+msgstr "Log niveau"
 
-#: ../../include/features.php:30
-msgid "Post Composition Features"
-msgstr "Functies voor het opstellen van berichten"
+#: ../../mod/admin.php:1504
+msgid "Close"
+msgstr "Afsluiten"
 
-#: ../../include/features.php:31
-msgid "Richtext Editor"
-msgstr "RTF-tekstverwerker"
+#: ../../mod/admin.php:1510
+msgid "FTP Host"
+msgstr "FTP Server"
 
-#: ../../include/features.php:31
-msgid "Enable richtext editor"
-msgstr "Gebruik een tekstverwerker met eenvoudige opmaakfuncties"
+#: ../../mod/admin.php:1511
+msgid "FTP Path"
+msgstr "FTP Pad"
 
-#: ../../include/features.php:32
-msgid "Post Preview"
-msgstr "Voorvertoning bericht"
+#: ../../mod/admin.php:1512
+msgid "FTP User"
+msgstr "FTP Gebruiker"
 
-#: ../../include/features.php:32
-msgid "Allow previewing posts and comments before publishing them"
-msgstr ""
+#: ../../mod/admin.php:1513
+msgid "FTP Password"
+msgstr "FTP wachtwoord"
 
-#: ../../include/features.php:33
-msgid "Auto-mention Forums"
-msgstr ""
+#: ../../mod/wall_upload.php:122 ../../mod/profile_photo.php:144
+#, php-format
+msgid "Image exceeds size limit of %d"
+msgstr "Afbeelding is groter dan de toegestane %d"
 
-#: ../../include/features.php:33
-msgid ""
-"Add/remove mention when a fourm page is selected/deselected in ACL window."
-msgstr ""
+#: ../../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"
 
-#: ../../include/features.php:38
-msgid "Network Sidebar Widgets"
-msgstr "Zijbalkwidgets op netwerkpagina"
+#: ../../mod/wall_upload.php:172 ../../mod/photos.php:834
+#: ../../mod/profile_photo.php:301
+msgid "Image upload failed."
+msgstr "Uploaden van afbeelding mislukt."
 
-#: ../../include/features.php:39
-msgid "Search by Date"
-msgstr "Zoeken op datum"
+#: ../../mod/home.php:35
+#, php-format
+msgid "Welcome to %s"
+msgstr "Welkom op %s"
 
-#: ../../include/features.php:39
-msgid "Ability to select posts by date ranges"
-msgstr "Mogelijkheid om berichten te selecteren volgens datumbereik"
+#: ../../mod/openid.php:24
+msgid "OpenID protocol error. No ID returned."
+msgstr "OpenID protocol fout. Geen ID Gevonden."
 
-#: ../../include/features.php:40
-msgid "Group Filter"
-msgstr "Groepsfilter"
+#: ../../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."
 
-#: ../../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"
+#: ../../mod/network.php:142
+msgid "Search Results For:"
+msgstr "Zoekresultaten voor:"
 
-#: ../../include/features.php:41
-msgid "Network Filter"
-msgstr "Netwerkfilter"
+#: ../../mod/network.php:185 ../../mod/search.php:21
+msgid "Remove term"
+msgstr "Verwijder zoekterm"
 
-#: ../../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"
+#: ../../mod/network.php:356
+msgid "Commented Order"
+msgstr "Nieuwe reacties bovenaan"
 
-#: ../../include/features.php:42
-msgid "Save search terms for re-use"
-msgstr "Sla zoekopdrachten op voor hergebruik"
+#: ../../mod/network.php:359
+msgid "Sort by Comment Date"
+msgstr "Berichten met nieuwe reacties bovenaan"
 
-#: ../../include/features.php:47
-msgid "Network Tabs"
-msgstr "Netwerktabs"
+#: ../../mod/network.php:362
+msgid "Posted Order"
+msgstr "Nieuwe berichten bovenaan"
 
-#: ../../include/features.php:48
-msgid "Network Personal Tab"
-msgstr "Persoonlijke netwerktab"
+#: ../../mod/network.php:365
+msgid "Sort by Post Date"
+msgstr "Nieuwe berichten bovenaan"
 
-#: ../../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"
+#: ../../mod/network.php:374
+msgid "Posts that mention or involve you"
+msgstr "Alleen berichten die jou vermelden of op jou betrekking hebben"
 
-#: ../../include/features.php:49
-msgid "Network New Tab"
-msgstr "Nieuwe netwerktab"
+#: ../../mod/network.php:380
+msgid "New"
+msgstr "Nieuw"
 
-#: ../../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)"
+#: ../../mod/network.php:383
+msgid "Activity Stream - by date"
+msgstr "Activiteitenstroom - volgens datum"
 
-#: ../../include/features.php:50
-msgid "Network Shared Links Tab"
-msgstr ""
+#: ../../mod/network.php:389
+msgid "Shared Links"
+msgstr "Gedeelde links"
 
-#: ../../include/features.php:50
-msgid "Enable tab to display only Network posts with links in them"
-msgstr ""
+#: ../../mod/network.php:392
+msgid "Interesting Links"
+msgstr "Interessante links"
 
-#: ../../include/features.php:55
-msgid "Post/Comment Tools"
-msgstr "Bericht-/reactiehulpmiddelen"
+#: ../../mod/network.php:398
+msgid "Starred"
+msgstr "Met ster"
 
-#: ../../include/features.php:56
-msgid "Multiple Deletion"
-msgstr "Meervoudige verwijdering"
+#: ../../mod/network.php:401
+msgid "Favourite Posts"
+msgstr "Favoriete berichten"
 
-#: ../../include/features.php:56
-msgid "Select and delete multiple posts/comments at once"
-msgstr "Selecteer en verwijder meerdere berichten/reacties in een keer"
+#: ../../mod/network.php:463
+#, 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] "Waarschuwing: Deze groep bevat %s lid van een onveilig netwerk."
+msgstr[1] "Waarschuwing: Deze groep bevat %s leden van een onveilig netwerk."
 
-#: ../../include/features.php:57
-msgid "Edit Sent Posts"
-msgstr "Bewerk verzonden berichten"
+#: ../../mod/network.php:466
+msgid "Private messages to this group are at risk of public disclosure."
+msgstr "Privéberichten naar deze groep kunnen openbaar gemaakt worden."
 
-#: ../../include/features.php:57
-msgid "Edit and correct posts and comments after sending"
-msgstr "Bewerk en corrigeer berichten en reacties na verzending"
+#: ../../mod/network.php:520 ../../mod/content.php:119
+msgid "No such group"
+msgstr "Zo'n groep bestaat niet"
 
-#: ../../include/features.php:58
-msgid "Tagging"
-msgstr "Labelen"
+#: ../../mod/network.php:537 ../../mod/content.php:130
+msgid "Group is empty"
+msgstr "De groep is leeg"
 
-#: ../../include/features.php:58
-msgid "Ability to tag existing posts"
-msgstr "Mogelijkheid om bestaande berichten te labelen"
+#: ../../mod/network.php:544 ../../mod/content.php:134
+msgid "Group: "
+msgstr "Groep:"
 
-#: ../../include/features.php:59
-msgid "Post Categories"
-msgstr "Categorieën berichten"
+#: ../../mod/network.php:554
+msgid "Contact: "
+msgstr "Contact: "
 
-#: ../../include/features.php:59
-msgid "Add categories to your posts"
-msgstr "Voeg categorieën toe aan je berichten"
+#: ../../mod/network.php:556
+msgid "Private messages to this person are at risk of public disclosure."
+msgstr "Privéberichten naar deze persoon kunnen openbaar gemaakt worden."
 
-#: ../../include/features.php:60
-msgid "Ability to file posts under folders"
-msgstr "Mogelijkheid om berichten in mappen te bewaren"
+#: ../../mod/network.php:561
+msgid "Invalid contact."
+msgstr "Ongeldig contact."
 
-#: ../../include/features.php:61
-msgid "Dislike Posts"
-msgstr "Vind berichten niet leuk"
+#: ../../mod/filer.php:30
+msgid "- select -"
+msgstr "- Kies -"
 
-#: ../../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 ""
+#: ../../mod/friendica.php:59
+msgid "This is Friendica, version"
+msgstr "Dit is Friendica, versie"
 
-#: ../../include/features.php:63
-msgid "Mute Post Notifications"
-msgstr ""
+#: ../../mod/friendica.php:60
+msgid "running at web location"
+msgstr "draaiend op web-adres"
 
-#: ../../include/features.php:63
-msgid "Ability to mute notifications for a thread"
-msgstr ""
+#: ../../mod/friendica.php:62
+msgid ""
+"Please visit <a href=\"http://friendica.com\">Friendica.com</a> to learn "
+"more about the Friendica project."
+msgstr "Bezoek <a href=\"http://friendica.com\">Friendica.com</a> om meer te leren over het Friendica project."
 
-#: ../../include/follow.php:32
-msgid "Connect URL missing."
-msgstr ""
+#: ../../mod/friendica.php:64
+msgid "Bug reports and issues: please visit"
+msgstr "Bug rapporten en problemen: bezoek"
 
-#: ../../include/follow.php:59
+#: ../../mod/friendica.php:65
 msgid ""
-"This site is not configured to allow communications with other networks."
-msgstr "Deze website is niet geconfigureerd voor communicatie met andere netwerken."
+"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"
 
-#: ../../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."
+#: ../../mod/friendica.php:79
+msgid "Installed plugins/addons/apps:"
+msgstr "Geïnstalleerde plugins/toepassingen:"
 
-#: ../../include/follow.php:78
-msgid "The profile address specified does not provide adequate information."
-msgstr ""
+#: ../../mod/friendica.php:92
+msgid "No installed plugins/addons/apps"
+msgstr "Geen plugins of toepassingen geïnstalleerd"
 
-#: ../../include/follow.php:82
-msgid "An author or name was not found."
-msgstr ""
+#: ../../mod/apps.php:11
+msgid "Applications"
+msgstr "Toepassingen"
 
-#: ../../include/follow.php:84
-msgid "No browser URL could be matched to this address."
-msgstr ""
+#: ../../mod/apps.php:14
+msgid "No installed applications."
+msgstr "Geen toepassingen geïnstalleerd"
 
-#: ../../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."
+#: ../../mod/photos.php:67 ../../mod/photos.php:1262 ../../mod/photos.php:1819
+msgid "Upload New Photos"
+msgstr "Nieuwe foto's uploaden"
 
-#: ../../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."
+#: ../../mod/photos.php:144
+msgid "Contact information unavailable"
+msgstr "Contactinformatie niet beschikbaar"
 
-#: ../../include/follow.php:93
-msgid ""
-"The profile address specified belongs to a network which has been disabled "
-"on this site."
-msgstr ""
+#: ../../mod/photos.php:165
+msgid "Album not found."
+msgstr "Album niet gevonden"
 
-#: ../../include/follow.php:103
-msgid ""
-"Limited profile. This person will be unable to receive direct/personal "
-"notifications from you."
-msgstr ""
+#: ../../mod/photos.php:188 ../../mod/photos.php:200 ../../mod/photos.php:1204
+msgid "Delete Album"
+msgstr "Verwijder album"
 
-#: ../../include/follow.php:205
-msgid "Unable to retrieve contact information."
-msgstr ""
+#: ../../mod/photos.php:198
+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?"
 
-#: ../../include/follow.php:258
-msgid "following"
-msgstr "volgend"
+#: ../../mod/photos.php:278 ../../mod/photos.php:289 ../../mod/photos.php:1515
+msgid "Delete Photo"
+msgstr "Verwijder foto"
 
-#: ../../include/group.php:25
-msgid ""
-"A deleted group with this name was revived. Existing item permissions "
-"<strong>may</strong> apply to this group and any future members. If this is "
-"not what you intended, please create another group with a different name."
-msgstr "Een verwijderde groep met deze naam is weer tot leven gewekt. Bestaande itemrechten <strong>kunnen</strong> voor deze groep en toekomstige leden gelden. Wanneer je niet zo had bedoeld kan je een andere groep met een andere naam creëren. "
+#: ../../mod/photos.php:287
+msgid "Do you really want to delete this photo?"
+msgstr "Wil je echt deze foto verwijderen?"
 
-#: ../../include/group.php:207
-msgid "Default privacy group for new contacts"
-msgstr ""
+#: ../../mod/photos.php:662
+#, php-format
+msgid "%1$s was tagged in %2$s by %3$s"
+msgstr "%1$s is gelabeld in %2$s door %3$s"
 
-#: ../../include/group.php:226
-msgid "Everybody"
-msgstr "Iedereen"
+#: ../../mod/photos.php:662
+msgid "a photo"
+msgstr "een foto"
 
-#: ../../include/group.php:249
-msgid "edit"
-msgstr "verander"
+#: ../../mod/photos.php:767
+msgid "Image exceeds size limit of "
+msgstr "Afbeelding is groter dan de maximale afmeting van"
 
-#: ../../include/group.php:271
-msgid "Edit group"
-msgstr "Verander groep"
+#: ../../mod/photos.php:775
+msgid "Image file is empty."
+msgstr "Afbeeldingsbestand is leeg."
 
-#: ../../include/group.php:272
-msgid "Create a new group"
-msgstr "Maak nieuwe groep"
+#: ../../mod/photos.php:930
+msgid "No photos selected"
+msgstr "Geen foto's geselecteerd"
 
-#: ../../include/group.php:273
-msgid "Contacts not in any group"
-msgstr ""
+#: ../../mod/photos.php:1094
+#, 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."
 
-#: ../../include/datetime.php:43 ../../include/datetime.php:45
-msgid "Miscellaneous"
-msgstr "Diversen"
+#: ../../mod/photos.php:1129
+msgid "Upload Photos"
+msgstr "Upload foto's"
 
-#: ../../include/datetime.php:153 ../../include/datetime.php:290
-msgid "year"
-msgstr "jaar"
+#: ../../mod/photos.php:1133 ../../mod/photos.php:1199
+msgid "New album name: "
+msgstr "Nieuwe albumnaam: "
 
-#: ../../include/datetime.php:158 ../../include/datetime.php:291
-msgid "month"
-msgstr "maand"
+#: ../../mod/photos.php:1134
+msgid "or existing album name: "
+msgstr "of bestaande albumnaam: "
 
-#: ../../include/datetime.php:163 ../../include/datetime.php:293
-msgid "day"
-msgstr "dag"
+#: ../../mod/photos.php:1135
+msgid "Do not show a status post for this upload"
+msgstr "Toon geen bericht op je tijdlijn van deze upload"
 
-#: ../../include/datetime.php:276
-msgid "never"
-msgstr "nooit"
+#: ../../mod/photos.php:1137 ../../mod/photos.php:1510
+msgid "Permissions"
+msgstr "Rechten"
 
-#: ../../include/datetime.php:282
-msgid "less than a second ago"
-msgstr "minder dan een seconde geleden"
+#: ../../mod/photos.php:1148
+msgid "Private Photo"
+msgstr "Privé foto"
 
-#: ../../include/datetime.php:290
-msgid "years"
-msgstr "jaren"
+#: ../../mod/photos.php:1149
+msgid "Public Photo"
+msgstr "Publieke foto"
 
-#: ../../include/datetime.php:291
-msgid "months"
-msgstr "maanden"
+#: ../../mod/photos.php:1212
+msgid "Edit Album"
+msgstr "Album wijzigen"
 
-#: ../../include/datetime.php:292
-msgid "week"
-msgstr "week"
+#: ../../mod/photos.php:1218
+msgid "Show Newest First"
+msgstr "Toon niewste eerst"
 
-#: ../../include/datetime.php:292
-msgid "weeks"
-msgstr "weken"
+#: ../../mod/photos.php:1220
+msgid "Show Oldest First"
+msgstr "Toon oudste eerst"
 
-#: ../../include/datetime.php:293
-msgid "days"
-msgstr "dagen"
+#: ../../mod/photos.php:1248 ../../mod/photos.php:1802
+msgid "View Photo"
+msgstr "Bekijk foto"
 
-#: ../../include/datetime.php:294
-msgid "hour"
-msgstr "uur"
+#: ../../mod/photos.php:1294
+msgid "Permission denied. Access to this item may be restricted."
+msgstr "Toegang geweigerd. Toegang tot dit item is mogelijk beperkt."
 
-#: ../../include/datetime.php:294
-msgid "hours"
-msgstr "uren"
+#: ../../mod/photos.php:1296
+msgid "Photo not available"
+msgstr "Foto is niet beschikbaar"
 
-#: ../../include/datetime.php:295
-msgid "minute"
-msgstr "minuut"
+#: ../../mod/photos.php:1352
+msgid "View photo"
+msgstr "Bekijk foto"
 
-#: ../../include/datetime.php:295
-msgid "minutes"
-msgstr "minuten"
+#: ../../mod/photos.php:1352
+msgid "Edit photo"
+msgstr "Bewerk foto"
 
-#: ../../include/datetime.php:296
-msgid "second"
-msgstr "seconde"
+#: ../../mod/photos.php:1353
+msgid "Use as profile photo"
+msgstr "Gebruik als profielfoto"
 
-#: ../../include/datetime.php:296
-msgid "seconds"
-msgstr "secondes"
+#: ../../mod/photos.php:1378
+msgid "View Full Size"
+msgstr "Bekijk in volledig formaat"
 
-#: ../../include/datetime.php:305
-#, php-format
-msgid "%1$d %2$s ago"
-msgstr "%1$d %2$s geleden"
-
-#: ../../include/datetime.php:477 ../../include/items.php:2211
-#, php-format
-msgid "%s's birthday"
-msgstr "%s's verjaardag"
+#: ../../mod/photos.php:1457
+msgid "Tags: "
+msgstr "Labels: "
 
-#: ../../include/datetime.php:478 ../../include/items.php:2212
-#, php-format
-msgid "Happy Birthday %s"
-msgstr "Gefeliciteerd %s"
+#: ../../mod/photos.php:1460
+msgid "[Remove any tag]"
+msgstr "[Alle labels verwijderen]"
 
-#: ../../include/acl_selectors.php:333
-msgid "Visible to everybody"
-msgstr "Zichtbaar voor iedereen"
+#: ../../mod/photos.php:1500
+msgid "Rotate CW (right)"
+msgstr "Roteren met de klok mee (rechts)"
 
-#: ../../include/acl_selectors.php:334 ../../view/theme/diabook/config.php:142
-#: ../../view/theme/diabook/theme.php:621
-msgid "show"
-msgstr "tonen"
+#: ../../mod/photos.php:1501
+msgid "Rotate CCW (left)"
+msgstr "Roteren tegen de klok in (links)"
 
-#: ../../include/acl_selectors.php:335 ../../view/theme/diabook/config.php:142
-#: ../../view/theme/diabook/theme.php:621
-msgid "don't show"
-msgstr "Niet tonen"
+#: ../../mod/photos.php:1503
+msgid "New album name"
+msgstr "Nieuwe albumnaam"
 
-#: ../../include/message.php:15 ../../include/message.php:172
-msgid "[no subject]"
-msgstr "[geen onderwerp]"
+#: ../../mod/photos.php:1506
+msgid "Caption"
+msgstr "Onderschrift"
 
-#: ../../include/Contact.php:115
-msgid "stopped following"
-msgstr ""
+#: ../../mod/photos.php:1508
+msgid "Add a Tag"
+msgstr "Een label toevoegen"
 
-#: ../../include/Contact.php:228 ../../include/conversation.php:882
-msgid "Poke"
-msgstr "Aanstoten"
+#: ../../mod/photos.php:1512
+msgid ""
+"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
+msgstr "Voorbeeld: @bob, @Barbara_Jansen, @jan@voorbeeld.nl, #Ardennen, #camping "
 
-#: ../../include/Contact.php:229 ../../include/conversation.php:876
-msgid "View Status"
-msgstr "Bekijk status"
+#: ../../mod/photos.php:1521
+msgid "Private photo"
+msgstr "Privé foto"
 
-#: ../../include/Contact.php:230 ../../include/conversation.php:877
-msgid "View Profile"
-msgstr "Bekijk profiel"
+#: ../../mod/photos.php:1522
+msgid "Public photo"
+msgstr "Publieke foto"
 
-#: ../../include/Contact.php:231 ../../include/conversation.php:878
-msgid "View Photos"
-msgstr "Bekijk foto's"
+#: ../../mod/photos.php:1817
+msgid "Recent Photos"
+msgstr "Recente foto's"
 
-#: ../../include/Contact.php:232 ../../include/Contact.php:255
-#: ../../include/conversation.php:879
-msgid "Network Posts"
-msgstr "Netwerkberichten"
+#: ../../mod/bookmarklet.php:41
+msgid "The post was created"
+msgstr ""
 
-#: ../../include/Contact.php:233 ../../include/Contact.php:255
-#: ../../include/conversation.php:880
-msgid "Edit Contact"
-msgstr "Bewerk contact"
+#: ../../mod/follow.php:27
+msgid "Contact added"
+msgstr "Contact toegevoegd"
 
-#: ../../include/Contact.php:234
-msgid "Drop Contact"
-msgstr "Verwijder contact"
+#: ../../mod/uimport.php:66
+msgid "Move account"
+msgstr "Account verplaatsen"
 
-#: ../../include/Contact.php:235 ../../include/Contact.php:255
-#: ../../include/conversation.php:881
-msgid "Send PM"
-msgstr "Stuur een privébericht"
+#: ../../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."
 
-#: ../../include/security.php:22
-msgid "Welcome "
-msgstr "Welkom"
+#: ../../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."
 
-#: ../../include/security.php:23
-msgid "Please upload a profile photo."
-msgstr "Upload een profielfoto."
+#: ../../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."
 
-#: ../../include/security.php:26
-msgid "Welcome back "
-msgstr "Welkom terug "
+#: ../../mod/uimport.php:70
+msgid "Account file"
+msgstr "Account bestand"
 
-#: ../../include/security.php:366
+#: ../../mod/uimport.php:70
 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."
+"To export your account, go to \"Settings->Export your personal data\" and "
+"select \"Export account\""
 msgstr ""
 
-#: ../../include/conversation.php:118 ../../include/conversation.php:246
-#: ../../include/text.php:1966 ../../view/theme/diabook/theme.php:463
-msgid "event"
-msgstr "gebeurtenis"
-
-#: ../../include/conversation.php:207
-#, php-format
-msgid "%1$s poked %2$s"
-msgstr "%1$s stootte %2$s aan"
-
-#: ../../include/conversation.php:211 ../../include/text.php:1005
-msgid "poked"
-msgstr "aangestoten"
-
-#: ../../include/conversation.php:291
-msgid "post/item"
-msgstr "bericht/item"
+#: ../../mod/invite.php:27
+msgid "Total invitation limit exceeded."
+msgstr "Totale uitnodigingslimiet overschreden."
 
-#: ../../include/conversation.php:292
+#: ../../mod/invite.php:49
 #, 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:772
-msgid "remove"
-msgstr "verwijder"
+msgid "%s : Not a valid email address."
+msgstr "%s: Geen geldig e-mailadres."
 
-#: ../../include/conversation.php:776
-msgid "Delete Selected Items"
-msgstr "Geselecteerde items verwijderen"
+#: ../../mod/invite.php:73
+msgid "Please join us on Friendica"
+msgstr "Kom bij ons op Friendica"
 
-#: ../../include/conversation.php:875
-msgid "Follow Thread"
-msgstr "Conversatie volgen"
+#: ../../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."
 
-#: ../../include/conversation.php:944
+#: ../../mod/invite.php:89
 #, php-format
-msgid "%s likes this."
-msgstr "%s vindt dit leuk."
+msgid "%s : Message delivery failed."
+msgstr "%s : Aflevering van bericht mislukt."
 
-#: ../../include/conversation.php:944
+#: ../../mod/invite.php:93
 #, php-format
-msgid "%s doesn't like this."
-msgstr "%s vindt dit niet leuk."
+msgid "%d message sent."
+msgid_plural "%d messages sent."
+msgstr[0] "%d bericht verzonden."
+msgstr[1] "%d berichten verzonden."
 
-#: ../../include/conversation.php:949
-#, php-format
-msgid "<span  %1$s>%2$d people</span> like this"
-msgstr "<span  %1$s>%2$d mensen</span> vinden dit leuk"
+#: ../../mod/invite.php:112
+msgid "You have no more invitations available"
+msgstr "Je kunt geen uitnodigingen meer sturen"
 
-#: ../../include/conversation.php:952
+#: ../../mod/invite.php:120
 #, php-format
-msgid "<span  %1$s>%2$d people</span> don't like this"
-msgstr "<span  %1$s>%2$d people</span> vinden dit niet leuk"
-
-#: ../../include/conversation.php:966
-msgid "and"
-msgstr "en"
+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."
 
-#: ../../include/conversation.php:972
+#: ../../mod/invite.php:122
 #, php-format
-msgid ", and %d other people"
-msgstr ", en %d andere mensen"
+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."
 
-#: ../../include/conversation.php:974
+#: ../../mod/invite.php:123
 #, php-format
-msgid "%s like this."
-msgstr "%s vindt dit leuk."
+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."
 
-#: ../../include/conversation.php:974
-#, php-format
-msgid "%s don't like this."
-msgstr "%s vindt dit niet leuk."
+#: ../../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."
 
-#: ../../include/conversation.php:1001 ../../include/conversation.php:1019
-msgid "Visible to <strong>everybody</strong>"
-msgstr "Zichtbaar voor <strong>iedereen</strong>"
+#: ../../mod/invite.php:132
+msgid "Send invitations"
+msgstr "Verstuur uitnodigingen"
 
-#: ../../include/conversation.php:1003 ../../include/conversation.php:1021
-msgid "Please enter a video link/URL:"
-msgstr "Vul een videolink/URL in:"
+#: ../../mod/invite.php:133
+msgid "Enter email addresses, one per line:"
+msgstr "Vul e-mailadressen in, één per lijn:"
 
-#: ../../include/conversation.php:1004 ../../include/conversation.php:1022
-msgid "Please enter an audio link/URL:"
-msgstr "Vul een audiolink/URL in:"
+#: ../../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."
 
-#: ../../include/conversation.php:1005 ../../include/conversation.php:1023
-msgid "Tag term:"
-msgstr "Label:"
+#: ../../mod/invite.php:137
+msgid "You will need to supply this invitation code: $invite_code"
+msgstr "Je zult deze uitnodigingscode moeten invullen: $invite_code"
 
-#: ../../include/conversation.php:1007 ../../include/conversation.php:1025
-msgid "Where are you right now?"
-msgstr "Waar ben je nu?"
+#: ../../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:"
 
-#: ../../include/conversation.php:1008
-msgid "Delete item(s)?"
-msgstr "Item(s) verwijderen?"
+#: ../../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"
 
-#: ../../include/conversation.php:1051
-msgid "Post to Email"
-msgstr "Verzenden per e-mail"
+#: ../../mod/viewsrc.php:7
+msgid "Access denied."
+msgstr "Toegang geweigerd"
 
-#: ../../include/conversation.php:1056
-#, php-format
-msgid "Connectors disabled, since \"%s\" is enabled."
-msgstr ""
+#: ../../mod/lostpass.php:19
+msgid "No valid account found."
+msgstr "Geen geldige account gevonden."
 
-#: ../../include/conversation.php:1111
-msgid "permissions"
-msgstr "rechten"
+#: ../../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."
 
-#: ../../include/conversation.php:1135
-msgid "Post to Groups"
-msgstr "Verzenden naar Groepen"
+#: ../../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 ""
 
-#: ../../include/conversation.php:1136
-msgid "Post to Contacts"
-msgstr "Verzenden naar Contacten"
+#: ../../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 ""
 
-#: ../../include/conversation.php:1137
-msgid "Private post"
-msgstr "Privé verzending"
+#: ../../mod/lostpass.php:72
+#, php-format
+msgid "Password reset requested at %s"
+msgstr "Op %s werd gevraagd je wachtwoord opnieuw in te stellen"
 
-#: ../../include/network.php:895
-msgid "view full size"
-msgstr "Volledig formaat"
+#: ../../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."
 
-#: ../../include/text.php:297
-msgid "newer"
-msgstr "nieuwere berichten"
+#: ../../mod/lostpass.php:110
+msgid "Your password has been reset as requested."
+msgstr "Je wachtwoord is opnieuw ingesteld zoals gevraagd."
 
-#: ../../include/text.php:299
-msgid "older"
-msgstr "oudere berichten"
+#: ../../mod/lostpass.php:111
+msgid "Your new password is"
+msgstr "Je nieuwe wachtwoord is"
 
-#: ../../include/text.php:304
-msgid "prev"
-msgstr "vorige"
+#: ../../mod/lostpass.php:112
+msgid "Save or copy your new password - and then"
+msgstr "Bewaar of kopieer je nieuw wachtwoord - en dan"
 
-#: ../../include/text.php:306
-msgid "first"
-msgstr "eerste"
+#: ../../mod/lostpass.php:113
+msgid "click here to login"
+msgstr "klik hier om in te loggen"
 
-#: ../../include/text.php:338
-msgid "last"
-msgstr "laatste"
+#: ../../mod/lostpass.php:114
+msgid ""
+"Your password may be changed from the <em>Settings</em> page after "
+"successful login."
+msgstr "Je kunt dit wachtwoord veranderen nadat je bent ingelogd op de <em>Instellingen></em> pagina."
 
-#: ../../include/text.php:341
-msgid "next"
-msgstr "volgende"
+#: ../../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 ""
 
-#: ../../include/text.php:855
-msgid "No contacts"
-msgstr "Geen contacten"
+#: ../../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 ""
 
-#: ../../include/text.php:864
+#: ../../mod/lostpass.php:147
 #, php-format
-msgid "%d Contact"
-msgid_plural "%d Contacts"
-msgstr[0] "%d contact"
-msgstr[1] "%d contacten"
+msgid "Your password has been changed at %s"
+msgstr "Je wachtwoord is veranderd op %s"
 
-#: ../../include/text.php:1005
-msgid "poke"
-msgstr "aanstoten"
+#: ../../mod/lostpass.php:159
+msgid "Forgot your Password?"
+msgstr "Wachtwoord vergeten?"
 
-#: ../../include/text.php:1006
-msgid "ping"
-msgstr "ping"
+#: ../../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."
 
-#: ../../include/text.php:1006
-msgid "pinged"
-msgstr "gepingd"
+#: ../../mod/lostpass.php:161
+msgid "Nickname or Email: "
+msgstr "Bijnaam of e-mail:"
 
-#: ../../include/text.php:1007
-msgid "prod"
-msgstr "porren"
+#: ../../mod/lostpass.php:162
+msgid "Reset"
+msgstr "Opnieuw"
 
-#: ../../include/text.php:1007
-msgid "prodded"
-msgstr "gepord"
+#: ../../mod/babel.php:17
+msgid "Source (bbcode) text:"
+msgstr "Bron (bbcode) tekst:"
 
-#: ../../include/text.php:1008
-msgid "slap"
-msgstr "slaan"
+#: ../../mod/babel.php:23
+msgid "Source (Diaspora) text to convert to BBcode:"
+msgstr "Bron (Diaspora) tekst om naar BBCode om te zetten:"
 
-#: ../../include/text.php:1008
-msgid "slapped"
-msgstr "geslagen"
+#: ../../mod/babel.php:31
+msgid "Source input: "
+msgstr "Bron ingave:"
 
-#: ../../include/text.php:1009
-msgid "finger"
-msgstr "finger"
+#: ../../mod/babel.php:35
+msgid "bb2html (raw HTML): "
+msgstr "bb2html (ruwe HTML):"
 
-#: ../../include/text.php:1009
-msgid "fingered"
-msgstr "gerfingerd"
+#: ../../mod/babel.php:39
+msgid "bb2html: "
+msgstr "bb2html:"
 
-#: ../../include/text.php:1010
-msgid "rebuff"
-msgstr "afpoeieren"
+#: ../../mod/babel.php:43
+msgid "bb2html2bb: "
+msgstr "bb2html2bb: "
 
-#: ../../include/text.php:1010
-msgid "rebuffed"
-msgstr "afgepoeierd"
+#: ../../mod/babel.php:47
+msgid "bb2md: "
+msgstr "bb2md: "
 
-#: ../../include/text.php:1024
-msgid "happy"
-msgstr "Blij"
+#: ../../mod/babel.php:51
+msgid "bb2md2html: "
+msgstr "bb2md2html: "
 
-#: ../../include/text.php:1025
-msgid "sad"
-msgstr "Verdrietig"
+#: ../../mod/babel.php:55
+msgid "bb2dia2bb: "
+msgstr "bb2dia2bb: "
 
-#: ../../include/text.php:1026
-msgid "mellow"
-msgstr "mellow"
+#: ../../mod/babel.php:59
+msgid "bb2md2html2bb: "
+msgstr "bb2md2html2bb: "
 
-#: ../../include/text.php:1027
-msgid "tired"
-msgstr "vermoeid"
+#: ../../mod/babel.php:69
+msgid "Source input (Diaspora format): "
+msgstr "Bron ingave (Diaspora formaat):"
 
-#: ../../include/text.php:1028
-msgid "perky"
-msgstr "parmantig"
+#: ../../mod/babel.php:74
+msgid "diaspora2bb: "
+msgstr "diaspora2bb: "
 
-#: ../../include/text.php:1029
-msgid "angry"
-msgstr "boos"
+#: ../../mod/tagrm.php:41
+msgid "Tag removed"
+msgstr "Label verwijderd"
 
-#: ../../include/text.php:1030
-msgid "stupified"
-msgstr "verbijsterd"
+#: ../../mod/tagrm.php:79
+msgid "Remove Item Tag"
+msgstr "Verwijder label van item"
 
-#: ../../include/text.php:1031
-msgid "puzzled"
-msgstr "onzeker"
+#: ../../mod/tagrm.php:81
+msgid "Select a tag to remove: "
+msgstr "Selecteer een label om te verwijderen: "
 
-#: ../../include/text.php:1032
-msgid "interested"
-msgstr "Geïnteresseerd"
+#: ../../mod/removeme.php:46 ../../mod/removeme.php:49
+msgid "Remove My Account"
+msgstr "Verwijder mijn account"
 
-#: ../../include/text.php:1033
-msgid "bitter"
-msgstr "bitter"
+#: ../../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."
 
-#: ../../include/text.php:1034
-msgid "cheerful"
-msgstr "vrolijk"
+#: ../../mod/removeme.php:48
+msgid "Please enter your password for verification:"
+msgstr "Voer je wachtwoord in voor verificatie:"
 
-#: ../../include/text.php:1035
-msgid "alive"
-msgstr "levend"
+#: ../../mod/profperm.php:25 ../../mod/profperm.php:55
+msgid "Invalid profile identifier."
+msgstr "Ongeldige profiel-identificatie."
 
-#: ../../include/text.php:1036
-msgid "annoyed"
-msgstr "verveeld"
+#: ../../mod/profperm.php:101
+msgid "Profile Visibility Editor"
+msgstr ""
 
-#: ../../include/text.php:1037
-msgid "anxious"
-msgstr "bezorgd"
+#: ../../mod/profperm.php:114
+msgid "Visible To"
+msgstr "Zichtbaar voor"
 
-#: ../../include/text.php:1038
-msgid "cranky"
-msgstr "humeurig "
+#: ../../mod/profperm.php:130
+msgid "All Contacts (with secure profile access)"
+msgstr "Alle contacten (met veilige profieltoegang)"
 
-#: ../../include/text.php:1039
-msgid "disturbed"
-msgstr "verontrust"
+#: ../../mod/match.php:12
+msgid "Profile Match"
+msgstr "Profielmatch"
 
-#: ../../include/text.php:1040
-msgid "frustrated"
-msgstr "gefrustreerd"
+#: ../../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."
 
-#: ../../include/text.php:1041
-msgid "motivated"
-msgstr "gemotiveerd"
+#: ../../mod/match.php:57
+msgid "is interested in:"
+msgstr "Is geïnteresseerd in:"
 
-#: ../../include/text.php:1042
-msgid "relaxed"
-msgstr "ontspannen"
+#: ../../mod/events.php:66
+msgid "Event title and start time are required."
+msgstr "Titel en begintijd van de gebeurtenis zijn vereist."
 
-#: ../../include/text.php:1043
-msgid "surprised"
-msgstr "verbaasd"
+#: ../../mod/events.php:291
+msgid "l, F j"
+msgstr "l j F"
 
-#: ../../include/text.php:1213
-msgid "Monday"
-msgstr "Maandag"
+#: ../../mod/events.php:313
+msgid "Edit event"
+msgstr "Gebeurtenis bewerken"
 
-#: ../../include/text.php:1213
-msgid "Tuesday"
-msgstr "Dinsdag"
+#: ../../mod/events.php:371
+msgid "Create New Event"
+msgstr "Maak een nieuwe gebeurtenis"
 
-#: ../../include/text.php:1213
-msgid "Wednesday"
-msgstr "Woensdag"
+#: ../../mod/events.php:372
+msgid "Previous"
+msgstr "Vorige"
 
-#: ../../include/text.php:1213
-msgid "Thursday"
-msgstr "Donderdag"
+#: ../../mod/events.php:373 ../../mod/install.php:207
+msgid "Next"
+msgstr "Volgende"
 
-#: ../../include/text.php:1213
-msgid "Friday"
-msgstr "Vrijdag"
+#: ../../mod/events.php:446
+msgid "hour:minute"
+msgstr "uur:minuut"
 
-#: ../../include/text.php:1213
-msgid "Saturday"
-msgstr "Zaterdag"
+#: ../../mod/events.php:456
+msgid "Event details"
+msgstr "Gebeurtenis details"
 
-#: ../../include/text.php:1213
-msgid "Sunday"
-msgstr "Zondag"
+#: ../../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."
 
-#: ../../include/text.php:1217
-msgid "January"
-msgstr "Januari"
+#: ../../mod/events.php:459
+msgid "Event Starts:"
+msgstr "Gebeurtenis begint:"
 
-#: ../../include/text.php:1217
-msgid "February"
-msgstr "Februari"
+#: ../../mod/events.php:459 ../../mod/events.php:473
+msgid "Required"
+msgstr "Vereist"
 
-#: ../../include/text.php:1217
-msgid "March"
-msgstr "Maart"
+#: ../../mod/events.php:462
+msgid "Finish date/time is not known or not relevant"
+msgstr "Einddatum/tijd is niet gekend of niet relevant"
 
-#: ../../include/text.php:1217
-msgid "April"
-msgstr "April"
+#: ../../mod/events.php:464
+msgid "Event Finishes:"
+msgstr "Gebeurtenis eindigt:"
 
-#: ../../include/text.php:1217
-msgid "May"
-msgstr "Mei"
+#: ../../mod/events.php:467
+msgid "Adjust for viewer timezone"
+msgstr "Pas aan aan de tijdzone van de gebruiker"
 
-#: ../../include/text.php:1217
-msgid "June"
-msgstr "Juni"
+#: ../../mod/events.php:469
+msgid "Description:"
+msgstr "Beschrijving:"
 
-#: ../../include/text.php:1217
-msgid "July"
-msgstr "Juli"
+#: ../../mod/events.php:473
+msgid "Title:"
+msgstr "Titel:"
 
-#: ../../include/text.php:1217
-msgid "August"
-msgstr "Augustus"
+#: ../../mod/events.php:475
+msgid "Share this event"
+msgstr "Deel deze gebeurtenis"
 
-#: ../../include/text.php:1217
-msgid "September"
-msgstr "September"
+#: ../../mod/ping.php:240
+msgid "{0} wants to be your friend"
+msgstr "{0} wilt je vriend worden"
 
-#: ../../include/text.php:1217
-msgid "October"
-msgstr "Oktober"
+#: ../../mod/ping.php:245
+msgid "{0} sent you a message"
+msgstr "{0} stuurde jou een bericht"
 
-#: ../../include/text.php:1217
-msgid "November"
-msgstr "November"
+#: ../../mod/ping.php:250
+msgid "{0} requested registration"
+msgstr "{0} vroeg om zich te registreren"
 
-#: ../../include/text.php:1217
-msgid "December"
-msgstr "December"
+#: ../../mod/ping.php:256
+#, php-format
+msgid "{0} commented %s's post"
+msgstr "{0} gaf een reactie op het bericht van %s"
 
-#: ../../include/text.php:1437
-msgid "bytes"
-msgstr "bytes"
+#: ../../mod/ping.php:261
+#, php-format
+msgid "{0} liked %s's post"
+msgstr "{0} vond het bericht van %s leuk"
 
-#: ../../include/text.php:1461 ../../include/text.php:1473
-msgid "Click to open/close"
-msgstr "klik om te openen/sluiten"
+#: ../../mod/ping.php:266
+#, php-format
+msgid "{0} disliked %s's post"
+msgstr "{0} vond het bericht van %s niet leuk"
 
-#: ../../include/text.php:1702 ../../include/user.php:247
-#: ../../view/theme/duepuntozero/config.php:44
-msgid "default"
-msgstr "standaard"
+#: ../../mod/ping.php:271
+#, php-format
+msgid "{0} is now friends with %s"
+msgstr "{0} is nu bevriend met %s"
 
-#: ../../include/text.php:1714
-msgid "Select an alternate language"
-msgstr "Kies een andere taal"
+#: ../../mod/ping.php:276
+msgid "{0} posted"
+msgstr "{0} plaatste"
 
-#: ../../include/text.php:1970
-msgid "activity"
-msgstr "activiteit"
+#: ../../mod/ping.php:281
+#, php-format
+msgid "{0} tagged %s's post with #%s"
+msgstr "{0} labelde %s's bericht met #%s"
 
-#: ../../include/text.php:1973
-msgid "post"
-msgstr "bericht"
+#: ../../mod/ping.php:287
+msgid "{0} mentioned you in a post"
+msgstr "{0} vermeldde je in een bericht"
 
-#: ../../include/text.php:2141
-msgid "Item filed"
-msgstr "Item bewaard"
+#: ../../mod/mood.php:133
+msgid "Mood"
+msgstr "Stemming"
 
-#: ../../include/bbcode.php:428 ../../include/bbcode.php:1047
-#: ../../include/bbcode.php:1048
-msgid "Image/photo"
-msgstr "Afbeelding/foto"
+#: ../../mod/mood.php:134
+msgid "Set your current mood and tell your friends"
+msgstr "Stel je huidige stemming in, en vertel het je vrienden"
 
-#: ../../include/bbcode.php:528
-#, php-format
-msgid "<a href=\"%1$s\" target=\"_blank\">%2$s</a> %3$s"
-msgstr ""
+#: ../../mod/search.php:174 ../../mod/community.php:62
+#: ../../mod/community.php:71
+msgid "No results."
+msgstr "Geen resultaten."
 
-#: ../../include/bbcode.php:562
-#, php-format
-msgid ""
-"<span><a href=\"%s\" target=\"_blank\">%s</a> wrote the following <a "
-"href=\"%s\" target=\"_blank\">post</a>"
-msgstr ""
+#: ../../mod/message.php:67
+msgid "Unable to locate contact information."
+msgstr "Ik kan geen contact informatie vinden."
 
-#: ../../include/bbcode.php:1011 ../../include/bbcode.php:1031
-msgid "$1 wrote:"
-msgstr "$1 schreef:"
+#: ../../mod/message.php:207
+msgid "Do you really want to delete this message?"
+msgstr "Wil je echt dit bericht verwijderen?"
 
-#: ../../include/bbcode.php:1056 ../../include/bbcode.php:1057
-msgid "Encrypted content"
-msgstr "Versleutelde inhoud"
+#: ../../mod/message.php:227
+msgid "Message deleted."
+msgstr "Bericht verwijderd."
 
-#: ../../include/notifier.php:786 ../../include/delivery.php:456
-msgid "(no subject)"
-msgstr "(geen onderwerp)"
+#: ../../mod/message.php:258
+msgid "Conversation removed."
+msgstr "Gesprek verwijderd."
 
-#: ../../include/notifier.php:796 ../../include/delivery.php:467
-#: ../../include/enotify.php:33
-msgid "noreply"
-msgstr "geen reactie"
+#: ../../mod/message.php:371
+msgid "No messages."
+msgstr "Geen berichten."
 
-#: ../../include/dba_pdo.php:72 ../../include/dba.php:56
+#: ../../mod/message.php:378
 #, php-format
-msgid "Cannot locate DNS info for database server '%s'"
-msgstr ""
+msgid "Unknown sender - %s"
+msgstr "Onbekende afzender - %s"
 
-#: ../../include/contact_selectors.php:32
-msgid "Unknown | Not categorised"
-msgstr "Onbekend | Niet "
+#: ../../mod/message.php:381
+#, php-format
+msgid "You and %s"
+msgstr "Jij en %s"
 
-#: ../../include/contact_selectors.php:33
-msgid "Block immediately"
-msgstr "Onmiddellijk blokkeren"
+#: ../../mod/message.php:384
+#, php-format
+msgid "%s and You"
+msgstr "%s en jij"
 
-#: ../../include/contact_selectors.php:34
-msgid "Shady, spammer, self-marketer"
-msgstr "Onbetrouwbaar, spammer, zelfpromotor"
+#: ../../mod/message.php:405 ../../mod/message.php:546
+msgid "Delete conversation"
+msgstr "Verwijder gesprek"
 
-#: ../../include/contact_selectors.php:35
-msgid "Known to me, but no opinion"
-msgstr "Bekend, maar geen mening"
+#: ../../mod/message.php:408
+msgid "D, d M Y - g:i A"
+msgstr "D, d M Y - g:i A"
 
-#: ../../include/contact_selectors.php:36
-msgid "OK, probably harmless"
-msgstr "OK, waarschijnlijk onschadelijk"
+#: ../../mod/message.php:411
+#, php-format
+msgid "%d message"
+msgid_plural "%d messages"
+msgstr[0] "%d bericht"
+msgstr[1] "%d berichten"
 
-#: ../../include/contact_selectors.php:37
-msgid "Reputable, has my trust"
-msgstr "Gerenommeerd, heeft mijn vertrouwen"
+#: ../../mod/message.php:450
+msgid "Message not available."
+msgstr "Bericht niet beschikbaar."
 
-#: ../../include/contact_selectors.php:60
-msgid "Weekly"
-msgstr "wekelijks"
+#: ../../mod/message.php:520
+msgid "Delete message"
+msgstr "Verwijder bericht"
 
-#: ../../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"
+#: ../../mod/message.php:548
+msgid ""
+"No secure communications available. You <strong>may</strong> be able to "
+"respond from the sender's profile page."
+msgstr "Geen beveiligde communicatie beschikbaar. Je kunt <strong>misschien</strong> antwoorden vanaf de profiel-pagina van de afzender."
 
-#: ../../include/contact_selectors.php:82
-msgid "Zot!"
-msgstr "Zot!"
+#: ../../mod/message.php:552
+msgid "Send Reply"
+msgstr "Verstuur Antwoord"
 
-#: ../../include/contact_selectors.php:83
-msgid "LinkedIn"
-msgstr "Linkedln"
+#: ../../mod/community.php:23
+msgid "Not available."
+msgstr "Niet beschikbaar"
 
-#: ../../include/contact_selectors.php:84
-msgid "XMPP/IM"
-msgstr "XMPP/IM"
+#: ../../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"
 
-#: ../../include/contact_selectors.php:85
-msgid "MySpace"
-msgstr "Myspace"
+#: ../../mod/profiles.php:37
+msgid "Profile deleted."
+msgstr "Profiel verwijderd"
 
-#: ../../include/contact_selectors.php:87
-msgid "Google+"
-msgstr "Google+"
+#: ../../mod/profiles.php:55 ../../mod/profiles.php:89
+msgid "Profile-"
+msgstr "Profiel-"
 
-#: ../../include/contact_selectors.php:88
-msgid "pump.io"
-msgstr "pump.io"
+#: ../../mod/profiles.php:74 ../../mod/profiles.php:117
+msgid "New profile created."
+msgstr "Nieuw profiel aangemaakt."
 
-#: ../../include/contact_selectors.php:89
-msgid "Twitter"
-msgstr "Twitter"
+#: ../../mod/profiles.php:95
+msgid "Profile unavailable to clone."
+msgstr "Profiel niet beschikbaar om te klonen."
 
-#: ../../include/contact_selectors.php:90
-msgid "Diaspora Connector"
-msgstr "Diaspora-connector"
+#: ../../mod/profiles.php:189
+msgid "Profile Name is required."
+msgstr "Profielnaam is vereist."
 
-#: ../../include/contact_selectors.php:91
-msgid "Statusnet"
-msgstr "Statusnet"
+#: ../../mod/profiles.php:340
+msgid "Marital Status"
+msgstr "Echtelijke staat"
 
-#: ../../include/contact_selectors.php:92
-msgid "App.net"
-msgstr ""
+#: ../../mod/profiles.php:344
+msgid "Romantic Partner"
+msgstr "Romantische Partner"
 
-#: ../../include/Scrape.php:614
-msgid " on Last.fm"
-msgstr " op Last.fm"
+#: ../../mod/profiles.php:348
+msgid "Likes"
+msgstr "Houdt van"
 
-#: ../../include/bb2diaspora.php:154 ../../include/event.php:20
-msgid "Starts:"
-msgstr "Begint:"
+#: ../../mod/profiles.php:352
+msgid "Dislikes"
+msgstr "Houdt niet van"
 
-#: ../../include/bb2diaspora.php:162 ../../include/event.php:30
-msgid "Finishes:"
-msgstr "Eindigt:"
+#: ../../mod/profiles.php:356
+msgid "Work/Employment"
+msgstr "Werk"
 
-#: ../../include/profile_advanced.php:22
-msgid "j F, Y"
-msgstr "F j Y"
+#: ../../mod/profiles.php:359
+msgid "Religion"
+msgstr "Godsdienst"
 
-#: ../../include/profile_advanced.php:23
-msgid "j F"
-msgstr "F j"
+#: ../../mod/profiles.php:363
+msgid "Political Views"
+msgstr "Politieke standpunten"
 
-#: ../../include/profile_advanced.php:30
-msgid "Birthday:"
-msgstr "Verjaardag:"
+#: ../../mod/profiles.php:367
+msgid "Gender"
+msgstr "Geslacht"
 
-#: ../../include/profile_advanced.php:34
-msgid "Age:"
-msgstr "Leeftijd:"
+#: ../../mod/profiles.php:371
+msgid "Sexual Preference"
+msgstr "Seksuele Voorkeur"
 
-#: ../../include/profile_advanced.php:43
-#, php-format
-msgid "for %1$d %2$s"
-msgstr "voor %1$d %2$s"
+#: ../../mod/profiles.php:375
+msgid "Homepage"
+msgstr "Tijdlijn"
 
-#: ../../include/profile_advanced.php:52
-msgid "Tags:"
-msgstr "Labels:"
+#: ../../mod/profiles.php:379 ../../mod/profiles.php:698
+msgid "Interests"
+msgstr "Interesses"
 
-#: ../../include/profile_advanced.php:56
-msgid "Religion:"
-msgstr "Religie:"
+#: ../../mod/profiles.php:383
+msgid "Address"
+msgstr "Adres"
 
-#: ../../include/profile_advanced.php:60
-msgid "Hobbies/Interests:"
-msgstr "Hobby:"
+#: ../../mod/profiles.php:390 ../../mod/profiles.php:694
+msgid "Location"
+msgstr "Plaats"
 
-#: ../../include/profile_advanced.php:67
-msgid "Contact information and Social Networks:"
-msgstr "Contactinformatie en sociale netwerken:"
+#: ../../mod/profiles.php:473
+msgid "Profile updated."
+msgstr "Profiel bijgewerkt."
 
-#: ../../include/profile_advanced.php:69
-msgid "Musical interests:"
-msgstr "Muzikale interesse "
+#: ../../mod/profiles.php:568
+msgid " and "
+msgstr "en"
 
-#: ../../include/profile_advanced.php:71
-msgid "Books, literature:"
-msgstr "Boeken, literatuur:"
+#: ../../mod/profiles.php:576
+msgid "public profile"
+msgstr "publiek profiel"
 
-#: ../../include/profile_advanced.php:73
-msgid "Television:"
-msgstr "Televisie"
+#: ../../mod/profiles.php:579
+#, php-format
+msgid "%1$s changed %2$s to &ldquo;%3$s&rdquo;"
+msgstr "%1$s veranderde %2$s naar &ldquo;%3$s&rdquo;"
 
-#: ../../include/profile_advanced.php:75
-msgid "Film/dance/culture/entertainment:"
-msgstr "Film/dans/cultuur/ontspanning:"
+#: ../../mod/profiles.php:580
+#, php-format
+msgid " - Visit %1$s's %2$s"
+msgstr " - Bezoek %2$s van %1$s"
 
-#: ../../include/profile_advanced.php:77
-msgid "Love/Romance:"
-msgstr "Liefde/romance:"
+#: ../../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."
 
-#: ../../include/profile_advanced.php:79
-msgid "Work/employment:"
-msgstr "Werk/beroep:"
+#: ../../mod/profiles.php:658
+msgid "Hide contacts and friends:"
+msgstr ""
 
-#: ../../include/profile_advanced.php:81
-msgid "School/education:"
-msgstr "School/opleiding:"
+#: ../../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?"
 
-#: ../../include/plugin.php:455 ../../include/plugin.php:457
-msgid "Click here to upgrade."
-msgstr ""
+#: ../../mod/profiles.php:685
+msgid "Edit Profile Details"
+msgstr "Profieldetails bewerken"
 
-#: ../../include/plugin.php:463
-msgid "This action exceeds the limits set by your subscription plan."
-msgstr ""
+#: ../../mod/profiles.php:687
+msgid "Change Profile Photo"
+msgstr "Profielfoto wijzigen"
 
-#: ../../include/plugin.php:468
-msgid "This action is not available under your subscription plan."
-msgstr ""
+#: ../../mod/profiles.php:688
+msgid "View this profile"
+msgstr "Dit profiel bekijken"
 
-#: ../../include/nav.php:73
-msgid "End this session"
-msgstr "Deze sessie beëindigen"
+#: ../../mod/profiles.php:689
+msgid "Create a new profile using these settings"
+msgstr "Nieuw profiel aanmaken met deze instellingen"
 
-#: ../../include/nav.php:76 ../../include/nav.php:148
-#: ../../view/theme/diabook/theme.php:123
-msgid "Your posts and conversations"
-msgstr "Jouw berichten en conversaties"
+#: ../../mod/profiles.php:690
+msgid "Clone this profile"
+msgstr "Dit profiel klonen"
 
-#: ../../include/nav.php:77 ../../view/theme/diabook/theme.php:124
-msgid "Your profile page"
-msgstr "Jouw profiel pagina"
+#: ../../mod/profiles.php:691
+msgid "Delete this profile"
+msgstr "Dit profiel verwijderen"
 
-#: ../../include/nav.php:78 ../../view/theme/diabook/theme.php:126
-msgid "Your photos"
-msgstr "Jouw foto's"
+#: ../../mod/profiles.php:692
+msgid "Basic information"
+msgstr ""
 
-#: ../../include/nav.php:79
-msgid "Your videos"
+#: ../../mod/profiles.php:693
+msgid "Profile picture"
 msgstr ""
 
-#: ../../include/nav.php:80 ../../view/theme/diabook/theme.php:127
-msgid "Your events"
-msgstr "Jouw gebeurtenissen"
+#: ../../mod/profiles.php:695
+msgid "Preferences"
+msgstr ""
 
-#: ../../include/nav.php:81 ../../view/theme/diabook/theme.php:128
-msgid "Personal notes"
-msgstr "Persoonlijke nota's"
+#: ../../mod/profiles.php:696
+msgid "Status information"
+msgstr ""
 
-#: ../../include/nav.php:81
-msgid "Your personal notes"
+#: ../../mod/profiles.php:697
+msgid "Additional information"
 msgstr ""
 
-#: ../../include/nav.php:92
-msgid "Sign in"
-msgstr "Inloggen"
+#: ../../mod/profiles.php:699 ../../mod/newmember.php:36
+#: ../../mod/profile_photo.php:244
+msgid "Upload Profile Photo"
+msgstr "Profielfoto uploaden"
 
-#: ../../include/nav.php:105
-msgid "Home Page"
-msgstr "Jouw tijdlijn"
+#: ../../mod/profiles.php:700
+msgid "Profile Name:"
+msgstr "Profiel Naam:"
 
-#: ../../include/nav.php:109
-msgid "Create an account"
-msgstr "Maak een accoount"
-
-#: ../../include/nav.php:114
-msgid "Help and documentation"
-msgstr "Hulp en documentatie"
+#: ../../mod/profiles.php:701
+msgid "Your Full Name:"
+msgstr "Je volledige naam:"
 
-#: ../../include/nav.php:117
-msgid "Apps"
-msgstr "Apps"
+#: ../../mod/profiles.php:702
+msgid "Title/Description:"
+msgstr "Titel/Beschrijving:"
 
-#: ../../include/nav.php:117
-msgid "Addon applications, utilities, games"
-msgstr "Extra toepassingen, hulpmiddelen of spelletjes"
+#: ../../mod/profiles.php:703
+msgid "Your Gender:"
+msgstr "Je Geslacht:"
 
-#: ../../include/nav.php:119
-msgid "Search site content"
-msgstr "Doorzoek de inhoud van de website"
+#: ../../mod/profiles.php:704
+#, php-format
+msgid "Birthday (%s):"
+msgstr "Geboortedatum (%s):"
 
-#: ../../include/nav.php:129
-msgid "Conversations on this site"
-msgstr "Conversaties op deze website"
+#: ../../mod/profiles.php:705
+msgid "Street Address:"
+msgstr "Postadres:"
 
-#: ../../include/nav.php:131
-msgid "Conversations on the network"
-msgstr ""
+#: ../../mod/profiles.php:706
+msgid "Locality/City:"
+msgstr "Gemeente/Stad:"
 
-#: ../../include/nav.php:133
-msgid "Directory"
-msgstr "Gids"
+#: ../../mod/profiles.php:707
+msgid "Postal/Zip Code:"
+msgstr "Postcode:"
 
-#: ../../include/nav.php:133
-msgid "People directory"
-msgstr "Personengids"
+#: ../../mod/profiles.php:708
+msgid "Country:"
+msgstr "Land:"
 
-#: ../../include/nav.php:135
-msgid "Information"
-msgstr "Informatie"
+#: ../../mod/profiles.php:709
+msgid "Region/State:"
+msgstr "Regio/Staat:"
 
-#: ../../include/nav.php:135
-msgid "Information about this friendica instance"
-msgstr ""
+#: ../../mod/profiles.php:710
+msgid "<span class=\"heart\">&hearts;</span> Marital Status:"
+msgstr "<span class=\"heart\">&hearts;</span> Echtelijke Staat:"
 
-#: ../../include/nav.php:145
-msgid "Conversations from your friends"
-msgstr "Conversaties van je vrienden"
+#: ../../mod/profiles.php:711
+msgid "Who: (if applicable)"
+msgstr "Wie: (indien toepasbaar)"
 
-#: ../../include/nav.php:146
-msgid "Network Reset"
-msgstr "Netwerkpagina opnieuw instellen"
+#: ../../mod/profiles.php:712
+msgid "Examples: cathy123, Cathy Williams, cathy@example.com"
+msgstr "Voorbeelden: Kathleen123, Kathleen Peeters, kathleen@voorbeeld.nl"
 
-#: ../../include/nav.php:146
-msgid "Load Network page with no filters"
-msgstr "Laad de netwerkpagina zonder filters"
+#: ../../mod/profiles.php:713
+msgid "Since [date]:"
+msgstr "Sinds [datum]:"
 
-#: ../../include/nav.php:154
-msgid "Friend Requests"
-msgstr "Vriendschapsverzoeken"
+#: ../../mod/profiles.php:715
+msgid "Homepage URL:"
+msgstr "Adres tijdlijn:"
 
-#: ../../include/nav.php:156
-msgid "See all notifications"
-msgstr "Toon alle notificaties"
+#: ../../mod/profiles.php:718
+msgid "Religious Views:"
+msgstr "Geloof:"
 
-#: ../../include/nav.php:157
-msgid "Mark all system notifications seen"
-msgstr "Alle systeemnotificaties als gelezen markeren"
+#: ../../mod/profiles.php:719
+msgid "Public Keywords:"
+msgstr "Publieke Sleutelwoorden:"
 
-#: ../../include/nav.php:161
-msgid "Private mail"
-msgstr "Privéberichten"
+#: ../../mod/profiles.php:720
+msgid "Private Keywords:"
+msgstr "Privé Sleutelwoorden:"
 
-#: ../../include/nav.php:162
-msgid "Inbox"
-msgstr "Inbox"
+#: ../../mod/profiles.php:723
+msgid "Example: fishing photography software"
+msgstr "Voorbeeld: vissen fotografie software"
 
-#: ../../include/nav.php:163
-msgid "Outbox"
-msgstr "Verzonden berichten"
+#: ../../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)"
 
-#: ../../include/nav.php:167
-msgid "Manage"
-msgstr "Beheren"
+#: ../../mod/profiles.php:725
+msgid "(Used for searching profiles, never shown to others)"
+msgstr "(Gebruikt om profielen te zoeken, nooit aan anderen getoond)"
 
-#: ../../include/nav.php:167
-msgid "Manage other pages"
-msgstr "Andere pagina's beheren"
+#: ../../mod/profiles.php:726
+msgid "Tell us about yourself..."
+msgstr "Vertel iets over jezelf..."
 
-#: ../../include/nav.php:172
-msgid "Account settings"
-msgstr "Account instellingen"
+#: ../../mod/profiles.php:727
+msgid "Hobbies/Interests"
+msgstr "Hobby's/Interesses"
 
-#: ../../include/nav.php:175
-msgid "Manage/Edit Profiles"
-msgstr "Beheer/Wijzig Profielen"
+#: ../../mod/profiles.php:728
+msgid "Contact information and Social Networks"
+msgstr "Contactinformatie en sociale netwerken"
 
-#: ../../include/nav.php:177
-msgid "Manage/edit friends and contacts"
-msgstr "Beheer/Wijzig vrienden en contacten"
+#: ../../mod/profiles.php:729
+msgid "Musical interests"
+msgstr "Muzikale interesses"
 
-#: ../../include/nav.php:184
-msgid "Site setup and configuration"
-msgstr "Website opzetten en configureren"
+#: ../../mod/profiles.php:730
+msgid "Books, literature"
+msgstr "Boeken, literatuur"
 
-#: ../../include/nav.php:188
-msgid "Navigation"
-msgstr "Navigatie"
+#: ../../mod/profiles.php:731
+msgid "Television"
+msgstr "Televisie"
 
-#: ../../include/nav.php:188
-msgid "Site map"
-msgstr "Sitemap"
+#: ../../mod/profiles.php:732
+msgid "Film/dance/culture/entertainment"
+msgstr "Film/dans/cultuur/ontspanning"
 
-#: ../../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"
+#: ../../mod/profiles.php:733
+msgid "Love/romance"
+msgstr "Liefde/romance"
 
-#: ../../include/api.php:771
-#, php-format
-msgid "Daily posting limit of %d posts reached. The post was rejected."
-msgstr ""
+#: ../../mod/profiles.php:734
+msgid "Work/employment"
+msgstr "Werk"
 
-#: ../../include/api.php:790
-#, php-format
-msgid "Weekly posting limit of %d posts reached. The post was rejected."
-msgstr ""
+#: ../../mod/profiles.php:735
+msgid "School/education"
+msgstr "School/opleiding"
 
-#: ../../include/api.php:809
-#, php-format
-msgid "Monthly posting limit of %d posts reached. The post was rejected."
-msgstr ""
+#: ../../mod/profiles.php:740
+msgid ""
+"This is your <strong>public</strong> profile.<br />It <strong>may</strong> "
+"be visible to anybody using the internet."
+msgstr "Dit is jouw <strong>publiek</strong> profiel.<br />Het <strong>kan</strong> zichtbaar zijn voor iedereen op het internet."
 
-#: ../../include/api.php:1272
-msgid "There is no status with this id."
-msgstr "Er is geen status met dit kenmerk"
+#: ../../mod/profiles.php:750 ../../mod/directory.php:113
+msgid "Age: "
+msgstr "Leeftijd:"
 
-#: ../../include/api.php:1342
-msgid "There is no conversation with this id."
-msgstr ""
+#: ../../mod/profiles.php:803
+msgid "Edit/Manage Profiles"
+msgstr "Wijzig/Beheer Profielen"
 
-#: ../../include/api.php:1614
-msgid "Invalid request."
+#: ../../mod/install.php:117
+msgid "Friendica Communications Server - Setup"
 msgstr ""
 
-#: ../../include/api.php:1625
-msgid "Invalid item."
-msgstr ""
+#: ../../mod/install.php:123
+msgid "Could not connect to database."
+msgstr "Kon geen toegang krijgen tot de database."
 
-#: ../../include/api.php:1635
-msgid "Invalid action. "
-msgstr ""
+#: ../../mod/install.php:127
+msgid "Could not create table."
+msgstr "Kon tabel niet aanmaken."
 
-#: ../../include/api.php:1643
-msgid "DB error"
-msgstr ""
+#: ../../mod/install.php:133
+msgid "Your Friendica site database has been installed."
+msgstr "De database van je Friendica-website is geïnstalleerd."
 
-#: ../../include/user.php:40
-msgid "An invitation is required."
-msgstr "Een uitnodiging is vereist."
+#: ../../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."
 
-#: ../../include/user.php:45
-msgid "Invitation could not be verified."
-msgstr "Uitnodiging kon niet geverifieerd worden."
+#: ../../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\"."
 
-#: ../../include/user.php:53
-msgid "Invalid OpenID url"
-msgstr "Ongeldige OpenID url"
+#: ../../mod/install.php:203
+msgid "System check"
+msgstr "Systeemcontrole"
 
-#: ../../include/user.php:74
-msgid "Please enter the required information."
-msgstr "Vul de vereiste informatie in."
+#: ../../mod/install.php:208
+msgid "Check again"
+msgstr "Controleer opnieuw"
 
-#: ../../include/user.php:88
-msgid "Please use a shorter name."
-msgstr "gebruik een kortere naam"
+#: ../../mod/install.php:227
+msgid "Database connection"
+msgstr "Verbinding met database"
 
-#: ../../include/user.php:90
-msgid "Name too short."
-msgstr "Naam te kort"
+#: ../../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."
 
-#: ../../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."
+#: ../../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. "
 
-#: ../../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."
+#: ../../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."
 
-#: ../../include/user.php:113
-msgid "Not a valid email address."
-msgstr "Geen geldig e-mailadres."
+#: ../../mod/install.php:234
+msgid "Database Server Name"
+msgstr "Servernaam database"
 
-#: ../../include/user.php:126
-msgid "Cannot use that email."
-msgstr "Ik kan die e-mail niet gebruiken."
+#: ../../mod/install.php:235
+msgid "Database Login Name"
+msgstr "Gebruikersnaam database"
 
-#: ../../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."
+#: ../../mod/install.php:236
+msgid "Database Login Password"
+msgstr "Wachtwoord database"
 
-#: ../../include/user.php:138 ../../include/user.php:236
-msgid "Nickname is already registered. Please choose another."
-msgstr "Bijnaam is al geregistreerd. Kies een andere."
+#: ../../mod/install.php:237
+msgid "Database Name"
+msgstr "Naam database"
 
-#: ../../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."
+#: ../../mod/install.php:238 ../../mod/install.php:277
+msgid "Site administrator email address"
+msgstr "E-mailadres van de websitebeheerder"
 
-#: ../../include/user.php:164
-msgid "SERIOUS ERROR: Generation of security keys failed."
-msgstr "ERNSTIGE FOUT: aanmaken van beveiligingssleutels mislukt."
+#: ../../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."
 
-#: ../../include/user.php:222
-msgid "An error occurred during registration. Please try again."
-msgstr ""
+#: ../../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"
 
-#: ../../include/user.php:257
-msgid "An error occurred creating your default profile. Please try again."
-msgstr ""
+#: ../../mod/install.php:267
+msgid "Site settings"
+msgstr "Website-instellingen"
 
-#: ../../include/user.php:289 ../../include/user.php:293
-#: ../../include/profile_selectors.php:42
-msgid "Friends"
-msgstr "Vrienden"
+#: ../../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."
 
-#: ../../include/user.php:377
-#, php-format
+#: ../../mod/install.php:322
 msgid ""
-"\n"
-"\t\tDear %1$s,\n"
-"\t\t\tThank you for registering at %2$s. Your account has been created.\n"
-"\t"
-msgstr ""
+"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 <a "
+"href='http://friendica.com/node/27'>'Activating scheduled tasks'</a>"
+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  <a href='http://friendica.com/node/27'>'Activeren van geplande taken'</a>"
 
-#: ../../include/user.php:381
-#, php-format
+#: ../../mod/install.php:326
+msgid "PHP executable path"
+msgstr "PATH van het PHP commando"
+
+#: ../../mod/install.php:326
 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 ""
+"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."
 
-#: ../../include/diaspora.php:703
-msgid "Sharing notification from Diaspora network"
+#: ../../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 ""
 
-#: ../../include/diaspora.php:2520
-msgid "Attachments:"
-msgstr "Bijlagen:"
+#: ../../mod/install.php:341
+msgid "Found PHP version: "
+msgstr "Gevonden PHP versie:"
 
-#: ../../include/items.php:4555
-msgid "Do you really want to delete this item?"
-msgstr "Wil je echt dit item verwijderen?"
+#: ../../mod/install.php:343
+msgid "PHP cli binary"
+msgstr ""
 
-#: ../../include/items.php:4778
-msgid "Archives"
-msgstr "Archieven"
+#: ../../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."
 
-#: ../../include/profile_selectors.php:6
-msgid "Male"
-msgstr "Man"
+#: ../../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."
 
-#: ../../include/profile_selectors.php:6
-msgid "Female"
-msgstr "Vrouw"
+#: ../../mod/install.php:357
+msgid "PHP register_argc_argv"
+msgstr "PHP register_argc_argv"
 
-#: ../../include/profile_selectors.php:6
-msgid "Currently Male"
-msgstr "Momenteel mannelijk"
+#: ../../mod/install.php:378
+msgid ""
+"Error: the \"openssl_pkey_new\" function on this system is not able to "
+"generate encryption keys"
+msgstr ""
 
-#: ../../include/profile_selectors.php:6
-msgid "Currently Female"
-msgstr "Momenteel vrouwelijk"
+#: ../../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."
 
-#: ../../include/profile_selectors.php:6
-msgid "Mostly Male"
-msgstr "Meestal mannelijk"
+#: ../../mod/install.php:381
+msgid "Generate encryption keys"
+msgstr ""
 
-#: ../../include/profile_selectors.php:6
-msgid "Mostly Female"
-msgstr "Meestal vrouwelijk"
+#: ../../mod/install.php:388
+msgid "libCurl PHP module"
+msgstr "libCurl PHP module"
 
-#: ../../include/profile_selectors.php:6
-msgid "Transgender"
-msgstr "Transgender"
+#: ../../mod/install.php:389
+msgid "GD graphics PHP module"
+msgstr "GD graphics PHP module"
 
-#: ../../include/profile_selectors.php:6
-msgid "Intersex"
-msgstr "Interseksueel"
+#: ../../mod/install.php:390
+msgid "OpenSSL PHP module"
+msgstr "OpenSSL PHP module"
 
-#: ../../include/profile_selectors.php:6
-msgid "Transsexual"
-msgstr "Transseksueel"
+#: ../../mod/install.php:391
+msgid "mysqli PHP module"
+msgstr "mysqli PHP module"
 
-#: ../../include/profile_selectors.php:6
-msgid "Hermaphrodite"
-msgstr "Hermafrodiet"
+#: ../../mod/install.php:392
+msgid "mb_string PHP module"
+msgstr "mb_string PHP module"
 
-#: ../../include/profile_selectors.php:6
-msgid "Neuter"
-msgstr "Genderneutraal"
+#: ../../mod/install.php:397 ../../mod/install.php:399
+msgid "Apache mod_rewrite module"
+msgstr "Apache mod_rewrite module"
 
-#: ../../include/profile_selectors.php:6
-msgid "Non-specific"
-msgstr "Niet-specifiek"
+#: ../../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."
 
-#: ../../include/profile_selectors.php:6
-msgid "Other"
-msgstr "Anders"
+#: ../../mod/install.php:405
+msgid "Error: libCURL PHP module required but not installed."
+msgstr "Fout: PHP-module libCURL is vereist, maar niet geïnstalleerd."
 
-#: ../../include/profile_selectors.php:6
-msgid "Undecided"
-msgstr "Onbeslist"
+#: ../../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."
 
-#: ../../include/profile_selectors.php:23
-msgid "Males"
-msgstr "Manen"
+#: ../../mod/install.php:413
+msgid "Error: openssl PHP module required but not installed."
+msgstr "Fout: PHP-module openssl is vereist, maar niet geïnstalleerd."
 
-#: ../../include/profile_selectors.php:23
-msgid "Females"
-msgstr "Vrouwen"
+#: ../../mod/install.php:417
+msgid "Error: mysqli PHP module required but not installed."
+msgstr "Fout: PHP-module mysqli is vereist, maar niet geïnstalleerd."
 
-#: ../../include/profile_selectors.php:23
-msgid "Gay"
-msgstr "Homo"
+#: ../../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."
 
-#: ../../include/profile_selectors.php:23
-msgid "Lesbian"
-msgstr "Lesbie"
+#: ../../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."
 
-#: ../../include/profile_selectors.php:23
-msgid "No Preference"
-msgstr "Geen voorkeur"
+#: ../../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."
 
-#: ../../include/profile_selectors.php:23
-msgid "Bisexual"
-msgstr "Biseksueel"
+#: ../../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."
 
-#: ../../include/profile_selectors.php:23
-msgid "Autosexual"
-msgstr "Autoseksueel"
+#: ../../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."
 
-#: ../../include/profile_selectors.php:23
-msgid "Abstinent"
-msgstr "Onthouder"
+#: ../../mod/install.php:444
+msgid ".htconfig.php is writable"
+msgstr ".htconfig.php is schrijfbaar"
 
-#: ../../include/profile_selectors.php:23
-msgid "Virgin"
-msgstr "Maagd"
+#: ../../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."
 
-#: ../../include/profile_selectors.php:23
-msgid "Deviant"
-msgstr "Afwijkend"
+#: ../../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."
 
-#: ../../include/profile_selectors.php:23
-msgid "Fetish"
-msgstr "Fetisj"
+#: ../../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."
 
-#: ../../include/profile_selectors.php:23
-msgid "Oodles"
-msgstr "Veel"
+#: ../../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."
 
-#: ../../include/profile_selectors.php:23
-msgid "Nonsexual"
-msgstr "Niet seksueel"
+#: ../../mod/install.php:460
+msgid "view/smarty3 is writable"
+msgstr "view/smarty3 is schrijfbaar"
 
-#: ../../include/profile_selectors.php:42
-msgid "Single"
-msgstr "Alleenstaand"
+#: ../../mod/install.php:472
+msgid ""
+"Url rewrite in .htaccess is not working. Check your server configuration."
+msgstr ""
 
-#: ../../include/profile_selectors.php:42
-msgid "Lonely"
-msgstr "Eenzaam"
+#: ../../mod/install.php:474
+msgid "Url rewrite is working"
+msgstr ""
 
-#: ../../include/profile_selectors.php:42
-msgid "Available"
-msgstr "Beschikbaar"
+#: ../../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."
 
-#: ../../include/profile_selectors.php:42
-msgid "Unavailable"
-msgstr "Onbeschikbaar"
+#: ../../mod/install.php:523
+msgid "<h1>What next</h1>"
+msgstr "<h1>Wat nu</h1>"
 
-#: ../../include/profile_selectors.php:42
-msgid "Has crush"
-msgstr "Verliefd"
+#: ../../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."
 
-#: ../../include/profile_selectors.php:42
-msgid "Infatuated"
-msgstr "Smoorverliefd"
+#: ../../mod/help.php:31
+msgid "Help:"
+msgstr "Help:"
 
-#: ../../include/profile_selectors.php:42
-msgid "Dating"
-msgstr "Aan het daten"
+#: ../../mod/crepair.php:106
+msgid "Contact settings applied."
+msgstr "Contactinstellingen toegepast."
 
-#: ../../include/profile_selectors.php:42
-msgid "Unfaithful"
-msgstr "Ontrouw"
+#: ../../mod/crepair.php:108
+msgid "Contact update failed."
+msgstr "Aanpassen van contact mislukt."
 
-#: ../../include/profile_selectors.php:42
-msgid "Sex Addict"
-msgstr "Seksverslaafd"
+#: ../../mod/crepair.php:139
+msgid "Repair Contact Settings"
+msgstr "Contactinstellingen herstellen"
 
-#: ../../include/profile_selectors.php:42
-msgid "Friends/Benefits"
-msgstr "Vriendschap plus"
+#: ../../mod/crepair.php:141
+msgid ""
+"<strong>WARNING: This is highly advanced</strong> and if you enter incorrect"
+" information your communications with this contact may stop working."
+msgstr ""
 
-#: ../../include/profile_selectors.php:42
-msgid "Casual"
-msgstr "Ongebonden/vluchtig"
+#: ../../mod/crepair.php:142
+msgid ""
+"Please use your browser 'Back' button <strong>now</strong> if you are "
+"uncertain what to do on this page."
+msgstr "Gebruik <strong>nu</strong> de \"terug\"-knop in je webbrowser wanneer je niet weet wat je op deze pagina moet doen."
 
-#: ../../include/profile_selectors.php:42
-msgid "Engaged"
-msgstr "Verloofd"
+#: ../../mod/crepair.php:148
+msgid "Return to contact editor"
+msgstr "Ga terug naar contactbewerker"
 
-#: ../../include/profile_selectors.php:42
-msgid "Married"
-msgstr "Getrouwd"
+#: ../../mod/crepair.php:159 ../../mod/crepair.php:161
+msgid "No mirroring"
+msgstr ""
 
-#: ../../include/profile_selectors.php:42
-msgid "Imaginarily married"
-msgstr "Denkbeeldig getrouwd"
+#: ../../mod/crepair.php:159
+msgid "Mirror as forwarded posting"
+msgstr ""
 
-#: ../../include/profile_selectors.php:42
-msgid "Partners"
-msgstr "Partners"
+#: ../../mod/crepair.php:159 ../../mod/crepair.php:161
+msgid "Mirror as my own posting"
+msgstr ""
 
-#: ../../include/profile_selectors.php:42
-msgid "Cohabiting"
-msgstr "Samenwonend"
+#: ../../mod/crepair.php:166
+msgid "Account Nickname"
+msgstr "Bijnaam account"
 
-#: ../../include/profile_selectors.php:42
-msgid "Common law"
-msgstr "Common-law-huwelijk"
+#: ../../mod/crepair.php:167
+msgid "@Tagname - overrides Name/Nickname"
+msgstr "@Labelnaam - krijgt voorrang op naam/bijnaam"
 
-#: ../../include/profile_selectors.php:42
-msgid "Happy"
-msgstr "Blij"
+#: ../../mod/crepair.php:168
+msgid "Account URL"
+msgstr "URL account"
 
-#: ../../include/profile_selectors.php:42
-msgid "Not looking"
-msgstr ""
+#: ../../mod/crepair.php:169
+msgid "Friend Request URL"
+msgstr "URL vriendschapsverzoek"
 
-#: ../../include/profile_selectors.php:42
-msgid "Swinger"
-msgstr "Swinger"
+#: ../../mod/crepair.php:170
+msgid "Friend Confirm URL"
+msgstr "URL vriendschapsbevestiging"
 
-#: ../../include/profile_selectors.php:42
-msgid "Betrayed"
-msgstr "Bedrogen"
+#: ../../mod/crepair.php:171
+msgid "Notification Endpoint URL"
+msgstr ""
 
-#: ../../include/profile_selectors.php:42
-msgid "Separated"
-msgstr "Uit elkaar"
+#: ../../mod/crepair.php:172
+msgid "Poll/Feed URL"
+msgstr "URL poll/feed"
 
-#: ../../include/profile_selectors.php:42
-msgid "Unstable"
-msgstr "Onstabiel"
+#: ../../mod/crepair.php:173
+msgid "New photo from this URL"
+msgstr "Nieuwe foto van deze URL"
 
-#: ../../include/profile_selectors.php:42
-msgid "Divorced"
-msgstr "Gescheiden"
+#: ../../mod/crepair.php:174
+msgid "Remote Self"
+msgstr ""
 
-#: ../../include/profile_selectors.php:42
-msgid "Imaginarily divorced"
-msgstr "Denkbeeldig gescheiden"
+#: ../../mod/crepair.php:176
+msgid "Mirror postings from this contact"
+msgstr ""
 
-#: ../../include/profile_selectors.php:42
-msgid "Widowed"
-msgstr "Weduwnaar/weduwe"
+#: ../../mod/crepair.php:176
+msgid ""
+"Mark this contact as remote_self, this will cause friendica to repost new "
+"entries from this contact."
+msgstr ""
 
-#: ../../include/profile_selectors.php:42
-msgid "Uncertain"
-msgstr "Onzeker"
+#: ../../mod/newmember.php:6
+msgid "Welcome to Friendica"
+msgstr "Welkom bij Friendica"
 
-#: ../../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/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 <!item_type!>"
-msgstr "%s <!item_type!>"
-
-#: ../../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"
+#: ../../mod/newmember.php:8
+msgid "New Member Checklist"
+msgstr "Checklist voor nieuwe leden"
 
-#: ../../include/enotify.php:176
-#, php-format
-msgid "%1$s tagged you at %2$s"
-msgstr "%1$s heeft jou in %2$s genoemd"
+#: ../../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."
 
-#: ../../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]."
+#: ../../mod/newmember.php:14
+msgid "Getting Started"
+msgstr "Aan de slag"
 
-#: ../../include/enotify.php:188
-#, php-format
-msgid "[Friendica:Notify] %s shared a new post"
-msgstr ""
+#: ../../mod/newmember.php:18
+msgid "Friendica Walk-Through"
+msgstr "Doorloop Friendica"
 
-#: ../../include/enotify.php:189
-#, php-format
-msgid "%1$s shared a new post at %2$s"
-msgstr ""
+#: ../../mod/newmember.php:18
+msgid ""
+"On your <em>Quick Start</em> page - find a brief introduction to your "
+"profile and network tabs, make some new connections, and find some groups to"
+" join."
+msgstr "Op je <em>Snelstart</em> pagina kun je een korte inleiding vinden over je profiel en netwerk tabs, om enkele nieuwe connecties te leggen en groepen te vinden om lid van te worden."
 
-#: ../../include/enotify.php:190
-#, php-format
-msgid "%1$s [url=%2$s]shared a post[/url]."
-msgstr ""
+#: ../../mod/newmember.php:26
+msgid "Go to Your Settings"
+msgstr "Ga naar je instellingen"
 
-#: ../../include/enotify.php:202
-#, php-format
-msgid "[Friendica:Notify] %1$s poked you"
-msgstr "[Friendica:Notify] %1$s heeft jou aangestoten"
+#: ../../mod/newmember.php:26
+msgid ""
+"On your <em>Settings</em> page -  change your initial password. Also make a "
+"note of your Identity Address. This looks just like an email address - and "
+"will be useful in making friends on the free social web."
+msgstr "Verander je initieel wachtwoord op je <em>instellingenpagina</em>. Noteer ook het adres van je identiteit. Dit ziet er uit als een e-mailadres - en zal nuttig zijn om vrienden te maken op het vrije sociale web."
 
-#: ../../include/enotify.php:203
-#, php-format
-msgid "%1$s poked you at %2$s"
-msgstr "%1$s heeft jou aangestoten op %2$s"
+#: ../../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."
 
-#: ../../include/enotify.php:204
-#, php-format
-msgid "%1$s [url=%2$s]poked you[/url]."
-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 "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."
 
-#: ../../include/enotify.php:219
-#, php-format
-msgid "[Friendica:Notify] %s tagged your post"
-msgstr "[Friendica:Notificatie] %s heeft jouw bericht gelabeld"
+#: ../../mod/newmember.php:38
+msgid "Edit Your Profile"
+msgstr "Bewerk je profiel"
 
-#: ../../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"
+#: ../../mod/newmember.php:38
+msgid ""
+"Edit your <strong>default</strong> profile to your liking. Review the "
+"settings for hiding your list of friends and hiding the profile from unknown"
+" visitors."
+msgstr "Bewerk je <strong>standaard</strong> profiel zoals je wilt. Controleer de instellingen om je vriendenlijst te verbergen, en om je profiel voor ongekende bezoekers te verbergen."
 
-#: ../../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]"
+#: ../../mod/newmember.php:40
+msgid "Profile Keywords"
+msgstr "Sleutelwoorden voor dit profiel"
 
-#: ../../include/enotify.php:232
-msgid "[Friendica:Notify] Introduction received"
-msgstr "[Friendica:Notificatie] Vriendschaps-/connectieverzoek ontvangen"
+#: ../../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."
 
-#: ../../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"
+#: ../../mod/newmember.php:44
+msgid "Connecting"
+msgstr "Verbinding aan het maken"
 
-#: ../../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."
+#: ../../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."
 
-#: ../../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"
+#: ../../mod/newmember.php:51
+msgid ""
+"<em>If</em> this is your own personal server, installing the Facebook addon "
+"may ease your transition to the free social web."
+msgstr "<em>Als</em> dit jouw eigen persoonlijke server is kan het installeren van de Facebook toevoeging je overgang naar het vrije sociale web vergemakkelijken."
 
-#: ../../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."
+#: ../../mod/newmember.php:56
+msgid "Importing Emails"
+msgstr "E-mails importeren"
 
-#: ../../include/enotify.php:247
-msgid "[Friendica:Notify] A new person is sharing with you"
-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 "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"
 
-#: ../../include/enotify.php:248 ../../include/enotify.php:249
-#, php-format
-msgid "%1$s is sharing with you at %2$s"
-msgstr ""
+#: ../../mod/newmember.php:58
+msgid "Go to Your Contacts Page"
+msgstr "Ga naar je contactenpagina"
 
-#: ../../include/enotify.php:255
-msgid "[Friendica:Notify] You have a new follower"
-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 <em>Add New Contact</em> 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 <em>Voeg nieuw contact toe</em> dialoog."
 
-#: ../../include/enotify.php:256 ../../include/enotify.php:257
-#, php-format
-msgid "You have a new follower at %2$s : %1$s"
-msgstr ""
+#: ../../mod/newmember.php:60
+msgid "Go to Your Site's Directory"
+msgstr "Ga naar de gids van je website"
 
-#: ../../include/enotify.php:270
-msgid "[Friendica:Notify] Friend suggestion received"
-msgstr ""
+#: ../../mod/newmember.php:60
+msgid ""
+"The Directory page lets you find other people in this network or other "
+"federated sites. Look for a <em>Connect</em> or <em>Follow</em> link on "
+"their profile page. Provide your own Identity Address if requested."
+msgstr "In de gids vind je andere mensen in dit netwerk of op andere federatieve sites. Zoek naar het woord <em>Connect</em> of <em>Follow</em> op hun profielpagina (meestal aan de linkerkant). Vul je eigen identiteitsadres in wanneer daar om wordt gevraagd."
 
-#: ../../include/enotify.php:271
-#, php-format
-msgid "You've received a friend suggestion from '%1$s' at %2$s"
-msgstr ""
+#: ../../mod/newmember.php:62
+msgid "Finding New People"
+msgstr "Nieuwe mensen vinden"
 
-#: ../../include/enotify.php:272
-#, php-format
+#: ../../mod/newmember.php:62
 msgid ""
-"You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s."
-msgstr ""
+"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."
 
-#: ../../include/enotify.php:277
-msgid "Name:"
-msgstr "Naam:"
+#: ../../mod/newmember.php:70
+msgid "Group Your Contacts"
+msgstr "Groepeer je contacten"
 
-#: ../../include/enotify.php:278
-msgid "Photo:"
-msgstr "Foto: "
+#: ../../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. "
 
-#: ../../include/enotify.php:281
-#, php-format
-msgid "Please visit %s to approve or reject the suggestion."
-msgstr ""
+#: ../../mod/newmember.php:73
+msgid "Why Aren't My Posts Public?"
+msgstr "Waarom zijn mijn berichten niet openbaar?"
 
-#: ../../include/enotify.php:289 ../../include/enotify.php:302
-msgid "[Friendica:Notify] Connection accepted"
-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 "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."
 
-#: ../../include/enotify.php:290 ../../include/enotify.php:303
-#, php-format
-msgid "'%1$s' has acepted your connection request at %2$s"
-msgstr ""
+#: ../../mod/newmember.php:78
+msgid "Getting Help"
+msgstr "Hulp krijgen"
 
-#: ../../include/enotify.php:291 ../../include/enotify.php:304
-#, php-format
-msgid "%2$s has accepted your [url=%1$s]connection request[/url]."
-msgstr ""
+#: ../../mod/newmember.php:82
+msgid "Go to the Help Section"
+msgstr "Ga naar de help"
 
-#: ../../include/enotify.php:294
+#: ../../mod/newmember.php:82
 msgid ""
-"You are now mutual friends and may exchange status updates, photos, and email\n"
-"\twithout restriction."
-msgstr ""
+"Our <strong>help</strong> pages may be consulted for detail on other program"
+" features and resources."
+msgstr "Je kunt onze <strong>help</strong> pagina's raadplegen voor gedetailleerde informatie over andere functies van dit programma."
 
-#: ../../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 ""
+#: ../../mod/poke.php:192
+msgid "Poke/Prod"
+msgstr "Aanstoten/porren"
 
-#: ../../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 ""
+#: ../../mod/poke.php:193
+msgid "poke, prod or do other things to somebody"
+msgstr "aanstoten, porren of andere dingen met iemand doen"
 
-#: ../../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 ""
+#: ../../mod/poke.php:194
+msgid "Recipient"
+msgstr "Ontvanger"
 
-#: ../../include/enotify.php:322
-msgid "[Friendica System:Notify] registration request"
-msgstr ""
+#: ../../mod/poke.php:195
+msgid "Choose what you wish to do to recipient"
+msgstr "Kies wat je met de ontvanger wil doen"
 
-#: ../../include/enotify.php:323
-#, php-format
-msgid "You've received a registration request from '%1$s' at %2$s"
-msgstr ""
+#: ../../mod/poke.php:198
+msgid "Make this post private"
+msgstr "Dit bericht privé maken"
 
-#: ../../include/enotify.php:324
-#, php-format
-msgid "You've received a [url=%1$s]registration request[/url] from %2$s."
-msgstr ""
+#: ../../mod/display.php:496
+msgid "Item has been removed."
+msgstr "Item is verwijderd."
 
-#: ../../include/enotify.php:327
+#: ../../mod/subthread.php:103
 #, php-format
-msgid "Full Name:\t%1$s\\nSite Location:\t%2$s\\nLogin Name:\t%3$s (%4$s)"
-msgstr ""
+msgid "%1$s is following %2$s's %3$s"
+msgstr "%1$s volgt %3$s van %2$s"
 
-#: ../../include/enotify.php:330
+#: ../../mod/dfrn_poll.php:103 ../../mod/dfrn_poll.php:536
 #, php-format
-msgid "Please visit %s to approve or reject the request."
-msgstr ""
+msgid "%1$s welcomes %2$s"
+msgstr "%1$s heet %2$s van harte welkom"
 
-#: ../../include/oembed.php:212
-msgid "Embedded content"
-msgstr "Ingebedde inhoud"
+#: ../../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."
 
-#: ../../include/oembed.php:221
-msgid "Embedding disabled"
-msgstr "Inbedden uitgeschakeld"
+#: ../../mod/dfrn_confirm.php:240
+msgid "Response from remote site was not understood."
+msgstr "Antwoord van de website op afstand werd niet begrepen."
 
-#: ../../include/uimport.php:94
-msgid "Error decoding account file"
-msgstr ""
+#: ../../mod/dfrn_confirm.php:249 ../../mod/dfrn_confirm.php:254
+msgid "Unexpected response from remote site: "
+msgstr "Onverwacht antwoord van website op afstand:"
 
-#: ../../include/uimport.php:100
-msgid "Error! No version data in file! This is not a Friendica account file?"
-msgstr ""
+#: ../../mod/dfrn_confirm.php:263
+msgid "Confirmation completed successfully."
+msgstr "Bevestiging werd correct voltooid."
 
-#: ../../include/uimport.php:116 ../../include/uimport.php:127
-msgid "Error! Cannot check nickname"
-msgstr ""
+#: ../../mod/dfrn_confirm.php:265 ../../mod/dfrn_confirm.php:279
+#: ../../mod/dfrn_confirm.php:286
+msgid "Remote site reported: "
+msgstr "Website op afstand berichtte: "
 
-#: ../../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!"
+#: ../../mod/dfrn_confirm.php:277
+msgid "Temporary failure. Please wait and try again."
+msgstr "Tijdelijke fout. Wacht even en probeer opnieuw."
 
-#: ../../include/uimport.php:153
-msgid "User creation error"
-msgstr "Fout bij het aanmaken van de gebruiker"
+#: ../../mod/dfrn_confirm.php:284
+msgid "Introduction failed or was revoked."
+msgstr "Verzoek mislukt of herroepen."
 
-#: ../../include/uimport.php:171
-msgid "User profile creation error"
-msgstr "Fout bij het aanmaken van het gebruikersprofiel"
+#: ../../mod/dfrn_confirm.php:429
+msgid "Unable to set contact photo."
+msgstr "Ik kan geen contact foto instellen."
 
-#: ../../include/uimport.php:220
+#: ../../mod/dfrn_confirm.php:571
 #, 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"
+msgid "No user record found for '%s' "
+msgstr "Geen gebruiker gevonden voor '%s'"
 
-#: ../../index.php:428
-msgid "toggle mobile"
-msgstr "mobiel thema omwisselen"
+#: ../../mod/dfrn_confirm.php:581
+msgid "Our site encryption key is apparently messed up."
+msgstr "De encryptie-sleutel van onze webstek is blijkbaar beschadigd."
 
-#: ../../view/theme/cleanzero/config.php:82
-#: ../../view/theme/dispy/config.php:72 ../../view/theme/quattro/config.php:66
-#: ../../view/theme/diabook/config.php:150 ../../view/theme/vier/config.php:55
-#: ../../view/theme/duepuntozero/config.php:61
-msgid "Theme settings"
-msgstr "Thema-instellingen"
+#: ../../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."
 
-#: ../../view/theme/cleanzero/config.php:83
-msgid "Set resize level for images in posts and comments (width and height)"
-msgstr ""
+#: ../../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."
 
-#: ../../view/theme/cleanzero/config.php:84
-#: ../../view/theme/dispy/config.php:73
-#: ../../view/theme/diabook/config.php:151
-msgid "Set font-size for posts and comments"
-msgstr "Stel lettergrootte voor berichten en reacties in"
+#: ../../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."
 
-#: ../../view/theme/cleanzero/config.php:85
-msgid "Set theme width"
-msgstr "Stel breedte van het thema in"
+#: ../../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."
 
-#: ../../view/theme/cleanzero/config.php:86
-#: ../../view/theme/quattro/config.php:68
-msgid "Color scheme"
-msgstr "Kleurschema"
+#: ../../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."
 
-#: ../../view/theme/dispy/config.php:74
-#: ../../view/theme/diabook/config.php:152
-msgid "Set line-height for posts and comments"
-msgstr "Stel lijnhoogte voor berichten en reacties in"
+#: ../../mod/dfrn_confirm.php:725
+msgid "Unable to update your contact profile details on our system"
+msgstr ""
 
-#: ../../view/theme/dispy/config.php:75
-msgid "Set colour scheme"
-msgstr "Stel kleurschema in"
+#: ../../mod/dfrn_confirm.php:797
+#, php-format
+msgid "%1$s has joined %2$s"
+msgstr "%1$s is toegetreden tot %2$s"
 
-#: ../../view/theme/quattro/config.php:67
-msgid "Alignment"
-msgstr "Uitlijning"
+#: ../../mod/item.php:114
+msgid "Unable to locate original post."
+msgstr "Ik kan de originele post niet meer vinden."
 
-#: ../../view/theme/quattro/config.php:67
-msgid "Left"
-msgstr "Links"
+#: ../../mod/item.php:346
+msgid "Empty post discarded."
+msgstr "Lege post weggegooid."
 
-#: ../../view/theme/quattro/config.php:67
-msgid "Center"
-msgstr "Gecentreerd"
+#: ../../mod/item.php:839
+msgid "System error. Post not saved."
+msgstr "Systeemfout. Post niet bewaard."
 
-#: ../../view/theme/quattro/config.php:69
-msgid "Posts font size"
-msgstr "Lettergrootte berichten"
+#: ../../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."
 
-#: ../../view/theme/quattro/config.php:70
-msgid "Textareas font size"
-msgstr "Lettergrootte tekstgebieden"
+#: ../../mod/item.php:967
+#, php-format
+msgid "You may visit them online at %s"
+msgstr "Je kunt ze online bezoeken op %s"
 
-#: ../../view/theme/diabook/config.php:153
-msgid "Set resolution for middle column"
-msgstr "Stel resolutie in voor de middelste kolom. "
+#: ../../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."
 
-#: ../../view/theme/diabook/config.php:154
-msgid "Set color scheme"
-msgstr "Stel kleurenschema in"
+#: ../../mod/item.php:972
+#, php-format
+msgid "%s posted an update."
+msgstr "%s heeft een wijziging geplaatst."
 
-#: ../../view/theme/diabook/config.php:155
-msgid "Set zoomfactor for Earth Layer"
-msgstr ""
+#: ../../mod/profile_photo.php:44
+msgid "Image uploaded but image cropping failed."
+msgstr "Afbeelding opgeladen, maar bijsnijden mislukt."
 
-#: ../../view/theme/diabook/config.php:156
-#: ../../view/theme/diabook/theme.php:585
-msgid "Set longitude (X) for Earth Layers"
-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 "Verkleining van de afbeelding [%s] mislukt."
 
-#: ../../view/theme/diabook/config.php:157
-#: ../../view/theme/diabook/theme.php:586
-msgid "Set latitude (Y) for Earth Layers"
-msgstr ""
+#: ../../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."
 
-#: ../../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"
+#: ../../mod/profile_photo.php:128
+msgid "Unable to process image"
+msgstr "Ik kan de afbeelding niet verwerken"
 
-#: ../../view/theme/diabook/config.php:159
-#: ../../view/theme/diabook/theme.php:579
-#: ../../view/theme/diabook/theme.php:625
-msgid "Earth Layers"
-msgstr "Earth Layers"
+#: ../../mod/profile_photo.php:242
+msgid "Upload File:"
+msgstr "Upload bestand:"
 
-#: ../../view/theme/diabook/config.php:160
-#: ../../view/theme/diabook/theme.php:391
-#: ../../view/theme/diabook/theme.php:626
-msgid "Community Profiles"
-msgstr "Forum/groepsprofielen"
+#: ../../mod/profile_photo.php:243
+msgid "Select a profile:"
+msgstr "Kies een profiel:"
 
-#: ../../view/theme/diabook/config.php:161
-#: ../../view/theme/diabook/theme.php:599
-#: ../../view/theme/diabook/theme.php:627
-msgid "Help or @NewHere ?"
-msgstr ""
+#: ../../mod/profile_photo.php:245
+msgid "Upload"
+msgstr "Uploaden"
 
-#: ../../view/theme/diabook/config.php:162
-#: ../../view/theme/diabook/theme.php:606
-#: ../../view/theme/diabook/theme.php:628
-msgid "Connect Services"
-msgstr "Diensten verbinden"
+#: ../../mod/profile_photo.php:248
+msgid "skip this step"
+msgstr "Deze stap overslaan"
 
-#: ../../view/theme/diabook/config.php:163
-#: ../../view/theme/diabook/theme.php:523
-#: ../../view/theme/diabook/theme.php:629
-msgid "Find Friends"
-msgstr "Zoek vrienden"
+#: ../../mod/profile_photo.php:248
+msgid "select a photo from your photo albums"
+msgstr "Kies een foto uit je fotoalbums"
 
-#: ../../view/theme/diabook/config.php:164
-#: ../../view/theme/diabook/theme.php:412
-#: ../../view/theme/diabook/theme.php:630
-msgid "Last users"
-msgstr "Laatste gebruikers"
+#: ../../mod/profile_photo.php:262
+msgid "Crop Image"
+msgstr "Afbeelding bijsnijden"
 
-#: ../../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"
+#: ../../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."
 
-#: ../../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"
+#: ../../mod/profile_photo.php:265
+msgid "Done Editing"
+msgstr "Wijzigingen compleet"
 
-#: ../../view/theme/diabook/theme.php:125
-msgid "Your contacts"
-msgstr "Jouw contacten"
+#: ../../mod/profile_photo.php:299
+msgid "Image uploaded successfully."
+msgstr "Uploaden van afbeelding gelukt."
 
-#: ../../view/theme/diabook/theme.php:128
-msgid "Your personal photos"
-msgstr "Jouw persoonlijke foto's"
+#: ../../mod/allfriends.php:34
+#, php-format
+msgid "Friends of %s"
+msgstr "Vrienden van %s"
 
-#: ../../view/theme/diabook/theme.php:524
-msgid "Local Directory"
-msgstr "Lokale gids"
+#: ../../mod/allfriends.php:40
+msgid "No friends to display."
+msgstr "Geen vrienden om te laten zien."
 
-#: ../../view/theme/diabook/theme.php:584
-msgid "Set zoomfactor for Earth Layers"
-msgstr ""
+#: ../../mod/directory.php:59
+msgid "Find on this site"
+msgstr "Op deze website zoeken"
 
-#: ../../view/theme/diabook/theme.php:622
-msgid "Show/hide boxes at right-hand column:"
-msgstr ""
+#: ../../mod/directory.php:62
+msgid "Site Directory"
+msgstr "Websitegids"
 
-#: ../../view/theme/vier/config.php:56
-msgid "Set style"
-msgstr ""
+#: ../../mod/directory.php:116
+msgid "Gender: "
+msgstr "Geslacht:"
 
-#: ../../view/theme/duepuntozero/config.php:45
-msgid "greenzero"
-msgstr ""
+#: ../../mod/directory.php:189
+msgid "No entries (some entries may be hidden)."
+msgstr "Geen gegevens (sommige gegevens kunnen verborgen zijn)."
 
-#: ../../view/theme/duepuntozero/config.php:46
-msgid "purplezero"
-msgstr ""
+#: ../../mod/localtime.php:24
+msgid "Time Conversion"
+msgstr "Tijdsconversie"
 
-#: ../../view/theme/duepuntozero/config.php:47
-msgid "easterbunny"
-msgstr ""
+#: ../../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."
 
-#: ../../view/theme/duepuntozero/config.php:48
-msgid "darkzero"
-msgstr ""
+#: ../../mod/localtime.php:30
+#, php-format
+msgid "UTC time: %s"
+msgstr "UTC tijd: %s"
 
-#: ../../view/theme/duepuntozero/config.php:49
-msgid "comix"
-msgstr ""
+#: ../../mod/localtime.php:33
+#, php-format
+msgid "Current timezone: %s"
+msgstr "Huidige Tijdzone: %s"
 
-#: ../../view/theme/duepuntozero/config.php:50
-msgid "slackr"
-msgstr ""
+#: ../../mod/localtime.php:36
+#, php-format
+msgid "Converted localtime: %s"
+msgstr "Omgerekende lokale tijd: %s"
 
-#: ../../view/theme/duepuntozero/config.php:62
-msgid "Variations"
-msgstr ""
+#: ../../mod/localtime.php:41
+msgid "Please select your timezone:"
+msgstr "Selecteer je tijdzone:"
index 1eeb31d03db051a43d8c4a5613b782cdbe876aeb..1e5f5687f42472577fa082758ddc68941d8d37ef 100644 (file)
@@ -5,1355 +5,361 @@ function string_plural_select_nl($n){
        return ($n != 1);;
 }}
 ;
-$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["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["don't show"] = "niet tonen";
+$a->strings["show"] = "tonen";
+$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";
+$a->strings["Set zoomfactor for Earth Layer"] = "";
+$a->strings["Set longitude (X) for Earth Layers"] = "";
+$a->strings["Set latitude (Y) for Earth Layers"] = "";
+$a->strings["Community Pages"] = "Forum/groepspagina's";
+$a->strings["Earth Layers"] = "Earth Layers";
+$a->strings["Community Profiles"] = "Forum/groepsprofielen";
+$a->strings["Help or @NewHere ?"] = "";
+$a->strings["Connect Services"] = "Diensten verbinden";
+$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";
+$a->strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s vindt het %3\$s van %2\$s leuk";
+$a->strings["Contact Photos"] = "Contactfoto's";
+$a->strings["Profile Photos"] = "Profielfoto's";
+$a->strings["Local Directory"] = "Lokale gids";
+$a->strings["Global Directory"] = "Globale gids";
+$a->strings["Similar Interests"] = "Dezelfde interesses";
+$a->strings["Friend Suggestions"] = "Vriendschapsvoorstellen";
+$a->strings["Invite Friends"] = "Vrienden uitnodigen";
+$a->strings["Settings"] = "Instellingen";
+$a->strings["Set zoomfactor for Earth Layers"] = "";
+$a->strings["Show/hide boxes at right-hand column:"] = "";
+$a->strings["Alignment"] = "Uitlijning";
+$a->strings["Left"] = "Links";
+$a->strings["Center"] = "Gecentreerd";
+$a->strings["Posts font size"] = "Lettergrootte berichten";
+$a->strings["Textareas font size"] = "Lettergrootte tekstgebieden";
+$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["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["toggle mobile"] = "mobiel thema omwisselen";
+$a->strings["Do you wish to confirm your identity (<tt>%s</tt>) with <tt>%s</tt>"] = "";
+$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["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["Archives"] = "Archieven";
+$a->strings["A deleted group with this name was revived. Existing item permissions <strong>may</strong> apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "Een verwijderde groep met deze naam is weer tot leven gewekt. Bestaande itemrechten <strong>kunnen</strong> voor deze groep en toekomstige leden gelden. Wanneer je niet zo had bedoeld kan je een andere groep met een andere naam creëren. ";
+$a->strings["Default privacy group for new contacts"] = "";
+$a->strings["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["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["Ignore"] = "Negeren";
-$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["Contact Editor"] = "Contactbewerker";
-$a->strings["Submit"] = "Opslaan";
-$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["Hide this contact from others"] = "Verberg dit contact voor anderen";
-$a->strings["Replies/likes to your public posts <strong>may</strong> still be visible"] = "Antwoorden of 'vind ik leuk's op je openbare posts <strong>kunnen</strong> 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["Fetch further information for feeds"] = "";
-$a->strings["Disabled"] = "";
-$a->strings["Fetch information"] = "";
-$a->strings["Fetch information and keywords"] = "";
-$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["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["Contacts"] = "Contacten";
-$a->strings["Search your contacts"] = "Doorzoek je contacten";
-$a->strings["Finding: "] = "Gevonden:";
-$a->strings["Find"] = "Zoek";
-$a->strings["Update"] = "Wijzigen";
-$a->strings["Delete"] = "Verwijder";
-$a->strings["No profile"] = "Geen profiel";
-$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["Post successful."] = "Bericht succesvol geplaatst.";
-$a->strings["Permission denied"] = "Toegang geweigerd";
-$a->strings["Invalid profile identifier."] = "Ongeldige profiel-identificatie.";
-$a->strings["Profile Visibility Editor"] = "";
-$a->strings["Profile"] = "Profiel";
-$a->strings["Click on a contact to add or remove."] = "Klik op een contact om het toe te voegen of te verwijderen.";
-$a->strings["Visible To"] = "Zichtbaar voor";
-$a->strings["All Contacts (with secure profile access)"] = "Alle contacten (met veilige profieltoegang)";
-$a->strings["Item not found."] = "Item niet gevonden.";
-$a->strings["Public access denied."] = "Niet vrij toegankelijk";
-$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["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 <em>Quick Start</em> page - find a brief introduction to your profile and network tabs, make some new connections, and find some groups to join."] = "Op je <em>Snelstart</em> pagina kun je een korte inleiding vinden over je profiel en netwerk tabs, om enkele nieuwe connecties te leggen en groepen te vinden om lid van te worden.";
-$a->strings["Settings"] = "Instellingen";
-$a->strings["Go to Your Settings"] = "Ga naar je instellingen";
-$a->strings["On your <em>Settings</em> page -  change your initial password. Also make a note of your Identity Address. This looks just like an email address - and will be useful in making friends on the free social web."] = "Verander je initieel wachtwoord op je <em>instellingenpagina</em>. Noteer ook het adres van je identiteit. Dit ziet er uit als een e-mailadres - en zal nuttig zijn om vrienden te maken op het vrije sociale web.";
-$a->strings["Review the other settings, particularly the privacy settings. An unpublished directory listing is like having an unlisted phone number. In general, you should probably publish your listing - unless all of your friends and potential friends know exactly how to find you."] = "Controleer ook de andere instellingen, in het bijzonder de privacy-instellingen. Een niet-gepubliceerd adres is zoals een privé-telefoonnummer. In het algemeen wil je waarschijnlijk je adres publiceren - tenzij al je vrienden en mogelijke vrienden precies weten hoe je te vinden.";
-$a->strings["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 <strong>default</strong> profile to your liking. Review the settings for hiding your list of friends and hiding the profile from unknown visitors."] = "Bewerk je <strong>standaard</strong> 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["<em>If</em> this is your own personal server, installing the Facebook addon may ease your transition to the free social web."] = "<em>Als</em> dit jouw eigen persoonlijke server is kan het installeren van de Facebook toevoeging je overgang naar het vrije sociale web vergemakkelijken.";
-$a->strings["Importing Emails"] = "E-mails importeren";
-$a->strings["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 <em>Add New Contact</em> dialog."] = "Je contactenpagina is jouw poort om vriendschappen te beheren en verbinding te leggen met vrienden op andere netwerken. Je kunt hun adres of URL toevoegen in de <em>Voeg nieuw contact toe</em> dialoog.";
-$a->strings["Go to Your Site's Directory"] = "Ga naar de gids van je website";
-$a->strings["The Directory page lets you find other people in this network or other federated sites. Look for a <em>Connect</em> or <em>Follow</em> link on their profile page. Provide your own Identity Address if requested."] = "In de gids vind je andere mensen in dit netwerk of op andere federatieve sites. Zoek naar het woord <em>Connect</em> of <em>Follow</em> op hun profielpagina (meestal aan de linkerkant). Vul je eigen identiteitsadres in wanneer daar om wordt gevraagd.";
-$a->strings["Finding New People"] = "Nieuwe mensen vinden";
-$a->strings["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 <strong>help</strong> pages may be consulted for detail on other program features and resources."] = "Je kunt onze <strong>help</strong> pagina's raadplegen voor gedetailleerde informatie over andere functies van dit programma.";
-$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["Image uploaded but image cropping failed."] = "Afbeelding opgeladen, maar bijsnijden mislukt.";
-$a->strings["Profile Photos"] = "Profielfoto's";
-$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.";
-$a->strings["Unable to process image"] = "Ik kan de afbeelding niet verwerken";
-$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["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["Image upload failed."] = "Uploaden van afbeelding mislukt.";
-$a->strings["photo"] = "foto";
-$a->strings["status"] = "status";
-$a->strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s volgt %3\$s van %2\$s";
-$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["Save to Folder:"] = "Bewaren in map:";
-$a->strings["- select -"] = "- Kies -";
-$a->strings["Save"] = "Bewaren";
-$a->strings["Contact added"] = "Contact toegevoegd";
-$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["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["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["Profile not found."] = "Profiel niet gevonden";
-$a->strings["Contact not found."] = "Contact 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["Requested profile is not available."] = "Gevraagde profiel is niet beschikbaar.";
-$a->strings["Tips for New Members"] = "Tips voor nieuwe leden";
-$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 Video"] = "Bekijk Video";
-$a->strings["View Album"] = "Album bekijken";
-$a->strings["Recent Videos"] = "Recente video's";
-$a->strings["Upload New Videos"] = "Nieuwe video's uploaden";
-$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["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["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 <em>Settings</em> page after successful login."] = "Je kunt dit wachtwoord veranderen nadat je bent ingelogd op de <em>Instellingen></em> 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["%1\$s likes %2\$s's %3\$s"] = "%1\$s vindt het %3\$s van %2\$s leuk";
-$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["{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["No contacts."] = "Geen contacten.";
-$a->strings["View Contacts"] = "Bekijk contacten";
-$a->strings["Invalid request identifier."] = "Ongeldige <em>request identifier</em>.";
-$a->strings["Discard"] = "Verwerpen";
-$a->strings["System"] = "Systeem";
-$a->strings["Network"] = "Netwerk";
-$a->strings["Personal"] = "Persoonlijk";
-$a->strings["Home"] = "Tijdlijn";
-$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:";
-$a->strings["Friend Suggestion"] = "Vriendschapsvoorstel";
-$a->strings["suggested by %s"] = "Voorgesteld door %s";
-$a->strings["Post a new friend activity"] = "Bericht over een nieuwe vriend";
-$a->strings["if applicable"] = "Indien toepasbaar";
-$a->strings["Approve"] = "Goedkeuren";
-$a->strings["Claims to be known to you: "] = "Denkt dat u hem of haar kent:";
-$a->strings["yes"] = "Ja";
-$a->strings["no"] = "Nee";
-$a->strings["Approve as: "] = "Goedkeuren als:";
-$a->strings["Friend"] = "Vriend";
-$a->strings["Sharer"] = "Deler";
-$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";
-$a->strings["%s created a new post"] = "%s schreef een nieuw bericht";
-$a->strings["%s commented on %s's post"] = "%s gaf een reactie op het bericht van %s";
-$a->strings["No more network notifications."] = "Geen netwerknotificaties meer";
-$a->strings["Network Notifications"] = "Netwerknotificaties";
-$a->strings["No more system notifications."] = "Geen systeemnotificaties meer.";
-$a->strings["System Notifications"] = "Systeemnotificaties";
-$a->strings["No more personal notifications."] = "Geen persoonlijke notificaties meer";
-$a->strings["Personal Notifications"] = "Persoonlijke notificaties";
-$a->strings["No more home notifications."] = "Geen tijdlijn-notificaties meer";
-$a->strings["Home Notifications"] = "Tijdlijn-notificaties";
-$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["Nothing new here"] = "Niets nieuw hier";
-$a->strings["Clear notifications"] = "Notificaties verwijderen";
-$a->strings["New Message"] = "Nieuw Bericht";
-$a->strings["No recipient selected."] = "Geen ontvanger geselecteerd.";
-$a->strings["Unable to locate contact information."] = "Ik kan geen contact informatie vinden.";
-$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["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["Please enter a link URL:"] = "Vul een internetadres/URL in:";
-$a->strings["Send Private Message"] = "Verstuur privébericht";
-$a->strings["To:"] = "Aan:";
-$a->strings["Subject:"] = "Onderwerp:";
-$a->strings["Your message:"] = "Jouw bericht:";
-$a->strings["Upload photo"] = "Foto uploaden";
-$a->strings["Insert web link"] = "Voeg een webadres in";
-$a->strings["Please wait"] = "Even geduld";
-$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 <strong>may</strong> be able to respond from the sender's profile page."] = "Geen beveiligde communicatie beschikbaar. Je kunt <strong>misschien</strong> antwoorden vanaf de profiel-pagina van de afzender.";
-$a->strings["Send Reply"] = "Verstuur Antwoord";
-$a->strings["[Embedded content - reload page to view]"] = "[Ingebedde inhoud - herlaad pagina om het te 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["<strong>WARNING: This is highly advanced</strong> and if you enter incorrect information your communications with this contact may stop working."] = "";
-$a->strings["Please use your browser 'Back' button <strong>now</strong> if you are uncertain what to do on this page."] = "Gebruik <strong>nu</strong> de \"terug\"-knop in je webbrowser wanneer je niet weet wat je op deze pagina moet doen.";
-$a->strings["Return to contact editor"] = "Ga terug naar contactbewerker";
-$a->strings["No mirroring"] = "";
-$a->strings["Mirror as forwarded posting"] = "";
-$a->strings["Mirror as my own posting"] = "";
-$a->strings["Name"] = "Naam";
-$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"] = "";
-$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["Login"] = "Login";
-$a->strings["The post was created"] = "";
-$a->strings["Access denied."] = "Toegang geweigerd";
-$a->strings["People Search"] = "Mensen Zoeken";
-$a->strings["No matches"] = "Geen resultaten";
-$a->strings["Photos"] = "Foto's";
-$a->strings["Files"] = "Bestanden";
-$a->strings["Contacts who are not members of a group"] = "Contacten die geen leden zijn van een groep";
-$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";
-$a->strings["Normal Account"] = "Normaal account";
-$a->strings["Soapbox Account"] = "Zeepkist-account";
-$a->strings["Community/Celebrity Account"] = "Account voor een groep/forum of beroemdheid";
-$a->strings["Automatic Friend Account"] = "Automatisch Vriendschapsaccount";
-$a->strings["Blog Account"] = "Blog Account";
-$a->strings["Private Forum"] = "Privéforum/-groep";
-$a->strings["Message queues"] = "Bericht-wachtrijen";
-$a->strings["Administration"] = "Beheer";
-$a->strings["Summary"] = "Samenvatting";
-$a->strings["Registered users"] = "Geregistreerde gebruikers";
-$a->strings["Pending registrations"] = "Registraties die in de wacht staan";
-$a->strings["Version"] = "Versie";
-$a->strings["Active plugins"] = "Actieve plug-ins";
-$a->strings["Can not parse base url. Must have at least <scheme>://<domain>"] = "";
-$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["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";
-$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";
-$a->strings["Performance"] = "Performantie";
-$a->strings["Relocate - WARNING: advanced function. Could make this server unreachable."] = "";
-$a->strings["Site name"] = "Site naam";
-$a->strings["Host name"] = "";
-$a->strings["Sender Email"] = "";
-$a->strings["Banner/Logo"] = "Banner/Logo";
-$a->strings["Shortcut icon"] = "";
-$a->strings["Touch icon"] = "";
-$a->strings["Additional Info"] = "";
-$a->strings["For public servers: you can add additional information here that will be listed at dir.friendica.com/siteinfo."] = "";
-$a->strings["System language"] = "Systeemtaal";
-$a->strings["System theme"] = "Systeem thema";
-$a->strings["Default system theme - may be over-ridden by user profiles - <a href='#' id='cnftheme'>change theme settings</a>"] = "Standaard systeem thema - kan door gebruikersprofielen veranderd worden - <a href='#' id='cnftheme'>verander thema instellingen</a>";
-$a->strings["Mobile system theme"] = "Mobiel systeem thema";
-$a->strings["Theme for mobile devices"] = "Thema voor mobiele apparaten";
-$a->strings["SSL link policy"] = "Beleid SSL-links";
-$a->strings["Determines whether generated links should be forced to use SSL"] = "Bepaald of gegenereerde verwijzingen verplicht SSL moeten gebruiken";
-$a->strings["Force SSL"] = "";
-$a->strings["Force all Non-SSL requests to SSL - Attention: on some systems it could lead to endless loops."] = "";
-$a->strings["Old style 'Share'"] = "";
-$a->strings["Deactivates the bbcode element 'share' for repeating items."] = "";
-$a->strings["Hide help entry from navigation menu"] = "Verberg de 'help' uit het navigatiemenu";
-$a->strings["Hides the menu entry for the Help pages from the navigation menu. You can still access it calling /help directly."] = "Verbergt het menu-item voor de Help pagina's uit het navigatiemenu. Je kunt ze nog altijd vinden door /help direct in te geven.";
-$a->strings["Single user instance"] = "Server voor één gebruiker";
-$a->strings["Make this instance multi-user or single-user for the named user"] = "Stel deze server in voor meerdere gebruikers, of enkel voor de geselecteerde gebruiker.";
-$a->strings["Maximum image size"] = "Maximum afbeeldingsgrootte";
-$a->strings["Maximum size in bytes of uploaded images. Default is 0, which means no limits."] = "Maximum afmeting in bytes van afbeeldingen. Standaard is 0, dus geen beperking.";
-$a->strings["Maximum image length"] = "Maximum afbeeldingslengte";
-$a->strings["Maximum length in pixels of the longest side of uploaded images. Default is -1, which means no limits."] = "Maximum lengte in pixels van de langste kant van afbeeldingen. Standaard is -1, dus geen beperkingen.";
-$a->strings["JPEG image quality"] = "JPEG afbeeldingskwaliteit";
-$a->strings["Uploaded JPEGS will be saved at this quality setting [0-100]. Default is 100, which is full quality."] = "JPEGS zullen met deze kwaliteitsinstelling bewaard worden [0-100]. Standaard is 100, dit is volledige kwaliteit.";
-$a->strings["Register policy"] = "Registratiebeleid";
-$a->strings["Maximum Daily Registrations"] = "Maximum aantal registraties per dag";
-$a->strings["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."] = "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.";
-$a->strings["Register text"] = "Registratietekst";
-$a->strings["Will be displayed prominently on the registration page."] = "Dit zal prominent op de registratiepagina getoond worden.";
-$a->strings["Accounts abandoned after x days"] = "Verlaten accounts na x dagen";
-$a->strings["Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit."] = "Dit zal geen systeembronnen verspillen aan het nakijken van externe sites voor verlaten accounts. Geef 0 is voor geen tijdslimiet.";
-$a->strings["Allowed friend domains"] = "Toegelaten vriend domeinen";
-$a->strings["Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains"] = "Komma-gescheiden lijst van domeinen die een vriendschapsband met deze website mogen aangaan. Jokers zijn toegelaten. Laat leeg om alle domeinen toe te laten.";
-$a->strings["Allowed email domains"] = "Toegelaten e-mail domeinen";
-$a->strings["Comma separated list of domains which are allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains"] = "Door komma's gescheiden lijst met e-maildomeinen die op deze website mogen registeren. Wildcards zijn toegestaan.\nLeeg laten om alle domeinen toe te staan.";
-$a->strings["Block public"] = "Openbare toegang blokkeren";
-$a->strings["Check to block public access to all otherwise public personal pages on this site unless you are currently logged in."] = "Kruis dit aan om alle openbare persoonlijke pagina's alleen toegankelijk te maken voor ingelogde gebruikers.";
-$a->strings["Force publish"] = "Dwing publiceren af";
-$a->strings["Check to force all profiles on this site to be listed in the site directory."] = "Kruis dit aan om af te dwingen dat alle profielen op deze website in de gids van deze website gepubliceerd worden.";
-$a->strings["Global directory update URL"] = "Update-adres van de globale gids";
-$a->strings["URL to update the global directory. If this is not set, the global directory is completely unavailable to the application."] = "URL om de globale gids aan te passen. Als dit niet is ingevuld, is de globale gids volledig onbeschikbaar voor deze toepassing.";
-$a->strings["Allow threaded items"] = "Sta threads in conversaties toe";
-$a->strings["Allow infinite level threading for items on this site."] = "Sta oneindige niveaus threads in conversaties op deze website toe.";
-$a->strings["Private posts by default for new users"] = "Privéberichten als standaard voor nieuwe gebruikers";
-$a->strings["Set default post permissions for all new members to the default privacy group rather than public."] = "Stel de standaardrechten van berichten voor nieuwe leden op de standaard privacygroep in, in plaats van openbaar.";
-$a->strings["Don't include post content in email notifications"] = "De inhoud van het bericht niet insluiten bij e-mailnotificaties";
-$a->strings["Don't include the content of a post/comment/private message/etc. in the email notifications that are sent out from this site, as a privacy measure."] = "De inhoud van berichten/commentaar/privéberichten/enzovoort  niet insluiten in e-mailnotificaties die door deze website verzonden worden, voor de bescherming van je privacy.";
-$a->strings["Disallow public access to addons listed in the apps menu."] = "";
-$a->strings["Checking this box will restrict addons listed in the apps menu to members only."] = "";
-$a->strings["Don't embed private images in posts"] = "";
-$a->strings["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 photos will have to authenticate and load each image, which may take a while."] = "";
-$a->strings["Allow Users to set remote_self"] = "";
-$a->strings["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."] = "";
-$a->strings["Block multiple registrations"] = "Blokkeer meerdere registraties";
-$a->strings["Disallow users to register additional accounts for use as pages."] = "Laat niet toe dat gebruikers meerdere accounts aanmaken.";
-$a->strings["OpenID support"] = "OpenID ondersteuning";
-$a->strings["OpenID support for registration and logins."] = "OpenID ondersteuning voor registraties en logins.";
-$a->strings["Fullname check"] = "Controleer volledige naam";
-$a->strings["Force users to register with a space between firstname and lastname in Full name, as an antispam measure"] = "Verplicht gebruikers om zich te registreren met een spatie tussen voornaam en achternaam, als anti-spam maatregel";
-$a->strings["UTF-8 Regular expressions"] = "UTF-8 reguliere uitdrukkingen";
-$a->strings["Use PHP UTF8 regular expressions"] = "Gebruik PHP UTF8 reguliere uitdrukkingen";
-$a->strings["Community Page Style"] = "";
-$a->strings["Type of community page to show. 'Global community' shows every public posting from an open distributed network that arrived on this server."] = "";
-$a->strings["Posts per user on community page"] = "";
-$a->strings["The maximum number of posts per user on the community page. (Not valid for 'Global Community')"] = "";
-$a->strings["Enable OStatus support"] = "Activeer OStatus ondersteuning";
-$a->strings["Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All communications in OStatus are public, so privacy warnings will be occasionally displayed."] = "";
-$a->strings["OStatus conversation completion interval"] = "";
-$a->strings["How often shall the poller check for new entries in OStatus conversations? This can be a very ressource task."] = "";
-$a->strings["Enable Diaspora support"] = "Activeer Diaspora ondersteuning";
-$a->strings["Provide built-in Diaspora network compatibility."] = "Bied ingebouwde ondersteuning voor het Diaspora netwerk.";
-$a->strings["Only allow Friendica contacts"] = "Laat alleen Friendica contacten toe";
-$a->strings["All contacts must use Friendica protocols. All other built-in communication protocols disabled."] = "Alle contacten moeten een Friendica protocol gebruiken. Alle andere ingebouwde communicatieprotocols worden uitgeschakeld.";
-$a->strings["Verify SSL"] = "Controleer SSL";
-$a->strings["If you wish, you can turn on strict certificate checking. This will mean you cannot connect (at all) to self-signed SSL sites."] = "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.";
-$a->strings["Proxy user"] = "Proxy-gebruiker";
-$a->strings["Proxy URL"] = "Proxy-URL";
-$a->strings["Network timeout"] = "Netwerk timeout";
-$a->strings["Value is in seconds. Set to 0 for unlimited (not recommended)."] = "Waarde is in seconden. Zet op 0 voor onbeperkt (niet aanbevolen).";
-$a->strings["Delivery interval"] = "Afleverinterval";
-$a->strings["Delay background delivery processes by this many seconds to reduce system load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 for large dedicated servers."] = "Stel achtergrond processen voor aflevering een aantal seconden uit om systeembelasting te beperken. Aanbevolen: 4-5 voor gedeelde hosten, 2-3 voor virtuele privé servers, 0-1 voor grote servers.";
-$a->strings["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["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"] = "";
-$a->strings["Suppress language information in meta information about a posting."] = "";
-$a->strings["Suppress Tags"] = "";
-$a->strings["Suppress showing a list of hashtags at the end of the posting."] = "";
-$a->strings["Path to item cache"] = "Pad naar cache voor items";
-$a->strings["Cache duration in seconds"] = "Cache tijdsduur in seconden";
-$a->strings["How long should the cache files be hold? Default value is 86400 seconds (One day). To disable the item cache, set the value to -1."] = "";
-$a->strings["Maximum numbers of comments per post"] = "";
-$a->strings["How much comments should be shown for each post? Default value is 100."] = "";
-$a->strings["Path for lock file"] = "Pad voor lock bestand";
-$a->strings["Temp path"] = "Tijdelijk pad";
-$a->strings["Base path to installation"] = "Basispad voor installatie";
-$a->strings["Disable picture proxy"] = "";
-$a->strings["The picture proxy increases performance and privacy. It shouldn't be used on systems with very low bandwith."] = "";
-$a->strings["Enable old style pager"] = "";
-$a->strings["The old style pager has page numbers but slows down massively the page speed."] = "";
-$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["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"] = "";
-$a->strings["Executing %s failed with error: %s"] = "";
-$a->strings["Update %s was successfully applied."] = "Wijziging %s geslaagd.";
-$a->strings["Update %s did not return a status. Unknown if it succeeded."] = "Wijziging %s gaf geen status terug. We weten niet of de wijziging geslaagd is.";
-$a->strings["There was no additional update function %s that needed to be called."] = "";
-$a->strings["No failed updates."] = "Geen misluke wijzigingen";
-$a->strings["Check database structure"] = "";
-$a->strings["Failed Updates"] = "Misluke wijzigingen";
-$a->strings["This does not include updates prior to 1139, which did not return a status."] = "Dit is zonder de wijzigingen voor 1139, welke geen status teruggaven.";
-$a->strings["Mark success (if update was manually applied)"] = "Markeren als succes (als aanpassing manueel doorgevoerd werd)";
-$a->strings["Attempt to execute this update step automatically"] = "Probeer deze stap automatisch uit te voeren";
-$a->strings["\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",
-);
-$a->strings["%s user deleted"] = array(
-       0 => "%s gebruiker verwijderd",
-       1 => "%s gebruikers verwijderd",
-);
-$a->strings["User '%s' deleted"] = "Gebruiker '%s' verwijderd";
-$a->strings["User '%s' unblocked"] = "Gebruiker '%s' niet meer geblokkeerd";
-$a->strings["User '%s' blocked"] = "Gebruiker '%s' geblokkeerd";
-$a->strings["Add User"] = "Gebruiker toevoegen";
-$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["Email"] = "E-mail";
-$a->strings["No registrations."] = "Geen registraties.";
-$a->strings["Deny"] = "Weiger";
-$a->strings["Site admin"] = "Sitebeheerder";
-$a->strings["Account expired"] = "Account verlopen";
-$a->strings["New User"] = "Nieuwe gebruiker";
-$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";
-$a->strings["Nickname"] = "Bijnaam";
-$a->strings["Nickname of the new user."] = "Bijnaam van nieuwe gebruiker";
-$a->strings["Email address of the new user."] = "E-mailadres van nieuwe gebruiker";
-$a->strings["Plugin %s disabled."] = "Plugin %s uitgeschakeld.";
-$a->strings["Plugin %s enabled."] = "Plugin %s ingeschakeld.";
-$a->strings["Disable"] = "Uitschakelen";
-$a->strings["Enable"] = "Inschakelen";
-$a->strings["Toggle"] = "Schakelaar";
-$a->strings["Author: "] = "Auteur:";
-$a->strings["Maintainer: "] = "Onderhoud:";
-$a->strings["No themes found."] = "Geen thema's gevonden.";
-$a->strings["Screenshot"] = "Schermafdruk";
-$a->strings["[Experimental]"] = "[Experimenteel]";
-$a->strings["[Unsupported]"] = "[Niet ondersteund]";
-$a->strings["Log settings updated."] = "Log instellingen gewijzigd";
-$a->strings["Clear"] = "Wis";
-$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["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["Search Results For:"] = "Zoekresultaten voor:";
-$a->strings["Remove term"] = "Verwijder zoekterm";
-$a->strings["Saved Searches"] = "Opgeslagen zoekopdrachten";
-$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["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["Friends of %s"] = "Vrienden van %s";
-$a->strings["No friends to display."] = "Geen vrienden om te laten zien.";
-$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["Events"] = "Gebeurtenissen";
-$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["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";
-$a->strings["Event Finishes:"] = "Gebeurtenis eindigt:";
-$a->strings["Adjust for viewer timezone"] = "Pas aan aan de tijdzone van de gebruiker";
-$a->strings["Description:"] = "Beschrijving:";
-$a->strings["Location:"] = "Plaats:";
-$a->strings["Title:"] = "Titel:";
-$a->strings["Share this event"] = "Deel deze gebeurtenis";
-$a->strings["Select"] = "Kies";
-$a->strings["View %s's profile @ %s"] = "Bekijk het profiel van %s @ %s";
-$a->strings["%s from %s"] = "%s van %s";
-$a->strings["View in context"] = "In context bekijken";
-$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["Private Message"] = "Privébericht";
-$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["This is you"] = "Dit ben jij";
-$a->strings["Comment"] = "Reacties";
-$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["Edit"] = "Bewerken";
-$a->strings["add star"] = "ster toevoegen";
-$a->strings["remove star"] = "ster verwijderen";
-$a->strings["toggle star status"] = "ster toevoegen of verwijderen";
-$a->strings["starred"] = "met ster";
-$a->strings["add tag"] = "label toevoegen";
-$a->strings["save to folder"] = "Bewaren in map";
-$a->strings["to"] = "aan";
-$a->strings["Wall-to-Wall"] = "wall-to-wall";
-$a->strings["via Wall-To-Wall:"] = "via wall-to-wall";
-$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["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["System check"] = "Systeemcontrole";
-$a->strings["Check again"] = "Controleer opnieuw";
-$a->strings["Database connection"] = "Verbinding met database";
-$a->strings["In order to install Friendica we need to know how to connect to your database."] = "Om Friendica te kunnen installeren moet ik weten hoe ik jouw database kan bereiken.";
-$a->strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Neem contact op met jouw hostingprovider of websitebeheerder, wanneer je vragen hebt over deze instellingen. ";
-$a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "De database die je hier opgeeft zou al moeten bestaan. Maak anders de database aan voordat je verder gaat.";
-$a->strings["Database Server Name"] = "Servernaam database";
-$a->strings["Database Login Name"] = "Gebruikersnaam database";
-$a->strings["Database Login Password"] = "Wachtwoord database";
-$a->strings["Database Name"] = "Naam database";
-$a->strings["Site administrator email address"] = "E-mailadres van de websitebeheerder";
-$a->strings["Your account email address must match this in order to use the web admin panel."] = "Het e-mailadres van je account moet hiermee overeenkomen om het administratiepaneel te kunnen gebruiken.";
-$a->strings["Please select a default timezone for your website"] = "Selecteer een standaard tijdzone voor uw website";
-$a->strings["Site settings"] = "Website-instellingen";
-$a->strings["Could not find a command line version of PHP in the web server PATH."] = "Kan geen command-line-versie van PHP vinden in het PATH van de webserver.";
-$a->strings["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 <a href='http://friendica.com/node/27'>'Activating scheduled tasks'</a>"] = "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  <a href='http://friendica.com/node/27'>'Activeren van geplande taken'</a>";
-$a->strings["PHP executable path"] = "PATH van het PHP commando";
-$a->strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "Vul het volledige path in naar het php programma. Je kunt dit blanco laten om de installatie verder te zetten.";
-$a->strings["Command line PHP"] = "PHP-opdrachtregel";
-$a->strings["PHP executable is not the php cli binary (could be cgi-fgci version)"] = "";
-$a->strings["Found PHP version: "] = "Gevonden PHP versie:";
-$a->strings["PHP cli binary"] = "";
-$a->strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "De command-line versie van PHP op jouw systeem heeft \"register_argc_argv\" niet geactiveerd.";
-$a->strings["This is required for message delivery to work."] = "Dit is nodig om het verzenden van berichten mogelijk te maken.";
-$a->strings["PHP register_argc_argv"] = "PHP register_argc_argv";
-$a->strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = "";
-$a->strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "Zie \"http://www.php.net/manual/en/openssl.installation.php\" wanneer u Friendica onder Windows draait.";
-$a->strings["Generate encryption keys"] = "";
-$a->strings["libCurl PHP module"] = "libCurl PHP module";
-$a->strings["GD graphics PHP module"] = "GD graphics PHP module";
-$a->strings["OpenSSL PHP module"] = "OpenSSL PHP module";
-$a->strings["mysqli PHP module"] = "mysqli PHP module";
-$a->strings["mb_string PHP module"] = "mb_string PHP module";
-$a->strings["Apache mod_rewrite module"] = "Apache mod_rewrite module";
-$a->strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Fout: Apache-module mod-rewrite is vereist, maar niet geïnstalleerd.";
-$a->strings["Error: libCURL PHP module required but not installed."] = "Fout: PHP-module libCURL is vereist, maar niet geïnstalleerd.";
-$a->strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Fout: PHP-module GD graphics met JPEG support is vereist, maar niet geïnstalleerd.";
-$a->strings["Error: openssl PHP module required but not installed."] = "Fout: PHP-module openssl is vereist, maar niet geïnstalleerd.";
-$a->strings["Error: mysqli PHP module required but not installed."] = "Fout: PHP-module mysqli is vereist, maar niet geïnstalleerd.";
-$a->strings["Error: mb_string PHP module required but not installed."] = "Fout: PHP-module mb_string is vereist, maar niet geïnstalleerd.";
-$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."] = "Het installatieprogramma moet een bestand \".htconfig.php\" in de bovenste map van je webserver aanmaken, maar kan dit niet doen.";
-$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."] = "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.";
-$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."] = "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.";
-$a->strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"INSTALL.txt\" for instructions."] = "Je kunt ook deze procedure overslaan, en een manuele installatie uitvoeren. Lees het bestand \"INSTALL.txt\" voor instructies.";
-$a->strings[".htconfig.php is writable"] = ".htconfig.php is schrijfbaar";
-$a->strings["Friendica uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "Friendica gebruikt het Smarty3 sjabloon systeem om zijn webpagina's weer te geven. Smarty3 compileert sjablonen naar PHP om de weergave te versnellen.";
-$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."] = "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.";
-$a->strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "Zorg ervoor dat de gebruiker waaronder je webserver runt (bijv. www-data) schrijf-toegang heeft tot deze map.";
-$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."] = "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.";
-$a->strings["view/smarty3 is writable"] = "view/smarty3 is schrijfbaar";
-$a->strings["Url rewrite in .htaccess is not working. Check your server configuration."] = "";
-$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["<h1>What next</h1>"] = "<h1>Wat nu</h1>";
-$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["Number of daily wall messages for %s exceeded. Message failed."] = "";
-$a->strings["Unable to check your home location."] = "Niet in staat om je tijdlijn-locatie vast te stellen";
-$a->strings["No recipient."] = "Geen ontvanger.";
-$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["Help:"] = "Help:";
-$a->strings["Help"] = "Help";
-$a->strings["Not Found"] = "Niet gevonden";
-$a->strings["Page not found."] = "Pagina niet gevonden";
-$a->strings["%1\$s welcomes %2\$s"] = "%1\$s heet %2\$s van harte welkom";
-$a->strings["Welcome to %s"] = "Welkom op %s";
-$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["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["link"] = "link";
-$a->strings["Not available."] = "Niet beschikbaar";
-$a->strings["Community"] = "Website";
-$a->strings["No results."] = "Geen resultaten.";
-$a->strings["everybody"] = "iedereen";
-$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["Export personal data"] = "Persoonlijke gegevens exporteren";
-$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["Built-in support for %s connectivity is %s"] = "Ingebouwde ondersteuning voor connectiviteit met %s is %s";
-$a->strings["Diaspora"] = "Diaspora";
-$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["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["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 <strong>not published</strong>."] = "Profiel is <strong>niet gepubliceerd</strong>.";
-$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["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["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 <em>interesting</em> profile change"] = "Een <em>interessante</em> verandering aan je profiel";
-$a->strings["Send a notification email when:"] = "Stuur een notificatie e-mail wanneer:";
-$a->strings["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["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["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 <strong>this</strong> profile."] = "Je huidige identiteit is niet de juiste. Log met <strong>dit</strong> 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["Confirm"] = "Bevestig";
-$a->strings["Please enter your 'Identity Address' from one of the following supported communications networks:"] = "Vul hier uw 'Identiteitsadres' in van een van de volgende ondersteunde communicatienetwerken:";
-$a->strings["If you are not yet a member of the free social web, <a href=\"http://dir.friendica.com/siteinfo\">follow this link to find a public Friendica site and join us today</a>."] = "Als je nog geen lid bent van het vrije sociale web,  <a href=\"http://dir.friendica.com/siteinfo\">volg dan deze link om een openbare Friendica-website te vinden, en sluit je vandaag nog aan</a>.";
-$a->strings["Friend/Connection Request"] = "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[" - 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["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:<br> login: %s<br> password: %s<br><br>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["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 '<strong>nickname@\$sitename</strong>'."] = "Kies een bijnaam voor je profiel. Deze moet met een letter beginnen. Je profieladres op deze website zal dan '<strong>bijnaam@\$sitename</strong>' zijn.";
-$a->strings["Choose a nickname: "] = "Kies een bijnaam:";
-$a->strings["Register"] = "Registreer";
-$a->strings["Import"] = "Importeren";
-$a->strings["Import your profile to this friendica instance"] = "";
-$a->strings["System down for maintenance"] = "Systeem onbeschikbaar wegens onderhoud";
-$a->strings["Search"] = "Zoeken";
-$a->strings["Global Directory"] = "Globale gids";
-$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["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["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["Add"] = "Toevoegen";
-$a->strings["No entries."] = "Geen gegevens.";
-$a->strings["Common Friends"] = "Gedeelde Vrienden";
-$a->strings["No contacts in common."] = "Geen gedeelde contacten.";
-$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["%1\$s is currently %2\$s"] = "%1\$s is op dit moment %2\$s";
-$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["Do you really want to delete this suggestion?"] = "Wil je echt dit voorstel verwijderen?";
-$a->strings["Friend Suggestions"] = "Vriendschapsvoorstellen";
-$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["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 &ldquo;%3\$s&rdquo;"] = "%1\$s veranderde %2\$s naar &ldquo;%3\$s&rdquo;";
-$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 (%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["<span class=\"heart\">&hearts;</span> Marital Status:"] = "<span class=\"heart\">&hearts;</span> 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 <strong>public</strong> profile.<br />It <strong>may</strong> be visible to anybody using the internet."] = "Dit is jouw <strong>publiek</strong> profiel.<br />Het <strong>kan</strong> 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["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["This is Friendica, version"] = "Dit is Friendica, versie";
-$a->strings["running at web location"] = "draaiend op web-adres";
-$a->strings["Please visit <a href=\"http://friendica.com\">Friendica.com</a> to learn more about the Friendica project."] = "Bezoek <a href=\"http://friendica.com\">Friendica.com</a> 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["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["Remote privacy information not available."] = "Privacyinformatie op afstand niet beschikbaar.";
-$a->strings["Visible to:"] = "Zichtbaar voor:";
-$a->strings["Personal Notes"] = "Persoonlijke Nota's";
-$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["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["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["Photo Albums"] = "Fotoalbums";
-$a->strings["Contact Photos"] = "Contactfoto's";
-$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["Share"] = "Delen";
-$a->strings["Recent Photos"] = "Recente foto's";
-$a->strings["Account approved."] = "Account goedgekeurd.";
-$a->strings["Registration revoked for %s"] = "Registratie ingetrokken voor %s";
-$a->strings["Please login."] = "Inloggen.";
-$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["Item not available."] = "Item niet beschikbaar";
-$a->strings["Item was not found."] = "Item niet gevonden";
-$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"] = "Nieuw account aanmaken";
-$a->strings["Logout"] = "Uitloggen";
-$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";
-$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 beschrijving]";
-$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["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["This entry was edited"] = "";
-$a->strings["ignore thread"] = "";
-$a->strings["unignore thread"] = "";
-$a->strings["toggle ignore status"] = "";
-$a->strings["ignored"] = "";
-$a->strings["Categories:"] = "Categorieën:";
-$a->strings["Filed under:"] = "Bewaard onder:";
-$a->strings["via"] = "via";
-$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["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["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["Similar Interests"] = "Dezelfde interesses";
-$a->strings["Random Profile"] = "Willekeurig Profiel";
-$a->strings["Invite Friends"] = "Vrienden uitnodigen";
-$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["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"] = "RTF-tekstverwerker";
-$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["Friendica Notification"] = "Friendica Notificatie";
+$a->strings["Thank You,"] = "Bedankt";
+$a->strings["%s Administrator"] = "%s Beheerder";
+$a->strings["noreply"] = "geen reactie";
+$a->strings["%s <!item_type!>"] = "%s <!item_type!>";
+$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.";
@@ -1362,17 +368,37 @@ $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 <strong>may</strong> apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "Een verwijderde groep met deze naam is weer tot leven gewekt. Bestaande itemrechten <strong>kunnen</strong> voor deze groep en toekomstige leden gelden. Wanneer je niet zo had bedoeld kan je een andere groep met een andere naam creëren. ";
-$a->strings["Default privacy group for new contacts"] = "";
-$a->strings["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["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";
@@ -1391,30 +417,53 @@ $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["Visible to everybody"] = "Zichtbaar voor iedereen";
-$a->strings["show"] = "tonen";
-$a->strings["don't show"] = "Niet tonen";
 $a->strings["[no subject]"] = "[geen onderwerp]";
-$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["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["event"] = "gebeurtenis";
+$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["poked"] = "aangestoten";
+$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";
@@ -1427,30 +476,59 @@ $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 <strong>everybody</strong>"] = "Zichtbaar voor <strong>iedereen</strong>";
+$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["view full size"] = "Volledig formaat";
 $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";
@@ -1494,140 +572,39 @@ $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["default"] = "standaard";
-$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["Image/photo"] = "Afbeelding/foto";
-$a->strings["<a href=\"%1\$s\" target=\"_blank\">%2\$s</a> %3\$s"] = "";
-$a->strings["<span><a href=\"%s\" target=\"_blank\">%s</a> wrote the following <a href=\"%s\" target=\"_blank\">post</a>"] = "";
-$a->strings["$1 wrote:"] = "$1 schreef:";
-$a->strings["Encrypted content"] = "Versleutelde inhoud";
-$a->strings["(no subject)"] = "(geen onderwerp)";
-$a->strings["noreply"] = "geen reactie";
-$a->strings["Cannot locate DNS info for database server '%s'"] = "";
-$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[" on Last.fm"] = " op Last.fm";
-$a->strings["Starts:"] = "Begint:";
-$a->strings["Finishes:"] = "Eindigt:";
-$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["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["End this session"] = "Deze sessie beëindigen";
-$a->strings["Your posts and conversations"] = "Jouw berichten en conversaties";
-$a->strings["Your profile page"] = "Jouw profiel pagina";
-$a->strings["Your photos"] = "Jouw foto's";
-$a->strings["Your videos"] = "";
-$a->strings["Your events"] = "Jouw gebeurtenissen";
-$a->strings["Personal notes"] = "Persoonlijke nota's";
-$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["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["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["Friends"] = "Vrienden";
-$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["Sharing notification from Diaspora network"] = "";
-$a->strings["Attachments:"] = "Bijlagen:";
-$a->strings["Do you really want to delete this item?"] = "Wil je echt dit item verwijderen?";
-$a->strings["Archives"] = "Archieven";
+$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["<a href=\"%1\$s\" target=\"_blank\">%2\$s</a> %3\$s"] = "";
+$a->strings["<span><a href=\"%s\" target=\"_blank\">%s</a> wrote the following <a href=\"%s\" target=\"_blank\">post</a>"] = "";
+$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";
@@ -1664,6 +641,7 @@ $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";
@@ -1685,113 +663,1144 @@ $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["Friendica Notification"] = "Friendica Notificatie";
-$a->strings["Thank You,"] = "Bedankt";
-$a->strings["%s Administrator"] = "%s Beheerder";
-$a->strings["%s <!item_type!>"] = "%s <!item_type!>";
-$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["Embedded content"] = "Ingebedde inhoud";
-$a->strings["Embedding disabled"] = "Inbedden uitgeschakeld";
-$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["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["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";
+$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["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["No potential page delegates located."] = "Niemand gevonden waar het paginabeheer mogelijk aan uitbesteed kan worden.";
+$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["Invalid request identifier."] = "Ongeldige <em>request identifier</em>.";
+$a->strings["Discard"] = "Verwerpen";
+$a->strings["Ignore"] = "Negeren";
+$a->strings["System"] = "Systeem";
+$a->strings["Personal"] = "Persoonlijk";
+$a->strings["Show Ignored Requests"] = "Toon genegeerde verzoeken";
+$a->strings["Hide Ignored Requests"] = "Verberg genegeerde verzoeken";
+$a->strings["Notification type: "] = "Notificatiesoort:";
+$a->strings["Friend Suggestion"] = "Vriendschapsvoorstel";
+$a->strings["suggested by %s"] = "Voorgesteld door %s";
+$a->strings["Hide this contact from others"] = "Verberg dit contact voor anderen";
+$a->strings["Post a new friend activity"] = "Bericht over een nieuwe vriend";
+$a->strings["if applicable"] = "Indien toepasbaar";
+$a->strings["Approve"] = "Goedkeuren";
+$a->strings["Claims to be known to you: "] = "Denkt dat u hem of haar kent:";
+$a->strings["yes"] = "Ja";
+$a->strings["no"] = "Nee";
+$a->strings["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: "] = "";
+$a->strings["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: "] = "";
+$a->strings["Friend"] = "Vriend";
+$a->strings["Sharer"] = "Deler";
+$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["%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";
+$a->strings["%s created a new post"] = "%s schreef een nieuw bericht";
+$a->strings["%s commented on %s's post"] = "%s gaf een reactie op het bericht van %s";
+$a->strings["No more network notifications."] = "Geen netwerknotificaties meer";
+$a->strings["Network Notifications"] = "Netwerknotificaties";
+$a->strings["No more system notifications."] = "Geen systeemnotificaties meer.";
+$a->strings["System Notifications"] = "Systeemnotificaties";
+$a->strings["No more personal notifications."] = "Geen persoonlijke notificaties meer";
+$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 <strong>not published</strong>."] = "Profiel is <strong>niet gepubliceerd</strong>.";
+$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 <em>interesting</em> profile change"] = "Een <em>interessante</em> verandering aan je profiel";
+$a->strings["Send a notification email when:"] = "Stuur een notificatie e-mail wanneer:";
+$a->strings["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 <strong>may</strong> still be visible"] = "Antwoorden of 'vind ik leuk's op je openbare posts <strong>kunnen</strong> 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:<br> login: %s<br> password: %s<br><br>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 '<strong>nickname@\$sitename</strong>'."] = "Kies een bijnaam voor je profiel. Deze moet met een letter beginnen. Je profieladres op deze website zal dan '<strong>bijnaam@\$sitename</strong>' 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 <strong>this</strong> profile."] = "Je huidige identiteit is niet de juiste. Log met <strong>dit</strong> 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, <a href=\"http://dir.friendica.com/siteinfo\">follow this link to find a public Friendica site and join us today</a>."] = "Als je nog geen lid bent van het vrije sociale web,  <a href=\"http://dir.friendica.com/siteinfo\">volg dan deze link om een openbare Friendica-website te vinden, en sluit je vandaag nog aan</a>.";
+$a->strings["Friend/Connection Request"] = "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["Themes"] = "Thema's";
+$a->strings["DB updates"] = "DB aanpassingen";
+$a->strings["Logs"] = "Logs";
+$a->strings["probe address"] = "";
+$a->strings["check webfinger"] = "";
+$a->strings["Plugin Features"] = "Plugin Functies";
+$a->strings["diagnostics"] = "";
+$a->strings["User registrations waiting for confirmation"] = "Gebruikersregistraties wachten op bevestiging";
+$a->strings["Normal Account"] = "Normaal account";
+$a->strings["Soapbox Account"] = "Zeepkist-account";
+$a->strings["Community/Celebrity Account"] = "Account voor een groep/forum of beroemdheid";
+$a->strings["Automatic Friend Account"] = "Automatisch Vriendschapsaccount";
+$a->strings["Blog Account"] = "Blog Account";
+$a->strings["Private Forum"] = "Privéforum/-groep";
+$a->strings["Message queues"] = "Bericht-wachtrijen";
+$a->strings["Administration"] = "Beheer";
+$a->strings["Summary"] = "Samenvatting";
+$a->strings["Registered users"] = "Geregistreerde gebruikers";
+$a->strings["Pending registrations"] = "Registraties die in de wacht staan";
+$a->strings["Version"] = "Versie";
+$a->strings["Active plugins"] = "Actieve plug-ins";
+$a->strings["Can not parse base url. Must have at least <scheme>://<domain>"] = "";
+$a->strings["Site settings updated."] = "Site instellingen gewijzigd.";
+$a->strings["No community page"] = "";
+$a->strings["Public postings from users of this site"] = "";
+$a->strings["Global community page"] = "";
+$a->strings["At post arrival"] = "";
+$a->strings["Multi user instance"] = "Server voor meerdere gebruikers";
+$a->strings["Closed"] = "Gesloten";
+$a->strings["Requires approval"] = "Toestemming vereist";
+$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["File upload"] = "Uploaden bestand";
+$a->strings["Policies"] = "Beleid";
+$a->strings["Advanced"] = "Geavanceerd";
+$a->strings["Performance"] = "Performantie";
+$a->strings["Relocate - WARNING: advanced function. Could make this server unreachable."] = "";
+$a->strings["Site name"] = "Site naam";
+$a->strings["Host name"] = "";
+$a->strings["Sender Email"] = "";
+$a->strings["Banner/Logo"] = "Banner/Logo";
+$a->strings["Shortcut icon"] = "";
+$a->strings["Touch icon"] = "";
+$a->strings["Additional Info"] = "";
+$a->strings["For public servers: you can add additional information here that will be listed at dir.friendica.com/siteinfo."] = "";
+$a->strings["System language"] = "Systeemtaal";
+$a->strings["System theme"] = "Systeem thema";
+$a->strings["Default system theme - may be over-ridden by user profiles - <a href='#' id='cnftheme'>change theme settings</a>"] = "Standaard systeem thema - kan door gebruikersprofielen veranderd worden - <a href='#' id='cnftheme'>verander thema instellingen</a>";
+$a->strings["Mobile system theme"] = "Mobiel systeem thema";
+$a->strings["Theme for mobile devices"] = "Thema voor mobiele apparaten";
+$a->strings["SSL link policy"] = "Beleid SSL-links";
+$a->strings["Determines whether generated links should be forced to use SSL"] = "Bepaald of gegenereerde verwijzingen verplicht SSL moeten gebruiken";
+$a->strings["Force SSL"] = "";
+$a->strings["Force all Non-SSL requests to SSL - Attention: on some systems it could lead to endless loops."] = "";
+$a->strings["Old style 'Share'"] = "";
+$a->strings["Deactivates the bbcode element 'share' for repeating items."] = "";
+$a->strings["Hide help entry from navigation menu"] = "Verberg de 'help' uit het navigatiemenu";
+$a->strings["Hides the menu entry for the Help pages from the navigation menu. You can still access it calling /help directly."] = "Verbergt het menu-item voor de Help pagina's uit het navigatiemenu. Je kunt ze nog altijd vinden door /help direct in te geven.";
+$a->strings["Single user instance"] = "Server voor één gebruiker";
+$a->strings["Make this instance multi-user or single-user for the named user"] = "Stel deze server in voor meerdere gebruikers, of enkel voor de geselecteerde gebruiker.";
+$a->strings["Maximum image size"] = "Maximum afbeeldingsgrootte";
+$a->strings["Maximum size in bytes of uploaded images. Default is 0, which means no limits."] = "Maximum afmeting in bytes van afbeeldingen. Standaard is 0, dus geen beperking.";
+$a->strings["Maximum image length"] = "Maximum afbeeldingslengte";
+$a->strings["Maximum length in pixels of the longest side of uploaded images. Default is -1, which means no limits."] = "Maximum lengte in pixels van de langste kant van afbeeldingen. Standaard is -1, dus geen beperkingen.";
+$a->strings["JPEG image quality"] = "JPEG afbeeldingskwaliteit";
+$a->strings["Uploaded JPEGS will be saved at this quality setting [0-100]. Default is 100, which is full quality."] = "JPEGS zullen met deze kwaliteitsinstelling bewaard worden [0-100]. Standaard is 100, dit is volledige kwaliteit.";
+$a->strings["Register policy"] = "Registratiebeleid";
+$a->strings["Maximum Daily Registrations"] = "Maximum aantal registraties per dag";
+$a->strings["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."] = "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.";
+$a->strings["Register text"] = "Registratietekst";
+$a->strings["Will be displayed prominently on the registration page."] = "Dit zal prominent op de registratiepagina getoond worden.";
+$a->strings["Accounts abandoned after x days"] = "Verlaten accounts na x dagen";
+$a->strings["Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit."] = "Dit zal geen systeembronnen verspillen aan het nakijken van externe sites voor verlaten accounts. Geef 0 is voor geen tijdslimiet.";
+$a->strings["Allowed friend domains"] = "Toegelaten vriend domeinen";
+$a->strings["Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains"] = "Komma-gescheiden lijst van domeinen die een vriendschapsband met deze website mogen aangaan. Jokers zijn toegelaten. Laat leeg om alle domeinen toe te laten.";
+$a->strings["Allowed email domains"] = "Toegelaten e-mail domeinen";
+$a->strings["Comma separated list of domains which are allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains"] = "Door komma's gescheiden lijst met e-maildomeinen die op deze website mogen registeren. Wildcards zijn toegestaan.\nLeeg laten om alle domeinen toe te staan.";
+$a->strings["Block public"] = "Openbare toegang blokkeren";
+$a->strings["Check to block public access to all otherwise public personal pages on this site unless you are currently logged in."] = "Kruis dit aan om alle openbare persoonlijke pagina's alleen toegankelijk te maken voor ingelogde gebruikers.";
+$a->strings["Force publish"] = "Dwing publiceren af";
+$a->strings["Check to force all profiles on this site to be listed in the site directory."] = "Kruis dit aan om af te dwingen dat alle profielen op deze website in de gids van deze website gepubliceerd worden.";
+$a->strings["Global directory update URL"] = "Update-adres van de globale gids";
+$a->strings["URL to update the global directory. If this is not set, the global directory is completely unavailable to the application."] = "URL om de globale gids aan te passen. Als dit niet is ingevuld, is de globale gids volledig onbeschikbaar voor deze toepassing.";
+$a->strings["Allow threaded items"] = "Sta threads in conversaties toe";
+$a->strings["Allow infinite level threading for items on this site."] = "Sta oneindige niveaus threads in conversaties op deze website toe.";
+$a->strings["Private posts by default for new users"] = "Privéberichten als standaard voor nieuwe gebruikers";
+$a->strings["Set default post permissions for all new members to the default privacy group rather than public."] = "Stel de standaardrechten van berichten voor nieuwe leden op de standaard privacygroep in, in plaats van openbaar.";
+$a->strings["Don't include post content in email notifications"] = "De inhoud van het bericht niet insluiten bij e-mailnotificaties";
+$a->strings["Don't include the content of a post/comment/private message/etc. in the email notifications that are sent out from this site, as a privacy measure."] = "De inhoud van berichten/commentaar/privéberichten/enzovoort  niet insluiten in e-mailnotificaties die door deze website verzonden worden, voor de bescherming van je privacy.";
+$a->strings["Disallow public access to addons listed in the apps menu."] = "";
+$a->strings["Checking this box will restrict addons listed in the apps menu to members only."] = "";
+$a->strings["Don't embed private images in posts"] = "";
+$a->strings["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 photos will have to authenticate and load each image, which may take a while."] = "";
+$a->strings["Allow Users to set remote_self"] = "";
+$a->strings["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."] = "";
+$a->strings["Block multiple registrations"] = "Blokkeer meerdere registraties";
+$a->strings["Disallow users to register additional accounts for use as pages."] = "Laat niet toe dat gebruikers meerdere accounts aanmaken.";
+$a->strings["OpenID support"] = "OpenID ondersteuning";
+$a->strings["OpenID support for registration and logins."] = "OpenID ondersteuning voor registraties en logins.";
+$a->strings["Fullname check"] = "Controleer volledige naam";
+$a->strings["Force users to register with a space between firstname and lastname in Full name, as an antispam measure"] = "Verplicht gebruikers om zich te registreren met een spatie tussen voornaam en achternaam, als anti-spam maatregel";
+$a->strings["UTF-8 Regular expressions"] = "UTF-8 reguliere uitdrukkingen";
+$a->strings["Use PHP UTF8 regular expressions"] = "Gebruik PHP UTF8 reguliere uitdrukkingen";
+$a->strings["Community Page Style"] = "";
+$a->strings["Type of community page to show. 'Global community' shows every public posting from an open distributed network that arrived on this server."] = "";
+$a->strings["Posts per user on community page"] = "";
+$a->strings["The maximum number of posts per user on the community page. (Not valid for 'Global Community')"] = "";
+$a->strings["Enable OStatus support"] = "Activeer OStatus ondersteuning";
+$a->strings["Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All communications in OStatus are public, so privacy warnings will be occasionally displayed."] = "";
+$a->strings["OStatus conversation completion interval"] = "";
+$a->strings["How often shall the poller check for new entries in OStatus conversations? This can be a very ressource task."] = "";
+$a->strings["Enable Diaspora support"] = "Activeer Diaspora ondersteuning";
+$a->strings["Provide built-in Diaspora network compatibility."] = "Bied ingebouwde ondersteuning voor het Diaspora netwerk.";
+$a->strings["Only allow Friendica contacts"] = "Laat alleen Friendica contacten toe";
+$a->strings["All contacts must use Friendica protocols. All other built-in communication protocols disabled."] = "Alle contacten moeten een Friendica protocol gebruiken. Alle andere ingebouwde communicatieprotocols worden uitgeschakeld.";
+$a->strings["Verify SSL"] = "Controleer SSL";
+$a->strings["If you wish, you can turn on strict certificate checking. This will mean you cannot connect (at all) to self-signed SSL sites."] = "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.";
+$a->strings["Proxy user"] = "Proxy-gebruiker";
+$a->strings["Proxy URL"] = "Proxy-URL";
+$a->strings["Network timeout"] = "Netwerk timeout";
+$a->strings["Value is in seconds. Set to 0 for unlimited (not recommended)."] = "Waarde is in seconden. Zet op 0 voor onbeperkt (niet aanbevolen).";
+$a->strings["Delivery interval"] = "Afleverinterval";
+$a->strings["Delay background delivery processes by this many seconds to reduce system load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 for large dedicated servers."] = "Stel achtergrond processen voor aflevering een aantal seconden uit om systeembelasting te beperken. Aanbevolen: 4-5 voor gedeelde hosten, 2-3 voor virtuele privé servers, 0-1 voor grote servers.";
+$a->strings["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["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"] = "";
+$a->strings["Suppress language information in meta information about a posting."] = "";
+$a->strings["Suppress Tags"] = "";
+$a->strings["Suppress showing a list of hashtags at the end of the posting."] = "";
+$a->strings["Path to item cache"] = "Pad naar cache voor items";
+$a->strings["Cache duration in seconds"] = "Cache tijdsduur in seconden";
+$a->strings["How long should the cache files be hold? Default value is 86400 seconds (One day). To disable the item cache, set the value to -1."] = "";
+$a->strings["Maximum numbers of comments per post"] = "";
+$a->strings["How much comments should be shown for each post? Default value is 100."] = "";
+$a->strings["Path for lock file"] = "Pad voor lock bestand";
+$a->strings["Temp path"] = "Tijdelijk pad";
+$a->strings["Base path to installation"] = "Basispad voor installatie";
+$a->strings["Disable picture proxy"] = "";
+$a->strings["The picture proxy increases performance and privacy. It shouldn't be used on systems with very low bandwith."] = "";
+$a->strings["Enable old style pager"] = "";
+$a->strings["The old style pager has page numbers but slows down massively the page speed."] = "";
+$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["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"] = "";
+$a->strings["Executing %s failed with error: %s"] = "";
+$a->strings["Update %s was successfully applied."] = "Wijziging %s geslaagd.";
+$a->strings["Update %s did not return a status. Unknown if it succeeded."] = "Wijziging %s gaf geen status terug. We weten niet of de wijziging geslaagd is.";
+$a->strings["There was no additional update function %s that needed to be called."] = "";
+$a->strings["No failed updates."] = "Geen misluke wijzigingen";
+$a->strings["Check database structure"] = "";
+$a->strings["Failed Updates"] = "Misluke wijzigingen";
+$a->strings["This does not include updates prior to 1139, which did not return a status."] = "Dit is zonder de wijzigingen voor 1139, welke geen status teruggaven.";
+$a->strings["Mark success (if update was manually applied)"] = "Markeren als succes (als aanpassing manueel doorgevoerd werd)";
+$a->strings["Attempt to execute this update step automatically"] = "Probeer deze stap automatisch uit te voeren";
+$a->strings["\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["%s user blocked/unblocked"] = array(
+       0 => "%s gebruiker geblokkeerd/niet geblokkeerd",
+       1 => "%s gebruikers geblokkeerd/niet geblokkeerd",
+);
+$a->strings["%s user deleted"] = array(
+       0 => "%s gebruiker verwijderd",
+       1 => "%s gebruikers verwijderd",
+);
+$a->strings["User '%s' deleted"] = "Gebruiker '%s' verwijderd";
+$a->strings["User '%s' unblocked"] = "Gebruiker '%s' niet meer geblokkeerd";
+$a->strings["User '%s' blocked"] = "Gebruiker '%s' geblokkeerd";
+$a->strings["Add User"] = "Gebruiker toevoegen";
+$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["No registrations."] = "Geen registraties.";
+$a->strings["Deny"] = "Weiger";
+$a->strings["Site admin"] = "Sitebeheerder";
+$a->strings["Account expired"] = "Account verlopen";
+$a->strings["New User"] = "Nieuwe gebruiker";
+$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["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";
+$a->strings["Nickname"] = "Bijnaam";
+$a->strings["Nickname of the new user."] = "Bijnaam van nieuwe gebruiker";
+$a->strings["Email address of the new user."] = "E-mailadres van nieuwe gebruiker";
+$a->strings["Plugin %s disabled."] = "Plugin %s uitgeschakeld.";
+$a->strings["Plugin %s enabled."] = "Plugin %s ingeschakeld.";
+$a->strings["Disable"] = "Uitschakelen";
+$a->strings["Enable"] = "Inschakelen";
+$a->strings["Toggle"] = "Schakelaar";
+$a->strings["Author: "] = "Auteur:";
+$a->strings["Maintainer: "] = "Onderhoud:";
+$a->strings["No themes found."] = "Geen thema's gevonden.";
+$a->strings["Screenshot"] = "Schermafdruk";
+$a->strings["[Experimental]"] = "[Experimenteel]";
+$a->strings["[Unsupported]"] = "[Niet ondersteund]";
+$a->strings["Log settings updated."] = "Log instellingen gewijzigd";
+$a->strings["Clear"] = "Wis";
+$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["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["Done. You can now login with your username and password"] = "Gebeurd. Je kunt nu inloggen met je gebruikersnaam en wachtwoord";
-$a->strings["toggle mobile"] = "mobiel thema omwisselen";
-$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 line-height for posts and comments"] = "Stel lijnhoogte voor berichten en reacties in";
-$a->strings["Set colour scheme"] = "Stel kleurschema in";
-$a->strings["Alignment"] = "Uitlijning";
-$a->strings["Left"] = "Links";
-$a->strings["Center"] = "Gecentreerd";
-$a->strings["Posts font size"] = "Lettergrootte berichten";
-$a->strings["Textareas font size"] = "Lettergrootte tekstgebieden";
-$a->strings["Set resolution for middle column"] = "Stel resolutie in voor de middelste kolom. ";
-$a->strings["Set color scheme"] = "Stel kleurenschema in";
-$a->strings["Set zoomfactor for Earth Layer"] = "";
-$a->strings["Set longitude (X) for Earth Layers"] = "";
-$a->strings["Set latitude (Y) for Earth Layers"] = "";
-$a->strings["Community Pages"] = "Forum/groepspagina's";
-$a->strings["Earth Layers"] = "Earth Layers";
-$a->strings["Community Profiles"] = "Forum/groepsprofielen";
-$a->strings["Help or @NewHere ?"] = "";
-$a->strings["Connect Services"] = "Diensten verbinden";
-$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["Your contacts"] = "Jouw contacten";
-$a->strings["Your personal photos"] = "Jouw persoonlijke foto's";
-$a->strings["Local Directory"] = "Lokale gids";
-$a->strings["Set zoomfactor for Earth Layers"] = "";
-$a->strings["Show/hide boxes at right-hand column:"] = "";
-$a->strings["Set style"] = "";
-$a->strings["greenzero"] = "";
-$a->strings["purplezero"] = "";
-$a->strings["easterbunny"] = "";
-$a->strings["darkzero"] = "";
-$a->strings["comix"] = "";
-$a->strings["slackr"] = "";
-$a->strings["Variations"] = "";
+$a->strings["Private messages to this group are at risk of public disclosure."] = "Privéberichten naar deze groep kunnen openbaar gemaakt worden.";
+$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 <a href=\"http://friendica.com\">Friendica.com</a> to learn more about the Friendica project."] = "Bezoek <a href=\"http://friendica.com\">Friendica.com</a> 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["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 <em>Settings</em> page after successful login."] = "Je kunt dit wachtwoord veranderen nadat je bent ingelogd op de <em>Instellingen></em> 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["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["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["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";
+$a->strings["Event Finishes:"] = "Gebeurtenis eindigt:";
+$a->strings["Adjust for viewer timezone"] = "Pas aan aan de tijdzone van de gebruiker";
+$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 <strong>may</strong> be able to respond from the sender's profile page."] = "Geen beveiligde communicatie beschikbaar. Je kunt <strong>misschien</strong> 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 &ldquo;%3\$s&rdquo;"] = "%1\$s veranderde %2\$s naar &ldquo;%3\$s&rdquo;";
+$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["<span class=\"heart\">&hearts;</span> Marital Status:"] = "<span class=\"heart\">&hearts;</span> 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 <strong>public</strong> profile.<br />It <strong>may</strong> be visible to anybody using the internet."] = "Dit is jouw <strong>publiek</strong> profiel.<br />Het <strong>kan</strong> zichtbaar zijn voor iedereen op het internet.";
+$a->strings["Age: "] = "Leeftijd:";
+$a->strings["Edit/Manage Profiles"] = "Wijzig/Beheer Profielen";
+$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["System check"] = "Systeemcontrole";
+$a->strings["Check again"] = "Controleer opnieuw";
+$a->strings["Database connection"] = "Verbinding met database";
+$a->strings["In order to install Friendica we need to know how to connect to your database."] = "Om Friendica te kunnen installeren moet ik weten hoe ik jouw database kan bereiken.";
+$a->strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Neem contact op met jouw hostingprovider of websitebeheerder, wanneer je vragen hebt over deze instellingen. ";
+$a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "De database die je hier opgeeft zou al moeten bestaan. Maak anders de database aan voordat je verder gaat.";
+$a->strings["Database Server Name"] = "Servernaam database";
+$a->strings["Database Login Name"] = "Gebruikersnaam database";
+$a->strings["Database Login Password"] = "Wachtwoord database";
+$a->strings["Database Name"] = "Naam database";
+$a->strings["Site administrator email address"] = "E-mailadres van de websitebeheerder";
+$a->strings["Your account email address must match this in order to use the web admin panel."] = "Het e-mailadres van je account moet hiermee overeenkomen om het administratiepaneel te kunnen gebruiken.";
+$a->strings["Please select a default timezone for your website"] = "Selecteer een standaard tijdzone voor uw website";
+$a->strings["Site settings"] = "Website-instellingen";
+$a->strings["Could not find a command line version of PHP in the web server PATH."] = "Kan geen command-line-versie van PHP vinden in het PATH van de webserver.";
+$a->strings["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 <a href='http://friendica.com/node/27'>'Activating scheduled tasks'</a>"] = "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  <a href='http://friendica.com/node/27'>'Activeren van geplande taken'</a>";
+$a->strings["PHP executable path"] = "PATH van het PHP commando";
+$a->strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "Vul het volledige path in naar het php programma. Je kunt dit blanco laten om de installatie verder te zetten.";
+$a->strings["Command line PHP"] = "PHP-opdrachtregel";
+$a->strings["PHP executable is not the php cli binary (could be cgi-fgci version)"] = "";
+$a->strings["Found PHP version: "] = "Gevonden PHP versie:";
+$a->strings["PHP cli binary"] = "";
+$a->strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "De command-line versie van PHP op jouw systeem heeft \"register_argc_argv\" niet geactiveerd.";
+$a->strings["This is required for message delivery to work."] = "Dit is nodig om het verzenden van berichten mogelijk te maken.";
+$a->strings["PHP register_argc_argv"] = "PHP register_argc_argv";
+$a->strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = "";
+$a->strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "Zie \"http://www.php.net/manual/en/openssl.installation.php\" wanneer u Friendica onder Windows draait.";
+$a->strings["Generate encryption keys"] = "";
+$a->strings["libCurl PHP module"] = "libCurl PHP module";
+$a->strings["GD graphics PHP module"] = "GD graphics PHP module";
+$a->strings["OpenSSL PHP module"] = "OpenSSL PHP module";
+$a->strings["mysqli PHP module"] = "mysqli PHP module";
+$a->strings["mb_string PHP module"] = "mb_string PHP module";
+$a->strings["Apache mod_rewrite module"] = "Apache mod_rewrite module";
+$a->strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Fout: Apache-module mod-rewrite is vereist, maar niet geïnstalleerd.";
+$a->strings["Error: libCURL PHP module required but not installed."] = "Fout: PHP-module libCURL is vereist, maar niet geïnstalleerd.";
+$a->strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Fout: PHP-module GD graphics met JPEG support is vereist, maar niet geïnstalleerd.";
+$a->strings["Error: openssl PHP module required but not installed."] = "Fout: PHP-module openssl is vereist, maar niet geïnstalleerd.";
+$a->strings["Error: mysqli PHP module required but not installed."] = "Fout: PHP-module mysqli is vereist, maar niet geïnstalleerd.";
+$a->strings["Error: mb_string PHP module required but not installed."] = "Fout: PHP-module mb_string is vereist, maar niet geïnstalleerd.";
+$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."] = "Het installatieprogramma moet een bestand \".htconfig.php\" in de bovenste map van je webserver aanmaken, maar kan dit niet doen.";
+$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."] = "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.";
+$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."] = "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.";
+$a->strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"INSTALL.txt\" for instructions."] = "Je kunt ook deze procedure overslaan, en een manuele installatie uitvoeren. Lees het bestand \"INSTALL.txt\" voor instructies.";
+$a->strings[".htconfig.php is writable"] = ".htconfig.php is schrijfbaar";
+$a->strings["Friendica uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "Friendica gebruikt het Smarty3 sjabloon systeem om zijn webpagina's weer te geven. Smarty3 compileert sjablonen naar PHP om de weergave te versnellen.";
+$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."] = "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.";
+$a->strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "Zorg ervoor dat de gebruiker waaronder je webserver runt (bijv. www-data) schrijf-toegang heeft tot deze map.";
+$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."] = "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.";
+$a->strings["view/smarty3 is writable"] = "view/smarty3 is schrijfbaar";
+$a->strings["Url rewrite in .htaccess is not working. Check your server configuration."] = "";
+$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["<h1>What next</h1>"] = "<h1>Wat nu</h1>";
+$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["<strong>WARNING: This is highly advanced</strong> and if you enter incorrect information your communications with this contact may stop working."] = "";
+$a->strings["Please use your browser 'Back' button <strong>now</strong> if you are uncertain what to do on this page."] = "Gebruik <strong>nu</strong> de \"terug\"-knop in je webbrowser wanneer je niet weet wat je op deze pagina moet doen.";
+$a->strings["Return to contact editor"] = "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 <em>Quick Start</em> page - find a brief introduction to your profile and network tabs, make some new connections, and find some groups to join."] = "Op je <em>Snelstart</em> pagina kun je een korte inleiding vinden over je profiel en netwerk tabs, om enkele nieuwe connecties te leggen en groepen te vinden om lid van te worden.";
+$a->strings["Go to Your Settings"] = "Ga naar je instellingen";
+$a->strings["On your <em>Settings</em> page -  change your initial password. Also make a note of your Identity Address. This looks just like an email address - and will be useful in making friends on the free social web."] = "Verander je initieel wachtwoord op je <em>instellingenpagina</em>. Noteer ook het adres van je identiteit. Dit ziet er uit als een e-mailadres - en zal nuttig zijn om vrienden te maken op het vrije sociale web.";
+$a->strings["Review the other settings, particularly the privacy settings. An unpublished directory listing is like having an unlisted phone number. In general, you should probably publish your listing - unless all of your friends and potential friends know exactly how to find you."] = "Controleer ook de andere instellingen, in het bijzonder de privacy-instellingen. Een niet-gepubliceerd adres is zoals een privé-telefoonnummer. In het algemeen wil je waarschijnlijk je adres publiceren - tenzij al je vrienden en mogelijke vrienden precies weten hoe je te vinden.";
+$a->strings["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 <strong>default</strong> profile to your liking. Review the settings for hiding your list of friends and hiding the profile from unknown visitors."] = "Bewerk je <strong>standaard</strong> 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["<em>If</em> this is your own personal server, installing the Facebook addon may ease your transition to the free social web."] = "<em>Als</em> dit jouw eigen persoonlijke server is kan het installeren van de Facebook toevoeging je overgang naar het vrije sociale web vergemakkelijken.";
+$a->strings["Importing Emails"] = "E-mails importeren";
+$a->strings["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 <em>Add New Contact</em> dialog."] = "Je contactenpagina is jouw poort om vriendschappen te beheren en verbinding te leggen met vrienden op andere netwerken. Je kunt hun adres of URL toevoegen in de <em>Voeg nieuw contact toe</em> dialoog.";
+$a->strings["Go to Your Site's Directory"] = "Ga naar de gids van je website";
+$a->strings["The Directory page lets you find other people in this network or other federated sites. Look for a <em>Connect</em> or <em>Follow</em> link on their profile page. Provide your own Identity Address if requested."] = "In de gids vind je andere mensen in dit netwerk of op andere federatieve sites. Zoek naar het woord <em>Connect</em> of <em>Follow</em> op hun profielpagina (meestal aan de linkerkant). Vul je eigen identiteitsadres in wanneer daar om wordt gevraagd.";
+$a->strings["Finding New People"] = "Nieuwe mensen vinden";
+$a->strings["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 <strong>help</strong> pages may be consulted for detail on other program features and resources."] = "Je kunt onze <strong>help</strong> 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["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["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.";
+$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["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:";
index 93189a677876878caaf326bcd20b6016ceb1c22a..5574390c5ca20b6d0efdc9fb538be497648f6080 100644 (file)
 # FULL NAME <EMAIL@ADDRESS>, 2011
 # John Brazil, 2015
 # Ricardo Pereira <rhalah@gmail.com>, 2012
-# Sérgio Lima <oigreslima@gmail.com>, 2013-2014
+# Sérgio Lima <oigreslima@gmail.com>, 2013-2015
 # Sérgio Lima <oigreslima@gmail.com>, 2012
 msgid ""
 msgstr ""
 "Project-Id-Version: friendica\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-09 08:57+0100\n"
-"PO-Revision-Date: 2015-02-09 09:46+0000\n"
-"Last-Translator: fabrixxm <fabrix.xm@gmail.com>\n"
+"POT-Creation-Date: 2015-04-04 17:54+0200\n"
+"PO-Revision-Date: 2015-05-15 20:48+0000\n"
+"Last-Translator: Sérgio Lima <oigreslima@gmail.com>\n"
 "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/friendica/language/pt_BR/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -32,4602 +32,4502 @@ msgstr ""
 "Language: pt_BR\n"
 "Plural-Forms: nplurals=2; plural=(n > 1);\n"
 
-#: ../../mod/contacts.php:108
-#, php-format
-msgid "%d contact edited."
-msgid_plural "%d contacts edited"
-msgstr[0] "%d contato editado"
-msgstr[1] "%d contatos editados"
+#: ../../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 "Enviar"
 
-#: ../../mod/contacts.php:139 ../../mod/contacts.php:272
-msgid "Could not access contact record."
-msgstr "Não foi possível acessar o registro do contato."
+#: ../../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 "Configurações do tema"
 
-#: ../../mod/contacts.php:153
-msgid "Could not locate selected profile."
-msgstr "Não foi possível localizar o perfil selecionado."
+#: ../../view/theme/cleanzero/config.php:83
+msgid "Set resize level for images in posts and comments (width and height)"
+msgstr "Configure o nível de redimensionamento para imagens em publicações e comentários (largura e altura)"
 
-#: ../../mod/contacts.php:186
-msgid "Contact updated."
-msgstr "O contato foi atualizado."
+#: ../../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 "Escolha o tamanho da fonte para publicações e comentários"
 
-#: ../../mod/contacts.php:188 ../../mod/dfrn_request.php:576
-msgid "Failed to update contact record."
-msgstr "Não foi possível atualizar o registro do contato."
+#: ../../view/theme/cleanzero/config.php:85
+msgid "Set theme width"
+msgstr "Configure a largura do tema"
 
-#: ../../mod/contacts.php:254 ../../mod/manage.php:96
-#: ../../mod/display.php:499 ../../mod/profile_photo.php:19
-#: ../../mod/profile_photo.php:169 ../../mod/profile_photo.php:180
-#: ../../mod/profile_photo.php:193 ../../mod/follow.php:9
-#: ../../mod/item.php:168 ../../mod/item.php:184 ../../mod/group.php:19
-#: ../../mod/dfrn_confirm.php:55 ../../mod/fsuggest.php:78
-#: ../../mod/wall_upload.php:66 ../../mod/viewcontacts.php:24
-#: ../../mod/notifications.php:66 ../../mod/message.php:38
-#: ../../mod/message.php:174 ../../mod/crepair.php:119
-#: ../../mod/nogroup.php:25 ../../mod/network.php:4 ../../mod/allfriends.php:9
-#: ../../mod/events.php:140 ../../mod/install.php:151
-#: ../../mod/wallmessage.php:9 ../../mod/wallmessage.php:33
-#: ../../mod/wallmessage.php:79 ../../mod/wallmessage.php:103
-#: ../../mod/wall_attach.php:55 ../../mod/settings.php:102
-#: ../../mod/settings.php:596 ../../mod/settings.php:601
-#: ../../mod/register.php:42 ../../mod/delegate.php:12 ../../mod/mood.php:114
-#: ../../mod/suggest.php:58 ../../mod/profiles.php:165
-#: ../../mod/profiles.php:618 ../../mod/editpost.php:10 ../../mod/api.php:26
-#: ../../mod/api.php:31 ../../mod/notes.php:20 ../../mod/poke.php:135
-#: ../../mod/invite.php:15 ../../mod/invite.php:101 ../../mod/photos.php:134
-#: ../../mod/photos.php:1050 ../../mod/regmod.php:110 ../../mod/uimport.php:23
-#: ../../mod/attach.php:33 ../../include/items.php:4712 ../../index.php:369
-msgid "Permission denied."
-msgstr "Permissão negada."
+#: ../../view/theme/cleanzero/config.php:86
+#: ../../view/theme/quattro/config.php:68
+msgid "Color scheme"
+msgstr "Esquema de cores"
 
-#: ../../mod/contacts.php:287
-msgid "Contact has been blocked"
-msgstr "O contato foi bloqueado"
+#: ../../view/theme/vier/config.php:59
+msgid "Set style"
+msgstr "escolha estilo"
 
-#: ../../mod/contacts.php:287
-msgid "Contact has been unblocked"
-msgstr "O contato foi desbloqueado"
+#: ../../view/theme/duepuntozero/config.php:44 ../../include/text.php:1719
+#: ../../include/user.php:247
+msgid "default"
+msgstr "padrão"
 
-#: ../../mod/contacts.php:298
-msgid "Contact has been ignored"
-msgstr "O contato foi ignorado"
+#: ../../view/theme/duepuntozero/config.php:45
+msgid "greenzero"
+msgstr "greenzero"
 
-#: ../../mod/contacts.php:298
-msgid "Contact has been unignored"
-msgstr "O contato deixou de ser ignorado"
+#: ../../view/theme/duepuntozero/config.php:46
+msgid "purplezero"
+msgstr "purplezero"
 
-#: ../../mod/contacts.php:310
-msgid "Contact has been archived"
-msgstr "O contato foi arquivado"
+#: ../../view/theme/duepuntozero/config.php:47
+msgid "easterbunny"
+msgstr "easterbunny"
 
-#: ../../mod/contacts.php:310
-msgid "Contact has been unarchived"
-msgstr "O contato foi desarquivado"
+#: ../../view/theme/duepuntozero/config.php:48
+msgid "darkzero"
+msgstr "darkzero"
 
-#: ../../mod/contacts.php:335 ../../mod/contacts.php:711
-msgid "Do you really want to delete this contact?"
-msgstr "Você realmente deseja deletar esse contato?"
+#: ../../view/theme/duepuntozero/config.php:49
+msgid "comix"
+msgstr "comix"
 
-#: ../../mod/contacts.php:337 ../../mod/message.php:209
-#: ../../mod/settings.php:1010 ../../mod/settings.php:1016
-#: ../../mod/settings.php:1024 ../../mod/settings.php:1028
-#: ../../mod/settings.php:1033 ../../mod/settings.php:1039
-#: ../../mod/settings.php:1045 ../../mod/settings.php:1051
-#: ../../mod/settings.php:1081 ../../mod/settings.php:1082
-#: ../../mod/settings.php:1083 ../../mod/settings.php:1084
-#: ../../mod/settings.php:1085 ../../mod/dfrn_request.php:830
-#: ../../mod/register.php:233 ../../mod/suggest.php:29
-#: ../../mod/profiles.php:661 ../../mod/profiles.php:664 ../../mod/api.php:105
-#: ../../include/items.php:4557
-msgid "Yes"
-msgstr "Sim"
+#: ../../view/theme/duepuntozero/config.php:50
+msgid "slackr"
+msgstr "slackr"
 
-#: ../../mod/contacts.php:340 ../../mod/tagrm.php:11 ../../mod/tagrm.php:94
-#: ../../mod/message.php:212 ../../mod/fbrowser.php:81
-#: ../../mod/fbrowser.php:116 ../../mod/settings.php:615
-#: ../../mod/settings.php:641 ../../mod/dfrn_request.php:844
-#: ../../mod/suggest.php:32 ../../mod/editpost.php:148
-#: ../../mod/photos.php:203 ../../mod/photos.php:292
-#: ../../include/conversation.php:1129 ../../include/items.php:4560
-msgid "Cancel"
-msgstr "Cancelar"
+#: ../../view/theme/duepuntozero/config.php:62
+msgid "Variations"
+msgstr "Variações"
 
-#: ../../mod/contacts.php:352
-msgid "Contact has been removed."
-msgstr "O contato foi removido."
+#: ../../view/theme/diabook/config.php:142
+#: ../../view/theme/diabook/theme.php:621 ../../include/acl_selectors.php:335
+msgid "don't show"
+msgstr "não exibir"
 
-#: ../../mod/contacts.php:390
-#, php-format
-msgid "You are mutual friends with %s"
-msgstr "Você possui uma amizade mútua com %s"
+#: ../../view/theme/diabook/config.php:142
+#: ../../view/theme/diabook/theme.php:621 ../../include/acl_selectors.php:334
+msgid "show"
+msgstr "exibir"
 
-#: ../../mod/contacts.php:394
-#, php-format
-msgid "You are sharing with %s"
-msgstr "Você está compartilhando com %s"
+#: ../../view/theme/diabook/config.php:152
+#: ../../view/theme/dispy/config.php:74
+msgid "Set line-height for posts and comments"
+msgstr "Escolha comprimento da linha para publicações e comentários"
 
-#: ../../mod/contacts.php:399
-#, php-format
-msgid "%s is sharing with you"
-msgstr "%s está compartilhando com você"
+#: ../../view/theme/diabook/config.php:153
+msgid "Set resolution for middle column"
+msgstr "Escolha a resolução para a coluna do meio"
 
-#: ../../mod/contacts.php:416
-msgid "Private communications are not available for this contact."
-msgstr "As comunicações privadas não estão disponíveis para este contato."
+#: ../../view/theme/diabook/config.php:154
+msgid "Set color scheme"
+msgstr "Configure o esquema de cores"
 
-#: ../../mod/contacts.php:419 ../../mod/admin.php:569
-msgid "Never"
-msgstr "Nunca"
+#: ../../view/theme/diabook/config.php:155
+msgid "Set zoomfactor for Earth Layer"
+msgstr "Configure o zoom para Camadas da Terra"
 
-#: ../../mod/contacts.php:423
-msgid "(Update was successful)"
-msgstr "(A atualização foi bem sucedida)"
+#: ../../view/theme/diabook/config.php:156
+#: ../../view/theme/diabook/theme.php:585
+msgid "Set longitude (X) for Earth Layers"
+msgstr "Configure longitude (X) para Camadas da Terra"
 
-#: ../../mod/contacts.php:423
-msgid "(Update was not successful)"
-msgstr "(A atualização não foi bem sucedida)"
+#: ../../view/theme/diabook/config.php:157
+#: ../../view/theme/diabook/theme.php:586
+msgid "Set latitude (Y) for Earth Layers"
+msgstr "Configure latitude (Y) para Camadas da Terra"
 
-#: ../../mod/contacts.php:425
-msgid "Suggest friends"
-msgstr "Sugerir amigos"
+#: ../../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 "Páginas da Comunidade"
 
-#: ../../mod/contacts.php:429
-#, php-format
-msgid "Network type: %s"
-msgstr "Tipo de rede: %s"
+#: ../../view/theme/diabook/config.php:159
+#: ../../view/theme/diabook/theme.php:579
+#: ../../view/theme/diabook/theme.php:625
+msgid "Earth Layers"
+msgstr "Camadas da Terra"
 
-#: ../../mod/contacts.php:432 ../../include/contact_widgets.php:200
-#, php-format
-msgid "%d contact in common"
-msgid_plural "%d contacts in common"
-msgstr[0] "%d contato em comum"
-msgstr[1] "%d contatos em comum"
+#: ../../view/theme/diabook/config.php:160
+#: ../../view/theme/diabook/theme.php:391
+#: ../../view/theme/diabook/theme.php:626
+msgid "Community Profiles"
+msgstr "Profiles Comunitários"
 
-#: ../../mod/contacts.php:437
-msgid "View all contacts"
-msgstr "Ver todos os contatos"
+#: ../../view/theme/diabook/config.php:161
+#: ../../view/theme/diabook/theme.php:599
+#: ../../view/theme/diabook/theme.php:627
+msgid "Help or @NewHere ?"
+msgstr "Ajuda ou @NewHere ?"
 
-#: ../../mod/contacts.php:442 ../../mod/contacts.php:501
-#: ../../mod/contacts.php:714 ../../mod/admin.php:1009
-msgid "Unblock"
-msgstr "Desbloquear"
+#: ../../view/theme/diabook/config.php:162
+#: ../../view/theme/diabook/theme.php:606
+#: ../../view/theme/diabook/theme.php:628
+msgid "Connect Services"
+msgstr "Conectar serviços"
 
-#: ../../mod/contacts.php:442 ../../mod/contacts.php:501
-#: ../../mod/contacts.php:714 ../../mod/admin.php:1008
-msgid "Block"
-msgstr "Bloquear"
+#: ../../view/theme/diabook/config.php:163
+#: ../../view/theme/diabook/theme.php:523
+#: ../../view/theme/diabook/theme.php:629
+msgid "Find Friends"
+msgstr "Encontrar amigos"
 
-#: ../../mod/contacts.php:445
-msgid "Toggle Blocked status"
-msgstr "Alternar o status de bloqueio"
+#: ../../view/theme/diabook/config.php:164
+#: ../../view/theme/diabook/theme.php:412
+#: ../../view/theme/diabook/theme.php:630
+msgid "Last users"
+msgstr "Últimos usuários"
 
-#: ../../mod/contacts.php:448 ../../mod/contacts.php:502
-#: ../../mod/contacts.php:715
-msgid "Unignore"
-msgstr "Deixar de ignorar"
+#: ../../view/theme/diabook/config.php:165
+#: ../../view/theme/diabook/theme.php:486
+#: ../../view/theme/diabook/theme.php:631
+msgid "Last photos"
+msgstr "Últimas fotos"
 
-#: ../../mod/contacts.php:448 ../../mod/contacts.php:502
-#: ../../mod/contacts.php:715 ../../mod/notifications.php:51
-#: ../../mod/notifications.php:164 ../../mod/notifications.php:210
-msgid "Ignore"
-msgstr "Ignorar"
+#: ../../view/theme/diabook/config.php:166
+#: ../../view/theme/diabook/theme.php:441
+#: ../../view/theme/diabook/theme.php:632
+msgid "Last likes"
+msgstr "Últimas gostadas"
 
-#: ../../mod/contacts.php:451
-msgid "Toggle Ignored status"
-msgstr "Alternar o status de ignorado"
+#: ../../view/theme/diabook/theme.php:123 ../../include/nav.php:105
+#: ../../include/nav.php:148 ../../mod/notifications.php:93
+msgid "Home"
+msgstr "Pessoal"
 
-#: ../../mod/contacts.php:455 ../../mod/contacts.php:716
-msgid "Unarchive"
-msgstr "Desarquivar"
+#: ../../view/theme/diabook/theme.php:123 ../../include/nav.php:76
+#: ../../include/nav.php:148
+msgid "Your posts and conversations"
+msgstr "Suas publicações e conversas"
 
-#: ../../mod/contacts.php:455 ../../mod/contacts.php:716
-msgid "Archive"
-msgstr "Arquivar"
+#: ../../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 "Perfil "
 
-#: ../../mod/contacts.php:458
-msgid "Toggle Archive status"
-msgstr "Alternar o status de arquivamento"
+#: ../../view/theme/diabook/theme.php:124 ../../include/nav.php:77
+msgid "Your profile page"
+msgstr "Sua página de perfil"
 
-#: ../../mod/contacts.php:461
-msgid "Repair"
-msgstr "Reparar"
+#: ../../view/theme/diabook/theme.php:125 ../../include/nav.php:177
+#: ../../mod/contacts.php:718
+msgid "Contacts"
+msgstr "Contatos"
 
-#: ../../mod/contacts.php:464
-msgid "Advanced Contact Settings"
-msgstr "Configurações avançadas do contato"
+#: ../../view/theme/diabook/theme.php:125
+msgid "Your contacts"
+msgstr "Seus contatos"
 
-#: ../../mod/contacts.php:470
-msgid "Communications lost with this contact!"
-msgstr "As comunicações com esse contato foram perdidas!"
+#: ../../view/theme/diabook/theme.php:126 ../../boot.php:2140
+#: ../../include/nav.php:78 ../../mod/fbrowser.php:25
+msgid "Photos"
+msgstr "Fotos"
 
-#: ../../mod/contacts.php:473
-msgid "Contact Editor"
-msgstr "Editor de contatos"
+#: ../../view/theme/diabook/theme.php:126 ../../include/nav.php:78
+msgid "Your photos"
+msgstr "Suas fotos"
 
-#: ../../mod/contacts.php:475 ../../mod/manage.php:110
-#: ../../mod/fsuggest.php:107 ../../mod/message.php:335
-#: ../../mod/message.php:564 ../../mod/crepair.php:186
-#: ../../mod/events.php:478 ../../mod/content.php:710
-#: ../../mod/install.php:248 ../../mod/install.php:286 ../../mod/mood.php:137
-#: ../../mod/profiles.php:686 ../../mod/localtime.php:45
-#: ../../mod/poke.php:199 ../../mod/invite.php:140 ../../mod/photos.php:1084
-#: ../../mod/photos.php:1203 ../../mod/photos.php:1514
-#: ../../mod/photos.php:1565 ../../mod/photos.php:1609
-#: ../../mod/photos.php:1697 ../../object/Item.php:678
-#: ../../view/theme/cleanzero/config.php:80
-#: ../../view/theme/dispy/config.php:70 ../../view/theme/quattro/config.php:64
-#: ../../view/theme/diabook/config.php:148
-#: ../../view/theme/diabook/theme.php:633 ../../view/theme/vier/config.php:53
-#: ../../view/theme/duepuntozero/config.php:59
-msgid "Submit"
-msgstr "Enviar"
+#: ../../view/theme/diabook/theme.php:127 ../../boot.php:2157
+#: ../../include/nav.php:80 ../../mod/events.php:370
+msgid "Events"
+msgstr "Eventos"
 
-#: ../../mod/contacts.php:476
-msgid "Profile Visibility"
-msgstr "Visibilidade do perfil"
+#: ../../view/theme/diabook/theme.php:127 ../../include/nav.php:80
+msgid "Your events"
+msgstr "Seus eventos"
 
-#: ../../mod/contacts.php:477
-#, php-format
-msgid ""
-"Please choose the profile you would like to display to %s when viewing your "
-"profile securely."
-msgstr "Por favor, selecione o perfil que você gostaria de exibir para %s quando estiver visualizando seu perfil de modo seguro."
+#: ../../view/theme/diabook/theme.php:128 ../../include/nav.php:81
+msgid "Personal notes"
+msgstr "Suas anotações pessoais"
 
-#: ../../mod/contacts.php:478
-msgid "Contact Information / Notes"
-msgstr "Informações sobre o contato / Anotações"
-
-#: ../../mod/contacts.php:479
-msgid "Edit contact notes"
-msgstr "Editar as anotações do contato"
+#: ../../view/theme/diabook/theme.php:128
+msgid "Your personal photos"
+msgstr "Suas fotos pessoais"
 
-#: ../../mod/contacts.php:484 ../../mod/contacts.php:679
-#: ../../mod/viewcontacts.php:64 ../../mod/nogroup.php:40
-#, php-format
-msgid "Visit %s's profile [%s]"
-msgstr "Visitar o perfil de %s [%s]"
+#: ../../view/theme/diabook/theme.php:129 ../../include/nav.php:129
+#: ../../include/nav.php:131 ../../mod/community.php:32
+msgid "Community"
+msgstr "Comunidade"
 
-#: ../../mod/contacts.php:485
-msgid "Block/Unblock contact"
-msgstr "Bloquear/desbloquear o contato"
+#: ../../view/theme/diabook/theme.php:463 ../../include/conversation.php:118
+#: ../../include/conversation.php:245 ../../include/text.php:1983
+msgid "event"
+msgstr "evento"
 
-#: ../../mod/contacts.php:486
-msgid "Ignore contact"
-msgstr "Ignorar o contato"
+#: ../../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"
 
-#: ../../mod/contacts.php:487
-msgid "Repair URL settings"
-msgstr "Reparar as definições de URL"
+#: ../../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"
 
-#: ../../mod/contacts.php:488
-msgid "View conversations"
-msgstr "Ver as conversas"
+#: ../../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 gosta de %3$s de %2$s"
 
-#: ../../mod/contacts.php:490
-msgid "Delete contact"
-msgstr "Excluir o contato"
+#: ../../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 "Fotos dos contatos"
 
-#: ../../mod/contacts.php:494
-msgid "Last update:"
-msgstr "Última atualização:"
+#: ../../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 "Fotos do perfil"
 
-#: ../../mod/contacts.php:496
-msgid "Update public posts"
-msgstr "Atualizar publicações públicas"
+#: ../../view/theme/diabook/theme.php:524
+msgid "Local Directory"
+msgstr "Diretório Local"
 
-#: ../../mod/contacts.php:498 ../../mod/admin.php:1503
-msgid "Update now"
-msgstr "Atualizar agora"
+#: ../../view/theme/diabook/theme.php:525 ../../mod/directory.php:51
+msgid "Global Directory"
+msgstr "Diretório global"
 
-#: ../../mod/contacts.php:505
-msgid "Currently blocked"
-msgstr "Atualmente bloqueado"
+#: ../../view/theme/diabook/theme.php:526 ../../include/contact_widgets.php:36
+msgid "Similar Interests"
+msgstr "Interesses Parecidos"
 
-#: ../../mod/contacts.php:506
-msgid "Currently ignored"
-msgstr "Atualmente ignorado"
+#: ../../view/theme/diabook/theme.php:527 ../../include/contact_widgets.php:35
+#: ../../mod/suggest.php:68
+msgid "Friend Suggestions"
+msgstr "Sugestões de amigos"
 
-#: ../../mod/contacts.php:507
-msgid "Currently archived"
-msgstr "Atualmente arquivado"
+#: ../../view/theme/diabook/theme.php:528 ../../include/contact_widgets.php:38
+msgid "Invite Friends"
+msgstr "Convidar amigos"
 
-#: ../../mod/contacts.php:508 ../../mod/notifications.php:157
-#: ../../mod/notifications.php:204
-msgid "Hide this contact from others"
-msgstr "Ocultar este contato dos outros"
+#: ../../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 "Configurações"
 
-#: ../../mod/contacts.php:508
-msgid ""
-"Replies/likes to your public posts <strong>may</strong> still be visible"
-msgstr "Respostas/gostadas associados às suas publicações <strong>ainda podem</strong> estar visíveis"
+#: ../../view/theme/diabook/theme.php:584
+msgid "Set zoomfactor for Earth Layers"
+msgstr "Configure o zoom para Camadas da Terra"
 
-#: ../../mod/contacts.php:509
-msgid "Notification for new posts"
-msgstr "Notificações para novas publicações"
+#: ../../view/theme/diabook/theme.php:622
+msgid "Show/hide boxes at right-hand column:"
+msgstr "Mostre/esconda caixas na coluna à direita:"
 
-#: ../../mod/contacts.php:509
-msgid "Send a notification of every new post of this contact"
-msgstr "Envie uma notificação para todos as novas publicações deste contato"
+#: ../../view/theme/quattro/config.php:67
+msgid "Alignment"
+msgstr "Alinhamento"
 
-#: ../../mod/contacts.php:510
-msgid "Fetch further information for feeds"
-msgstr "Pega mais informações para feeds"
+#: ../../view/theme/quattro/config.php:67
+msgid "Left"
+msgstr "Esquerda"
 
-#: ../../mod/contacts.php:511
-msgid "Disabled"
-msgstr "Desabilitado"
+#: ../../view/theme/quattro/config.php:67
+msgid "Center"
+msgstr "Centro"
 
-#: ../../mod/contacts.php:511
-msgid "Fetch information"
-msgstr "Buscar informações"
+#: ../../view/theme/quattro/config.php:69
+msgid "Posts font size"
+msgstr "Tamanho da fonte para publicações"
 
-#: ../../mod/contacts.php:511
-msgid "Fetch information and keywords"
-msgstr "Buscar informação e palavras-chave"
+#: ../../view/theme/quattro/config.php:70
+msgid "Textareas font size"
+msgstr "Tamanho da fonte para campos texto"
 
-#: ../../mod/contacts.php:513
-msgid "Blacklisted keywords"
-msgstr "Palavras-chave na Lista Negra"
+#: ../../view/theme/dispy/config.php:75
+msgid "Set colour scheme"
+msgstr "Configure o esquema de cores"
 
-#: ../../mod/contacts.php:513
-msgid ""
-"Comma separated list of keywords that should not be converted to hashtags, "
-"when \"Fetch information and keywords\" is selected"
-msgstr "Lista de palavras-chave separadas por vírgulas que não devem ser convertidas para hashtags, quando \"Buscar informações e palavras-chave\" for selecionado."
+#: ../../index.php:211 ../../mod/apps.php:7
+msgid "You must be logged in to use addons. "
+msgstr "Você precisa estar logado para usar os addons."
 
-#: ../../mod/contacts.php:564
-msgid "Suggestions"
-msgstr "Sugestões"
+#: ../../index.php:255 ../../mod/help.php:42
+msgid "Not Found"
+msgstr "Não encontrada"
 
-#: ../../mod/contacts.php:567
-msgid "Suggest potential friends"
-msgstr "Sugerir amigos em potencial"
+#: ../../index.php:258 ../../mod/help.php:45
+msgid "Page not found."
+msgstr "Página não encontrada."
 
-#: ../../mod/contacts.php:570 ../../mod/group.php:194
-msgid "All Contacts"
-msgstr "Todos os contatos"
+#: ../../index.php:367 ../../mod/group.php:72 ../../mod/profperm.php:19
+msgid "Permission denied"
+msgstr "Permissão negada"
 
-#: ../../mod/contacts.php:573
-msgid "Show all contacts"
-msgstr "Exibe todos os contatos"
+#: ../../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 "Permissão negada."
 
-#: ../../mod/contacts.php:576
-msgid "Unblocked"
-msgstr "Desbloquear"
+#: ../../index.php:427
+msgid "toggle mobile"
+msgstr "habilita mobile"
 
-#: ../../mod/contacts.php:579
-msgid "Only show unblocked contacts"
-msgstr "Exibe somente contatos desbloqueados"
+#: ../../addon-wrk/openidserver/lib/render/trust.php:30
+#, php-format
+msgid "Do you wish to confirm your identity (<tt>%s</tt>) with <tt>%s</tt>"
+msgstr "Você deseja confirmar sua identidade (<tt>%s</tt>) com  <tt>%s</tt>"
 
-#: ../../mod/contacts.php:583
-msgid "Blocked"
-msgstr "Bloqueado"
+#: ../../addon-wrk/openidserver/lib/render/trust.php:43
+#: ../../mod/dfrn_request.php:676
+msgid "Confirm"
+msgstr "Confirmar"
 
-#: ../../mod/contacts.php:586
-msgid "Only show blocked contacts"
-msgstr "Exibe somente contatos bloqueados"
+#: ../../addon-wrk/openidserver/lib/render/trust.php:44
+msgid "Do not confirm"
+msgstr "Não confirma"
 
-#: ../../mod/contacts.php:590
-msgid "Ignored"
-msgstr "Ignorados"
+#: ../../addon-wrk/openidserver/lib/render/trust.php:48
+msgid "Trust This Site"
+msgstr "Confia neste site"
 
-#: ../../mod/contacts.php:593
-msgid "Only show ignored contacts"
-msgstr "Exibe somente contatos ignorados"
+#: ../../addon-wrk/openidserver/lib/render/trust.php:53
+msgid "No Identifier Sent"
+msgstr "Nenhum identificador enviado"
 
-#: ../../mod/contacts.php:597
-msgid "Archived"
-msgstr "Arquivados"
+#: ../../addon-wrk/openidserver/lib/render/wronguser.php:5
+msgid "Requested identity don't match logged in user."
+msgstr "Identidade solicitada não corresponde ao usuário conectado"
 
-#: ../../mod/contacts.php:600
-msgid "Only show archived contacts"
-msgstr "Exibe somente contatos arquivados"
+#: ../../addon-wrk/openidserver/lib/render.php:27
+#, php-format
+msgid "Please wait; you are being redirected to <%s>"
+msgstr "Por favor aguarde; você será redirecionado para <%s>"
 
-#: ../../mod/contacts.php:604
-msgid "Hidden"
-msgstr "Ocultos"
+#: ../../boot.php:749
+msgid "Delete this item?"
+msgstr "Excluir este item?"
 
-#: ../../mod/contacts.php:607
-msgid "Only show hidden contacts"
-msgstr "Exibe somente contatos ocultos"
+#: ../../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 "Comentar"
 
-#: ../../mod/contacts.php:655
-msgid "Mutual Friendship"
-msgstr "Amizade mútua"
+#: ../../boot.php:751 ../../include/contact_widgets.php:205
+#: ../../object/Item.php:390 ../../mod/content.php:606
+msgid "show more"
+msgstr "exibir mais"
 
-#: ../../mod/contacts.php:659
-msgid "is a fan of yours"
-msgstr "é um fã seu"
+#: ../../boot.php:752
+msgid "show fewer"
+msgstr "exibir menos"
 
-#: ../../mod/contacts.php:663
-msgid "you are a fan of"
-msgstr "você é um fã de"
+#: ../../boot.php:1122
+#, php-format
+msgid "Update %s failed. See error logs."
+msgstr "Atualização %s falhou. Vide registro de erros (log)."
 
-#: ../../mod/contacts.php:680 ../../mod/nogroup.php:41
-msgid "Edit contact"
-msgstr "Editar o contato"
+#: ../../boot.php:1229
+msgid "Create a New Account"
+msgstr "Criar uma nova conta"
 
-#: ../../mod/contacts.php:702 ../../include/nav.php:177
-#: ../../view/theme/diabook/theme.php:125
-msgid "Contacts"
-msgstr "Contatos"
+#: ../../boot.php:1230 ../../include/nav.php:109 ../../mod/register.php:269
+msgid "Register"
+msgstr "Registrar"
 
-#: ../../mod/contacts.php:706
-msgid "Search your contacts"
-msgstr "Pesquisar seus contatos"
+#: ../../boot.php:1254 ../../include/nav.php:73
+msgid "Logout"
+msgstr "Sair"
 
-#: ../../mod/contacts.php:707 ../../mod/directory.php:61
-msgid "Finding: "
-msgstr "Pesquisando: "
+#: ../../boot.php:1255 ../../include/nav.php:92 ../../mod/bookmarklet.php:12
+msgid "Login"
+msgstr "Entrar"
 
-#: ../../mod/contacts.php:708 ../../mod/directory.php:63
-#: ../../include/contact_widgets.php:34
-msgid "Find"
-msgstr "Pesquisar"
+#: ../../boot.php:1257
+msgid "Nickname or Email address: "
+msgstr "Identificação ou endereço de e-mail: "
 
-#: ../../mod/contacts.php:713 ../../mod/settings.php:132
-#: ../../mod/settings.php:640
-msgid "Update"
-msgstr "Atualizar"
+#: ../../boot.php:1258
+msgid "Password: "
+msgstr "Senha: "
 
-#: ../../mod/contacts.php:717 ../../mod/group.php:171 ../../mod/admin.php:1007
-#: ../../mod/content.php:438 ../../mod/content.php:741
-#: ../../mod/settings.php:677 ../../mod/photos.php:1654
-#: ../../object/Item.php:130 ../../include/conversation.php:614
-msgid "Delete"
-msgstr "Excluir"
+#: ../../boot.php:1259
+msgid "Remember me"
+msgstr "Lembre-se de mim"
 
-#: ../../mod/hcard.php:10
-msgid "No profile"
-msgstr "Nenhum perfil"
+#: ../../boot.php:1262
+msgid "Or login using OpenID: "
+msgstr "Ou login usando OpendID:"
 
-#: ../../mod/manage.php:106
-msgid "Manage Identities and/or Pages"
-msgstr "Gerenciar identidades e/ou páginas"
+#: ../../boot.php:1268
+msgid "Forgot your password?"
+msgstr "Esqueceu a sua senha?"
 
-#: ../../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 "Alterne entre diferentes identidades ou páginas de comunidade/grupo que dividem detalhes da sua conta ou que você tenha fornecido permissões de \"administração\""
+#: ../../boot.php:1269 ../../mod/lostpass.php:109
+msgid "Password Reset"
+msgstr "Redifinir a senha"
 
-#: ../../mod/manage.php:108
-msgid "Select an identity to manage: "
-msgstr "Selecione uma identidade para gerenciar: "
+#: ../../boot.php:1271
+msgid "Website Terms of Service"
+msgstr "Termos de Serviço do Website"
 
-#: ../../mod/oexchange.php:25
-msgid "Post successful."
-msgstr "Publicado com sucesso."
+#: ../../boot.php:1272
+msgid "terms of service"
+msgstr "termos de serviço"
 
-#: ../../mod/profperm.php:19 ../../mod/group.php:72 ../../index.php:368
-msgid "Permission denied"
-msgstr "Permissão negada"
+#: ../../boot.php:1274
+msgid "Website Privacy Policy"
+msgstr "Política de Privacidade do Website"
 
-#: ../../mod/profperm.php:25 ../../mod/profperm.php:55
-msgid "Invalid profile identifier."
-msgstr "Identificador de perfil inválido."
+#: ../../boot.php:1275
+msgid "privacy policy"
+msgstr "política de privacidade"
 
-#: ../../mod/profperm.php:101
-msgid "Profile Visibility Editor"
-msgstr "Editor de visibilidade do perfil"
-
-#: ../../mod/profperm.php:103 ../../mod/newmember.php:32 ../../boot.php:2119
-#: ../../include/profile_advanced.php:7 ../../include/profile_advanced.php:87
-#: ../../include/nav.php:77 ../../view/theme/diabook/theme.php:124
-msgid "Profile"
-msgstr "Perfil "
+#: ../../boot.php:1408
+msgid "Requested account is not available."
+msgstr "Conta solicitada não disponível"
 
-#: ../../mod/profperm.php:105 ../../mod/group.php:224
-msgid "Click on a contact to add or remove."
-msgstr "Clique em um contato para adicionar ou remover."
+#: ../../boot.php:1447 ../../mod/profile.php:21
+msgid "Requested profile is not available."
+msgstr "Perfil solicitado não está disponível."
 
-#: ../../mod/profperm.php:114
-msgid "Visible To"
-msgstr "Visível para"
+#: ../../boot.php:1490 ../../boot.php:1624
+#: ../../include/profile_advanced.php:84
+msgid "Edit profile"
+msgstr "Editar perfil"
 
-#: ../../mod/profperm.php:130
-msgid "All Contacts (with secure profile access)"
-msgstr "Todos os contatos (com acesso a perfil seguro)"
+#: ../../boot.php:1557 ../../include/contact_widgets.php:10
+#: ../../mod/suggest.php:90 ../../mod/match.php:58
+msgid "Connect"
+msgstr "Conectar"
 
-#: ../../mod/display.php:82 ../../mod/display.php:284
-#: ../../mod/display.php:503 ../../mod/viewsrc.php:15 ../../mod/admin.php:169
-#: ../../mod/admin.php:1052 ../../mod/admin.php:1265 ../../mod/notice.php:15
-#: ../../include/items.php:4516
-msgid "Item not found."
-msgstr "O item não foi encontrado."
+#: ../../boot.php:1589
+msgid "Message"
+msgstr "Mensagem"
 
-#: ../../mod/display.php:212 ../../mod/videos.php:115
-#: ../../mod/viewcontacts.php:19 ../../mod/community.php:18
-#: ../../mod/dfrn_request.php:762 ../../mod/search.php:89
-#: ../../mod/directory.php:33 ../../mod/photos.php:920
-msgid "Public access denied."
-msgstr "Acesso público negado."
+#: ../../boot.php:1595 ../../include/nav.php:175
+msgid "Profiles"
+msgstr "Perfis"
 
-#: ../../mod/display.php:332 ../../mod/profile.php:155
-msgid "Access to this profile has been restricted."
-msgstr "O acesso a este perfil está restrito."
+#: ../../boot.php:1595
+msgid "Manage/edit profiles"
+msgstr "Gerenciar/editar perfis"
 
-#: ../../mod/display.php:496
-msgid "Item has been removed."
-msgstr "O item foi removido."
+#: ../../boot.php:1600 ../../boot.php:1626 ../../mod/profiles.php:804
+msgid "Change profile photo"
+msgstr "Mudar a foto do perfil"
 
-#: ../../mod/newmember.php:6
-msgid "Welcome to Friendica"
-msgstr "Bemvindo ao Friendica"
+#: ../../boot.php:1601 ../../mod/profiles.php:805
+msgid "Create New Profile"
+msgstr "Criar um novo perfil"
 
-#: ../../mod/newmember.php:8
-msgid "New Member Checklist"
-msgstr "Dicas para os novos membros"
+#: ../../boot.php:1611 ../../mod/profiles.php:816
+msgid "Profile Image"
+msgstr "Imagem do perfil"
 
-#: ../../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 "Gostaríamos de oferecer algumas dicas e links para ajudar a tornar a sua experiência agradável. Clique em qualquer item para visitar a página correspondente. Um link para essa página será visível em sua home page por duas semanas após o seu registro inicial e, então, desaparecerá discretamente."
+#: ../../boot.php:1614 ../../mod/profiles.php:818
+msgid "visible to everybody"
+msgstr "visível para todos"
 
-#: ../../mod/newmember.php:14
-msgid "Getting Started"
-msgstr "Do Início"
+#: ../../boot.php:1615 ../../mod/profiles.php:819
+msgid "Edit visibility"
+msgstr "Editar a visibilidade"
 
-#: ../../mod/newmember.php:18
-msgid "Friendica Walk-Through"
-msgstr "Passo-a-passo da friendica"
+#: ../../boot.php:1637 ../../include/event.php:40
+#: ../../include/bb2diaspora.php:155 ../../mod/events.php:471
+#: ../../mod/directory.php:136
+msgid "Location:"
+msgstr "Localização:"
 
-#: ../../mod/newmember.php:18
-msgid ""
-"On your <em>Quick Start</em> page - find a brief introduction to your "
-"profile and network tabs, make some new connections, and find some groups to"
-" join."
-msgstr "Na sua página <em>Início Rápido</em> - encontre uma introdução rápida ao seu perfil e abas da rede, faça algumas conexões novas, e encontre alguns grupos entrar."
+#: ../../boot.php:1639 ../../include/profile_advanced.php:17
+#: ../../mod/directory.php:138
+msgid "Gender:"
+msgstr "Gênero:"
 
-#: ../../mod/newmember.php:22 ../../mod/admin.php:1104
-#: ../../mod/admin.php:1325 ../../mod/settings.php:85
-#: ../../include/nav.php:172 ../../view/theme/diabook/theme.php:544
-#: ../../view/theme/diabook/theme.php:648
-msgid "Settings"
-msgstr "Configurações"
+#: ../../boot.php:1642 ../../include/profile_advanced.php:37
+#: ../../mod/directory.php:140
+msgid "Status:"
+msgstr "Situação:"
 
-#: ../../mod/newmember.php:26
-msgid "Go to Your Settings"
-msgstr "Ir para as suas configurações"
+#: ../../boot.php:1644 ../../include/profile_advanced.php:48
+#: ../../mod/directory.php:142
+msgid "Homepage:"
+msgstr "Página web:"
 
-#: ../../mod/newmember.php:26
-msgid ""
-"On your <em>Settings</em> page -  change your initial password. Also make a "
-"note of your Identity Address. This looks just like an email address - and "
-"will be useful in making friends on the free social web."
-msgstr "Em sua página  <em>Configurações</em> - mude sua senha inicial. Também tome nota de seu Endereço de Identidade. Isso se parece com um endereço de e-mail - e será útil para se fazer amigos na rede social livre."
+#: ../../boot.php:1646 ../../include/profile_advanced.php:58
+#: ../../mod/directory.php:144
+msgid "About:"
+msgstr "Sobre:"
 
-#: ../../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 "Revise as outras configurações, em particular as relacionadas a privacidade. Não estar listado no diretório é o equivalente a não ter o seu número na lista telefônica. Normalmente é interessante você estar listado - a não ser que os seu amigos atuais e potenciais saibam exatamente como encontrar você."
+#: ../../boot.php:1711
+msgid "Network:"
+msgstr "Rede:"
 
-#: ../../mod/newmember.php:36 ../../mod/profile_photo.php:244
-#: ../../mod/profiles.php:699
-msgid "Upload Profile Photo"
-msgstr "Enviar foto do perfil"
+#: ../../boot.php:1743 ../../boot.php:1829
+msgid "g A l F d"
+msgstr "G l d F"
 
-#: ../../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 "Envie uma foto para o seu perfil, caso ainda não tenha feito isso. Estudos indicam que pessoas que publicam fotos reais delas mesmas têm 10 vezes mais chances de encontrar novos amigos do que as que não o fazem."
+#: ../../boot.php:1744 ../../boot.php:1830
+msgid "F d"
+msgstr "F d"
 
-#: ../../mod/newmember.php:38
-msgid "Edit Your Profile"
-msgstr "Editar seu perfil"
+#: ../../boot.php:1789 ../../boot.php:1877
+msgid "[today]"
+msgstr "[hoje]"
 
-#: ../../mod/newmember.php:38
-msgid ""
-"Edit your <strong>default</strong> profile to your liking. Review the "
-"settings for hiding your list of friends and hiding the profile from unknown"
-" visitors."
-msgstr "Edite o seu perfil <strong>padrão</strong> a seu gosto. Revise as configurações de ocultação da sua lista de amigos e do seu perfil de visitantes desconhecidos."
+#: ../../boot.php:1801
+msgid "Birthday Reminders"
+msgstr "Lembretes de aniversário"
 
-#: ../../mod/newmember.php:40
-msgid "Profile Keywords"
-msgstr "Palavras-chave do perfil"
+#: ../../boot.php:1802
+msgid "Birthdays this week:"
+msgstr "Aniversários nesta semana:"
 
-#: ../../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 "Defina algumas palavras-chave públicas para o seu perfil padrão, que descrevam os seus interesses. Nós podemos encontrar outras pessoas com interesses similares e sugerir novas amizades."
+#: ../../boot.php:1864
+msgid "[No description]"
+msgstr "[Sem descrição]"
 
-#: ../../mod/newmember.php:44
-msgid "Connecting"
-msgstr "Conexões"
+#: ../../boot.php:1888
+msgid "Event Reminders"
+msgstr "Lembretes de eventos"
 
-#: ../../mod/newmember.php:49 ../../mod/newmember.php:51
-#: ../../include/contact_selectors.php:81
-msgid "Facebook"
-msgstr "Facebook"
+#: ../../boot.php:1889
+msgid "Events this week:"
+msgstr "Eventos esta semana:"
 
-#: ../../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 "Autorize o Conector com Facebook, caso você tenha uma conta lá e nós (opcionalmente) importaremos todos os seus amigos e conversas do Facebook."
+#: ../../boot.php:2126 ../../include/nav.php:76
+msgid "Status"
+msgstr "Status"
 
-#: ../../mod/newmember.php:51
-msgid ""
-"<em>If</em> this is your own personal server, installing the Facebook addon "
-"may ease your transition to the free social web."
-msgstr "<em>Se</em> esse é o seu servidor pessoal, instalar o complemento do Facebook talvez facilite a transição para a rede social livre."
+#: ../../boot.php:2129
+msgid "Status Messages and Posts"
+msgstr "Mensagem de Estado (status) e Publicações"
 
-#: ../../mod/newmember.php:56
-msgid "Importing Emails"
-msgstr "Importação de e-mails"
+#: ../../boot.php:2136
+msgid "Profile Details"
+msgstr "Detalhe do Perfil"
 
-#: ../../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 "Forneça a informação de acesso ao seu e-mail na sua página de Configuração de Conector se você deseja importar e interagir com amigos ou listas de discussão da sua Caixa de Entrada de e-mail"
+#: ../../boot.php:2143 ../../mod/photos.php:52
+msgid "Photo Albums"
+msgstr "Álbuns de fotos"
 
-#: ../../mod/newmember.php:58
-msgid "Go to Your Contacts Page"
-msgstr "Ir para a sua página de contatos"
+#: ../../boot.php:2147 ../../boot.php:2150 ../../include/nav.php:79
+msgid "Videos"
+msgstr "Vídeos"
 
-#: ../../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 <em>Add New Contact</em> dialog."
-msgstr "Sua página de contatos é sua rota para o gerenciamento de amizades e conexão com amigos em outras redes. Geralmente você fornece o endereço deles ou a URL do site na janela de diálogo <em>Adicionar Novo Contato</em>."
+#: ../../boot.php:2160
+msgid "Events and Calendar"
+msgstr "Eventos e Agenda"
 
-#: ../../mod/newmember.php:60
-msgid "Go to Your Site's Directory"
-msgstr "Ir para o diretório do seu site"
+#: ../../boot.php:2164 ../../mod/notes.php:44
+msgid "Personal Notes"
+msgstr "Notas pessoais"
 
-#: ../../mod/newmember.php:60
-msgid ""
-"The Directory page lets you find other people in this network or other "
-"federated sites. Look for a <em>Connect</em> or <em>Follow</em> link on "
-"their profile page. Provide your own Identity Address if requested."
-msgstr "A página de Diretório permite que você encontre outras pessoas nesta rede ou em outras redes federadas. Procure por um link <em>Conectar</em> ou <em>Seguir</em> no perfil que deseja acompanhar. Forneça o seu Endereço de Identidade próprio, se solicitado."
+#: ../../boot.php:2167
+msgid "Only You Can See This"
+msgstr "Somente Você Pode Ver Isso"
 
-#: ../../mod/newmember.php:62
-msgid "Finding New People"
-msgstr "Pesquisar por novas pessoas"
+#: ../../include/features.php:23
+msgid "General Features"
+msgstr "Funcionalidades Gerais"
 
-#: ../../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 "No painel lateral da página de Contatos existem várias ferramentas para encontrar novos amigos. Você pode descobrir pessoas com os mesmos interesses, procurar por nomes ou interesses e fornecer sugestões baseadas nos relacionamentos da rede. Em um site completamente novo, as sugestões de amizades geralmente começam a ser populadas dentro de 24 horas."
+#: ../../include/features.php:25
+msgid "Multiple Profiles"
+msgstr "Perfís Múltiplos"
 
-#: ../../mod/newmember.php:66 ../../include/group.php:270
-msgid "Groups"
-msgstr "Grupos"
+#: ../../include/features.php:25
+msgid "Ability to create multiple profiles"
+msgstr "Capacidade de criar perfis múltiplos"
 
-#: ../../mod/newmember.php:70
-msgid "Group Your Contacts"
-msgstr "Agrupe seus contatos"
+#: ../../include/features.php:30
+msgid "Post Composition Features"
+msgstr "Funcionalidades de Composição de Publicações"
 
-#: ../../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 "Após fazer novas amizades, organize-as em grupos de conversa privados, a partir da barra lateral na sua página de Contatos. A partir daí, você poderá interagir com cada grupo privativamente, na sua página de Rede."
+#: ../../include/features.php:31
+msgid "Richtext Editor"
+msgstr "Editor Richtext"
 
-#: ../../mod/newmember.php:73
-msgid "Why Aren't My Posts Public?"
-msgstr "Por que as minhas publicações não são públicas?"
+#: ../../include/features.php:31
+msgid "Enable richtext editor"
+msgstr "Habilite editor richtext"
 
-#: ../../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 "A friendica respeita sua privacidade. Por padrão, suas publicações estarão visíveis apenas para as pessoas que você adicionou como amigos. Para mais informações, veja a página de ajuda, a partir do link acima."
+#: ../../include/features.php:32
+msgid "Post Preview"
+msgstr "Pré-visualização da Publicação"
 
-#: ../../mod/newmember.php:78
-msgid "Getting Help"
-msgstr "Obtendo ajuda"
-
-#: ../../mod/newmember.php:82
-msgid "Go to the Help Section"
-msgstr "Ir para a seção de ajuda"
-
-#: ../../mod/newmember.php:82
-msgid ""
-"Our <strong>help</strong> pages may be consulted for detail on other program"
-" features and resources."
-msgstr "Nossas páginas de <strong>ajuda</strong> podem ser consultadas para mais detalhes sobre características e recursos do programa."
+#: ../../include/features.php:32
+msgid "Allow previewing posts and comments before publishing them"
+msgstr "Permite pré-visualizar publicações e comentários antes de publicá-los"
 
-#: ../../mod/openid.php:24
-msgid "OpenID protocol error. No ID returned."
-msgstr "Erro no protocolo OpenID. Não foi retornada nenhuma ID."
+#: ../../include/features.php:33
+msgid "Auto-mention Forums"
+msgstr "Auto-menção Fóruns"
 
-#: ../../mod/openid.php:53
+#: ../../include/features.php:33
 msgid ""
-"Account not found and OpenID registration is not permitted on this site."
-msgstr "A conta não foi encontrada e não são permitidos registros via OpenID nesse site."
-
-#: ../../mod/openid.php:93 ../../include/auth.php:112
-#: ../../include/auth.php:175
-msgid "Login failed."
-msgstr "Não foi possível autenticar."
+"Add/remove mention when a fourm page is selected/deselected in ACL window."
+msgstr "Adiciona/Remove menções quando uma página de fórum é selecionada/deselecionada na janela ACL"
 
-#: ../../mod/profile_photo.php:44
-msgid "Image uploaded but image cropping failed."
-msgstr "A imagem foi enviada, mas não foi possível cortá-la."
+#: ../../include/features.php:38
+msgid "Network Sidebar Widgets"
+msgstr "Widgets da Barra Lateral da Rede"
 
-#: ../../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
-#: ../../mod/photos.php:155 ../../mod/photos.php:731 ../../mod/photos.php:1187
-#: ../../mod/photos.php:1210 ../../include/user.php:335
-#: ../../include/user.php:342 ../../include/user.php:349
-#: ../../view/theme/diabook/theme.php:500
-msgid "Profile Photos"
-msgstr "Fotos do perfil"
+#: ../../include/features.php:39
+msgid "Search by Date"
+msgstr "Buscar por Data"
 
-#: ../../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 "Não foi possível reduzir o tamanho da imagem [%s]."
+#: ../../include/features.php:39
+msgid "Ability to select posts by date ranges"
+msgstr "Capacidade de selecionar publicações por intervalos de data"
 
-#: ../../mod/profile_photo.php:118
-msgid ""
-"Shift-reload the page or clear browser cache if the new photo does not "
-"display immediately."
-msgstr "Recarregue a página pressionando a tecla Shift ou limpe o cache do navegador caso a nova foto não apareça imediatamente"
+#: ../../include/features.php:40
+msgid "Group Filter"
+msgstr "Filtrar Grupo"
 
-#: ../../mod/profile_photo.php:128
-msgid "Unable to process image"
-msgstr "Não foi possível processar a imagem"
+#: ../../include/features.php:40
+msgid "Enable widget to display Network posts only from selected group"
+msgstr "Habilita widget para mostrar publicações da Rede somente de grupos selecionados"
 
-#: ../../mod/profile_photo.php:144 ../../mod/wall_upload.php:122
-#, php-format
-msgid "Image exceeds size limit of %d"
-msgstr "A imagem excede o limite de tamanho de %d"
+#: ../../include/features.php:41
+msgid "Network Filter"
+msgstr "Filtrar Rede"
 
-#: ../../mod/profile_photo.php:153 ../../mod/wall_upload.php:144
-#: ../../mod/photos.php:807
-msgid "Unable to process image."
-msgstr "Não foi possível processar a imagem."
+#: ../../include/features.php:41
+msgid "Enable widget to display Network posts only from selected network"
+msgstr "Habilita widget para mostrar publicações da Rede de redes selecionadas"
 
-#: ../../mod/profile_photo.php:242
-msgid "Upload File:"
-msgstr "Enviar arquivo:"
+#: ../../include/features.php:42 ../../mod/network.php:194
+#: ../../mod/search.php:30
+msgid "Saved Searches"
+msgstr "Pesquisas salvas"
 
-#: ../../mod/profile_photo.php:243
-msgid "Select a profile:"
-msgstr "Selecione um perfil:"
+#: ../../include/features.php:42
+msgid "Save search terms for re-use"
+msgstr "Guarde as palavras-chaves para reuso"
 
-#: ../../mod/profile_photo.php:245
-msgid "Upload"
-msgstr "Enviar"
+#: ../../include/features.php:47
+msgid "Network Tabs"
+msgstr "Abas da Rede"
 
-#: ../../mod/profile_photo.php:248 ../../mod/settings.php:1062
-msgid "or"
-msgstr "ou"
+#: ../../include/features.php:48
+msgid "Network Personal Tab"
+msgstr "Aba Pessoal da Rede"
 
-#: ../../mod/profile_photo.php:248
-msgid "skip this step"
-msgstr "pule esta etapa"
+#: ../../include/features.php:48
+msgid "Enable tab to display only Network posts that you've interacted on"
+msgstr "Habilitar aba para mostrar apenas as publicações da Rede que você tenha interagido"
 
-#: ../../mod/profile_photo.php:248
-msgid "select a photo from your photo albums"
-msgstr "selecione uma foto de um álbum de fotos"
+#: ../../include/features.php:49
+msgid "Network New Tab"
+msgstr "Aba Nova da Rede"
 
-#: ../../mod/profile_photo.php:262
-msgid "Crop Image"
-msgstr "Cortar a imagem"
+#: ../../include/features.php:49
+msgid "Enable tab to display only new Network posts (from the last 12 hours)"
+msgstr "Habilite aba para mostra apenas publicações da Rede novas (das últimas 12 horas)"
 
-#: ../../mod/profile_photo.php:263
-msgid "Please adjust the image cropping for optimum viewing."
-msgstr "Por favor, ajuste o corte da imagem para a melhor visualização."
+#: ../../include/features.php:50
+msgid "Network Shared Links Tab"
+msgstr "Aba de Links Compartilhados da Rede"
 
-#: ../../mod/profile_photo.php:265
-msgid "Done Editing"
-msgstr "Encerrar a edição"
+#: ../../include/features.php:50
+msgid "Enable tab to display only Network posts with links in them"
+msgstr "Habilite aba para mostrar somente publicações da Rede que contenham links"
 
-#: ../../mod/profile_photo.php:299
-msgid "Image uploaded successfully."
-msgstr "A imagem foi enviada com sucesso."
+#: ../../include/features.php:55
+msgid "Post/Comment Tools"
+msgstr "Ferramentas de Publicação/Comentário"
 
-#: ../../mod/profile_photo.php:301 ../../mod/wall_upload.php:172
-#: ../../mod/photos.php:834
-msgid "Image upload failed."
-msgstr "Não foi possível enviar a imagem."
+#: ../../include/features.php:56
+msgid "Multiple Deletion"
+msgstr "Deleção Multipla"
 
-#: ../../mod/subthread.php:87 ../../mod/tagger.php:62 ../../mod/like.php:149
-#: ../../include/conversation.php:126 ../../include/conversation.php:254
-#: ../../include/text.php:1968 ../../include/diaspora.php:2087
-#: ../../view/theme/diabook/theme.php:471
-msgid "photo"
-msgstr "foto"
+#: ../../include/features.php:56
+msgid "Select and delete multiple posts/comments at once"
+msgstr "Selecione e delete múltiplas publicações/comentário imediatamente"
 
-#: ../../mod/subthread.php:87 ../../mod/tagger.php:62 ../../mod/like.php:149
-#: ../../mod/like.php:319 ../../include/conversation.php:121
-#: ../../include/conversation.php:130 ../../include/conversation.php:249
-#: ../../include/conversation.php:258 ../../include/diaspora.php:2087
-#: ../../view/theme/diabook/theme.php:466
-#: ../../view/theme/diabook/theme.php:475
-msgid "status"
-msgstr "status"
+#: ../../include/features.php:57
+msgid "Edit Sent Posts"
+msgstr "Editar Publicações Enviadas"
 
-#: ../../mod/subthread.php:103
-#, php-format
-msgid "%1$s is following %2$s's %3$s"
-msgstr "%1$s está seguindo %2$s's %3$s"
+#: ../../include/features.php:57
+msgid "Edit and correct posts and comments after sending"
+msgstr "Editar e corrigir publicações e comentários após envio"
 
-#: ../../mod/tagrm.php:41
-msgid "Tag removed"
-msgstr "A etiqueta foi removida"
+#: ../../include/features.php:58
+msgid "Tagging"
+msgstr "Etiquetagem"
 
-#: ../../mod/tagrm.php:79
-msgid "Remove Item Tag"
-msgstr "Remover a etiqueta do item"
+#: ../../include/features.php:58
+msgid "Ability to tag existing posts"
+msgstr "Capacidade de colocar etiquetas em publicações existentes"
 
-#: ../../mod/tagrm.php:81
-msgid "Select a tag to remove: "
-msgstr "Selecione uma etiqueta para remover: "
+#: ../../include/features.php:59
+msgid "Post Categories"
+msgstr "Categorias de Publicações"
 
-#: ../../mod/tagrm.php:93 ../../mod/delegate.php:139
-msgid "Remove"
-msgstr "Remover"
+#: ../../include/features.php:59
+msgid "Add categories to your posts"
+msgstr "Adicione Categorias ás Publicações"
 
-#: ../../mod/filer.php:30 ../../include/conversation.php:1006
-#: ../../include/conversation.php:1024
-msgid "Save to Folder:"
-msgstr "Salvar na pasta:"
+#: ../../include/features.php:60 ../../include/contact_widgets.php:104
+msgid "Saved Folders"
+msgstr "Pastas salvas"
 
-#: ../../mod/filer.php:30
-msgid "- select -"
-msgstr "-selecione-"
+#: ../../include/features.php:60
+msgid "Ability to file posts under folders"
+msgstr "Capacidade de arquivar publicações em pastas"
 
-#: ../../mod/filer.php:31 ../../mod/editpost.php:109 ../../mod/notes.php:63
-#: ../../include/text.php:956
-msgid "Save"
-msgstr "Salvar"
+#: ../../include/features.php:61
+msgid "Dislike Posts"
+msgstr "Desgostar de publicações"
 
-#: ../../mod/follow.php:27
-msgid "Contact added"
-msgstr "O contato foi adicionado"
+#: ../../include/features.php:61
+msgid "Ability to dislike posts/comments"
+msgstr "Capacidade de desgostar de publicações/comentários"
 
-#: ../../mod/item.php:113
-msgid "Unable to locate original post."
-msgstr "Não foi possível localizar a publicação original."
+#: ../../include/features.php:62
+msgid "Star Posts"
+msgstr "Destacar publicações"
 
-#: ../../mod/item.php:345
-msgid "Empty post discarded."
-msgstr "A publicação em branco foi descartada."
+#: ../../include/features.php:62
+msgid "Ability to mark special posts with a star indicator"
+msgstr "Capacidade de marcar publicações especiais com uma estrela indicadora"
 
-#: ../../mod/item.php:484 ../../mod/wall_upload.php:169
-#: ../../mod/wall_upload.php:178 ../../mod/wall_upload.php:185
-#: ../../include/Photo.php:916 ../../include/Photo.php:931
-#: ../../include/Photo.php:938 ../../include/Photo.php:960
-#: ../../include/message.php:144
-msgid "Wall Photos"
-msgstr "Fotos do mural"
+#: ../../include/features.php:63
+msgid "Mute Post Notifications"
+msgstr "Silenciar Notificações de Postagem"
 
-#: ../../mod/item.php:938
-msgid "System error. Post not saved."
-msgstr "Erro no sistema. A publicação não foi salva."
+#: ../../include/features.php:63
+msgid "Ability to mute notifications for a thread"
+msgstr "Habilitar notificação silenciosa para a tarefa"
 
-#: ../../mod/item.php:964
+#: ../../include/items.php:2307 ../../include/datetime.php:477
 #, php-format
-msgid ""
-"This message was sent to you by %s, a member of the Friendica social "
-"network."
-msgstr "Essa mensagem foi enviada a você por %s, um membro da rede social Friendica."
+msgid "%s's birthday"
+msgstr "aniversários de %s's"
 
-#: ../../mod/item.php:966
+#: ../../include/items.php:2308 ../../include/datetime.php:478
 #, php-format
-msgid "You may visit them online at %s"
-msgstr "Você pode visitá-lo em %s"
+msgid "Happy Birthday %s"
+msgstr "Feliz Aniversário %s"
 
-#: ../../mod/item.php:967
-msgid ""
-"Please contact the sender by replying to this post if you do not wish to "
-"receive these messages."
-msgstr "Por favor, entre em contato com o remetente respondendo a esta publicação, caso você não queira mais receber estas mensagens."
+#: ../../include/items.php:4111 ../../mod/dfrn_request.php:717
+#: ../../mod/dfrn_confirm.php:752
+msgid "[Name Withheld]"
+msgstr "[Nome não revelado]"
 
-#: ../../mod/item.php:971
-#, php-format
-msgid "%s posted an update."
-msgstr "%s publicou uma atualização."
+#: ../../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 "O item não foi encontrado."
 
-#: ../../mod/group.php:29
-msgid "Group created."
-msgstr "O grupo foi criado."
+#: ../../include/items.php:4658
+msgid "Do you really want to delete this item?"
+msgstr "Você realmente deseja deletar esse item?"
 
-#: ../../mod/group.php:35
-msgid "Could not create group."
-msgstr "Não foi possível criar o grupo."
+#: ../../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 "Sim"
 
-#: ../../mod/group.php:47 ../../mod/group.php:140
-msgid "Group not found."
-msgstr "O grupo não foi encontrado."
+#: ../../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 "Cancelar"
 
-#: ../../mod/group.php:60
-msgid "Group name changed."
-msgstr "O nome do grupo foi alterado."
+#: ../../include/items.php:4881
+msgid "Archives"
+msgstr "Arquivos"
 
-#: ../../mod/group.php:87
-msgid "Save Group"
-msgstr "Salvar o grupo"
+#: ../../include/group.php:25
+msgid ""
+"A deleted group with this name was revived. Existing item permissions "
+"<strong>may</strong> apply to this group and any future members. If this is "
+"not what you intended, please create another group with a different name."
+msgstr "Um grupo com esse nome, anteriormente excluído, foi reativado. Permissões de itens já existentes <strong>poderão</strong> ser aplicadas a esse grupo e qualquer futuros membros. Se não é essa a sua intenção, favor criar outro grupo com um nome diferente."
 
-#: ../../mod/group.php:93
-msgid "Create a group of contacts/friends."
-msgstr "Criar um grupo de contatos/amigos."
+#: ../../include/group.php:207
+msgid "Default privacy group for new contacts"
+msgstr "Grupo de privacidade padrão para novos contatos"
 
-#: ../../mod/group.php:94 ../../mod/group.php:180
-msgid "Group Name: "
-msgstr "Nome do grupo: "
+#: ../../include/group.php:226
+msgid "Everybody"
+msgstr "Todos"
 
-#: ../../mod/group.php:113
-msgid "Group removed."
-msgstr "O grupo foi removido."
+#: ../../include/group.php:249
+msgid "edit"
+msgstr "editar"
 
-#: ../../mod/group.php:115
-msgid "Unable to remove group."
-msgstr "Não foi possível remover o grupo."
+#: ../../include/group.php:270 ../../mod/newmember.php:66
+msgid "Groups"
+msgstr "Grupos"
 
-#: ../../mod/group.php:179
-msgid "Group Editor"
-msgstr "Editor de grupo"
+#: ../../include/group.php:271
+msgid "Edit group"
+msgstr "Editar grupo"
 
-#: ../../mod/group.php:192
-msgid "Members"
-msgstr "Membros"
+#: ../../include/group.php:272
+msgid "Create a new group"
+msgstr "Criar um novo grupo"
 
-#: ../../mod/apps.php:7 ../../index.php:212
-msgid "You must be logged in to use addons. "
-msgstr "Você precisa estar logado para usar os addons."
+#: ../../include/group.php:273
+msgid "Contacts not in any group"
+msgstr "Contatos não estão dentro de nenhum grupo"
 
-#: ../../mod/apps.php:11
-msgid "Applications"
-msgstr "Aplicativos"
+#: ../../include/group.php:275 ../../mod/network.php:195
+msgid "add"
+msgstr "adicionar"
 
-#: ../../mod/apps.php:14
-msgid "No installed applications."
-msgstr "Nenhum aplicativo instalado"
+#: ../../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 "Fotos do mural"
 
-#: ../../mod/dfrn_confirm.php:64 ../../mod/profiles.php:18
-#: ../../mod/profiles.php:133 ../../mod/profiles.php:179
-#: ../../mod/profiles.php:630
-msgid "Profile not found."
-msgstr "O perfil não foi encontrado."
+#: ../../include/dba.php:56 ../../include/dba_pdo.php:72
+#, php-format
+msgid "Cannot locate DNS info for database server '%s'"
+msgstr "Não foi possível localizar a informação de DNS para o servidor de banco de dados '%s'"
 
-#: ../../mod/dfrn_confirm.php:120 ../../mod/fsuggest.php:20
-#: ../../mod/fsuggest.php:92 ../../mod/crepair.php:133
-msgid "Contact not found."
-msgstr "O contato não foi encontrado."
+#: ../../include/contact_widgets.php:6
+msgid "Add New Contact"
+msgstr "Adicionar Contato Novo"
 
-#: ../../mod/dfrn_confirm.php:121
-msgid ""
-"This may occasionally happen if contact was requested by both persons and it"
-" has already been approved."
-msgstr "Isso pode acontecer eventualmente se o contato foi solicitado por ambas as pessoas e ele já tinha sido aprovado."
+#: ../../include/contact_widgets.php:7
+msgid "Enter address or web location"
+msgstr "Forneça endereço ou localização web"
 
-#: ../../mod/dfrn_confirm.php:240
-msgid "Response from remote site was not understood."
-msgstr "A resposta do site remoto não foi compreendida."
+#: ../../include/contact_widgets.php:8
+msgid "Example: bob@example.com, http://example.com/barbara"
+msgstr "Por exemplo: joao@exemplo.com, http://exemplo.com/maria"
 
-#: ../../mod/dfrn_confirm.php:249 ../../mod/dfrn_confirm.php:254
-msgid "Unexpected response from remote site: "
-msgstr "Resposta inesperada do site remoto: "
+#: ../../include/contact_widgets.php:24
+#, php-format
+msgid "%d invitation available"
+msgid_plural "%d invitations available"
+msgstr[0] "%d convite disponível"
+msgstr[1] "%d convites disponíveis"
 
-#: ../../mod/dfrn_confirm.php:263
-msgid "Confirmation completed successfully."
-msgstr "A confirmação foi completada com sucesso."
+#: ../../include/contact_widgets.php:30
+msgid "Find People"
+msgstr "Pesquisar por pessoas"
 
-#: ../../mod/dfrn_confirm.php:265 ../../mod/dfrn_confirm.php:279
-#: ../../mod/dfrn_confirm.php:286
-msgid "Remote site reported: "
-msgstr "O site remoto relatou: "
+#: ../../include/contact_widgets.php:31
+msgid "Enter name or interest"
+msgstr "Fornecer nome ou interesse"
 
-#: ../../mod/dfrn_confirm.php:277
-msgid "Temporary failure. Please wait and try again."
-msgstr "Falha temporária. Por favor, aguarde e tente novamente."
+#: ../../include/contact_widgets.php:32
+msgid "Connect/Follow"
+msgstr "Conectar-se/acompanhar"
 
-#: ../../mod/dfrn_confirm.php:284
-msgid "Introduction failed or was revoked."
-msgstr "Ocorreu uma falha na apresentação ou ela foi revogada."
+#: ../../include/contact_widgets.php:33
+msgid "Examples: Robert Morgenstein, Fishing"
+msgstr "Examplos: Robert Morgenstein, Fishing"
 
-#: ../../mod/dfrn_confirm.php:429
-msgid "Unable to set contact photo."
-msgstr "Não foi possível definir a foto do contato."
+#: ../../include/contact_widgets.php:34 ../../mod/contacts.php:724
+#: ../../mod/directory.php:63
+msgid "Find"
+msgstr "Pesquisar"
 
-#: ../../mod/dfrn_confirm.php:486 ../../include/conversation.php:172
-#: ../../include/diaspora.php:620
-#, php-format
-msgid "%1$s is now friends with %2$s"
-msgstr "%1$s agora é amigo de %2$s"
+#: ../../include/contact_widgets.php:37
+msgid "Random Profile"
+msgstr "Perfil Randômico"
 
-#: ../../mod/dfrn_confirm.php:571
-#, php-format
-msgid "No user record found for '%s' "
-msgstr "Não foi encontrado nenhum registro de usuário para '%s' "
+#: ../../include/contact_widgets.php:71
+msgid "Networks"
+msgstr "Redes"
 
-#: ../../mod/dfrn_confirm.php:581
-msgid "Our site encryption key is apparently messed up."
-msgstr "A chave de criptografia do nosso site está, aparentemente, bagunçada."
+#: ../../include/contact_widgets.php:74
+msgid "All Networks"
+msgstr "Todas as redes"
 
-#: ../../mod/dfrn_confirm.php:592
-msgid "Empty site URL was provided or URL could not be decrypted by us."
-msgstr "Foi fornecida uma URL em branco ou não foi possível descriptografá-la."
+#: ../../include/contact_widgets.php:107 ../../include/contact_widgets.php:139
+msgid "Everything"
+msgstr "Tudo"
 
-#: ../../mod/dfrn_confirm.php:613
-msgid "Contact record was not found for you on our site."
-msgstr "O registro do contato não foi encontrado para você em seu site."
+#: ../../include/contact_widgets.php:136
+msgid "Categories"
+msgstr "Categorias"
 
-#: ../../mod/dfrn_confirm.php:627
+#: ../../include/contact_widgets.php:200 ../../mod/contacts.php:439
 #, php-format
-msgid "Site public key not available in contact record for URL %s."
-msgstr "A chave pública do site não está disponível no registro do contato para a URL %s"
+msgid "%d contact in common"
+msgid_plural "%d contacts in common"
+msgstr[0] "%d contato em comum"
+msgstr[1] "%d contatos em comum"
 
-#: ../../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 "O ID fornecido pelo seu sistema é uma duplicata em nosso sistema. Deve funcionar agora, se você tentar de novo."
+#: ../../include/enotify.php:18
+msgid "Friendica Notification"
+msgstr "Notificação Friendica"
 
-#: ../../mod/dfrn_confirm.php:658
-msgid "Unable to set your contact credentials on our system."
-msgstr "Não foi possível definir suas credenciais de contato no nosso sistema."
+#: ../../include/enotify.php:21
+msgid "Thank You,"
+msgstr "Obrigado,"
 
-#: ../../mod/dfrn_confirm.php:725
-msgid "Unable to update your contact profile details on our system"
-msgstr "Não foi possível atualizar os detalhes do seu perfil em nosso sistema."
+#: ../../include/enotify.php:23
+#, php-format
+msgid "%s Administrator"
+msgstr "%s Administrador"
 
-#: ../../mod/dfrn_confirm.php:752 ../../mod/dfrn_request.php:717
-#: ../../include/items.php:4008
-msgid "[Name Withheld]"
-msgstr "[Nome não revelado]"
+#: ../../include/enotify.php:33 ../../include/delivery.php:467
+#: ../../include/notifier.php:796
+msgid "noreply"
+msgstr "naoresponda"
 
-#: ../../mod/dfrn_confirm.php:797
+#: ../../include/enotify.php:64
 #, php-format
-msgid "%1$s has joined %2$s"
-msgstr "%1$s se associou a %2$s"
+msgid "%s <!item_type!>"
+msgstr "%s <!item_type!>"
 
-#: ../../mod/profile.php:21 ../../boot.php:1458
-msgid "Requested profile is not available."
-msgstr "Perfil solicitado não está disponível."
+#: ../../include/enotify.php:68
+#, php-format
+msgid "[Friendica:Notify] New mail received at %s"
+msgstr "[Friendica:Notify] Nova mensagem recebida em %s"
 
-#: ../../mod/profile.php:180
-msgid "Tips for New Members"
-msgstr "Dicas para novos membros"
+#: ../../include/enotify.php:70
+#, php-format
+msgid "%1$s sent you a new private message at %2$s."
+msgstr "%1$s lhe enviou uma mensagem privativa em %2$s."
 
-#: ../../mod/videos.php:125
-msgid "No videos selected"
-msgstr "Nenhum vídeo selecionado"
+#: ../../include/enotify.php:71
+#, php-format
+msgid "%1$s sent you %2$s."
+msgstr "%1$s lhe enviou %2$s."
 
-#: ../../mod/videos.php:226 ../../mod/photos.php:1031
-msgid "Access to this item is restricted."
-msgstr "O acesso a este item é restrito."
+#: ../../include/enotify.php:71
+msgid "a private message"
+msgstr "uma mensagem privada"
 
-#: ../../mod/videos.php:301 ../../include/text.php:1405
-msgid "View Video"
-msgstr "Ver Vídeo"
+#: ../../include/enotify.php:72
+#, php-format
+msgid "Please visit %s to view and/or reply to your private messages."
+msgstr "Favor visitar %s para ver e/ou responder às suas mensagens privadas."
 
-#: ../../mod/videos.php:308 ../../mod/photos.php:1808
-msgid "View Album"
-msgstr "Ver álbum"
+#: ../../include/enotify.php:124
+#, php-format
+msgid "%1$s commented on [url=%2$s]a %3$s[/url]"
+msgstr "%1$s comentou uma [url=%2$s] %3$s[/url]"
 
-#: ../../mod/videos.php:317
-msgid "Recent Videos"
-msgstr "Vídeos Recentes"
+#: ../../include/enotify.php:131
+#, php-format
+msgid "%1$s commented on [url=%2$s]%3$s's %4$s[/url]"
+msgstr "%1$s comentou na %4$s de [url=%2$s]%3$s [/url]"
 
-#: ../../mod/videos.php:319
-msgid "Upload New Videos"
-msgstr "Envie Novos Vídeos"
+#: ../../include/enotify.php:139
+#, php-format
+msgid "%1$s commented on [url=%2$s]your %3$s[/url]"
+msgstr "%1$s comentou [url=%2$s]sua %3$s[/url]"
 
-#: ../../mod/tagger.php:95 ../../include/conversation.php:266
+#: ../../include/enotify.php:149
 #, php-format
-msgid "%1$s tagged %2$s's %3$s with %4$s"
-msgstr "%1$s etiquetou %3$s de %2$s com %4$s"
-
-#: ../../mod/fsuggest.php:63
-msgid "Friend suggestion sent."
-msgstr "A sugestão de amigo foi enviada"
-
-#: ../../mod/fsuggest.php:97
-msgid "Suggest Friends"
-msgstr "Sugerir amigos"
+msgid "[Friendica:Notify] Comment to conversation #%1$d by %2$s"
+msgstr "[Friendica:Notify] Comentário na conversa #%1$d por %2$s"
 
-#: ../../mod/fsuggest.php:99
+#: ../../include/enotify.php:150
 #, php-format
-msgid "Suggest a friend for %s"
-msgstr "Sugerir um amigo para %s"
+msgid "%s commented on an item/conversation you have been following."
+msgstr "%s comentou um item/conversa que você está seguindo."
 
-#: ../../mod/lostpass.php:19
-msgid "No valid account found."
-msgstr "Não foi encontrada nenhuma conta válida."
+#: ../../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 "Favor visitar %s para ver e/ou responder à conversa."
 
-#: ../../mod/lostpass.php:35
-msgid "Password reset request issued. Check your email."
-msgstr "A solicitação para reiniciar sua senha foi encaminhada. Verifique seu e-mail."
+#: ../../include/enotify.php:160
+#, php-format
+msgid "[Friendica:Notify] %s posted to your profile wall"
+msgstr "[Friendica:Notify] %s publicou no mural do seu perfil"
 
-#: ../../mod/lostpass.php:42
+#: ../../include/enotify.php:162
 #, 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 "\n\t\tPrezado %1$s,\n\t\t\tUma solicitação foi recebida recentemente em \"%2$s\" para redefinir a\n\t\tsenha da sua conta. Para confirmar este pedido, por favor selecione o link de confirmação\n\t\tabaixo ou copie e cole-o na barra de endereço do seu navegador.\n\n\t\tSe NÃO foi você que solicitou esta alteração por favor, NÃO clique no link\n\t\tfornecido e ignore e/ou apague este e-mail.\n\n\t\tSua senha não será alterada a menos que possamos verificar que foi você que\n\t\temitiu esta solicitação."
+msgid "%1$s posted to your profile wall at %2$s"
+msgstr "%1$s publicou no mural do seu perfil em %2$s"
 
-#: ../../mod/lostpass.php:53
+#: ../../include/enotify.php:164
 #, 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 "\n\t\tSiga este link para verificar sua identidade:\n\n\t\t%1$s\n\n\t\tVocê então receberá uma mensagem de continuidade contendo a nova senha.\n\t\tVocê pode alterar sua senha na sua página de configurações após efetuar seu login.\n\n\t\tOs dados de login são os seguintes:\n\n\t\tLocalização do Site:\t%2$s\n\t\tNome de Login:\t%3$s"
+msgid "%1$s posted to [url=%2$s]your wall[/url]"
+msgstr "%1$s publicou para [url=%2$s]seu mural[/url]"
 
-#: ../../mod/lostpass.php:72
+#: ../../include/enotify.php:175
 #, php-format
-msgid "Password reset requested at %s"
-msgstr "Foi feita uma solicitação de reiniciação da senha em %s"
+msgid "[Friendica:Notify] %s tagged you"
+msgstr "[Friendica:Notify] %s etiquetou você"
 
-#: ../../mod/lostpass.php:92
-msgid ""
-"Request could not be verified. (You may have previously submitted it.) "
-"Password reset failed."
-msgstr "Não foi possível verificar a solicitação (você pode tê-la submetido anteriormente). A senha não foi reiniciada."
+#: ../../include/enotify.php:176
+#, php-format
+msgid "%1$s tagged you at %2$s"
+msgstr "%1$s etiquetou você em %2$s"
 
-#: ../../mod/lostpass.php:109 ../../boot.php:1280
-msgid "Password Reset"
-msgstr "Redifinir a senha"
+#: ../../include/enotify.php:177
+#, php-format
+msgid "%1$s [url=%2$s]tagged you[/url]."
+msgstr "%1$s [url=%2$s]etiquetou você[/url]."
 
-#: ../../mod/lostpass.php:110
-msgid "Your password has been reset as requested."
-msgstr "Sua senha foi reiniciada, conforme solicitado."
+#: ../../include/enotify.php:188
+#, php-format
+msgid "[Friendica:Notify] %s shared a new post"
+msgstr "[Friendica:Notify] %s compartilhado uma nova publicação"
 
-#: ../../mod/lostpass.php:111
-msgid "Your new password is"
-msgstr "Sua nova senha é"
+#: ../../include/enotify.php:189
+#, php-format
+msgid "%1$s shared a new post at %2$s"
+msgstr "%1$s compartilhou uma nova publicação em %2$s"
 
-#: ../../mod/lostpass.php:112
-msgid "Save or copy your new password - and then"
-msgstr "Grave ou copie a sua nova senha e, então"
+#: ../../include/enotify.php:190
+#, php-format
+msgid "%1$s [url=%2$s]shared a post[/url]."
+msgstr "%1$s [url=%2$s]compartilhou uma publicação[/url]."
 
-#: ../../mod/lostpass.php:113
-msgid "click here to login"
-msgstr "clique aqui para entrar"
+#: ../../include/enotify.php:202
+#, php-format
+msgid "[Friendica:Notify] %1$s poked you"
+msgstr "[Friendica:Notify] %1$s cutucou você"
 
-#: ../../mod/lostpass.php:114
-msgid ""
-"Your password may be changed from the <em>Settings</em> page after "
-"successful login."
-msgstr "Sua senha pode ser alterada na página de <em>Configurações</em> após você entrar em seu perfil."
+#: ../../include/enotify.php:203
+#, php-format
+msgid "%1$s poked you at %2$s"
+msgstr "%1$s cutucou você em %2$s"
 
-#: ../../mod/lostpass.php:125
+#: ../../include/enotify.php:204
 #, 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\tCaro %1$s,\n\t\t\t\t\tSua senha foi alterada conforme solicitado. Por favor, guarde essas\n\t\t\t\tinformações para seus registros (ou altere a sua senha imediatamente para\n\t\t\t\talgo que você se lembrará).\n\t\t\t"
+msgid "%1$s [url=%2$s]poked you[/url]."
+msgstr "%1$s [url=%2$s]cutucou você[/url]."
 
-#: ../../mod/lostpass.php:131
+#: ../../include/enotify.php:219
 #, 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 "\n\t\t\t\tOs seus dados de login são os seguintes:\n\n\t\t\t\tLocalização do Site:\t%1$s\n\t\t\t\tNome de Login:\t%2$s\n\t\t\t\tSenha:\t%3$s\n\n\t\t\t\tVocê pode alterar esta senha na sua página de configurações depois que efetuar o seu login.\n\t\t\t"
+msgid "[Friendica:Notify] %s tagged your post"
+msgstr "[Friendica:Notify] %s etiquetou sua publicação"
 
-#: ../../mod/lostpass.php:147
+#: ../../include/enotify.php:220
 #, php-format
-msgid "Your password has been changed at %s"
-msgstr "Sua senha foi modifica às %s"
+msgid "%1$s tagged your post at %2$s"
+msgstr "%1$s etiquetou sua publicação em %2$s"
 
-#: ../../mod/lostpass.php:159
-msgid "Forgot your Password?"
-msgstr "Esqueceu a sua senha?"
+#: ../../include/enotify.php:221
+#, php-format
+msgid "%1$s tagged [url=%2$s]your post[/url]"
+msgstr "%1$s etiquetou [url=%2$s]sua publicação[/url]"
 
-#: ../../mod/lostpass.php:160
-msgid ""
-"Enter your email address and submit to have your password reset. Then check "
-"your email for further instructions."
-msgstr "Digite o seu endereço de e-mail e clique em 'Reiniciar' para prosseguir com a reiniciação da sua senha. Após isso, verifique seu e-mail para mais instruções."
+#: ../../include/enotify.php:232
+msgid "[Friendica:Notify] Introduction received"
+msgstr "[Friendica:Notify] Você recebeu uma apresentação"
 
-#: ../../mod/lostpass.php:161
-msgid "Nickname or Email: "
-msgstr "Identificação ou e-mail: "
+#: ../../include/enotify.php:233
+#, php-format
+msgid "You've received an introduction from '%1$s' at %2$s"
+msgstr "Você recebeu uma apresentação de '%1$s' em %2$s"
 
-#: ../../mod/lostpass.php:162
-msgid "Reset"
-msgstr "Reiniciar"
+#: ../../include/enotify.php:234
+#, php-format
+msgid "You've received [url=%1$s]an introduction[/url] from %2$s."
+msgstr "Você recebeu [url=%1$s]uma apresentação[/url] de %2$s."
 
-#: ../../mod/like.php:166 ../../include/conversation.php:137
-#: ../../include/diaspora.php:2103 ../../view/theme/diabook/theme.php:480
+#: ../../include/enotify.php:237 ../../include/enotify.php:279
 #, php-format
-msgid "%1$s likes %2$s's %3$s"
-msgstr "%1$s gosta de %3$s de %2$s"
+msgid "You may visit their profile at %s"
+msgstr "Você pode visitar o perfil deles em %s"
 
-#: ../../mod/like.php:168 ../../include/conversation.php:140
+#: ../../include/enotify.php:239
 #, php-format
-msgid "%1$s doesn't like %2$s's %3$s"
-msgstr "%1$s não gosta de %3$s de %2$s"
+msgid "Please visit %s to approve or reject the introduction."
+msgstr "Favor visitar %s para aprovar ou rejeitar a apresentação."
 
-#: ../../mod/ping.php:240
-msgid "{0} wants to be your friend"
-msgstr "{0} deseja ser seu amigo"
+#: ../../include/enotify.php:247
+msgid "[Friendica:Notify] A new person is sharing with you"
+msgstr "[Friendica:Notificação] Uma nova pessoa está compartilhando com você"
 
-#: ../../mod/ping.php:245
-msgid "{0} sent you a message"
-msgstr "{0} lhe enviou uma mensagem"
+#: ../../include/enotify.php:248 ../../include/enotify.php:249
+#, php-format
+msgid "%1$s is sharing with you at %2$s"
+msgstr "%1$s está compartilhando com você via %2$s"
 
-#: ../../mod/ping.php:250
-msgid "{0} requested registration"
-msgstr "{0} solicitou registro"
+#: ../../include/enotify.php:255
+msgid "[Friendica:Notify] You have a new follower"
+msgstr "[Friendica:Notificação] Você tem um novo seguidor"
 
-#: ../../mod/ping.php:256
+#: ../../include/enotify.php:256 ../../include/enotify.php:257
 #, php-format
-msgid "{0} commented %s's post"
-msgstr "{0} comentou a publicação de %s"
+msgid "You have a new follower at %2$s : %1$s"
+msgstr "Você tem um novo seguidor em %2$s : %1$s"
 
-#: ../../mod/ping.php:261
-#, php-format
-msgid "{0} liked %s's post"
-msgstr "{0} gostou da publicação de %s"
+#: ../../include/enotify.php:270
+msgid "[Friendica:Notify] Friend suggestion received"
+msgstr "[Friendica:Notify] Você recebeu uma sugestão de amigo"
 
-#: ../../mod/ping.php:266
+#: ../../include/enotify.php:271
 #, php-format
-msgid "{0} disliked %s's post"
-msgstr "{0} desgostou da publicação de %s"
+msgid "You've received a friend suggestion from '%1$s' at %2$s"
+msgstr "Você recebeu uma sugestão de amigo de '%1$s' em %2$s"
 
-#: ../../mod/ping.php:271
+#: ../../include/enotify.php:272
 #, php-format
-msgid "{0} is now friends with %s"
-msgstr "{0} agora é amigo de %s"
+msgid ""
+"You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s."
+msgstr "Você recebeu [url=%1$s]uma sugestão de amigo[/url] de %2$s em %3$s"
 
-#: ../../mod/ping.php:276
-msgid "{0} posted"
-msgstr "{0} publicou"
+#: ../../include/enotify.php:277
+msgid "Name:"
+msgstr "Nome:"
 
-#: ../../mod/ping.php:281
+#: ../../include/enotify.php:278
+msgid "Photo:"
+msgstr "Foto:"
+
+#: ../../include/enotify.php:281
 #, php-format
-msgid "{0} tagged %s's post with #%s"
-msgstr "{0} etiquetou a publicação de %s com #%s"
+msgid "Please visit %s to approve or reject the suggestion."
+msgstr "Favor visitar %s para aprovar ou rejeitar a sugestão."
 
-#: ../../mod/ping.php:287
-msgid "{0} mentioned you in a post"
-msgstr "{0} mencionou você em uma publicação"
+#: ../../include/enotify.php:289 ../../include/enotify.php:302
+msgid "[Friendica:Notify] Connection accepted"
+msgstr "[Friendica:Notificação] Conexão aceita"
 
-#: ../../mod/viewcontacts.php:41
-msgid "No contacts."
-msgstr "Nenhum contato."
+#: ../../include/enotify.php:290 ../../include/enotify.php:303
+#, php-format
+msgid "'%1$s' has acepted your connection request at %2$s"
+msgstr "'%1$s' sua solicitação de conexão foi aceita em %2$s"
 
-#: ../../mod/viewcontacts.php:78 ../../include/text.php:876
-msgid "View Contacts"
-msgstr "Ver contatos"
+#: ../../include/enotify.php:291 ../../include/enotify.php:304
+#, php-format
+msgid "%2$s has accepted your [url=%1$s]connection request[/url]."
+msgstr "%2$s Foi aceita [url=%1$s] a conexão solicitada[/url]."
 
-#: ../../mod/notifications.php:26
-msgid "Invalid request identifier."
-msgstr "Identificador de solicitação inválido"
+#: ../../include/enotify.php:294
+msgid ""
+"You are now mutual friends and may exchange status updates, photos, and email\n"
+"\twithout restriction."
+msgstr "Você agora são amigos em comum e podem trocar atualizações de status, fotos e e-mail\n\tsem restrições."
 
-#: ../../mod/notifications.php:35 ../../mod/notifications.php:165
-#: ../../mod/notifications.php:211
-msgid "Discard"
-msgstr "Descartar"
+#: ../../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 "Por favor, visite %s se você desejar fazer quaisquer alterações a este relacionamento."
 
-#: ../../mod/notifications.php:78
-msgid "System"
-msgstr "Sistema"
+#: ../../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 "'%1$s' optou por aceitá-lo um \"fã\", o que restringe algumas formas de comunicação - como mensagens privadas e algumas interações de perfil. Se esta é uma página de celebridade ou de uma comunidade, essas configurações foram aplicadas automaticamente."
 
-#: ../../mod/notifications.php:83 ../../include/nav.php:145
-msgid "Network"
-msgstr "Rede"
+#: ../../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 "'%1$s' pode optar no futuro por estender isso para um relacionamento bidirecional ou superior permissivo."
 
-#: ../../mod/notifications.php:88 ../../mod/network.php:371
-msgid "Personal"
-msgstr "Pessoal"
+#: ../../include/enotify.php:322
+msgid "[Friendica System:Notify] registration request"
+msgstr "[Friendica: Notificação do Sistema] solicitação de cadastro"
 
-#: ../../mod/notifications.php:93 ../../include/nav.php:105
-#: ../../include/nav.php:148 ../../view/theme/diabook/theme.php:123
-msgid "Home"
-msgstr "Pessoal"
+#: ../../include/enotify.php:323
+#, php-format
+msgid "You've received a registration request from '%1$s' at %2$s"
+msgstr "Você recebeu um pedido de cadastro de '%1$s' em %2$s"
 
-#: ../../mod/notifications.php:98 ../../include/nav.php:154
-msgid "Introductions"
-msgstr "Apresentações"
+#: ../../include/enotify.php:324
+#, php-format
+msgid "You've received a [url=%1$s]registration request[/url] from %2$s."
+msgstr "Você recebeu uma [url=%1$s]solicitação de cadastro[/url] de %2$s."
 
-#: ../../mod/notifications.php:122
-msgid "Show Ignored Requests"
-msgstr "Exibir solicitações ignoradas"
+#: ../../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 "Nome completo:\t%1$s\\nLocal do Site:\t%2$s\\nNome de Login:\t%3$s (%4$s)"
 
-#: ../../mod/notifications.php:122
-msgid "Hide Ignored Requests"
-msgstr "Ocultar solicitações ignoradas"
+#: ../../include/enotify.php:330
+#, php-format
+msgid "Please visit %s to approve or reject the request."
+msgstr "Por favor, visite %s para aprovar ou rejeitar a solicitação."
 
-#: ../../mod/notifications.php:149 ../../mod/notifications.php:195
-msgid "Notification type: "
-msgstr "Tipo de notificação:"
+#: ../../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 "Usuário não encontrado."
 
-#: ../../mod/notifications.php:150
-msgid "Friend Suggestion"
-msgstr "Sugestão de amigo"
+#: ../../include/api.php:770
+#, php-format
+msgid "Daily posting limit of %d posts reached. The post was rejected."
+msgstr "O limite diário de postagem de %d mensagens foi atingido. O post foi rejeitado."
 
-#: ../../mod/notifications.php:152
+#: ../../include/api.php:789
 #, php-format
-msgid "suggested by %s"
-msgstr "sugerido por %s"
+msgid "Weekly posting limit of %d posts reached. The post was rejected."
+msgstr "O limite de postagem semanal de %d mensagens foi atingido. O post foi rejeitado."
 
-#: ../../mod/notifications.php:158 ../../mod/notifications.php:205
-msgid "Post a new friend activity"
-msgstr "Publicar a adição de amigo"
+#: ../../include/api.php:808
+#, php-format
+msgid "Monthly posting limit of %d posts reached. The post was rejected."
+msgstr "O limite de postagem mensal de %d mensagens foi atingido. O post foi rejeitado."
 
-#: ../../mod/notifications.php:158 ../../mod/notifications.php:205
-msgid "if applicable"
-msgstr "se aplicável"
+#: ../../include/api.php:1271
+msgid "There is no status with this id."
+msgstr "Não existe status com esse id."
 
-#: ../../mod/notifications.php:161 ../../mod/notifications.php:208
-#: ../../mod/admin.php:1005
-msgid "Approve"
-msgstr "Aprovar"
+#: ../../include/api.php:1341
+msgid "There is no conversation with this id."
+msgstr "Não existe conversas com esse id."
 
-#: ../../mod/notifications.php:181
-msgid "Claims to be known to you: "
-msgstr "Alega ser conhecido por você: "
+#: ../../include/api.php:1613
+msgid "Invalid request."
+msgstr "Solicitação inválida."
 
-#: ../../mod/notifications.php:181
-msgid "yes"
-msgstr "sim"
+#: ../../include/api.php:1624
+msgid "Invalid item."
+msgstr "Ítem inválido."
 
-#: ../../mod/notifications.php:181
-msgid "no"
-msgstr "não"
+#: ../../include/api.php:1634
+msgid "Invalid action. "
+msgstr "Ação inválida."
 
-#: ../../mod/notifications.php:188
-msgid "Approve as: "
-msgstr "Aprovar como:"
+#: ../../include/api.php:1642
+msgid "DB error"
+msgstr "Erro do Banco de Dados"
 
-#: ../../mod/notifications.php:189
-msgid "Friend"
-msgstr "Amigo"
+#: ../../include/network.php:890
+msgid "view full size"
+msgstr "ver na tela inteira"
 
-#: ../../mod/notifications.php:190
-msgid "Sharer"
-msgstr "Compartilhador"
+#: ../../include/Scrape.php:608
+msgid " on Last.fm"
+msgstr "na Last.fm"
 
-#: ../../mod/notifications.php:190
-msgid "Fan/Admirer"
-msgstr "Fã/Admirador"
+#: ../../include/profile_advanced.php:15 ../../mod/settings.php:1133
+msgid "Full Name:"
+msgstr "Nome completo:"
 
-#: ../../mod/notifications.php:196
-msgid "Friend/Connect Request"
-msgstr "Solicitação de amizade/conexão"
+#: ../../include/profile_advanced.php:22
+msgid "j F, Y"
+msgstr "j de F, Y"
 
-#: ../../mod/notifications.php:196
-msgid "New Follower"
-msgstr "Novo acompanhante"
+#: ../../include/profile_advanced.php:23
+msgid "j F"
+msgstr "j de F"
 
-#: ../../mod/notifications.php:217
-msgid "No introductions."
-msgstr "Sem apresentações."
+#: ../../include/profile_advanced.php:30
+msgid "Birthday:"
+msgstr "Aniversário:"
 
-#: ../../mod/notifications.php:220 ../../include/nav.php:155
-msgid "Notifications"
-msgstr "Notificações"
+#: ../../include/profile_advanced.php:34
+msgid "Age:"
+msgstr "Idade:"
 
-#: ../../mod/notifications.php:258 ../../mod/notifications.php:387
-#: ../../mod/notifications.php:478
+#: ../../include/profile_advanced.php:43
 #, php-format
-msgid "%s liked %s's post"
-msgstr "%s gostou da publicação de %s"
+msgid "for %1$d %2$s"
+msgstr "para %1$d %2$s"
 
-#: ../../mod/notifications.php:268 ../../mod/notifications.php:397
-#: ../../mod/notifications.php:488
-#, php-format
-msgid "%s disliked %s's post"
-msgstr "%s desgostou da publicação de %s"
+#: ../../include/profile_advanced.php:46 ../../mod/profiles.php:714
+msgid "Sexual Preference:"
+msgstr "Preferência sexual:"
 
-#: ../../mod/notifications.php:283 ../../mod/notifications.php:412
-#: ../../mod/notifications.php:503
-#, php-format
-msgid "%s is now friends with %s"
-msgstr "%s agora é amigo de %s"
+#: ../../include/profile_advanced.php:50 ../../mod/profiles.php:716
+msgid "Hometown:"
+msgstr "Cidade:"
 
-#: ../../mod/notifications.php:290 ../../mod/notifications.php:419
-#, php-format
-msgid "%s created a new post"
-msgstr "%s criou uma nova publicação"
+#: ../../include/profile_advanced.php:52
+msgid "Tags:"
+msgstr "Etiquetas:"
 
-#: ../../mod/notifications.php:291 ../../mod/notifications.php:420
-#: ../../mod/notifications.php:513
-#, php-format
-msgid "%s commented on %s's post"
-msgstr "%s comentou uma publicação de %s"
+#: ../../include/profile_advanced.php:54 ../../mod/profiles.php:717
+msgid "Political Views:"
+msgstr "Posição política:"
 
-#: ../../mod/notifications.php:306
-msgid "No more network notifications."
-msgstr "Nenhuma notificação de rede."
+#: ../../include/profile_advanced.php:56
+msgid "Religion:"
+msgstr "Religião:"
 
-#: ../../mod/notifications.php:310
-msgid "Network Notifications"
-msgstr "Notificações de rede"
+#: ../../include/profile_advanced.php:60
+msgid "Hobbies/Interests:"
+msgstr "Passatempos/Interesses:"
 
-#: ../../mod/notifications.php:336 ../../mod/notify.php:75
-msgid "No more system notifications."
-msgstr "Não fazer notificações de sistema."
+#: ../../include/profile_advanced.php:62 ../../mod/profiles.php:721
+msgid "Likes:"
+msgstr "Gosta de:"
 
-#: ../../mod/notifications.php:340 ../../mod/notify.php:79
-msgid "System Notifications"
-msgstr "Notificações de sistema"
+#: ../../include/profile_advanced.php:64 ../../mod/profiles.php:722
+msgid "Dislikes:"
+msgstr "Não gosta de:"
 
-#: ../../mod/notifications.php:435
-msgid "No more personal notifications."
-msgstr "Nenhuma notificação pessoal."
+#: ../../include/profile_advanced.php:67
+msgid "Contact information and Social Networks:"
+msgstr "Informações de contato e redes sociais:"
 
-#: ../../mod/notifications.php:439
-msgid "Personal Notifications"
-msgstr "Notificações pessoais"
+#: ../../include/profile_advanced.php:69
+msgid "Musical interests:"
+msgstr "Preferências musicais:"
 
-#: ../../mod/notifications.php:520
-msgid "No more home notifications."
-msgstr "Não existe mais nenhuma notificação pessoal."
+#: ../../include/profile_advanced.php:71
+msgid "Books, literature:"
+msgstr "Livros, literatura:"
 
-#: ../../mod/notifications.php:524
-msgid "Home Notifications"
-msgstr "Notificações pessoais"
+#: ../../include/profile_advanced.php:73
+msgid "Television:"
+msgstr "Televisão:"
 
-#: ../../mod/babel.php:17
-msgid "Source (bbcode) text:"
-msgstr "Texto fonte (bbcode):"
+#: ../../include/profile_advanced.php:75
+msgid "Film/dance/culture/entertainment:"
+msgstr "Filmes/dança/cultura/entretenimento:"
 
-#: ../../mod/babel.php:23
-msgid "Source (Diaspora) text to convert to BBcode:"
-msgstr "Texto fonte (Diaspora) a converter para BBcode:"
+#: ../../include/profile_advanced.php:77
+msgid "Love/Romance:"
+msgstr "Amor/romance:"
 
-#: ../../mod/babel.php:31
-msgid "Source input: "
-msgstr "Entrada fonte:"
+#: ../../include/profile_advanced.php:79
+msgid "Work/employment:"
+msgstr "Trabalho/emprego:"
 
-#: ../../mod/babel.php:35
-msgid "bb2html (raw HTML): "
-msgstr "bb2html (HTML puro):"
-
-#: ../../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 "Fonte de entrada (formato Diaspora):"
-
-#: ../../mod/babel.php:74
-msgid "diaspora2bb: "
-msgstr "diaspora2bb: "
+#: ../../include/profile_advanced.php:81
+msgid "School/education:"
+msgstr "Escola/educação:"
 
-#: ../../mod/navigation.php:20 ../../include/nav.php:34
+#: ../../include/nav.php:34 ../../mod/navigation.php:20
 msgid "Nothing new here"
 msgstr "Nada de novo aqui"
 
-#: ../../mod/navigation.php:24 ../../include/nav.php:38
+#: ../../include/nav.php:38 ../../mod/navigation.php:24
 msgid "Clear notifications"
 msgstr "Descartar notificações"
 
-#: ../../mod/message.php:9 ../../include/nav.php:164
-msgid "New Message"
-msgstr "Nova mensagem"
+#: ../../include/nav.php:73
+msgid "End this session"
+msgstr "Terminar esta sessão"
 
-#: ../../mod/message.php:63 ../../mod/wallmessage.php:56
-msgid "No recipient selected."
-msgstr "Não foi selecionado nenhum destinatário."
+#: ../../include/nav.php:79
+msgid "Your videos"
+msgstr "Seus vídeos"
 
-#: ../../mod/message.php:67
-msgid "Unable to locate contact information."
-msgstr "Não foi possível localizar informação do contato."
+#: ../../include/nav.php:81
+msgid "Your personal notes"
+msgstr "Suas anotações pessoais"
 
-#: ../../mod/message.php:70 ../../mod/wallmessage.php:62
-msgid "Message could not be sent."
-msgstr "Não foi possível enviar a mensagem."
+#: ../../include/nav.php:92
+msgid "Sign in"
+msgstr "Entrar"
 
-#: ../../mod/message.php:73 ../../mod/wallmessage.php:65
-msgid "Message collection failure."
-msgstr "Falha na coleta de mensagens."
+#: ../../include/nav.php:105
+msgid "Home Page"
+msgstr "Página pessoal"
 
-#: ../../mod/message.php:76 ../../mod/wallmessage.php:68
-msgid "Message sent."
-msgstr "A mensagem foi enviada."
+#: ../../include/nav.php:109
+msgid "Create an account"
+msgstr "Criar uma conta"
 
-#: ../../mod/message.php:182 ../../include/nav.php:161
-msgid "Messages"
-msgstr "Mensagens"
+#: ../../include/nav.php:114 ../../mod/help.php:36
+msgid "Help"
+msgstr "Ajuda"
 
-#: ../../mod/message.php:207
-msgid "Do you really want to delete this message?"
-msgstr "Você realmente deseja deletar essa mensagem?"
+#: ../../include/nav.php:114
+msgid "Help and documentation"
+msgstr "Ajuda e documentação"
 
-#: ../../mod/message.php:227
-msgid "Message deleted."
-msgstr "A mensagem foi excluída."
+#: ../../include/nav.php:117
+msgid "Apps"
+msgstr "Aplicativos"
 
-#: ../../mod/message.php:258
-msgid "Conversation removed."
-msgstr "A conversa foi removida."
+#: ../../include/nav.php:117
+msgid "Addon applications, utilities, games"
+msgstr "Complementos, utilitários, jogos"
 
-#: ../../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:1002 ../../include/conversation.php:1020
-msgid "Please enter a link URL:"
-msgstr "Por favor, digite uma URL:"
+#: ../../include/nav.php:119 ../../include/text.php:968
+#: ../../include/text.php:969 ../../mod/search.php:99
+msgid "Search"
+msgstr "Pesquisar"
 
-#: ../../mod/message.php:319 ../../mod/wallmessage.php:142
-msgid "Send Private Message"
-msgstr "Enviar mensagem privada"
+#: ../../include/nav.php:119
+msgid "Search site content"
+msgstr "Pesquisar conteúdo no site"
 
-#: ../../mod/message.php:320 ../../mod/message.php:553
-#: ../../mod/wallmessage.php:144
-msgid "To:"
-msgstr "Para:"
+#: ../../include/nav.php:129
+msgid "Conversations on this site"
+msgstr "Conversas neste site"
 
-#: ../../mod/message.php:325 ../../mod/message.php:555
-#: ../../mod/wallmessage.php:145
-msgid "Subject:"
-msgstr "Assunto:"
+#: ../../include/nav.php:131
+msgid "Conversations on the network"
+msgstr "Conversas na rede"
 
-#: ../../mod/message.php:329 ../../mod/message.php:558
-#: ../../mod/wallmessage.php:151 ../../mod/invite.php:134
-msgid "Your message:"
-msgstr "Sua mensagem:"
+#: ../../include/nav.php:133
+msgid "Directory"
+msgstr "Diretório"
 
-#: ../../mod/message.php:332 ../../mod/message.php:562
-#: ../../mod/wallmessage.php:154 ../../mod/editpost.php:110
-#: ../../include/conversation.php:1091
-msgid "Upload photo"
-msgstr "Enviar foto"
+#: ../../include/nav.php:133
+msgid "People directory"
+msgstr "Diretório de pessoas"
 
-#: ../../mod/message.php:333 ../../mod/message.php:563
-#: ../../mod/wallmessage.php:155 ../../mod/editpost.php:114
-#: ../../include/conversation.php:1095
-msgid "Insert web link"
-msgstr "Inserir link web"
+#: ../../include/nav.php:135
+msgid "Information"
+msgstr "Informação"
 
-#: ../../mod/message.php:334 ../../mod/message.php:565
-#: ../../mod/content.php:499 ../../mod/content.php:883
-#: ../../mod/wallmessage.php:156 ../../mod/editpost.php:124
-#: ../../mod/photos.php:1545 ../../object/Item.php:364
-#: ../../include/conversation.php:692 ../../include/conversation.php:1109
-msgid "Please wait"
-msgstr "Por favor, espere"
+#: ../../include/nav.php:135
+msgid "Information about this friendica instance"
+msgstr "Informação sobre esta instância do friendica"
 
-#: ../../mod/message.php:371
-msgid "No messages."
-msgstr "Nenhuma mensagem."
+#: ../../include/nav.php:145 ../../mod/notifications.php:83
+msgid "Network"
+msgstr "Rede"
 
-#: ../../mod/message.php:378
-#, php-format
-msgid "Unknown sender - %s"
-msgstr "Remetente desconhecido - %s"
+#: ../../include/nav.php:145
+msgid "Conversations from your friends"
+msgstr "Conversas dos seus amigos"
 
-#: ../../mod/message.php:381
-#, php-format
-msgid "You and %s"
-msgstr "Você e %s"
+#: ../../include/nav.php:146
+msgid "Network Reset"
+msgstr "Reiniciar Rede"
 
-#: ../../mod/message.php:384
-#, php-format
-msgid "%s and You"
-msgstr "%s e você"
+#: ../../include/nav.php:146
+msgid "Load Network page with no filters"
+msgstr "Carregar página Rede sem filtros"
 
-#: ../../mod/message.php:405 ../../mod/message.php:546
-msgid "Delete conversation"
-msgstr "Excluir conversa"
+#: ../../include/nav.php:154 ../../mod/notifications.php:98
+msgid "Introductions"
+msgstr "Apresentações"
 
-#: ../../mod/message.php:408
-msgid "D, d M Y - g:i A"
-msgstr "D, d M Y - g:i A"
+#: ../../include/nav.php:154
+msgid "Friend Requests"
+msgstr "Requisições de Amizade"
 
-#: ../../mod/message.php:411
-#, php-format
-msgid "%d message"
-msgid_plural "%d messages"
-msgstr[0] "%d mensagem"
-msgstr[1] "%d mensagens"
+#: ../../include/nav.php:155 ../../mod/notifications.php:224
+msgid "Notifications"
+msgstr "Notificações"
 
-#: ../../mod/message.php:450
-msgid "Message not available."
-msgstr "A mensagem não está disponível."
+#: ../../include/nav.php:156
+msgid "See all notifications"
+msgstr "Ver todas notificações"
 
-#: ../../mod/message.php:520
-msgid "Delete message"
-msgstr "Excluir a mensagem"
+#: ../../include/nav.php:157
+msgid "Mark all system notifications seen"
+msgstr "Marcar todas as notificações de sistema como vistas"
 
-#: ../../mod/message.php:548
-msgid ""
-"No secure communications available. You <strong>may</strong> be able to "
-"respond from the sender's profile page."
-msgstr "Não foi encontrada nenhuma comunicação segura. Você <strong>pode</strong> ser capaz de responder a partir da página de perfil do remetente."
+#: ../../include/nav.php:161 ../../mod/message.php:182
+msgid "Messages"
+msgstr "Mensagens"
 
-#: ../../mod/message.php:552
-msgid "Send Reply"
-msgstr "Enviar resposta"
+#: ../../include/nav.php:161
+msgid "Private mail"
+msgstr "Mensagem privada"
 
-#: ../../mod/update_display.php:22 ../../mod/update_community.php:18
-#: ../../mod/update_notes.php:37 ../../mod/update_profile.php:41
-#: ../../mod/update_network.php:25
-msgid "[Embedded content - reload page to view]"
-msgstr "[Conteúdo incorporado - recarregue a página para ver]"
+#: ../../include/nav.php:162
+msgid "Inbox"
+msgstr "Recebidas"
 
-#: ../../mod/crepair.php:106
-msgid "Contact settings applied."
-msgstr "As configurações do contato foram aplicadas."
+#: ../../include/nav.php:163
+msgid "Outbox"
+msgstr "Enviadas"
 
-#: ../../mod/crepair.php:108
-msgid "Contact update failed."
-msgstr "Não foi possível atualizar o contato."
+#: ../../include/nav.php:164 ../../mod/message.php:9
+msgid "New Message"
+msgstr "Nova mensagem"
 
-#: ../../mod/crepair.php:139
-msgid "Repair Contact Settings"
-msgstr "Corrigir configurações do contato"
+#: ../../include/nav.php:167
+msgid "Manage"
+msgstr "Gerenciar"
 
-#: ../../mod/crepair.php:141
-msgid ""
-"<strong>WARNING: This is highly advanced</strong> and if you enter incorrect"
-" information your communications with this contact may stop working."
-msgstr "<strong>ATENÇÃO: Isso é muito avançado</strong>, se você digitar informações incorretas, suas comunicações com esse contato pode parar de funcionar."
+#: ../../include/nav.php:167
+msgid "Manage other pages"
+msgstr "Gerenciar outras páginas"
 
-#: ../../mod/crepair.php:142
-msgid ""
-"Please use your browser 'Back' button <strong>now</strong> if you are "
-"uncertain what to do on this page."
-msgstr "Por favor, use o botão 'Voltar' do seu navegador <strong>agora</strong>, caso você não tenha certeza do que está fazendo."
+#: ../../include/nav.php:170 ../../mod/settings.php:67
+msgid "Delegations"
+msgstr "Delegações"
 
-#: ../../mod/crepair.php:148
-msgid "Return to contact editor"
-msgstr "Voltar ao editor de contatos"
+#: ../../include/nav.php:170 ../../mod/delegate.php:130
+msgid "Delegate Page Management"
+msgstr "Delegar Administração de Página"
 
-#: ../../mod/crepair.php:159 ../../mod/crepair.php:161
-msgid "No mirroring"
-msgstr "Nenhum espelhamento"
+#: ../../include/nav.php:172
+msgid "Account settings"
+msgstr "Configurações da conta"
 
-#: ../../mod/crepair.php:159
-msgid "Mirror as forwarded posting"
-msgstr "Espelhar como postagem encaminhada"
-
-#: ../../mod/crepair.php:159 ../../mod/crepair.php:161
-msgid "Mirror as my own posting"
-msgstr "Espelhar como minha própria postagem"
-
-#: ../../mod/crepair.php:165 ../../mod/admin.php:1003 ../../mod/admin.php:1015
-#: ../../mod/admin.php:1016 ../../mod/admin.php:1029
-#: ../../mod/settings.php:616 ../../mod/settings.php:642
-msgid "Name"
-msgstr "Nome"
+#: ../../include/nav.php:175
+msgid "Manage/Edit Profiles"
+msgstr "Administrar/Editar Perfis"
 
-#: ../../mod/crepair.php:166
-msgid "Account Nickname"
-msgstr "Identificação da conta"
+#: ../../include/nav.php:177
+msgid "Manage/edit friends and contacts"
+msgstr "Gerenciar/editar amigos e contatos"
 
-#: ../../mod/crepair.php:167
-msgid "@Tagname - overrides Name/Nickname"
-msgstr "@Tagname - sobrescreve Nome/Identificação"
+#: ../../include/nav.php:184 ../../mod/admin.php:130
+msgid "Admin"
+msgstr "Admin"
 
-#: ../../mod/crepair.php:168
-msgid "Account URL"
-msgstr "URL da conta"
+#: ../../include/nav.php:184
+msgid "Site setup and configuration"
+msgstr "Configurações do site"
 
-#: ../../mod/crepair.php:169
-msgid "Friend Request URL"
-msgstr "URL da requisição de amizade"
+#: ../../include/nav.php:188
+msgid "Navigation"
+msgstr "Navegação"
 
-#: ../../mod/crepair.php:170
-msgid "Friend Confirm URL"
-msgstr "URL da confirmação de amizade"
+#: ../../include/nav.php:188
+msgid "Site map"
+msgstr "Mapa do Site"
 
-#: ../../mod/crepair.php:171
-msgid "Notification Endpoint URL"
-msgstr "URL do ponto final da notificação"
+#: ../../include/plugin.php:455 ../../include/plugin.php:457
+msgid "Click here to upgrade."
+msgstr "Clique aqui para atualização (upgrade)."
 
-#: ../../mod/crepair.php:172
-msgid "Poll/Feed URL"
-msgstr "URL do captador/fonte de notícias"
+#: ../../include/plugin.php:463
+msgid "This action exceeds the limits set by your subscription plan."
+msgstr "Essa ação excede o limite definido para o seu plano de assinatura."
 
-#: ../../mod/crepair.php:173
-msgid "New photo from this URL"
-msgstr "Nova imagem desta URL"
+#: ../../include/plugin.php:468
+msgid "This action is not available under your subscription plan."
+msgstr "Essa ação não está disponível em seu plano de assinatura."
 
-#: ../../mod/crepair.php:174
-msgid "Remote Self"
-msgstr "Auto remoto"
+#: ../../include/follow.php:27 ../../mod/dfrn_request.php:507
+msgid "Disallowed profile URL."
+msgstr "URL de perfil não permitida."
 
-#: ../../mod/crepair.php:176
-msgid "Mirror postings from this contact"
-msgstr "Espelhar publicações deste contato"
+#: ../../include/follow.php:32
+msgid "Connect URL missing."
+msgstr "URL de conexão faltando."
 
-#: ../../mod/crepair.php:176
+#: ../../include/follow.php:59
 msgid ""
-"Mark this contact as remote_self, this will cause friendica to repost new "
-"entries from this contact."
-msgstr "Marcar este contato como auto remoto fará com que o friendica republique novas entradas deste usuário."
+"This site is not configured to allow communications with other networks."
+msgstr "Este site não está configurado para permitir comunicações com outras redes."
 
-#: ../../mod/bookmarklet.php:12 ../../boot.php:1266 ../../include/nav.php:92
-msgid "Login"
-msgstr "Entrar"
+#: ../../include/follow.php:60 ../../include/follow.php:80
+msgid "No compatible communication protocols or feeds were discovered."
+msgstr "Não foi descoberto nenhum protocolo de comunicação ou fonte de notícias compatível."
 
-#: ../../mod/bookmarklet.php:41
-msgid "The post was created"
-msgstr ""
+#: ../../include/follow.php:78
+msgid "The profile address specified does not provide adequate information."
+msgstr "O endereço de perfil especificado não fornece informação adequada."
 
-#: ../../mod/viewsrc.php:7
-msgid "Access denied."
-msgstr "Acesso negado."
+#: ../../include/follow.php:82
+msgid "An author or name was not found."
+msgstr "Não foi encontrado nenhum autor ou nome."
 
-#: ../../mod/dirfind.php:26
-msgid "People Search"
-msgstr "Pesquisar pessoas"
+#: ../../include/follow.php:84
+msgid "No browser URL could be matched to this address."
+msgstr "Não foi possível encontrar nenhuma URL de navegação neste endereço."
 
-#: ../../mod/dirfind.php:60 ../../mod/match.php:65
-msgid "No matches"
-msgstr "Nenhuma correspondência"
+#: ../../include/follow.php:86
+msgid ""
+"Unable to match @-style Identity Address with a known protocol or email "
+"contact."
+msgstr "Não foi possível  casa o estilo @ de Endereço de Identidade com um protocolo conhecido ou contato de email."
 
-#: ../../mod/fbrowser.php:25 ../../boot.php:2126 ../../include/nav.php:78
-#: ../../view/theme/diabook/theme.php:126
-msgid "Photos"
-msgstr "Fotos"
+#: ../../include/follow.php:87
+msgid "Use mailto: in front of address to force email check."
+msgstr "Use mailto: antes do endereço para forçar a checagem de email."
 
-#: ../../mod/fbrowser.php:113
-msgid "Files"
-msgstr "Arquivos"
+#: ../../include/follow.php:93
+msgid ""
+"The profile address specified belongs to a network which has been disabled "
+"on this site."
+msgstr "O endereço de perfil especificado pertence a uma rede que foi desabilitada neste site."
 
-#: ../../mod/nogroup.php:59
-msgid "Contacts who are not members of a group"
-msgstr "Contatos que não são membros de um grupo"
+#: ../../include/follow.php:103
+msgid ""
+"Limited profile. This person will be unable to receive direct/personal "
+"notifications from you."
+msgstr "Perfil limitado. Essa pessoa não poderá receber notificações diretas/pessoais de você."
 
-#: ../../mod/admin.php:57
-msgid "Theme settings updated."
-msgstr "As configurações do tema foram atualizadas."
+#: ../../include/follow.php:205
+msgid "Unable to retrieve contact information."
+msgstr "Não foi possível recuperar a informação do contato."
 
-#: ../../mod/admin.php:104 ../../mod/admin.php:619
-msgid "Site"
-msgstr "Site"
+#: ../../include/follow.php:258
+msgid "following"
+msgstr "acompanhando"
 
-#: ../../mod/admin.php:105 ../../mod/admin.php:998 ../../mod/admin.php:1013
-msgid "Users"
-msgstr "Usuários"
+#: ../../include/uimport.php:94
+msgid "Error decoding account file"
+msgstr "Erro ao decodificar arquivo de conta"
 
-#: ../../mod/admin.php:106 ../../mod/admin.php:1102 ../../mod/admin.php:1155
-#: ../../mod/settings.php:57
-msgid "Plugins"
-msgstr "Plugins"
+#: ../../include/uimport.php:100
+msgid "Error! No version data in file! This is not a Friendica account file?"
+msgstr "Erro! Nenhum arquivo de dados de versão! Esse não é um arquivo de conta do Friendica?"
 
-#: ../../mod/admin.php:107 ../../mod/admin.php:1323 ../../mod/admin.php:1357
-msgid "Themes"
-msgstr "Temas"
+#: ../../include/uimport.php:116 ../../include/uimport.php:127
+msgid "Error! Cannot check nickname"
+msgstr "Erro! Não consigo conferir o apelido (nickname)"
 
-#: ../../mod/admin.php:108
-msgid "DB updates"
-msgstr "Atualizações do BD"
+#: ../../include/uimport.php:120 ../../include/uimport.php:131
+#, php-format
+msgid "User '%s' already exists on this server!"
+msgstr "User '%s' já existe nesse servidor!"
 
-#: ../../mod/admin.php:123 ../../mod/admin.php:132 ../../mod/admin.php:1444
-msgid "Logs"
-msgstr "Relatórios"
+#: ../../include/uimport.php:153
+msgid "User creation error"
+msgstr "Erro na criação do usuário"
 
-#: ../../mod/admin.php:124
-msgid "probe address"
-msgstr ""
+#: ../../include/uimport.php:171
+msgid "User profile creation error"
+msgstr "Erro na criação do perfil do Usuário"
 
-#: ../../mod/admin.php:125
-msgid "check webfinger"
-msgstr ""
+#: ../../include/uimport.php:220
+#, php-format
+msgid "%d contact not imported"
+msgid_plural "%d contacts not imported"
+msgstr[0] "%d contato não foi importado"
+msgstr[1] "%d contatos não foram importados"
 
-#: ../../mod/admin.php:130 ../../include/nav.php:184
-msgid "Admin"
-msgstr "Admin"
+#: ../../include/uimport.php:290
+msgid "Done. You can now login with your username and password"
+msgstr "Feito. Você agora pode entrar com seu nome de usuário e senha"
 
-#: ../../mod/admin.php:131
-msgid "Plugin Features"
-msgstr "Recursos do plugin"
+#: ../../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 \\@ H:i"
 
-#: ../../mod/admin.php:133
-msgid "diagnostics"
-msgstr ""
+#: ../../include/event.php:20 ../../include/bb2diaspora.php:139
+msgid "Starts:"
+msgstr "Início:"
 
-#: ../../mod/admin.php:134
-msgid "User registrations waiting for confirmation"
-msgstr "Cadastros de novos usuários aguardando confirmação"
+#: ../../include/event.php:30 ../../include/bb2diaspora.php:147
+msgid "Finishes:"
+msgstr "Término:"
 
-#: ../../mod/admin.php:193 ../../mod/admin.php:952
-msgid "Normal Account"
-msgstr "Conta normal"
+#: ../../include/Contact.php:119
+msgid "stopped following"
+msgstr "parou de acompanhar"
 
-#: ../../mod/admin.php:194 ../../mod/admin.php:953
-msgid "Soapbox Account"
-msgstr "Conta de vitrine"
+#: ../../include/Contact.php:232 ../../include/conversation.php:881
+msgid "Poke"
+msgstr "Cutucar"
 
-#: ../../mod/admin.php:195 ../../mod/admin.php:954
-msgid "Community/Celebrity Account"
-msgstr "Conta de comunidade/celebridade"
+#: ../../include/Contact.php:233 ../../include/conversation.php:875
+msgid "View Status"
+msgstr "Ver Status"
 
-#: ../../mod/admin.php:196 ../../mod/admin.php:955
-msgid "Automatic Friend Account"
-msgstr "Conta de amigo automático"
+#: ../../include/Contact.php:234 ../../include/conversation.php:876
+msgid "View Profile"
+msgstr "Ver Perfil"
 
-#: ../../mod/admin.php:197
-msgid "Blog Account"
-msgstr "Conta de blog"
+#: ../../include/Contact.php:235 ../../include/conversation.php:877
+msgid "View Photos"
+msgstr "Ver Fotos"
 
-#: ../../mod/admin.php:198
-msgid "Private Forum"
-msgstr "Fórum privado"
+#: ../../include/Contact.php:236 ../../include/Contact.php:259
+#: ../../include/conversation.php:878
+msgid "Network Posts"
+msgstr "Publicações da Rede"
 
-#: ../../mod/admin.php:217
-msgid "Message queues"
-msgstr "Fila de mensagens"
+#: ../../include/Contact.php:237 ../../include/Contact.php:259
+#: ../../include/conversation.php:879
+msgid "Edit Contact"
+msgstr "Editar Contato"
 
-#: ../../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
-msgid "Administration"
-msgstr "Administração"
+#: ../../include/Contact.php:238
+msgid "Drop Contact"
+msgstr "Excluir o contato"
 
-#: ../../mod/admin.php:223
-msgid "Summary"
-msgstr "Resumo"
+#: ../../include/Contact.php:239 ../../include/Contact.php:259
+#: ../../include/conversation.php:880
+msgid "Send PM"
+msgstr "Enviar MP"
 
-#: ../../mod/admin.php:225
-msgid "Registered users"
-msgstr "Usuários registrados"
+#: ../../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 "\n\t\t\tOs desenvolvedores de Friendica lançaram recentemente uma atualização %s,\n\t\t\tmas quando tentei instalá-la, algo deu terrivelmente errado.\n\t\t\tIsso precisa ser corrigido em breve e eu não posso fazer isso sozinho. Por favor, contate um\n\t\t\tdesenvolvedor da Friendica se você não pode me ajudar sozinho. Meu banco de dados pode ser inválido."
 
-#: ../../mod/admin.php:227
-msgid "Pending registrations"
-msgstr "Registros pendentes"
+#: ../../include/dbstructure.php:31
+#, php-format
+msgid ""
+"The error message is\n"
+"[pre]%s[/pre]"
+msgstr "A mensagem de erro é\n[pre]%s[/pre]"
 
-#: ../../mod/admin.php:228
-msgid "Version"
-msgstr "Versão"
+#: ../../include/dbstructure.php:150
+msgid "Errors encountered creating database tables."
+msgstr "Foram encontrados erros durante a criação das tabelas do banco de dados."
 
-#: ../../mod/admin.php:232
-msgid "Active plugins"
-msgstr "Plugins ativos"
+#: ../../include/dbstructure.php:208
+msgid "Errors encountered performing database changes."
+msgstr "Erros encontrados realizando mudanças no banco de dados."
 
-#: ../../mod/admin.php:255
-msgid "Can not parse base url. Must have at least <scheme>://<domain>"
-msgstr "Não foi possível analisar a URL. Ela deve conter pelo menos <scheme>://<domain>"
+#: ../../include/datetime.php:43 ../../include/datetime.php:45
+msgid "Miscellaneous"
+msgstr "Miscelânea"
 
-#: ../../mod/admin.php:516
-msgid "Site settings updated."
-msgstr "As configurações do site foram atualizadas."
+#: ../../include/datetime.php:153 ../../include/datetime.php:290
+msgid "year"
+msgstr "ano"
 
-#: ../../mod/admin.php:545 ../../mod/settings.php:828
-msgid "No special theme for mobile devices"
-msgstr "Nenhum tema especial para dispositivos móveis"
+#: ../../include/datetime.php:158 ../../include/datetime.php:291
+msgid "month"
+msgstr "s"
 
-#: ../../mod/admin.php:562
-msgid "No community page"
-msgstr ""
+#: ../../include/datetime.php:163 ../../include/datetime.php:293
+msgid "day"
+msgstr "dia"
 
-#: ../../mod/admin.php:563
-msgid "Public postings from users of this site"
-msgstr ""
+#: ../../include/datetime.php:276
+msgid "never"
+msgstr "nunca"
 
-#: ../../mod/admin.php:564
-msgid "Global community page"
-msgstr ""
+#: ../../include/datetime.php:282
+msgid "less than a second ago"
+msgstr "menos de um segundo atrás"
 
-#: ../../mod/admin.php:570
-msgid "At post arrival"
-msgstr "Na chegada da publicação"
+#: ../../include/datetime.php:290
+msgid "years"
+msgstr "anos"
 
-#: ../../mod/admin.php:571 ../../include/contact_selectors.php:56
-msgid "Frequently"
-msgstr "Frequentemente"
+#: ../../include/datetime.php:291
+msgid "months"
+msgstr "meses"
 
-#: ../../mod/admin.php:572 ../../include/contact_selectors.php:57
-msgid "Hourly"
-msgstr "De hora em hora"
+#: ../../include/datetime.php:292
+msgid "week"
+msgstr "semana"
 
-#: ../../mod/admin.php:573 ../../include/contact_selectors.php:58
-msgid "Twice daily"
-msgstr "Duas vezes ao dia"
+#: ../../include/datetime.php:292
+msgid "weeks"
+msgstr "semanas"
 
-#: ../../mod/admin.php:574 ../../include/contact_selectors.php:59
-msgid "Daily"
-msgstr "Diariamente"
+#: ../../include/datetime.php:293
+msgid "days"
+msgstr "dias"
 
-#: ../../mod/admin.php:579
-msgid "Multi user instance"
-msgstr "Instância multi usuário"
+#: ../../include/datetime.php:294
+msgid "hour"
+msgstr "hora"
 
-#: ../../mod/admin.php:602
-msgid "Closed"
-msgstr "Fechado"
+#: ../../include/datetime.php:294
+msgid "hours"
+msgstr "horas"
 
-#: ../../mod/admin.php:603
-msgid "Requires approval"
-msgstr "Requer aprovação"
+#: ../../include/datetime.php:295
+msgid "minute"
+msgstr "minuto"
 
-#: ../../mod/admin.php:604
-msgid "Open"
-msgstr "Aberto"
+#: ../../include/datetime.php:295
+msgid "minutes"
+msgstr "minutos"
 
-#: ../../mod/admin.php:608
-msgid "No SSL policy, links will track page SSL state"
-msgstr "Nenhuma política de SSL, os links irão rastrear o estado SSL da página"
+#: ../../include/datetime.php:296
+msgid "second"
+msgstr "segundo"
 
-#: ../../mod/admin.php:609
-msgid "Force all links to use SSL"
-msgstr "Forçar todos os links a utilizar SSL"
+#: ../../include/datetime.php:296
+msgid "seconds"
+msgstr "segundos"
 
-#: ../../mod/admin.php:610
-msgid "Self-signed certificate, use SSL for local links only (discouraged)"
-msgstr "Certificado auto-assinado, usar SSL somente para links locais (não recomendado)"
+#: ../../include/datetime.php:305
+#, php-format
+msgid "%1$d %2$s ago"
+msgstr "%1$d %2$s atrás"
 
-#: ../../mod/admin.php:620 ../../mod/admin.php:1156 ../../mod/admin.php:1358
-#: ../../mod/admin.php:1445 ../../mod/settings.php:614
-#: ../../mod/settings.php:724 ../../mod/settings.php:798
-#: ../../mod/settings.php:880 ../../mod/settings.php:1113
-msgid "Save Settings"
-msgstr "Salvar configurações"
+#: ../../include/message.php:15 ../../include/message.php:172
+msgid "[no subject]"
+msgstr "[sem assunto]"
 
-#: ../../mod/admin.php:621 ../../mod/register.php:255
-msgid "Registration"
-msgstr "Registro"
+#: ../../include/delivery.php:456 ../../include/notifier.php:786
+msgid "(no subject)"
+msgstr "(sem assunto)"
 
-#: ../../mod/admin.php:622
-msgid "File upload"
-msgstr "Envio de arquivo"
+#: ../../include/contact_selectors.php:32
+msgid "Unknown | Not categorised"
+msgstr "Desconhecido | Não categorizado"
 
-#: ../../mod/admin.php:623
-msgid "Policies"
-msgstr "Políticas"
+#: ../../include/contact_selectors.php:33
+msgid "Block immediately"
+msgstr "Bloquear imediatamente"
 
-#: ../../mod/admin.php:624
-msgid "Advanced"
-msgstr "Avançado"
+#: ../../include/contact_selectors.php:34
+msgid "Shady, spammer, self-marketer"
+msgstr "Dissimulado, spammer, propagandista"
 
-#: ../../mod/admin.php:625
-msgid "Performance"
-msgstr "Performance"
+#: ../../include/contact_selectors.php:35
+msgid "Known to me, but no opinion"
+msgstr "Eu conheço, mas não possuo nenhuma opinião acerca"
 
-#: ../../mod/admin.php:626
-msgid ""
-"Relocate - WARNING: advanced function. Could make this server unreachable."
-msgstr "Relocação - ATENÇÃO: função avançada. Pode tornar esse servidor inacessível."
+#: ../../include/contact_selectors.php:36
+msgid "OK, probably harmless"
+msgstr "Ok, provavelmente inofensivo"
 
-#: ../../mod/admin.php:629
-msgid "Site name"
-msgstr "Nome do site"
+#: ../../include/contact_selectors.php:37
+msgid "Reputable, has my trust"
+msgstr "Boa reputação, tem minha confiança"
 
-#: ../../mod/admin.php:630
-msgid "Host name"
-msgstr "Nome do host"
+#: ../../include/contact_selectors.php:56 ../../mod/admin.php:571
+msgid "Frequently"
+msgstr "Frequentemente"
 
-#: ../../mod/admin.php:631
-msgid "Sender Email"
-msgstr ""
+#: ../../include/contact_selectors.php:57 ../../mod/admin.php:572
+msgid "Hourly"
+msgstr "De hora em hora"
 
-#: ../../mod/admin.php:632
-msgid "Banner/Logo"
-msgstr "Banner/Logo"
+#: ../../include/contact_selectors.php:58 ../../mod/admin.php:573
+msgid "Twice daily"
+msgstr "Duas vezes ao dia"
 
-#: ../../mod/admin.php:633
-msgid "Shortcut icon"
-msgstr ""
+#: ../../include/contact_selectors.php:59 ../../mod/admin.php:574
+msgid "Daily"
+msgstr "Diariamente"
 
-#: ../../mod/admin.php:634
-msgid "Touch icon"
-msgstr ""
+#: ../../include/contact_selectors.php:60
+msgid "Weekly"
+msgstr "Semanalmente"
 
-#: ../../mod/admin.php:635
-msgid "Additional Info"
-msgstr "Informação adicional"
+#: ../../include/contact_selectors.php:61
+msgid "Monthly"
+msgstr "Mensalmente"
 
-#: ../../mod/admin.php:635
-msgid ""
-"For public servers: you can add additional information here that will be "
-"listed at dir.friendica.com/siteinfo."
-msgstr "Para servidores públicos: você pode adicionar informações aqui que serão listadas em dir.friendica.com/siteinfo."
+#: ../../include/contact_selectors.php:76 ../../mod/dfrn_request.php:836
+msgid "Friendica"
+msgstr "Friendica"
 
-#: ../../mod/admin.php:636
-msgid "System language"
-msgstr "Idioma do sistema"
+#: ../../include/contact_selectors.php:77
+msgid "OStatus"
+msgstr "OStatus"
 
-#: ../../mod/admin.php:637
-msgid "System theme"
-msgstr "Tema do sistema"
+#: ../../include/contact_selectors.php:78
+msgid "RSS/Atom"
+msgstr "RSS/Atom"
 
-#: ../../mod/admin.php:637
-msgid ""
-"Default system theme - may be over-ridden by user profiles - <a href='#' "
-"id='cnftheme'>change theme settings</a>"
-msgstr "Tema padrão do sistema. Pode ser substituído nos perfis de usuário -  <a href='#' id='cnftheme'>alterar configurações do tema</a>"
+#: ../../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"
 
-#: ../../mod/admin.php:638
-msgid "Mobile system theme"
-msgstr "Tema do sistema para dispositivos móveis"
+#: ../../include/contact_selectors.php:80 ../../mod/settings.php:741
+#: ../../mod/dfrn_request.php:838
+msgid "Diaspora"
+msgstr "Diaspora"
 
-#: ../../mod/admin.php:638
-msgid "Theme for mobile devices"
-msgstr "Tema para dispositivos móveis"
+#: ../../include/contact_selectors.php:81 ../../mod/newmember.php:49
+#: ../../mod/newmember.php:51
+msgid "Facebook"
+msgstr "Facebook"
 
-#: ../../mod/admin.php:639
-msgid "SSL link policy"
-msgstr "Política de link SSL"
+#: ../../include/contact_selectors.php:82
+msgid "Zot!"
+msgstr "Zot!"
 
-#: ../../mod/admin.php:639
-msgid "Determines whether generated links should be forced to use SSL"
-msgstr "Determina se os links gerados devem ser forçados a utilizar SSL"
+#: ../../include/contact_selectors.php:83
+msgid "LinkedIn"
+msgstr "LinkedIn"
 
-#: ../../mod/admin.php:640
-msgid "Force SSL"
-msgstr "Forçar SSL"
+#: ../../include/contact_selectors.php:84
+msgid "XMPP/IM"
+msgstr "XMPP/IM"
 
-#: ../../mod/admin.php:640
-msgid ""
-"Force all Non-SSL requests to SSL - Attention: on some systems it could lead"
-" to endless loops."
-msgstr "Forçar todas as solicitações não-SSL para SSL - Atenção: em alguns sistemas isso pode levar a loops infinitos."
+#: ../../include/contact_selectors.php:85
+msgid "MySpace"
+msgstr "MySpace"
 
-#: ../../mod/admin.php:641
-msgid "Old style 'Share'"
-msgstr "Estilo antigo do 'Compartilhar' "
+#: ../../include/contact_selectors.php:87
+msgid "Google+"
+msgstr "Google+"
 
-#: ../../mod/admin.php:641
-msgid "Deactivates the bbcode element 'share' for repeating items."
-msgstr "Desativa o elemento bbcode 'compartilhar' para repetir ítens."
+#: ../../include/contact_selectors.php:88
+msgid "pump.io"
+msgstr "pump.io"
 
-#: ../../mod/admin.php:642
-msgid "Hide help entry from navigation menu"
-msgstr "Oculta a entrada 'Ajuda' do menu de navegação"
+#: ../../include/contact_selectors.php:89
+msgid "Twitter"
+msgstr "Twitter"
 
-#: ../../mod/admin.php:642
-msgid ""
-"Hides the menu entry for the Help pages from the navigation menu. You can "
-"still access it calling /help directly."
-msgstr "Oculta a entrada de menu para as páginas de Ajuda do menu de navegação. Ainda será possível acessá-las chamando /help diretamente."
+#: ../../include/contact_selectors.php:90
+msgid "Diaspora Connector"
+msgstr "Conector do Diáspora"
 
-#: ../../mod/admin.php:643
-msgid "Single user instance"
-msgstr "Instância de usuário único"
+#: ../../include/contact_selectors.php:91
+msgid "Statusnet"
+msgstr "Statusnet"
 
-#: ../../mod/admin.php:643
-msgid "Make this instance multi-user or single-user for the named user"
-msgstr "Faça essa instância multiusuário ou usuário único para o usuário em questão"
+#: ../../include/contact_selectors.php:92
+msgid "App.net"
+msgstr "App.net"
 
-#: ../../mod/admin.php:644
-msgid "Maximum image size"
-msgstr "Tamanho máximo da imagem"
+#: ../../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 agora é amigo de %2$s"
 
-#: ../../mod/admin.php:644
-msgid ""
-"Maximum size in bytes of uploaded images. Default is 0, which means no "
-"limits."
-msgstr "Tamanho máximo, em bytes, das imagens enviadas. O padrão é 0, o que significa sem limites"
+#: ../../include/diaspora.php:704
+msgid "Sharing notification from Diaspora network"
+msgstr "Notificação de compartilhamento da rede Diaspora"
 
-#: ../../mod/admin.php:645
-msgid "Maximum image length"
-msgstr "Tamanho máximo da imagem"
+#: ../../include/diaspora.php:2444
+msgid "Attachments:"
+msgstr "Anexos:"
 
-#: ../../mod/admin.php:645
-msgid ""
-"Maximum length in pixels of the longest side of uploaded images. Default is "
-"-1, which means no limits."
-msgstr "Tamanho máximo em pixels do lado mais largo das imagens enviadas. O padrão é -1, que significa sem limites."
+#: ../../include/conversation.php:140 ../../mod/like.php:168
+#, php-format
+msgid "%1$s doesn't like %2$s's %3$s"
+msgstr "%1$s não gosta de %3$s de %2$s"
 
-#: ../../mod/admin.php:646
-msgid "JPEG image quality"
-msgstr "Qualidade da imagem JPEG"
+#: ../../include/conversation.php:206
+#, php-format
+msgid "%1$s poked %2$s"
+msgstr "%1$s cutucou %2$s"
 
-#: ../../mod/admin.php:646
-msgid ""
-"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is "
-"100, which is full quality."
-msgstr "Imagens JPEG enviadas serão salvas com essa qualidade [0-100]. O padrão é 100, que significa a melhor qualidade."
+#: ../../include/conversation.php:226 ../../mod/mood.php:62
+#, php-format
+msgid "%1$s is currently %2$s"
+msgstr "%1$s atualmente está %2$s"
 
-#: ../../mod/admin.php:648
-msgid "Register policy"
-msgstr "Política de registro"
+#: ../../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 etiquetou %3$s de %2$s com %4$s"
 
-#: ../../mod/admin.php:649
-msgid "Maximum Daily Registrations"
-msgstr "Registros Diários Máximos"
+#: ../../include/conversation.php:290
+msgid "post/item"
+msgstr "postagem/item"
 
-#: ../../mod/admin.php:649
-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 "Se o registro é permitido acima, isso configura o número máximo de registros de novos usuários a serem aceitos por dia. Se o registro está configurado para 'fechado/closed' ,  essa configuração não tem efeito."
+#: ../../include/conversation.php:291
+#, php-format
+msgid "%1$s marked %2$s's %3$s as favorite"
+msgstr "%1$s marcou %3$s de %2$s como favorito"
 
-#: ../../mod/admin.php:650
-msgid "Register text"
-msgstr "Texto de registro"
+#: ../../include/conversation.php:612 ../../object/Item.php:129
+#: ../../mod/photos.php:1653 ../../mod/content.php:437
+#: ../../mod/content.php:740
+msgid "Select"
+msgstr "Selecionar"
 
-#: ../../mod/admin.php:650
-msgid "Will be displayed prominently on the registration page."
-msgstr "Será exibido com destaque na página de registro."
+#: ../../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
+msgid "Delete"
+msgstr "Excluir"
 
-#: ../../mod/admin.php:651
-msgid "Accounts abandoned after x days"
-msgstr "Contas abandonadas após x dias"
+#: ../../include/conversation.php:653 ../../object/Item.php:326
+#: ../../object/Item.php:327 ../../mod/content.php:471
+#: ../../mod/content.php:852 ../../mod/content.php:853
+#, php-format
+msgid "View %s's profile @ %s"
+msgstr "Ver o perfil de %s @ %s"
 
-#: ../../mod/admin.php:651
-msgid ""
-"Will not waste system resources polling external sites for abandonded "
-"accounts. Enter 0 for no time limit."
-msgstr "Não desperdiçará recursos do sistema captando de sites externos para contas abandonadas. Digite 0 para nenhum limite de tempo."
+#: ../../include/conversation.php:665 ../../object/Item.php:316
+msgid "Categories:"
+msgstr "Categorias:"
 
-#: ../../mod/admin.php:652
-msgid "Allowed friend domains"
-msgstr "Domínios de amigos permitidos"
+#: ../../include/conversation.php:666 ../../object/Item.php:317
+msgid "Filed under:"
+msgstr "Arquivado sob:"
 
-#: ../../mod/admin.php:652
-msgid ""
-"Comma separated list of domains which are allowed to establish friendships "
-"with this site. Wildcards are accepted. Empty to allow any domains"
-msgstr "Lista dos domínios que têm permissão para estabelecer amizades com esse site, separados por vírgula. Caracteres curinga são aceitos. Deixe em branco para permitir qualquer domínio."
+#: ../../include/conversation.php:673 ../../object/Item.php:340
+#: ../../mod/content.php:481 ../../mod/content.php:864
+#, php-format
+msgid "%s from %s"
+msgstr "%s de %s"
 
-#: ../../mod/admin.php:653
-msgid "Allowed email domains"
-msgstr "Domínios de e-mail permitidos"
+#: ../../include/conversation.php:689 ../../mod/content.php:497
+msgid "View in context"
+msgstr "Ver no contexto"
 
-#: ../../mod/admin.php:653
-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 "Lista de domínios separados por vírgula, que são permitidos em endereços de e-mail para registro nesse site. Caracteres-curinga são aceitos. Vazio para aceitar qualquer domínio"
+#: ../../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
+msgid "Please wait"
+msgstr "Por favor, espere"
 
-#: ../../mod/admin.php:654
-msgid "Block public"
-msgstr "Bloquear acesso público"
+#: ../../include/conversation.php:771
+msgid "remove"
+msgstr "remover"
 
-#: ../../mod/admin.php:654
-msgid ""
-"Check to block public access to all otherwise public personal pages on this "
-"site unless you are currently logged in."
-msgstr "Marque para bloquear o acesso público a todas as páginas desse site, com exceção das páginas pessoais públicas, a não ser que a pessoa esteja autenticada."
+#: ../../include/conversation.php:775
+msgid "Delete Selected Items"
+msgstr "Excluir os itens selecionados"
 
-#: ../../mod/admin.php:655
-msgid "Force publish"
-msgstr "Forçar a listagem"
+#: ../../include/conversation.php:874
+msgid "Follow Thread"
+msgstr "Seguir o Thread"
 
-#: ../../mod/admin.php:655
-msgid ""
-"Check to force all profiles on this site to be listed in the site directory."
-msgstr "Marque para forçar todos os perfis desse site a serem listados no diretório do site."
+#: ../../include/conversation.php:943
+#, php-format
+msgid "%s likes this."
+msgstr "%s gostou disso."
 
-#: ../../mod/admin.php:656
-msgid "Global directory update URL"
-msgstr "URL de atualização do diretório global"
+#: ../../include/conversation.php:943
+#, php-format
+msgid "%s doesn't like this."
+msgstr "%s não gostou disso."
 
-#: ../../mod/admin.php:656
-msgid ""
-"URL to update the global directory. If this is not set, the global directory"
-" is completely unavailable to the application."
-msgstr "URL para atualizar o diretório global. Se isso não for definido, o diretório global não estará disponível neste site."
+#: ../../include/conversation.php:948
+#, php-format
+msgid "<span  %1$s>%2$d people</span> like this"
+msgstr "<span  %1$s>%2$d pessoas</span> gostaram disso"
 
-#: ../../mod/admin.php:657
-msgid "Allow threaded items"
-msgstr "Habilita itens aninhados"
+#: ../../include/conversation.php:951
+#, php-format
+msgid "<span  %1$s>%2$d people</span> don't like this"
+msgstr "<span  %1$s>%2$d pessoas</span> não gostaram disso"
 
-#: ../../mod/admin.php:657
-msgid "Allow infinite level threading for items on this site."
-msgstr "Habilita nível infinito de aninhamento (threading) para itens."
+#: ../../include/conversation.php:965
+msgid "and"
+msgstr "e"
 
-#: ../../mod/admin.php:658
-msgid "Private posts by default for new users"
-msgstr "Publicações privadas por padrão para novos usuários"
+#: ../../include/conversation.php:971
+#, php-format
+msgid ", and %d other people"
+msgstr ", e mais %d outras pessoas"
 
-#: ../../mod/admin.php:658
-msgid ""
-"Set default post permissions for all new members to the default privacy "
-"group rather than public."
-msgstr "Define as permissões padrão de publicação de todos os novos membros para o grupo de privacidade padrão, ao invés de torná-las públicas."
+#: ../../include/conversation.php:973
+#, php-format
+msgid "%s like this."
+msgstr "%s gostaram disso."
 
-#: ../../mod/admin.php:659
-msgid "Don't include post content in email notifications"
-msgstr "Não incluir o conteúdo da postagem nas notificações de email"
+#: ../../include/conversation.php:973
+#, php-format
+msgid "%s don't like this."
+msgstr "%s não gostaram disso."
 
-#: ../../mod/admin.php:659
-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 "Não incluir o conteúdo de uma postagem/comentário/mensagem privada/etc. em notificações de email que são enviadas para fora desse sítio, como medida de segurança."
+#: ../../include/conversation.php:1000 ../../include/conversation.php:1018
+msgid "Visible to <strong>everybody</strong>"
+msgstr "Visível para <strong>todos</strong>"
 
-#: ../../mod/admin.php:660
-msgid "Disallow public access to addons listed in the apps menu."
-msgstr "Disabilita acesso público a addons listados no menu de aplicativos."
+#: ../../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 "Por favor, digite uma URL:"
 
-#: ../../mod/admin.php:660
-msgid ""
-"Checking this box will restrict addons listed in the apps menu to members "
-"only."
-msgstr "Marcar essa caixa ira restringir os addons listados no menu de aplicativos aos membros somente."
+#: ../../include/conversation.php:1002 ../../include/conversation.php:1020
+msgid "Please enter a video link/URL:"
+msgstr "Favor fornecer um link/URL de vídeo"
 
-#: ../../mod/admin.php:661
-msgid "Don't embed private images in posts"
-msgstr "Não inclua imagens privadas em publicações"
+#: ../../include/conversation.php:1003 ../../include/conversation.php:1021
+msgid "Please enter an audio link/URL:"
+msgstr "Favor fornecer um link/URL de áudio"
 
-#: ../../mod/admin.php:661
-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 "
-"photos will have to authenticate and load each image, which may take a "
-"while."
-msgstr "Não substitue fotos privativas guardadas localmente em publicações por uma cópia inclusa da imagem. Isso significa que os contatos que recebem publicações contendo fotos privadas terão que autenticar e carregar cada imagem, o que pode levar algum tempo."
+#: ../../include/conversation.php:1004 ../../include/conversation.php:1022
+msgid "Tag term:"
+msgstr "Etiqueta:"
 
-#: ../../mod/admin.php:662
-msgid "Allow Users to set remote_self"
-msgstr "Permite usuários configurarem remote_self"
+#: ../../include/conversation.php:1005 ../../include/conversation.php:1023
+#: ../../mod/filer.php:30
+msgid "Save to Folder:"
+msgstr "Salvar na pasta:"
 
-#: ../../mod/admin.php:662
-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 "Ao marcar isto, todos os usuários poderão marcar cada contato como um remote_self na opção de reparar contato. Marcar isto para um contato produz espelhamento de toda publicação deste contato no fluxo dos usuários"
+#: ../../include/conversation.php:1006 ../../include/conversation.php:1024
+msgid "Where are you right now?"
+msgstr "Onde você está agora?"
 
-#: ../../mod/admin.php:663
-msgid "Block multiple registrations"
-msgstr "Bloquear registros repetidos"
+#: ../../include/conversation.php:1007
+msgid "Delete item(s)?"
+msgstr "Deletar item(s)?"
 
-#: ../../mod/admin.php:663
-msgid "Disallow users to register additional accounts for use as pages."
-msgstr "Desabilitar o registro de contas adicionais para serem usadas como páginas."
+#: ../../include/conversation.php:1050
+msgid "Post to Email"
+msgstr "Enviar por e-mail"
 
-#: ../../mod/admin.php:664
-msgid "OpenID support"
-msgstr "Suporte ao OpenID"
+#: ../../include/conversation.php:1055
+#, php-format
+msgid "Connectors disabled, since \"%s\" is enabled."
+msgstr "Conectores desabilitados, desde \"%s\" está habilitado."
 
-#: ../../mod/admin.php:664
-msgid "OpenID support for registration and logins."
-msgstr "Suporte ao OpenID para registros e autenticações."
+#: ../../include/conversation.php:1056 ../../mod/settings.php:1033
+msgid "Hide your profile details from unknown viewers?"
+msgstr "Ocultar os detalhes do seu perfil para pessoas desconhecidas?"
 
-#: ../../mod/admin.php:665
-msgid "Fullname check"
-msgstr "Verificar nome completo"
+#: ../../include/conversation.php:1089 ../../mod/photos.php:1544
+msgid "Share"
+msgstr "Compartilhar"
 
-#: ../../mod/admin.php:665
-msgid ""
-"Force users to register with a space between firstname and lastname in Full "
-"name, as an antispam measure"
-msgstr "Forçar os usuários a usar um espaço em branco entre o nome e o sobrenome, ao preencherem o nome completo no registro, como uma medida contra o spam"
+#: ../../include/conversation.php:1090 ../../mod/wallmessage.php:154
+#: ../../mod/editpost.php:110 ../../mod/message.php:332
+#: ../../mod/message.php:562
+msgid "Upload photo"
+msgstr "Enviar foto"
 
-#: ../../mod/admin.php:666
-msgid "UTF-8 Regular expressions"
-msgstr "Expressões regulares UTF-8"
+#: ../../include/conversation.php:1091 ../../mod/editpost.php:111
+msgid "upload photo"
+msgstr "upload de foto"
 
-#: ../../mod/admin.php:666
-msgid "Use PHP UTF8 regular expressions"
-msgstr "Use expressões regulares do PHP em UTF8"
+#: ../../include/conversation.php:1092 ../../mod/editpost.php:112
+msgid "Attach file"
+msgstr "Anexar arquivo"
 
-#: ../../mod/admin.php:667
-msgid "Community Page Style"
-msgstr ""
+#: ../../include/conversation.php:1093 ../../mod/editpost.php:113
+msgid "attach file"
+msgstr "anexar arquivo"
 
-#: ../../mod/admin.php:667
-msgid ""
-"Type of community page to show. 'Global community' shows every public "
-"posting from an open distributed network that arrived on this server."
-msgstr ""
+#: ../../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 "Inserir link web"
 
-#: ../../mod/admin.php:668
-msgid "Posts per user on community page"
-msgstr ""
+#: ../../include/conversation.php:1095 ../../mod/editpost.php:115
+msgid "web link"
+msgstr "link web"
 
-#: ../../mod/admin.php:668
-msgid ""
-"The maximum number of posts per user on the community page. (Not valid for "
-"'Global Community')"
-msgstr ""
+#: ../../include/conversation.php:1096 ../../mod/editpost.php:116
+msgid "Insert video link"
+msgstr "Inserir link de vídeo"
 
-#: ../../mod/admin.php:669
-msgid "Enable OStatus support"
-msgstr "Habilitar suporte ao OStatus"
+#: ../../include/conversation.php:1097 ../../mod/editpost.php:117
+msgid "video link"
+msgstr "link de vídeo"
 
-#: ../../mod/admin.php:669
-msgid ""
-"Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All "
-"communications in OStatus are public, so privacy warnings will be "
-"occasionally displayed."
-msgstr "Fornece compatibilidade OStatus (StatusNet, GNU Social, etc.). Todas as comunicações no OStatus são públicas, assim avisos de privacidade serão ocasionalmente mostrados."
+#: ../../include/conversation.php:1098 ../../mod/editpost.php:118
+msgid "Insert audio link"
+msgstr "Inserir link de áudio"
 
-#: ../../mod/admin.php:670
-msgid "OStatus conversation completion interval"
-msgstr "Intervalo de finalização da conversação OStatus "
+#: ../../include/conversation.php:1099 ../../mod/editpost.php:119
+msgid "audio link"
+msgstr "link de áudio"
 
-#: ../../mod/admin.php:670
-msgid ""
-"How often shall the poller check for new entries in OStatus conversations? "
-"This can be a very ressource task."
-msgstr "De quanto em quanto tempo o \"buscador\" (poller) deve checar por novas entradas numa conversação OStatus? Essa pode ser uma tarefa bem demorada."
+#: ../../include/conversation.php:1100 ../../mod/editpost.php:120
+msgid "Set your location"
+msgstr "Definir sua localização"
 
-#: ../../mod/admin.php:671
-msgid "Enable Diaspora support"
-msgstr "Habilitar suporte ao Diaspora"
+#: ../../include/conversation.php:1101 ../../mod/editpost.php:121
+msgid "set location"
+msgstr "configure localização"
 
-#: ../../mod/admin.php:671
-msgid "Provide built-in Diaspora network compatibility."
-msgstr "Fornece compatibilidade nativa com a rede Diaspora."
+#: ../../include/conversation.php:1102 ../../mod/editpost.php:122
+msgid "Clear browser location"
+msgstr "Limpar a localização do navegador"
 
-#: ../../mod/admin.php:672
-msgid "Only allow Friendica contacts"
-msgstr "Permitir somente contatos Friendica"
+#: ../../include/conversation.php:1103 ../../mod/editpost.php:123
+msgid "clear location"
+msgstr "apague localização"
 
-#: ../../mod/admin.php:672
-msgid ""
-"All contacts must use Friendica protocols. All other built-in communication "
-"protocols disabled."
-msgstr "Todos os contatos devem usar protocolos Friendica. Todos os outros protocolos de comunicação embarcados estão desabilitados"
+#: ../../include/conversation.php:1105 ../../mod/editpost.php:137
+msgid "Set title"
+msgstr "Definir o título"
 
-#: ../../mod/admin.php:673
-msgid "Verify SSL"
-msgstr "Verificar SSL"
+#: ../../include/conversation.php:1107 ../../mod/editpost.php:139
+msgid "Categories (comma-separated list)"
+msgstr "Categorias (lista separada por vírgulas)"
 
-#: ../../mod/admin.php:673
-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 "Caso deseje, você pode habilitar a restrição de certificações. Isso significa que você não poderá conectar-se a nenhum site que use certificados auto-assinados."
+#: ../../include/conversation.php:1109 ../../mod/editpost.php:125
+msgid "Permission settings"
+msgstr "Configurações de permissão"
 
-#: ../../mod/admin.php:674
-msgid "Proxy user"
-msgstr "Usuário do proxy"
+#: ../../include/conversation.php:1110
+msgid "permissions"
+msgstr "permissões"
 
-#: ../../mod/admin.php:675
-msgid "Proxy URL"
-msgstr "URL do proxy"
+#: ../../include/conversation.php:1118 ../../mod/editpost.php:133
+msgid "CC: email addresses"
+msgstr "CC: endereço de e-mail"
 
-#: ../../mod/admin.php:676
-msgid "Network timeout"
-msgstr "Limite de tempo da rede"
+#: ../../include/conversation.php:1119 ../../mod/editpost.php:134
+msgid "Public post"
+msgstr "Publicação pública"
 
-#: ../../mod/admin.php:676
-msgid "Value is in seconds. Set to 0 for unlimited (not recommended)."
-msgstr "Valor em segundos. Defina como 0 para ilimitado (não recomendado)."
+#: ../../include/conversation.php:1121 ../../mod/editpost.php:140
+msgid "Example: bob@example.com, mary@example.com"
+msgstr "Por exemplo: joao@exemplo.com, maria@exemplo.com"
 
-#: ../../mod/admin.php:677
-msgid "Delivery interval"
-msgstr "Intervalo de envio"
+#: ../../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 "Pré-visualização"
 
-#: ../../mod/admin.php:677
-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 "Postergue o processo de entrega em background por essa quantidade de segundos visando reduzir a carga do sistema. Recomendado: 4-5 para servidores compartilhados (shared hosts), 2-3 para servidores privados virtuais (VPS). 0-1 para grandes servidores dedicados."
+#: ../../include/conversation.php:1134
+msgid "Post to Groups"
+msgstr "Postar em Grupos"
 
-#: ../../mod/admin.php:678
-msgid "Poll interval"
-msgstr "Intervalo da busca (polling)"
+#: ../../include/conversation.php:1135
+msgid "Post to Contacts"
+msgstr "Publique para Contatos"
 
-#: ../../mod/admin.php:678
-msgid ""
-"Delay background polling processes by this many seconds to reduce system "
-"load. If 0, use delivery interval."
-msgstr "Postergue o processo de entrega em background por essa quantidade de segundos visando reduzir a carga do sistema. Se 0, use intervalo de entrega."
+#: ../../include/conversation.php:1136
+msgid "Private post"
+msgstr "Publicação privada"
 
-#: ../../mod/admin.php:679
-msgid "Maximum Load Average"
-msgstr "Média de Carga Máxima"
+#: ../../include/text.php:297
+msgid "newer"
+msgstr "mais recente"
 
-#: ../../mod/admin.php:679
-msgid ""
-"Maximum system load before delivery and poll processes are deferred - "
-"default 50."
-msgstr "Carga do sistema máxima antes que os processos de entrega e busca sejam postergados - padrão 50."
+#: ../../include/text.php:299
+msgid "older"
+msgstr "antigo"
 
-#: ../../mod/admin.php:681
-msgid "Use MySQL full text engine"
-msgstr "Use o engine de texto completo (full text) do MySQL"
+#: ../../include/text.php:304
+msgid "prev"
+msgstr "anterior"
 
-#: ../../mod/admin.php:681
-msgid ""
-"Activates the full text engine. Speeds up search - but can only search for "
-"four and more characters."
-msgstr "Ativa a engine de texto completo (full text). Acelera a busca - mas só pode buscar apenas por 4 ou mais caracteres."
+#: ../../include/text.php:306
+msgid "first"
+msgstr "primeiro"
 
-#: ../../mod/admin.php:682
-msgid "Suppress Language"
-msgstr "Retira idioma"
+#: ../../include/text.php:338
+msgid "last"
+msgstr "último"
 
-#: ../../mod/admin.php:682
-msgid "Suppress language information in meta information about a posting."
-msgstr "Retira informações sobre idioma nas meta informações sobre uma publicação."
+#: ../../include/text.php:341
+msgid "next"
+msgstr "próximo"
 
-#: ../../mod/admin.php:683
-msgid "Suppress Tags"
-msgstr ""
+#: ../../include/text.php:396
+msgid "Loading more entries..."
+msgstr "Baixando mais entradas..."
 
-#: ../../mod/admin.php:683
-msgid "Suppress showing a list of hashtags at the end of the posting."
-msgstr ""
+#: ../../include/text.php:397
+msgid "The end"
+msgstr "Fim"
 
-#: ../../mod/admin.php:684
-msgid "Path to item cache"
-msgstr "Diretório do cache de item"
+#: ../../include/text.php:870
+msgid "No contacts"
+msgstr "Nenhum contato"
 
-#: ../../mod/admin.php:685
-msgid "Cache duration in seconds"
-msgstr "Duração do cache em segundos"
+#: ../../include/text.php:879
+#, php-format
+msgid "%d Contact"
+msgid_plural "%d Contacts"
+msgstr[0] "%d contato"
+msgstr[1] "%d contatos"
 
-#: ../../mod/admin.php:685
-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 "Por quanto tempo os arquivos de cache devem ser mantidos? O valor padrão é 86400 segundos (um dia). Para desativar o cache, defina o valor para -1."
+#: ../../include/text.php:891 ../../mod/viewcontacts.php:78
+msgid "View Contacts"
+msgstr "Ver contatos"
 
-#: ../../mod/admin.php:686
-msgid "Maximum numbers of comments per post"
-msgstr "O número máximo de comentários por post"
+#: ../../include/text.php:971 ../../mod/editpost.php:109
+#: ../../mod/notes.php:63 ../../mod/filer.php:31
+msgid "Save"
+msgstr "Salvar"
 
-#: ../../mod/admin.php:686
-msgid "How much comments should be shown for each post? Default value is 100."
-msgstr "Quanto comentários devem ser mostradas em cada post? O valor padrão é 100."
+#: ../../include/text.php:1020
+msgid "poke"
+msgstr "cutucar"
 
-#: ../../mod/admin.php:687
-msgid "Path for lock file"
-msgstr "Diretório do arquivo de trava"
+#: ../../include/text.php:1020
+msgid "poked"
+msgstr "cutucado"
 
-#: ../../mod/admin.php:688
-msgid "Temp path"
-msgstr "Diretório Temp"
+#: ../../include/text.php:1021
+msgid "ping"
+msgstr "ping"
 
-#: ../../mod/admin.php:689
-msgid "Base path to installation"
-msgstr "Diretório base para instalação"
+#: ../../include/text.php:1021
+msgid "pinged"
+msgstr "pingado"
 
-#: ../../mod/admin.php:690
-msgid "Disable picture proxy"
-msgstr "Disabilitar proxy de imagem"
+#: ../../include/text.php:1022
+msgid "prod"
+msgstr "incentivar"
 
-#: ../../mod/admin.php:690
-msgid ""
-"The picture proxy increases performance and privacy. It shouldn't be used on"
-" systems with very low bandwith."
-msgstr "O proxy de imagem aumenta o desempenho e privacidade. Ele não deve ser usado em sistemas com largura de banda muito baixa."
+#: ../../include/text.php:1022
+msgid "prodded"
+msgstr "incentivado"
 
-#: ../../mod/admin.php:691
-msgid "Enable old style pager"
-msgstr ""
+#: ../../include/text.php:1023
+msgid "slap"
+msgstr "bater"
 
-#: ../../mod/admin.php:691
-msgid ""
-"The old style pager has page numbers but slows down massively the page "
-"speed."
-msgstr ""
+#: ../../include/text.php:1023
+msgid "slapped"
+msgstr "batido"
 
-#: ../../mod/admin.php:692
-msgid "Only search in tags"
-msgstr ""
+#: ../../include/text.php:1024
+msgid "finger"
+msgstr "apontar"
 
-#: ../../mod/admin.php:692
-msgid "On large systems the text search can slow down the system extremely."
-msgstr ""
+#: ../../include/text.php:1024
+msgid "fingered"
+msgstr "apontado"
 
-#: ../../mod/admin.php:694
-msgid "New base url"
-msgstr "Nova URL base"
+#: ../../include/text.php:1025
+msgid "rebuff"
+msgstr "rejeite"
 
-#: ../../mod/admin.php:711
-msgid "Update has been marked successful"
-msgstr "A atualização foi marcada como bem sucedida"
+#: ../../include/text.php:1025
+msgid "rebuffed"
+msgstr "rejeitado"
 
-#: ../../mod/admin.php:719
-#, php-format
-msgid "Database structure update %s was successfully applied."
-msgstr "A atualização da estrutura do banco de dados %s foi aplicada com sucesso."
+#: ../../include/text.php:1039
+msgid "happy"
+msgstr "feliz"
 
-#: ../../mod/admin.php:722
-#, php-format
-msgid "Executing of database structure update %s failed with error: %s"
-msgstr "A execução da atualização da estrutura do banco de dados %s falhou com o erro: %s"
+#: ../../include/text.php:1040
+msgid "sad"
+msgstr "triste"
 
-#: ../../mod/admin.php:734
-#, php-format
-msgid "Executing %s failed with error: %s"
-msgstr "A execução de %s falhou com erro: %s"
+#: ../../include/text.php:1041
+msgid "mellow"
+msgstr "desencanado"
 
-#: ../../mod/admin.php:737
-#, php-format
-msgid "Update %s was successfully applied."
-msgstr "A atualização %s foi aplicada com sucesso."
+#: ../../include/text.php:1042
+msgid "tired"
+msgstr "cansado"
 
-#: ../../mod/admin.php:741
-#, php-format
-msgid "Update %s did not return a status. Unknown if it succeeded."
-msgstr "Atualizar %s não retornou um status. Desconhecido se ele teve sucesso."
+#: ../../include/text.php:1043
+msgid "perky"
+msgstr "audacioso"
 
-#: ../../mod/admin.php:743
-#, php-format
-msgid "There was no additional update function %s that needed to be called."
-msgstr "Não havia nenhuma função de atualização %s adicional que precisava ser chamada."
+#: ../../include/text.php:1044
+msgid "angry"
+msgstr "chateado"
 
-#: ../../mod/admin.php:762
-msgid "No failed updates."
-msgstr "Nenhuma atualização com falha."
+#: ../../include/text.php:1045
+msgid "stupified"
+msgstr "estupefato"
 
-#: ../../mod/admin.php:763
-msgid "Check database structure"
-msgstr "Verifique a estrutura do banco de dados"
+#: ../../include/text.php:1046
+msgid "puzzled"
+msgstr "confuso"
 
-#: ../../mod/admin.php:768
-msgid "Failed Updates"
-msgstr "Atualizações com falha"
+#: ../../include/text.php:1047
+msgid "interested"
+msgstr "interessado"
 
-#: ../../mod/admin.php:769
-msgid ""
-"This does not include updates prior to 1139, which did not return a status."
-msgstr "Isso não inclue atualizações antes da 1139, as quais não retornavam um status."
+#: ../../include/text.php:1048
+msgid "bitter"
+msgstr "rancoroso"
 
-#: ../../mod/admin.php:770
-msgid "Mark success (if update was manually applied)"
-msgstr "Marcar como bem sucedida (caso tenham sido aplicadas atualizações manuais)"
+#: ../../include/text.php:1049
+msgid "cheerful"
+msgstr "jovial"
 
-#: ../../mod/admin.php:771
-msgid "Attempt to execute this update step automatically"
-msgstr "Tentar executar esse passo da atualização automaticamente"
+#: ../../include/text.php:1050
+msgid "alive"
+msgstr "vivo"
 
-#: ../../mod/admin.php:803
-#, php-format
-msgid ""
-"\n"
-"\t\t\tDear %1$s,\n"
-"\t\t\t\tthe administrator of %2$s has set up an account for you."
-msgstr "\n\t\t\tCaro %1$s,\n\t\t\t\to administrador de %2$s criou uma conta para você."
+#: ../../include/text.php:1051
+msgid "annoyed"
+msgstr "incomodado"
 
-#: ../../mod/admin.php:806
-#, php-format
-msgid ""
-"\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."
-msgstr "\n\t\t\tOs dados de login são os seguintes:\n\n\t\t\tLocal do Site:\t%1$s\n\t\t\tNome de Login:\t\t%2$s\n\t\t\tSenha:\t\t%3$s\n\n\t\t\tVocê pode alterar sua senha na página de \"Configurações\" da sua conta após fazer o login.\n\n\t\t\tPor favor, dedique alguns minutos na página para rever as outras configurações da sua conta.\n\n\t\t\tTalvez você também queira incluir algumas informações básicas adicionais ao seu perfil padrão\n\t\t\t(na página de \"Perfis\") para que outras pessoas possam encontrá-lo com facilidade.\n\n\t\t\tRecomendamos que inclua seu nome completo, adicione uma foto do perfil,\n\t\t\tadicionar algumas \"palavras-chave\" (muito útil para fazer novas amizades) - e\n\t\t\ttalvez em que pais você mora; se você não quiser ser mais específico\n\t\t\tdo que isso.\n\n\t\t\tNós respeitamos plenamente seu direito à privacidade, e nenhum desses itens são necessários.\n\t\t\tSe você é novo por aqui e não conheço ninguém, eles podem ajuda-lo\n\t\t\ta fazer novas e interessantes amizades.\n\n\t\t\tObrigado e bem-vindo a %4$s."
+#: ../../include/text.php:1052
+msgid "anxious"
+msgstr "ansioso"
 
-#: ../../mod/admin.php:838 ../../include/user.php:413
-#, php-format
-msgid "Registration details for %s"
-msgstr "Detalhes do registro de %s"
+#: ../../include/text.php:1053
+msgid "cranky"
+msgstr "excêntrico"
 
-#: ../../mod/admin.php:850
-#, php-format
-msgid "%s user blocked/unblocked"
-msgid_plural "%s users blocked/unblocked"
-msgstr[0] "%s usuário bloqueado/desbloqueado"
-msgstr[1] "%s usuários bloqueados/desbloqueados"
+#: ../../include/text.php:1054
+msgid "disturbed"
+msgstr "perturbado"
 
-#: ../../mod/admin.php:857
-#, php-format
-msgid "%s user deleted"
-msgid_plural "%s users deleted"
-msgstr[0] "%s usuário excluído"
-msgstr[1] "%s usuários excluídos"
+#: ../../include/text.php:1055
+msgid "frustrated"
+msgstr "frustrado"
 
-#: ../../mod/admin.php:896
-#, php-format
-msgid "User '%s' deleted"
-msgstr "O usuário '%s' foi excluído"
+#: ../../include/text.php:1056
+msgid "motivated"
+msgstr "motivado"
 
-#: ../../mod/admin.php:904
-#, php-format
-msgid "User '%s' unblocked"
-msgstr "O usuário '%s' foi desbloqueado"
+#: ../../include/text.php:1057
+msgid "relaxed"
+msgstr "relaxado"
 
-#: ../../mod/admin.php:904
-#, php-format
-msgid "User '%s' blocked"
-msgstr "O usuário '%s' foi bloqueado"
+#: ../../include/text.php:1058
+msgid "surprised"
+msgstr "surpreso"
 
-#: ../../mod/admin.php:999
-msgid "Add User"
-msgstr "Adicionar usuário"
+#: ../../include/text.php:1228
+msgid "Monday"
+msgstr "Segunda"
 
-#: ../../mod/admin.php:1000
-msgid "select all"
-msgstr "selecionar todos"
+#: ../../include/text.php:1228
+msgid "Tuesday"
+msgstr "Terça"
 
-#: ../../mod/admin.php:1001
-msgid "User registrations waiting for confirm"
-msgstr "Registros de usuário aguardando confirmação"
+#: ../../include/text.php:1228
+msgid "Wednesday"
+msgstr "Quarta"
 
-#: ../../mod/admin.php:1002
-msgid "User waiting for permanent deletion"
-msgstr "Usuário aguardando por fim permanente da conta."
+#: ../../include/text.php:1228
+msgid "Thursday"
+msgstr "Quinta"
 
-#: ../../mod/admin.php:1003
-msgid "Request date"
-msgstr "Solicitar data"
+#: ../../include/text.php:1228
+msgid "Friday"
+msgstr "Sexta"
 
-#: ../../mod/admin.php:1003 ../../mod/admin.php:1015 ../../mod/admin.php:1016
-#: ../../mod/admin.php:1031 ../../include/contact_selectors.php:79
-#: ../../include/contact_selectors.php:86
-msgid "Email"
-msgstr "E-mail"
+#: ../../include/text.php:1228
+msgid "Saturday"
+msgstr "Sábado"
 
-#: ../../mod/admin.php:1004
-msgid "No registrations."
-msgstr "Nenhum registro."
+#: ../../include/text.php:1228
+msgid "Sunday"
+msgstr "Domingo"
 
-#: ../../mod/admin.php:1006
-msgid "Deny"
-msgstr "Negar"
+#: ../../include/text.php:1232
+msgid "January"
+msgstr "Janeiro"
 
-#: ../../mod/admin.php:1010
-msgid "Site admin"
-msgstr "Administração do site"
+#: ../../include/text.php:1232
+msgid "February"
+msgstr "Fevereiro"
 
-#: ../../mod/admin.php:1011
-msgid "Account expired"
-msgstr "Conta expirou"
+#: ../../include/text.php:1232
+msgid "March"
+msgstr "Março"
 
-#: ../../mod/admin.php:1014
-msgid "New User"
-msgstr "Novo usuário"
+#: ../../include/text.php:1232
+msgid "April"
+msgstr "Abril"
 
-#: ../../mod/admin.php:1015 ../../mod/admin.php:1016
-msgid "Register date"
-msgstr "Data de registro"
+#: ../../include/text.php:1232
+msgid "May"
+msgstr "Maio"
 
-#: ../../mod/admin.php:1015 ../../mod/admin.php:1016
-msgid "Last login"
-msgstr "Última entrada"
+#: ../../include/text.php:1232
+msgid "June"
+msgstr "Junho"
 
-#: ../../mod/admin.php:1015 ../../mod/admin.php:1016
-msgid "Last item"
-msgstr "Último item"
+#: ../../include/text.php:1232
+msgid "July"
+msgstr "Julho"
 
-#: ../../mod/admin.php:1015
-msgid "Deleted since"
-msgstr "Apagado desde"
+#: ../../include/text.php:1232
+msgid "August"
+msgstr "Agosto"
 
-#: ../../mod/admin.php:1016 ../../mod/settings.php:36
-msgid "Account"
-msgstr "Conta"
+#: ../../include/text.php:1232
+msgid "September"
+msgstr "Setembro"
 
-#: ../../mod/admin.php:1018
-msgid ""
-"Selected users will be deleted!\\n\\nEverything these users had posted on "
-"this site will be permanently deleted!\\n\\nAre you sure?"
-msgstr "Os usuários selecionados serão excluídos!\\n\\nTudo o que estes usuários publicaram neste site será excluído permanentemente!\\n\\nDeseja continuar?"
+#: ../../include/text.php:1232
+msgid "October"
+msgstr "Outubro"
 
-#: ../../mod/admin.php:1019
-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 "O usuário {0} será excluído!\\n\\nTudo o que este usuário publicou neste site será permanentemente excluído!\\n\\nDeseja continuar?"
+#: ../../include/text.php:1232
+msgid "November"
+msgstr "Novembro"
 
-#: ../../mod/admin.php:1029
-msgid "Name of the new user."
-msgstr "Nome do novo usuários."
+#: ../../include/text.php:1232
+msgid "December"
+msgstr "Dezembro"
 
-#: ../../mod/admin.php:1030
-msgid "Nickname"
-msgstr "Apelido"
+#: ../../include/text.php:1422 ../../mod/videos.php:301
+msgid "View Video"
+msgstr "Ver Vídeo"
 
-#: ../../mod/admin.php:1030
-msgid "Nickname of the new user."
-msgstr "Apelido para o novo usuário."
+#: ../../include/text.php:1454
+msgid "bytes"
+msgstr "bytes"
 
-#: ../../mod/admin.php:1031
-msgid "Email address of the new user."
-msgstr "Endereço de e-mail do novo usuário."
+#: ../../include/text.php:1478 ../../include/text.php:1490
+msgid "Click to open/close"
+msgstr "Clique para abrir/fechar"
 
-#: ../../mod/admin.php:1064
-#, php-format
-msgid "Plugin %s disabled."
-msgstr "O plugin %s foi desabilitado."
+#: ../../include/text.php:1664 ../../include/text.php:1674
+#: ../../mod/events.php:335
+msgid "link to source"
+msgstr "exibir a origem"
 
-#: ../../mod/admin.php:1068
-#, php-format
-msgid "Plugin %s enabled."
-msgstr "O plugin %s foi habilitado."
+#: ../../include/text.php:1731
+msgid "Select an alternate language"
+msgstr "Selecione um idioma alternativo"
 
-#: ../../mod/admin.php:1078 ../../mod/admin.php:1294
-msgid "Disable"
-msgstr "Desabilitar"
+#: ../../include/text.php:1987
+msgid "activity"
+msgstr "atividade"
 
-#: ../../mod/admin.php:1080 ../../mod/admin.php:1296
-msgid "Enable"
-msgstr "Habilitar"
+#: ../../include/text.php:1989 ../../object/Item.php:389
+#: ../../object/Item.php:402 ../../mod/content.php:605
+msgid "comment"
+msgid_plural "comments"
+msgstr[0] "comentário"
+msgstr[1] "comentários"
 
-#: ../../mod/admin.php:1103 ../../mod/admin.php:1324
-msgid "Toggle"
-msgstr "Alternar"
+#: ../../include/text.php:1990
+msgid "post"
+msgstr "publicação"
 
-#: ../../mod/admin.php:1111 ../../mod/admin.php:1334
-msgid "Author: "
-msgstr "Autor: "
+#: ../../include/text.php:2158
+msgid "Item filed"
+msgstr "O item foi arquivado"
 
-#: ../../mod/admin.php:1112 ../../mod/admin.php:1335
-msgid "Maintainer: "
-msgstr "Mantenedor: "
+#: ../../include/auth.php:38
+msgid "Logged out."
+msgstr "Saiu."
 
-#: ../../mod/admin.php:1254
-msgid "No themes found."
-msgstr "Nenhum tema encontrado"
+#: ../../include/auth.php:112 ../../include/auth.php:175
+#: ../../mod/openid.php:93
+msgid "Login failed."
+msgstr "Não foi possível autenticar."
 
-#: ../../mod/admin.php:1316
-msgid "Screenshot"
-msgstr "Captura de tela"
+#: ../../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 "Foi encontrado um erro ao tentar conectar usando o OpenID que você forneceu. Por favor, verifique se sua ID está escrita corretamente."
 
-#: ../../mod/admin.php:1362
-msgid "[Experimental]"
-msgstr "[Esperimental]"
+#: ../../include/auth.php:128 ../../include/user.php:67
+msgid "The error message was:"
+msgstr "A mensagem de erro foi:"
 
-#: ../../mod/admin.php:1363
-msgid "[Unsupported]"
-msgstr "[Não suportado]"
+#: ../../include/bbcode.php:433 ../../include/bbcode.php:1066
+#: ../../include/bbcode.php:1067
+msgid "Image/photo"
+msgstr "Imagem/foto"
 
-#: ../../mod/admin.php:1390
-msgid "Log settings updated."
-msgstr "As configurações de relatórios foram atualizadas."
+#: ../../include/bbcode.php:531
+#, php-format
+msgid "<a href=\"%1$s\" target=\"_blank\">%2$s</a> %3$s"
+msgstr "<a href=\"%1$s\" target=\"_blank\">%2$s</a> %3$s"
 
-#: ../../mod/admin.php:1446
-msgid "Clear"
-msgstr "Limpar"
+#: ../../include/bbcode.php:565
+#, php-format
+msgid ""
+"<span><a href=\"%s\" target=\"_blank\">%s</a> wrote the following <a "
+"href=\"%s\" target=\"_blank\">post</a>"
+msgstr "<span><a href=\"%s\" target=\"_blank\">%s</a> escreveu a seguinte <a href=\"%s\" target=\"_blank\">publicação</a>"
 
-#: ../../mod/admin.php:1452
-msgid "Enable Debugging"
-msgstr "Habilitar Debugging"
+#: ../../include/bbcode.php:1030 ../../include/bbcode.php:1050
+msgid "$1 wrote:"
+msgstr "$1 escreveu:"
 
-#: ../../mod/admin.php:1453
-msgid "Log file"
-msgstr "Arquivo do relatório"
+#: ../../include/bbcode.php:1075 ../../include/bbcode.php:1076
+msgid "Encrypted content"
+msgstr "Conteúdo criptografado"
 
-#: ../../mod/admin.php:1453
-msgid ""
-"Must be writable by web server. Relative to your Friendica top-level "
-"directory."
-msgstr "O servidor web precisa ter permissão de escrita. Relativa ao diretório raiz do seu Friendica."
+#: ../../include/security.php:22
+msgid "Welcome "
+msgstr "Bem-vindo(a) "
 
-#: ../../mod/admin.php:1454
-msgid "Log level"
-msgstr "Nível do relatório"
+#: ../../include/security.php:23
+msgid "Please upload a profile photo."
+msgstr "Por favor, envie uma foto para o perfil."
 
-#: ../../mod/admin.php:1504
-msgid "Close"
-msgstr "Fechar"
+#: ../../include/security.php:26
+msgid "Welcome back "
+msgstr "Bem-vindo(a) de volta "
 
-#: ../../mod/admin.php:1510
-msgid "FTP Host"
-msgstr "Endereço do FTP"
+#: ../../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 "O token de segurança do formulário não estava correto. Isso provavelmente aconteceu porque o formulário ficou aberto por muito tempo (>3 horas) antes da sua submissão."
 
-#: ../../mod/admin.php:1511
-msgid "FTP Path"
-msgstr "Caminho do FTP"
+#: ../../include/oembed.php:213
+msgid "Embedded content"
+msgstr "Conteúdo incorporado"
 
-#: ../../mod/admin.php:1512
-msgid "FTP User"
-msgstr "Usuário do FTP"
+#: ../../include/oembed.php:222
+msgid "Embedding disabled"
+msgstr "A incorporação está desabilitada"
 
-#: ../../mod/admin.php:1513
-msgid "FTP Password"
-msgstr "Senha do FTP"
+#: ../../include/profile_selectors.php:6
+msgid "Male"
+msgstr "Masculino"
 
-#: ../../mod/network.php:142
-msgid "Search Results For:"
-msgstr "Resultados de Busca Por:"
+#: ../../include/profile_selectors.php:6
+msgid "Female"
+msgstr "Feminino"
 
-#: ../../mod/network.php:185 ../../mod/search.php:21
-msgid "Remove term"
-msgstr "Remover o termo"
+#: ../../include/profile_selectors.php:6
+msgid "Currently Male"
+msgstr "Atualmente masculino"
 
-#: ../../mod/network.php:194 ../../mod/search.php:30
-#: ../../include/features.php:42
-msgid "Saved Searches"
-msgstr "Pesquisas salvas"
+#: ../../include/profile_selectors.php:6
+msgid "Currently Female"
+msgstr "Atualmente feminino"
 
-#: ../../mod/network.php:195 ../../include/group.php:275
-msgid "add"
-msgstr "adicionar"
+#: ../../include/profile_selectors.php:6
+msgid "Mostly Male"
+msgstr "Masculino a maior parte do tempo"
 
-#: ../../mod/network.php:356
-msgid "Commented Order"
-msgstr "Ordem dos comentários"
+#: ../../include/profile_selectors.php:6
+msgid "Mostly Female"
+msgstr "Feminino a maior parte do tempo"
 
-#: ../../mod/network.php:359
-msgid "Sort by Comment Date"
-msgstr "Ordenar pela data do comentário"
+#: ../../include/profile_selectors.php:6
+msgid "Transgender"
+msgstr "Transgênero"
 
-#: ../../mod/network.php:362
-msgid "Posted Order"
-msgstr "Ordem das publicações"
+#: ../../include/profile_selectors.php:6
+msgid "Intersex"
+msgstr "Intersexual"
 
-#: ../../mod/network.php:365
-msgid "Sort by Post Date"
-msgstr "Ordenar pela data de publicação"
+#: ../../include/profile_selectors.php:6
+msgid "Transsexual"
+msgstr "Transexual"
 
-#: ../../mod/network.php:374
-msgid "Posts that mention or involve you"
-msgstr "Publicações que mencionem ou envolvam você"
+#: ../../include/profile_selectors.php:6
+msgid "Hermaphrodite"
+msgstr "Hermafrodita"
 
-#: ../../mod/network.php:380
-msgid "New"
-msgstr "Nova"
+#: ../../include/profile_selectors.php:6
+msgid "Neuter"
+msgstr "Neutro"
 
-#: ../../mod/network.php:383
-msgid "Activity Stream - by date"
-msgstr "Fluxo de atividades - por data"
+#: ../../include/profile_selectors.php:6
+msgid "Non-specific"
+msgstr "Não específico"
 
-#: ../../mod/network.php:389
-msgid "Shared Links"
-msgstr "Links compartilhados"
+#: ../../include/profile_selectors.php:6
+msgid "Other"
+msgstr "Outro"
 
-#: ../../mod/network.php:392
-msgid "Interesting Links"
-msgstr "Links interessantes"
+#: ../../include/profile_selectors.php:6
+msgid "Undecided"
+msgstr "Indeciso"
 
-#: ../../mod/network.php:398
-msgid "Starred"
-msgstr "Destacada"
+#: ../../include/profile_selectors.php:23
+msgid "Males"
+msgstr "Homens"
 
-#: ../../mod/network.php:401
-msgid "Favourite Posts"
-msgstr "Publicações favoritas"
+#: ../../include/profile_selectors.php:23
+msgid "Females"
+msgstr "Mulheres"
 
-#: ../../mod/network.php:463
-#, 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] "Aviso: Este grupo contém %s membro de uma rede insegura."
-msgstr[1] "Aviso: Este grupo contém %s membros de uma rede insegura."
+#: ../../include/profile_selectors.php:23
+msgid "Gay"
+msgstr "Gays"
 
-#: ../../mod/network.php:466
-msgid "Private messages to this group are at risk of public disclosure."
-msgstr "Mensagens privadas para este grupo correm o risco de sofrerem divulgação pública."
+#: ../../include/profile_selectors.php:23
+msgid "Lesbian"
+msgstr "Lésbicas"
 
-#: ../../mod/network.php:520 ../../mod/content.php:119
-msgid "No such group"
-msgstr "Este grupo não existe"
+#: ../../include/profile_selectors.php:23
+msgid "No Preference"
+msgstr "Sem preferência"
 
-#: ../../mod/network.php:537 ../../mod/content.php:130
-msgid "Group is empty"
-msgstr "O grupo está vazio"
+#: ../../include/profile_selectors.php:23
+msgid "Bisexual"
+msgstr "Bissexuais"
 
-#: ../../mod/network.php:544 ../../mod/content.php:134
-msgid "Group: "
-msgstr "Grupo: "
+#: ../../include/profile_selectors.php:23
+msgid "Autosexual"
+msgstr "Autossexuais"
 
-#: ../../mod/network.php:554
-msgid "Contact: "
-msgstr "Contato: "
+#: ../../include/profile_selectors.php:23
+msgid "Abstinent"
+msgstr "Abstêmios"
 
-#: ../../mod/network.php:556
-msgid "Private messages to this person are at risk of public disclosure."
-msgstr "Mensagens privadas para esta pessoa correm o risco de sofrerem divulgação pública."
+#: ../../include/profile_selectors.php:23
+msgid "Virgin"
+msgstr "Virgens"
 
-#: ../../mod/network.php:561
-msgid "Invalid contact."
-msgstr "Contato inválido."
+#: ../../include/profile_selectors.php:23
+msgid "Deviant"
+msgstr "Desviantes"
 
-#: ../../mod/allfriends.php:34
-#, php-format
-msgid "Friends of %s"
-msgstr "Amigos de %s"
+#: ../../include/profile_selectors.php:23
+msgid "Fetish"
+msgstr "Fetiches"
 
-#: ../../mod/allfriends.php:40
-msgid "No friends to display."
-msgstr "Nenhum amigo para exibir."
+#: ../../include/profile_selectors.php:23
+msgid "Oodles"
+msgstr "Insaciável"
 
-#: ../../mod/events.php:66
-msgid "Event title and start time are required."
-msgstr "O título do evento e a hora de início são obrigatórios."
+#: ../../include/profile_selectors.php:23
+msgid "Nonsexual"
+msgstr "Não sexual"
 
-#: ../../mod/events.php:291
-msgid "l, F j"
-msgstr "l, F j"
+#: ../../include/profile_selectors.php:42
+msgid "Single"
+msgstr "Solteiro(a)"
 
-#: ../../mod/events.php:313
-msgid "Edit event"
-msgstr "Editar o evento"
+#: ../../include/profile_selectors.php:42
+msgid "Lonely"
+msgstr "Solitário(a)"
 
-#: ../../mod/events.php:335 ../../include/text.php:1647
-#: ../../include/text.php:1657
-msgid "link to source"
-msgstr "exibir a origem"
+#: ../../include/profile_selectors.php:42
+msgid "Available"
+msgstr "Disponível"
 
-#: ../../mod/events.php:370 ../../boot.php:2143 ../../include/nav.php:80
-#: ../../view/theme/diabook/theme.php:127
-msgid "Events"
-msgstr "Eventos"
+#: ../../include/profile_selectors.php:42
+msgid "Unavailable"
+msgstr "Não disponível"
 
-#: ../../mod/events.php:371
-msgid "Create New Event"
-msgstr "Criar um novo evento"
+#: ../../include/profile_selectors.php:42
+msgid "Has crush"
+msgstr "Tem uma paixão"
 
-#: ../../mod/events.php:372
-msgid "Previous"
-msgstr "Anterior"
+#: ../../include/profile_selectors.php:42
+msgid "Infatuated"
+msgstr "Apaixonado"
 
-#: ../../mod/events.php:373 ../../mod/install.php:207
-msgid "Next"
-msgstr "Próximo"
+#: ../../include/profile_selectors.php:42
+msgid "Dating"
+msgstr "Saindo com alguém"
 
-#: ../../mod/events.php:446
-msgid "hour:minute"
-msgstr "hora:minuto"
+#: ../../include/profile_selectors.php:42
+msgid "Unfaithful"
+msgstr "Infiel"
 
-#: ../../mod/events.php:456
-msgid "Event details"
-msgstr "Detalhes do evento"
+#: ../../include/profile_selectors.php:42
+msgid "Sex Addict"
+msgstr "Viciado(a) em sexo"
 
-#: ../../mod/events.php:457
-#, php-format
-msgid "Format is %s %s. Starting date and Title are required."
-msgstr "O formato é %s %s. O título e a data de início são obrigatórios."
+#: ../../include/profile_selectors.php:42 ../../include/user.php:289
+#: ../../include/user.php:293
+msgid "Friends"
+msgstr "Amigos"
 
-#: ../../mod/events.php:459
-msgid "Event Starts:"
-msgstr "Início do evento:"
+#: ../../include/profile_selectors.php:42
+msgid "Friends/Benefits"
+msgstr "Amigos/Benefícios"
 
-#: ../../mod/events.php:459 ../../mod/events.php:473
-msgid "Required"
-msgstr "Obrigatório"
+#: ../../include/profile_selectors.php:42
+msgid "Casual"
+msgstr "Casual"
 
-#: ../../mod/events.php:462
-msgid "Finish date/time is not known or not relevant"
-msgstr "A data/hora de término não é conhecida ou não é relevante"
+#: ../../include/profile_selectors.php:42
+msgid "Engaged"
+msgstr "Envolvido(a)"
 
-#: ../../mod/events.php:464
-msgid "Event Finishes:"
-msgstr "Término do evento:"
+#: ../../include/profile_selectors.php:42
+msgid "Married"
+msgstr "Casado(a)"
 
-#: ../../mod/events.php:467
-msgid "Adjust for viewer timezone"
-msgstr "Ajustar para o fuso horário do visualizador"
+#: ../../include/profile_selectors.php:42
+msgid "Imaginarily married"
+msgstr "Casado imaginariamente"
 
-#: ../../mod/events.php:469
-msgid "Description:"
-msgstr "Descrição:"
+#: ../../include/profile_selectors.php:42
+msgid "Partners"
+msgstr "Parceiros"
 
-#: ../../mod/events.php:471 ../../mod/directory.php:136 ../../boot.php:1648
-#: ../../include/bb2diaspora.php:170 ../../include/event.php:40
-msgid "Location:"
-msgstr "Localização:"
+#: ../../include/profile_selectors.php:42
+msgid "Cohabiting"
+msgstr "Coabitando"
 
-#: ../../mod/events.php:473
-msgid "Title:"
-msgstr "Título:"
+#: ../../include/profile_selectors.php:42
+msgid "Common law"
+msgstr "Direito comum"
 
-#: ../../mod/events.php:475
-msgid "Share this event"
-msgstr "Compartilhar este evento"
+#: ../../include/profile_selectors.php:42
+msgid "Happy"
+msgstr "Feliz"
 
-#: ../../mod/content.php:437 ../../mod/content.php:740
-#: ../../mod/photos.php:1653 ../../object/Item.php:129
-#: ../../include/conversation.php:613
-msgid "Select"
-msgstr "Selecionar"
+#: ../../include/profile_selectors.php:42
+msgid "Not looking"
+msgstr "Não estou procurando"
 
-#: ../../mod/content.php:471 ../../mod/content.php:852
-#: ../../mod/content.php:853 ../../object/Item.php:326
-#: ../../object/Item.php:327 ../../include/conversation.php:654
-#, php-format
-msgid "View %s's profile @ %s"
-msgstr "Ver o perfil de %s @ %s"
+#: ../../include/profile_selectors.php:42
+msgid "Swinger"
+msgstr "Swinger"
 
-#: ../../mod/content.php:481 ../../mod/content.php:864
-#: ../../object/Item.php:340 ../../include/conversation.php:674
+#: ../../include/profile_selectors.php:42
+msgid "Betrayed"
+msgstr "Traído(a)"
+
+#: ../../include/profile_selectors.php:42
+msgid "Separated"
+msgstr "Separado(a)"
+
+#: ../../include/profile_selectors.php:42
+msgid "Unstable"
+msgstr "Instável"
+
+#: ../../include/profile_selectors.php:42
+msgid "Divorced"
+msgstr "Divorciado(a)"
+
+#: ../../include/profile_selectors.php:42
+msgid "Imaginarily divorced"
+msgstr "Divorciado imaginariamente"
+
+#: ../../include/profile_selectors.php:42
+msgid "Widowed"
+msgstr "Viúvo(a)"
+
+#: ../../include/profile_selectors.php:42
+msgid "Uncertain"
+msgstr "Incerto(a)"
+
+#: ../../include/profile_selectors.php:42
+msgid "It's complicated"
+msgstr "É complicado"
+
+#: ../../include/profile_selectors.php:42
+msgid "Don't care"
+msgstr "Não importa"
+
+#: ../../include/profile_selectors.php:42
+msgid "Ask me"
+msgstr "Pergunte-me"
+
+#: ../../include/user.php:40
+msgid "An invitation is required."
+msgstr "É necessário um convite."
+
+#: ../../include/user.php:45
+msgid "Invitation could not be verified."
+msgstr "Não foi possível verificar o convite."
+
+#: ../../include/user.php:53
+msgid "Invalid OpenID url"
+msgstr "A URL do OpenID é inválida"
+
+#: ../../include/user.php:74
+msgid "Please enter the required information."
+msgstr "Por favor, forneça a informação solicitada."
+
+#: ../../include/user.php:88
+msgid "Please use a shorter name."
+msgstr "Por favor, use um nome mais curto."
+
+#: ../../include/user.php:90
+msgid "Name too short."
+msgstr "O nome é muito curto."
+
+#: ../../include/user.php:105
+msgid "That doesn't appear to be your full (First Last) name."
+msgstr "Isso não parece ser o seu nome completo (Nome Sobrenome)."
+
+#: ../../include/user.php:110
+msgid "Your email domain is not among those allowed on this site."
+msgstr "O domínio do seu e-mail não está entre os permitidos neste site."
+
+#: ../../include/user.php:113
+msgid "Not a valid email address."
+msgstr "Não é um endereço de e-mail válido."
+
+#: ../../include/user.php:126
+msgid "Cannot use that email."
+msgstr "Não é possível usar esse e-mail."
+
+#: ../../include/user.php:132
+msgid ""
+"Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and "
+"must also begin with a letter."
+msgstr "A sua identificação pode conter somente os caracteres \"a-z\", \"0-9\", \"-\", e \"_\", além disso, deve começar com uma letra."
+
+#: ../../include/user.php:138 ../../include/user.php:236
+msgid "Nickname is already registered. Please choose another."
+msgstr "Esta identificação já foi registrada. Por favor, escolha outra."
+
+#: ../../include/user.php:148
+msgid ""
+"Nickname was once registered here and may not be re-used. Please choose "
+"another."
+msgstr "Essa identificação já foi registrada e não pode ser reutilizada. Por favor, escolha outra."
+
+#: ../../include/user.php:164
+msgid "SERIOUS ERROR: Generation of security keys failed."
+msgstr "ERRO GRAVE: Não foi possível gerar as chaves de segurança."
+
+#: ../../include/user.php:222
+msgid "An error occurred during registration. Please try again."
+msgstr "Ocorreu um erro durante o registro. Por favor, tente novamente."
+
+#: ../../include/user.php:257
+msgid "An error occurred creating your default profile. Please try again."
+msgstr "Ocorreu um erro na criação do seu perfil padrão. Por favor, tente novamente."
+
+#: ../../include/user.php:377
 #, php-format
-msgid "%s from %s"
-msgstr "%s de %s"
+msgid ""
+"\n"
+"\t\tDear %1$s,\n"
+"\t\t\tThank you for registering at %2$s. Your account has been created.\n"
+"\t"
+msgstr "\n\t\tCaro %1$s,\n\t\t\tObrigado por se cadastrar em %2$s. Sua conta foi criada.\n\t"
 
-#: ../../mod/content.php:497 ../../include/conversation.php:690
-msgid "View in context"
-msgstr "Ver no contexto"
+#: ../../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 "\n\t\tOs dados de login são os seguintes:\n\t\t\tLocal do Site:\t%3$s\n\t\t\tNome de Login:\t%1$s\n\t\t\tSenha:\t%5$s\n\n\t\tVocê pode alterar sua senha na página de \"Configurações\" da sua conta após fazer o login\n\n\t\tPor favor, dedique alguns minutos na página para rever as outras configurações da sua conta.\n\n\t\tTalvez você também queira incluir algumas informações básicas adicionais ao seu perfil padrão\n\t\t(na página de \"Perfis\") para que outras pessoas possam encontrá-lo com facilidade.\n\n\t\tRecomendamos que inclua seu nome completo, adicione uma foto do perfil,\n\t\tadicionar algumas \"palavras-chave\" (muito útil para fazer novas amizades) - e\n\t\ttalvez em que pais você mora; se você não quiser ser mais específico \n\t\tdo que isso.\n\n\t\tNós respeitamos plenamente seu direito à privacidade, e nenhum desses itens são necessários.\n\t\tSe você é novo por aqui e não conheço ninguém, eles podem ajuda-lo a fazer novas e interessantes amizades.\n\n\n\t\tObrigado e bem-vindo a %2$s."
 
-#: ../../mod/content.php:603 ../../object/Item.php:387
+#: ../../include/user.php:413 ../../mod/admin.php:838
 #, php-format
-msgid "%d comment"
-msgid_plural "%d comments"
-msgstr[0] "%d comentário"
-msgstr[1] "%d comentários"
+msgid "Registration details for %s"
+msgstr "Detalhes do registro de %s"
 
-#: ../../mod/content.php:605 ../../object/Item.php:389
-#: ../../object/Item.php:402 ../../include/text.php:1972
-msgid "comment"
-msgid_plural "comments"
-msgstr[0] "comentário"
-msgstr[1] "comentários"
+#: ../../include/acl_selectors.php:333
+msgid "Visible to everybody"
+msgstr "Visível para todos"
 
-#: ../../mod/content.php:606 ../../boot.php:751 ../../object/Item.php:390
-#: ../../include/contact_widgets.php:205
-msgid "show more"
-msgstr "exibir mais"
+#: ../../object/Item.php:94
+msgid "This entry was edited"
+msgstr "Essa entrada foi editada"
 
-#: ../../mod/content.php:620 ../../mod/photos.php:1359
-#: ../../object/Item.php:116
+#: ../../object/Item.php:116 ../../mod/photos.php:1359
+#: ../../mod/content.php:620
 msgid "Private Message"
 msgstr "Mensagem privada"
 
-#: ../../mod/content.php:684 ../../mod/photos.php:1542
-#: ../../object/Item.php:231
+#: ../../object/Item.php:120 ../../mod/settings.php:681
+#: ../../mod/content.php:728
+msgid "Edit"
+msgstr "Editar"
+
+#: ../../object/Item.php:133 ../../mod/content.php:763
+msgid "save to folder"
+msgstr "salvar na pasta"
+
+#: ../../object/Item.php:195 ../../mod/content.php:753
+msgid "add star"
+msgstr "destacar"
+
+#: ../../object/Item.php:196 ../../mod/content.php:754
+msgid "remove star"
+msgstr "remover o destaque"
+
+#: ../../object/Item.php:197 ../../mod/content.php:755
+msgid "toggle star status"
+msgstr "ativa/desativa o destaque"
+
+#: ../../object/Item.php:200 ../../mod/content.php:758
+msgid "starred"
+msgstr "marcado com estrela"
+
+#: ../../object/Item.php:208
+msgid "ignore thread"
+msgstr "ignorar tópico"
+
+#: ../../object/Item.php:209
+msgid "unignore thread"
+msgstr "deixar de ignorar tópico"
+
+#: ../../object/Item.php:210
+msgid "toggle ignore status"
+msgstr "alternar status ignorar"
+
+#: ../../object/Item.php:213
+msgid "ignored"
+msgstr "Ignorado"
+
+#: ../../object/Item.php:220 ../../mod/content.php:759
+msgid "add tag"
+msgstr "adicionar etiqueta"
+
+#: ../../object/Item.php:231 ../../mod/photos.php:1542
+#: ../../mod/content.php:684
 msgid "I like this (toggle)"
 msgstr "Eu gostei disso (alternar)"
 
-#: ../../mod/content.php:684 ../../object/Item.php:231
+#: ../../object/Item.php:231 ../../mod/content.php:684
 msgid "like"
 msgstr "gostei"
 
-#: ../../mod/content.php:685 ../../mod/photos.php:1543
-#: ../../object/Item.php:232
+#: ../../object/Item.php:232 ../../mod/photos.php:1543
+#: ../../mod/content.php:685
 msgid "I don't like this (toggle)"
 msgstr "Eu não gostei disso (alternar)"
 
-#: ../../mod/content.php:685 ../../object/Item.php:232
+#: ../../object/Item.php:232 ../../mod/content.php:685
 msgid "dislike"
 msgstr "desgostar"
 
-#: ../../mod/content.php:687 ../../object/Item.php:234
+#: ../../object/Item.php:234 ../../mod/content.php:687
 msgid "Share this"
 msgstr "Compartilhar isso"
 
-#: ../../mod/content.php:687 ../../object/Item.php:234
+#: ../../object/Item.php:234 ../../mod/content.php:687
 msgid "share"
 msgstr "compartilhar"
 
-#: ../../mod/content.php:707 ../../mod/photos.php:1562
+#: ../../object/Item.php:328 ../../mod/content.php:854
+msgid "to"
+msgstr "para"
+
+#: ../../object/Item.php:329
+msgid "via"
+msgstr "via"
+
+#: ../../object/Item.php:330 ../../mod/content.php:855
+msgid "Wall-to-Wall"
+msgstr "Mural-para-mural"
+
+#: ../../object/Item.php:331 ../../mod/content.php:856
+msgid "via Wall-To-Wall:"
+msgstr "via Mural-para-mural"
+
+#: ../../object/Item.php:387 ../../mod/content.php:603
+#, php-format
+msgid "%d comment"
+msgid_plural "%d comments"
+msgstr[0] "%d comentário"
+msgstr[1] "%d comentários"
+
+#: ../../object/Item.php:675 ../../mod/photos.php:1562
 #: ../../mod/photos.php:1606 ../../mod/photos.php:1694
-#: ../../object/Item.php:675
+#: ../../mod/content.php:707
 msgid "This is you"
 msgstr "Este(a) é você"
 
-#: ../../mod/content.php:709 ../../mod/photos.php:1564
-#: ../../mod/photos.php:1608 ../../mod/photos.php:1696 ../../boot.php:750
-#: ../../object/Item.php:361 ../../object/Item.php:677
-msgid "Comment"
-msgstr "Comentar"
-
-#: ../../mod/content.php:711 ../../object/Item.php:679
+#: ../../object/Item.php:679 ../../mod/content.php:711
 msgid "Bold"
 msgstr "Negrito"
 
-#: ../../mod/content.php:712 ../../object/Item.php:680
+#: ../../object/Item.php:680 ../../mod/content.php:712
 msgid "Italic"
 msgstr "Itálico"
 
-#: ../../mod/content.php:713 ../../object/Item.php:681
+#: ../../object/Item.php:681 ../../mod/content.php:713
 msgid "Underline"
 msgstr "Sublinhado"
 
-#: ../../mod/content.php:714 ../../object/Item.php:682
+#: ../../object/Item.php:682 ../../mod/content.php:714
 msgid "Quote"
 msgstr "Citação"
 
-#: ../../mod/content.php:715 ../../object/Item.php:683
+#: ../../object/Item.php:683 ../../mod/content.php:715
 msgid "Code"
 msgstr "Código"
 
-#: ../../mod/content.php:716 ../../object/Item.php:684
+#: ../../object/Item.php:684 ../../mod/content.php:716
 msgid "Image"
 msgstr "Imagem"
 
-#: ../../mod/content.php:717 ../../object/Item.php:685
+#: ../../object/Item.php:685 ../../mod/content.php:717
 msgid "Link"
 msgstr "Link"
 
-#: ../../mod/content.php:718 ../../object/Item.php:686
+#: ../../object/Item.php:686 ../../mod/content.php:718
 msgid "Video"
 msgstr "Vídeo"
 
-#: ../../mod/content.php:719 ../../mod/editpost.php:145
-#: ../../mod/photos.php:1566 ../../mod/photos.php:1610
-#: ../../mod/photos.php:1698 ../../object/Item.php:687
-#: ../../include/conversation.php:1126
-msgid "Preview"
-msgstr "Pré-visualização"
+#: ../../mod/attach.php:8
+msgid "Item not available."
+msgstr "O item não está disponível."
 
-#: ../../mod/content.php:728 ../../mod/settings.php:676
-#: ../../object/Item.php:120
-msgid "Edit"
-msgstr "Editar"
+#: ../../mod/attach.php:20
+msgid "Item was not found."
+msgstr "O item não foi encontrado."
 
-#: ../../mod/content.php:753 ../../object/Item.php:195
-msgid "add star"
-msgstr "destacar"
+#: ../../mod/wallmessage.php:42 ../../mod/wallmessage.php:112
+#, php-format
+msgid "Number of daily wall messages for %s exceeded. Message failed."
+msgstr "O número diário de mensagens do mural de %s foi excedido. Não foi possível enviar a mensagem."
 
-#: ../../mod/content.php:754 ../../object/Item.php:196
-msgid "remove star"
-msgstr "remover o destaque"
+#: ../../mod/wallmessage.php:56 ../../mod/message.php:63
+msgid "No recipient selected."
+msgstr "Não foi selecionado nenhum destinatário."
 
-#: ../../mod/content.php:755 ../../object/Item.php:197
-msgid "toggle star status"
-msgstr "ativa/desativa o destaque"
+#: ../../mod/wallmessage.php:59
+msgid "Unable to check your home location."
+msgstr "Não foi possível verificar a sua localização."
 
-#: ../../mod/content.php:758 ../../object/Item.php:200
-msgid "starred"
-msgstr "marcado com estrela"
-
-#: ../../mod/content.php:759 ../../object/Item.php:220
-msgid "add tag"
-msgstr "adicionar etiqueta"
-
-#: ../../mod/content.php:763 ../../object/Item.php:133
-msgid "save to folder"
-msgstr "salvar na pasta"
+#: ../../mod/wallmessage.php:62 ../../mod/message.php:70
+msgid "Message could not be sent."
+msgstr "Não foi possível enviar a mensagem."
 
-#: ../../mod/content.php:854 ../../object/Item.php:328
-msgid "to"
-msgstr "para"
+#: ../../mod/wallmessage.php:65 ../../mod/message.php:73
+msgid "Message collection failure."
+msgstr "Falha na coleta de mensagens."
 
-#: ../../mod/content.php:855 ../../object/Item.php:330
-msgid "Wall-to-Wall"
-msgstr "Mural-para-mural"
+#: ../../mod/wallmessage.php:68 ../../mod/message.php:76
+msgid "Message sent."
+msgstr "A mensagem foi enviada."
 
-#: ../../mod/content.php:856 ../../object/Item.php:331
-msgid "via Wall-To-Wall:"
-msgstr "via Mural-para-mural"
+#: ../../mod/wallmessage.php:86 ../../mod/wallmessage.php:95
+msgid "No recipient."
+msgstr "Nenhum destinatário."
 
-#: ../../mod/removeme.php:46 ../../mod/removeme.php:49
-msgid "Remove My Account"
-msgstr "Remover minha conta"
+#: ../../mod/wallmessage.php:142 ../../mod/message.php:319
+msgid "Send Private Message"
+msgstr "Enviar mensagem privada"
 
-#: ../../mod/removeme.php:47
+#: ../../mod/wallmessage.php:143
+#, php-format
 msgid ""
-"This will completely remove your account. Once this has been done it is not "
-"recoverable."
-msgstr "Isso removerá completamente a sua conta. Uma vez feito isso, não será mais possível recuperá-la."
-
-#: ../../mod/removeme.php:48
-msgid "Please enter your password for verification:"
-msgstr "Por favor, digite a sua senha para verificação:"
+"If you wish for %s to respond, please check that the privacy settings on "
+"your site allow private mail from unknown senders."
+msgstr "Caso você deseje uma resposta de %s, por favor verifique se as configurações de privacidade em seu site permitem o recebimento de mensagens de remetentes desconhecidos."
 
-#: ../../mod/install.php:117
-msgid "Friendica Communications Server - Setup"
-msgstr "Servidor de Comunicações Friendica - Configuração"
+#: ../../mod/wallmessage.php:144 ../../mod/message.php:320
+#: ../../mod/message.php:553
+msgid "To:"
+msgstr "Para:"
 
-#: ../../mod/install.php:123
-msgid "Could not connect to database."
-msgstr "Não foi possível conectar ao banco de dados."
+#: ../../mod/wallmessage.php:145 ../../mod/message.php:325
+#: ../../mod/message.php:555
+msgid "Subject:"
+msgstr "Assunto:"
 
-#: ../../mod/install.php:127
-msgid "Could not create table."
-msgstr "Não foi possível criar tabela."
+#: ../../mod/wallmessage.php:151 ../../mod/invite.php:134
+#: ../../mod/message.php:329 ../../mod/message.php:558
+msgid "Your message:"
+msgstr "Sua mensagem:"
 
-#: ../../mod/install.php:133
-msgid "Your Friendica site database has been installed."
-msgstr "O banco de dados do seu site Friendica foi instalado."
+#: ../../mod/group.php:29
+msgid "Group created."
+msgstr "O grupo foi criado."
 
-#: ../../mod/install.php:138
-msgid ""
-"You may need to import the file \"database.sql\" manually using phpmyadmin "
-"or mysql."
-msgstr "Você provavelmente precisará importar o arquivo \"database.sql\" manualmente, usando o phpmyadmin ou o mysql."
+#: ../../mod/group.php:35
+msgid "Could not create group."
+msgstr "Não foi possível criar o grupo."
 
-#: ../../mod/install.php:139 ../../mod/install.php:206
-#: ../../mod/install.php:525
-msgid "Please see the file \"INSTALL.txt\"."
-msgstr "Por favor, dê uma olhada no arquivo \"INSTALL.TXT\"."
+#: ../../mod/group.php:47 ../../mod/group.php:140
+msgid "Group not found."
+msgstr "O grupo não foi encontrado."
 
-#: ../../mod/install.php:203
-msgid "System check"
-msgstr "Checagem do sistema"
+#: ../../mod/group.php:60
+msgid "Group name changed."
+msgstr "O nome do grupo foi alterado."
 
-#: ../../mod/install.php:208
-msgid "Check again"
-msgstr "Checar novamente"
+#: ../../mod/group.php:87
+msgid "Save Group"
+msgstr "Salvar o grupo"
 
-#: ../../mod/install.php:227
-msgid "Database connection"
-msgstr "Conexão de banco de dados"
+#: ../../mod/group.php:93
+msgid "Create a group of contacts/friends."
+msgstr "Criar um grupo de contatos/amigos."
 
-#: ../../mod/install.php:228
-msgid ""
-"In order to install Friendica we need to know how to connect to your "
-"database."
-msgstr "À fim de instalar o Friendica, você precisa saber como se conectar ao seu banco de dados."
+#: ../../mod/group.php:94 ../../mod/group.php:180
+msgid "Group Name: "
+msgstr "Nome do grupo: "
 
-#: ../../mod/install.php:229
-msgid ""
-"Please contact your hosting provider or site administrator if you have "
-"questions about these settings."
-msgstr "Por favor, entre em contato com a sua hospedagem ou com o administrador do site caso você tenha alguma dúvida em relação a essas configurações."
+#: ../../mod/group.php:113
+msgid "Group removed."
+msgstr "O grupo foi removido."
 
-#: ../../mod/install.php:230
-msgid ""
-"The database you specify below should already exist. If it does not, please "
-"create it before continuing."
-msgstr "O banco de dados que você especificou abaixo já deve existir. Caso contrário, por favor crie-o antes de continuar."
+#: ../../mod/group.php:115
+msgid "Unable to remove group."
+msgstr "Não foi possível remover o grupo."
 
-#: ../../mod/install.php:234
-msgid "Database Server Name"
-msgstr "Nome do servidor de banco de dados"
+#: ../../mod/group.php:179
+msgid "Group Editor"
+msgstr "Editor de grupo"
 
-#: ../../mod/install.php:235
-msgid "Database Login Name"
-msgstr "Nome do usuário do banco de dados"
+#: ../../mod/group.php:192
+msgid "Members"
+msgstr "Membros"
 
-#: ../../mod/install.php:236
-msgid "Database Login Password"
-msgstr "Senha do usuário do banco de dados"
+#: ../../mod/group.php:194 ../../mod/contacts.php:586
+msgid "All Contacts"
+msgstr "Todos os contatos"
 
-#: ../../mod/install.php:237
-msgid "Database Name"
-msgstr "Nome do banco de dados"
+#: ../../mod/group.php:224 ../../mod/profperm.php:105
+msgid "Click on a contact to add or remove."
+msgstr "Clique em um contato para adicionar ou remover."
 
-#: ../../mod/install.php:238 ../../mod/install.php:277
-msgid "Site administrator email address"
-msgstr "Endereço de email do administrador do site"
+#: ../../mod/delegate.php:101
+msgid "No potential page delegates located."
+msgstr "Nenhuma página delegada potencial localizada."
 
-#: ../../mod/install.php:238 ../../mod/install.php:277
+#: ../../mod/delegate.php:132
 msgid ""
-"Your account email address must match this in order to use the web admin "
-"panel."
-msgstr "O endereço de email da sua conta deve ser igual a este para que você possa utilizar o painel de administração web."
+"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 "Delegados podem administrar todos os aspectos dessa página/conta exceto por configurações básicas da conta.\nFavor não delegar sua conta pessoal para ninguém que você não confie inteiramente."
 
-#: ../../mod/install.php:242 ../../mod/install.php:280
-msgid "Please select a default timezone for your website"
-msgstr "Por favor, selecione o fuso horário padrão para o seu site"
+#: ../../mod/delegate.php:133
+msgid "Existing Page Managers"
+msgstr "Administradores de Páginas Existentes"
 
-#: ../../mod/install.php:267
-msgid "Site settings"
-msgstr "Configurações do site"
+#: ../../mod/delegate.php:135
+msgid "Existing Page Delegates"
+msgstr "Delegados de Páginas Existentes"
 
-#: ../../mod/install.php:321
-msgid "Could not find a command line version of PHP in the web server PATH."
-msgstr "Não foi possível encontrar uma versão de linha de comando do PHP nos caminhos do seu servidor web."
+#: ../../mod/delegate.php:137
+msgid "Potential Delegates"
+msgstr "Delegados Potenciais"
 
-#: ../../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 <a "
-"href='http://friendica.com/node/27'>'Activating scheduled tasks'</a>"
-msgstr "Caso você não tenha uma versão de linha de comando do PHP instalado no seu servidor, você não será capaz de executar a captação em segundo plano. Dê uma olhada em <a href='http://friendica.com/node/27'>'Activating scheduled tasks'</a>"
+#: ../../mod/delegate.php:139 ../../mod/tagrm.php:93
+msgid "Remove"
+msgstr "Remover"
 
-#: ../../mod/install.php:326
-msgid "PHP executable path"
-msgstr "Caminho para o executável do PhP"
+#: ../../mod/delegate.php:140
+msgid "Add"
+msgstr "Adicionar"
 
-#: ../../mod/install.php:326
-msgid ""
-"Enter full path to php executable. You can leave this blank to continue the "
-"installation."
-msgstr "Digite o caminho completo do executável PHP. Você pode deixar isso em branco para continuar com a instalação."
+#: ../../mod/delegate.php:141
+msgid "No entries."
+msgstr "Sem entradas."
 
-#: ../../mod/install.php:331
-msgid "Command line PHP"
-msgstr "PHP em linha de comando"
+#: ../../mod/notifications.php:26
+msgid "Invalid request identifier."
+msgstr "Identificador de solicitação inválido"
 
-#: ../../mod/install.php:340
-msgid "PHP executable is not the php cli binary (could be cgi-fgci version)"
-msgstr "O executável do PHP não é o binário do php cli (could be cgi-fcgi version)"
+#: ../../mod/notifications.php:35 ../../mod/notifications.php:165
+#: ../../mod/notifications.php:215
+msgid "Discard"
+msgstr "Descartar"
 
-#: ../../mod/install.php:341
-msgid "Found PHP version: "
-msgstr "Encontrado PHP versão:"
+#: ../../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 "Ignorar"
 
-#: ../../mod/install.php:343
-msgid "PHP cli binary"
-msgstr "Binário cli do PHP"
+#: ../../mod/notifications.php:78
+msgid "System"
+msgstr "Sistema"
 
-#: ../../mod/install.php:354
-msgid ""
-"The command line version of PHP on your system does not have "
-"\"register_argc_argv\" enabled."
-msgstr "\"register_argc_argv\" não está habilitado na versão de linha de comando do PHP no seu sistema."
+#: ../../mod/notifications.php:88 ../../mod/network.php:371
+msgid "Personal"
+msgstr "Pessoal"
 
-#: ../../mod/install.php:355
-msgid "This is required for message delivery to work."
-msgstr "Isto é necessário para o funcionamento do envio de mensagens."
+#: ../../mod/notifications.php:122
+msgid "Show Ignored Requests"
+msgstr "Exibir solicitações ignoradas"
 
-#: ../../mod/install.php:357
-msgid "PHP register_argc_argv"
-msgstr "PHP register_argc_argv"
+#: ../../mod/notifications.php:122
+msgid "Hide Ignored Requests"
+msgstr "Ocultar solicitações ignoradas"
 
-#: ../../mod/install.php:378
-msgid ""
-"Error: the \"openssl_pkey_new\" function on this system is not able to "
-"generate encryption keys"
-msgstr "Erro: a função \"openssl_pkey_new\" no seu sistema não é capaz de gerar as chaves de criptografia"
+#: ../../mod/notifications.php:149 ../../mod/notifications.php:199
+msgid "Notification type: "
+msgstr "Tipo de notificação:"
 
-#: ../../mod/install.php:379
-msgid ""
-"If running under Windows, please see "
-"\"http://www.php.net/manual/en/openssl.installation.php\"."
-msgstr "Se estiver usando o Windows, por favor dê uma olhada em \"http://www.php.net/manual/en/openssl.installation.php\"."
+#: ../../mod/notifications.php:150
+msgid "Friend Suggestion"
+msgstr "Sugestão de amigo"
 
-#: ../../mod/install.php:381
-msgid "Generate encryption keys"
-msgstr "Gerar chaves de encriptação"
+#: ../../mod/notifications.php:152
+#, php-format
+msgid "suggested by %s"
+msgstr "sugerido por %s"
 
-#: ../../mod/install.php:388
-msgid "libCurl PHP module"
-msgstr "Módulo PHP libCurl"
+#: ../../mod/notifications.php:157 ../../mod/notifications.php:208
+#: ../../mod/contacts.php:525
+msgid "Hide this contact from others"
+msgstr "Ocultar este contato dos outros"
 
-#: ../../mod/install.php:389
-msgid "GD graphics PHP module"
-msgstr "Módulo PHP GD graphics"
+#: ../../mod/notifications.php:158 ../../mod/notifications.php:209
+msgid "Post a new friend activity"
+msgstr "Publicar a adição de amigo"
 
-#: ../../mod/install.php:390
-msgid "OpenSSL PHP module"
-msgstr "Módulo PHP OpenSSL"
+#: ../../mod/notifications.php:158 ../../mod/notifications.php:209
+msgid "if applicable"
+msgstr "se aplicável"
 
-#: ../../mod/install.php:391
-msgid "mysqli PHP module"
-msgstr "Módulo PHP mysqli"
+#: ../../mod/notifications.php:161 ../../mod/notifications.php:212
+#: ../../mod/admin.php:1005
+msgid "Approve"
+msgstr "Aprovar"
 
-#: ../../mod/install.php:392
-msgid "mb_string PHP module"
-msgstr "Módulo PHP mb_string "
+#: ../../mod/notifications.php:181
+msgid "Claims to be known to you: "
+msgstr "Alega ser conhecido por você: "
 
-#: ../../mod/install.php:397 ../../mod/install.php:399
-msgid "Apache mod_rewrite module"
-msgstr "Módulo mod_rewrite do Apache"
+#: ../../mod/notifications.php:181
+msgid "yes"
+msgstr "sim"
 
-#: ../../mod/install.php:397
-msgid ""
-"Error: Apache webserver mod-rewrite module is required but not installed."
-msgstr "Erro: o módulo mod-rewrite do Apache é necessário, mas não está instalado."
+#: ../../mod/notifications.php:181
+msgid "no"
+msgstr "não"
 
-#: ../../mod/install.php:405
-msgid "Error: libCURL PHP module required but not installed."
-msgstr "Erro: o módulo libCURL do PHP é necessário, mas não está instalado."
+#: ../../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 "Sua conexão deve ser bidirecional ou não? \"Amigo\" implica que você permite  ler e  se inscreve nos  textos dele. \"Fan / admirador\" significa que você permite  ler, mas você não quer ler os textos dele. Aprovar como:"
 
-#: ../../mod/install.php:409
+#: ../../mod/notifications.php:185
 msgid ""
-"Error: GD graphics PHP module with JPEG support required but not installed."
-msgstr "Erro: o módulo gráfico GD, com suporte a JPEG, do PHP é necessário, mas não está instalado."
+"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 "Sua conexão deve ser bidirecional ou não? \"Amigo\" implica que você permite a leitura e assina o textos dele. \"Compartilhador\" significa que você permite a leitura mas você não quer ler os textos dele. Aprova como:"
 
-#: ../../mod/install.php:413
-msgid "Error: openssl PHP module required but not installed."
-msgstr "Erro: o módulo openssl do PHP é necessário, mas não está instalado."
+#: ../../mod/notifications.php:193
+msgid "Friend"
+msgstr "Amigo"
 
-#: ../../mod/install.php:417
-msgid "Error: mysqli PHP module required but not installed."
-msgstr "Erro: o módulo mysqli do PHP é necessário, mas não está instalado."
+#: ../../mod/notifications.php:194
+msgid "Sharer"
+msgstr "Compartilhador"
 
-#: ../../mod/install.php:421
-msgid "Error: mb_string PHP module required but not installed."
-msgstr "Erro: o módulo mb_string PHP é necessário, mas não está instalado."
+#: ../../mod/notifications.php:194
+msgid "Fan/Admirer"
+msgstr "Fã/Admirador"
 
-#: ../../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 "O instalador web precisa criar um arquivo chamado \".htconfig.php\" na pasta raiz da instalação e não está conseguindo."
+#: ../../mod/notifications.php:200
+msgid "Friend/Connect Request"
+msgstr "Solicitação de amizade/conexão"
 
-#: ../../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 "Geralmente isso está relacionado às definições de permissão, uma vez que o servidor web pode não estar conseguindo escrever os arquivos nesta pasta."
+#: ../../mod/notifications.php:200
+msgid "New Follower"
+msgstr "Novo acompanhante"
 
-#: ../../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 "Ao final desse procedimento, será fornecido um texto que deverá ser salvo em um arquivo de nome. htconfig.php, na pasta raiz da instalação do seu Friendica."
+#: ../../mod/notifications.php:221
+msgid "No introductions."
+msgstr "Sem apresentações."
 
-#: ../../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 "Você também pode pular esse procedimento e executar uma instalação manual. Por favor, dê uma olhada no arquivo \"INSTALL.TXT\" para instruções."
+#: ../../mod/notifications.php:262 ../../mod/notifications.php:391
+#: ../../mod/notifications.php:482
+#, php-format
+msgid "%s liked %s's post"
+msgstr "%s gostou da publicação de %s"
 
-#: ../../mod/install.php:444
-msgid ".htconfig.php is writable"
-msgstr ".htconfig.php tem permissão de escrita"
+#: ../../mod/notifications.php:272 ../../mod/notifications.php:401
+#: ../../mod/notifications.php:492
+#, php-format
+msgid "%s disliked %s's post"
+msgstr "%s desgostou da publicação de %s"
 
-#: ../../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 usa o engine de template Smarty3 para renderizar suas web views. Smarty3 compila templates para PHP para acelerar a renderização."
+#: ../../mod/notifications.php:287 ../../mod/notifications.php:416
+#: ../../mod/notifications.php:507
+#, php-format
+msgid "%s is now friends with %s"
+msgstr "%s agora é amigo de %s"
 
-#: ../../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 "Para guardar os templates compilados, o servidor web necessita de permissão de escrita no diretório view/smarty3/ no diretório raíz do Friendica."
+#: ../../mod/notifications.php:294 ../../mod/notifications.php:423
+#, php-format
+msgid "%s created a new post"
+msgstr "%s criou uma nova publicação"
 
-#: ../../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 "Favor se certificar que o usuário sob o qual o servidor web roda (ex: www-data) tenha permissão de escrita nesse diretório."
+#: ../../mod/notifications.php:295 ../../mod/notifications.php:424
+#: ../../mod/notifications.php:517
+#, php-format
+msgid "%s commented on %s's post"
+msgstr "%s comentou uma publicação de %s"
 
-#: ../../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 "Nota: como uma medida de segurança, você deve fornecer ao servidor web permissão de escrita em view/smarty3/ somente--não aos arquivos de template (.tpl) que ele contém."
+#: ../../mod/notifications.php:310
+msgid "No more network notifications."
+msgstr "Nenhuma notificação de rede."
 
-#: ../../mod/install.php:460
-msgid "view/smarty3 is writable"
-msgstr "view/smarty3 tem escrita permitida"
+#: ../../mod/notifications.php:314
+msgid "Network Notifications"
+msgstr "Notificações de rede"
 
-#: ../../mod/install.php:472
-msgid ""
-"Url rewrite in .htaccess is not working. Check your server configuration."
-msgstr "A reescrita de URLs definida no .htaccess não está funcionando. Por favor, verifique as configurações do seu servidor."
+#: ../../mod/notifications.php:340 ../../mod/notify.php:75
+msgid "No more system notifications."
+msgstr "Não fazer notificações de sistema."
 
-#: ../../mod/install.php:474
-msgid "Url rewrite is working"
-msgstr "A reescrita de URLs está funcionando"
+#: ../../mod/notifications.php:344 ../../mod/notify.php:79
+msgid "System Notifications"
+msgstr "Notificações de sistema"
 
-#: ../../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 "Não foi possível gravar o arquivo de configuração \".htconfig.php\". Por favor, use o texto incluso para criar um arquivo de configuração na raiz da instalação do Friendika em seu servidor web."
+#: ../../mod/notifications.php:439
+msgid "No more personal notifications."
+msgstr "Nenhuma notificação pessoal."
 
-#: ../../mod/install.php:523
-msgid "<h1>What next</h1>"
-msgstr "<h1>A seguir</h1>"
+#: ../../mod/notifications.php:443
+msgid "Personal Notifications"
+msgstr "Notificações pessoais"
 
-#: ../../mod/install.php:524
-msgid ""
-"IMPORTANT: You will need to [manually] setup a scheduled task for the "
-"poller."
-msgstr "IMPORTANTE: Você deve configurar [manualmente] uma tarefa agendada para o captador."
+#: ../../mod/notifications.php:524
+msgid "No more home notifications."
+msgstr "Não existe mais nenhuma notificação pessoal."
 
-#: ../../mod/wallmessage.php:42 ../../mod/wallmessage.php:112
-#, php-format
-msgid "Number of daily wall messages for %s exceeded. Message failed."
-msgstr "O número diário de mensagens do mural de %s foi excedido. Não foi possível enviar a mensagem."
+#: ../../mod/notifications.php:528
+msgid "Home Notifications"
+msgstr "Notificações pessoais"
 
-#: ../../mod/wallmessage.php:59
-msgid "Unable to check your home location."
-msgstr "Não foi possível verificar a sua localização."
+#: ../../mod/hcard.php:10
+msgid "No profile"
+msgstr "Nenhum perfil"
 
-#: ../../mod/wallmessage.php:86 ../../mod/wallmessage.php:95
-msgid "No recipient."
-msgstr "Nenhum destinatário."
+#: ../../mod/settings.php:34 ../../mod/photos.php:80
+msgid "everybody"
+msgstr "todos"
 
-#: ../../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 "Caso você deseje uma resposta de %s, por favor verifique se as configurações de privacidade em seu site permitem o recebimento de mensagens de remetentes desconhecidos."
+#: ../../mod/settings.php:41 ../../mod/admin.php:1016
+msgid "Account"
+msgstr "Conta"
 
-#: ../../mod/help.php:79
-msgid "Help:"
-msgstr "Ajuda:"
+#: ../../mod/settings.php:46
+msgid "Additional features"
+msgstr "Funcionalidades adicionais"
 
-#: ../../mod/help.php:84 ../../include/nav.php:114
-msgid "Help"
-msgstr "Ajuda"
+#: ../../mod/settings.php:51
+msgid "Display"
+msgstr "Tela"
 
-#: ../../mod/help.php:90 ../../index.php:256
-msgid "Not Found"
-msgstr "Não encontrada"
+#: ../../mod/settings.php:57 ../../mod/settings.php:785
+msgid "Social Networks"
+msgstr "Redes Sociais"
 
-#: ../../mod/help.php:93 ../../index.php:259
-msgid "Page not found."
-msgstr "Página não encontrada."
+#: ../../mod/settings.php:62 ../../mod/admin.php:106 ../../mod/admin.php:1102
+#: ../../mod/admin.php:1155
+msgid "Plugins"
+msgstr "Plugins"
 
-#: ../../mod/dfrn_poll.php:103 ../../mod/dfrn_poll.php:536
-#, php-format
-msgid "%1$s welcomes %2$s"
-msgstr "%1$s dá as boas vinda à %2$s"
+#: ../../mod/settings.php:72
+msgid "Connected apps"
+msgstr "Aplicações conectadas"
 
-#: ../../mod/home.php:35
-#, php-format
-msgid "Welcome to %s"
-msgstr "Bem-vindo(a) a %s"
+#: ../../mod/settings.php:77 ../../mod/uexport.php:85
+msgid "Export personal data"
+msgstr "Exportar dados pessoais"
 
-#: ../../mod/wall_attach.php:75
-msgid "Sorry, maybe your upload is bigger than the PHP configuration allows"
-msgstr "Lamento, talvez seu envio seja maior do que as configurações do PHP permitem"
+#: ../../mod/settings.php:82
+msgid "Remove account"
+msgstr "Remover a conta"
 
-#: ../../mod/wall_attach.php:75
-msgid "Or - did you try to upload an empty file?"
-msgstr "Ou - você tentou enviar um arquivo vazio?"
+#: ../../mod/settings.php:134
+msgid "Missing some important data!"
+msgstr "Está faltando algum dado importante!"
 
-#: ../../mod/wall_attach.php:81
-#, php-format
-msgid "File exceeds size limit of %d"
-msgstr "O arquivo excedeu o tamanho limite de %d"
+#: ../../mod/settings.php:137 ../../mod/settings.php:645
+#: ../../mod/contacts.php:729
+msgid "Update"
+msgstr "Atualizar"
 
-#: ../../mod/wall_attach.php:122 ../../mod/wall_attach.php:133
-msgid "File upload failed."
-msgstr "Não foi possível enviar o arquivo."
+#: ../../mod/settings.php:243
+msgid "Failed to connect with email account using the settings provided."
+msgstr "Não foi possível conectar à conta de e-mail com as configurações fornecidas."
 
-#: ../../mod/match.php:12
-msgid "Profile Match"
-msgstr "Correspondência de perfil"
+#: ../../mod/settings.php:248
+msgid "Email settings updated."
+msgstr "As configurações de e-mail foram atualizadas."
 
-#: ../../mod/match.php:20
-msgid "No keywords to match. Please add keywords to your default profile."
-msgstr "Não foi encontrada nenhuma palavra-chave associada a você. Por favor, adicione algumas ao seu perfil padrão."
-
-#: ../../mod/match.php:57
-msgid "is interested in:"
-msgstr "se interessa por:"
-
-#: ../../mod/match.php:58 ../../mod/suggest.php:90 ../../boot.php:1568
-#: ../../include/contact_widgets.php:10
-msgid "Connect"
-msgstr "Conectar"
-
-#: ../../mod/share.php:44
-msgid "link"
-msgstr "ligação"
-
-#: ../../mod/community.php:23
-msgid "Not available."
-msgstr "Não disponível."
-
-#: ../../mod/community.php:32 ../../include/nav.php:129
-#: ../../include/nav.php:131 ../../view/theme/diabook/theme.php:129
-msgid "Community"
-msgstr "Comunidade"
-
-#: ../../mod/community.php:62 ../../mod/community.php:71
-#: ../../mod/search.php:168 ../../mod/search.php:192
-msgid "No results."
-msgstr "Nenhum resultado."
-
-#: ../../mod/settings.php:29 ../../mod/photos.php:80
-msgid "everybody"
-msgstr "todos"
-
-#: ../../mod/settings.php:41
-msgid "Additional features"
-msgstr "Funcionalidades adicionais"
-
-#: ../../mod/settings.php:46
-msgid "Display"
-msgstr "Tela"
-
-#: ../../mod/settings.php:52 ../../mod/settings.php:780
-msgid "Social Networks"
-msgstr "Redes Sociais"
-
-#: ../../mod/settings.php:62 ../../include/nav.php:170
-msgid "Delegations"
-msgstr "Delegações"
-
-#: ../../mod/settings.php:67
-msgid "Connected apps"
-msgstr "Aplicações conectadas"
-
-#: ../../mod/settings.php:72 ../../mod/uexport.php:85
-msgid "Export personal data"
-msgstr "Exportar dados pessoais"
-
-#: ../../mod/settings.php:77
-msgid "Remove account"
-msgstr "Remover a conta"
-
-#: ../../mod/settings.php:129
-msgid "Missing some important data!"
-msgstr "Está faltando algum dado importante!"
-
-#: ../../mod/settings.php:238
-msgid "Failed to connect with email account using the settings provided."
-msgstr "Não foi possível conectar à conta de e-mail com as configurações fornecidas."
-
-#: ../../mod/settings.php:243
-msgid "Email settings updated."
-msgstr "As configurações de e-mail foram atualizadas."
-
-#: ../../mod/settings.php:258
+#: ../../mod/settings.php:263
 msgid "Features updated"
 msgstr "Funcionalidades atualizadas"
 
-#: ../../mod/settings.php:321
+#: ../../mod/settings.php:326
 msgid "Relocate message has been send to your contacts"
 msgstr "A mensagem de relocação foi enviada para seus contatos"
 
-#: ../../mod/settings.php:335
+#: ../../mod/settings.php:340
 msgid "Passwords do not match. Password unchanged."
 msgstr "As senhas não correspondem. A senha não foi modificada."
 
-#: ../../mod/settings.php:340
+#: ../../mod/settings.php:345
 msgid "Empty passwords are not allowed. Password unchanged."
 msgstr "Não é permitido uma senha em branco. A senha não foi modificada."
 
-#: ../../mod/settings.php:348
+#: ../../mod/settings.php:353
 msgid "Wrong password."
 msgstr "Senha errada."
 
-#: ../../mod/settings.php:359
+#: ../../mod/settings.php:364
 msgid "Password changed."
 msgstr "A senha foi modificada."
 
-#: ../../mod/settings.php:361
+#: ../../mod/settings.php:366
 msgid "Password update failed. Please try again."
 msgstr "Não foi possível atualizar a senha. Por favor, tente novamente."
 
-#: ../../mod/settings.php:428
+#: ../../mod/settings.php:433
 msgid " Please use a shorter name."
 msgstr " Por favor, use um nome mais curto."
 
-#: ../../mod/settings.php:430
+#: ../../mod/settings.php:435
 msgid " Name too short."
 msgstr " O nome é muito curto."
 
-#: ../../mod/settings.php:439
+#: ../../mod/settings.php:444
 msgid "Wrong Password"
 msgstr "Senha Errada"
 
-#: ../../mod/settings.php:444
+#: ../../mod/settings.php:449
 msgid " Not valid email."
 msgstr " Não é um e-mail válido."
 
-#: ../../mod/settings.php:450
+#: ../../mod/settings.php:455
 msgid " Cannot change to that email."
 msgstr " Não foi possível alterar para esse e-mail."
 
-#: ../../mod/settings.php:506
+#: ../../mod/settings.php:511
 msgid "Private forum has no privacy permissions. Using default privacy group."
 msgstr "O fórum privado não possui permissões de privacidade. Utilizando o grupo de privacidade padrão."
 
-#: ../../mod/settings.php:510
+#: ../../mod/settings.php:515
 msgid "Private forum has no privacy permissions and no default privacy group."
 msgstr "O fórum privado não possui permissões de privacidade e nenhum grupo de privacidade padrão."
 
-#: ../../mod/settings.php:540
+#: ../../mod/settings.php:545
 msgid "Settings updated."
 msgstr "As configurações foram atualizadas."
 
-#: ../../mod/settings.php:613 ../../mod/settings.php:639
-#: ../../mod/settings.php:675
+#: ../../mod/settings.php:618 ../../mod/settings.php:644
+#: ../../mod/settings.php:680
 msgid "Add application"
 msgstr "Adicionar aplicação"
 
-#: ../../mod/settings.php:617 ../../mod/settings.php:643
+#: ../../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 "Salvar configurações"
+
+#: ../../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 "Nome"
+
+#: ../../mod/settings.php:622 ../../mod/settings.php:648
 msgid "Consumer Key"
 msgstr "Chave do consumidor"
 
-#: ../../mod/settings.php:618 ../../mod/settings.php:644
+#: ../../mod/settings.php:623 ../../mod/settings.php:649
 msgid "Consumer Secret"
 msgstr "Segredo do consumidor"
 
-#: ../../mod/settings.php:619 ../../mod/settings.php:645
+#: ../../mod/settings.php:624 ../../mod/settings.php:650
 msgid "Redirect"
 msgstr "Redirecionar"
 
-#: ../../mod/settings.php:620 ../../mod/settings.php:646
+#: ../../mod/settings.php:625 ../../mod/settings.php:651
 msgid "Icon url"
 msgstr "URL do ícone"
 
-#: ../../mod/settings.php:631
+#: ../../mod/settings.php:636
 msgid "You can't edit this application."
 msgstr "Você não pode editar esta aplicação."
 
-#: ../../mod/settings.php:674
+#: ../../mod/settings.php:679
 msgid "Connected Apps"
 msgstr "Aplicações conectadas"
 
-#: ../../mod/settings.php:678
+#: ../../mod/settings.php:683
 msgid "Client key starts with"
 msgstr "A chave do cliente inicia com"
 
-#: ../../mod/settings.php:679
+#: ../../mod/settings.php:684
 msgid "No name"
 msgstr "Sem nome"
 
-#: ../../mod/settings.php:680
+#: ../../mod/settings.php:685
 msgid "Remove authorization"
 msgstr "Remover autorização"
 
-#: ../../mod/settings.php:692
+#: ../../mod/settings.php:697
 msgid "No Plugin settings configured"
 msgstr "Não foi definida nenhuma configuração de plugin"
 
-#: ../../mod/settings.php:700
+#: ../../mod/settings.php:705
 msgid "Plugin Settings"
 msgstr "Configurações do plugin"
 
-#: ../../mod/settings.php:714
+#: ../../mod/settings.php:719
 msgid "Off"
 msgstr "Off"
 
-#: ../../mod/settings.php:714
+#: ../../mod/settings.php:719
 msgid "On"
 msgstr "On"
 
-#: ../../mod/settings.php:722
+#: ../../mod/settings.php:727
 msgid "Additional Features"
 msgstr "Funcionalidades Adicionais"
 
-#: ../../mod/settings.php:736 ../../mod/settings.php:737
+#: ../../mod/settings.php:741 ../../mod/settings.php:742
 #, php-format
 msgid "Built-in support for %s connectivity is %s"
 msgstr "O suporte interno para conectividade de %s está %s"
 
-#: ../../mod/settings.php:736 ../../mod/dfrn_request.php:838
-#: ../../include/contact_selectors.php:80
-msgid "Diaspora"
-msgstr "Diaspora"
-
-#: ../../mod/settings.php:736 ../../mod/settings.php:737
+#: ../../mod/settings.php:741 ../../mod/settings.php:742
 msgid "enabled"
 msgstr "habilitado"
 
-#: ../../mod/settings.php:736 ../../mod/settings.php:737
+#: ../../mod/settings.php:741 ../../mod/settings.php:742
 msgid "disabled"
 msgstr "desabilitado"
 
-#: ../../mod/settings.php:737
+#: ../../mod/settings.php:742
 msgid "StatusNet"
 msgstr "StatusNet"
 
-#: ../../mod/settings.php:773
+#: ../../mod/settings.php:778
 msgid "Email access is disabled on this site."
 msgstr "O acesso ao e-mail está desabilitado neste site."
 
-#: ../../mod/settings.php:785
+#: ../../mod/settings.php:790
 msgid "Email/Mailbox Setup"
 msgstr "Configurações do e-mail/caixa postal"
 
-#: ../../mod/settings.php:786
+#: ../../mod/settings.php:791
 msgid ""
 "If you wish to communicate with email contacts using this service "
 "(optional), please specify how to connect to your mailbox."
 msgstr "Caso você deseje se comunicar com contatos de e-mail usando este serviço (opcional), por favor especifique como se conectar à sua caixa postal."
 
-#: ../../mod/settings.php:787
+#: ../../mod/settings.php:792
 msgid "Last successful email check:"
 msgstr "Última checagem bem sucedida de e-mail:"
 
-#: ../../mod/settings.php:789
+#: ../../mod/settings.php:794
 msgid "IMAP server name:"
 msgstr "Nome do servidor IMAP:"
 
-#: ../../mod/settings.php:790
+#: ../../mod/settings.php:795
 msgid "IMAP port:"
 msgstr "Porta do IMAP:"
 
-#: ../../mod/settings.php:791
+#: ../../mod/settings.php:796
 msgid "Security:"
 msgstr "Segurança:"
 
-#: ../../mod/settings.php:791 ../../mod/settings.php:796
+#: ../../mod/settings.php:796 ../../mod/settings.php:801
 msgid "None"
 msgstr "Nenhuma"
 
-#: ../../mod/settings.php:792
+#: ../../mod/settings.php:797
 msgid "Email login name:"
 msgstr "Nome de usuário do e-mail:"
 
-#: ../../mod/settings.php:793
+#: ../../mod/settings.php:798
 msgid "Email password:"
 msgstr "Senha do e-mail:"
 
-#: ../../mod/settings.php:794
+#: ../../mod/settings.php:799
 msgid "Reply-to address:"
 msgstr "Endereço de resposta (Reply-to):"
 
-#: ../../mod/settings.php:795
+#: ../../mod/settings.php:800
 msgid "Send public posts to all email contacts:"
 msgstr "Enviar publicações públicas para todos os contatos de e-mail:"
 
-#: ../../mod/settings.php:796
+#: ../../mod/settings.php:801
 msgid "Action after import:"
 msgstr "Ação após a importação:"
 
-#: ../../mod/settings.php:796
+#: ../../mod/settings.php:801
 msgid "Mark as seen"
 msgstr "Marcar como visto"
 
-#: ../../mod/settings.php:796
+#: ../../mod/settings.php:801
 msgid "Move to folder"
 msgstr "Mover para pasta"
 
-#: ../../mod/settings.php:797
+#: ../../mod/settings.php:802
 msgid "Move to folder:"
 msgstr "Mover para pasta:"
 
-#: ../../mod/settings.php:878
+#: ../../mod/settings.php:833 ../../mod/admin.php:545
+msgid "No special theme for mobile devices"
+msgstr "Nenhum tema especial para dispositivos móveis"
+
+#: ../../mod/settings.php:883
 msgid "Display Settings"
 msgstr "Configurações de exibição"
 
-#: ../../mod/settings.php:884 ../../mod/settings.php:899
+#: ../../mod/settings.php:889 ../../mod/settings.php:904
 msgid "Display Theme:"
 msgstr "Tema do perfil:"
 
-#: ../../mod/settings.php:885
+#: ../../mod/settings.php:890
 msgid "Mobile Theme:"
 msgstr "Tema para dispositivos móveis:"
 
-#: ../../mod/settings.php:886
+#: ../../mod/settings.php:891
 msgid "Update browser every xx seconds"
 msgstr "Atualizar o navegador a cada xx segundos"
 
-#: ../../mod/settings.php:886
+#: ../../mod/settings.php:891
 msgid "Minimum of 10 seconds, no maximum"
 msgstr "Mínimo de 10 segundos, não possui máximo"
 
-#: ../../mod/settings.php:887
+#: ../../mod/settings.php:892
 msgid "Number of items to display per page:"
 msgstr "Número de itens a serem exibidos por página:"
 
-#: ../../mod/settings.php:887 ../../mod/settings.php:888
+#: ../../mod/settings.php:892 ../../mod/settings.php:893
 msgid "Maximum of 100 items"
 msgstr "Máximo de 100 itens"
 
-#: ../../mod/settings.php:888
+#: ../../mod/settings.php:893
 msgid "Number of items to display per page when viewed from mobile device:"
 msgstr "Número de itens a serem exibidos por página quando visualizando em um dispositivo móvel:"
 
-#: ../../mod/settings.php:889
+#: ../../mod/settings.php:894
 msgid "Don't show emoticons"
 msgstr "Não exibir emoticons"
 
-#: ../../mod/settings.php:890
+#: ../../mod/settings.php:895
 msgid "Don't show notices"
 msgstr "Não mostra avisos"
 
-#: ../../mod/settings.php:891
+#: ../../mod/settings.php:896
 msgid "Infinite scroll"
 msgstr "rolamento infinito"
 
-#: ../../mod/settings.php:892
+#: ../../mod/settings.php:897
 msgid "Automatic updates only at the top of the network page"
 msgstr "Atualizações automáticas só na parte superior da página da rede"
 
-#: ../../mod/settings.php:969
+#: ../../mod/settings.php:974
 msgid "User Types"
 msgstr "Tipos de Usuários"
 
-#: ../../mod/settings.php:970
+#: ../../mod/settings.php:975
 msgid "Community Types"
 msgstr "Tipos de Comunidades"
 
-#: ../../mod/settings.php:971
+#: ../../mod/settings.php:976
 msgid "Normal Account Page"
 msgstr "Página de conta normal"
 
-#: ../../mod/settings.php:972
+#: ../../mod/settings.php:977
 msgid "This account is a normal personal profile"
 msgstr "Essa conta é um perfil pessoal normal"
 
-#: ../../mod/settings.php:975
+#: ../../mod/settings.php:980
 msgid "Soapbox Page"
 msgstr "Página de vitrine"
 
-#: ../../mod/settings.php:976
+#: ../../mod/settings.php:981
 msgid "Automatically approve all connection/friend requests as read-only fans"
 msgstr "Aprova automaticamente todas as solicitações de conexão/amizade como fãs com permissão somente de leitura"
 
-#: ../../mod/settings.php:979
+#: ../../mod/settings.php:984
 msgid "Community Forum/Celebrity Account"
 msgstr "Conta de fórum de comunidade/celebridade"
 
-#: ../../mod/settings.php:980
+#: ../../mod/settings.php:985
 msgid ""
 "Automatically approve all connection/friend requests as read-write fans"
 msgstr "Aprova automaticamente todas as solicitações de conexão/amizade como fãs com permissão de leitura e escrita"
 
-#: ../../mod/settings.php:983
+#: ../../mod/settings.php:988
 msgid "Automatic Friend Page"
 msgstr "Página de amigo automático"
 
-#: ../../mod/settings.php:984
+#: ../../mod/settings.php:989
 msgid "Automatically approve all connection/friend requests as friends"
 msgstr "Aprovar automaticamente todas as solicitações de conexão/amizade como amigos"
 
-#: ../../mod/settings.php:987
+#: ../../mod/settings.php:992
 msgid "Private Forum [Experimental]"
 msgstr "Fórum privado [Experimental]"
 
-#: ../../mod/settings.php:988
+#: ../../mod/settings.php:993
 msgid "Private forum - approved members only"
 msgstr "Fórum privado - somente membros aprovados"
 
-#: ../../mod/settings.php:1000
+#: ../../mod/settings.php:1005
 msgid "OpenID:"
 msgstr "OpenID:"
 
-#: ../../mod/settings.php:1000
+#: ../../mod/settings.php:1005
 msgid "(Optional) Allow this OpenID to login to this account."
 msgstr "(Opcional) Permitir o uso deste OpenID para entrar nesta conta"
 
-#: ../../mod/settings.php:1010
+#: ../../mod/settings.php:1015
 msgid "Publish your default profile in your local site directory?"
 msgstr "Publicar o seu perfil padrão no diretório local do seu site?"
 
-#: ../../mod/settings.php:1010 ../../mod/settings.php:1016
-#: ../../mod/settings.php:1024 ../../mod/settings.php:1028
-#: ../../mod/settings.php:1033 ../../mod/settings.php:1039
-#: ../../mod/settings.php:1045 ../../mod/settings.php:1051
-#: ../../mod/settings.php:1081 ../../mod/settings.php:1082
-#: ../../mod/settings.php:1083 ../../mod/settings.php:1084
-#: ../../mod/settings.php:1085 ../../mod/dfrn_request.php:830
-#: ../../mod/register.php:234 ../../mod/profiles.php:661
-#: ../../mod/profiles.php:665 ../../mod/api.php:106
+#: ../../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 "Não"
 
-#: ../../mod/settings.php:1016
+#: ../../mod/settings.php:1021
 msgid "Publish your default profile in the global social directory?"
 msgstr "Publicar o seu perfil padrão no diretório social global?"
 
-#: ../../mod/settings.php:1024
+#: ../../mod/settings.php:1029
 msgid "Hide your contact/friend list from viewers of your default profile?"
 msgstr "Ocultar visualização da sua lista de contatos/amigos no seu perfil padrão? "
 
-#: ../../mod/settings.php:1028 ../../include/conversation.php:1057
-msgid "Hide your profile details from unknown viewers?"
-msgstr "Ocultar os detalhes do seu perfil para pessoas desconhecidas?"
-
-#: ../../mod/settings.php:1028
+#: ../../mod/settings.php:1033
 msgid ""
 "If enabled, posting public messages to Diaspora and other networks isn't "
 "possible."
 msgstr "Se ativado, postar mensagens públicas no Diáspora e em outras redes não será possível."
 
-#: ../../mod/settings.php:1033
+#: ../../mod/settings.php:1038
 msgid "Allow friends to post to your profile page?"
 msgstr "Permitir aos amigos publicarem na sua página de perfil?"
 
-#: ../../mod/settings.php:1039
+#: ../../mod/settings.php:1044
 msgid "Allow friends to tag your posts?"
 msgstr "Permitir aos amigos etiquetarem suas publicações?"
 
-#: ../../mod/settings.php:1045
+#: ../../mod/settings.php:1050
 msgid "Allow us to suggest you as a potential friend to new members?"
 msgstr "Permitir que você seja sugerido como amigo em potencial para novos membros?"
 
-#: ../../mod/settings.php:1051
+#: ../../mod/settings.php:1056
 msgid "Permit unknown people to send you private mail?"
 msgstr "Permitir que pessoas desconhecidas lhe enviem mensagens privadas?"
 
-#: ../../mod/settings.php:1059
+#: ../../mod/settings.php:1064
 msgid "Profile is <strong>not published</strong>."
 msgstr "O perfil <strong>não está publicado</strong>."
 
-#: ../../mod/settings.php:1067
+#: ../../mod/settings.php:1067 ../../mod/profile_photo.php:248
+msgid "or"
+msgstr "ou"
+
+#: ../../mod/settings.php:1072
 msgid "Your Identity Address is"
 msgstr "O endereço da sua identidade é"
 
-#: ../../mod/settings.php:1078
+#: ../../mod/settings.php:1083
 msgid "Automatically expire posts after this many days:"
 msgstr "Expirar automaticamente publicações após tantos dias:"
 
-#: ../../mod/settings.php:1078
+#: ../../mod/settings.php:1083
 msgid "If empty, posts will not expire. Expired posts will be deleted"
 msgstr "Se deixado em branco, as publicações não irão expirar. Publicações expiradas serão excluídas."
 
-#: ../../mod/settings.php:1079
+#: ../../mod/settings.php:1084
 msgid "Advanced expiration settings"
 msgstr "Configurações avançadas de expiração"
 
-#: ../../mod/settings.php:1080
+#: ../../mod/settings.php:1085
 msgid "Advanced Expiration"
 msgstr "Expiração avançada"
 
-#: ../../mod/settings.php:1081
+#: ../../mod/settings.php:1086
 msgid "Expire posts:"
 msgstr "Expirar publicações:"
 
-#: ../../mod/settings.php:1082
+#: ../../mod/settings.php:1087
 msgid "Expire personal notes:"
 msgstr "Expirar notas pessoais:"
 
-#: ../../mod/settings.php:1083
+#: ../../mod/settings.php:1088
 msgid "Expire starred posts:"
 msgstr "Expirar publicações destacadas:"
 
-#: ../../mod/settings.php:1084
+#: ../../mod/settings.php:1089
 msgid "Expire photos:"
 msgstr "Expirar fotos:"
 
-#: ../../mod/settings.php:1085
+#: ../../mod/settings.php:1090
 msgid "Only expire posts by others:"
 msgstr "Expirar somente as publicações de outras pessoas:"
 
-#: ../../mod/settings.php:1111
+#: ../../mod/settings.php:1116
 msgid "Account Settings"
 msgstr "Configurações da conta"
 
-#: ../../mod/settings.php:1119
+#: ../../mod/settings.php:1124
 msgid "Password Settings"
 msgstr "Configurações da senha"
 
-#: ../../mod/settings.php:1120
+#: ../../mod/settings.php:1125
 msgid "New Password:"
 msgstr "Nova senha:"
 
-#: ../../mod/settings.php:1121
+#: ../../mod/settings.php:1126
 msgid "Confirm:"
 msgstr "Confirme:"
 
-#: ../../mod/settings.php:1121
+#: ../../mod/settings.php:1126
 msgid "Leave password fields blank unless changing"
 msgstr "Deixe os campos de senha em branco, a não ser que você queira alterá-la"
 
-#: ../../mod/settings.php:1122
+#: ../../mod/settings.php:1127
 msgid "Current Password:"
 msgstr "Senha Atual:"
 
-#: ../../mod/settings.php:1122 ../../mod/settings.php:1123
+#: ../../mod/settings.php:1127 ../../mod/settings.php:1128
 msgid "Your current password to confirm the changes"
 msgstr "Sua senha atual para confirmar as mudanças"
 
-#: ../../mod/settings.php:1123
+#: ../../mod/settings.php:1128
 msgid "Password:"
 msgstr "Senha:"
 
-#: ../../mod/settings.php:1127
+#: ../../mod/settings.php:1132
 msgid "Basic Settings"
 msgstr "Configurações básicas"
 
-#: ../../mod/settings.php:1128 ../../include/profile_advanced.php:15
-msgid "Full Name:"
-msgstr "Nome completo:"
-
-#: ../../mod/settings.php:1129
+#: ../../mod/settings.php:1134
 msgid "Email Address:"
 msgstr "Endereço de e-mail:"
 
-#: ../../mod/settings.php:1130
+#: ../../mod/settings.php:1135
 msgid "Your Timezone:"
 msgstr "Seu fuso horário:"
 
-#: ../../mod/settings.php:1131
+#: ../../mod/settings.php:1136
 msgid "Default Post Location:"
 msgstr "Localização padrão de suas publicações:"
 
-#: ../../mod/settings.php:1132
+#: ../../mod/settings.php:1137
 msgid "Use Browser Location:"
 msgstr "Usar localizador do navegador:"
 
-#: ../../mod/settings.php:1135
+#: ../../mod/settings.php:1140
 msgid "Security and Privacy Settings"
 msgstr "Configurações de segurança e privacidade"
 
-#: ../../mod/settings.php:1137
+#: ../../mod/settings.php:1142
 msgid "Maximum Friend Requests/Day:"
 msgstr "Número máximo de requisições de amizade por dia:"
 
-#: ../../mod/settings.php:1137 ../../mod/settings.php:1167
+#: ../../mod/settings.php:1142 ../../mod/settings.php:1172
 msgid "(to prevent spam abuse)"
 msgstr "(para prevenir abuso de spammers)"
 
-#: ../../mod/settings.php:1138
+#: ../../mod/settings.php:1143
 msgid "Default Post Permissions"
 msgstr "Permissões padrão de publicação"
 
-#: ../../mod/settings.php:1139
+#: ../../mod/settings.php:1144
 msgid "(click to open/close)"
 msgstr "(clique para abrir/fechar)"
 
-#: ../../mod/settings.php:1148 ../../mod/photos.php:1146
+#: ../../mod/settings.php:1153 ../../mod/photos.php:1146
 #: ../../mod/photos.php:1519
 msgid "Show to Groups"
 msgstr "Mostre para Grupos"
 
-#: ../../mod/settings.php:1149 ../../mod/photos.php:1147
+#: ../../mod/settings.php:1154 ../../mod/photos.php:1147
 #: ../../mod/photos.php:1520
 msgid "Show to Contacts"
 msgstr "Mostre para Contatos"
 
-#: ../../mod/settings.php:1150
+#: ../../mod/settings.php:1155
 msgid "Default Private Post"
 msgstr "Publicação Privada Padrão"
 
-#: ../../mod/settings.php:1151
+#: ../../mod/settings.php:1156
 msgid "Default Public Post"
 msgstr "Publicação Pública Padrão"
 
-#: ../../mod/settings.php:1155
+#: ../../mod/settings.php:1160
 msgid "Default Permissions for New Posts"
 msgstr "Permissões Padrão para Publicações Novas"
 
-#: ../../mod/settings.php:1167
+#: ../../mod/settings.php:1172
 msgid "Maximum private messages per day from unknown people:"
 msgstr "Número máximo de mensagens privadas de pessoas desconhecidas, por dia:"
 
-#: ../../mod/settings.php:1170
+#: ../../mod/settings.php:1175
 msgid "Notification Settings"
 msgstr "Configurações de notificação"
 
-#: ../../mod/settings.php:1171
+#: ../../mod/settings.php:1176
 msgid "By default post a status message when:"
 msgstr "Por padrão, publicar uma mensagem de status quando:"
 
-#: ../../mod/settings.php:1172
+#: ../../mod/settings.php:1177
 msgid "accepting a friend request"
 msgstr "aceitar uma requisição de amizade"
 
-#: ../../mod/settings.php:1173
+#: ../../mod/settings.php:1178
 msgid "joining a forum/community"
 msgstr "associar-se a um fórum/comunidade"
 
-#: ../../mod/settings.php:1174
+#: ../../mod/settings.php:1179
 msgid "making an <em>interesting</em> profile change"
 msgstr "fazer uma modificação <em>interessante</em> em seu perfil"
 
-#: ../../mod/settings.php:1175
+#: ../../mod/settings.php:1180
 msgid "Send a notification email when:"
 msgstr "Enviar um e-mail de notificação sempre que:"
 
-#: ../../mod/settings.php:1176
+#: ../../mod/settings.php:1181
 msgid "You receive an introduction"
 msgstr "Você recebeu uma apresentação"
 
-#: ../../mod/settings.php:1177
+#: ../../mod/settings.php:1182
 msgid "Your introductions are confirmed"
 msgstr "Suas apresentações forem confirmadas"
 
-#: ../../mod/settings.php:1178
+#: ../../mod/settings.php:1183
 msgid "Someone writes on your profile wall"
 msgstr "Alguém escrever no mural do seu perfil"
 
-#: ../../mod/settings.php:1179
+#: ../../mod/settings.php:1184
 msgid "Someone writes a followup comment"
 msgstr "Alguém comentar a sua mensagem"
 
-#: ../../mod/settings.php:1180
+#: ../../mod/settings.php:1185
 msgid "You receive a private message"
 msgstr "Você recebeu uma mensagem privada"
 
-#: ../../mod/settings.php:1181
+#: ../../mod/settings.php:1186
 msgid "You receive a friend suggestion"
 msgstr "Você recebe uma suggestão de amigo"
 
-#: ../../mod/settings.php:1182
+#: ../../mod/settings.php:1187
 msgid "You are tagged in a post"
 msgstr "Você foi etiquetado em uma publicação"
 
-#: ../../mod/settings.php:1183
+#: ../../mod/settings.php:1188
 msgid "You are poked/prodded/etc. in a post"
 msgstr "Você está cutucado/incitado/etc. em uma publicação"
 
-#: ../../mod/settings.php:1185
+#: ../../mod/settings.php:1190
 msgid "Text-only notification emails"
 msgstr "Emails de notificação apenas de texto"
 
-#: ../../mod/settings.php:1187
+#: ../../mod/settings.php:1192
 msgid "Send text only notification emails, without the html part"
 msgstr "Enviar e-mails de notificação apenas de texto, sem a parte html"
 
-#: ../../mod/settings.php:1189
+#: ../../mod/settings.php:1194
 msgid "Advanced Account/Page Type Settings"
 msgstr "Conta avançada/Configurações do tipo de página"
 
-#: ../../mod/settings.php:1190
+#: ../../mod/settings.php:1195
 msgid "Change the behaviour of this account for special situations"
 msgstr "Modificar o comportamento desta conta em situações especiais"
 
-#: ../../mod/settings.php:1193
+#: ../../mod/settings.php:1198
 msgid "Relocate"
 msgstr "Relocação"
 
-#: ../../mod/settings.php:1194
+#: ../../mod/settings.php:1199
 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 "Se você moveu esse perfil de outro servidor e algum dos seus contatos não recebe atualizações, pressione esse botão."
 
-#: ../../mod/settings.php:1195
+#: ../../mod/settings.php:1200
 msgid "Resend relocate message to contacts"
 msgstr "Reenviar mensagem de relocação para os contatos"
 
-#: ../../mod/dfrn_request.php:95
-msgid "This introduction has already been accepted."
-msgstr "Esta apresentação já foi aceita."
+#: ../../mod/common.php:42
+msgid "Common Friends"
+msgstr "Amigos em Comum"
 
-#: ../../mod/dfrn_request.php:120 ../../mod/dfrn_request.php:518
-msgid "Profile location is not valid or does not contain profile information."
-msgstr "A localização do perfil não é válida ou não contém uma informação de perfil."
+#: ../../mod/common.php:78
+msgid "No contacts in common."
+msgstr "Nenhum contato em comum."
 
-#: ../../mod/dfrn_request.php:125 ../../mod/dfrn_request.php:523
-msgid "Warning: profile location has no identifiable owner name."
-msgstr "Aviso: a localização do perfil não possui nenhum nome identificável do seu dono."
+#: ../../mod/lockview.php:31 ../../mod/lockview.php:39
+msgid "Remote privacy information not available."
+msgstr "Não existe informação disponível sobre a privacidade remota."
 
-#: ../../mod/dfrn_request.php:127 ../../mod/dfrn_request.php:525
-msgid "Warning: profile location has no profile photo."
-msgstr "Aviso: a localização do perfil não possui nenhuma foto do perfil."
+#: ../../mod/lockview.php:48
+msgid "Visible to:"
+msgstr "Visível para:"
 
-#: ../../mod/dfrn_request.php:130 ../../mod/dfrn_request.php:528
+#: ../../mod/contacts.php:112
 #, 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] "O parâmetro requerido %d não foi encontrado na localização fornecida"
-msgstr[1] "Os parâmetros requeridos %d não foram encontrados na localização fornecida"
-
-#: ../../mod/dfrn_request.php:172
-msgid "Introduction complete."
-msgstr "A apresentação foi finalizada."
+msgid "%d contact edited."
+msgid_plural "%d contacts edited"
+msgstr[0] "%d contato editado"
+msgstr[1] "%d contatos editados"
 
-#: ../../mod/dfrn_request.php:214
-msgid "Unrecoverable protocol error."
-msgstr "Ocorreu um erro irrecuperável de protocolo."
+#: ../../mod/contacts.php:143 ../../mod/contacts.php:276
+msgid "Could not access contact record."
+msgstr "Não foi possível acessar o registro do contato."
 
-#: ../../mod/dfrn_request.php:242
-msgid "Profile unavailable."
-msgstr "O perfil não está disponível."
+#: ../../mod/contacts.php:157
+msgid "Could not locate selected profile."
+msgstr "Não foi possível localizar o perfil selecionado."
 
-#: ../../mod/dfrn_request.php:267
-#, php-format
-msgid "%s has received too many connection requests today."
-msgstr "%s recebeu solicitações de conexão em excesso hoje."
+#: ../../mod/contacts.php:190
+msgid "Contact updated."
+msgstr "O contato foi atualizado."
 
-#: ../../mod/dfrn_request.php:268
-msgid "Spam protection measures have been invoked."
-msgstr "As medidas de proteção contra spam foram ativadas."
+#: ../../mod/contacts.php:192 ../../mod/dfrn_request.php:576
+msgid "Failed to update contact record."
+msgstr "Não foi possível atualizar o registro do contato."
 
-#: ../../mod/dfrn_request.php:269
-msgid "Friends are advised to please try again in 24 hours."
-msgstr "Os amigos foram notificados para tentar novamente em 24 horas."
+#: ../../mod/contacts.php:291
+msgid "Contact has been blocked"
+msgstr "O contato foi bloqueado"
 
-#: ../../mod/dfrn_request.php:331
-msgid "Invalid locator"
-msgstr "Localizador inválido"
+#: ../../mod/contacts.php:291
+msgid "Contact has been unblocked"
+msgstr "O contato foi desbloqueado"
 
-#: ../../mod/dfrn_request.php:340
-msgid "Invalid email address."
-msgstr "Endereço de e-mail inválido."
+#: ../../mod/contacts.php:302
+msgid "Contact has been ignored"
+msgstr "O contato foi ignorado"
 
-#: ../../mod/dfrn_request.php:367
-msgid "This account has not been configured for email. Request failed."
-msgstr "Essa conta não foi configurada para e-mails. Não foi possível atender à solicitação."
+#: ../../mod/contacts.php:302
+msgid "Contact has been unignored"
+msgstr "O contato deixou de ser ignorado"
 
-#: ../../mod/dfrn_request.php:463
-msgid "Unable to resolve your name at the provided location."
-msgstr "Não foi possível encontrar a sua identificação no endereço indicado."
+#: ../../mod/contacts.php:314
+msgid "Contact has been archived"
+msgstr "O contato foi arquivado"
 
-#: ../../mod/dfrn_request.php:476
-msgid "You have already introduced yourself here."
-msgstr "Você já fez a sua apresentação aqui."
+#: ../../mod/contacts.php:314
+msgid "Contact has been unarchived"
+msgstr "O contato foi desarquivado"
 
-#: ../../mod/dfrn_request.php:480
+#: ../../mod/contacts.php:339 ../../mod/contacts.php:727
+msgid "Do you really want to delete this contact?"
+msgstr "Você realmente deseja deletar esse contato?"
+
+#: ../../mod/contacts.php:356
+msgid "Contact has been removed."
+msgstr "O contato foi removido."
+
+#: ../../mod/contacts.php:394
 #, php-format
-msgid "Apparently you are already friends with %s."
-msgstr "Aparentemente você já é amigo de %s."
+msgid "You are mutual friends with %s"
+msgstr "Você possui uma amizade mútua com %s"
 
-#: ../../mod/dfrn_request.php:501
-msgid "Invalid profile URL."
-msgstr "URL de perfil inválida."
+#: ../../mod/contacts.php:398
+#, php-format
+msgid "You are sharing with %s"
+msgstr "Você está compartilhando com %s"
 
-#: ../../mod/dfrn_request.php:507 ../../include/follow.php:27
-msgid "Disallowed profile URL."
-msgstr "URL de perfil não permitida."
+#: ../../mod/contacts.php:403
+#, php-format
+msgid "%s is sharing with you"
+msgstr "%s está compartilhando com você"
 
-#: ../../mod/dfrn_request.php:597
-msgid "Your introduction has been sent."
-msgstr "A sua apresentação foi enviada."
+#: ../../mod/contacts.php:423
+msgid "Private communications are not available for this contact."
+msgstr "As comunicações privadas não estão disponíveis para este contato."
 
-#: ../../mod/dfrn_request.php:650
-msgid "Please login to confirm introduction."
-msgstr "Por favor, autentique-se para confirmar a apresentação."
+#: ../../mod/contacts.php:426 ../../mod/admin.php:569
+msgid "Never"
+msgstr "Nunca"
 
-#: ../../mod/dfrn_request.php:660
-msgid ""
-"Incorrect identity currently logged in. Please login to "
-"<strong>this</strong> profile."
-msgstr "A identidade autenticada está incorreta. Por favor, entre como <strong>este</strong> perfil."
+#: ../../mod/contacts.php:430
+msgid "(Update was successful)"
+msgstr "(A atualização foi bem sucedida)"
 
-#: ../../mod/dfrn_request.php:671
-msgid "Hide this contact"
-msgstr "Ocultar este contato"
+#: ../../mod/contacts.php:430
+msgid "(Update was not successful)"
+msgstr "(A atualização não foi bem sucedida)"
 
-#: ../../mod/dfrn_request.php:674
-#, php-format
-msgid "Welcome home %s."
-msgstr "Bem-vindo(a) à sua página pessoal %s."
+#: ../../mod/contacts.php:432
+msgid "Suggest friends"
+msgstr "Sugerir amigos"
 
-#: ../../mod/dfrn_request.php:675
+#: ../../mod/contacts.php:436
 #, php-format
-msgid "Please confirm your introduction/connection request to %s."
-msgstr "Por favor, confirme sua solicitação de apresentação/conexão para %s."
+msgid "Network type: %s"
+msgstr "Tipo de rede: %s"
 
-#: ../../mod/dfrn_request.php:676
-msgid "Confirm"
-msgstr "Confirmar"
+#: ../../mod/contacts.php:444
+msgid "View all contacts"
+msgstr "Ver todos os contatos"
 
-#: ../../mod/dfrn_request.php:804
-msgid ""
-"Please enter your 'Identity Address' from one of the following supported "
-"communications networks:"
-msgstr "Por favor, digite seu 'Endereço de Identificação' a partir de uma das seguintes redes de comunicação suportadas:"
+#: ../../mod/contacts.php:449 ../../mod/contacts.php:518
+#: ../../mod/contacts.php:730 ../../mod/admin.php:1009
+msgid "Unblock"
+msgstr "Desbloquear"
 
-#: ../../mod/dfrn_request.php:824
-msgid ""
-"If you are not yet a member of the free social web, <a "
-"href=\"http://dir.friendica.com/siteinfo\">follow this link to find a public"
-" Friendica site and join us today</a>."
-msgstr "Caso você ainda não seja membro da rede social livre, <a href=\"http://dir.friendica.com/siteinfo\">clique aqui para encontrar um site Friendica público e junte-se à nós</a>."
+#: ../../mod/contacts.php:449 ../../mod/contacts.php:518
+#: ../../mod/contacts.php:730 ../../mod/admin.php:1008
+msgid "Block"
+msgstr "Bloquear"
 
-#: ../../mod/dfrn_request.php:827
-msgid "Friend/Connection Request"
-msgstr "Solicitação de amizade/conexão"
+#: ../../mod/contacts.php:452
+msgid "Toggle Blocked status"
+msgstr "Alternar o status de bloqueio"
 
-#: ../../mod/dfrn_request.php:828
-msgid ""
-"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, "
-"testuser@identi.ca"
-msgstr "Examplos: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"
+#: ../../mod/contacts.php:455 ../../mod/contacts.php:519
+#: ../../mod/contacts.php:731
+msgid "Unignore"
+msgstr "Deixar de ignorar"
 
-#: ../../mod/dfrn_request.php:829
-msgid "Please answer the following:"
-msgstr "Por favor, entre com as informações solicitadas:"
+#: ../../mod/contacts.php:458
+msgid "Toggle Ignored status"
+msgstr "Alternar o status de ignorado"
 
-#: ../../mod/dfrn_request.php:830
-#, php-format
-msgid "Does %s know you?"
-msgstr "%s conhece você?"
+#: ../../mod/contacts.php:462 ../../mod/contacts.php:732
+msgid "Unarchive"
+msgstr "Desarquivar"
 
-#: ../../mod/dfrn_request.php:834
-msgid "Add a personal note:"
-msgstr "Adicione uma anotação pessoal:"
+#: ../../mod/contacts.php:462 ../../mod/contacts.php:732
+msgid "Archive"
+msgstr "Arquivar"
 
-#: ../../mod/dfrn_request.php:836 ../../include/contact_selectors.php:76
-msgid "Friendica"
-msgstr "Friendica"
+#: ../../mod/contacts.php:465
+msgid "Toggle Archive status"
+msgstr "Alternar o status de arquivamento"
 
-#: ../../mod/dfrn_request.php:837
-msgid "StatusNet/Federated Social Web"
-msgstr "StatusNet/Federated Social Web"
+#: ../../mod/contacts.php:468
+msgid "Repair"
+msgstr "Reparar"
 
-#: ../../mod/dfrn_request.php:839
-#, php-format
-msgid ""
-" - please do not use this form.  Instead, enter %s into your Diaspora search"
-" bar."
-msgstr " - Por favor, não utilize esse formulário.  Ao invés disso, digite %s na sua barra de pesquisa do Diaspora."
+#: ../../mod/contacts.php:471
+msgid "Advanced Contact Settings"
+msgstr "Configurações avançadas do contato"
 
-#: ../../mod/dfrn_request.php:840
-msgid "Your Identity Address:"
-msgstr "Seu endereço de identificação:"
+#: ../../mod/contacts.php:477
+msgid "Communications lost with this contact!"
+msgstr "As comunicações com esse contato foram perdidas!"
 
-#: ../../mod/dfrn_request.php:843
-msgid "Submit Request"
-msgstr "Enviar solicitação"
+#: ../../mod/contacts.php:480
+msgid "Fetch further information for feeds"
+msgstr "Pega mais informações para feeds"
 
-#: ../../mod/register.php:90
-msgid ""
-"Registration successful. Please check your email for further instructions."
-msgstr "O registro foi bem sucedido. Por favor, verifique seu e-mail para maiores informações."
+#: ../../mod/contacts.php:481
+msgid "Disabled"
+msgstr "Desabilitado"
 
-#: ../../mod/register.php:96
-#, php-format
-msgid ""
-"Failed to send email message. Here your accout details:<br> login: %s<br> "
-"password: %s<br><br>You can change your password after login."
-msgstr "Falha ao enviar mensagem de email. Estes são os dados da sua conta:<br> login: %s<br> senha: %s<br><br>Você pode alterar sua senha após fazer o login."
+#: ../../mod/contacts.php:481
+msgid "Fetch information"
+msgstr "Buscar informações"
 
-#: ../../mod/register.php:105
-msgid "Your registration can not be processed."
-msgstr "Não foi possível processar o seu registro."
+#: ../../mod/contacts.php:481
+msgid "Fetch information and keywords"
+msgstr "Buscar informação e palavras-chave"
 
-#: ../../mod/register.php:148
-msgid "Your registration is pending approval by the site owner."
-msgstr "A aprovação do seu registro está pendente junto ao administrador do site."
+#: ../../mod/contacts.php:490
+msgid "Contact Editor"
+msgstr "Editor de contatos"
 
-#: ../../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 "Este site excedeu o limite diário permitido para registros de novas contas.\nPor favor tente novamente amanhã."
+#: ../../mod/contacts.php:493
+msgid "Profile Visibility"
+msgstr "Visibilidade do perfil"
 
-#: ../../mod/register.php:214
+#: ../../mod/contacts.php:494
+#, php-format
 msgid ""
-"You may (optionally) fill in this form via OpenID by supplying your OpenID "
-"and clicking 'Register'."
-msgstr "Você pode (opcionalmente) preencher este formulário via OpenID, fornecendo seu OpenID e clicando em 'Registrar'."
+"Please choose the profile you would like to display to %s when viewing your "
+"profile securely."
+msgstr "Por favor, selecione o perfil que você gostaria de exibir para %s quando estiver visualizando seu perfil de modo seguro."
 
-#: ../../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 "Se você não está familiarizado com o OpenID, por favor, deixe esse campo em branco e preencha os outros itens."
+#: ../../mod/contacts.php:495
+msgid "Contact Information / Notes"
+msgstr "Informações sobre o contato / Anotações"
 
-#: ../../mod/register.php:216
-msgid "Your OpenID (optional): "
-msgstr "Seu OpenID (opcional): "
+#: ../../mod/contacts.php:496
+msgid "Edit contact notes"
+msgstr "Editar as anotações do contato"
 
-#: ../../mod/register.php:230
-msgid "Include your profile in member directory?"
-msgstr "Incluir o seu perfil no diretório de membros?"
+#: ../../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 "Visitar o perfil de %s [%s]"
 
-#: ../../mod/register.php:251
-msgid "Membership on this site is by invitation only."
-msgstr "A associação a este site só pode ser feita mediante convite."
+#: ../../mod/contacts.php:502
+msgid "Block/Unblock contact"
+msgstr "Bloquear/desbloquear o contato"
 
-#: ../../mod/register.php:252
-msgid "Your invitation ID: "
-msgstr "A ID do seu convite: "
+#: ../../mod/contacts.php:503
+msgid "Ignore contact"
+msgstr "Ignorar o contato"
 
-#: ../../mod/register.php:263
-msgid "Your Full Name (e.g. Joe Smith): "
-msgstr "Seu nome completo (ex: José da Silva): "
+#: ../../mod/contacts.php:504
+msgid "Repair URL settings"
+msgstr "Reparar as definições de URL"
 
-#: ../../mod/register.php:264
-msgid "Your Email Address: "
-msgstr "Seu endereço de e-mail: "
+#: ../../mod/contacts.php:505
+msgid "View conversations"
+msgstr "Ver as conversas"
 
-#: ../../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 "
-"'<strong>nickname@$sitename</strong>'."
-msgstr "Selecione uma identificação para o perfil. Ela deve começar com um caractere alfabético. O endereço do seu perfil neste site será '<strong>identificação@$sitename</strong>'"
+#: ../../mod/contacts.php:507
+msgid "Delete contact"
+msgstr "Excluir o contato"
 
-#: ../../mod/register.php:266
-msgid "Choose a nickname: "
-msgstr "Escolha uma identificação: "
+#: ../../mod/contacts.php:511
+msgid "Last update:"
+msgstr "Última atualização:"
 
-#: ../../mod/register.php:269 ../../boot.php:1241 ../../include/nav.php:109
-msgid "Register"
-msgstr "Registrar"
+#: ../../mod/contacts.php:513
+msgid "Update public posts"
+msgstr "Atualizar publicações públicas"
 
-#: ../../mod/register.php:275 ../../mod/uimport.php:64
-msgid "Import"
-msgstr "Importar"
+#: ../../mod/contacts.php:515 ../../mod/admin.php:1503
+msgid "Update now"
+msgstr "Atualizar agora"
 
-#: ../../mod/register.php:276
-msgid "Import your profile to this friendica instance"
-msgstr "Importa seu perfil  desta instância do friendica"
+#: ../../mod/contacts.php:522
+msgid "Currently blocked"
+msgstr "Atualmente bloqueado"
 
-#: ../../mod/maintenance.php:5
-msgid "System down for maintenance"
-msgstr "Sistema em manutenção"
+#: ../../mod/contacts.php:523
+msgid "Currently ignored"
+msgstr "Atualmente ignorado"
 
-#: ../../mod/search.php:99 ../../include/text.php:953
-#: ../../include/text.php:954 ../../include/nav.php:119
-msgid "Search"
-msgstr "Pesquisar"
+#: ../../mod/contacts.php:524
+msgid "Currently archived"
+msgstr "Atualmente arquivado"
 
-#: ../../mod/directory.php:51 ../../view/theme/diabook/theme.php:525
-msgid "Global Directory"
-msgstr "Diretório global"
+#: ../../mod/contacts.php:525
+msgid ""
+"Replies/likes to your public posts <strong>may</strong> still be visible"
+msgstr "Respostas/gostadas associados às suas publicações <strong>ainda podem</strong> estar visíveis"
 
-#: ../../mod/directory.php:59
-msgid "Find on this site"
-msgstr "Pesquisar neste site"
+#: ../../mod/contacts.php:526
+msgid "Notification for new posts"
+msgstr "Notificações para novas publicações"
 
-#: ../../mod/directory.php:62
-msgid "Site Directory"
-msgstr "Diretório do site"
+#: ../../mod/contacts.php:526
+msgid "Send a notification of every new post of this contact"
+msgstr "Envie uma notificação para todos as novas publicações deste contato"
 
-#: ../../mod/directory.php:113 ../../mod/profiles.php:750
-msgid "Age: "
-msgstr "Idade: "
+#: ../../mod/contacts.php:529
+msgid "Blacklisted keywords"
+msgstr "Palavras-chave na Lista Negra"
 
-#: ../../mod/directory.php:116
-msgid "Gender: "
-msgstr "Gênero: "
+#: ../../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 "Lista de palavras-chave separadas por vírgulas que não devem ser convertidas para hashtags, quando \"Buscar informações e palavras-chave\" for selecionado."
 
-#: ../../mod/directory.php:138 ../../boot.php:1650
-#: ../../include/profile_advanced.php:17
-msgid "Gender:"
-msgstr "Gênero:"
+#: ../../mod/contacts.php:580
+msgid "Suggestions"
+msgstr "Sugestões"
 
-#: ../../mod/directory.php:140 ../../boot.php:1653
-#: ../../include/profile_advanced.php:37
-msgid "Status:"
-msgstr "Situação:"
+#: ../../mod/contacts.php:583
+msgid "Suggest potential friends"
+msgstr "Sugerir amigos em potencial"
 
-#: ../../mod/directory.php:142 ../../boot.php:1655
-#: ../../include/profile_advanced.php:48
-msgid "Homepage:"
-msgstr "Página web:"
+#: ../../mod/contacts.php:589
+msgid "Show all contacts"
+msgstr "Exibe todos os contatos"
 
-#: ../../mod/directory.php:144 ../../boot.php:1657
-#: ../../include/profile_advanced.php:58
-msgid "About:"
-msgstr "Sobre:"
+#: ../../mod/contacts.php:592
+msgid "Unblocked"
+msgstr "Desbloquear"
 
-#: ../../mod/directory.php:189
-msgid "No entries (some entries may be hidden)."
-msgstr "Nenhuma entrada (algumas entradas podem estar ocultas)."
+#: ../../mod/contacts.php:595
+msgid "Only show unblocked contacts"
+msgstr "Exibe somente contatos desbloqueados"
 
-#: ../../mod/delegate.php:101
-msgid "No potential page delegates located."
-msgstr "Nenhuma página delegada potencial localizada."
+#: ../../mod/contacts.php:599
+msgid "Blocked"
+msgstr "Bloqueado"
 
-#: ../../mod/delegate.php:130 ../../include/nav.php:170
-msgid "Delegate Page Management"
-msgstr "Delegar Administração de Página"
+#: ../../mod/contacts.php:602
+msgid "Only show blocked contacts"
+msgstr "Exibe somente contatos bloqueados"
 
-#: ../../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 "Delegados podem administrar todos os aspectos dessa página/conta exceto por configurações básicas da conta.\nFavor não delegar sua conta pessoal para ninguém que você não confie inteiramente."
+#: ../../mod/contacts.php:606
+msgid "Ignored"
+msgstr "Ignorados"
 
-#: ../../mod/delegate.php:133
-msgid "Existing Page Managers"
-msgstr "Administradores de Páginas Existentes"
+#: ../../mod/contacts.php:609
+msgid "Only show ignored contacts"
+msgstr "Exibe somente contatos ignorados"
 
-#: ../../mod/delegate.php:135
-msgid "Existing Page Delegates"
-msgstr "Delegados de Páginas Existentes"
+#: ../../mod/contacts.php:613
+msgid "Archived"
+msgstr "Arquivados"
 
-#: ../../mod/delegate.php:137
-msgid "Potential Delegates"
-msgstr "Delegados Potenciais"
+#: ../../mod/contacts.php:616
+msgid "Only show archived contacts"
+msgstr "Exibe somente contatos arquivados"
 
-#: ../../mod/delegate.php:140
-msgid "Add"
-msgstr "Adicionar"
+#: ../../mod/contacts.php:620
+msgid "Hidden"
+msgstr "Ocultos"
 
-#: ../../mod/delegate.php:141
-msgid "No entries."
-msgstr "Sem entradas."
+#: ../../mod/contacts.php:623
+msgid "Only show hidden contacts"
+msgstr "Exibe somente contatos ocultos"
 
-#: ../../mod/common.php:42
-msgid "Common Friends"
-msgstr "Amigos em Comum"
+#: ../../mod/contacts.php:671
+msgid "Mutual Friendship"
+msgstr "Amizade mútua"
 
-#: ../../mod/common.php:78
-msgid "No contacts in common."
-msgstr "Nenhum contato em comum."
+#: ../../mod/contacts.php:675
+msgid "is a fan of yours"
+msgstr "é um fã seu"
+
+#: ../../mod/contacts.php:679
+msgid "you are a fan of"
+msgstr "você é um fã de"
+
+#: ../../mod/contacts.php:696 ../../mod/nogroup.php:41
+msgid "Edit contact"
+msgstr "Editar o contato"
+
+#: ../../mod/contacts.php:722
+msgid "Search your contacts"
+msgstr "Pesquisar seus contatos"
+
+#: ../../mod/contacts.php:723 ../../mod/directory.php:61
+msgid "Finding: "
+msgstr "Pesquisando: "
+
+#: ../../mod/wall_attach.php:75
+msgid "Sorry, maybe your upload is bigger than the PHP configuration allows"
+msgstr "Lamento, talvez seu envio seja maior do que as configurações do PHP permitem"
+
+#: ../../mod/wall_attach.php:75
+msgid "Or - did you try to upload an empty file?"
+msgstr "Ou - você tentou enviar um arquivo vazio?"
+
+#: ../../mod/wall_attach.php:81
+#, php-format
+msgid "File exceeds size limit of %d"
+msgstr "O arquivo excedeu o tamanho limite de %d"
+
+#: ../../mod/wall_attach.php:122 ../../mod/wall_attach.php:133
+msgid "File upload failed."
+msgstr "Não foi possível enviar o arquivo."
+
+#: ../../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
+msgid "[Embedded content - reload page to view]"
+msgstr "[Conteúdo incorporado - recarregue a página para ver]"
 
 #: ../../mod/uexport.php:77
 msgid "Export account"
@@ -4650,3236 +4550,3388 @@ msgid ""
 "of your account (photos are not exported)"
 msgstr "Exportar as informações de sua conta, contatos e todos os seus items como JSON. Pode ser um arquivo muito grande, e pode levar bastante tempo. Use isto para fazer uma cópia de segurança completa da sua conta (fotos não são exportadas)"
 
-#: ../../mod/mood.php:62 ../../include/conversation.php:227
+#: ../../mod/register.php:90
+msgid ""
+"Registration successful. Please check your email for further instructions."
+msgstr "O registro foi bem sucedido. Por favor, verifique seu e-mail para maiores informações."
+
+#: ../../mod/register.php:96
 #, php-format
-msgid "%1$s is currently %2$s"
-msgstr "%1$s atualmente está %2$s"
+msgid ""
+"Failed to send email message. Here your accout details:<br> login: %s<br> "
+"password: %s<br><br>You can change your password after login."
+msgstr "Falha ao enviar mensagem de email. Estes são os dados da sua conta:<br> login: %s<br> senha: %s<br><br>Você pode alterar sua senha após fazer o login."
 
-#: ../../mod/mood.php:133
-msgid "Mood"
-msgstr "Humor"
+#: ../../mod/register.php:105
+msgid "Your registration can not be processed."
+msgstr "Não foi possível processar o seu registro."
 
-#: ../../mod/mood.php:134
-msgid "Set your current mood and tell your friends"
-msgstr "Defina o seu humor e conte aos seus amigos"
+#: ../../mod/register.php:148
+msgid "Your registration is pending approval by the site owner."
+msgstr "A aprovação do seu registro está pendente junto ao administrador do site."
 
-#: ../../mod/suggest.php:27
-msgid "Do you really want to delete this suggestion?"
-msgstr "Você realmente deseja deletar essa sugestão?"
+#: ../../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 "Este site excedeu o limite diário permitido para registros de novas contas.\nPor favor tente novamente amanhã."
 
-#: ../../mod/suggest.php:68 ../../include/contact_widgets.php:35
-#: ../../view/theme/diabook/theme.php:527
-msgid "Friend Suggestions"
-msgstr "Sugestões de amigos"
+#: ../../mod/register.php:214
+msgid ""
+"You may (optionally) fill in this form via OpenID by supplying your OpenID "
+"and clicking 'Register'."
+msgstr "Você pode (opcionalmente) preencher este formulário via OpenID, fornecendo seu OpenID e clicando em 'Registrar'."
 
-#: ../../mod/suggest.php:74
+#: ../../mod/register.php:215
 msgid ""
-"No suggestions available. If this is a new site, please try again in 24 "
-"hours."
-msgstr "Não existe nenhuma sugestão disponível. Se este for um site novo, por favor tente novamente em 24 horas."
+"If you are not familiar with OpenID, please leave that field blank and fill "
+"in the rest of the items."
+msgstr "Se você não está familiarizado com o OpenID, por favor, deixe esse campo em branco e preencha os outros itens."
 
-#: ../../mod/suggest.php:92
-msgid "Ignore/Hide"
-msgstr "Ignorar/Ocultar"
+#: ../../mod/register.php:216
+msgid "Your OpenID (optional): "
+msgstr "Seu OpenID (opcional): "
 
-#: ../../mod/profiles.php:37
-msgid "Profile deleted."
-msgstr "O perfil foi excluído."
+#: ../../mod/register.php:230
+msgid "Include your profile in member directory?"
+msgstr "Incluir o seu perfil no diretório de membros?"
 
-#: ../../mod/profiles.php:55 ../../mod/profiles.php:89
-msgid "Profile-"
-msgstr "Perfil-"
+#: ../../mod/register.php:251
+msgid "Membership on this site is by invitation only."
+msgstr "A associação a este site só pode ser feita mediante convite."
 
-#: ../../mod/profiles.php:74 ../../mod/profiles.php:117
-msgid "New profile created."
-msgstr "O novo perfil foi criado."
+#: ../../mod/register.php:252
+msgid "Your invitation ID: "
+msgstr "A ID do seu convite: "
 
-#: ../../mod/profiles.php:95
-msgid "Profile unavailable to clone."
-msgstr "O perfil não está disponível para clonagem."
+#: ../../mod/register.php:255 ../../mod/admin.php:621
+msgid "Registration"
+msgstr "Registro"
 
-#: ../../mod/profiles.php:189
-msgid "Profile Name is required."
-msgstr "É necessário informar o nome do perfil."
+#: ../../mod/register.php:263
+msgid "Your Full Name (e.g. Joe Smith): "
+msgstr "Seu nome completo (ex: José da Silva): "
 
-#: ../../mod/profiles.php:340
-msgid "Marital Status"
-msgstr "Situação amorosa"
+#: ../../mod/register.php:264
+msgid "Your Email Address: "
+msgstr "Seu endereço de e-mail: "
 
-#: ../../mod/profiles.php:344
-msgid "Romantic Partner"
-msgstr "Parceiro romântico"
+#: ../../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 "
+"'<strong>nickname@$sitename</strong>'."
+msgstr "Selecione uma identificação para o perfil. Ela deve começar com um caractere alfabético. O endereço do seu perfil neste site será '<strong>identificação@$sitename</strong>'"
 
-#: ../../mod/profiles.php:348
-msgid "Likes"
-msgstr "Gosta de"
+#: ../../mod/register.php:266
+msgid "Choose a nickname: "
+msgstr "Escolha uma identificação: "
 
-#: ../../mod/profiles.php:352
-msgid "Dislikes"
-msgstr "Não gosta de"
+#: ../../mod/register.php:275 ../../mod/uimport.php:64
+msgid "Import"
+msgstr "Importar"
 
-#: ../../mod/profiles.php:356
-msgid "Work/Employment"
-msgstr "Trabalho/emprego"
+#: ../../mod/register.php:276
+msgid "Import your profile to this friendica instance"
+msgstr "Importa seu perfil  desta instância do friendica"
 
-#: ../../mod/profiles.php:359
-msgid "Religion"
-msgstr "Religião"
+#: ../../mod/oexchange.php:25
+msgid "Post successful."
+msgstr "Publicado com sucesso."
 
-#: ../../mod/profiles.php:363
-msgid "Political Views"
-msgstr "Posicionamento político"
-
-#: ../../mod/profiles.php:367
-msgid "Gender"
-msgstr "Gênero"
-
-#: ../../mod/profiles.php:371
-msgid "Sexual Preference"
-msgstr "Preferência sexual"
-
-#: ../../mod/profiles.php:375
-msgid "Homepage"
-msgstr "Página Principal"
+#: ../../mod/maintenance.php:5
+msgid "System down for maintenance"
+msgstr "Sistema em manutenção"
 
-#: ../../mod/profiles.php:379 ../../mod/profiles.php:698
-msgid "Interests"
-msgstr "Interesses"
+#: ../../mod/profile.php:155 ../../mod/display.php:332
+msgid "Access to this profile has been restricted."
+msgstr "O acesso a este perfil está restrito."
 
-#: ../../mod/profiles.php:383
-msgid "Address"
-msgstr "Endereço"
+#: ../../mod/profile.php:180
+msgid "Tips for New Members"
+msgstr "Dicas para novos membros"
 
-#: ../../mod/profiles.php:390 ../../mod/profiles.php:694
-msgid "Location"
-msgstr "Localização"
+#: ../../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 "Acesso público negado."
 
-#: ../../mod/profiles.php:473
-msgid "Profile updated."
-msgstr "O perfil foi atualizado."
+#: ../../mod/videos.php:125
+msgid "No videos selected"
+msgstr "Nenhum vídeo selecionado"
 
-#: ../../mod/profiles.php:568
-msgid " and "
-msgstr " e "
+#: ../../mod/videos.php:226 ../../mod/photos.php:1031
+msgid "Access to this item is restricted."
+msgstr "O acesso a este item é restrito."
 
-#: ../../mod/profiles.php:576
-msgid "public profile"
-msgstr "perfil público"
+#: ../../mod/videos.php:308 ../../mod/photos.php:1808
+msgid "View Album"
+msgstr "Ver álbum"
 
-#: ../../mod/profiles.php:579
-#, php-format
-msgid "%1$s changed %2$s to &ldquo;%3$s&rdquo;"
-msgstr "%1$s mudou %2$s para &ldquo;%3$s&rdquo;"
+#: ../../mod/videos.php:317
+msgid "Recent Videos"
+msgstr "Vídeos Recentes"
 
-#: ../../mod/profiles.php:580
-#, php-format
-msgid " - Visit %1$s's %2$s"
-msgstr " - Visite %2$s de %1$s"
+#: ../../mod/videos.php:319
+msgid "Upload New Videos"
+msgstr "Envie Novos Vídeos"
 
-#: ../../mod/profiles.php:583
-#, php-format
-msgid "%1$s has an updated %2$s, changing %3$s."
-msgstr "%1$s foi atualizado %2$s, mudando %3$s."
+#: ../../mod/manage.php:106
+msgid "Manage Identities and/or Pages"
+msgstr "Gerenciar identidades e/ou páginas"
 
-#: ../../mod/profiles.php:658
-msgid "Hide contacts and friends:"
-msgstr "Esconder contatos e amigos:"
+#: ../../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 "Alterne entre diferentes identidades ou páginas de comunidade/grupo que dividem detalhes da sua conta ou que você tenha fornecido permissões de \"administração\""
 
-#: ../../mod/profiles.php:663
-msgid "Hide your contact/friend list from viewers of this profile?"
-msgstr "Ocultar sua lista de contatos/amigos dos visitantes no seu perfil?"
+#: ../../mod/manage.php:108
+msgid "Select an identity to manage: "
+msgstr "Selecione uma identidade para gerenciar: "
 
-#: ../../mod/profiles.php:685
-msgid "Edit Profile Details"
-msgstr "Editar os detalhes do perfil"
+#: ../../mod/editpost.php:17 ../../mod/editpost.php:27
+msgid "Item not found"
+msgstr "O item não foi encontrado"
 
-#: ../../mod/profiles.php:687
-msgid "Change Profile Photo"
-msgstr "Mudar Foto do Perfil"
+#: ../../mod/editpost.php:39
+msgid "Edit post"
+msgstr "Editar a publicação"
 
-#: ../../mod/profiles.php:688
-msgid "View this profile"
-msgstr "Ver este perfil"
+#: ../../mod/dirfind.php:26
+msgid "People Search"
+msgstr "Pesquisar pessoas"
 
-#: ../../mod/profiles.php:689
-msgid "Create a new profile using these settings"
-msgstr "Criar um novo perfil usando estas configurações"
+#: ../../mod/dirfind.php:60 ../../mod/match.php:65
+msgid "No matches"
+msgstr "Nenhuma correspondência"
 
-#: ../../mod/profiles.php:690
-msgid "Clone this profile"
-msgstr "Clonar este perfil"
+#: ../../mod/regmod.php:55
+msgid "Account approved."
+msgstr "A conta foi aprovada."
 
-#: ../../mod/profiles.php:691
-msgid "Delete this profile"
-msgstr "Excluir este perfil"
+#: ../../mod/regmod.php:92
+#, php-format
+msgid "Registration revoked for %s"
+msgstr "O registro de %s foi revogado"
 
-#: ../../mod/profiles.php:692
-msgid "Basic information"
-msgstr "Informação básica"
+#: ../../mod/regmod.php:104
+msgid "Please login."
+msgstr "Por favor, autentique-se."
 
-#: ../../mod/profiles.php:693
-msgid "Profile picture"
-msgstr "Foto do perfil"
+#: ../../mod/dfrn_request.php:95
+msgid "This introduction has already been accepted."
+msgstr "Esta apresentação já foi aceita."
 
-#: ../../mod/profiles.php:695
-msgid "Preferences"
-msgstr "Preferências"
+#: ../../mod/dfrn_request.php:120 ../../mod/dfrn_request.php:518
+msgid "Profile location is not valid or does not contain profile information."
+msgstr "A localização do perfil não é válida ou não contém uma informação de perfil."
 
-#: ../../mod/profiles.php:696
-msgid "Status information"
-msgstr "Informação de Status"
+#: ../../mod/dfrn_request.php:125 ../../mod/dfrn_request.php:523
+msgid "Warning: profile location has no identifiable owner name."
+msgstr "Aviso: a localização do perfil não possui nenhum nome identificável do seu dono."
 
-#: ../../mod/profiles.php:697
-msgid "Additional information"
-msgstr "Informações adicionais"
+#: ../../mod/dfrn_request.php:127 ../../mod/dfrn_request.php:525
+msgid "Warning: profile location has no profile photo."
+msgstr "Aviso: a localização do perfil não possui nenhuma foto do perfil."
 
-#: ../../mod/profiles.php:700
-msgid "Profile Name:"
-msgstr "Nome do perfil:"
+#: ../../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] "O parâmetro requerido %d não foi encontrado na localização fornecida"
+msgstr[1] "Os parâmetros requeridos %d não foram encontrados na localização fornecida"
 
-#: ../../mod/profiles.php:701
-msgid "Your Full Name:"
-msgstr "Seu nome completo:"
+#: ../../mod/dfrn_request.php:172
+msgid "Introduction complete."
+msgstr "A apresentação foi finalizada."
 
-#: ../../mod/profiles.php:702
-msgid "Title/Description:"
-msgstr "Título/Descrição:"
+#: ../../mod/dfrn_request.php:214
+msgid "Unrecoverable protocol error."
+msgstr "Ocorreu um erro irrecuperável de protocolo."
 
-#: ../../mod/profiles.php:703
-msgid "Your Gender:"
-msgstr "Seu gênero:"
+#: ../../mod/dfrn_request.php:242
+msgid "Profile unavailable."
+msgstr "O perfil não está disponível."
 
-#: ../../mod/profiles.php:704
+#: ../../mod/dfrn_request.php:267
 #, php-format
-msgid "Birthday (%s):"
-msgstr "Aniversário (%s):"
-
-#: ../../mod/profiles.php:705
-msgid "Street Address:"
-msgstr "Endereço:"
+msgid "%s has received too many connection requests today."
+msgstr "%s recebeu solicitações de conexão em excesso hoje."
 
-#: ../../mod/profiles.php:706
-msgid "Locality/City:"
-msgstr "Localidade/Cidade:"
+#: ../../mod/dfrn_request.php:268
+msgid "Spam protection measures have been invoked."
+msgstr "As medidas de proteção contra spam foram ativadas."
 
-#: ../../mod/profiles.php:707
-msgid "Postal/Zip Code:"
-msgstr "CEP:"
+#: ../../mod/dfrn_request.php:269
+msgid "Friends are advised to please try again in 24 hours."
+msgstr "Os amigos foram notificados para tentar novamente em 24 horas."
 
-#: ../../mod/profiles.php:708
-msgid "Country:"
-msgstr "País:"
+#: ../../mod/dfrn_request.php:331
+msgid "Invalid locator"
+msgstr "Localizador inválido"
 
-#: ../../mod/profiles.php:709
-msgid "Region/State:"
-msgstr "Região/Estado:"
+#: ../../mod/dfrn_request.php:340
+msgid "Invalid email address."
+msgstr "Endereço de e-mail inválido."
 
-#: ../../mod/profiles.php:710
-msgid "<span class=\"heart\">&hearts;</span> Marital Status:"
-msgstr "<span class=\"heart\">&hearts;</span> Situação amorosa:"
+#: ../../mod/dfrn_request.php:367
+msgid "This account has not been configured for email. Request failed."
+msgstr "Essa conta não foi configurada para e-mails. Não foi possível atender à solicitação."
 
-#: ../../mod/profiles.php:711
-msgid "Who: (if applicable)"
-msgstr "Quem: (se pertinente)"
+#: ../../mod/dfrn_request.php:463
+msgid "Unable to resolve your name at the provided location."
+msgstr "Não foi possível encontrar a sua identificação no endereço indicado."
 
-#: ../../mod/profiles.php:712
-msgid "Examples: cathy123, Cathy Williams, cathy@example.com"
-msgstr "Exemplos: fulano123, Fulano de Tal, fulano@exemplo.com"
+#: ../../mod/dfrn_request.php:476
+msgid "You have already introduced yourself here."
+msgstr "Você já fez a sua apresentação aqui."
 
-#: ../../mod/profiles.php:713
-msgid "Since [date]:"
-msgstr "Desde [data]:"
+#: ../../mod/dfrn_request.php:480
+#, php-format
+msgid "Apparently you are already friends with %s."
+msgstr "Aparentemente você já é amigo de %s."
 
-#: ../../mod/profiles.php:714 ../../include/profile_advanced.php:46
-msgid "Sexual Preference:"
-msgstr "Preferência sexual:"
+#: ../../mod/dfrn_request.php:501
+msgid "Invalid profile URL."
+msgstr "URL de perfil inválida."
 
-#: ../../mod/profiles.php:715
-msgid "Homepage URL:"
-msgstr "Endereço do site web:"
+#: ../../mod/dfrn_request.php:597
+msgid "Your introduction has been sent."
+msgstr "A sua apresentação foi enviada."
 
-#: ../../mod/profiles.php:716 ../../include/profile_advanced.php:50
-msgid "Hometown:"
-msgstr "Cidade:"
+#: ../../mod/dfrn_request.php:650
+msgid "Please login to confirm introduction."
+msgstr "Por favor, autentique-se para confirmar a apresentação."
 
-#: ../../mod/profiles.php:717 ../../include/profile_advanced.php:54
-msgid "Political Views:"
-msgstr "Posição política:"
+#: ../../mod/dfrn_request.php:660
+msgid ""
+"Incorrect identity currently logged in. Please login to "
+"<strong>this</strong> profile."
+msgstr "A identidade autenticada está incorreta. Por favor, entre como <strong>este</strong> perfil."
 
-#: ../../mod/profiles.php:718
-msgid "Religious Views:"
-msgstr "Orientação religiosa:"
+#: ../../mod/dfrn_request.php:671
+msgid "Hide this contact"
+msgstr "Ocultar este contato"
 
-#: ../../mod/profiles.php:719
-msgid "Public Keywords:"
-msgstr "Palavras-chave públicas:"
+#: ../../mod/dfrn_request.php:674
+#, php-format
+msgid "Welcome home %s."
+msgstr "Bem-vindo(a) à sua página pessoal %s."
 
-#: ../../mod/profiles.php:720
-msgid "Private Keywords:"
-msgstr "Palavras-chave privadas:"
+#: ../../mod/dfrn_request.php:675
+#, php-format
+msgid "Please confirm your introduction/connection request to %s."
+msgstr "Por favor, confirme sua solicitação de apresentação/conexão para %s."
 
-#: ../../mod/profiles.php:721 ../../include/profile_advanced.php:62
-msgid "Likes:"
-msgstr "Gosta de:"
+#: ../../mod/dfrn_request.php:804
+msgid ""
+"Please enter your 'Identity Address' from one of the following supported "
+"communications networks:"
+msgstr "Por favor, digite seu 'Endereço de Identificação' a partir de uma das seguintes redes de comunicação suportadas:"
 
-#: ../../mod/profiles.php:722 ../../include/profile_advanced.php:64
-msgid "Dislikes:"
-msgstr "Não gosta de:"
+#: ../../mod/dfrn_request.php:824
+msgid ""
+"If you are not yet a member of the free social web, <a "
+"href=\"http://dir.friendica.com/siteinfo\">follow this link to find a public"
+" Friendica site and join us today</a>."
+msgstr "Caso você ainda não seja membro da rede social livre, <a href=\"http://dir.friendica.com/siteinfo\">clique aqui para encontrar um site Friendica público e junte-se à nós</a>."
 
-#: ../../mod/profiles.php:723
-msgid "Example: fishing photography software"
-msgstr "Exemplo: pesca fotografia software"
+#: ../../mod/dfrn_request.php:827
+msgid "Friend/Connection Request"
+msgstr "Solicitação de amizade/conexão"
 
-#: ../../mod/profiles.php:724
-msgid "(Used for suggesting potential friends, can be seen by others)"
-msgstr "(Usado para sugerir amigos em potencial, pode ser visto pelos outros)"
+#: ../../mod/dfrn_request.php:828
+msgid ""
+"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, "
+"testuser@identi.ca"
+msgstr "Examplos: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"
 
-#: ../../mod/profiles.php:725
-msgid "(Used for searching profiles, never shown to others)"
-msgstr "(Usado na pesquisa de perfis, nunca é exibido para os outros)"
+#: ../../mod/dfrn_request.php:829
+msgid "Please answer the following:"
+msgstr "Por favor, entre com as informações solicitadas:"
 
-#: ../../mod/profiles.php:726
-msgid "Tell us about yourself..."
-msgstr "Fale um pouco sobre você..."
+#: ../../mod/dfrn_request.php:830
+#, php-format
+msgid "Does %s know you?"
+msgstr "%s conhece você?"
 
-#: ../../mod/profiles.php:727
-msgid "Hobbies/Interests"
-msgstr "Passatempos/Interesses"
+#: ../../mod/dfrn_request.php:834
+msgid "Add a personal note:"
+msgstr "Adicione uma anotação pessoal:"
 
-#: ../../mod/profiles.php:728
-msgid "Contact information and Social Networks"
-msgstr "Informações de contato e redes sociais"
+#: ../../mod/dfrn_request.php:837
+msgid "StatusNet/Federated Social Web"
+msgstr "StatusNet/Federated Social Web"
 
-#: ../../mod/profiles.php:729
-msgid "Musical interests"
-msgstr "Preferências musicais"
+#: ../../mod/dfrn_request.php:839
+#, php-format
+msgid ""
+" - please do not use this form.  Instead, enter %s into your Diaspora search"
+" bar."
+msgstr " - Por favor, não utilize esse formulário.  Ao invés disso, digite %s na sua barra de pesquisa do Diaspora."
 
-#: ../../mod/profiles.php:730
-msgid "Books, literature"
-msgstr "Livros, literatura"
+#: ../../mod/dfrn_request.php:840
+msgid "Your Identity Address:"
+msgstr "Seu endereço de identificação:"
 
-#: ../../mod/profiles.php:731
-msgid "Television"
-msgstr "Televisão"
+#: ../../mod/dfrn_request.php:843
+msgid "Submit Request"
+msgstr "Enviar solicitação"
 
-#: ../../mod/profiles.php:732
-msgid "Film/dance/culture/entertainment"
-msgstr "Filme/dança/cultura/entretenimento"
+#: ../../mod/fbrowser.php:113
+msgid "Files"
+msgstr "Arquivos"
 
-#: ../../mod/profiles.php:733
-msgid "Love/romance"
-msgstr "Amor/romance"
+#: ../../mod/api.php:76 ../../mod/api.php:102
+msgid "Authorize application connection"
+msgstr "Autorizar a conexão com a aplicação"
 
-#: ../../mod/profiles.php:734
-msgid "Work/employment"
-msgstr "Trabalho/emprego"
+#: ../../mod/api.php:77
+msgid "Return to your app and insert this Securty Code:"
+msgstr "Volte para a sua aplicação e digite este código de segurança:"
 
-#: ../../mod/profiles.php:735
-msgid "School/education"
-msgstr "Escola/educação"
+#: ../../mod/api.php:89
+msgid "Please login to continue."
+msgstr "Por favor, autentique-se para continuar."
 
-#: ../../mod/profiles.php:740
+#: ../../mod/api.php:104
 msgid ""
-"This is your <strong>public</strong> profile.<br />It <strong>may</strong> "
-"be visible to anybody using the internet."
-msgstr "Este é o seu perfil <strong>público</strong>.<br />Ele <strong>pode</strong> estar visível para qualquer um que acesse a Internet."
+"Do you want to authorize this application to access your posts and contacts,"
+" and/or create new posts for you?"
+msgstr "Deseja autorizar esta aplicação a acessar suas publicações e contatos e/ou criar novas publicações para você?"
 
-#: ../../mod/profiles.php:803
-msgid "Edit/Manage Profiles"
-msgstr "Editar/Gerenciar perfis"
+#: ../../mod/suggest.php:27
+msgid "Do you really want to delete this suggestion?"
+msgstr "Você realmente deseja deletar essa sugestão?"
 
-#: ../../mod/profiles.php:804 ../../boot.php:1611 ../../boot.php:1637
-msgid "Change profile photo"
-msgstr "Mudar a foto do perfil"
+#: ../../mod/suggest.php:74
+msgid ""
+"No suggestions available. If this is a new site, please try again in 24 "
+"hours."
+msgstr "Não existe nenhuma sugestão disponível. Se este for um site novo, por favor tente novamente em 24 horas."
 
-#: ../../mod/profiles.php:805 ../../boot.php:1612
-msgid "Create New Profile"
-msgstr "Criar um novo perfil"
+#: ../../mod/suggest.php:92
+msgid "Ignore/Hide"
+msgstr "Ignorar/Ocultar"
 
-#: ../../mod/profiles.php:816 ../../boot.php:1622
-msgid "Profile Image"
-msgstr "Imagem do perfil"
+#: ../../mod/nogroup.php:59
+msgid "Contacts who are not members of a group"
+msgstr "Contatos que não são membros de um grupo"
 
-#: ../../mod/profiles.php:818 ../../boot.php:1625
-msgid "visible to everybody"
-msgstr "visível para todos"
+#: ../../mod/fsuggest.php:20 ../../mod/fsuggest.php:92
+#: ../../mod/crepair.php:133 ../../mod/dfrn_confirm.php:120
+msgid "Contact not found."
+msgstr "O contato não foi encontrado."
 
-#: ../../mod/profiles.php:819 ../../boot.php:1626
-msgid "Edit visibility"
-msgstr "Editar a visibilidade"
+#: ../../mod/fsuggest.php:63
+msgid "Friend suggestion sent."
+msgstr "A sugestão de amigo foi enviada"
 
-#: ../../mod/editpost.php:17 ../../mod/editpost.php:27
-msgid "Item not found"
-msgstr "O item não foi encontrado"
+#: ../../mod/fsuggest.php:97
+msgid "Suggest Friends"
+msgstr "Sugerir amigos"
 
-#: ../../mod/editpost.php:39
-msgid "Edit post"
-msgstr "Editar a publicação"
+#: ../../mod/fsuggest.php:99
+#, php-format
+msgid "Suggest a friend for %s"
+msgstr "Sugerir um amigo para %s"
 
-#: ../../mod/editpost.php:111 ../../include/conversation.php:1092
-msgid "upload photo"
-msgstr "upload de foto"
+#: ../../mod/share.php:44
+msgid "link"
+msgstr "ligação"
 
-#: ../../mod/editpost.php:112 ../../include/conversation.php:1093
-msgid "Attach file"
-msgstr "Anexar arquivo"
+#: ../../mod/viewcontacts.php:41
+msgid "No contacts."
+msgstr "Nenhum contato."
 
-#: ../../mod/editpost.php:113 ../../include/conversation.php:1094
-msgid "attach file"
-msgstr "anexar arquivo"
+#: ../../mod/admin.php:57
+msgid "Theme settings updated."
+msgstr "As configurações do tema foram atualizadas."
 
-#: ../../mod/editpost.php:115 ../../include/conversation.php:1096
-msgid "web link"
-msgstr "link web"
+#: ../../mod/admin.php:104 ../../mod/admin.php:619
+msgid "Site"
+msgstr "Site"
 
-#: ../../mod/editpost.php:116 ../../include/conversation.php:1097
-msgid "Insert video link"
-msgstr "Inserir link de vídeo"
+#: ../../mod/admin.php:105 ../../mod/admin.php:998 ../../mod/admin.php:1013
+msgid "Users"
+msgstr "Usuários"
 
-#: ../../mod/editpost.php:117 ../../include/conversation.php:1098
-msgid "video link"
-msgstr "link de vídeo"
+#: ../../mod/admin.php:107 ../../mod/admin.php:1323 ../../mod/admin.php:1357
+msgid "Themes"
+msgstr "Temas"
 
-#: ../../mod/editpost.php:118 ../../include/conversation.php:1099
-msgid "Insert audio link"
-msgstr "Inserir link de áudio"
+#: ../../mod/admin.php:108
+msgid "DB updates"
+msgstr "Atualizações do BD"
 
-#: ../../mod/editpost.php:119 ../../include/conversation.php:1100
-msgid "audio link"
-msgstr "link de áudio"
+#: ../../mod/admin.php:123 ../../mod/admin.php:132 ../../mod/admin.php:1444
+msgid "Logs"
+msgstr "Relatórios"
 
-#: ../../mod/editpost.php:120 ../../include/conversation.php:1101
-msgid "Set your location"
-msgstr "Definir sua localização"
+#: ../../mod/admin.php:124
+msgid "probe address"
+msgstr "prova endereço"
 
-#: ../../mod/editpost.php:121 ../../include/conversation.php:1102
-msgid "set location"
-msgstr "configure localização"
+#: ../../mod/admin.php:125
+msgid "check webfinger"
+msgstr "verifica webfinger"
 
-#: ../../mod/editpost.php:122 ../../include/conversation.php:1103
-msgid "Clear browser location"
-msgstr "Limpar a localização do navegador"
+#: ../../mod/admin.php:131
+msgid "Plugin Features"
+msgstr "Recursos do plugin"
 
-#: ../../mod/editpost.php:123 ../../include/conversation.php:1104
-msgid "clear location"
-msgstr "apague localização"
+#: ../../mod/admin.php:133
+msgid "diagnostics"
+msgstr "diagnóstico"
 
-#: ../../mod/editpost.php:125 ../../include/conversation.php:1110
-msgid "Permission settings"
-msgstr "Configurações de permissão"
+#: ../../mod/admin.php:134
+msgid "User registrations waiting for confirmation"
+msgstr "Cadastros de novos usuários aguardando confirmação"
 
-#: ../../mod/editpost.php:133 ../../include/conversation.php:1119
-msgid "CC: email addresses"
-msgstr "CC: endereço de e-mail"
+#: ../../mod/admin.php:193 ../../mod/admin.php:952
+msgid "Normal Account"
+msgstr "Conta normal"
 
-#: ../../mod/editpost.php:134 ../../include/conversation.php:1120
-msgid "Public post"
-msgstr "Publicação pública"
+#: ../../mod/admin.php:194 ../../mod/admin.php:953
+msgid "Soapbox Account"
+msgstr "Conta de vitrine"
 
-#: ../../mod/editpost.php:137 ../../include/conversation.php:1106
-msgid "Set title"
-msgstr "Definir o título"
+#: ../../mod/admin.php:195 ../../mod/admin.php:954
+msgid "Community/Celebrity Account"
+msgstr "Conta de comunidade/celebridade"
 
-#: ../../mod/editpost.php:139 ../../include/conversation.php:1108
-msgid "Categories (comma-separated list)"
-msgstr "Categorias (lista separada por vírgulas)"
+#: ../../mod/admin.php:196 ../../mod/admin.php:955
+msgid "Automatic Friend Account"
+msgstr "Conta de amigo automático"
 
-#: ../../mod/editpost.php:140 ../../include/conversation.php:1122
-msgid "Example: bob@example.com, mary@example.com"
-msgstr "Por exemplo: joao@exemplo.com, maria@exemplo.com"
+#: ../../mod/admin.php:197
+msgid "Blog Account"
+msgstr "Conta de blog"
 
-#: ../../mod/friendica.php:59
-msgid "This is Friendica, version"
-msgstr "Este é o Friendica, versão"
+#: ../../mod/admin.php:198
+msgid "Private Forum"
+msgstr "Fórum privado"
 
-#: ../../mod/friendica.php:60
-msgid "running at web location"
-msgstr "sendo executado no endereço web"
+#: ../../mod/admin.php:217
+msgid "Message queues"
+msgstr "Fila de mensagens"
 
-#: ../../mod/friendica.php:62
-msgid ""
-"Please visit <a href=\"http://friendica.com\">Friendica.com</a> to learn "
-"more about the Friendica project."
-msgstr "Por favor, visite <a href=\"http://friendica.com\">friendica.com</a> para aprender mais sobre o projeto Friendica."
+#: ../../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
+msgid "Administration"
+msgstr "Administração"
 
-#: ../../mod/friendica.php:64
-msgid "Bug reports and issues: please visit"
-msgstr "Relatos e acompanhamentos de erros podem ser encontrados em"
+#: ../../mod/admin.php:223
+msgid "Summary"
+msgstr "Resumo"
 
-#: ../../mod/friendica.php:65
-msgid ""
-"Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - "
-"dot com"
-msgstr "Sugestões, elogios, doações, etc. - favor enviar e-mail para \"Info\" arroba Friendica - ponto com"
+#: ../../mod/admin.php:225
+msgid "Registered users"
+msgstr "Usuários registrados"
 
-#: ../../mod/friendica.php:79
-msgid "Installed plugins/addons/apps:"
-msgstr "Plugins/complementos/aplicações instaladas:"
+#: ../../mod/admin.php:227
+msgid "Pending registrations"
+msgstr "Registros pendentes"
 
-#: ../../mod/friendica.php:92
-msgid "No installed plugins/addons/apps"
-msgstr "Nenhum plugin/complemento/aplicativo instalado"
+#: ../../mod/admin.php:228
+msgid "Version"
+msgstr "Versão"
 
-#: ../../mod/api.php:76 ../../mod/api.php:102
-msgid "Authorize application connection"
-msgstr "Autorizar a conexão com a aplicação"
+#: ../../mod/admin.php:232
+msgid "Active plugins"
+msgstr "Plugins ativos"
 
-#: ../../mod/api.php:77
-msgid "Return to your app and insert this Securty Code:"
-msgstr "Volte para a sua aplicação e digite este código de segurança:"
+#: ../../mod/admin.php:255
+msgid "Can not parse base url. Must have at least <scheme>://<domain>"
+msgstr "Não foi possível analisar a URL. Ela deve conter pelo menos <scheme>://<domain>"
 
-#: ../../mod/api.php:89
-msgid "Please login to continue."
-msgstr "Por favor, autentique-se para continuar."
+#: ../../mod/admin.php:516
+msgid "Site settings updated."
+msgstr "As configurações do site foram atualizadas."
 
-#: ../../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 "Deseja autorizar esta aplicação a acessar suas publicações e contatos e/ou criar novas publicações para você?"
+#: ../../mod/admin.php:562
+msgid "No community page"
+msgstr "Sem página de comunidade"
 
-#: ../../mod/lockview.php:31 ../../mod/lockview.php:39
-msgid "Remote privacy information not available."
-msgstr "Não existe informação disponível sobre a privacidade remota."
+#: ../../mod/admin.php:563
+msgid "Public postings from users of this site"
+msgstr "Textos públicos de usuários deste sítio"
 
-#: ../../mod/lockview.php:48
-msgid "Visible to:"
-msgstr "Visível para:"
+#: ../../mod/admin.php:564
+msgid "Global community page"
+msgstr "Página global da comunidade"
 
-#: ../../mod/notes.php:44 ../../boot.php:2150
-msgid "Personal Notes"
-msgstr "Notas pessoais"
+#: ../../mod/admin.php:570
+msgid "At post arrival"
+msgstr "Na chegada da publicação"
 
-#: ../../mod/localtime.php:12 ../../include/bb2diaspora.php:148
-#: ../../include/event.php:11
-msgid "l F d, Y \\@ g:i A"
-msgstr "l F d, Y \\@ H:i"
+#: ../../mod/admin.php:579
+msgid "Multi user instance"
+msgstr "Instância multi usuário"
 
-#: ../../mod/localtime.php:24
-msgid "Time Conversion"
-msgstr "Conversão de tempo"
+#: ../../mod/admin.php:602
+msgid "Closed"
+msgstr "Fechado"
 
-#: ../../mod/localtime.php:26
-msgid ""
-"Friendica provides this service for sharing events with other networks and "
-"friends in unknown timezones."
-msgstr "Friendica provê esse serviço para compartilhar eventos com outras redes e amigos em fuso-horários desconhecidos."
+#: ../../mod/admin.php:603
+msgid "Requires approval"
+msgstr "Requer aprovação"
 
-#: ../../mod/localtime.php:30
-#, php-format
-msgid "UTC time: %s"
-msgstr "Hora UTC: %s"
+#: ../../mod/admin.php:604
+msgid "Open"
+msgstr "Aberto"
 
-#: ../../mod/localtime.php:33
-#, php-format
-msgid "Current timezone: %s"
-msgstr "Fuso horário atual: %s"
+#: ../../mod/admin.php:608
+msgid "No SSL policy, links will track page SSL state"
+msgstr "Nenhuma política de SSL, os links irão rastrear o estado SSL da página"
 
-#: ../../mod/localtime.php:36
-#, php-format
-msgid "Converted localtime: %s"
-msgstr "Horário local convertido: %s"
+#: ../../mod/admin.php:609
+msgid "Force all links to use SSL"
+msgstr "Forçar todos os links a utilizar SSL"
 
-#: ../../mod/localtime.php:41
-msgid "Please select your timezone:"
-msgstr "Por favor, selecione seu fuso horário:"
+#: ../../mod/admin.php:610
+msgid "Self-signed certificate, use SSL for local links only (discouraged)"
+msgstr "Certificado auto-assinado, usar SSL somente para links locais (não recomendado)"
 
-#: ../../mod/poke.php:192
-msgid "Poke/Prod"
-msgstr "Cutucar/Incitar"
+#: ../../mod/admin.php:622
+msgid "File upload"
+msgstr "Envio de arquivo"
 
-#: ../../mod/poke.php:193
-msgid "poke, prod or do other things to somebody"
-msgstr "Cutuca, incita ou faz outras coisas com alguém"
+#: ../../mod/admin.php:623
+msgid "Policies"
+msgstr "Políticas"
 
-#: ../../mod/poke.php:194
-msgid "Recipient"
-msgstr "Destinatário"
+#: ../../mod/admin.php:624
+msgid "Advanced"
+msgstr "Avançado"
 
-#: ../../mod/poke.php:195
-msgid "Choose what you wish to do to recipient"
-msgstr "Selecione o que você deseja fazer com o destinatário"
+#: ../../mod/admin.php:625
+msgid "Performance"
+msgstr "Performance"
 
-#: ../../mod/poke.php:198
-msgid "Make this post private"
-msgstr "Fazer com que essa publicação se torne privada"
+#: ../../mod/admin.php:626
+msgid ""
+"Relocate - WARNING: advanced function. Could make this server unreachable."
+msgstr "Relocação - ATENÇÃO: função avançada. Pode tornar esse servidor inacessível."
 
-#: ../../mod/invite.php:27
-msgid "Total invitation limit exceeded."
-msgstr "Limite de convites totais excedido."
+#: ../../mod/admin.php:629
+msgid "Site name"
+msgstr "Nome do site"
 
-#: ../../mod/invite.php:49
-#, php-format
-msgid "%s : Not a valid email address."
-msgstr "%s : Não é um endereço de e-mail válido."
+#: ../../mod/admin.php:630
+msgid "Host name"
+msgstr "Nome do host"
 
-#: ../../mod/invite.php:73
-msgid "Please join us on Friendica"
-msgstr "Por favor, junte-se à nós na Friendica"
+#: ../../mod/admin.php:631
+msgid "Sender Email"
+msgstr "enviador de email"
 
-#: ../../mod/invite.php:84
-msgid "Invitation limit exceeded. Please contact your site administrator."
-msgstr "Limite de convites ultrapassado. Favor contactar o administrador do sítio."
+#: ../../mod/admin.php:632
+msgid "Banner/Logo"
+msgstr "Banner/Logo"
 
-#: ../../mod/invite.php:89
-#, php-format
-msgid "%s : Message delivery failed."
-msgstr "%s : Não foi possível enviar a mensagem."
+#: ../../mod/admin.php:633
+msgid "Shortcut icon"
+msgstr "ícone de atalho"
 
-#: ../../mod/invite.php:93
-#, php-format
-msgid "%d message sent."
-msgid_plural "%d messages sent."
-msgstr[0] "%d mensagem enviada."
-msgstr[1] "%d mensagens enviadas."
+#: ../../mod/admin.php:634
+msgid "Touch icon"
+msgstr "ícone de toque"
 
-#: ../../mod/invite.php:112
-msgid "You have no more invitations available"
-msgstr "Você não possui mais convites disponíveis"
+#: ../../mod/admin.php:635
+msgid "Additional Info"
+msgstr "Informação adicional"
 
-#: ../../mod/invite.php:120
-#, php-format
+#: ../../mod/admin.php:635
 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 "Visite %s para obter uma lista de sites públicos onde você pode se cadastrar. Membros da friendica podem se conectar, mesmo que estejam em sites separados. Além disso você também pode se conectar com membros de várias outras redes sociais."
+"For public servers: you can add additional information here that will be "
+"listed at dir.friendica.com/siteinfo."
+msgstr "Para servidores públicos: você pode adicionar informações aqui que serão listadas em dir.friendica.com/siteinfo."
 
-#: ../../mod/invite.php:122
-#, php-format
-msgid ""
-"To accept this invitation, please visit and register at %s or any other "
-"public Friendica website."
-msgstr "Para aceitar esse convite, por favor cadastre-se em %s ou qualquer outro site friendica público."
+#: ../../mod/admin.php:636
+msgid "System language"
+msgstr "Idioma do sistema"
 
-#: ../../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 "Os sites friendica estão todos interconectados para criar uma grande rede social com foco na privacidade e controlada por seus membros, que também podem se conectar com várias redes sociais tradicionais. Dê uma olhada em %s para uma lista de sites friendica onde você pode se cadastrar."
+#: ../../mod/admin.php:637
+msgid "System theme"
+msgstr "Tema do sistema"
 
-#: ../../mod/invite.php:126
+#: ../../mod/admin.php:637
 msgid ""
-"Our apologies. This system is not currently configured to connect with other"
-" public sites or invite members."
-msgstr "Desculpe, mas esse sistema não está configurado para conectar-se com outros sites públicos nem permite convidar novos membros."
-
-#: ../../mod/invite.php:132
-msgid "Send invitations"
-msgstr "Enviar convites."
+"Default system theme - may be over-ridden by user profiles - <a href='#' "
+"id='cnftheme'>change theme settings</a>"
+msgstr "Tema padrão do sistema. Pode ser substituído nos perfis de usuário -  <a href='#' id='cnftheme'>alterar configurações do tema</a>"
 
-#: ../../mod/invite.php:133
-msgid "Enter email addresses, one per line:"
-msgstr "Digite os endereços de e-mail, um por linha:"
+#: ../../mod/admin.php:638
+msgid "Mobile system theme"
+msgstr "Tema do sistema para dispositivos móveis"
 
-#: ../../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 "Você está convidado a se juntar a mim e outros amigos em friendica - e também nos ajudar a criar uma experiência social melhor na web."
+#: ../../mod/admin.php:638
+msgid "Theme for mobile devices"
+msgstr "Tema para dispositivos móveis"
 
-#: ../../mod/invite.php:137
-msgid "You will need to supply this invitation code: $invite_code"
-msgstr "Você preciso informar este código de convite: $invite_code"
+#: ../../mod/admin.php:639
+msgid "SSL link policy"
+msgstr "Política de link SSL"
 
-#: ../../mod/invite.php:137
-msgid ""
-"Once you have registered, please connect with me via my profile page at:"
-msgstr "Após você se registrar, por favor conecte-se comigo através da minha página de perfil em:"
+#: ../../mod/admin.php:639
+msgid "Determines whether generated links should be forced to use SSL"
+msgstr "Determina se os links gerados devem ser forçados a utilizar SSL"
 
-#: ../../mod/invite.php:139
+#: ../../mod/admin.php:640
+msgid "Force SSL"
+msgstr "Forçar SSL"
+
+#: ../../mod/admin.php:640
 msgid ""
-"For more information about the Friendica project and why we feel it is "
-"important, please visit http://friendica.com"
-msgstr "Para mais informações sobre o projeto Friendica e porque nós achamos que ele é importante, por favor visite-nos em http://friendica.com."
+"Force all Non-SSL requests to SSL - Attention: on some systems it could lead"
+" to endless loops."
+msgstr "Forçar todas as solicitações não-SSL para SSL - Atenção: em alguns sistemas isso pode levar a loops infinitos."
 
-#: ../../mod/photos.php:52 ../../boot.php:2129
-msgid "Photo Albums"
-msgstr "Álbuns de fotos"
+#: ../../mod/admin.php:641
+msgid "Old style 'Share'"
+msgstr "Estilo antigo do 'Compartilhar' "
 
-#: ../../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
-#: ../../view/theme/diabook/theme.php:499
-msgid "Contact Photos"
-msgstr "Fotos dos contatos"
+#: ../../mod/admin.php:641
+msgid "Deactivates the bbcode element 'share' for repeating items."
+msgstr "Desativa o elemento bbcode 'compartilhar' para repetir ítens."
 
-#: ../../mod/photos.php:67 ../../mod/photos.php:1262 ../../mod/photos.php:1819
-msgid "Upload New Photos"
-msgstr "Enviar novas fotos"
+#: ../../mod/admin.php:642
+msgid "Hide help entry from navigation menu"
+msgstr "Oculta a entrada 'Ajuda' do menu de navegação"
 
-#: ../../mod/photos.php:144
-msgid "Contact information unavailable"
-msgstr "A informação de contato não está disponível"
+#: ../../mod/admin.php:642
+msgid ""
+"Hides the menu entry for the Help pages from the navigation menu. You can "
+"still access it calling /help directly."
+msgstr "Oculta a entrada de menu para as páginas de Ajuda do menu de navegação. Ainda será possível acessá-las chamando /help diretamente."
 
-#: ../../mod/photos.php:165
-msgid "Album not found."
-msgstr "O álbum não foi encontrado."
+#: ../../mod/admin.php:643
+msgid "Single user instance"
+msgstr "Instância de usuário único"
 
-#: ../../mod/photos.php:188 ../../mod/photos.php:200 ../../mod/photos.php:1204
-msgid "Delete Album"
-msgstr "Excluir o álbum"
+#: ../../mod/admin.php:643
+msgid "Make this instance multi-user or single-user for the named user"
+msgstr "Faça essa instância multiusuário ou usuário único para o usuário em questão"
 
-#: ../../mod/photos.php:198
-msgid "Do you really want to delete this photo album and all its photos?"
-msgstr "Você realmente deseja deletar esse álbum de fotos e todas as suas fotos?"
+#: ../../mod/admin.php:644
+msgid "Maximum image size"
+msgstr "Tamanho máximo da imagem"
 
-#: ../../mod/photos.php:278 ../../mod/photos.php:289 ../../mod/photos.php:1515
-msgid "Delete Photo"
-msgstr "Excluir a foto"
+#: ../../mod/admin.php:644
+msgid ""
+"Maximum size in bytes of uploaded images. Default is 0, which means no "
+"limits."
+msgstr "Tamanho máximo, em bytes, das imagens enviadas. O padrão é 0, o que significa sem limites"
 
-#: ../../mod/photos.php:287
-msgid "Do you really want to delete this photo?"
-msgstr "Você realmente deseja deletar essa foto?"
+#: ../../mod/admin.php:645
+msgid "Maximum image length"
+msgstr "Tamanho máximo da imagem"
 
-#: ../../mod/photos.php:662
-#, php-format
-msgid "%1$s was tagged in %2$s by %3$s"
-msgstr "%1$s foi marcado em %2$s por %3$s"
+#: ../../mod/admin.php:645
+msgid ""
+"Maximum length in pixels of the longest side of uploaded images. Default is "
+"-1, which means no limits."
+msgstr "Tamanho máximo em pixels do lado mais largo das imagens enviadas. O padrão é -1, que significa sem limites."
 
-#: ../../mod/photos.php:662
-msgid "a photo"
-msgstr "uma foto"
+#: ../../mod/admin.php:646
+msgid "JPEG image quality"
+msgstr "Qualidade da imagem JPEG"
 
-#: ../../mod/photos.php:767
-msgid "Image exceeds size limit of "
-msgstr "A imagem excede o tamanho máximo de "
+#: ../../mod/admin.php:646
+msgid ""
+"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is "
+"100, which is full quality."
+msgstr "Imagens JPEG enviadas serão salvas com essa qualidade [0-100]. O padrão é 100, que significa a melhor qualidade."
 
-#: ../../mod/photos.php:775
-msgid "Image file is empty."
-msgstr "O arquivo de imagem está vazio."
+#: ../../mod/admin.php:648
+msgid "Register policy"
+msgstr "Política de registro"
 
-#: ../../mod/photos.php:930
-msgid "No photos selected"
-msgstr "Não foi selecionada nenhuma foto"
+#: ../../mod/admin.php:649
+msgid "Maximum Daily Registrations"
+msgstr "Registros Diários Máximos"
 
-#: ../../mod/photos.php:1094
-#, php-format
-msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."
-msgstr "Você está usando %1$.2f Mbytes dos %2$.2f Mbytes liberados para armazenamento de fotos."
+#: ../../mod/admin.php:649
+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 "Se o registro é permitido acima, isso configura o número máximo de registros de novos usuários a serem aceitos por dia. Se o registro está configurado para 'fechado/closed' ,  essa configuração não tem efeito."
 
-#: ../../mod/photos.php:1129
-msgid "Upload Photos"
-msgstr "Enviar fotos"
+#: ../../mod/admin.php:650
+msgid "Register text"
+msgstr "Texto de registro"
 
-#: ../../mod/photos.php:1133 ../../mod/photos.php:1199
-msgid "New album name: "
-msgstr "Nome do novo álbum: "
+#: ../../mod/admin.php:650
+msgid "Will be displayed prominently on the registration page."
+msgstr "Será exibido com destaque na página de registro."
 
-#: ../../mod/photos.php:1134
-msgid "or existing album name: "
-msgstr "ou o nome de um álbum já existente: "
+#: ../../mod/admin.php:651
+msgid "Accounts abandoned after x days"
+msgstr "Contas abandonadas após x dias"
 
-#: ../../mod/photos.php:1135
-msgid "Do not show a status post for this upload"
-msgstr "Não exiba uma publicação de status para este envio"
+#: ../../mod/admin.php:651
+msgid ""
+"Will not waste system resources polling external sites for abandonded "
+"accounts. Enter 0 for no time limit."
+msgstr "Não desperdiçará recursos do sistema captando de sites externos para contas abandonadas. Digite 0 para nenhum limite de tempo."
 
-#: ../../mod/photos.php:1137 ../../mod/photos.php:1510
-msgid "Permissions"
-msgstr "Permissões"
+#: ../../mod/admin.php:652
+msgid "Allowed friend domains"
+msgstr "Domínios de amigos permitidos"
 
-#: ../../mod/photos.php:1148
-msgid "Private Photo"
-msgstr "Foto Privada"
+#: ../../mod/admin.php:652
+msgid ""
+"Comma separated list of domains which are allowed to establish friendships "
+"with this site. Wildcards are accepted. Empty to allow any domains"
+msgstr "Lista dos domínios que têm permissão para estabelecer amizades com esse site, separados por vírgula. Caracteres curinga são aceitos. Deixe em branco para permitir qualquer domínio."
 
-#: ../../mod/photos.php:1149
-msgid "Public Photo"
-msgstr "Foto Pública"
+#: ../../mod/admin.php:653
+msgid "Allowed email domains"
+msgstr "Domínios de e-mail permitidos"
 
-#: ../../mod/photos.php:1212
-msgid "Edit Album"
-msgstr "Editar o álbum"
+#: ../../mod/admin.php:653
+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 "Lista de domínios separados por vírgula, que são permitidos em endereços de e-mail para registro nesse site. Caracteres-curinga são aceitos. Vazio para aceitar qualquer domínio"
 
-#: ../../mod/photos.php:1218
-msgid "Show Newest First"
-msgstr "Exibir as mais recentes primeiro"
+#: ../../mod/admin.php:654
+msgid "Block public"
+msgstr "Bloquear acesso público"
 
-#: ../../mod/photos.php:1220
-msgid "Show Oldest First"
-msgstr "Exibir as mais antigas primeiro"
+#: ../../mod/admin.php:654
+msgid ""
+"Check to block public access to all otherwise public personal pages on this "
+"site unless you are currently logged in."
+msgstr "Marque para bloquear o acesso público a todas as páginas desse site, com exceção das páginas pessoais públicas, a não ser que a pessoa esteja autenticada."
 
-#: ../../mod/photos.php:1248 ../../mod/photos.php:1802
-msgid "View Photo"
-msgstr "Ver a foto"
+#: ../../mod/admin.php:655
+msgid "Force publish"
+msgstr "Forçar a listagem"
 
-#: ../../mod/photos.php:1294
-msgid "Permission denied. Access to this item may be restricted."
-msgstr "Permissão negada. O acesso a este item pode estar restrito."
+#: ../../mod/admin.php:655
+msgid ""
+"Check to force all profiles on this site to be listed in the site directory."
+msgstr "Marque para forçar todos os perfis desse site a serem listados no diretório do site."
 
-#: ../../mod/photos.php:1296
-msgid "Photo not available"
-msgstr "A foto não está disponível"
+#: ../../mod/admin.php:656
+msgid "Global directory update URL"
+msgstr "URL de atualização do diretório global"
 
-#: ../../mod/photos.php:1352
-msgid "View photo"
-msgstr "Ver a imagem"
+#: ../../mod/admin.php:656
+msgid ""
+"URL to update the global directory. If this is not set, the global directory"
+" is completely unavailable to the application."
+msgstr "URL para atualizar o diretório global. Se isso não for definido, o diretório global não estará disponível neste site."
 
-#: ../../mod/photos.php:1352
-msgid "Edit photo"
-msgstr "Editar a foto"
+#: ../../mod/admin.php:657
+msgid "Allow threaded items"
+msgstr "Habilita itens aninhados"
 
-#: ../../mod/photos.php:1353
-msgid "Use as profile photo"
-msgstr "Usar como uma foto de perfil"
+#: ../../mod/admin.php:657
+msgid "Allow infinite level threading for items on this site."
+msgstr "Habilita nível infinito de aninhamento (threading) para itens."
 
-#: ../../mod/photos.php:1378
-msgid "View Full Size"
-msgstr "Ver no tamanho real"
+#: ../../mod/admin.php:658
+msgid "Private posts by default for new users"
+msgstr "Publicações privadas por padrão para novos usuários"
 
-#: ../../mod/photos.php:1457
-msgid "Tags: "
-msgstr "Etiquetas: "
+#: ../../mod/admin.php:658
+msgid ""
+"Set default post permissions for all new members to the default privacy "
+"group rather than public."
+msgstr "Define as permissões padrão de publicação de todos os novos membros para o grupo de privacidade padrão, ao invés de torná-las públicas."
 
-#: ../../mod/photos.php:1460
-msgid "[Remove any tag]"
-msgstr "[Remover qualquer etiqueta]"
+#: ../../mod/admin.php:659
+msgid "Don't include post content in email notifications"
+msgstr "Não incluir o conteúdo da postagem nas notificações de email"
 
-#: ../../mod/photos.php:1500
-msgid "Rotate CW (right)"
-msgstr "Rotacionar para direita"
+#: ../../mod/admin.php:659
+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 "Não incluir o conteúdo de uma postagem/comentário/mensagem privada/etc. em notificações de email que são enviadas para fora desse sítio, como medida de segurança."
 
-#: ../../mod/photos.php:1501
-msgid "Rotate CCW (left)"
-msgstr "Rotacionar para esquerda"
+#: ../../mod/admin.php:660
+msgid "Disallow public access to addons listed in the apps menu."
+msgstr "Disabilita acesso público a addons listados no menu de aplicativos."
 
-#: ../../mod/photos.php:1503
-msgid "New album name"
-msgstr "Novo nome para o álbum"
+#: ../../mod/admin.php:660
+msgid ""
+"Checking this box will restrict addons listed in the apps menu to members "
+"only."
+msgstr "Marcar essa caixa ira restringir os addons listados no menu de aplicativos aos membros somente."
 
-#: ../../mod/photos.php:1506
-msgid "Caption"
-msgstr "Legenda"
+#: ../../mod/admin.php:661
+msgid "Don't embed private images in posts"
+msgstr "Não inclua imagens privadas em publicações"
 
-#: ../../mod/photos.php:1508
-msgid "Add a Tag"
-msgstr "Adicionar uma etiqueta"
+#: ../../mod/admin.php:661
+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 "
+"photos will have to authenticate and load each image, which may take a "
+"while."
+msgstr "Não substitue fotos privativas guardadas localmente em publicações por uma cópia inclusa da imagem. Isso significa que os contatos que recebem publicações contendo fotos privadas terão que autenticar e carregar cada imagem, o que pode levar algum tempo."
 
-#: ../../mod/photos.php:1512
+#: ../../mod/admin.php:662
+msgid "Allow Users to set remote_self"
+msgstr "Permite usuários configurarem remote_self"
+
+#: ../../mod/admin.php:662
 msgid ""
-"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
-msgstr "Por exemplo: @joao, @Joao_da_Silva, @joao@exemplo.com, #Minas_Gerais, #acampamento"
+"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 "Ao marcar isto, todos os usuários poderão marcar cada contato como um remote_self na opção de reparar contato. Marcar isto para um contato produz espelhamento de toda publicação deste contato no fluxo dos usuários"
 
-#: ../../mod/photos.php:1521
-msgid "Private photo"
-msgstr "Foto privada"
+#: ../../mod/admin.php:663
+msgid "Block multiple registrations"
+msgstr "Bloquear registros repetidos"
 
-#: ../../mod/photos.php:1522
-msgid "Public photo"
-msgstr "Foto pública"
+#: ../../mod/admin.php:663
+msgid "Disallow users to register additional accounts for use as pages."
+msgstr "Desabilitar o registro de contas adicionais para serem usadas como páginas."
 
-#: ../../mod/photos.php:1544 ../../include/conversation.php:1090
-msgid "Share"
-msgstr "Compartilhar"
+#: ../../mod/admin.php:664
+msgid "OpenID support"
+msgstr "Suporte ao OpenID"
 
-#: ../../mod/photos.php:1817
-msgid "Recent Photos"
-msgstr "Fotos recentes"
+#: ../../mod/admin.php:664
+msgid "OpenID support for registration and logins."
+msgstr "Suporte ao OpenID para registros e autenticações."
 
-#: ../../mod/regmod.php:55
-msgid "Account approved."
-msgstr "A conta foi aprovada."
+#: ../../mod/admin.php:665
+msgid "Fullname check"
+msgstr "Verificar nome completo"
 
-#: ../../mod/regmod.php:92
-#, php-format
-msgid "Registration revoked for %s"
-msgstr "O registro de %s foi revogado"
+#: ../../mod/admin.php:665
+msgid ""
+"Force users to register with a space between firstname and lastname in Full "
+"name, as an antispam measure"
+msgstr "Forçar os usuários a usar um espaço em branco entre o nome e o sobrenome, ao preencherem o nome completo no registro, como uma medida contra o spam"
 
-#: ../../mod/regmod.php:104
-msgid "Please login."
-msgstr "Por favor, autentique-se."
+#: ../../mod/admin.php:666
+msgid "UTF-8 Regular expressions"
+msgstr "Expressões regulares UTF-8"
 
-#: ../../mod/uimport.php:66
-msgid "Move account"
-msgstr "Mover conta"
+#: ../../mod/admin.php:666
+msgid "Use PHP UTF8 regular expressions"
+msgstr "Use expressões regulares do PHP em UTF8"
 
-#: ../../mod/uimport.php:67
-msgid "You can import an account from another Friendica server."
-msgstr "Você pode importar um conta de outro sevidor Friendica."
+#: ../../mod/admin.php:667
+msgid "Community Page Style"
+msgstr "Estilo da página de comunidade"
 
-#: ../../mod/uimport.php:68
+#: ../../mod/admin.php:667
 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 "Você precisa exportar sua conta de um servidor antigo e fazer o upload aqui. Nós recriaremos sua conta antiga aqui com todos os seus contatos. Nós também tentaremos informar seus amigos que você se mudou para cá."
+"Type of community page to show. 'Global community' shows every public "
+"posting from an open distributed network that arrived on this server."
+msgstr "Tipo de página de comunidade para mostrar. 'Comunidade Global' mostra todos os textos públicos de uma rede aberta e distribuída que chega neste servidor."
 
-#: ../../mod/uimport.php:69
+#: ../../mod/admin.php:668
+msgid "Posts per user on community page"
+msgstr "Textos por usuário na página da comunidade"
+
+#: ../../mod/admin.php:668
 msgid ""
-"This feature is experimental. We can't import contacts from the OStatus "
-"network (statusnet/identi.ca) or from Diaspora"
-msgstr "Esse recurso é experimental. Nós não podemos importar contatos de uma rede OStatus (statusnet/identi.ca) ou do Diaspora"
+"The maximum number of posts per user on the community page. (Not valid for "
+"'Global Community')"
+msgstr "O número máximo de textos por usuário na página da comunidade. (Não é válido para 'comunidade global')"
 
-#: ../../mod/uimport.php:70
-msgid "Account file"
-msgstr "Arquivo de conta"
+#: ../../mod/admin.php:669
+msgid "Enable OStatus support"
+msgstr "Habilitar suporte ao OStatus"
 
-#: ../../mod/uimport.php:70
+#: ../../mod/admin.php:669
 msgid ""
-"To export your account, go to \"Settings->Export your personal data\" and "
-"select \"Export account\""
-msgstr "Para exportar a sua conta, entre em \"Configurações->Exportar dados pessoais\" e selecione \"Exportar conta\""
+"Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All "
+"communications in OStatus are public, so privacy warnings will be "
+"occasionally displayed."
+msgstr "Fornece compatibilidade OStatus (StatusNet, GNU Social, etc.). Todas as comunicações no OStatus são públicas, assim avisos de privacidade serão ocasionalmente mostrados."
 
-#: ../../mod/attach.php:8
-msgid "Item not available."
-msgstr "O item não está disponível."
+#: ../../mod/admin.php:670
+msgid "OStatus conversation completion interval"
+msgstr "Intervalo de finalização da conversação OStatus "
 
-#: ../../mod/attach.php:20
-msgid "Item was not found."
-msgstr "O item não foi encontrado."
+#: ../../mod/admin.php:670
+msgid ""
+"How often shall the poller check for new entries in OStatus conversations? "
+"This can be a very ressource task."
+msgstr "De quanto em quanto tempo o \"buscador\" (poller) deve checar por novas entradas numa conversação OStatus? Essa pode ser uma tarefa bem demorada."
 
-#: ../../boot.php:749
-msgid "Delete this item?"
-msgstr "Excluir este item?"
+#: ../../mod/admin.php:671
+msgid "Enable Diaspora support"
+msgstr "Habilitar suporte ao Diaspora"
 
-#: ../../boot.php:752
-msgid "show fewer"
-msgstr "exibir menos"
+#: ../../mod/admin.php:671
+msgid "Provide built-in Diaspora network compatibility."
+msgstr "Fornece compatibilidade nativa com a rede Diaspora."
 
-#: ../../boot.php:1122
-#, php-format
-msgid "Update %s failed. See error logs."
-msgstr "Atualização %s falhou. Vide registro de erros (log)."
+#: ../../mod/admin.php:672
+msgid "Only allow Friendica contacts"
+msgstr "Permitir somente contatos Friendica"
 
-#: ../../boot.php:1240
-msgid "Create a New Account"
-msgstr "Criar uma nova conta"
+#: ../../mod/admin.php:672
+msgid ""
+"All contacts must use Friendica protocols. All other built-in communication "
+"protocols disabled."
+msgstr "Todos os contatos devem usar protocolos Friendica. Todos os outros protocolos de comunicação embarcados estão desabilitados"
 
-#: ../../boot.php:1265 ../../include/nav.php:73
-msgid "Logout"
-msgstr "Sair"
+#: ../../mod/admin.php:673
+msgid "Verify SSL"
+msgstr "Verificar SSL"
 
-#: ../../boot.php:1268
-msgid "Nickname or Email address: "
-msgstr "Identificação ou endereço de e-mail: "
+#: ../../mod/admin.php:673
+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 "Caso deseje, você pode habilitar a restrição de certificações. Isso significa que você não poderá conectar-se a nenhum site que use certificados auto-assinados."
 
-#: ../../boot.php:1269
-msgid "Password: "
-msgstr "Senha: "
+#: ../../mod/admin.php:674
+msgid "Proxy user"
+msgstr "Usuário do proxy"
 
-#: ../../boot.php:1270
-msgid "Remember me"
-msgstr "Lembre-se de mim"
+#: ../../mod/admin.php:675
+msgid "Proxy URL"
+msgstr "URL do proxy"
 
-#: ../../boot.php:1273
-msgid "Or login using OpenID: "
-msgstr "Ou login usando OpendID:"
+#: ../../mod/admin.php:676
+msgid "Network timeout"
+msgstr "Limite de tempo da rede"
 
-#: ../../boot.php:1279
-msgid "Forgot your password?"
-msgstr "Esqueceu a sua senha?"
+#: ../../mod/admin.php:676
+msgid "Value is in seconds. Set to 0 for unlimited (not recommended)."
+msgstr "Valor em segundos. Defina como 0 para ilimitado (não recomendado)."
 
-#: ../../boot.php:1282
-msgid "Website Terms of Service"
-msgstr "Termos de Serviço do Website"
+#: ../../mod/admin.php:677
+msgid "Delivery interval"
+msgstr "Intervalo de envio"
 
-#: ../../boot.php:1283
-msgid "terms of service"
-msgstr "termos de serviço"
+#: ../../mod/admin.php:677
+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 "Postergue o processo de entrega em background por essa quantidade de segundos visando reduzir a carga do sistema. Recomendado: 4-5 para servidores compartilhados (shared hosts), 2-3 para servidores privados virtuais (VPS). 0-1 para grandes servidores dedicados."
 
-#: ../../boot.php:1285
-msgid "Website Privacy Policy"
-msgstr "Política de Privacidade do Website"
+#: ../../mod/admin.php:678
+msgid "Poll interval"
+msgstr "Intervalo da busca (polling)"
 
-#: ../../boot.php:1286
-msgid "privacy policy"
-msgstr "política de privacidade"
+#: ../../mod/admin.php:678
+msgid ""
+"Delay background polling processes by this many seconds to reduce system "
+"load. If 0, use delivery interval."
+msgstr "Postergue o processo de entrega em background por essa quantidade de segundos visando reduzir a carga do sistema. Se 0, use intervalo de entrega."
 
-#: ../../boot.php:1419
-msgid "Requested account is not available."
-msgstr "Conta solicitada não disponível"
+#: ../../mod/admin.php:679
+msgid "Maximum Load Average"
+msgstr "Média de Carga Máxima"
 
-#: ../../boot.php:1501 ../../boot.php:1635
-#: ../../include/profile_advanced.php:84
-msgid "Edit profile"
-msgstr "Editar perfil"
+#: ../../mod/admin.php:679
+msgid ""
+"Maximum system load before delivery and poll processes are deferred - "
+"default 50."
+msgstr "Carga do sistema máxima antes que os processos de entrega e busca sejam postergados - padrão 50."
 
-#: ../../boot.php:1600
-msgid "Message"
-msgstr "Mensagem"
+#: ../../mod/admin.php:681
+msgid "Use MySQL full text engine"
+msgstr "Use o engine de texto completo (full text) do MySQL"
 
-#: ../../boot.php:1606 ../../include/nav.php:175
-msgid "Profiles"
-msgstr "Perfis"
+#: ../../mod/admin.php:681
+msgid ""
+"Activates the full text engine. Speeds up search - but can only search for "
+"four and more characters."
+msgstr "Ativa a engine de texto completo (full text). Acelera a busca - mas só pode buscar apenas por 4 ou mais caracteres."
 
-#: ../../boot.php:1606
-msgid "Manage/edit profiles"
-msgstr "Gerenciar/editar perfis"
+#: ../../mod/admin.php:682
+msgid "Suppress Language"
+msgstr "Retira idioma"
 
-#: ../../boot.php:1706
-msgid "Network:"
-msgstr "Rede:"
+#: ../../mod/admin.php:682
+msgid "Suppress language information in meta information about a posting."
+msgstr "Retira informações sobre idioma nas meta informações sobre uma publicação."
 
-#: ../../boot.php:1736 ../../boot.php:1822
-msgid "g A l F d"
-msgstr "G l d F"
+#: ../../mod/admin.php:683
+msgid "Suppress Tags"
+msgstr "Suprime etiquetas"
 
-#: ../../boot.php:1737 ../../boot.php:1823
-msgid "F d"
-msgstr "F d"
+#: ../../mod/admin.php:683
+msgid "Suppress showing a list of hashtags at the end of the posting."
+msgstr "suprime mostrar uma lista de hashtags no final de cada texto."
 
-#: ../../boot.php:1782 ../../boot.php:1863
-msgid "[today]"
-msgstr "[hoje]"
+#: ../../mod/admin.php:684
+msgid "Path to item cache"
+msgstr "Diretório do cache de item"
 
-#: ../../boot.php:1794
-msgid "Birthday Reminders"
-msgstr "Lembretes de aniversário"
+#: ../../mod/admin.php:685
+msgid "Cache duration in seconds"
+msgstr "Duração do cache em segundos"
 
-#: ../../boot.php:1795
-msgid "Birthdays this week:"
-msgstr "Aniversários nesta semana:"
+#: ../../mod/admin.php:685
+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 "Por quanto tempo os arquivos de cache devem ser mantidos? O valor padrão é 86400 segundos (um dia). Para desativar o cache, defina o valor para -1."
 
-#: ../../boot.php:1856
-msgid "[No description]"
-msgstr "[Sem descrição]"
+#: ../../mod/admin.php:686
+msgid "Maximum numbers of comments per post"
+msgstr "O número máximo de comentários por post"
 
-#: ../../boot.php:1874
-msgid "Event Reminders"
-msgstr "Lembretes de eventos"
+#: ../../mod/admin.php:686
+msgid "How much comments should be shown for each post? Default value is 100."
+msgstr "Quanto comentários devem ser mostradas em cada post? O valor padrão é 100."
 
-#: ../../boot.php:1875
-msgid "Events this week:"
-msgstr "Eventos esta semana:"
+#: ../../mod/admin.php:687
+msgid "Path for lock file"
+msgstr "Diretório do arquivo de trava"
 
-#: ../../boot.php:2112 ../../include/nav.php:76
-msgid "Status"
-msgstr "Status"
+#: ../../mod/admin.php:688
+msgid "Temp path"
+msgstr "Diretório Temp"
 
-#: ../../boot.php:2115
-msgid "Status Messages and Posts"
-msgstr "Mensagem de Estado (status) e Publicações"
+#: ../../mod/admin.php:689
+msgid "Base path to installation"
+msgstr "Diretório base para instalação"
 
-#: ../../boot.php:2122
-msgid "Profile Details"
-msgstr "Detalhe do Perfil"
+#: ../../mod/admin.php:690
+msgid "Disable picture proxy"
+msgstr "Disabilitar proxy de imagem"
 
-#: ../../boot.php:2133 ../../boot.php:2136 ../../include/nav.php:79
-msgid "Videos"
-msgstr "Vídeos"
+#: ../../mod/admin.php:690
+msgid ""
+"The picture proxy increases performance and privacy. It shouldn't be used on"
+" systems with very low bandwith."
+msgstr "O proxy de imagem aumenta o desempenho e privacidade. Ele não deve ser usado em sistemas com largura de banda muito baixa."
 
-#: ../../boot.php:2146
-msgid "Events and Calendar"
-msgstr "Eventos e Agenda"
+#: ../../mod/admin.php:691
+msgid "Enable old style pager"
+msgstr "Habilita estilo antigo de paginação"
 
-#: ../../boot.php:2153
-msgid "Only You Can See This"
-msgstr "Somente Você Pode Ver Isso"
+#: ../../mod/admin.php:691
+msgid ""
+"The old style pager has page numbers but slows down massively the page "
+"speed."
+msgstr "O estilo antigo de paginação tem número de páginas mas dimunui muito a velocidade das páginas."
 
-#: ../../object/Item.php:94
-msgid "This entry was edited"
-msgstr "Essa entrada foi editada"
+#: ../../mod/admin.php:692
+msgid "Only search in tags"
+msgstr "Somente pesquisa nas estiquetas"
 
-#: ../../object/Item.php:208
-msgid "ignore thread"
-msgstr "ignorar tópico"
+#: ../../mod/admin.php:692
+msgid "On large systems the text search can slow down the system extremely."
+msgstr "Em grandes sistemas a pesquisa de texto pode deixar o sistema muito lento."
 
-#: ../../object/Item.php:209
-msgid "unignore thread"
-msgstr "deixar de ignorar tópico"
+#: ../../mod/admin.php:694
+msgid "New base url"
+msgstr "Nova URL base"
 
-#: ../../object/Item.php:210
-msgid "toggle ignore status"
-msgstr "alternar status ignorar"
+#: ../../mod/admin.php:711
+msgid "Update has been marked successful"
+msgstr "A atualização foi marcada como bem sucedida"
 
-#: ../../object/Item.php:213
-msgid "ignored"
-msgstr "Ignorado"
+#: ../../mod/admin.php:719
+#, php-format
+msgid "Database structure update %s was successfully applied."
+msgstr "A atualização da estrutura do banco de dados %s foi aplicada com sucesso."
 
-#: ../../object/Item.php:316 ../../include/conversation.php:666
-msgid "Categories:"
-msgstr "Categorias:"
+#: ../../mod/admin.php:722
+#, php-format
+msgid "Executing of database structure update %s failed with error: %s"
+msgstr "A execução da atualização da estrutura do banco de dados %s falhou com o erro: %s"
 
-#: ../../object/Item.php:317 ../../include/conversation.php:667
-msgid "Filed under:"
-msgstr "Arquivado sob:"
+#: ../../mod/admin.php:734
+#, php-format
+msgid "Executing %s failed with error: %s"
+msgstr "A execução de %s falhou com erro: %s"
 
-#: ../../object/Item.php:329
-msgid "via"
-msgstr "via"
+#: ../../mod/admin.php:737
+#, php-format
+msgid "Update %s was successfully applied."
+msgstr "A atualização %s foi aplicada com sucesso."
 
-#: ../../include/dbstructure.php:26
+#: ../../mod/admin.php:741
 #, 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 "\n\t\t\tOs desenvolvedores de Friendica lançaram recentemente uma atualização %s,\n\t\t\tmas quando tentei instalá-la, algo deu terrivelmente errado.\n\t\t\tIsso precisa ser corrigido em breve e eu não posso fazer isso sozinho. Por favor, contate um\n\t\t\tdesenvolvedor da Friendica se você não pode me ajudar sozinho. Meu banco de dados pode ser inválido."
+msgid "Update %s did not return a status. Unknown if it succeeded."
+msgstr "Atualizar %s não retornou um status. Desconhecido se ele teve sucesso."
 
-#: ../../include/dbstructure.php:31
+#: ../../mod/admin.php:743
 #, php-format
-msgid ""
-"The error message is\n"
-"[pre]%s[/pre]"
-msgstr "A mensagem de erro é\n[pre]%s[/pre]"
+msgid "There was no additional update function %s that needed to be called."
+msgstr "Não havia nenhuma função de atualização %s adicional que precisava ser chamada."
 
-#: ../../include/dbstructure.php:162
-msgid "Errors encountered creating database tables."
-msgstr "Foram encontrados erros durante a criação das tabelas do banco de dados."
+#: ../../mod/admin.php:762
+msgid "No failed updates."
+msgstr "Nenhuma atualização com falha."
 
-#: ../../include/dbstructure.php:220
-msgid "Errors encountered performing database changes."
-msgstr "Erros encontrados realizando mudanças no banco de dados."
+#: ../../mod/admin.php:763
+msgid "Check database structure"
+msgstr "Verifique a estrutura do banco de dados"
 
-#: ../../include/auth.php:38
-msgid "Logged out."
-msgstr "Saiu."
+#: ../../mod/admin.php:768
+msgid "Failed Updates"
+msgstr "Atualizações com falha"
 
-#: ../../include/auth.php:128 ../../include/user.php:67
+#: ../../mod/admin.php:769
 msgid ""
-"We encountered a problem while logging in with the OpenID you provided. "
-"Please check the correct spelling of the ID."
-msgstr "Foi encontrado um erro ao tentar conectar usando o OpenID que você forneceu. Por favor, verifique se sua ID está escrita corretamente."
-
-#: ../../include/auth.php:128 ../../include/user.php:67
-msgid "The error message was:"
-msgstr "A mensagem de erro foi:"
+"This does not include updates prior to 1139, which did not return a status."
+msgstr "Isso não inclue atualizações antes da 1139, as quais não retornavam um status."
 
-#: ../../include/contact_widgets.php:6
-msgid "Add New Contact"
-msgstr "Adicionar Contato Novo"
+#: ../../mod/admin.php:770
+msgid "Mark success (if update was manually applied)"
+msgstr "Marcar como bem sucedida (caso tenham sido aplicadas atualizações manuais)"
 
-#: ../../include/contact_widgets.php:7
-msgid "Enter address or web location"
-msgstr "Forneça endereço ou localização web"
+#: ../../mod/admin.php:771
+msgid "Attempt to execute this update step automatically"
+msgstr "Tentar executar esse passo da atualização automaticamente"
 
-#: ../../include/contact_widgets.php:8
-msgid "Example: bob@example.com, http://example.com/barbara"
-msgstr "Por exemplo: joao@exemplo.com, http://exemplo.com/maria"
+#: ../../mod/admin.php:803
+#, php-format
+msgid ""
+"\n"
+"\t\t\tDear %1$s,\n"
+"\t\t\t\tthe administrator of %2$s has set up an account for you."
+msgstr "\n\t\t\tCaro %1$s,\n\t\t\t\to administrador de %2$s criou uma conta para você."
 
-#: ../../include/contact_widgets.php:24
+#: ../../mod/admin.php:806
 #, php-format
-msgid "%d invitation available"
-msgid_plural "%d invitations available"
-msgstr[0] "%d convite disponível"
-msgstr[1] "%d convites disponíveis"
+msgid ""
+"\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."
+msgstr "\n\t\t\tOs dados de login são os seguintes:\n\n\t\t\tLocal do Site:\t%1$s\n\t\t\tNome de Login:\t\t%2$s\n\t\t\tSenha:\t\t%3$s\n\n\t\t\tVocê pode alterar sua senha na página de \"Configurações\" da sua conta após fazer o login.\n\n\t\t\tPor favor, dedique alguns minutos na página para rever as outras configurações da sua conta.\n\n\t\t\tTalvez você também queira incluir algumas informações básicas adicionais ao seu perfil padrão\n\t\t\t(na página de \"Perfis\") para que outras pessoas possam encontrá-lo com facilidade.\n\n\t\t\tRecomendamos que inclua seu nome completo, adicione uma foto do perfil,\n\t\t\tadicionar algumas \"palavras-chave\" (muito útil para fazer novas amizades) - e\n\t\t\ttalvez em que pais você mora; se você não quiser ser mais específico\n\t\t\tdo que isso.\n\n\t\t\tNós respeitamos plenamente seu direito à privacidade, e nenhum desses itens são necessários.\n\t\t\tSe você é novo por aqui e não conheço ninguém, eles podem ajuda-lo\n\t\t\ta fazer novas e interessantes amizades.\n\n\t\t\tObrigado e bem-vindo a %4$s."
 
-#: ../../include/contact_widgets.php:30
-msgid "Find People"
-msgstr "Pesquisar por pessoas"
-
-#: ../../include/contact_widgets.php:31
-msgid "Enter name or interest"
-msgstr "Fornecer nome ou interesse"
+#: ../../mod/admin.php:850
+#, php-format
+msgid "%s user blocked/unblocked"
+msgid_plural "%s users blocked/unblocked"
+msgstr[0] "%s usuário bloqueado/desbloqueado"
+msgstr[1] "%s usuários bloqueados/desbloqueados"
 
-#: ../../include/contact_widgets.php:32
-msgid "Connect/Follow"
-msgstr "Conectar-se/acompanhar"
+#: ../../mod/admin.php:857
+#, php-format
+msgid "%s user deleted"
+msgid_plural "%s users deleted"
+msgstr[0] "%s usuário excluído"
+msgstr[1] "%s usuários excluídos"
 
-#: ../../include/contact_widgets.php:33
-msgid "Examples: Robert Morgenstein, Fishing"
-msgstr "Examplos: Robert Morgenstein, Fishing"
+#: ../../mod/admin.php:896
+#, php-format
+msgid "User '%s' deleted"
+msgstr "O usuário '%s' foi excluído"
 
-#: ../../include/contact_widgets.php:36 ../../view/theme/diabook/theme.php:526
-msgid "Similar Interests"
-msgstr "Interesses Parecidos"
+#: ../../mod/admin.php:904
+#, php-format
+msgid "User '%s' unblocked"
+msgstr "O usuário '%s' foi desbloqueado"
 
-#: ../../include/contact_widgets.php:37
-msgid "Random Profile"
-msgstr "Perfil Randômico"
+#: ../../mod/admin.php:904
+#, php-format
+msgid "User '%s' blocked"
+msgstr "O usuário '%s' foi bloqueado"
 
-#: ../../include/contact_widgets.php:38 ../../view/theme/diabook/theme.php:528
-msgid "Invite Friends"
-msgstr "Convidar amigos"
+#: ../../mod/admin.php:999
+msgid "Add User"
+msgstr "Adicionar usuário"
 
-#: ../../include/contact_widgets.php:71
-msgid "Networks"
-msgstr "Redes"
+#: ../../mod/admin.php:1000
+msgid "select all"
+msgstr "selecionar todos"
 
-#: ../../include/contact_widgets.php:74
-msgid "All Networks"
-msgstr "Todas as redes"
+#: ../../mod/admin.php:1001
+msgid "User registrations waiting for confirm"
+msgstr "Registros de usuário aguardando confirmação"
 
-#: ../../include/contact_widgets.php:104 ../../include/features.php:60
-msgid "Saved Folders"
-msgstr "Pastas salvas"
+#: ../../mod/admin.php:1002
+msgid "User waiting for permanent deletion"
+msgstr "Usuário aguardando por fim permanente da conta."
 
-#: ../../include/contact_widgets.php:107 ../../include/contact_widgets.php:139
-msgid "Everything"
-msgstr "Tudo"
+#: ../../mod/admin.php:1003
+msgid "Request date"
+msgstr "Solicitar data"
 
-#: ../../include/contact_widgets.php:136
-msgid "Categories"
-msgstr "Categorias"
+#: ../../mod/admin.php:1004
+msgid "No registrations."
+msgstr "Nenhum registro."
 
-#: ../../include/features.php:23
-msgid "General Features"
-msgstr "Funcionalidades Gerais"
+#: ../../mod/admin.php:1006
+msgid "Deny"
+msgstr "Negar"
 
-#: ../../include/features.php:25
-msgid "Multiple Profiles"
-msgstr "Perfís Múltiplos"
+#: ../../mod/admin.php:1010
+msgid "Site admin"
+msgstr "Administração do site"
 
-#: ../../include/features.php:25
-msgid "Ability to create multiple profiles"
-msgstr "Capacidade de criar perfis múltiplos"
+#: ../../mod/admin.php:1011
+msgid "Account expired"
+msgstr "Conta expirou"
 
-#: ../../include/features.php:30
-msgid "Post Composition Features"
-msgstr "Funcionalidades de Composição de Publicações"
+#: ../../mod/admin.php:1014
+msgid "New User"
+msgstr "Novo usuário"
 
-#: ../../include/features.php:31
-msgid "Richtext Editor"
-msgstr "Editor Richtext"
+#: ../../mod/admin.php:1015 ../../mod/admin.php:1016
+msgid "Register date"
+msgstr "Data de registro"
 
-#: ../../include/features.php:31
-msgid "Enable richtext editor"
-msgstr "Habilite editor richtext"
+#: ../../mod/admin.php:1015 ../../mod/admin.php:1016
+msgid "Last login"
+msgstr "Última entrada"
 
-#: ../../include/features.php:32
-msgid "Post Preview"
-msgstr "Pré-visualização da Publicação"
+#: ../../mod/admin.php:1015 ../../mod/admin.php:1016
+msgid "Last item"
+msgstr "Último item"
 
-#: ../../include/features.php:32
-msgid "Allow previewing posts and comments before publishing them"
-msgstr "Permite pré-visualizar publicações e comentários antes de publicá-los"
+#: ../../mod/admin.php:1015
+msgid "Deleted since"
+msgstr "Apagado desde"
 
-#: ../../include/features.php:33
-msgid "Auto-mention Forums"
-msgstr "Auto-menção Fóruns"
+#: ../../mod/admin.php:1018
+msgid ""
+"Selected users will be deleted!\\n\\nEverything these users had posted on "
+"this site will be permanently deleted!\\n\\nAre you sure?"
+msgstr "Os usuários selecionados serão excluídos!\\n\\nTudo o que estes usuários publicaram neste site será excluído permanentemente!\\n\\nDeseja continuar?"
 
-#: ../../include/features.php:33
+#: ../../mod/admin.php:1019
 msgid ""
-"Add/remove mention when a fourm page is selected/deselected in ACL window."
-msgstr "Adiciona/Remove menções quando uma página de fórum é selecionada/deselecionada na janela ACL"
+"The user {0} will be deleted!\\n\\nEverything this user has posted on this "
+"site will be permanently deleted!\\n\\nAre you sure?"
+msgstr "O usuário {0} será excluído!\\n\\nTudo o que este usuário publicou neste site será permanentemente excluído!\\n\\nDeseja continuar?"
 
-#: ../../include/features.php:38
-msgid "Network Sidebar Widgets"
-msgstr "Widgets da Barra Lateral da Rede"
+#: ../../mod/admin.php:1029
+msgid "Name of the new user."
+msgstr "Nome do novo usuários."
 
-#: ../../include/features.php:39
-msgid "Search by Date"
-msgstr "Buscar por Data"
+#: ../../mod/admin.php:1030
+msgid "Nickname"
+msgstr "Apelido"
 
-#: ../../include/features.php:39
-msgid "Ability to select posts by date ranges"
-msgstr "Capacidade de selecionar publicações por intervalos de data"
+#: ../../mod/admin.php:1030
+msgid "Nickname of the new user."
+msgstr "Apelido para o novo usuário."
 
-#: ../../include/features.php:40
-msgid "Group Filter"
-msgstr "Filtrar Grupo"
+#: ../../mod/admin.php:1031
+msgid "Email address of the new user."
+msgstr "Endereço de e-mail do novo usuário."
 
-#: ../../include/features.php:40
-msgid "Enable widget to display Network posts only from selected group"
-msgstr "Habilita widget para mostrar publicações da Rede somente de grupos selecionados"
+#: ../../mod/admin.php:1064
+#, php-format
+msgid "Plugin %s disabled."
+msgstr "O plugin %s foi desabilitado."
 
-#: ../../include/features.php:41
-msgid "Network Filter"
-msgstr "Filtrar Rede"
+#: ../../mod/admin.php:1068
+#, php-format
+msgid "Plugin %s enabled."
+msgstr "O plugin %s foi habilitado."
 
-#: ../../include/features.php:41
-msgid "Enable widget to display Network posts only from selected network"
-msgstr "Habilita widget para mostrar publicações da Rede de redes selecionadas"
+#: ../../mod/admin.php:1078 ../../mod/admin.php:1294
+msgid "Disable"
+msgstr "Desabilitar"
 
-#: ../../include/features.php:42
-msgid "Save search terms for re-use"
-msgstr "Guarde as palavras-chaves para reuso"
+#: ../../mod/admin.php:1080 ../../mod/admin.php:1296
+msgid "Enable"
+msgstr "Habilitar"
 
-#: ../../include/features.php:47
-msgid "Network Tabs"
-msgstr "Abas da Rede"
+#: ../../mod/admin.php:1103 ../../mod/admin.php:1324
+msgid "Toggle"
+msgstr "Alternar"
 
-#: ../../include/features.php:48
-msgid "Network Personal Tab"
-msgstr "Aba Pessoal da Rede"
+#: ../../mod/admin.php:1111 ../../mod/admin.php:1334
+msgid "Author: "
+msgstr "Autor: "
 
-#: ../../include/features.php:48
-msgid "Enable tab to display only Network posts that you've interacted on"
-msgstr "Habilitar aba para mostrar apenas as publicações da Rede que você tenha interagido"
+#: ../../mod/admin.php:1112 ../../mod/admin.php:1335
+msgid "Maintainer: "
+msgstr "Mantenedor: "
 
-#: ../../include/features.php:49
-msgid "Network New Tab"
-msgstr "Aba Nova da Rede"
+#: ../../mod/admin.php:1254
+msgid "No themes found."
+msgstr "Nenhum tema encontrado"
 
-#: ../../include/features.php:49
-msgid "Enable tab to display only new Network posts (from the last 12 hours)"
-msgstr "Habilite aba para mostra apenas publicações da Rede novas (das últimas 12 horas)"
+#: ../../mod/admin.php:1316
+msgid "Screenshot"
+msgstr "Captura de tela"
 
-#: ../../include/features.php:50
-msgid "Network Shared Links Tab"
-msgstr "Aba de Links Compartilhados da Rede"
+#: ../../mod/admin.php:1362
+msgid "[Experimental]"
+msgstr "[Esperimental]"
 
-#: ../../include/features.php:50
-msgid "Enable tab to display only Network posts with links in them"
-msgstr "Habilite aba para mostrar somente publicações da Rede que contenham links"
+#: ../../mod/admin.php:1363
+msgid "[Unsupported]"
+msgstr "[Não suportado]"
 
-#: ../../include/features.php:55
-msgid "Post/Comment Tools"
-msgstr "Ferramentas de Publicação/Comentário"
+#: ../../mod/admin.php:1390
+msgid "Log settings updated."
+msgstr "As configurações de relatórios foram atualizadas."
 
-#: ../../include/features.php:56
-msgid "Multiple Deletion"
-msgstr "Deleção Multipla"
+#: ../../mod/admin.php:1446
+msgid "Clear"
+msgstr "Limpar"
 
-#: ../../include/features.php:56
-msgid "Select and delete multiple posts/comments at once"
-msgstr "Selecione e delete múltiplas publicações/comentário imediatamente"
+#: ../../mod/admin.php:1452
+msgid "Enable Debugging"
+msgstr "Habilitar Debugging"
 
-#: ../../include/features.php:57
-msgid "Edit Sent Posts"
-msgstr "Editar Publicações Enviadas"
+#: ../../mod/admin.php:1453
+msgid "Log file"
+msgstr "Arquivo do relatório"
 
-#: ../../include/features.php:57
-msgid "Edit and correct posts and comments after sending"
-msgstr "Editar e corrigir publicações e comentários após envio"
-
-#: ../../include/features.php:58
-msgid "Tagging"
-msgstr "Etiquetagem"
+#: ../../mod/admin.php:1453
+msgid ""
+"Must be writable by web server. Relative to your Friendica top-level "
+"directory."
+msgstr "O servidor web precisa ter permissão de escrita. Relativa ao diretório raiz do seu Friendica."
 
-#: ../../include/features.php:58
-msgid "Ability to tag existing posts"
-msgstr "Capacidade de colocar etiquetas em publicações existentes"
+#: ../../mod/admin.php:1454
+msgid "Log level"
+msgstr "Nível do relatório"
 
-#: ../../include/features.php:59
-msgid "Post Categories"
-msgstr "Categorias de Publicações"
+#: ../../mod/admin.php:1504
+msgid "Close"
+msgstr "Fechar"
 
-#: ../../include/features.php:59
-msgid "Add categories to your posts"
-msgstr "Adicione Categorias ás Publicações"
+#: ../../mod/admin.php:1510
+msgid "FTP Host"
+msgstr "Endereço do FTP"
 
-#: ../../include/features.php:60
-msgid "Ability to file posts under folders"
-msgstr "Capacidade de arquivar publicações em pastas"
+#: ../../mod/admin.php:1511
+msgid "FTP Path"
+msgstr "Caminho do FTP"
 
-#: ../../include/features.php:61
-msgid "Dislike Posts"
-msgstr "Desgostar de publicações"
+#: ../../mod/admin.php:1512
+msgid "FTP User"
+msgstr "Usuário do FTP"
 
-#: ../../include/features.php:61
-msgid "Ability to dislike posts/comments"
-msgstr "Capacidade de desgostar de publicações/comentários"
+#: ../../mod/admin.php:1513
+msgid "FTP Password"
+msgstr "Senha do FTP"
 
-#: ../../include/features.php:62
-msgid "Star Posts"
-msgstr "Destacar publicações"
+#: ../../mod/wall_upload.php:122 ../../mod/profile_photo.php:144
+#, php-format
+msgid "Image exceeds size limit of %d"
+msgstr "A imagem excede o limite de tamanho de %d"
 
-#: ../../include/features.php:62
-msgid "Ability to mark special posts with a star indicator"
-msgstr "Capacidade de marcar publicações especiais com uma estrela indicadora"
+#: ../../mod/wall_upload.php:144 ../../mod/photos.php:807
+#: ../../mod/profile_photo.php:153
+msgid "Unable to process image."
+msgstr "Não foi possível processar a imagem."
 
-#: ../../include/features.php:63
-msgid "Mute Post Notifications"
-msgstr "Silenciar Notificações de Postagem"
+#: ../../mod/wall_upload.php:172 ../../mod/photos.php:834
+#: ../../mod/profile_photo.php:301
+msgid "Image upload failed."
+msgstr "Não foi possível enviar a imagem."
 
-#: ../../include/features.php:63
-msgid "Ability to mute notifications for a thread"
-msgstr "Habilitar notificação silenciosa para a tarefa"
+#: ../../mod/home.php:35
+#, php-format
+msgid "Welcome to %s"
+msgstr "Bem-vindo(a) a %s"
 
-#: ../../include/follow.php:32
-msgid "Connect URL missing."
-msgstr "URL de conexão faltando."
+#: ../../mod/openid.php:24
+msgid "OpenID protocol error. No ID returned."
+msgstr "Erro no protocolo OpenID. Não foi retornada nenhuma ID."
 
-#: ../../include/follow.php:59
+#: ../../mod/openid.php:53
 msgid ""
-"This site is not configured to allow communications with other networks."
-msgstr "Este site não está configurado para permitir comunicações com outras redes."
-
-#: ../../include/follow.php:60 ../../include/follow.php:80
-msgid "No compatible communication protocols or feeds were discovered."
-msgstr "Não foi descoberto nenhum protocolo de comunicação ou fonte de notícias compatível."
+"Account not found and OpenID registration is not permitted on this site."
+msgstr "A conta não foi encontrada e não são permitidos registros via OpenID nesse site."
 
-#: ../../include/follow.php:78
-msgid "The profile address specified does not provide adequate information."
-msgstr "O endereço de perfil especificado não fornece informação adequada."
+#: ../../mod/network.php:142
+msgid "Search Results For:"
+msgstr "Resultados de Busca Por:"
 
-#: ../../include/follow.php:82
-msgid "An author or name was not found."
-msgstr "Não foi encontrado nenhum autor ou nome."
+#: ../../mod/network.php:185 ../../mod/search.php:21
+msgid "Remove term"
+msgstr "Remover o termo"
 
-#: ../../include/follow.php:84
-msgid "No browser URL could be matched to this address."
-msgstr "Não foi possível encontrar nenhuma URL de navegação neste endereço."
+#: ../../mod/network.php:356
+msgid "Commented Order"
+msgstr "Ordem dos comentários"
 
-#: ../../include/follow.php:86
-msgid ""
-"Unable to match @-style Identity Address with a known protocol or email "
-"contact."
-msgstr "Não foi possível  casa o estilo @ de Endereço de Identidade com um protocolo conhecido ou contato de email."
+#: ../../mod/network.php:359
+msgid "Sort by Comment Date"
+msgstr "Ordenar pela data do comentário"
 
-#: ../../include/follow.php:87
-msgid "Use mailto: in front of address to force email check."
-msgstr "Use mailto: antes do endereço para forçar a checagem de email."
+#: ../../mod/network.php:362
+msgid "Posted Order"
+msgstr "Ordem das publicações"
 
-#: ../../include/follow.php:93
-msgid ""
-"The profile address specified belongs to a network which has been disabled "
-"on this site."
-msgstr "O endereço de perfil especificado pertence a uma rede que foi desabilitada neste site."
+#: ../../mod/network.php:365
+msgid "Sort by Post Date"
+msgstr "Ordenar pela data de publicação"
 
-#: ../../include/follow.php:103
-msgid ""
-"Limited profile. This person will be unable to receive direct/personal "
-"notifications from you."
-msgstr "Perfil limitado. Essa pessoa não poderá receber notificações diretas/pessoais de você."
+#: ../../mod/network.php:374
+msgid "Posts that mention or involve you"
+msgstr "Publicações que mencionem ou envolvam você"
 
-#: ../../include/follow.php:205
-msgid "Unable to retrieve contact information."
-msgstr "Não foi possível recuperar a informação do contato."
+#: ../../mod/network.php:380
+msgid "New"
+msgstr "Nova"
 
-#: ../../include/follow.php:258
-msgid "following"
-msgstr "acompanhando"
+#: ../../mod/network.php:383
+msgid "Activity Stream - by date"
+msgstr "Fluxo de atividades - por data"
 
-#: ../../include/group.php:25
-msgid ""
-"A deleted group with this name was revived. Existing item permissions "
-"<strong>may</strong> apply to this group and any future members. If this is "
-"not what you intended, please create another group with a different name."
-msgstr "Um grupo com esse nome, anteriormente excluído, foi reativado. Permissões de itens já existentes <strong>poderão</strong> ser aplicadas a esse grupo e qualquer futuros membros. Se não é essa a sua intenção, favor criar outro grupo com um nome diferente."
+#: ../../mod/network.php:389
+msgid "Shared Links"
+msgstr "Links compartilhados"
 
-#: ../../include/group.php:207
-msgid "Default privacy group for new contacts"
-msgstr "Grupo de privacidade padrão para novos contatos"
+#: ../../mod/network.php:392
+msgid "Interesting Links"
+msgstr "Links interessantes"
 
-#: ../../include/group.php:226
-msgid "Everybody"
-msgstr "Todos"
+#: ../../mod/network.php:398
+msgid "Starred"
+msgstr "Destacada"
 
-#: ../../include/group.php:249
-msgid "edit"
-msgstr "editar"
+#: ../../mod/network.php:401
+msgid "Favourite Posts"
+msgstr "Publicações favoritas"
 
-#: ../../include/group.php:271
-msgid "Edit group"
-msgstr "Editar grupo"
+#: ../../mod/network.php:463
+#, 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] "Aviso: Este grupo contém %s membro de uma rede insegura."
+msgstr[1] "Aviso: Este grupo contém %s membros de uma rede insegura."
 
-#: ../../include/group.php:272
-msgid "Create a new group"
-msgstr "Criar um novo grupo"
+#: ../../mod/network.php:466
+msgid "Private messages to this group are at risk of public disclosure."
+msgstr "Mensagens privadas para este grupo correm o risco de sofrerem divulgação pública."
 
-#: ../../include/group.php:273
-msgid "Contacts not in any group"
-msgstr "Contatos não estão dentro de nenhum grupo"
+#: ../../mod/network.php:520 ../../mod/content.php:119
+msgid "No such group"
+msgstr "Este grupo não existe"
 
-#: ../../include/datetime.php:43 ../../include/datetime.php:45
-msgid "Miscellaneous"
-msgstr "Miscelânea"
+#: ../../mod/network.php:537 ../../mod/content.php:130
+msgid "Group is empty"
+msgstr "O grupo está vazio"
 
-#: ../../include/datetime.php:153 ../../include/datetime.php:290
-msgid "year"
-msgstr "ano"
+#: ../../mod/network.php:544 ../../mod/content.php:134
+msgid "Group: "
+msgstr "Grupo: "
 
-#: ../../include/datetime.php:158 ../../include/datetime.php:291
-msgid "month"
-msgstr "mês"
+#: ../../mod/network.php:554
+msgid "Contact: "
+msgstr "Contato: "
 
-#: ../../include/datetime.php:163 ../../include/datetime.php:293
-msgid "day"
-msgstr "dia"
+#: ../../mod/network.php:556
+msgid "Private messages to this person are at risk of public disclosure."
+msgstr "Mensagens privadas para esta pessoa correm o risco de sofrerem divulgação pública."
 
-#: ../../include/datetime.php:276
-msgid "never"
-msgstr "nunca"
+#: ../../mod/network.php:561
+msgid "Invalid contact."
+msgstr "Contato inválido."
 
-#: ../../include/datetime.php:282
-msgid "less than a second ago"
-msgstr "menos de um segundo atrás"
+#: ../../mod/filer.php:30
+msgid "- select -"
+msgstr "-selecione-"
 
-#: ../../include/datetime.php:290
-msgid "years"
-msgstr "anos"
+#: ../../mod/friendica.php:59
+msgid "This is Friendica, version"
+msgstr "Este é o Friendica, versão"
 
-#: ../../include/datetime.php:291
-msgid "months"
-msgstr "meses"
+#: ../../mod/friendica.php:60
+msgid "running at web location"
+msgstr "sendo executado no endereço web"
 
-#: ../../include/datetime.php:292
-msgid "week"
-msgstr "semana"
+#: ../../mod/friendica.php:62
+msgid ""
+"Please visit <a href=\"http://friendica.com\">Friendica.com</a> to learn "
+"more about the Friendica project."
+msgstr "Por favor, visite <a href=\"http://friendica.com\">friendica.com</a> para aprender mais sobre o projeto Friendica."
 
-#: ../../include/datetime.php:292
-msgid "weeks"
-msgstr "semanas"
+#: ../../mod/friendica.php:64
+msgid "Bug reports and issues: please visit"
+msgstr "Relatos e acompanhamentos de erros podem ser encontrados em"
 
-#: ../../include/datetime.php:293
-msgid "days"
-msgstr "dias"
-
-#: ../../include/datetime.php:294
-msgid "hour"
-msgstr "hora"
+#: ../../mod/friendica.php:65
+msgid ""
+"Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - "
+"dot com"
+msgstr "Sugestões, elogios, doações, etc. - favor enviar e-mail para \"Info\" arroba Friendica - ponto com"
 
-#: ../../include/datetime.php:294
-msgid "hours"
-msgstr "horas"
+#: ../../mod/friendica.php:79
+msgid "Installed plugins/addons/apps:"
+msgstr "Plugins/complementos/aplicações instaladas:"
 
-#: ../../include/datetime.php:295
-msgid "minute"
-msgstr "minuto"
+#: ../../mod/friendica.php:92
+msgid "No installed plugins/addons/apps"
+msgstr "Nenhum plugin/complemento/aplicativo instalado"
 
-#: ../../include/datetime.php:295
-msgid "minutes"
-msgstr "minutos"
+#: ../../mod/apps.php:11
+msgid "Applications"
+msgstr "Aplicativos"
 
-#: ../../include/datetime.php:296
-msgid "second"
-msgstr "segundo"
+#: ../../mod/apps.php:14
+msgid "No installed applications."
+msgstr "Nenhum aplicativo instalado"
 
-#: ../../include/datetime.php:296
-msgid "seconds"
-msgstr "segundos"
+#: ../../mod/photos.php:67 ../../mod/photos.php:1262 ../../mod/photos.php:1819
+msgid "Upload New Photos"
+msgstr "Enviar novas fotos"
 
-#: ../../include/datetime.php:305
-#, php-format
-msgid "%1$d %2$s ago"
-msgstr "%1$d %2$s atrás"
+#: ../../mod/photos.php:144
+msgid "Contact information unavailable"
+msgstr "A informação de contato não está disponível"
 
-#: ../../include/datetime.php:477 ../../include/items.php:2211
-#, php-format
-msgid "%s's birthday"
-msgstr "aniversários de %s's"
+#: ../../mod/photos.php:165
+msgid "Album not found."
+msgstr "O álbum não foi encontrado."
 
-#: ../../include/datetime.php:478 ../../include/items.php:2212
-#, php-format
-msgid "Happy Birthday %s"
-msgstr "Feliz Aniversário %s"
+#: ../../mod/photos.php:188 ../../mod/photos.php:200 ../../mod/photos.php:1204
+msgid "Delete Album"
+msgstr "Excluir o álbum"
 
-#: ../../include/acl_selectors.php:333
-msgid "Visible to everybody"
-msgstr "Visível para todos"
+#: ../../mod/photos.php:198
+msgid "Do you really want to delete this photo album and all its photos?"
+msgstr "Você realmente deseja deletar esse álbum de fotos e todas as suas fotos?"
 
-#: ../../include/acl_selectors.php:334 ../../view/theme/diabook/config.php:142
-#: ../../view/theme/diabook/theme.php:621
-msgid "show"
-msgstr "exibir"
+#: ../../mod/photos.php:278 ../../mod/photos.php:289 ../../mod/photos.php:1515
+msgid "Delete Photo"
+msgstr "Excluir a foto"
 
-#: ../../include/acl_selectors.php:335 ../../view/theme/diabook/config.php:142
-#: ../../view/theme/diabook/theme.php:621
-msgid "don't show"
-msgstr "não exibir"
+#: ../../mod/photos.php:287
+msgid "Do you really want to delete this photo?"
+msgstr "Você realmente deseja deletar essa foto?"
 
-#: ../../include/message.php:15 ../../include/message.php:172
-msgid "[no subject]"
-msgstr "[sem assunto]"
+#: ../../mod/photos.php:662
+#, php-format
+msgid "%1$s was tagged in %2$s by %3$s"
+msgstr "%1$s foi marcado em %2$s por %3$s"
 
-#: ../../include/Contact.php:115
-msgid "stopped following"
-msgstr "parou de acompanhar"
+#: ../../mod/photos.php:662
+msgid "a photo"
+msgstr "uma foto"
 
-#: ../../include/Contact.php:228 ../../include/conversation.php:882
-msgid "Poke"
-msgstr "Cutucar"
+#: ../../mod/photos.php:767
+msgid "Image exceeds size limit of "
+msgstr "A imagem excede o tamanho máximo de "
 
-#: ../../include/Contact.php:229 ../../include/conversation.php:876
-msgid "View Status"
-msgstr "Ver Status"
+#: ../../mod/photos.php:775
+msgid "Image file is empty."
+msgstr "O arquivo de imagem está vazio."
 
-#: ../../include/Contact.php:230 ../../include/conversation.php:877
-msgid "View Profile"
-msgstr "Ver Perfil"
+#: ../../mod/photos.php:930
+msgid "No photos selected"
+msgstr "Não foi selecionada nenhuma foto"
 
-#: ../../include/Contact.php:231 ../../include/conversation.php:878
-msgid "View Photos"
-msgstr "Ver Fotos"
+#: ../../mod/photos.php:1094
+#, php-format
+msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."
+msgstr "Você está usando %1$.2f Mbytes dos %2$.2f Mbytes liberados para armazenamento de fotos."
 
-#: ../../include/Contact.php:232 ../../include/Contact.php:255
-#: ../../include/conversation.php:879
-msgid "Network Posts"
-msgstr "Publicações da Rede"
+#: ../../mod/photos.php:1129
+msgid "Upload Photos"
+msgstr "Enviar fotos"
 
-#: ../../include/Contact.php:233 ../../include/Contact.php:255
-#: ../../include/conversation.php:880
-msgid "Edit Contact"
-msgstr "Editar Contato"
+#: ../../mod/photos.php:1133 ../../mod/photos.php:1199
+msgid "New album name: "
+msgstr "Nome do novo álbum: "
 
-#: ../../include/Contact.php:234
-msgid "Drop Contact"
-msgstr "Excluir o contato"
+#: ../../mod/photos.php:1134
+msgid "or existing album name: "
+msgstr "ou o nome de um álbum já existente: "
 
-#: ../../include/Contact.php:235 ../../include/Contact.php:255
-#: ../../include/conversation.php:881
-msgid "Send PM"
-msgstr "Enviar MP"
+#: ../../mod/photos.php:1135
+msgid "Do not show a status post for this upload"
+msgstr "Não exiba uma publicação de status para este envio"
 
-#: ../../include/security.php:22
-msgid "Welcome "
-msgstr "Bem-vindo(a) "
+#: ../../mod/photos.php:1137 ../../mod/photos.php:1510
+msgid "Permissions"
+msgstr "Permissões"
 
-#: ../../include/security.php:23
-msgid "Please upload a profile photo."
-msgstr "Por favor, envie uma foto para o perfil."
+#: ../../mod/photos.php:1148
+msgid "Private Photo"
+msgstr "Foto Privada"
 
-#: ../../include/security.php:26
-msgid "Welcome back "
-msgstr "Bem-vindo(a) de volta "
+#: ../../mod/photos.php:1149
+msgid "Public Photo"
+msgstr "Foto Pública"
 
-#: ../../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 "O token de segurança do formulário não estava correto. Isso provavelmente aconteceu porque o formulário ficou aberto por muito tempo (>3 horas) antes da sua submissão."
+#: ../../mod/photos.php:1212
+msgid "Edit Album"
+msgstr "Editar o álbum"
 
-#: ../../include/conversation.php:118 ../../include/conversation.php:246
-#: ../../include/text.php:1966 ../../view/theme/diabook/theme.php:463
-msgid "event"
-msgstr "evento"
+#: ../../mod/photos.php:1218
+msgid "Show Newest First"
+msgstr "Exibir as mais recentes primeiro"
 
-#: ../../include/conversation.php:207
-#, php-format
-msgid "%1$s poked %2$s"
-msgstr "%1$s cutucou %2$s"
+#: ../../mod/photos.php:1220
+msgid "Show Oldest First"
+msgstr "Exibir as mais antigas primeiro"
 
-#: ../../include/conversation.php:211 ../../include/text.php:1005
-msgid "poked"
-msgstr "cutucado"
+#: ../../mod/photos.php:1248 ../../mod/photos.php:1802
+msgid "View Photo"
+msgstr "Ver a foto"
 
-#: ../../include/conversation.php:291
-msgid "post/item"
-msgstr "postagem/item"
+#: ../../mod/photos.php:1294
+msgid "Permission denied. Access to this item may be restricted."
+msgstr "Permissão negada. O acesso a este item pode estar restrito."
 
-#: ../../include/conversation.php:292
-#, php-format
-msgid "%1$s marked %2$s's %3$s as favorite"
-msgstr "%1$s marcou %3$s de %2$s como favorito"
+#: ../../mod/photos.php:1296
+msgid "Photo not available"
+msgstr "A foto não está disponível"
 
-#: ../../include/conversation.php:772
-msgid "remove"
-msgstr "remover"
+#: ../../mod/photos.php:1352
+msgid "View photo"
+msgstr "Ver a imagem"
 
-#: ../../include/conversation.php:776
-msgid "Delete Selected Items"
-msgstr "Excluir os itens selecionados"
+#: ../../mod/photos.php:1352
+msgid "Edit photo"
+msgstr "Editar a foto"
 
-#: ../../include/conversation.php:875
-msgid "Follow Thread"
-msgstr "Seguir o Thread"
+#: ../../mod/photos.php:1353
+msgid "Use as profile photo"
+msgstr "Usar como uma foto de perfil"
 
-#: ../../include/conversation.php:944
-#, php-format
-msgid "%s likes this."
-msgstr "%s gostou disso."
+#: ../../mod/photos.php:1378
+msgid "View Full Size"
+msgstr "Ver no tamanho real"
 
-#: ../../include/conversation.php:944
-#, php-format
-msgid "%s doesn't like this."
-msgstr "%s não gostou disso."
+#: ../../mod/photos.php:1457
+msgid "Tags: "
+msgstr "Etiquetas: "
 
-#: ../../include/conversation.php:949
-#, php-format
-msgid "<span  %1$s>%2$d people</span> like this"
-msgstr "<span  %1$s>%2$d pessoas</span> gostaram disso"
+#: ../../mod/photos.php:1460
+msgid "[Remove any tag]"
+msgstr "[Remover qualquer etiqueta]"
 
-#: ../../include/conversation.php:952
-#, php-format
-msgid "<span  %1$s>%2$d people</span> don't like this"
-msgstr "<span  %1$s>%2$d pessoas</span> não gostaram disso"
+#: ../../mod/photos.php:1500
+msgid "Rotate CW (right)"
+msgstr "Rotacionar para direita"
 
-#: ../../include/conversation.php:966
-msgid "and"
-msgstr "e"
+#: ../../mod/photos.php:1501
+msgid "Rotate CCW (left)"
+msgstr "Rotacionar para esquerda"
 
-#: ../../include/conversation.php:972
-#, php-format
-msgid ", and %d other people"
-msgstr ", e mais %d outras pessoas"
+#: ../../mod/photos.php:1503
+msgid "New album name"
+msgstr "Novo nome para o álbum"
 
-#: ../../include/conversation.php:974
-#, php-format
-msgid "%s like this."
-msgstr "%s gostaram disso."
+#: ../../mod/photos.php:1506
+msgid "Caption"
+msgstr "Legenda"
 
-#: ../../include/conversation.php:974
-#, php-format
-msgid "%s don't like this."
-msgstr "%s não gostaram disso."
+#: ../../mod/photos.php:1508
+msgid "Add a Tag"
+msgstr "Adicionar uma etiqueta"
 
-#: ../../include/conversation.php:1001 ../../include/conversation.php:1019
-msgid "Visible to <strong>everybody</strong>"
-msgstr "Visível para <strong>todos</strong>"
+#: ../../mod/photos.php:1512
+msgid ""
+"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
+msgstr "Por exemplo: @joao, @Joao_da_Silva, @joao@exemplo.com, #Minas_Gerais, #acampamento"
 
-#: ../../include/conversation.php:1003 ../../include/conversation.php:1021
-msgid "Please enter a video link/URL:"
-msgstr "Favor fornecer um link/URL de vídeo"
-
-#: ../../include/conversation.php:1004 ../../include/conversation.php:1022
-msgid "Please enter an audio link/URL:"
-msgstr "Favor fornecer um link/URL de áudio"
+#: ../../mod/photos.php:1521
+msgid "Private photo"
+msgstr "Foto privada"
 
-#: ../../include/conversation.php:1005 ../../include/conversation.php:1023
-msgid "Tag term:"
-msgstr "Etiqueta:"
+#: ../../mod/photos.php:1522
+msgid "Public photo"
+msgstr "Foto pública"
 
-#: ../../include/conversation.php:1007 ../../include/conversation.php:1025
-msgid "Where are you right now?"
-msgstr "Onde você está agora?"
+#: ../../mod/photos.php:1817
+msgid "Recent Photos"
+msgstr "Fotos recentes"
 
-#: ../../include/conversation.php:1008
-msgid "Delete item(s)?"
-msgstr "Deletar item(s)?"
+#: ../../mod/bookmarklet.php:41
+msgid "The post was created"
+msgstr "O texto foi criado"
 
-#: ../../include/conversation.php:1051
-msgid "Post to Email"
-msgstr "Enviar por e-mail"
+#: ../../mod/follow.php:27
+msgid "Contact added"
+msgstr "O contato foi adicionado"
 
-#: ../../include/conversation.php:1056
-#, php-format
-msgid "Connectors disabled, since \"%s\" is enabled."
-msgstr "Conectores desabilitados, desde \"%s\" está habilitado."
+#: ../../mod/uimport.php:66
+msgid "Move account"
+msgstr "Mover conta"
 
-#: ../../include/conversation.php:1111
-msgid "permissions"
-msgstr "permissões"
+#: ../../mod/uimport.php:67
+msgid "You can import an account from another Friendica server."
+msgstr "Você pode importar um conta de outro sevidor Friendica."
 
-#: ../../include/conversation.php:1135
-msgid "Post to Groups"
-msgstr "Postar em Grupos"
+#: ../../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 "Você precisa exportar sua conta de um servidor antigo e fazer o upload aqui. Nós recriaremos sua conta antiga aqui com todos os seus contatos. Nós também tentaremos informar seus amigos que você se mudou para cá."
 
-#: ../../include/conversation.php:1136
-msgid "Post to Contacts"
-msgstr "Publique para Contatos"
+#: ../../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 "Esse recurso é experimental. Nós não podemos importar contatos de uma rede OStatus (statusnet/identi.ca) ou do Diaspora"
 
-#: ../../include/conversation.php:1137
-msgid "Private post"
-msgstr "Publicação privada"
+#: ../../mod/uimport.php:70
+msgid "Account file"
+msgstr "Arquivo de conta"
 
-#: ../../include/network.php:895
-msgid "view full size"
-msgstr "ver na tela inteira"
+#: ../../mod/uimport.php:70
+msgid ""
+"To export your account, go to \"Settings->Export your personal data\" and "
+"select \"Export account\""
+msgstr "Para exportar a sua conta, entre em \"Configurações->Exportar dados pessoais\" e selecione \"Exportar conta\""
 
-#: ../../include/text.php:297
-msgid "newer"
-msgstr "mais recente"
+#: ../../mod/invite.php:27
+msgid "Total invitation limit exceeded."
+msgstr "Limite de convites totais excedido."
 
-#: ../../include/text.php:299
-msgid "older"
-msgstr "antigo"
+#: ../../mod/invite.php:49
+#, php-format
+msgid "%s : Not a valid email address."
+msgstr "%s : Não é um endereço de e-mail válido."
 
-#: ../../include/text.php:304
-msgid "prev"
-msgstr "anterior"
+#: ../../mod/invite.php:73
+msgid "Please join us on Friendica"
+msgstr "Por favor, junte-se à nós na Friendica"
 
-#: ../../include/text.php:306
-msgid "first"
-msgstr "primeiro"
+#: ../../mod/invite.php:84
+msgid "Invitation limit exceeded. Please contact your site administrator."
+msgstr "Limite de convites ultrapassado. Favor contactar o administrador do sítio."
 
-#: ../../include/text.php:338
-msgid "last"
-msgstr "último"
+#: ../../mod/invite.php:89
+#, php-format
+msgid "%s : Message delivery failed."
+msgstr "%s : Não foi possível enviar a mensagem."
 
-#: ../../include/text.php:341
-msgid "next"
-msgstr "próximo"
+#: ../../mod/invite.php:93
+#, php-format
+msgid "%d message sent."
+msgid_plural "%d messages sent."
+msgstr[0] "%d mensagem enviada."
+msgstr[1] "%d mensagens enviadas."
 
-#: ../../include/text.php:855
-msgid "No contacts"
-msgstr "Nenhum contato"
+#: ../../mod/invite.php:112
+msgid "You have no more invitations available"
+msgstr "Você não possui mais convites disponíveis"
 
-#: ../../include/text.php:864
+#: ../../mod/invite.php:120
 #, php-format
-msgid "%d Contact"
-msgid_plural "%d Contacts"
-msgstr[0] "%d contato"
-msgstr[1] "%d contatos"
+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 "Visite %s para obter uma lista de sites públicos onde você pode se cadastrar. Membros da friendica podem se conectar, mesmo que estejam em sites separados. Além disso você também pode se conectar com membros de várias outras redes sociais."
 
-#: ../../include/text.php:1005
-msgid "poke"
-msgstr "cutucar"
+#: ../../mod/invite.php:122
+#, php-format
+msgid ""
+"To accept this invitation, please visit and register at %s or any other "
+"public Friendica website."
+msgstr "Para aceitar esse convite, por favor cadastre-se em %s ou qualquer outro site friendica público."
 
-#: ../../include/text.php:1006
-msgid "ping"
-msgstr "ping"
+#: ../../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 "Os sites friendica estão todos interconectados para criar uma grande rede social com foco na privacidade e controlada por seus membros, que também podem se conectar com várias redes sociais tradicionais. Dê uma olhada em %s para uma lista de sites friendica onde você pode se cadastrar."
 
-#: ../../include/text.php:1006
-msgid "pinged"
-msgstr "pingado"
+#: ../../mod/invite.php:126
+msgid ""
+"Our apologies. This system is not currently configured to connect with other"
+" public sites or invite members."
+msgstr "Desculpe, mas esse sistema não está configurado para conectar-se com outros sites públicos nem permite convidar novos membros."
 
-#: ../../include/text.php:1007
-msgid "prod"
-msgstr "incentivar"
+#: ../../mod/invite.php:132
+msgid "Send invitations"
+msgstr "Enviar convites."
 
-#: ../../include/text.php:1007
-msgid "prodded"
-msgstr "incentivado"
+#: ../../mod/invite.php:133
+msgid "Enter email addresses, one per line:"
+msgstr "Digite os endereços de e-mail, um por linha:"
 
-#: ../../include/text.php:1008
-msgid "slap"
-msgstr "bater"
+#: ../../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 "Você está convidado a se juntar a mim e outros amigos em friendica - e também nos ajudar a criar uma experiência social melhor na web."
 
-#: ../../include/text.php:1008
-msgid "slapped"
-msgstr "batido"
+#: ../../mod/invite.php:137
+msgid "You will need to supply this invitation code: $invite_code"
+msgstr "Você preciso informar este código de convite: $invite_code"
 
-#: ../../include/text.php:1009
-msgid "finger"
-msgstr "apontar"
+#: ../../mod/invite.php:137
+msgid ""
+"Once you have registered, please connect with me via my profile page at:"
+msgstr "Após você se registrar, por favor conecte-se comigo através da minha página de perfil em:"
 
-#: ../../include/text.php:1009
-msgid "fingered"
-msgstr "apontado"
+#: ../../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 "Para mais informações sobre o projeto Friendica e porque nós achamos que ele é importante, por favor visite-nos em http://friendica.com."
 
-#: ../../include/text.php:1010
-msgid "rebuff"
-msgstr "rejeite"
+#: ../../mod/viewsrc.php:7
+msgid "Access denied."
+msgstr "Acesso negado."
 
-#: ../../include/text.php:1010
-msgid "rebuffed"
-msgstr "rejeitado"
+#: ../../mod/lostpass.php:19
+msgid "No valid account found."
+msgstr "Não foi encontrada nenhuma conta válida."
 
-#: ../../include/text.php:1024
-msgid "happy"
-msgstr "feliz"
+#: ../../mod/lostpass.php:35
+msgid "Password reset request issued. Check your email."
+msgstr "A solicitação para reiniciar sua senha foi encaminhada. Verifique seu e-mail."
 
-#: ../../include/text.php:1025
-msgid "sad"
-msgstr "triste"
+#: ../../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 "\n\t\tPrezado %1$s,\n\t\t\tUma solicitação foi recebida recentemente em \"%2$s\" para redefinir a\n\t\tsenha da sua conta. Para confirmar este pedido, por favor selecione o link de confirmação\n\t\tabaixo ou copie e cole-o na barra de endereço do seu navegador.\n\n\t\tSe NÃO foi você que solicitou esta alteração por favor, NÃO clique no link\n\t\tfornecido e ignore e/ou apague este e-mail.\n\n\t\tSua senha não será alterada a menos que possamos verificar que foi você que\n\t\temitiu esta solicitação."
 
-#: ../../include/text.php:1026
-msgid "mellow"
-msgstr "desencanado"
+#: ../../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 "\n\t\tSiga este link para verificar sua identidade:\n\n\t\t%1$s\n\n\t\tVocê então receberá uma mensagem de continuidade contendo a nova senha.\n\t\tVocê pode alterar sua senha na sua página de configurações após efetuar seu login.\n\n\t\tOs dados de login são os seguintes:\n\n\t\tLocalização do Site:\t%2$s\n\t\tNome de Login:\t%3$s"
 
-#: ../../include/text.php:1027
-msgid "tired"
-msgstr "cansado"
+#: ../../mod/lostpass.php:72
+#, php-format
+msgid "Password reset requested at %s"
+msgstr "Foi feita uma solicitação de reiniciação da senha em %s"
 
-#: ../../include/text.php:1028
-msgid "perky"
-msgstr "audacioso"
+#: ../../mod/lostpass.php:92
+msgid ""
+"Request could not be verified. (You may have previously submitted it.) "
+"Password reset failed."
+msgstr "Não foi possível verificar a solicitação (você pode tê-la submetido anteriormente). A senha não foi reiniciada."
 
-#: ../../include/text.php:1029
-msgid "angry"
-msgstr "chateado"
+#: ../../mod/lostpass.php:110
+msgid "Your password has been reset as requested."
+msgstr "Sua senha foi reiniciada, conforme solicitado."
 
-#: ../../include/text.php:1030
-msgid "stupified"
-msgstr "estupefato"
-
-#: ../../include/text.php:1031
-msgid "puzzled"
-msgstr "confuso"
+#: ../../mod/lostpass.php:111
+msgid "Your new password is"
+msgstr "Sua nova senha é"
 
-#: ../../include/text.php:1032
-msgid "interested"
-msgstr "interessado"
+#: ../../mod/lostpass.php:112
+msgid "Save or copy your new password - and then"
+msgstr "Grave ou copie a sua nova senha e, então"
 
-#: ../../include/text.php:1033
-msgid "bitter"
-msgstr "rancoroso"
+#: ../../mod/lostpass.php:113
+msgid "click here to login"
+msgstr "clique aqui para entrar"
 
-#: ../../include/text.php:1034
-msgid "cheerful"
-msgstr "jovial"
+#: ../../mod/lostpass.php:114
+msgid ""
+"Your password may be changed from the <em>Settings</em> page after "
+"successful login."
+msgstr "Sua senha pode ser alterada na página de <em>Configurações</em> após você entrar em seu perfil."
 
-#: ../../include/text.php:1035
-msgid "alive"
-msgstr "vivo"
+#: ../../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\tCaro %1$s,\n\t\t\t\t\tSua senha foi alterada conforme solicitado. Por favor, guarde essas\n\t\t\t\tinformações para seus registros (ou altere a sua senha imediatamente para\n\t\t\t\talgo que você se lembrará).\n\t\t\t"
 
-#: ../../include/text.php:1036
-msgid "annoyed"
-msgstr "incomodado"
+#: ../../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 "\n\t\t\t\tOs seus dados de login são os seguintes:\n\n\t\t\t\tLocalização do Site:\t%1$s\n\t\t\t\tNome de Login:\t%2$s\n\t\t\t\tSenha:\t%3$s\n\n\t\t\t\tVocê pode alterar esta senha na sua página de configurações depois que efetuar o seu login.\n\t\t\t"
 
-#: ../../include/text.php:1037
-msgid "anxious"
-msgstr "ansioso"
+#: ../../mod/lostpass.php:147
+#, php-format
+msgid "Your password has been changed at %s"
+msgstr "Sua senha foi modifica às %s"
 
-#: ../../include/text.php:1038
-msgid "cranky"
-msgstr "excêntrico"
+#: ../../mod/lostpass.php:159
+msgid "Forgot your Password?"
+msgstr "Esqueceu a sua senha?"
 
-#: ../../include/text.php:1039
-msgid "disturbed"
-msgstr "perturbado"
+#: ../../mod/lostpass.php:160
+msgid ""
+"Enter your email address and submit to have your password reset. Then check "
+"your email for further instructions."
+msgstr "Digite o seu endereço de e-mail e clique em 'Reiniciar' para prosseguir com a reiniciação da sua senha. Após isso, verifique seu e-mail para mais instruções."
 
-#: ../../include/text.php:1040
-msgid "frustrated"
-msgstr "frustrado"
+#: ../../mod/lostpass.php:161
+msgid "Nickname or Email: "
+msgstr "Identificação ou e-mail: "
 
-#: ../../include/text.php:1041
-msgid "motivated"
-msgstr "motivado"
+#: ../../mod/lostpass.php:162
+msgid "Reset"
+msgstr "Reiniciar"
 
-#: ../../include/text.php:1042
-msgid "relaxed"
-msgstr "relaxado"
+#: ../../mod/babel.php:17
+msgid "Source (bbcode) text:"
+msgstr "Texto fonte (bbcode):"
 
-#: ../../include/text.php:1043
-msgid "surprised"
-msgstr "surpreso"
+#: ../../mod/babel.php:23
+msgid "Source (Diaspora) text to convert to BBcode:"
+msgstr "Texto fonte (Diaspora) a converter para BBcode:"
 
-#: ../../include/text.php:1213
-msgid "Monday"
-msgstr "Segunda"
+#: ../../mod/babel.php:31
+msgid "Source input: "
+msgstr "Entrada fonte:"
 
-#: ../../include/text.php:1213
-msgid "Tuesday"
-msgstr "Terça"
+#: ../../mod/babel.php:35
+msgid "bb2html (raw HTML): "
+msgstr "bb2html (HTML puro):"
 
-#: ../../include/text.php:1213
-msgid "Wednesday"
-msgstr "Quarta"
+#: ../../mod/babel.php:39
+msgid "bb2html: "
+msgstr "bb2html: "
 
-#: ../../include/text.php:1213
-msgid "Thursday"
-msgstr "Quinta"
+#: ../../mod/babel.php:43
+msgid "bb2html2bb: "
+msgstr "bb2html2bb: "
 
-#: ../../include/text.php:1213
-msgid "Friday"
-msgstr "Sexta"
+#: ../../mod/babel.php:47
+msgid "bb2md: "
+msgstr "bb2md: "
 
-#: ../../include/text.php:1213
-msgid "Saturday"
-msgstr "Sábado"
+#: ../../mod/babel.php:51
+msgid "bb2md2html: "
+msgstr "bb2md2html: "
 
-#: ../../include/text.php:1213
-msgid "Sunday"
-msgstr "Domingo"
+#: ../../mod/babel.php:55
+msgid "bb2dia2bb: "
+msgstr "bb2dia2bb: "
 
-#: ../../include/text.php:1217
-msgid "January"
-msgstr "Janeiro"
+#: ../../mod/babel.php:59
+msgid "bb2md2html2bb: "
+msgstr "bb2md2html2bb: "
 
-#: ../../include/text.php:1217
-msgid "February"
-msgstr "Fevereiro"
+#: ../../mod/babel.php:69
+msgid "Source input (Diaspora format): "
+msgstr "Fonte de entrada (formato Diaspora):"
 
-#: ../../include/text.php:1217
-msgid "March"
-msgstr "Março"
+#: ../../mod/babel.php:74
+msgid "diaspora2bb: "
+msgstr "diaspora2bb: "
 
-#: ../../include/text.php:1217
-msgid "April"
-msgstr "Abril"
+#: ../../mod/tagrm.php:41
+msgid "Tag removed"
+msgstr "A etiqueta foi removida"
 
-#: ../../include/text.php:1217
-msgid "May"
-msgstr "Maio"
+#: ../../mod/tagrm.php:79
+msgid "Remove Item Tag"
+msgstr "Remover a etiqueta do item"
 
-#: ../../include/text.php:1217
-msgid "June"
-msgstr "Junho"
+#: ../../mod/tagrm.php:81
+msgid "Select a tag to remove: "
+msgstr "Selecione uma etiqueta para remover: "
 
-#: ../../include/text.php:1217
-msgid "July"
-msgstr "Julho"
+#: ../../mod/removeme.php:46 ../../mod/removeme.php:49
+msgid "Remove My Account"
+msgstr "Remover minha conta"
 
-#: ../../include/text.php:1217
-msgid "August"
-msgstr "Agosto"
+#: ../../mod/removeme.php:47
+msgid ""
+"This will completely remove your account. Once this has been done it is not "
+"recoverable."
+msgstr "Isso removerá completamente a sua conta. Uma vez feito isso, não será mais possível recuperá-la."
 
-#: ../../include/text.php:1217
-msgid "September"
-msgstr "Setembro"
+#: ../../mod/removeme.php:48
+msgid "Please enter your password for verification:"
+msgstr "Por favor, digite a sua senha para verificação:"
 
-#: ../../include/text.php:1217
-msgid "October"
-msgstr "Outubro"
+#: ../../mod/profperm.php:25 ../../mod/profperm.php:55
+msgid "Invalid profile identifier."
+msgstr "Identificador de perfil inválido."
 
-#: ../../include/text.php:1217
-msgid "November"
-msgstr "Novembro"
+#: ../../mod/profperm.php:101
+msgid "Profile Visibility Editor"
+msgstr "Editor de visibilidade do perfil"
 
-#: ../../include/text.php:1217
-msgid "December"
-msgstr "Dezembro"
+#: ../../mod/profperm.php:114
+msgid "Visible To"
+msgstr "Visível para"
 
-#: ../../include/text.php:1437
-msgid "bytes"
-msgstr "bytes"
+#: ../../mod/profperm.php:130
+msgid "All Contacts (with secure profile access)"
+msgstr "Todos os contatos (com acesso a perfil seguro)"
 
-#: ../../include/text.php:1461 ../../include/text.php:1473
-msgid "Click to open/close"
-msgstr "Clique para abrir/fechar"
+#: ../../mod/match.php:12
+msgid "Profile Match"
+msgstr "Correspondência de perfil"
 
-#: ../../include/text.php:1702 ../../include/user.php:247
-#: ../../view/theme/duepuntozero/config.php:44
-msgid "default"
-msgstr "padrão"
+#: ../../mod/match.php:20
+msgid "No keywords to match. Please add keywords to your default profile."
+msgstr "Não foi encontrada nenhuma palavra-chave associada a você. Por favor, adicione algumas ao seu perfil padrão."
 
-#: ../../include/text.php:1714
-msgid "Select an alternate language"
-msgstr "Selecione um idioma alternativo"
+#: ../../mod/match.php:57
+msgid "is interested in:"
+msgstr "se interessa por:"
 
-#: ../../include/text.php:1970
-msgid "activity"
-msgstr "atividade"
+#: ../../mod/events.php:66
+msgid "Event title and start time are required."
+msgstr "O título do evento e a hora de início são obrigatórios."
 
-#: ../../include/text.php:1973
-msgid "post"
-msgstr "publicação"
+#: ../../mod/events.php:291
+msgid "l, F j"
+msgstr "l, F j"
 
-#: ../../include/text.php:2141
-msgid "Item filed"
-msgstr "O item foi arquivado"
+#: ../../mod/events.php:313
+msgid "Edit event"
+msgstr "Editar o evento"
 
-#: ../../include/bbcode.php:428 ../../include/bbcode.php:1047
-#: ../../include/bbcode.php:1048
-msgid "Image/photo"
-msgstr "Imagem/foto"
+#: ../../mod/events.php:371
+msgid "Create New Event"
+msgstr "Criar um novo evento"
 
-#: ../../include/bbcode.php:528
-#, php-format
-msgid "<a href=\"%1$s\" target=\"_blank\">%2$s</a> %3$s"
-msgstr "<a href=\"%1$s\" target=\"_blank\">%2$s</a> %3$s"
+#: ../../mod/events.php:372
+msgid "Previous"
+msgstr "Anterior"
 
-#: ../../include/bbcode.php:562
-#, php-format
-msgid ""
-"<span><a href=\"%s\" target=\"_blank\">%s</a> wrote the following <a "
-"href=\"%s\" target=\"_blank\">post</a>"
-msgstr "<span><a href=\"%s\" target=\"_blank\">%s</a> escreveu a seguinte <a href=\"%s\" target=\"_blank\">publicação</a>"
+#: ../../mod/events.php:373 ../../mod/install.php:207
+msgid "Next"
+msgstr "Próximo"
 
-#: ../../include/bbcode.php:1011 ../../include/bbcode.php:1031
-msgid "$1 wrote:"
-msgstr "$1 escreveu:"
+#: ../../mod/events.php:446
+msgid "hour:minute"
+msgstr "hora:minuto"
 
-#: ../../include/bbcode.php:1056 ../../include/bbcode.php:1057
-msgid "Encrypted content"
-msgstr "Conteúdo criptografado"
+#: ../../mod/events.php:456
+msgid "Event details"
+msgstr "Detalhes do evento"
 
-#: ../../include/notifier.php:786 ../../include/delivery.php:456
-msgid "(no subject)"
-msgstr "(sem assunto)"
-
-#: ../../include/notifier.php:796 ../../include/delivery.php:467
-#: ../../include/enotify.php:33
-msgid "noreply"
-msgstr "naoresponda"
-
-#: ../../include/dba_pdo.php:72 ../../include/dba.php:56
+#: ../../mod/events.php:457
 #, php-format
-msgid "Cannot locate DNS info for database server '%s'"
-msgstr "Não foi possível localizar a informação de DNS para o servidor de banco de dados '%s'"
-
-#: ../../include/contact_selectors.php:32
-msgid "Unknown | Not categorised"
-msgstr "Desconhecido | Não categorizado"
+msgid "Format is %s %s. Starting date and Title are required."
+msgstr "O formato é %s %s. O título e a data de início são obrigatórios."
 
-#: ../../include/contact_selectors.php:33
-msgid "Block immediately"
-msgstr "Bloquear imediatamente"
+#: ../../mod/events.php:459
+msgid "Event Starts:"
+msgstr "Início do evento:"
 
-#: ../../include/contact_selectors.php:34
-msgid "Shady, spammer, self-marketer"
-msgstr "Dissimulado, spammer, propagandista"
+#: ../../mod/events.php:459 ../../mod/events.php:473
+msgid "Required"
+msgstr "Obrigatório"
 
-#: ../../include/contact_selectors.php:35
-msgid "Known to me, but no opinion"
-msgstr "Eu conheço, mas não possuo nenhuma opinião acerca"
+#: ../../mod/events.php:462
+msgid "Finish date/time is not known or not relevant"
+msgstr "A data/hora de término não é conhecida ou não é relevante"
 
-#: ../../include/contact_selectors.php:36
-msgid "OK, probably harmless"
-msgstr "Ok, provavelmente inofensivo"
+#: ../../mod/events.php:464
+msgid "Event Finishes:"
+msgstr "Término do evento:"
 
-#: ../../include/contact_selectors.php:37
-msgid "Reputable, has my trust"
-msgstr "Boa reputação, tem minha confiança"
+#: ../../mod/events.php:467
+msgid "Adjust for viewer timezone"
+msgstr "Ajustar para o fuso horário do visualizador"
 
-#: ../../include/contact_selectors.php:60
-msgid "Weekly"
-msgstr "Semanalmente"
+#: ../../mod/events.php:469
+msgid "Description:"
+msgstr "Descrição:"
 
-#: ../../include/contact_selectors.php:61
-msgid "Monthly"
-msgstr "Mensalmente"
+#: ../../mod/events.php:473
+msgid "Title:"
+msgstr "Título:"
 
-#: ../../include/contact_selectors.php:77
-msgid "OStatus"
-msgstr "OStatus"
+#: ../../mod/events.php:475
+msgid "Share this event"
+msgstr "Compartilhar este evento"
 
-#: ../../include/contact_selectors.php:78
-msgid "RSS/Atom"
-msgstr "RSS/Atom"
+#: ../../mod/ping.php:240
+msgid "{0} wants to be your friend"
+msgstr "{0} deseja ser seu amigo"
 
-#: ../../include/contact_selectors.php:82
-msgid "Zot!"
-msgstr "Zot!"
+#: ../../mod/ping.php:245
+msgid "{0} sent you a message"
+msgstr "{0} lhe enviou uma mensagem"
 
-#: ../../include/contact_selectors.php:83
-msgid "LinkedIn"
-msgstr "LinkedIn"
+#: ../../mod/ping.php:250
+msgid "{0} requested registration"
+msgstr "{0} solicitou registro"
 
-#: ../../include/contact_selectors.php:84
-msgid "XMPP/IM"
-msgstr "XMPP/IM"
+#: ../../mod/ping.php:256
+#, php-format
+msgid "{0} commented %s's post"
+msgstr "{0} comentou a publicação de %s"
 
-#: ../../include/contact_selectors.php:85
-msgid "MySpace"
-msgstr "MySpace"
+#: ../../mod/ping.php:261
+#, php-format
+msgid "{0} liked %s's post"
+msgstr "{0} gostou da publicação de %s"
 
-#: ../../include/contact_selectors.php:87
-msgid "Google+"
-msgstr "Google+"
+#: ../../mod/ping.php:266
+#, php-format
+msgid "{0} disliked %s's post"
+msgstr "{0} desgostou da publicação de %s"
 
-#: ../../include/contact_selectors.php:88
-msgid "pump.io"
-msgstr "pump.io"
+#: ../../mod/ping.php:271
+#, php-format
+msgid "{0} is now friends with %s"
+msgstr "{0} agora é amigo de %s"
 
-#: ../../include/contact_selectors.php:89
-msgid "Twitter"
-msgstr "Twitter"
+#: ../../mod/ping.php:276
+msgid "{0} posted"
+msgstr "{0} publicou"
 
-#: ../../include/contact_selectors.php:90
-msgid "Diaspora Connector"
-msgstr "Conector do Diáspora"
+#: ../../mod/ping.php:281
+#, php-format
+msgid "{0} tagged %s's post with #%s"
+msgstr "{0} etiquetou a publicação de %s com #%s"
 
-#: ../../include/contact_selectors.php:91
-msgid "Statusnet"
-msgstr "Statusnet"
+#: ../../mod/ping.php:287
+msgid "{0} mentioned you in a post"
+msgstr "{0} mencionou você em uma publicação"
 
-#: ../../include/contact_selectors.php:92
-msgid "App.net"
-msgstr "App.net"
+#: ../../mod/mood.php:133
+msgid "Mood"
+msgstr "Humor"
 
-#: ../../include/Scrape.php:614
-msgid " on Last.fm"
-msgstr "na Last.fm"
+#: ../../mod/mood.php:134
+msgid "Set your current mood and tell your friends"
+msgstr "Defina o seu humor e conte aos seus amigos"
 
-#: ../../include/bb2diaspora.php:154 ../../include/event.php:20
-msgid "Starts:"
-msgstr "Início:"
+#: ../../mod/search.php:174 ../../mod/community.php:62
+#: ../../mod/community.php:71
+msgid "No results."
+msgstr "Nenhum resultado."
 
-#: ../../include/bb2diaspora.php:162 ../../include/event.php:30
-msgid "Finishes:"
-msgstr "Término:"
+#: ../../mod/message.php:67
+msgid "Unable to locate contact information."
+msgstr "Não foi possível localizar informação do contato."
 
-#: ../../include/profile_advanced.php:22
-msgid "j F, Y"
-msgstr "j de F, Y"
+#: ../../mod/message.php:207
+msgid "Do you really want to delete this message?"
+msgstr "Você realmente deseja deletar essa mensagem?"
 
-#: ../../include/profile_advanced.php:23
-msgid "j F"
-msgstr "j de F"
+#: ../../mod/message.php:227
+msgid "Message deleted."
+msgstr "A mensagem foi excluída."
 
-#: ../../include/profile_advanced.php:30
-msgid "Birthday:"
-msgstr "Aniversário:"
+#: ../../mod/message.php:258
+msgid "Conversation removed."
+msgstr "A conversa foi removida."
 
-#: ../../include/profile_advanced.php:34
-msgid "Age:"
-msgstr "Idade:"
+#: ../../mod/message.php:371
+msgid "No messages."
+msgstr "Nenhuma mensagem."
 
-#: ../../include/profile_advanced.php:43
+#: ../../mod/message.php:378
 #, php-format
-msgid "for %1$d %2$s"
-msgstr "para %1$d %2$s"
+msgid "Unknown sender - %s"
+msgstr "Remetente desconhecido - %s"
 
-#: ../../include/profile_advanced.php:52
-msgid "Tags:"
-msgstr "Etiquetas:"
+#: ../../mod/message.php:381
+#, php-format
+msgid "You and %s"
+msgstr "Você e %s"
 
-#: ../../include/profile_advanced.php:56
-msgid "Religion:"
-msgstr "Religião:"
+#: ../../mod/message.php:384
+#, php-format
+msgid "%s and You"
+msgstr "%s e você"
 
-#: ../../include/profile_advanced.php:60
-msgid "Hobbies/Interests:"
-msgstr "Passatempos/Interesses:"
+#: ../../mod/message.php:405 ../../mod/message.php:546
+msgid "Delete conversation"
+msgstr "Excluir conversa"
 
-#: ../../include/profile_advanced.php:67
-msgid "Contact information and Social Networks:"
-msgstr "Informações de contato e redes sociais:"
+#: ../../mod/message.php:408
+msgid "D, d M Y - g:i A"
+msgstr "D, d M Y - g:i A"
 
-#: ../../include/profile_advanced.php:69
-msgid "Musical interests:"
-msgstr "Preferências musicais:"
+#: ../../mod/message.php:411
+#, php-format
+msgid "%d message"
+msgid_plural "%d messages"
+msgstr[0] "%d mensagem"
+msgstr[1] "%d mensagens"
 
-#: ../../include/profile_advanced.php:71
-msgid "Books, literature:"
-msgstr "Livros, literatura:"
+#: ../../mod/message.php:450
+msgid "Message not available."
+msgstr "A mensagem não está disponível."
 
-#: ../../include/profile_advanced.php:73
-msgid "Television:"
-msgstr "Televisão:"
+#: ../../mod/message.php:520
+msgid "Delete message"
+msgstr "Excluir a mensagem"
 
-#: ../../include/profile_advanced.php:75
-msgid "Film/dance/culture/entertainment:"
-msgstr "Filmes/dança/cultura/entretenimento:"
+#: ../../mod/message.php:548
+msgid ""
+"No secure communications available. You <strong>may</strong> be able to "
+"respond from the sender's profile page."
+msgstr "Não foi encontrada nenhuma comunicação segura. Você <strong>pode</strong> ser capaz de responder a partir da página de perfil do remetente."
 
-#: ../../include/profile_advanced.php:77
-msgid "Love/Romance:"
-msgstr "Amor/romance:"
+#: ../../mod/message.php:552
+msgid "Send Reply"
+msgstr "Enviar resposta"
 
-#: ../../include/profile_advanced.php:79
-msgid "Work/employment:"
-msgstr "Trabalho/emprego:"
+#: ../../mod/community.php:23
+msgid "Not available."
+msgstr "Não disponível."
 
-#: ../../include/profile_advanced.php:81
-msgid "School/education:"
-msgstr "Escola/educação:"
+#: ../../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 "O perfil não foi encontrado."
 
-#: ../../include/plugin.php:455 ../../include/plugin.php:457
-msgid "Click here to upgrade."
-msgstr "Clique aqui para atualização (upgrade)."
+#: ../../mod/profiles.php:37
+msgid "Profile deleted."
+msgstr "O perfil foi excluído."
 
-#: ../../include/plugin.php:463
-msgid "This action exceeds the limits set by your subscription plan."
-msgstr "Essa ação excede o limite definido para o seu plano de assinatura."
+#: ../../mod/profiles.php:55 ../../mod/profiles.php:89
+msgid "Profile-"
+msgstr "Perfil-"
 
-#: ../../include/plugin.php:468
-msgid "This action is not available under your subscription plan."
-msgstr "Essa ação não está disponível em seu plano de assinatura."
+#: ../../mod/profiles.php:74 ../../mod/profiles.php:117
+msgid "New profile created."
+msgstr "O novo perfil foi criado."
 
-#: ../../include/nav.php:73
-msgid "End this session"
-msgstr "Terminar esta sessão"
+#: ../../mod/profiles.php:95
+msgid "Profile unavailable to clone."
+msgstr "O perfil não está disponível para clonagem."
 
-#: ../../include/nav.php:76 ../../include/nav.php:148
-#: ../../view/theme/diabook/theme.php:123
-msgid "Your posts and conversations"
-msgstr "Suas publicações e conversas"
+#: ../../mod/profiles.php:189
+msgid "Profile Name is required."
+msgstr "É necessário informar o nome do perfil."
 
-#: ../../include/nav.php:77 ../../view/theme/diabook/theme.php:124
-msgid "Your profile page"
-msgstr "Sua página de perfil"
+#: ../../mod/profiles.php:340
+msgid "Marital Status"
+msgstr "Situação amorosa"
 
-#: ../../include/nav.php:78 ../../view/theme/diabook/theme.php:126
-msgid "Your photos"
-msgstr "Suas fotos"
+#: ../../mod/profiles.php:344
+msgid "Romantic Partner"
+msgstr "Parceiro romântico"
 
-#: ../../include/nav.php:79
-msgid "Your videos"
-msgstr "Seus vídeos"
+#: ../../mod/profiles.php:348
+msgid "Likes"
+msgstr "Gosta de"
 
-#: ../../include/nav.php:80 ../../view/theme/diabook/theme.php:127
-msgid "Your events"
-msgstr "Seus eventos"
+#: ../../mod/profiles.php:352
+msgid "Dislikes"
+msgstr "Não gosta de"
 
-#: ../../include/nav.php:81 ../../view/theme/diabook/theme.php:128
-msgid "Personal notes"
-msgstr "Suas anotações pessoais"
+#: ../../mod/profiles.php:356
+msgid "Work/Employment"
+msgstr "Trabalho/emprego"
 
-#: ../../include/nav.php:81
-msgid "Your personal notes"
-msgstr "Suas anotações pessoais"
+#: ../../mod/profiles.php:359
+msgid "Religion"
+msgstr "Religião"
 
-#: ../../include/nav.php:92
-msgid "Sign in"
-msgstr "Entrar"
+#: ../../mod/profiles.php:363
+msgid "Political Views"
+msgstr "Posicionamento político"
 
-#: ../../include/nav.php:105
-msgid "Home Page"
-msgstr "Página pessoal"
+#: ../../mod/profiles.php:367
+msgid "Gender"
+msgstr "Gênero"
 
-#: ../../include/nav.php:109
-msgid "Create an account"
-msgstr "Criar uma conta"
+#: ../../mod/profiles.php:371
+msgid "Sexual Preference"
+msgstr "Preferência sexual"
 
-#: ../../include/nav.php:114
-msgid "Help and documentation"
-msgstr "Ajuda e documentação"
+#: ../../mod/profiles.php:375
+msgid "Homepage"
+msgstr "Página Principal"
 
-#: ../../include/nav.php:117
-msgid "Apps"
-msgstr "Aplicativos"
+#: ../../mod/profiles.php:379 ../../mod/profiles.php:698
+msgid "Interests"
+msgstr "Interesses"
 
-#: ../../include/nav.php:117
-msgid "Addon applications, utilities, games"
-msgstr "Complementos, utilitários, jogos"
+#: ../../mod/profiles.php:383
+msgid "Address"
+msgstr "Endereço"
 
-#: ../../include/nav.php:119
-msgid "Search site content"
-msgstr "Pesquisar conteúdo no site"
+#: ../../mod/profiles.php:390 ../../mod/profiles.php:694
+msgid "Location"
+msgstr "Localização"
 
-#: ../../include/nav.php:129
-msgid "Conversations on this site"
-msgstr "Conversas neste site"
+#: ../../mod/profiles.php:473
+msgid "Profile updated."
+msgstr "O perfil foi atualizado."
 
-#: ../../include/nav.php:131
-msgid "Conversations on the network"
-msgstr ""
+#: ../../mod/profiles.php:568
+msgid " and "
+msgstr " e "
 
-#: ../../include/nav.php:133
-msgid "Directory"
-msgstr "Diretório"
+#: ../../mod/profiles.php:576
+msgid "public profile"
+msgstr "perfil público"
 
-#: ../../include/nav.php:133
-msgid "People directory"
-msgstr "Diretório de pessoas"
+#: ../../mod/profiles.php:579
+#, php-format
+msgid "%1$s changed %2$s to &ldquo;%3$s&rdquo;"
+msgstr "%1$s mudou %2$s para &ldquo;%3$s&rdquo;"
 
-#: ../../include/nav.php:135
-msgid "Information"
-msgstr "Informação"
+#: ../../mod/profiles.php:580
+#, php-format
+msgid " - Visit %1$s's %2$s"
+msgstr " - Visite %2$s de %1$s"
 
-#: ../../include/nav.php:135
-msgid "Information about this friendica instance"
-msgstr "Informação sobre esta instância do friendica"
+#: ../../mod/profiles.php:583
+#, php-format
+msgid "%1$s has an updated %2$s, changing %3$s."
+msgstr "%1$s foi atualizado %2$s, mudando %3$s."
 
-#: ../../include/nav.php:145
-msgid "Conversations from your friends"
-msgstr "Conversas dos seus amigos"
+#: ../../mod/profiles.php:658
+msgid "Hide contacts and friends:"
+msgstr "Esconder contatos e amigos:"
 
-#: ../../include/nav.php:146
-msgid "Network Reset"
-msgstr "Reiniciar Rede"
+#: ../../mod/profiles.php:663
+msgid "Hide your contact/friend list from viewers of this profile?"
+msgstr "Ocultar sua lista de contatos/amigos dos visitantes no seu perfil?"
 
-#: ../../include/nav.php:146
-msgid "Load Network page with no filters"
-msgstr "Carregar página Rede sem filtros"
+#: ../../mod/profiles.php:685
+msgid "Edit Profile Details"
+msgstr "Editar os detalhes do perfil"
 
-#: ../../include/nav.php:154
-msgid "Friend Requests"
-msgstr "Requisições de Amizade"
+#: ../../mod/profiles.php:687
+msgid "Change Profile Photo"
+msgstr "Mudar Foto do Perfil"
 
-#: ../../include/nav.php:156
-msgid "See all notifications"
-msgstr "Ver todas notificações"
+#: ../../mod/profiles.php:688
+msgid "View this profile"
+msgstr "Ver este perfil"
 
-#: ../../include/nav.php:157
-msgid "Mark all system notifications seen"
-msgstr "Marcar todas as notificações de sistema como vistas"
+#: ../../mod/profiles.php:689
+msgid "Create a new profile using these settings"
+msgstr "Criar um novo perfil usando estas configurações"
 
-#: ../../include/nav.php:161
-msgid "Private mail"
-msgstr "Mensagem privada"
+#: ../../mod/profiles.php:690
+msgid "Clone this profile"
+msgstr "Clonar este perfil"
 
-#: ../../include/nav.php:162
-msgid "Inbox"
-msgstr "Recebidas"
+#: ../../mod/profiles.php:691
+msgid "Delete this profile"
+msgstr "Excluir este perfil"
 
-#: ../../include/nav.php:163
-msgid "Outbox"
-msgstr "Enviadas"
+#: ../../mod/profiles.php:692
+msgid "Basic information"
+msgstr "Informação básica"
 
-#: ../../include/nav.php:167
-msgid "Manage"
-msgstr "Gerenciar"
+#: ../../mod/profiles.php:693
+msgid "Profile picture"
+msgstr "Foto do perfil"
 
-#: ../../include/nav.php:167
-msgid "Manage other pages"
-msgstr "Gerenciar outras páginas"
+#: ../../mod/profiles.php:695
+msgid "Preferences"
+msgstr "Preferências"
 
-#: ../../include/nav.php:172
-msgid "Account settings"
-msgstr "Configurações da conta"
+#: ../../mod/profiles.php:696
+msgid "Status information"
+msgstr "Informação de Status"
 
-#: ../../include/nav.php:175
-msgid "Manage/Edit Profiles"
-msgstr "Administrar/Editar Perfis"
+#: ../../mod/profiles.php:697
+msgid "Additional information"
+msgstr "Informações adicionais"
 
-#: ../../include/nav.php:177
-msgid "Manage/edit friends and contacts"
-msgstr "Gerenciar/editar amigos e contatos"
+#: ../../mod/profiles.php:699 ../../mod/newmember.php:36
+#: ../../mod/profile_photo.php:244
+msgid "Upload Profile Photo"
+msgstr "Enviar foto do perfil"
 
-#: ../../include/nav.php:184
-msgid "Site setup and configuration"
-msgstr "Configurações do site"
+#: ../../mod/profiles.php:700
+msgid "Profile Name:"
+msgstr "Nome do perfil:"
 
-#: ../../include/nav.php:188
-msgid "Navigation"
-msgstr "Navegação"
+#: ../../mod/profiles.php:701
+msgid "Your Full Name:"
+msgstr "Seu nome completo:"
 
-#: ../../include/nav.php:188
-msgid "Site map"
-msgstr "Mapa do Site"
+#: ../../mod/profiles.php:702
+msgid "Title/Description:"
+msgstr "Título/Descrição:"
 
-#: ../../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 "Usuário não encontrado."
+#: ../../mod/profiles.php:703
+msgid "Your Gender:"
+msgstr "Seu gênero:"
 
-#: ../../include/api.php:771
+#: ../../mod/profiles.php:704
 #, php-format
-msgid "Daily posting limit of %d posts reached. The post was rejected."
-msgstr "O limite diário de postagem de %d mensagens foi atingido. O post foi rejeitado."
+msgid "Birthday (%s):"
+msgstr "Aniversário (%s):"
 
-#: ../../include/api.php:790
-#, php-format
-msgid "Weekly posting limit of %d posts reached. The post was rejected."
-msgstr "O limite de postagem semanal de %d mensagens foi atingido. O post foi rejeitado."
+#: ../../mod/profiles.php:705
+msgid "Street Address:"
+msgstr "Endereço:"
 
-#: ../../include/api.php:809
-#, php-format
-msgid "Monthly posting limit of %d posts reached. The post was rejected."
-msgstr "O limite de postagem mensal de %d mensagens foi atingido. O post foi rejeitado."
+#: ../../mod/profiles.php:706
+msgid "Locality/City:"
+msgstr "Localidade/Cidade:"
 
-#: ../../include/api.php:1272
-msgid "There is no status with this id."
-msgstr "Não existe status com esse id."
+#: ../../mod/profiles.php:707
+msgid "Postal/Zip Code:"
+msgstr "CEP:"
 
-#: ../../include/api.php:1342
-msgid "There is no conversation with this id."
-msgstr "Não existe conversas com esse id."
+#: ../../mod/profiles.php:708
+msgid "Country:"
+msgstr "País:"
 
-#: ../../include/api.php:1614
-msgid "Invalid request."
-msgstr "Solicitação inválida."
+#: ../../mod/profiles.php:709
+msgid "Region/State:"
+msgstr "Região/Estado:"
 
-#: ../../include/api.php:1625
-msgid "Invalid item."
-msgstr "Ítem inválido."
+#: ../../mod/profiles.php:710
+msgid "<span class=\"heart\">&hearts;</span> Marital Status:"
+msgstr "<span class=\"heart\">&hearts;</span> Situação amorosa:"
 
-#: ../../include/api.php:1635
-msgid "Invalid action. "
-msgstr "Ação inválida."
+#: ../../mod/profiles.php:711
+msgid "Who: (if applicable)"
+msgstr "Quem: (se pertinente)"
 
-#: ../../include/api.php:1643
-msgid "DB error"
-msgstr "Erro do Banco de Dados"
+#: ../../mod/profiles.php:712
+msgid "Examples: cathy123, Cathy Williams, cathy@example.com"
+msgstr "Exemplos: fulano123, Fulano de Tal, fulano@exemplo.com"
 
-#: ../../include/user.php:40
-msgid "An invitation is required."
-msgstr "É necessário um convite."
+#: ../../mod/profiles.php:713
+msgid "Since [date]:"
+msgstr "Desde [data]:"
 
-#: ../../include/user.php:45
-msgid "Invitation could not be verified."
-msgstr "Não foi possível verificar o convite."
+#: ../../mod/profiles.php:715
+msgid "Homepage URL:"
+msgstr "Endereço do site web:"
 
-#: ../../include/user.php:53
-msgid "Invalid OpenID url"
-msgstr "A URL do OpenID é inválida"
+#: ../../mod/profiles.php:718
+msgid "Religious Views:"
+msgstr "Orientação religiosa:"
 
-#: ../../include/user.php:74
-msgid "Please enter the required information."
-msgstr "Por favor, forneça a informação solicitada."
+#: ../../mod/profiles.php:719
+msgid "Public Keywords:"
+msgstr "Palavras-chave públicas:"
 
-#: ../../include/user.php:88
-msgid "Please use a shorter name."
-msgstr "Por favor, use um nome mais curto."
+#: ../../mod/profiles.php:720
+msgid "Private Keywords:"
+msgstr "Palavras-chave privadas:"
 
-#: ../../include/user.php:90
-msgid "Name too short."
-msgstr "O nome é muito curto."
+#: ../../mod/profiles.php:723
+msgid "Example: fishing photography software"
+msgstr "Exemplo: pesca fotografia software"
 
-#: ../../include/user.php:105
-msgid "That doesn't appear to be your full (First Last) name."
-msgstr "Isso não parece ser o seu nome completo (Nome Sobrenome)."
+#: ../../mod/profiles.php:724
+msgid "(Used for suggesting potential friends, can be seen by others)"
+msgstr "(Usado para sugerir amigos em potencial, pode ser visto pelos outros)"
 
-#: ../../include/user.php:110
-msgid "Your email domain is not among those allowed on this site."
-msgstr "O domínio do seu e-mail não está entre os permitidos neste site."
+#: ../../mod/profiles.php:725
+msgid "(Used for searching profiles, never shown to others)"
+msgstr "(Usado na pesquisa de perfis, nunca é exibido para os outros)"
 
-#: ../../include/user.php:113
-msgid "Not a valid email address."
-msgstr "Não é um endereço de e-mail válido."
+#: ../../mod/profiles.php:726
+msgid "Tell us about yourself..."
+msgstr "Fale um pouco sobre você..."
 
-#: ../../include/user.php:126
-msgid "Cannot use that email."
-msgstr "Não é possível usar esse e-mail."
+#: ../../mod/profiles.php:727
+msgid "Hobbies/Interests"
+msgstr "Passatempos/Interesses"
 
-#: ../../include/user.php:132
-msgid ""
-"Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and "
-"must also begin with a letter."
-msgstr "A sua identificação pode conter somente os caracteres \"a-z\", \"0-9\", \"-\", e \"_\", além disso, deve começar com uma letra."
+#: ../../mod/profiles.php:728
+msgid "Contact information and Social Networks"
+msgstr "Informações de contato e redes sociais"
 
-#: ../../include/user.php:138 ../../include/user.php:236
-msgid "Nickname is already registered. Please choose another."
-msgstr "Esta identificação já foi registrada. Por favor, escolha outra."
+#: ../../mod/profiles.php:729
+msgid "Musical interests"
+msgstr "Preferências musicais"
 
-#: ../../include/user.php:148
-msgid ""
-"Nickname was once registered here and may not be re-used. Please choose "
-"another."
-msgstr "Essa identificação já foi registrada e não pode ser reutilizada. Por favor, escolha outra."
+#: ../../mod/profiles.php:730
+msgid "Books, literature"
+msgstr "Livros, literatura"
 
-#: ../../include/user.php:164
-msgid "SERIOUS ERROR: Generation of security keys failed."
-msgstr "ERRO GRAVE: Não foi possível gerar as chaves de segurança."
+#: ../../mod/profiles.php:731
+msgid "Television"
+msgstr "Televisão"
 
-#: ../../include/user.php:222
-msgid "An error occurred during registration. Please try again."
-msgstr "Ocorreu um erro durante o registro. Por favor, tente novamente."
+#: ../../mod/profiles.php:732
+msgid "Film/dance/culture/entertainment"
+msgstr "Filme/dança/cultura/entretenimento"
 
-#: ../../include/user.php:257
-msgid "An error occurred creating your default profile. Please try again."
-msgstr "Ocorreu um erro na criação do seu perfil padrão. Por favor, tente novamente."
+#: ../../mod/profiles.php:733
+msgid "Love/romance"
+msgstr "Amor/romance"
 
-#: ../../include/user.php:289 ../../include/user.php:293
-#: ../../include/profile_selectors.php:42
-msgid "Friends"
-msgstr "Amigos"
+#: ../../mod/profiles.php:734
+msgid "Work/employment"
+msgstr "Trabalho/emprego"
 
-#: ../../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 "\n\t\tCaro %1$s,\n\t\t\tObrigado por se cadastrar em %2$s. Sua conta foi criada.\n\t"
+#: ../../mod/profiles.php:735
+msgid "School/education"
+msgstr "Escola/educação"
 
-#: ../../include/user.php:381
-#, php-format
+#: ../../mod/profiles.php:740
 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 "\n\t\tOs dados de login são os seguintes:\n\t\t\tLocal do Site:\t%3$s\n\t\t\tNome de Login:\t%1$s\n\t\t\tSenha:\t%5$s\n\n\t\tVocê pode alterar sua senha na página de \"Configurações\" da sua conta após fazer o login\n\n\t\tPor favor, dedique alguns minutos na página para rever as outras configurações da sua conta.\n\n\t\tTalvez você também queira incluir algumas informações básicas adicionais ao seu perfil padrão\n\t\t(na página de \"Perfis\") para que outras pessoas possam encontrá-lo com facilidade.\n\n\t\tRecomendamos que inclua seu nome completo, adicione uma foto do perfil,\n\t\tadicionar algumas \"palavras-chave\" (muito útil para fazer novas amizades) - e\n\t\ttalvez em que pais você mora; se você não quiser ser mais específico \n\t\tdo que isso.\n\n\t\tNós respeitamos plenamente seu direito à privacidade, e nenhum desses itens são necessários.\n\t\tSe você é novo por aqui e não conheço ninguém, eles podem ajuda-lo a fazer novas e interessantes amizades.\n\n\n\t\tObrigado e bem-vindo a %2$s."
+"This is your <strong>public</strong> profile.<br />It <strong>may</strong> "
+"be visible to anybody using the internet."
+msgstr "Este é o seu perfil <strong>público</strong>.<br />Ele <strong>pode</strong> estar visível para qualquer um que acesse a Internet."
 
-#: ../../include/diaspora.php:703
-msgid "Sharing notification from Diaspora network"
-msgstr "Notificação de compartilhamento da rede Diaspora"
+#: ../../mod/profiles.php:750 ../../mod/directory.php:113
+msgid "Age: "
+msgstr "Idade: "
 
-#: ../../include/diaspora.php:2520
-msgid "Attachments:"
-msgstr "Anexos:"
+#: ../../mod/profiles.php:803
+msgid "Edit/Manage Profiles"
+msgstr "Editar/Gerenciar perfis"
 
-#: ../../include/items.php:4555
-msgid "Do you really want to delete this item?"
-msgstr "Você realmente deseja deletar esse item?"
+#: ../../mod/install.php:117
+msgid "Friendica Communications Server - Setup"
+msgstr "Servidor de Comunicações Friendica - Configuração"
 
-#: ../../include/items.php:4778
-msgid "Archives"
-msgstr "Arquivos"
+#: ../../mod/install.php:123
+msgid "Could not connect to database."
+msgstr "Não foi possível conectar ao banco de dados."
 
-#: ../../include/profile_selectors.php:6
-msgid "Male"
-msgstr "Masculino"
+#: ../../mod/install.php:127
+msgid "Could not create table."
+msgstr "Não foi possível criar tabela."
 
-#: ../../include/profile_selectors.php:6
-msgid "Female"
-msgstr "Feminino"
+#: ../../mod/install.php:133
+msgid "Your Friendica site database has been installed."
+msgstr "O banco de dados do seu site Friendica foi instalado."
 
-#: ../../include/profile_selectors.php:6
-msgid "Currently Male"
-msgstr "Atualmente masculino"
+#: ../../mod/install.php:138
+msgid ""
+"You may need to import the file \"database.sql\" manually using phpmyadmin "
+"or mysql."
+msgstr "Você provavelmente precisará importar o arquivo \"database.sql\" manualmente, usando o phpmyadmin ou o mysql."
 
-#: ../../include/profile_selectors.php:6
-msgid "Currently Female"
-msgstr "Atualmente feminino"
+#: ../../mod/install.php:139 ../../mod/install.php:206
+#: ../../mod/install.php:525
+msgid "Please see the file \"INSTALL.txt\"."
+msgstr "Por favor, dê uma olhada no arquivo \"INSTALL.TXT\"."
 
-#: ../../include/profile_selectors.php:6
-msgid "Mostly Male"
-msgstr "Masculino a maior parte do tempo"
+#: ../../mod/install.php:203
+msgid "System check"
+msgstr "Checagem do sistema"
 
-#: ../../include/profile_selectors.php:6
-msgid "Mostly Female"
-msgstr "Feminino a maior parte do tempo"
+#: ../../mod/install.php:208
+msgid "Check again"
+msgstr "Checar novamente"
 
-#: ../../include/profile_selectors.php:6
-msgid "Transgender"
-msgstr "Transgênero"
+#: ../../mod/install.php:227
+msgid "Database connection"
+msgstr "Conexão de banco de dados"
 
-#: ../../include/profile_selectors.php:6
-msgid "Intersex"
-msgstr "Intersexual"
+#: ../../mod/install.php:228
+msgid ""
+"In order to install Friendica we need to know how to connect to your "
+"database."
+msgstr "À fim de instalar o Friendica, você precisa saber como se conectar ao seu banco de dados."
 
-#: ../../include/profile_selectors.php:6
-msgid "Transsexual"
-msgstr "Transexual"
-
-#: ../../include/profile_selectors.php:6
-msgid "Hermaphrodite"
-msgstr "Hermafrodita"
+#: ../../mod/install.php:229
+msgid ""
+"Please contact your hosting provider or site administrator if you have "
+"questions about these settings."
+msgstr "Por favor, entre em contato com a sua hospedagem ou com o administrador do site caso você tenha alguma dúvida em relação a essas configurações."
 
-#: ../../include/profile_selectors.php:6
-msgid "Neuter"
-msgstr "Neutro"
+#: ../../mod/install.php:230
+msgid ""
+"The database you specify below should already exist. If it does not, please "
+"create it before continuing."
+msgstr "O banco de dados que você especificou abaixo já deve existir. Caso contrário, por favor crie-o antes de continuar."
 
-#: ../../include/profile_selectors.php:6
-msgid "Non-specific"
-msgstr "Não específico"
+#: ../../mod/install.php:234
+msgid "Database Server Name"
+msgstr "Nome do servidor de banco de dados"
 
-#: ../../include/profile_selectors.php:6
-msgid "Other"
-msgstr "Outro"
+#: ../../mod/install.php:235
+msgid "Database Login Name"
+msgstr "Nome do usuário do banco de dados"
 
-#: ../../include/profile_selectors.php:6
-msgid "Undecided"
-msgstr "Indeciso"
+#: ../../mod/install.php:236
+msgid "Database Login Password"
+msgstr "Senha do usuário do banco de dados"
 
-#: ../../include/profile_selectors.php:23
-msgid "Males"
-msgstr "Homens"
+#: ../../mod/install.php:237
+msgid "Database Name"
+msgstr "Nome do banco de dados"
 
-#: ../../include/profile_selectors.php:23
-msgid "Females"
-msgstr "Mulheres"
+#: ../../mod/install.php:238 ../../mod/install.php:277
+msgid "Site administrator email address"
+msgstr "Endereço de email do administrador do site"
 
-#: ../../include/profile_selectors.php:23
-msgid "Gay"
-msgstr "Gays"
+#: ../../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 "O endereço de email da sua conta deve ser igual a este para que você possa utilizar o painel de administração web."
 
-#: ../../include/profile_selectors.php:23
-msgid "Lesbian"
-msgstr "Lésbicas"
+#: ../../mod/install.php:242 ../../mod/install.php:280
+msgid "Please select a default timezone for your website"
+msgstr "Por favor, selecione o fuso horário padrão para o seu site"
 
-#: ../../include/profile_selectors.php:23
-msgid "No Preference"
-msgstr "Sem preferência"
+#: ../../mod/install.php:267
+msgid "Site settings"
+msgstr "Configurações do site"
 
-#: ../../include/profile_selectors.php:23
-msgid "Bisexual"
-msgstr "Bissexuais"
+#: ../../mod/install.php:321
+msgid "Could not find a command line version of PHP in the web server PATH."
+msgstr "Não foi possível encontrar uma versão de linha de comando do PHP nos caminhos do seu servidor web."
 
-#: ../../include/profile_selectors.php:23
-msgid "Autosexual"
-msgstr "Autossexuais"
+#: ../../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 <a "
+"href='http://friendica.com/node/27'>'Activating scheduled tasks'</a>"
+msgstr "Caso você não tenha uma versão de linha de comando do PHP instalado no seu servidor, você não será capaz de executar a captação em segundo plano. Dê uma olhada em <a href='http://friendica.com/node/27'>'Activating scheduled tasks'</a>"
 
-#: ../../include/profile_selectors.php:23
-msgid "Abstinent"
-msgstr "Abstêmios"
+#: ../../mod/install.php:326
+msgid "PHP executable path"
+msgstr "Caminho para o executável do PhP"
 
-#: ../../include/profile_selectors.php:23
-msgid "Virgin"
-msgstr "Virgens"
+#: ../../mod/install.php:326
+msgid ""
+"Enter full path to php executable. You can leave this blank to continue the "
+"installation."
+msgstr "Digite o caminho completo do executável PHP. Você pode deixar isso em branco para continuar com a instalação."
 
-#: ../../include/profile_selectors.php:23
-msgid "Deviant"
-msgstr "Desviantes"
+#: ../../mod/install.php:331
+msgid "Command line PHP"
+msgstr "PHP em linha de comando"
 
-#: ../../include/profile_selectors.php:23
-msgid "Fetish"
-msgstr "Fetiches"
+#: ../../mod/install.php:340
+msgid "PHP executable is not the php cli binary (could be cgi-fgci version)"
+msgstr "O executável do PHP não é o binário do php cli (could be cgi-fcgi version)"
 
-#: ../../include/profile_selectors.php:23
-msgid "Oodles"
-msgstr "Insaciável"
+#: ../../mod/install.php:341
+msgid "Found PHP version: "
+msgstr "Encontrado PHP versão:"
 
-#: ../../include/profile_selectors.php:23
-msgid "Nonsexual"
-msgstr "Não sexual"
+#: ../../mod/install.php:343
+msgid "PHP cli binary"
+msgstr "Binário cli do PHP"
 
-#: ../../include/profile_selectors.php:42
-msgid "Single"
-msgstr "Solteiro(a)"
+#: ../../mod/install.php:354
+msgid ""
+"The command line version of PHP on your system does not have "
+"\"register_argc_argv\" enabled."
+msgstr "\"register_argc_argv\" não está habilitado na versão de linha de comando do PHP no seu sistema."
 
-#: ../../include/profile_selectors.php:42
-msgid "Lonely"
-msgstr "Solitário(a)"
+#: ../../mod/install.php:355
+msgid "This is required for message delivery to work."
+msgstr "Isto é necessário para o funcionamento do envio de mensagens."
 
-#: ../../include/profile_selectors.php:42
-msgid "Available"
-msgstr "Disponível"
+#: ../../mod/install.php:357
+msgid "PHP register_argc_argv"
+msgstr "PHP register_argc_argv"
 
-#: ../../include/profile_selectors.php:42
-msgid "Unavailable"
-msgstr "Não disponível"
+#: ../../mod/install.php:378
+msgid ""
+"Error: the \"openssl_pkey_new\" function on this system is not able to "
+"generate encryption keys"
+msgstr "Erro: a função \"openssl_pkey_new\" no seu sistema não é capaz de gerar as chaves de criptografia"
 
-#: ../../include/profile_selectors.php:42
-msgid "Has crush"
-msgstr "Tem uma paixão"
+#: ../../mod/install.php:379
+msgid ""
+"If running under Windows, please see "
+"\"http://www.php.net/manual/en/openssl.installation.php\"."
+msgstr "Se estiver usando o Windows, por favor dê uma olhada em \"http://www.php.net/manual/en/openssl.installation.php\"."
 
-#: ../../include/profile_selectors.php:42
-msgid "Infatuated"
-msgstr "Apaixonado"
+#: ../../mod/install.php:381
+msgid "Generate encryption keys"
+msgstr "Gerar chaves de encriptação"
 
-#: ../../include/profile_selectors.php:42
-msgid "Dating"
-msgstr "Saindo com alguém"
+#: ../../mod/install.php:388
+msgid "libCurl PHP module"
+msgstr "Módulo PHP libCurl"
 
-#: ../../include/profile_selectors.php:42
-msgid "Unfaithful"
-msgstr "Infiel"
+#: ../../mod/install.php:389
+msgid "GD graphics PHP module"
+msgstr "Módulo PHP GD graphics"
 
-#: ../../include/profile_selectors.php:42
-msgid "Sex Addict"
-msgstr "Viciado(a) em sexo"
+#: ../../mod/install.php:390
+msgid "OpenSSL PHP module"
+msgstr "Módulo PHP OpenSSL"
 
-#: ../../include/profile_selectors.php:42
-msgid "Friends/Benefits"
-msgstr "Amigos/Benefícios"
+#: ../../mod/install.php:391
+msgid "mysqli PHP module"
+msgstr "Módulo PHP mysqli"
 
-#: ../../include/profile_selectors.php:42
-msgid "Casual"
-msgstr "Casual"
+#: ../../mod/install.php:392
+msgid "mb_string PHP module"
+msgstr "Módulo PHP mb_string "
 
-#: ../../include/profile_selectors.php:42
-msgid "Engaged"
-msgstr "Envolvido(a)"
+#: ../../mod/install.php:397 ../../mod/install.php:399
+msgid "Apache mod_rewrite module"
+msgstr "Módulo mod_rewrite do Apache"
 
-#: ../../include/profile_selectors.php:42
-msgid "Married"
-msgstr "Casado(a)"
+#: ../../mod/install.php:397
+msgid ""
+"Error: Apache webserver mod-rewrite module is required but not installed."
+msgstr "Erro: o módulo mod-rewrite do Apache é necessário, mas não está instalado."
 
-#: ../../include/profile_selectors.php:42
-msgid "Imaginarily married"
-msgstr "Casado imaginariamente"
+#: ../../mod/install.php:405
+msgid "Error: libCURL PHP module required but not installed."
+msgstr "Erro: o módulo libCURL do PHP é necessário, mas não está instalado."
 
-#: ../../include/profile_selectors.php:42
-msgid "Partners"
-msgstr "Parceiros"
+#: ../../mod/install.php:409
+msgid ""
+"Error: GD graphics PHP module with JPEG support required but not installed."
+msgstr "Erro: o módulo gráfico GD, com suporte a JPEG, do PHP é necessário, mas não está instalado."
 
-#: ../../include/profile_selectors.php:42
-msgid "Cohabiting"
-msgstr "Coabitando"
+#: ../../mod/install.php:413
+msgid "Error: openssl PHP module required but not installed."
+msgstr "Erro: o módulo openssl do PHP é necessário, mas não está instalado."
 
-#: ../../include/profile_selectors.php:42
-msgid "Common law"
-msgstr "Direito comum"
+#: ../../mod/install.php:417
+msgid "Error: mysqli PHP module required but not installed."
+msgstr "Erro: o módulo mysqli do PHP é necessário, mas não está instalado."
 
-#: ../../include/profile_selectors.php:42
-msgid "Happy"
-msgstr "Feliz"
+#: ../../mod/install.php:421
+msgid "Error: mb_string PHP module required but not installed."
+msgstr "Erro: o módulo mb_string PHP é necessário, mas não está instalado."
 
-#: ../../include/profile_selectors.php:42
-msgid "Not looking"
-msgstr "Não estou procurando"
+#: ../../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 "O instalador web precisa criar um arquivo chamado \".htconfig.php\" na pasta raiz da instalação e não está conseguindo."
 
-#: ../../include/profile_selectors.php:42
-msgid "Swinger"
-msgstr "Swinger"
+#: ../../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 "Geralmente isso está relacionado às definições de permissão, uma vez que o servidor web pode não estar conseguindo escrever os arquivos nesta pasta."
 
-#: ../../include/profile_selectors.php:42
-msgid "Betrayed"
-msgstr "Traído(a)"
+#: ../../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 "Ao final desse procedimento, será fornecido um texto que deverá ser salvo em um arquivo de nome. htconfig.php, na pasta raiz da instalação do seu Friendica."
 
-#: ../../include/profile_selectors.php:42
-msgid "Separated"
-msgstr "Separado(a)"
+#: ../../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 "Você também pode pular esse procedimento e executar uma instalação manual. Por favor, dê uma olhada no arquivo \"INSTALL.TXT\" para instruções."
 
-#: ../../include/profile_selectors.php:42
-msgid "Unstable"
-msgstr "Instável"
+#: ../../mod/install.php:444
+msgid ".htconfig.php is writable"
+msgstr ".htconfig.php tem permissão de escrita"
 
-#: ../../include/profile_selectors.php:42
-msgid "Divorced"
-msgstr "Divorciado(a)"
+#: ../../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 usa o engine de template Smarty3 para renderizar suas web views. Smarty3 compila templates para PHP para acelerar a renderização."
 
-#: ../../include/profile_selectors.php:42
-msgid "Imaginarily divorced"
-msgstr "Divorciado imaginariamente"
+#: ../../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 "Para guardar os templates compilados, o servidor web necessita de permissão de escrita no diretório view/smarty3/ no diretório raíz do Friendica."
 
-#: ../../include/profile_selectors.php:42
-msgid "Widowed"
-msgstr "Viúvo(a)"
+#: ../../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 "Favor se certificar que o usuário sob o qual o servidor web roda (ex: www-data) tenha permissão de escrita nesse diretório."
 
-#: ../../include/profile_selectors.php:42
-msgid "Uncertain"
-msgstr "Incerto(a)"
+#: ../../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 "Nota: como uma medida de segurança, você deve fornecer ao servidor web permissão de escrita em view/smarty3/ somente--não aos arquivos de template (.tpl) que ele contém."
 
-#: ../../include/profile_selectors.php:42
-msgid "It's complicated"
-msgstr "É complicado"
+#: ../../mod/install.php:460
+msgid "view/smarty3 is writable"
+msgstr "view/smarty3 tem escrita permitida"
 
-#: ../../include/profile_selectors.php:42
-msgid "Don't care"
-msgstr "Não importa"
+#: ../../mod/install.php:472
+msgid ""
+"Url rewrite in .htaccess is not working. Check your server configuration."
+msgstr "A reescrita de URLs definida no .htaccess não está funcionando. Por favor, verifique as configurações do seu servidor."
 
-#: ../../include/profile_selectors.php:42
-msgid "Ask me"
-msgstr "Pergunte-me"
+#: ../../mod/install.php:474
+msgid "Url rewrite is working"
+msgstr "A reescrita de URLs está funcionando"
 
-#: ../../include/enotify.php:18
-msgid "Friendica Notification"
-msgstr "Notificação Friendica"
+#: ../../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 "Não foi possível gravar o arquivo de configuração \".htconfig.php\". Por favor, use o texto incluso para criar um arquivo de configuração na raiz da instalação do Friendika em seu servidor web."
 
-#: ../../include/enotify.php:21
-msgid "Thank You,"
-msgstr "Obrigado,"
+#: ../../mod/install.php:523
+msgid "<h1>What next</h1>"
+msgstr "<h1>A seguir</h1>"
 
-#: ../../include/enotify.php:23
-#, php-format
-msgid "%s Administrator"
-msgstr "%s Administrador"
+#: ../../mod/install.php:524
+msgid ""
+"IMPORTANT: You will need to [manually] setup a scheduled task for the "
+"poller."
+msgstr "IMPORTANTE: Você deve configurar [manualmente] uma tarefa agendada para o captador."
 
-#: ../../include/enotify.php:64
-#, php-format
-msgid "%s <!item_type!>"
-msgstr "%s <!item_type!>"
+#: ../../mod/help.php:31
+msgid "Help:"
+msgstr "Ajuda:"
 
-#: ../../include/enotify.php:68
-#, php-format
-msgid "[Friendica:Notify] New mail received at %s"
-msgstr "[Friendica:Notify] Nova mensagem recebida em %s"
+#: ../../mod/crepair.php:106
+msgid "Contact settings applied."
+msgstr "As configurações do contato foram aplicadas."
 
-#: ../../include/enotify.php:70
-#, php-format
-msgid "%1$s sent you a new private message at %2$s."
-msgstr "%1$s lhe enviou uma mensagem privativa em %2$s."
+#: ../../mod/crepair.php:108
+msgid "Contact update failed."
+msgstr "Não foi possível atualizar o contato."
 
-#: ../../include/enotify.php:71
-#, php-format
-msgid "%1$s sent you %2$s."
-msgstr "%1$s lhe enviou %2$s."
+#: ../../mod/crepair.php:139
+msgid "Repair Contact Settings"
+msgstr "Corrigir configurações do contato"
 
-#: ../../include/enotify.php:71
-msgid "a private message"
-msgstr "uma mensagem privada"
+#: ../../mod/crepair.php:141
+msgid ""
+"<strong>WARNING: This is highly advanced</strong> and if you enter incorrect"
+" information your communications with this contact may stop working."
+msgstr "<strong>ATENÇÃO: Isso é muito avançado</strong>, se você digitar informações incorretas, suas comunicações com esse contato pode parar de funcionar."
 
-#: ../../include/enotify.php:72
-#, php-format
-msgid "Please visit %s to view and/or reply to your private messages."
-msgstr "Favor visitar %s para ver e/ou responder às suas mensagens privadas."
+#: ../../mod/crepair.php:142
+msgid ""
+"Please use your browser 'Back' button <strong>now</strong> if you are "
+"uncertain what to do on this page."
+msgstr "Por favor, use o botão 'Voltar' do seu navegador <strong>agora</strong>, caso você não tenha certeza do que está fazendo."
 
-#: ../../include/enotify.php:124
-#, php-format
-msgid "%1$s commented on [url=%2$s]a %3$s[/url]"
-msgstr "%1$s comentou uma [url=%2$s] %3$s[/url]"
+#: ../../mod/crepair.php:148
+msgid "Return to contact editor"
+msgstr "Voltar ao editor de contatos"
 
-#: ../../include/enotify.php:131
-#, php-format
-msgid "%1$s commented on [url=%2$s]%3$s's %4$s[/url]"
-msgstr "%1$s comentou na %4$s de [url=%2$s]%3$s [/url]"
+#: ../../mod/crepair.php:159 ../../mod/crepair.php:161
+msgid "No mirroring"
+msgstr "Nenhum espelhamento"
 
-#: ../../include/enotify.php:139
-#, php-format
-msgid "%1$s commented on [url=%2$s]your %3$s[/url]"
-msgstr "%1$s comentou [url=%2$s]sua %3$s[/url]"
+#: ../../mod/crepair.php:159
+msgid "Mirror as forwarded posting"
+msgstr "Espelhar como postagem encaminhada"
 
-#: ../../include/enotify.php:149
-#, php-format
-msgid "[Friendica:Notify] Comment to conversation #%1$d by %2$s"
-msgstr "[Friendica:Notify] Comentário na conversa #%1$d por %2$s"
+#: ../../mod/crepair.php:159 ../../mod/crepair.php:161
+msgid "Mirror as my own posting"
+msgstr "Espelhar como minha própria postagem"
 
-#: ../../include/enotify.php:150
-#, php-format
-msgid "%s commented on an item/conversation you have been following."
-msgstr "%s comentou um item/conversa que você está seguindo."
+#: ../../mod/crepair.php:166
+msgid "Account Nickname"
+msgstr "Identificação da conta"
 
-#: ../../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 "Favor visitar %s para ver e/ou responder à conversa."
+#: ../../mod/crepair.php:167
+msgid "@Tagname - overrides Name/Nickname"
+msgstr "@Tagname - sobrescreve Nome/Identificação"
 
-#: ../../include/enotify.php:160
-#, php-format
-msgid "[Friendica:Notify] %s posted to your profile wall"
-msgstr "[Friendica:Notify] %s publicou no mural do seu perfil"
+#: ../../mod/crepair.php:168
+msgid "Account URL"
+msgstr "URL da conta"
 
-#: ../../include/enotify.php:162
-#, php-format
-msgid "%1$s posted to your profile wall at %2$s"
-msgstr "%1$s publicou no mural do seu perfil em %2$s"
+#: ../../mod/crepair.php:169
+msgid "Friend Request URL"
+msgstr "URL da requisição de amizade"
 
-#: ../../include/enotify.php:164
-#, php-format
-msgid "%1$s posted to [url=%2$s]your wall[/url]"
-msgstr "%1$s publicou para [url=%2$s]seu mural[/url]"
+#: ../../mod/crepair.php:170
+msgid "Friend Confirm URL"
+msgstr "URL da confirmação de amizade"
 
-#: ../../include/enotify.php:175
-#, php-format
-msgid "[Friendica:Notify] %s tagged you"
-msgstr "[Friendica:Notify] %s etiquetou você"
+#: ../../mod/crepair.php:171
+msgid "Notification Endpoint URL"
+msgstr "URL do ponto final da notificação"
 
-#: ../../include/enotify.php:176
-#, php-format
-msgid "%1$s tagged you at %2$s"
-msgstr "%1$s etiquetou você em %2$s"
+#: ../../mod/crepair.php:172
+msgid "Poll/Feed URL"
+msgstr "URL do captador/fonte de notícias"
 
-#: ../../include/enotify.php:177
-#, php-format
-msgid "%1$s [url=%2$s]tagged you[/url]."
-msgstr "%1$s [url=%2$s]etiquetou você[/url]."
+#: ../../mod/crepair.php:173
+msgid "New photo from this URL"
+msgstr "Nova imagem desta URL"
 
-#: ../../include/enotify.php:188
-#, php-format
-msgid "[Friendica:Notify] %s shared a new post"
-msgstr "[Friendica:Notify] %s compartilhado uma nova publicação"
+#: ../../mod/crepair.php:174
+msgid "Remote Self"
+msgstr "Auto remoto"
 
-#: ../../include/enotify.php:189
-#, php-format
-msgid "%1$s shared a new post at %2$s"
-msgstr "%1$s compartilhou uma nova publicação em %2$s"
+#: ../../mod/crepair.php:176
+msgid "Mirror postings from this contact"
+msgstr "Espelhar publicações deste contato"
 
-#: ../../include/enotify.php:190
-#, php-format
-msgid "%1$s [url=%2$s]shared a post[/url]."
-msgstr "%1$s [url=%2$s]compartilhou uma publicação[/url]."
+#: ../../mod/crepair.php:176
+msgid ""
+"Mark this contact as remote_self, this will cause friendica to repost new "
+"entries from this contact."
+msgstr "Marcar este contato como auto remoto fará com que o friendica republique novas entradas deste usuário."
 
-#: ../../include/enotify.php:202
-#, php-format
-msgid "[Friendica:Notify] %1$s poked you"
-msgstr "[Friendica:Notify] %1$s cutucou você"
+#: ../../mod/newmember.php:6
+msgid "Welcome to Friendica"
+msgstr "Bemvindo ao Friendica"
 
-#: ../../include/enotify.php:203
-#, php-format
-msgid "%1$s poked you at %2$s"
-msgstr "%1$s cutucou você em %2$s"
+#: ../../mod/newmember.php:8
+msgid "New Member Checklist"
+msgstr "Dicas para os novos membros"
 
-#: ../../include/enotify.php:204
-#, php-format
-msgid "%1$s [url=%2$s]poked you[/url]."
-msgstr "%1$s [url=%2$s]cutucou você[/url]."
+#: ../../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 "Gostaríamos de oferecer algumas dicas e links para ajudar a tornar a sua experiência agradável. Clique em qualquer item para visitar a página correspondente. Um link para essa página será visível em sua home page por duas semanas após o seu registro inicial e, então, desaparecerá discretamente."
 
-#: ../../include/enotify.php:219
-#, php-format
-msgid "[Friendica:Notify] %s tagged your post"
-msgstr "[Friendica:Notify] %s etiquetou sua publicação"
+#: ../../mod/newmember.php:14
+msgid "Getting Started"
+msgstr "Do Início"
 
-#: ../../include/enotify.php:220
-#, php-format
-msgid "%1$s tagged your post at %2$s"
-msgstr "%1$s etiquetou sua publicação em %2$s"
+#: ../../mod/newmember.php:18
+msgid "Friendica Walk-Through"
+msgstr "Passo-a-passo da friendica"
 
-#: ../../include/enotify.php:221
-#, php-format
-msgid "%1$s tagged [url=%2$s]your post[/url]"
-msgstr "%1$s etiquetou [url=%2$s]sua publicação[/url]"
+#: ../../mod/newmember.php:18
+msgid ""
+"On your <em>Quick Start</em> page - find a brief introduction to your "
+"profile and network tabs, make some new connections, and find some groups to"
+" join."
+msgstr "Na sua página <em>Início Rápido</em> - encontre uma introdução rápida ao seu perfil e abas da rede, faça algumas conexões novas, e encontre alguns grupos entrar."
 
-#: ../../include/enotify.php:232
-msgid "[Friendica:Notify] Introduction received"
-msgstr "[Friendica:Notify] Você recebeu uma apresentação"
+#: ../../mod/newmember.php:26
+msgid "Go to Your Settings"
+msgstr "Ir para as suas configurações"
 
-#: ../../include/enotify.php:233
-#, php-format
-msgid "You've received an introduction from '%1$s' at %2$s"
-msgstr "Você recebeu uma apresentação de '%1$s' em %2$s"
+#: ../../mod/newmember.php:26
+msgid ""
+"On your <em>Settings</em> page -  change your initial password. Also make a "
+"note of your Identity Address. This looks just like an email address - and "
+"will be useful in making friends on the free social web."
+msgstr "Em sua página  <em>Configurações</em> - mude sua senha inicial. Também tome nota de seu Endereço de Identidade. Isso se parece com um endereço de e-mail - e será útil para se fazer amigos na rede social livre."
 
-#: ../../include/enotify.php:234
-#, php-format
-msgid "You've received [url=%1$s]an introduction[/url] from %2$s."
-msgstr "Você recebeu [url=%1$s]uma apresentação[/url] de %2$s."
+#: ../../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 "Revise as outras configurações, em particular as relacionadas a privacidade. Não estar listado no diretório é o equivalente a não ter o seu número na lista telefônica. Normalmente é interessante você estar listado - a não ser que os seu amigos atuais e potenciais saibam exatamente como encontrar você."
 
-#: ../../include/enotify.php:237 ../../include/enotify.php:279
-#, php-format
-msgid "You may visit their profile at %s"
-msgstr "Você pode visitar o perfil deles em %s"
+#: ../../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 "Envie uma foto para o seu perfil, caso ainda não tenha feito isso. Estudos indicam que pessoas que publicam fotos reais delas mesmas têm 10 vezes mais chances de encontrar novos amigos do que as que não o fazem."
 
-#: ../../include/enotify.php:239
-#, php-format
-msgid "Please visit %s to approve or reject the introduction."
-msgstr "Favor visitar %s para aprovar ou rejeitar a apresentação."
+#: ../../mod/newmember.php:38
+msgid "Edit Your Profile"
+msgstr "Editar seu perfil"
 
-#: ../../include/enotify.php:247
-msgid "[Friendica:Notify] A new person is sharing with you"
-msgstr "[Friendica:Notificação] Uma nova pessoa está compartilhando com você"
+#: ../../mod/newmember.php:38
+msgid ""
+"Edit your <strong>default</strong> profile to your liking. Review the "
+"settings for hiding your list of friends and hiding the profile from unknown"
+" visitors."
+msgstr "Edite o seu perfil <strong>padrão</strong> a seu gosto. Revise as configurações de ocultação da sua lista de amigos e do seu perfil de visitantes desconhecidos."
+
+#: ../../mod/newmember.php:40
+msgid "Profile Keywords"
+msgstr "Palavras-chave do perfil"
+
+#: ../../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 "Defina algumas palavras-chave públicas para o seu perfil padrão, que descrevam os seus interesses. Nós podemos encontrar outras pessoas com interesses similares e sugerir novas amizades."
+
+#: ../../mod/newmember.php:44
+msgid "Connecting"
+msgstr "Conexões"
+
+#: ../../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 "Autorize o Conector com Facebook, caso você tenha uma conta lá e nós (opcionalmente) importaremos todos os seus amigos e conversas do Facebook."
+
+#: ../../mod/newmember.php:51
+msgid ""
+"<em>If</em> this is your own personal server, installing the Facebook addon "
+"may ease your transition to the free social web."
+msgstr "<em>Se</em> esse é o seu servidor pessoal, instalar o complemento do Facebook talvez facilite a transição para a rede social livre."
+
+#: ../../mod/newmember.php:56
+msgid "Importing Emails"
+msgstr "Importação de e-mails"
 
-#: ../../include/enotify.php:248 ../../include/enotify.php:249
-#, php-format
-msgid "%1$s is sharing with you at %2$s"
-msgstr "%1$s está compartilhando com você via %2$s"
+#: ../../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 "Forneça a informação de acesso ao seu e-mail na sua página de Configuração de Conector se você deseja importar e interagir com amigos ou listas de discussão da sua Caixa de Entrada de e-mail"
 
-#: ../../include/enotify.php:255
-msgid "[Friendica:Notify] You have a new follower"
-msgstr "[Friendica:Notificação] Você tem um novo seguidor"
+#: ../../mod/newmember.php:58
+msgid "Go to Your Contacts Page"
+msgstr "Ir para a sua página de contatos"
 
-#: ../../include/enotify.php:256 ../../include/enotify.php:257
-#, php-format
-msgid "You have a new follower at %2$s : %1$s"
-msgstr "Você tem um novo seguidor em %2$s : %1$s"
+#: ../../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 <em>Add New Contact</em> dialog."
+msgstr "Sua página de contatos é sua rota para o gerenciamento de amizades e conexão com amigos em outras redes. Geralmente você fornece o endereço deles ou a URL do site na janela de diálogo <em>Adicionar Novo Contato</em>."
 
-#: ../../include/enotify.php:270
-msgid "[Friendica:Notify] Friend suggestion received"
-msgstr "[Friendica:Notify] Você recebeu uma sugestão de amigo"
+#: ../../mod/newmember.php:60
+msgid "Go to Your Site's Directory"
+msgstr "Ir para o diretório do seu site"
 
-#: ../../include/enotify.php:271
-#, php-format
-msgid "You've received a friend suggestion from '%1$s' at %2$s"
-msgstr "Você recebeu uma sugestão de amigo de '%1$s' em %2$s"
+#: ../../mod/newmember.php:60
+msgid ""
+"The Directory page lets you find other people in this network or other "
+"federated sites. Look for a <em>Connect</em> or <em>Follow</em> link on "
+"their profile page. Provide your own Identity Address if requested."
+msgstr "A página de Diretório permite que você encontre outras pessoas nesta rede ou em outras redes federadas. Procure por um link <em>Conectar</em> ou <em>Seguir</em> no perfil que deseja acompanhar. Forneça o seu Endereço de Identidade próprio, se solicitado."
 
-#: ../../include/enotify.php:272
-#, php-format
+#: ../../mod/newmember.php:62
+msgid "Finding New People"
+msgstr "Pesquisar por novas pessoas"
+
+#: ../../mod/newmember.php:62
 msgid ""
-"You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s."
-msgstr "Você recebeu [url=%1$s]uma sugestão de amigo[/url] de %2$s em %3$s"
+"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 "No painel lateral da página de Contatos existem várias ferramentas para encontrar novos amigos. Você pode descobrir pessoas com os mesmos interesses, procurar por nomes ou interesses e fornecer sugestões baseadas nos relacionamentos da rede. Em um site completamente novo, as sugestões de amizades geralmente começam a ser populadas dentro de 24 horas."
 
-#: ../../include/enotify.php:277
-msgid "Name:"
-msgstr "Nome:"
+#: ../../mod/newmember.php:70
+msgid "Group Your Contacts"
+msgstr "Agrupe seus contatos"
 
-#: ../../include/enotify.php:278
-msgid "Photo:"
-msgstr "Foto:"
+#: ../../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 "Após fazer novas amizades, organize-as em grupos de conversa privados, a partir da barra lateral na sua página de Contatos. A partir daí, você poderá interagir com cada grupo privativamente, na sua página de Rede."
 
-#: ../../include/enotify.php:281
-#, php-format
-msgid "Please visit %s to approve or reject the suggestion."
-msgstr "Favor visitar %s para aprovar ou rejeitar a sugestão."
+#: ../../mod/newmember.php:73
+msgid "Why Aren't My Posts Public?"
+msgstr "Por que as minhas publicações não são públicas?"
 
-#: ../../include/enotify.php:289 ../../include/enotify.php:302
-msgid "[Friendica:Notify] Connection accepted"
-msgstr "[Friendica:Notificação] Conexão aceita"
+#: ../../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 "A friendica respeita sua privacidade. Por padrão, suas publicações estarão visíveis apenas para as pessoas que você adicionou como amigos. Para mais informações, veja a página de ajuda, a partir do link acima."
 
-#: ../../include/enotify.php:290 ../../include/enotify.php:303
-#, php-format
-msgid "'%1$s' has acepted your connection request at %2$s"
-msgstr "'%1$s' sua solicitação de conexão foi aceita em %2$s"
+#: ../../mod/newmember.php:78
+msgid "Getting Help"
+msgstr "Obtendo ajuda"
 
-#: ../../include/enotify.php:291 ../../include/enotify.php:304
-#, php-format
-msgid "%2$s has accepted your [url=%1$s]connection request[/url]."
-msgstr "%2$s Foi aceita [url=%1$s] a conexão solicitada[/url]."
+#: ../../mod/newmember.php:82
+msgid "Go to the Help Section"
+msgstr "Ir para a seção de ajuda"
 
-#: ../../include/enotify.php:294
+#: ../../mod/newmember.php:82
 msgid ""
-"You are now mutual friends and may exchange status updates, photos, and email\n"
-"\twithout restriction."
-msgstr "Você agora são amigos em comum e podem trocar atualizações de status, fotos e e-mail\n\tsem restrições."
+"Our <strong>help</strong> pages may be consulted for detail on other program"
+" features and resources."
+msgstr "Nossas páginas de <strong>ajuda</strong> podem ser consultadas para mais detalhes sobre características e recursos do programa."
 
-#: ../../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 "Por favor, visite %s se você desejar fazer quaisquer alterações a este relacionamento."
+#: ../../mod/poke.php:192
+msgid "Poke/Prod"
+msgstr "Cutucar/Incitar"
 
-#: ../../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 "'%1$s' optou por aceitá-lo um \"fã\", o que restringe algumas formas de comunicação - como mensagens privadas e algumas interações de perfil. Se esta é uma página de celebridade ou de uma comunidade, essas configurações foram aplicadas automaticamente."
+#: ../../mod/poke.php:193
+msgid "poke, prod or do other things to somebody"
+msgstr "Cutuca, incita ou faz outras coisas com alguém"
 
-#: ../../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 "'%1$s' pode optar no futuro por estender isso para um relacionamento bidirecional ou superior permissivo."
+#: ../../mod/poke.php:194
+msgid "Recipient"
+msgstr "Destinatário"
 
-#: ../../include/enotify.php:322
-msgid "[Friendica System:Notify] registration request"
-msgstr "[Friendica: Notificação do Sistema] solicitação de cadastro"
+#: ../../mod/poke.php:195
+msgid "Choose what you wish to do to recipient"
+msgstr "Selecione o que você deseja fazer com o destinatário"
 
-#: ../../include/enotify.php:323
-#, php-format
-msgid "You've received a registration request from '%1$s' at %2$s"
-msgstr "Você recebeu um pedido de cadastro de '%1$s' em %2$s"
+#: ../../mod/poke.php:198
+msgid "Make this post private"
+msgstr "Fazer com que essa publicação se torne privada"
 
-#: ../../include/enotify.php:324
-#, php-format
-msgid "You've received a [url=%1$s]registration request[/url] from %2$s."
-msgstr "Você recebeu uma [url=%1$s]solicitação de cadastro[/url] de %2$s."
+#: ../../mod/display.php:496
+msgid "Item has been removed."
+msgstr "O item foi removido."
 
-#: ../../include/enotify.php:327
+#: ../../mod/subthread.php:103
 #, php-format
-msgid "Full Name:\t%1$s\\nSite Location:\t%2$s\\nLogin Name:\t%3$s (%4$s)"
-msgstr "Nome completo:\t%1$s\\nLocal do Site:\t%2$s\\nNome de Login:\t%3$s (%4$s)"
+msgid "%1$s is following %2$s's %3$s"
+msgstr "%1$s está seguindo %2$s's %3$s"
 
-#: ../../include/enotify.php:330
+#: ../../mod/dfrn_poll.php:103 ../../mod/dfrn_poll.php:536
 #, php-format
-msgid "Please visit %s to approve or reject the request."
-msgstr "Por favor, visite %s para aprovar ou rejeitar a solicitação."
+msgid "%1$s welcomes %2$s"
+msgstr "%1$s dá as boas vinda à %2$s"
 
-#: ../../include/oembed.php:212
-msgid "Embedded content"
-msgstr "Conteúdo incorporado"
+#: ../../mod/dfrn_confirm.php:121
+msgid ""
+"This may occasionally happen if contact was requested by both persons and it"
+" has already been approved."
+msgstr "Isso pode acontecer eventualmente se o contato foi solicitado por ambas as pessoas e ele já tinha sido aprovado."
 
-#: ../../include/oembed.php:221
-msgid "Embedding disabled"
-msgstr "A incorporação está desabilitada"
+#: ../../mod/dfrn_confirm.php:240
+msgid "Response from remote site was not understood."
+msgstr "A resposta do site remoto não foi compreendida."
 
-#: ../../include/uimport.php:94
-msgid "Error decoding account file"
-msgstr "Erro ao decodificar arquivo de conta"
+#: ../../mod/dfrn_confirm.php:249 ../../mod/dfrn_confirm.php:254
+msgid "Unexpected response from remote site: "
+msgstr "Resposta inesperada do site remoto: "
 
-#: ../../include/uimport.php:100
-msgid "Error! No version data in file! This is not a Friendica account file?"
-msgstr "Erro! Nenhum arquivo de dados de versão! Esse não é um arquivo de conta do Friendica?"
+#: ../../mod/dfrn_confirm.php:263
+msgid "Confirmation completed successfully."
+msgstr "A confirmação foi completada com sucesso."
 
-#: ../../include/uimport.php:116 ../../include/uimport.php:127
-msgid "Error! Cannot check nickname"
-msgstr "Erro! Não consigo conferir o apelido (nickname)"
+#: ../../mod/dfrn_confirm.php:265 ../../mod/dfrn_confirm.php:279
+#: ../../mod/dfrn_confirm.php:286
+msgid "Remote site reported: "
+msgstr "O site remoto relatou: "
 
-#: ../../include/uimport.php:120 ../../include/uimport.php:131
-#, php-format
-msgid "User '%s' already exists on this server!"
-msgstr "User '%s' já existe nesse servidor!"
+#: ../../mod/dfrn_confirm.php:277
+msgid "Temporary failure. Please wait and try again."
+msgstr "Falha temporária. Por favor, aguarde e tente novamente."
 
-#: ../../include/uimport.php:153
-msgid "User creation error"
-msgstr "Erro na criação do usuário"
+#: ../../mod/dfrn_confirm.php:284
+msgid "Introduction failed or was revoked."
+msgstr "Ocorreu uma falha na apresentação ou ela foi revogada."
 
-#: ../../include/uimport.php:171
-msgid "User profile creation error"
-msgstr "Erro na criação do perfil do Usuário"
+#: ../../mod/dfrn_confirm.php:429
+msgid "Unable to set contact photo."
+msgstr "Não foi possível definir a foto do contato."
 
-#: ../../include/uimport.php:220
+#: ../../mod/dfrn_confirm.php:571
 #, php-format
-msgid "%d contact not imported"
-msgid_plural "%d contacts not imported"
-msgstr[0] "%d contato não foi importado"
-msgstr[1] "%d contatos não foram importados"
-
-#: ../../include/uimport.php:290
-msgid "Done. You can now login with your username and password"
-msgstr "Feito. Você agora pode entrar com seu nome de usuário e senha"
+msgid "No user record found for '%s' "
+msgstr "Não foi encontrado nenhum registro de usuário para '%s' "
 
-#: ../../index.php:428
-msgid "toggle mobile"
-msgstr "habilita mobile"
+#: ../../mod/dfrn_confirm.php:581
+msgid "Our site encryption key is apparently messed up."
+msgstr "A chave de criptografia do nosso site está, aparentemente, bagunçada."
 
-#: ../../view/theme/cleanzero/config.php:82
-#: ../../view/theme/dispy/config.php:72 ../../view/theme/quattro/config.php:66
-#: ../../view/theme/diabook/config.php:150 ../../view/theme/vier/config.php:55
-#: ../../view/theme/duepuntozero/config.php:61
-msgid "Theme settings"
-msgstr "Configurações do tema"
+#: ../../mod/dfrn_confirm.php:592
+msgid "Empty site URL was provided or URL could not be decrypted by us."
+msgstr "Foi fornecida uma URL em branco ou não foi possível descriptografá-la."
 
-#: ../../view/theme/cleanzero/config.php:83
-msgid "Set resize level for images in posts and comments (width and height)"
-msgstr "Configure o nível de redimensionamento para imagens em publicações e comentários (largura e altura)"
+#: ../../mod/dfrn_confirm.php:613
+msgid "Contact record was not found for you on our site."
+msgstr "O registro do contato não foi encontrado para você em seu site."
 
-#: ../../view/theme/cleanzero/config.php:84
-#: ../../view/theme/dispy/config.php:73
-#: ../../view/theme/diabook/config.php:151
-msgid "Set font-size for posts and comments"
-msgstr "Escolha o tamanho da fonte para publicações e comentários"
+#: ../../mod/dfrn_confirm.php:627
+#, php-format
+msgid "Site public key not available in contact record for URL %s."
+msgstr "A chave pública do site não está disponível no registro do contato para a URL %s"
 
-#: ../../view/theme/cleanzero/config.php:85
-msgid "Set theme width"
-msgstr "Configure a largura do tema"
+#: ../../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 "O ID fornecido pelo seu sistema é uma duplicata em nosso sistema. Deve funcionar agora, se você tentar de novo."
 
-#: ../../view/theme/cleanzero/config.php:86
-#: ../../view/theme/quattro/config.php:68
-msgid "Color scheme"
-msgstr "Esquema de cores"
+#: ../../mod/dfrn_confirm.php:658
+msgid "Unable to set your contact credentials on our system."
+msgstr "Não foi possível definir suas credenciais de contato no nosso sistema."
 
-#: ../../view/theme/dispy/config.php:74
-#: ../../view/theme/diabook/config.php:152
-msgid "Set line-height for posts and comments"
-msgstr "Escolha comprimento da linha para publicações e comentários"
+#: ../../mod/dfrn_confirm.php:725
+msgid "Unable to update your contact profile details on our system"
+msgstr "Não foi possível atualizar os detalhes do seu perfil em nosso sistema."
 
-#: ../../view/theme/dispy/config.php:75
-msgid "Set colour scheme"
-msgstr "Configure o esquema de cores"
+#: ../../mod/dfrn_confirm.php:797
+#, php-format
+msgid "%1$s has joined %2$s"
+msgstr "%1$s se associou a %2$s"
 
-#: ../../view/theme/quattro/config.php:67
-msgid "Alignment"
-msgstr "Alinhamento"
+#: ../../mod/item.php:114
+msgid "Unable to locate original post."
+msgstr "Não foi possível localizar a publicação original."
 
-#: ../../view/theme/quattro/config.php:67
-msgid "Left"
-msgstr "Esquerda"
+#: ../../mod/item.php:346
+msgid "Empty post discarded."
+msgstr "A publicação em branco foi descartada."
 
-#: ../../view/theme/quattro/config.php:67
-msgid "Center"
-msgstr "Centro"
+#: ../../mod/item.php:839
+msgid "System error. Post not saved."
+msgstr "Erro no sistema. A publicação não foi salva."
 
-#: ../../view/theme/quattro/config.php:69
-msgid "Posts font size"
-msgstr "Tamanho da fonte para publicações"
+#: ../../mod/item.php:965
+#, php-format
+msgid ""
+"This message was sent to you by %s, a member of the Friendica social "
+"network."
+msgstr "Essa mensagem foi enviada a você por %s, um membro da rede social Friendica."
 
-#: ../../view/theme/quattro/config.php:70
-msgid "Textareas font size"
-msgstr "Tamanho da fonte para campos texto"
+#: ../../mod/item.php:967
+#, php-format
+msgid "You may visit them online at %s"
+msgstr "Você pode visitá-lo em %s"
 
-#: ../../view/theme/diabook/config.php:153
-msgid "Set resolution for middle column"
-msgstr "Escolha a resolução para a coluna do meio"
+#: ../../mod/item.php:968
+msgid ""
+"Please contact the sender by replying to this post if you do not wish to "
+"receive these messages."
+msgstr "Por favor, entre em contato com o remetente respondendo a esta publicação, caso você não queira mais receber estas mensagens."
 
-#: ../../view/theme/diabook/config.php:154
-msgid "Set color scheme"
-msgstr "Configure o esquema de cores"
+#: ../../mod/item.php:972
+#, php-format
+msgid "%s posted an update."
+msgstr "%s publicou uma atualização."
 
-#: ../../view/theme/diabook/config.php:155
-msgid "Set zoomfactor for Earth Layer"
-msgstr "Configure o zoom para Camadas da Terra"
+#: ../../mod/profile_photo.php:44
+msgid "Image uploaded but image cropping failed."
+msgstr "A imagem foi enviada, mas não foi possível cortá-la."
 
-#: ../../view/theme/diabook/config.php:156
-#: ../../view/theme/diabook/theme.php:585
-msgid "Set longitude (X) for Earth Layers"
-msgstr "Configure longitude (X) para Camadas da Terra"
+#: ../../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 "Não foi possível reduzir o tamanho da imagem [%s]."
 
-#: ../../view/theme/diabook/config.php:157
-#: ../../view/theme/diabook/theme.php:586
-msgid "Set latitude (Y) for Earth Layers"
-msgstr "Configure latitude (Y) para Camadas da Terra"
+#: ../../mod/profile_photo.php:118
+msgid ""
+"Shift-reload the page or clear browser cache if the new photo does not "
+"display immediately."
+msgstr "Recarregue a página pressionando a tecla Shift ou limpe o cache do navegador caso a nova foto não apareça imediatamente"
 
-#: ../../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 "Páginas da Comunidade"
+#: ../../mod/profile_photo.php:128
+msgid "Unable to process image"
+msgstr "Não foi possível processar a imagem"
 
-#: ../../view/theme/diabook/config.php:159
-#: ../../view/theme/diabook/theme.php:579
-#: ../../view/theme/diabook/theme.php:625
-msgid "Earth Layers"
-msgstr "Camadas da Terra"
+#: ../../mod/profile_photo.php:242
+msgid "Upload File:"
+msgstr "Enviar arquivo:"
 
-#: ../../view/theme/diabook/config.php:160
-#: ../../view/theme/diabook/theme.php:391
-#: ../../view/theme/diabook/theme.php:626
-msgid "Community Profiles"
-msgstr "Profiles Comunitários"
+#: ../../mod/profile_photo.php:243
+msgid "Select a profile:"
+msgstr "Selecione um perfil:"
 
-#: ../../view/theme/diabook/config.php:161
-#: ../../view/theme/diabook/theme.php:599
-#: ../../view/theme/diabook/theme.php:627
-msgid "Help or @NewHere ?"
-msgstr "Ajuda ou @NewHere ?"
+#: ../../mod/profile_photo.php:245
+msgid "Upload"
+msgstr "Enviar"
 
-#: ../../view/theme/diabook/config.php:162
-#: ../../view/theme/diabook/theme.php:606
-#: ../../view/theme/diabook/theme.php:628
-msgid "Connect Services"
-msgstr "Conectar serviços"
+#: ../../mod/profile_photo.php:248
+msgid "skip this step"
+msgstr "pule esta etapa"
 
-#: ../../view/theme/diabook/config.php:163
-#: ../../view/theme/diabook/theme.php:523
-#: ../../view/theme/diabook/theme.php:629
-msgid "Find Friends"
-msgstr "Encontrar amigos"
+#: ../../mod/profile_photo.php:248
+msgid "select a photo from your photo albums"
+msgstr "selecione uma foto de um álbum de fotos"
 
-#: ../../view/theme/diabook/config.php:164
-#: ../../view/theme/diabook/theme.php:412
-#: ../../view/theme/diabook/theme.php:630
-msgid "Last users"
-msgstr "Últimos usuários"
+#: ../../mod/profile_photo.php:262
+msgid "Crop Image"
+msgstr "Cortar a imagem"
 
-#: ../../view/theme/diabook/config.php:165
-#: ../../view/theme/diabook/theme.php:486
-#: ../../view/theme/diabook/theme.php:631
-msgid "Last photos"
-msgstr "Últimas fotos"
+#: ../../mod/profile_photo.php:263
+msgid "Please adjust the image cropping for optimum viewing."
+msgstr "Por favor, ajuste o corte da imagem para a melhor visualização."
 
-#: ../../view/theme/diabook/config.php:166
-#: ../../view/theme/diabook/theme.php:441
-#: ../../view/theme/diabook/theme.php:632
-msgid "Last likes"
-msgstr "Últimas gostadas"
+#: ../../mod/profile_photo.php:265
+msgid "Done Editing"
+msgstr "Encerrar a edição"
 
-#: ../../view/theme/diabook/theme.php:125
-msgid "Your contacts"
-msgstr "Seus contatos"
+#: ../../mod/profile_photo.php:299
+msgid "Image uploaded successfully."
+msgstr "A imagem foi enviada com sucesso."
 
-#: ../../view/theme/diabook/theme.php:128
-msgid "Your personal photos"
-msgstr "Suas fotos pessoais"
+#: ../../mod/allfriends.php:34
+#, php-format
+msgid "Friends of %s"
+msgstr "Amigos de %s"
 
-#: ../../view/theme/diabook/theme.php:524
-msgid "Local Directory"
-msgstr "Diretório Local"
+#: ../../mod/allfriends.php:40
+msgid "No friends to display."
+msgstr "Nenhum amigo para exibir."
 
-#: ../../view/theme/diabook/theme.php:584
-msgid "Set zoomfactor for Earth Layers"
-msgstr "Configure o zoom para Camadas da Terra"
+#: ../../mod/directory.php:59
+msgid "Find on this site"
+msgstr "Pesquisar neste site"
 
-#: ../../view/theme/diabook/theme.php:622
-msgid "Show/hide boxes at right-hand column:"
-msgstr "Mostre/esconda caixas na coluna à direita:"
+#: ../../mod/directory.php:62
+msgid "Site Directory"
+msgstr "Diretório do site"
 
-#: ../../view/theme/vier/config.php:56
-msgid "Set style"
-msgstr "escolha estilo"
+#: ../../mod/directory.php:116
+msgid "Gender: "
+msgstr "Gênero: "
 
-#: ../../view/theme/duepuntozero/config.php:45
-msgid "greenzero"
-msgstr "greenzero"
+#: ../../mod/directory.php:189
+msgid "No entries (some entries may be hidden)."
+msgstr "Nenhuma entrada (algumas entradas podem estar ocultas)."
 
-#: ../../view/theme/duepuntozero/config.php:46
-msgid "purplezero"
-msgstr "purplezero"
+#: ../../mod/localtime.php:24
+msgid "Time Conversion"
+msgstr "Conversão de tempo"
 
-#: ../../view/theme/duepuntozero/config.php:47
-msgid "easterbunny"
-msgstr "easterbunny"
+#: ../../mod/localtime.php:26
+msgid ""
+"Friendica provides this service for sharing events with other networks and "
+"friends in unknown timezones."
+msgstr "Friendica provê esse serviço para compartilhar eventos com outras redes e amigos em fuso-horários desconhecidos."
 
-#: ../../view/theme/duepuntozero/config.php:48
-msgid "darkzero"
-msgstr "darkzero"
+#: ../../mod/localtime.php:30
+#, php-format
+msgid "UTC time: %s"
+msgstr "Hora UTC: %s"
 
-#: ../../view/theme/duepuntozero/config.php:49
-msgid "comix"
-msgstr "comix"
+#: ../../mod/localtime.php:33
+#, php-format
+msgid "Current timezone: %s"
+msgstr "Fuso horário atual: %s"
 
-#: ../../view/theme/duepuntozero/config.php:50
-msgid "slackr"
-msgstr "slackr"
+#: ../../mod/localtime.php:36
+#, php-format
+msgid "Converted localtime: %s"
+msgstr "Horário local convertido: %s"
 
-#: ../../view/theme/duepuntozero/config.php:62
-msgid "Variations"
-msgstr "Variações"
+#: ../../mod/localtime.php:41
+msgid "Please select your timezone:"
+msgstr "Por favor, selecione seu fuso horário:"
index c1fccf3cbaad5dbdeb5033859bfd951bedd344b2..7021e980266349951c71b2d7b0ba5c9cee4e03fc 100644 (file)
@@ -5,1355 +5,361 @@ function string_plural_select_pt_br($n){
        return ($n > 1);;
 }}
 ;
-$a->strings["%d contact edited."] = array(
-       0 => "%d contato editado",
-       1 => "%d contatos editados",
-);
-$a->strings["Could not access contact record."] = "Não foi possível acessar o registro do contato.";
-$a->strings["Could not locate selected profile."] = "Não foi possível localizar o perfil selecionado.";
-$a->strings["Contact updated."] = "O contato foi atualizado.";
-$a->strings["Failed to update contact record."] = "Não foi possível atualizar o registro do contato.";
+$a->strings["Submit"] = "Enviar";
+$a->strings["Theme settings"] = "Configurações do tema";
+$a->strings["Set resize level for images in posts and comments (width and height)"] = "Configure o nível de redimensionamento para imagens em publicações e comentários (largura e altura)";
+$a->strings["Set font-size for posts and comments"] = "Escolha o tamanho da fonte para publicações e comentários";
+$a->strings["Set theme width"] = "Configure a largura do tema";
+$a->strings["Color scheme"] = "Esquema de cores";
+$a->strings["Set style"] = "escolha estilo";
+$a->strings["default"] = "padrão";
+$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"] = "Variações";
+$a->strings["don't show"] = "não exibir";
+$a->strings["show"] = "exibir";
+$a->strings["Set line-height for posts and comments"] = "Escolha comprimento da linha para publicações e comentários";
+$a->strings["Set resolution for middle column"] = "Escolha a resolução para a coluna do meio";
+$a->strings["Set color scheme"] = "Configure o esquema de cores";
+$a->strings["Set zoomfactor for Earth Layer"] = "Configure o zoom para Camadas da Terra";
+$a->strings["Set longitude (X) for Earth Layers"] = "Configure longitude (X) para Camadas da Terra";
+$a->strings["Set latitude (Y) for Earth Layers"] = "Configure latitude (Y) para Camadas da Terra";
+$a->strings["Community Pages"] = "Páginas da Comunidade";
+$a->strings["Earth Layers"] = "Camadas da Terra";
+$a->strings["Community Profiles"] = "Profiles Comunitários";
+$a->strings["Help or @NewHere ?"] = "Ajuda ou @NewHere ?";
+$a->strings["Connect Services"] = "Conectar serviços";
+$a->strings["Find Friends"] = "Encontrar amigos";
+$a->strings["Last users"] = "Últimos usuários";
+$a->strings["Last photos"] = "Últimas fotos";
+$a->strings["Last likes"] = "Últimas gostadas";
+$a->strings["Home"] = "Pessoal";
+$a->strings["Your posts and conversations"] = "Suas publicações e conversas";
+$a->strings["Profile"] = "Perfil ";
+$a->strings["Your profile page"] = "Sua página de perfil";
+$a->strings["Contacts"] = "Contatos";
+$a->strings["Your contacts"] = "Seus contatos";
+$a->strings["Photos"] = "Fotos";
+$a->strings["Your photos"] = "Suas fotos";
+$a->strings["Events"] = "Eventos";
+$a->strings["Your events"] = "Seus eventos";
+$a->strings["Personal notes"] = "Suas anotações pessoais";
+$a->strings["Your personal photos"] = "Suas fotos pessoais";
+$a->strings["Community"] = "Comunidade";
+$a->strings["event"] = "evento";
+$a->strings["status"] = "status";
+$a->strings["photo"] = "foto";
+$a->strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s gosta de %3\$s de %2\$s";
+$a->strings["Contact Photos"] = "Fotos dos contatos";
+$a->strings["Profile Photos"] = "Fotos do perfil";
+$a->strings["Local Directory"] = "Diretório Local";
+$a->strings["Global Directory"] = "Diretório global";
+$a->strings["Similar Interests"] = "Interesses Parecidos";
+$a->strings["Friend Suggestions"] = "Sugestões de amigos";
+$a->strings["Invite Friends"] = "Convidar amigos";
+$a->strings["Settings"] = "Configurações";
+$a->strings["Set zoomfactor for Earth Layers"] = "Configure o zoom para Camadas da Terra";
+$a->strings["Show/hide boxes at right-hand column:"] = "Mostre/esconda caixas na coluna à direita:";
+$a->strings["Alignment"] = "Alinhamento";
+$a->strings["Left"] = "Esquerda";
+$a->strings["Center"] = "Centro";
+$a->strings["Posts font size"] = "Tamanho da fonte para publicações";
+$a->strings["Textareas font size"] = "Tamanho da fonte para campos texto";
+$a->strings["Set colour scheme"] = "Configure o esquema de cores";
+$a->strings["You must be logged in to use addons. "] = "Você precisa estar logado para usar os addons.";
+$a->strings["Not Found"] = "Não encontrada";
+$a->strings["Page not found."] = "Página não encontrada.";
+$a->strings["Permission denied"] = "Permissão negada";
 $a->strings["Permission denied."] = "Permissão negada.";
-$a->strings["Contact has been blocked"] = "O contato foi bloqueado";
-$a->strings["Contact has been unblocked"] = "O contato foi desbloqueado";
-$a->strings["Contact has been ignored"] = "O contato foi ignorado";
-$a->strings["Contact has been unignored"] = "O contato deixou de ser ignorado";
-$a->strings["Contact has been archived"] = "O contato foi arquivado";
-$a->strings["Contact has been unarchived"] = "O contato foi desarquivado";
-$a->strings["Do you really want to delete this contact?"] = "Você realmente deseja deletar esse contato?";
+$a->strings["toggle mobile"] = "habilita mobile";
+$a->strings["Do you wish to confirm your identity (<tt>%s</tt>) with <tt>%s</tt>"] = "Você deseja confirmar sua identidade (<tt>%s</tt>) com  <tt>%s</tt>";
+$a->strings["Confirm"] = "Confirmar";
+$a->strings["Do not confirm"] = "Não confirma";
+$a->strings["Trust This Site"] = "Confia neste site";
+$a->strings["No Identifier Sent"] = "Nenhum identificador enviado";
+$a->strings["Requested identity don't match logged in user."] = "Identidade solicitada não corresponde ao usuário conectado";
+$a->strings["Please wait; you are being redirected to <%s>"] = "Por favor aguarde; você será redirecionado para <%s>";
+$a->strings["Delete this item?"] = "Excluir este item?";
+$a->strings["Comment"] = "Comentar";
+$a->strings["show more"] = "exibir mais";
+$a->strings["show fewer"] = "exibir menos";
+$a->strings["Update %s failed. See error logs."] = "Atualização %s falhou. Vide registro de erros (log).";
+$a->strings["Create a New Account"] = "Criar uma nova conta";
+$a->strings["Register"] = "Registrar";
+$a->strings["Logout"] = "Sair";
+$a->strings["Login"] = "Entrar";
+$a->strings["Nickname or Email address: "] = "Identificação ou endereço de e-mail: ";
+$a->strings["Password: "] = "Senha: ";
+$a->strings["Remember me"] = "Lembre-se de mim";
+$a->strings["Or login using OpenID: "] = "Ou login usando OpendID:";
+$a->strings["Forgot your password?"] = "Esqueceu a sua senha?";
+$a->strings["Password Reset"] = "Redifinir a senha";
+$a->strings["Website Terms of Service"] = "Termos de Serviço do Website";
+$a->strings["terms of service"] = "termos de serviço";
+$a->strings["Website Privacy Policy"] = "Política de Privacidade do Website";
+$a->strings["privacy policy"] = "política de privacidade";
+$a->strings["Requested account is not available."] = "Conta solicitada não disponível";
+$a->strings["Requested profile is not available."] = "Perfil solicitado não está disponível.";
+$a->strings["Edit profile"] = "Editar perfil";
+$a->strings["Connect"] = "Conectar";
+$a->strings["Message"] = "Mensagem";
+$a->strings["Profiles"] = "Perfis";
+$a->strings["Manage/edit profiles"] = "Gerenciar/editar perfis";
+$a->strings["Change profile photo"] = "Mudar a foto do perfil";
+$a->strings["Create New Profile"] = "Criar um novo perfil";
+$a->strings["Profile Image"] = "Imagem do perfil";
+$a->strings["visible to everybody"] = "visível para todos";
+$a->strings["Edit visibility"] = "Editar a visibilidade";
+$a->strings["Location:"] = "Localização:";
+$a->strings["Gender:"] = "Gênero:";
+$a->strings["Status:"] = "Situação:";
+$a->strings["Homepage:"] = "Página web:";
+$a->strings["About:"] = "Sobre:";
+$a->strings["Network:"] = "Rede:";
+$a->strings["g A l F d"] = "G l d F";
+$a->strings["F d"] = "F d";
+$a->strings["[today]"] = "[hoje]";
+$a->strings["Birthday Reminders"] = "Lembretes de aniversário";
+$a->strings["Birthdays this week:"] = "Aniversários nesta semana:";
+$a->strings["[No description]"] = "[Sem descrição]";
+$a->strings["Event Reminders"] = "Lembretes de eventos";
+$a->strings["Events this week:"] = "Eventos esta semana:";
+$a->strings["Status"] = "Status";
+$a->strings["Status Messages and Posts"] = "Mensagem de Estado (status) e Publicações";
+$a->strings["Profile Details"] = "Detalhe do Perfil";
+$a->strings["Photo Albums"] = "Álbuns de fotos";
+$a->strings["Videos"] = "Vídeos";
+$a->strings["Events and Calendar"] = "Eventos e Agenda";
+$a->strings["Personal Notes"] = "Notas pessoais";
+$a->strings["Only You Can See This"] = "Somente Você Pode Ver Isso";
+$a->strings["General Features"] = "Funcionalidades Gerais";
+$a->strings["Multiple Profiles"] = "Perfís Múltiplos";
+$a->strings["Ability to create multiple profiles"] = "Capacidade de criar perfis múltiplos";
+$a->strings["Post Composition Features"] = "Funcionalidades de Composição de Publicações";
+$a->strings["Richtext Editor"] = "Editor Richtext";
+$a->strings["Enable richtext editor"] = "Habilite editor richtext";
+$a->strings["Post Preview"] = "Pré-visualização da Publicação";
+$a->strings["Allow previewing posts and comments before publishing them"] = "Permite pré-visualizar publicações e comentários antes de publicá-los";
+$a->strings["Auto-mention Forums"] = "Auto-menção Fóruns";
+$a->strings["Add/remove mention when a fourm page is selected/deselected in ACL window."] = "Adiciona/Remove menções quando uma página de fórum é selecionada/deselecionada na janela ACL";
+$a->strings["Network Sidebar Widgets"] = "Widgets da Barra Lateral da Rede";
+$a->strings["Search by Date"] = "Buscar por Data";
+$a->strings["Ability to select posts by date ranges"] = "Capacidade de selecionar publicações por intervalos de data";
+$a->strings["Group Filter"] = "Filtrar Grupo";
+$a->strings["Enable widget to display Network posts only from selected group"] = "Habilita widget para mostrar publicações da Rede somente de grupos selecionados";
+$a->strings["Network Filter"] = "Filtrar Rede";
+$a->strings["Enable widget to display Network posts only from selected network"] = "Habilita widget para mostrar publicações da Rede de redes selecionadas";
+$a->strings["Saved Searches"] = "Pesquisas salvas";
+$a->strings["Save search terms for re-use"] = "Guarde as palavras-chaves para reuso";
+$a->strings["Network Tabs"] = "Abas da Rede";
+$a->strings["Network Personal Tab"] = "Aba Pessoal da Rede";
+$a->strings["Enable tab to display only Network posts that you've interacted on"] = "Habilitar aba para mostrar apenas as publicações da Rede que você tenha interagido";
+$a->strings["Network New Tab"] = "Aba Nova da Rede";
+$a->strings["Enable tab to display only new Network posts (from the last 12 hours)"] = "Habilite aba para mostra apenas publicações da Rede novas (das últimas 12 horas)";
+$a->strings["Network Shared Links Tab"] = "Aba de Links Compartilhados da Rede";
+$a->strings["Enable tab to display only Network posts with links in them"] = "Habilite aba para mostrar somente publicações da Rede que contenham links";
+$a->strings["Post/Comment Tools"] = "Ferramentas de Publicação/Comentário";
+$a->strings["Multiple Deletion"] = "Deleção Multipla";
+$a->strings["Select and delete multiple posts/comments at once"] = "Selecione e delete múltiplas publicações/comentário imediatamente";
+$a->strings["Edit Sent Posts"] = "Editar Publicações Enviadas";
+$a->strings["Edit and correct posts and comments after sending"] = "Editar e corrigir publicações e comentários após envio";
+$a->strings["Tagging"] = "Etiquetagem";
+$a->strings["Ability to tag existing posts"] = "Capacidade de colocar etiquetas em publicações existentes";
+$a->strings["Post Categories"] = "Categorias de Publicações";
+$a->strings["Add categories to your posts"] = "Adicione Categorias ás Publicações";
+$a->strings["Saved Folders"] = "Pastas salvas";
+$a->strings["Ability to file posts under folders"] = "Capacidade de arquivar publicações em pastas";
+$a->strings["Dislike Posts"] = "Desgostar de publicações";
+$a->strings["Ability to dislike posts/comments"] = "Capacidade de desgostar de publicações/comentários";
+$a->strings["Star Posts"] = "Destacar publicações";
+$a->strings["Ability to mark special posts with a star indicator"] = "Capacidade de marcar publicações especiais com uma estrela indicadora";
+$a->strings["Mute Post Notifications"] = "Silenciar Notificações de Postagem";
+$a->strings["Ability to mute notifications for a thread"] = "Habilitar notificação silenciosa para a tarefa";
+$a->strings["%s's birthday"] = "aniversários de %s's";
+$a->strings["Happy Birthday %s"] = "Feliz Aniversário %s";
+$a->strings["[Name Withheld]"] = "[Nome não revelado]";
+$a->strings["Item not found."] = "O item não foi encontrado.";
+$a->strings["Do you really want to delete this item?"] = "Você realmente deseja deletar esse item?";
 $a->strings["Yes"] = "Sim";
 $a->strings["Cancel"] = "Cancelar";
-$a->strings["Contact has been removed."] = "O contato foi removido.";
-$a->strings["You are mutual friends with %s"] = "Você possui uma amizade mútua com %s";
-$a->strings["You are sharing with %s"] = "Você está compartilhando com %s";
-$a->strings["%s is sharing with you"] = "%s está compartilhando com você";
-$a->strings["Private communications are not available for this contact."] = "As comunicações privadas não estão disponíveis para este contato.";
-$a->strings["Never"] = "Nunca";
-$a->strings["(Update was successful)"] = "(A atualização foi bem sucedida)";
-$a->strings["(Update was not successful)"] = "(A atualização não foi bem sucedida)";
-$a->strings["Suggest friends"] = "Sugerir amigos";
-$a->strings["Network type: %s"] = "Tipo de rede: %s";
+$a->strings["Archives"] = "Arquivos";
+$a->strings["A deleted group with this name was revived. Existing item permissions <strong>may</strong> apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "Um grupo com esse nome, anteriormente excluído, foi reativado. Permissões de itens já existentes <strong>poderão</strong> ser aplicadas a esse grupo e qualquer futuros membros. Se não é essa a sua intenção, favor criar outro grupo com um nome diferente.";
+$a->strings["Default privacy group for new contacts"] = "Grupo de privacidade padrão para novos contatos";
+$a->strings["Everybody"] = "Todos";
+$a->strings["edit"] = "editar";
+$a->strings["Groups"] = "Grupos";
+$a->strings["Edit group"] = "Editar grupo";
+$a->strings["Create a new group"] = "Criar um novo grupo";
+$a->strings["Contacts not in any group"] = "Contatos não estão dentro de nenhum grupo";
+$a->strings["add"] = "adicionar";
+$a->strings["Wall Photos"] = "Fotos do mural";
+$a->strings["Cannot locate DNS info for database server '%s'"] = "Não foi possível localizar a informação de DNS para o servidor de banco de dados '%s'";
+$a->strings["Add New Contact"] = "Adicionar Contato Novo";
+$a->strings["Enter address or web location"] = "Forneça endereço ou localização web";
+$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Por exemplo: joao@exemplo.com, http://exemplo.com/maria";
+$a->strings["%d invitation available"] = array(
+       0 => "%d convite disponível",
+       1 => "%d convites disponíveis",
+);
+$a->strings["Find People"] = "Pesquisar por pessoas";
+$a->strings["Enter name or interest"] = "Fornecer nome ou interesse";
+$a->strings["Connect/Follow"] = "Conectar-se/acompanhar";
+$a->strings["Examples: Robert Morgenstein, Fishing"] = "Examplos: Robert Morgenstein, Fishing";
+$a->strings["Find"] = "Pesquisar";
+$a->strings["Random Profile"] = "Perfil Randômico";
+$a->strings["Networks"] = "Redes";
+$a->strings["All Networks"] = "Todas as redes";
+$a->strings["Everything"] = "Tudo";
+$a->strings["Categories"] = "Categorias";
 $a->strings["%d contact in common"] = array(
        0 => "%d contato em comum",
        1 => "%d contatos em comum",
 );
-$a->strings["View all contacts"] = "Ver todos os contatos";
-$a->strings["Unblock"] = "Desbloquear";
-$a->strings["Block"] = "Bloquear";
-$a->strings["Toggle Blocked status"] = "Alternar o status de bloqueio";
-$a->strings["Unignore"] = "Deixar de ignorar";
-$a->strings["Ignore"] = "Ignorar";
-$a->strings["Toggle Ignored status"] = "Alternar o status de ignorado";
-$a->strings["Unarchive"] = "Desarquivar";
-$a->strings["Archive"] = "Arquivar";
-$a->strings["Toggle Archive status"] = "Alternar o status de arquivamento";
-$a->strings["Repair"] = "Reparar";
-$a->strings["Advanced Contact Settings"] = "Configurações avançadas do contato";
-$a->strings["Communications lost with this contact!"] = "As comunicações com esse contato foram perdidas!";
-$a->strings["Contact Editor"] = "Editor de contatos";
-$a->strings["Submit"] = "Enviar";
-$a->strings["Profile Visibility"] = "Visibilidade do perfil";
-$a->strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Por favor, selecione o perfil que você gostaria de exibir para %s quando estiver visualizando seu perfil de modo seguro.";
-$a->strings["Contact Information / Notes"] = "Informações sobre o contato / Anotações";
-$a->strings["Edit contact notes"] = "Editar as anotações do contato";
-$a->strings["Visit %s's profile [%s]"] = "Visitar o perfil de %s [%s]";
-$a->strings["Block/Unblock contact"] = "Bloquear/desbloquear o contato";
-$a->strings["Ignore contact"] = "Ignorar o contato";
-$a->strings["Repair URL settings"] = "Reparar as definições de URL";
-$a->strings["View conversations"] = "Ver as conversas";
-$a->strings["Delete contact"] = "Excluir o contato";
-$a->strings["Last update:"] = "Última atualização:";
-$a->strings["Update public posts"] = "Atualizar publicações públicas";
-$a->strings["Update now"] = "Atualizar agora";
-$a->strings["Currently blocked"] = "Atualmente bloqueado";
-$a->strings["Currently ignored"] = "Atualmente ignorado";
-$a->strings["Currently archived"] = "Atualmente arquivado";
-$a->strings["Hide this contact from others"] = "Ocultar este contato dos outros";
-$a->strings["Replies/likes to your public posts <strong>may</strong> still be visible"] = "Respostas/gostadas associados às suas publicações <strong>ainda podem</strong> estar visíveis";
-$a->strings["Notification for new posts"] = "Notificações para novas publicações";
-$a->strings["Send a notification of every new post of this contact"] = "Envie uma notificação para todos as novas publicações deste contato";
-$a->strings["Fetch further information for feeds"] = "Pega mais informações para feeds";
-$a->strings["Disabled"] = "Desabilitado";
-$a->strings["Fetch information"] = "Buscar informações";
-$a->strings["Fetch information and keywords"] = "Buscar informação e palavras-chave";
-$a->strings["Blacklisted keywords"] = "Palavras-chave na Lista Negra";
-$a->strings["Comma separated list of keywords that should not be converted to hashtags, when \"Fetch information and keywords\" is selected"] = "Lista de palavras-chave separadas por vírgulas que não devem ser convertidas para hashtags, quando \"Buscar informações e palavras-chave\" for selecionado.";
-$a->strings["Suggestions"] = "Sugestões";
-$a->strings["Suggest potential friends"] = "Sugerir amigos em potencial";
-$a->strings["All Contacts"] = "Todos os contatos";
-$a->strings["Show all contacts"] = "Exibe todos os contatos";
-$a->strings["Unblocked"] = "Desbloquear";
-$a->strings["Only show unblocked contacts"] = "Exibe somente contatos desbloqueados";
-$a->strings["Blocked"] = "Bloqueado";
-$a->strings["Only show blocked contacts"] = "Exibe somente contatos bloqueados";
-$a->strings["Ignored"] = "Ignorados";
-$a->strings["Only show ignored contacts"] = "Exibe somente contatos ignorados";
-$a->strings["Archived"] = "Arquivados";
-$a->strings["Only show archived contacts"] = "Exibe somente contatos arquivados";
-$a->strings["Hidden"] = "Ocultos";
-$a->strings["Only show hidden contacts"] = "Exibe somente contatos ocultos";
-$a->strings["Mutual Friendship"] = "Amizade mútua";
-$a->strings["is a fan of yours"] = "é um fã seu";
-$a->strings["you are a fan of"] = "você é um fã de";
-$a->strings["Edit contact"] = "Editar o contato";
-$a->strings["Contacts"] = "Contatos";
-$a->strings["Search your contacts"] = "Pesquisar seus contatos";
-$a->strings["Finding: "] = "Pesquisando: ";
-$a->strings["Find"] = "Pesquisar";
-$a->strings["Update"] = "Atualizar";
-$a->strings["Delete"] = "Excluir";
-$a->strings["No profile"] = "Nenhum perfil";
-$a->strings["Manage Identities and/or Pages"] = "Gerenciar identidades e/ou páginas";
-$a->strings["Toggle between different identities or community/group pages which share your account details or which you have been granted \"manage\" permissions"] = "Alterne entre diferentes identidades ou páginas de comunidade/grupo que dividem detalhes da sua conta ou que você tenha fornecido permissões de \"administração\"";
-$a->strings["Select an identity to manage: "] = "Selecione uma identidade para gerenciar: ";
-$a->strings["Post successful."] = "Publicado com sucesso.";
-$a->strings["Permission denied"] = "Permissão negada";
-$a->strings["Invalid profile identifier."] = "Identificador de perfil inválido.";
-$a->strings["Profile Visibility Editor"] = "Editor de visibilidade do perfil";
-$a->strings["Profile"] = "Perfil ";
-$a->strings["Click on a contact to add or remove."] = "Clique em um contato para adicionar ou remover.";
-$a->strings["Visible To"] = "Visível para";
-$a->strings["All Contacts (with secure profile access)"] = "Todos os contatos (com acesso a perfil seguro)";
-$a->strings["Item not found."] = "O item não foi encontrado.";
-$a->strings["Public access denied."] = "Acesso público negado.";
-$a->strings["Access to this profile has been restricted."] = "O acesso a este perfil está restrito.";
-$a->strings["Item has been removed."] = "O item foi removido.";
-$a->strings["Welcome to Friendica"] = "Bemvindo ao Friendica";
-$a->strings["New Member Checklist"] = "Dicas para os novos membros";
-$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."] = "Gostaríamos de oferecer algumas dicas e links para ajudar a tornar a sua experiência agradável. Clique em qualquer item para visitar a página correspondente. Um link para essa página será visível em sua home page por duas semanas após o seu registro inicial e, então, desaparecerá discretamente.";
-$a->strings["Getting Started"] = "Do Início";
-$a->strings["Friendica Walk-Through"] = "Passo-a-passo da friendica";
-$a->strings["On your <em>Quick Start</em> page - find a brief introduction to your profile and network tabs, make some new connections, and find some groups to join."] = "Na sua página <em>Início Rápido</em> - encontre uma introdução rápida ao seu perfil e abas da rede, faça algumas conexões novas, e encontre alguns grupos entrar.";
-$a->strings["Settings"] = "Configurações";
-$a->strings["Go to Your Settings"] = "Ir para as suas configurações";
-$a->strings["On your <em>Settings</em> page -  change your initial password. Also make a note of your Identity Address. This looks just like an email address - and will be useful in making friends on the free social web."] = "Em sua página  <em>Configurações</em> - mude sua senha inicial. Também tome nota de seu Endereço de Identidade. Isso se parece com um endereço de e-mail - e será útil para se fazer amigos na rede social livre.";
-$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."] = "Revise as outras configurações, em particular as relacionadas a privacidade. Não estar listado no diretório é o equivalente a não ter o seu número na lista telefônica. Normalmente é interessante você estar listado - a não ser que os seu amigos atuais e potenciais saibam exatamente como encontrar você.";
-$a->strings["Upload Profile Photo"] = "Enviar foto do perfil";
-$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."] = "Envie uma foto para o seu perfil, caso ainda não tenha feito isso. Estudos indicam que pessoas que publicam fotos reais delas mesmas têm 10 vezes mais chances de encontrar novos amigos do que as que não o fazem.";
-$a->strings["Edit Your Profile"] = "Editar seu perfil";
-$a->strings["Edit your <strong>default</strong> profile to your liking. Review the settings for hiding your list of friends and hiding the profile from unknown visitors."] = "Edite o seu perfil <strong>padrão</strong> a seu gosto. Revise as configurações de ocultação da sua lista de amigos e do seu perfil de visitantes desconhecidos.";
-$a->strings["Profile Keywords"] = "Palavras-chave do perfil";
-$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."] = "Defina algumas palavras-chave públicas para o seu perfil padrão, que descrevam os seus interesses. Nós podemos encontrar outras pessoas com interesses similares e sugerir novas amizades.";
-$a->strings["Connecting"] = "Conexões";
-$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."] = "Autorize o Conector com Facebook, caso você tenha uma conta lá e nós (opcionalmente) importaremos todos os seus amigos e conversas do Facebook.";
-$a->strings["<em>If</em> this is your own personal server, installing the Facebook addon may ease your transition to the free social web."] = "<em>Se</em> esse é o seu servidor pessoal, instalar o complemento do Facebook talvez facilite a transição para a rede social livre.";
-$a->strings["Importing Emails"] = "Importação de e-mails";
-$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"] = "Forneça a informação de acesso ao seu e-mail na sua página de Configuração de Conector se você deseja importar e interagir com amigos ou listas de discussão da sua Caixa de Entrada de e-mail";
-$a->strings["Go to Your Contacts Page"] = "Ir para a sua página de contatos";
-$a->strings["Your Contacts page is your gateway to managing friendships and connecting with friends on other networks. Typically you enter their address or site URL in the <em>Add New Contact</em> dialog."] = "Sua página de contatos é sua rota para o gerenciamento de amizades e conexão com amigos em outras redes. Geralmente você fornece o endereço deles ou a URL do site na janela de diálogo <em>Adicionar Novo Contato</em>.";
-$a->strings["Go to Your Site's Directory"] = "Ir para o diretório do seu site";
-$a->strings["The Directory page lets you find other people in this network or other federated sites. Look for a <em>Connect</em> or <em>Follow</em> link on their profile page. Provide your own Identity Address if requested."] = "A página de Diretório permite que você encontre outras pessoas nesta rede ou em outras redes federadas. Procure por um link <em>Conectar</em> ou <em>Seguir</em> no perfil que deseja acompanhar. Forneça o seu Endereço de Identidade próprio, se solicitado.";
-$a->strings["Finding New People"] = "Pesquisar por novas pessoas";
-$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."] = "No painel lateral da página de Contatos existem várias ferramentas para encontrar novos amigos. Você pode descobrir pessoas com os mesmos interesses, procurar por nomes ou interesses e fornecer sugestões baseadas nos relacionamentos da rede. Em um site completamente novo, as sugestões de amizades geralmente começam a ser populadas dentro de 24 horas.";
-$a->strings["Groups"] = "Grupos";
-$a->strings["Group Your Contacts"] = "Agrupe seus contatos";
-$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."] = "Após fazer novas amizades, organize-as em grupos de conversa privados, a partir da barra lateral na sua página de Contatos. A partir daí, você poderá interagir com cada grupo privativamente, na sua página de Rede.";
-$a->strings["Why Aren't My Posts Public?"] = "Por que as minhas publicações não são públicas?";
-$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."] = "A friendica respeita sua privacidade. Por padrão, suas publicações estarão visíveis apenas para as pessoas que você adicionou como amigos. Para mais informações, veja a página de ajuda, a partir do link acima.";
-$a->strings["Getting Help"] = "Obtendo ajuda";
-$a->strings["Go to the Help Section"] = "Ir para a seção de ajuda";
-$a->strings["Our <strong>help</strong> pages may be consulted for detail on other program features and resources."] = "Nossas páginas de <strong>ajuda</strong> podem ser consultadas para mais detalhes sobre características e recursos do programa.";
-$a->strings["OpenID protocol error. No ID returned."] = "Erro no protocolo OpenID. Não foi retornada nenhuma ID.";
-$a->strings["Account not found and OpenID registration is not permitted on this site."] = "A conta não foi encontrada e não são permitidos registros via OpenID nesse site.";
-$a->strings["Login failed."] = "Não foi possível autenticar.";
-$a->strings["Image uploaded but image cropping failed."] = "A imagem foi enviada, mas não foi possível cortá-la.";
-$a->strings["Profile Photos"] = "Fotos do perfil";
-$a->strings["Image size reduction [%s] failed."] = "Não foi possível reduzir o tamanho da imagem [%s].";
-$a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Recarregue a página pressionando a tecla Shift ou limpe o cache do navegador caso a nova foto não apareça imediatamente";
-$a->strings["Unable to process image"] = "Não foi possível processar a imagem";
-$a->strings["Image exceeds size limit of %d"] = "A imagem excede o limite de tamanho de %d";
-$a->strings["Unable to process image."] = "Não foi possível processar a imagem.";
-$a->strings["Upload File:"] = "Enviar arquivo:";
-$a->strings["Select a profile:"] = "Selecione um perfil:";
-$a->strings["Upload"] = "Enviar";
-$a->strings["or"] = "ou";
-$a->strings["skip this step"] = "pule esta etapa";
-$a->strings["select a photo from your photo albums"] = "selecione uma foto de um álbum de fotos";
-$a->strings["Crop Image"] = "Cortar a imagem";
-$a->strings["Please adjust the image cropping for optimum viewing."] = "Por favor, ajuste o corte da imagem para a melhor visualização.";
-$a->strings["Done Editing"] = "Encerrar a edição";
-$a->strings["Image uploaded successfully."] = "A imagem foi enviada com sucesso.";
-$a->strings["Image upload failed."] = "Não foi possível enviar a imagem.";
-$a->strings["photo"] = "foto";
-$a->strings["status"] = "status";
-$a->strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s está seguindo %2\$s's %3\$s";
-$a->strings["Tag removed"] = "A etiqueta foi removida";
-$a->strings["Remove Item Tag"] = "Remover a etiqueta do item";
-$a->strings["Select a tag to remove: "] = "Selecione uma etiqueta para remover: ";
-$a->strings["Remove"] = "Remover";
-$a->strings["Save to Folder:"] = "Salvar na pasta:";
-$a->strings["- select -"] = "-selecione-";
-$a->strings["Save"] = "Salvar";
-$a->strings["Contact added"] = "O contato foi adicionado";
-$a->strings["Unable to locate original post."] = "Não foi possível localizar a publicação original.";
-$a->strings["Empty post discarded."] = "A publicação em branco foi descartada.";
-$a->strings["Wall Photos"] = "Fotos do mural";
-$a->strings["System error. Post not saved."] = "Erro no sistema. A publicação não foi salva.";
-$a->strings["This message was sent to you by %s, a member of the Friendica social network."] = "Essa mensagem foi enviada a você por %s, um membro da rede social Friendica.";
-$a->strings["You may visit them online at %s"] = "Você pode visitá-lo em %s";
-$a->strings["Please contact the sender by replying to this post if you do not wish to receive these messages."] = "Por favor, entre em contato com o remetente respondendo a esta publicação, caso você não queira mais receber estas mensagens.";
-$a->strings["%s posted an update."] = "%s publicou uma atualização.";
-$a->strings["Group created."] = "O grupo foi criado.";
-$a->strings["Could not create group."] = "Não foi possível criar o grupo.";
-$a->strings["Group not found."] = "O grupo não foi encontrado.";
-$a->strings["Group name changed."] = "O nome do grupo foi alterado.";
-$a->strings["Save Group"] = "Salvar o grupo";
-$a->strings["Create a group of contacts/friends."] = "Criar um grupo de contatos/amigos.";
-$a->strings["Group Name: "] = "Nome do grupo: ";
-$a->strings["Group removed."] = "O grupo foi removido.";
-$a->strings["Unable to remove group."] = "Não foi possível remover o grupo.";
-$a->strings["Group Editor"] = "Editor de grupo";
-$a->strings["Members"] = "Membros";
-$a->strings["You must be logged in to use addons. "] = "Você precisa estar logado para usar os addons.";
-$a->strings["Applications"] = "Aplicativos";
-$a->strings["No installed applications."] = "Nenhum aplicativo instalado";
-$a->strings["Profile not found."] = "O perfil não foi encontrado.";
-$a->strings["Contact not found."] = "O contato não foi encontrado.";
-$a->strings["This may occasionally happen if contact was requested by both persons and it has already been approved."] = "Isso pode acontecer eventualmente se o contato foi solicitado por ambas as pessoas e ele já tinha sido aprovado.";
-$a->strings["Response from remote site was not understood."] = "A resposta do site remoto não foi compreendida.";
-$a->strings["Unexpected response from remote site: "] = "Resposta inesperada do site remoto: ";
-$a->strings["Confirmation completed successfully."] = "A confirmação foi completada com sucesso.";
-$a->strings["Remote site reported: "] = "O site remoto relatou: ";
-$a->strings["Temporary failure. Please wait and try again."] = "Falha temporária. Por favor, aguarde e tente novamente.";
-$a->strings["Introduction failed or was revoked."] = "Ocorreu uma falha na apresentação ou ela foi revogada.";
-$a->strings["Unable to set contact photo."] = "Não foi possível definir a foto do contato.";
-$a->strings["%1\$s is now friends with %2\$s"] = "%1\$s agora é amigo de %2\$s";
-$a->strings["No user record found for '%s' "] = "Não foi encontrado nenhum registro de usuário para '%s' ";
-$a->strings["Our site encryption key is apparently messed up."] = "A chave de criptografia do nosso site está, aparentemente, bagunçada.";
-$a->strings["Empty site URL was provided or URL could not be decrypted by us."] = "Foi fornecida uma URL em branco ou não foi possível descriptografá-la.";
-$a->strings["Contact record was not found for you on our site."] = "O registro do contato não foi encontrado para você em seu site.";
-$a->strings["Site public key not available in contact record for URL %s."] = "A chave pública do site não está disponível no registro do contato para a URL %s";
-$a->strings["The ID provided by your system is a duplicate on our system. It should work if you try again."] = "O ID fornecido pelo seu sistema é uma duplicata em nosso sistema. Deve funcionar agora, se você tentar de novo.";
-$a->strings["Unable to set your contact credentials on our system."] = "Não foi possível definir suas credenciais de contato no nosso sistema.";
-$a->strings["Unable to update your contact profile details on our system"] = "Não foi possível atualizar os detalhes do seu perfil em nosso sistema.";
-$a->strings["[Name Withheld]"] = "[Nome não revelado]";
-$a->strings["%1\$s has joined %2\$s"] = "%1\$s se associou a %2\$s";
-$a->strings["Requested profile is not available."] = "Perfil solicitado não está disponível.";
-$a->strings["Tips for New Members"] = "Dicas para novos membros";
-$a->strings["No videos selected"] = "Nenhum vídeo selecionado";
-$a->strings["Access to this item is restricted."] = "O acesso a este item é restrito.";
-$a->strings["View Video"] = "Ver Vídeo";
-$a->strings["View Album"] = "Ver álbum";
-$a->strings["Recent Videos"] = "Vídeos Recentes";
-$a->strings["Upload New Videos"] = "Envie Novos Vídeos";
-$a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s etiquetou %3\$s de %2\$s com %4\$s";
-$a->strings["Friend suggestion sent."] = "A sugestão de amigo foi enviada";
-$a->strings["Suggest Friends"] = "Sugerir amigos";
-$a->strings["Suggest a friend for %s"] = "Sugerir um amigo para %s";
-$a->strings["No valid account found."] = "Não foi encontrada nenhuma conta válida.";
-$a->strings["Password reset request issued. Check your email."] = "A solicitação para reiniciar sua senha foi encaminhada. Verifique seu 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."] = "\n\t\tPrezado %1\$s,\n\t\t\tUma solicitação foi recebida recentemente em \"%2\$s\" para redefinir a\n\t\tsenha da sua conta. Para confirmar este pedido, por favor selecione o link de confirmação\n\t\tabaixo ou copie e cole-o na barra de endereço do seu navegador.\n\n\t\tSe NÃO foi você que solicitou esta alteração por favor, NÃO clique no link\n\t\tfornecido e ignore e/ou apague este e-mail.\n\n\t\tSua senha não será alterada a menos que possamos verificar que foi você que\n\t\temitiu esta solicitação.";
-$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"] = "\n\t\tSiga este link para verificar sua identidade:\n\n\t\t%1\$s\n\n\t\tVocê então receberá uma mensagem de continuidade contendo a nova senha.\n\t\tVocê pode alterar sua senha na sua página de configurações após efetuar seu login.\n\n\t\tOs dados de login são os seguintes:\n\n\t\tLocalização do Site:\t%2\$s\n\t\tNome de Login:\t%3\$s";
-$a->strings["Password reset requested at %s"] = "Foi feita uma solicitação de reiniciação da senha em %s";
-$a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "Não foi possível verificar a solicitação (você pode tê-la submetido anteriormente). A senha não foi reiniciada.";
-$a->strings["Password Reset"] = "Redifinir a senha";
-$a->strings["Your password has been reset as requested."] = "Sua senha foi reiniciada, conforme solicitado.";
-$a->strings["Your new password is"] = "Sua nova senha é";
-$a->strings["Save or copy your new password - and then"] = "Grave ou copie a sua nova senha e, então";
-$a->strings["click here to login"] = "clique aqui para entrar";
-$a->strings["Your password may be changed from the <em>Settings</em> page after successful login."] = "Sua senha pode ser alterada na página de <em>Configurações</em> após você entrar em seu perfil.";
-$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\tCaro %1\$s,\n\t\t\t\t\tSua senha foi alterada conforme solicitado. Por favor, guarde essas\n\t\t\t\tinformações para seus registros (ou altere a sua senha imediatamente para\n\t\t\t\talgo que você se lembrará).\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"] = "\n\t\t\t\tOs seus dados de login são os seguintes:\n\n\t\t\t\tLocalização do Site:\t%1\$s\n\t\t\t\tNome de Login:\t%2\$s\n\t\t\t\tSenha:\t%3\$s\n\n\t\t\t\tVocê pode alterar esta senha na sua página de configurações depois que efetuar o seu login.\n\t\t\t";
-$a->strings["Your password has been changed at %s"] = "Sua senha foi modifica às %s";
-$a->strings["Forgot your Password?"] = "Esqueceu a sua senha?";
-$a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Digite o seu endereço de e-mail e clique em 'Reiniciar' para prosseguir com a reiniciação da sua senha. Após isso, verifique seu e-mail para mais instruções.";
-$a->strings["Nickname or Email: "] = "Identificação ou e-mail: ";
-$a->strings["Reset"] = "Reiniciar";
-$a->strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s gosta de %3\$s de %2\$s";
-$a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s não gosta de %3\$s de %2\$s";
-$a->strings["{0} wants to be your friend"] = "{0} deseja ser seu amigo";
-$a->strings["{0} sent you a message"] = "{0} lhe enviou uma mensagem";
-$a->strings["{0} requested registration"] = "{0} solicitou registro";
-$a->strings["{0} commented %s's post"] = "{0} comentou a publicação de %s";
-$a->strings["{0} liked %s's post"] = "{0} gostou da publicação de %s";
-$a->strings["{0} disliked %s's post"] = "{0} desgostou da publicação de %s";
-$a->strings["{0} is now friends with %s"] = "{0} agora é amigo de %s";
-$a->strings["{0} posted"] = "{0} publicou";
-$a->strings["{0} tagged %s's post with #%s"] = "{0} etiquetou a publicação de %s com #%s";
-$a->strings["{0} mentioned you in a post"] = "{0} mencionou você em uma publicação";
-$a->strings["No contacts."] = "Nenhum contato.";
-$a->strings["View Contacts"] = "Ver contatos";
-$a->strings["Invalid request identifier."] = "Identificador de solicitação inválido";
-$a->strings["Discard"] = "Descartar";
-$a->strings["System"] = "Sistema";
-$a->strings["Network"] = "Rede";
-$a->strings["Personal"] = "Pessoal";
-$a->strings["Home"] = "Pessoal";
-$a->strings["Introductions"] = "Apresentações";
-$a->strings["Show Ignored Requests"] = "Exibir solicitações ignoradas";
-$a->strings["Hide Ignored Requests"] = "Ocultar solicitações ignoradas";
-$a->strings["Notification type: "] = "Tipo de notificação:";
-$a->strings["Friend Suggestion"] = "Sugestão de amigo";
-$a->strings["suggested by %s"] = "sugerido por %s";
-$a->strings["Post a new friend activity"] = "Publicar a adição de amigo";
-$a->strings["if applicable"] = "se aplicável";
-$a->strings["Approve"] = "Aprovar";
-$a->strings["Claims to be known to you: "] = "Alega ser conhecido por você: ";
-$a->strings["yes"] = "sim";
-$a->strings["no"] = "não";
-$a->strings["Approve as: "] = "Aprovar como:";
-$a->strings["Friend"] = "Amigo";
-$a->strings["Sharer"] = "Compartilhador";
-$a->strings["Fan/Admirer"] = "Fã/Admirador";
-$a->strings["Friend/Connect Request"] = "Solicitação de amizade/conexão";
-$a->strings["New Follower"] = "Novo acompanhante";
-$a->strings["No introductions."] = "Sem apresentações.";
-$a->strings["Notifications"] = "Notificações";
-$a->strings["%s liked %s's post"] = "%s gostou da publicação de %s";
-$a->strings["%s disliked %s's post"] = "%s desgostou da publicação de %s";
-$a->strings["%s is now friends with %s"] = "%s agora é amigo de %s";
-$a->strings["%s created a new post"] = "%s criou uma nova publicação";
-$a->strings["%s commented on %s's post"] = "%s comentou uma publicação de %s";
-$a->strings["No more network notifications."] = "Nenhuma notificação de rede.";
-$a->strings["Network Notifications"] = "Notificações de rede";
-$a->strings["No more system notifications."] = "Não fazer notificações de sistema.";
-$a->strings["System Notifications"] = "Notificações de sistema";
-$a->strings["No more personal notifications."] = "Nenhuma notificação pessoal.";
-$a->strings["Personal Notifications"] = "Notificações pessoais";
-$a->strings["No more home notifications."] = "Não existe mais nenhuma notificação pessoal.";
-$a->strings["Home Notifications"] = "Notificações pessoais";
-$a->strings["Source (bbcode) text:"] = "Texto fonte (bbcode):";
-$a->strings["Source (Diaspora) text to convert to BBcode:"] = "Texto fonte (Diaspora) a converter para BBcode:";
-$a->strings["Source input: "] = "Entrada fonte:";
-$a->strings["bb2html (raw HTML): "] = "bb2html (HTML puro):";
-$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): "] = "Fonte de entrada (formato Diaspora):";
-$a->strings["diaspora2bb: "] = "diaspora2bb: ";
-$a->strings["Nothing new here"] = "Nada de novo aqui";
-$a->strings["Clear notifications"] = "Descartar notificações";
-$a->strings["New Message"] = "Nova mensagem";
-$a->strings["No recipient selected."] = "Não foi selecionado nenhum destinatário.";
-$a->strings["Unable to locate contact information."] = "Não foi possível localizar informação do contato.";
-$a->strings["Message could not be sent."] = "Não foi possível enviar a mensagem.";
-$a->strings["Message collection failure."] = "Falha na coleta de mensagens.";
-$a->strings["Message sent."] = "A mensagem foi enviada.";
-$a->strings["Messages"] = "Mensagens";
-$a->strings["Do you really want to delete this message?"] = "Você realmente deseja deletar essa mensagem?";
-$a->strings["Message deleted."] = "A mensagem foi excluída.";
-$a->strings["Conversation removed."] = "A conversa foi removida.";
-$a->strings["Please enter a link URL:"] = "Por favor, digite uma URL:";
-$a->strings["Send Private Message"] = "Enviar mensagem privada";
-$a->strings["To:"] = "Para:";
-$a->strings["Subject:"] = "Assunto:";
-$a->strings["Your message:"] = "Sua mensagem:";
-$a->strings["Upload photo"] = "Enviar foto";
-$a->strings["Insert web link"] = "Inserir link web";
-$a->strings["Please wait"] = "Por favor, espere";
-$a->strings["No messages."] = "Nenhuma mensagem.";
-$a->strings["Unknown sender - %s"] = "Remetente desconhecido - %s";
-$a->strings["You and %s"] = "Você e %s";
-$a->strings["%s and You"] = "%s e você";
-$a->strings["Delete conversation"] = "Excluir conversa";
-$a->strings["D, d M Y - g:i A"] = "D, d M Y - g:i A";
-$a->strings["%d message"] = array(
-       0 => "%d mensagem",
-       1 => "%d mensagens",
-);
-$a->strings["Message not available."] = "A mensagem não está disponível.";
-$a->strings["Delete message"] = "Excluir a mensagem";
-$a->strings["No secure communications available. You <strong>may</strong> be able to respond from the sender's profile page."] = "Não foi encontrada nenhuma comunicação segura. Você <strong>pode</strong> ser capaz de responder a partir da página de perfil do remetente.";
-$a->strings["Send Reply"] = "Enviar resposta";
-$a->strings["[Embedded content - reload page to view]"] = "[Conteúdo incorporado - recarregue a página para ver]";
-$a->strings["Contact settings applied."] = "As configurações do contato foram aplicadas.";
-$a->strings["Contact update failed."] = "Não foi possível atualizar o contato.";
-$a->strings["Repair Contact Settings"] = "Corrigir configurações do contato";
-$a->strings["<strong>WARNING: This is highly advanced</strong> and if you enter incorrect information your communications with this contact may stop working."] = "<strong>ATENÇÃO: Isso é muito avançado</strong>, se você digitar informações incorretas, suas comunicações com esse contato pode parar de funcionar.";
-$a->strings["Please use your browser 'Back' button <strong>now</strong> if you are uncertain what to do on this page."] = "Por favor, use o botão 'Voltar' do seu navegador <strong>agora</strong>, caso você não tenha certeza do que está fazendo.";
-$a->strings["Return to contact editor"] = "Voltar ao editor de contatos";
-$a->strings["No mirroring"] = "Nenhum espelhamento";
-$a->strings["Mirror as forwarded posting"] = "Espelhar como postagem encaminhada";
-$a->strings["Mirror as my own posting"] = "Espelhar como minha própria postagem";
-$a->strings["Name"] = "Nome";
-$a->strings["Account Nickname"] = "Identificação da conta";
-$a->strings["@Tagname - overrides Name/Nickname"] = "@Tagname - sobrescreve Nome/Identificação";
-$a->strings["Account URL"] = "URL da conta";
-$a->strings["Friend Request URL"] = "URL da requisição de amizade";
-$a->strings["Friend Confirm URL"] = "URL da confirmação de amizade";
-$a->strings["Notification Endpoint URL"] = "URL do ponto final da notificação";
-$a->strings["Poll/Feed URL"] = "URL do captador/fonte de notícias";
-$a->strings["New photo from this URL"] = "Nova imagem desta URL";
-$a->strings["Remote Self"] = "Auto remoto";
-$a->strings["Mirror postings from this contact"] = "Espelhar publicações deste contato";
-$a->strings["Mark this contact as remote_self, this will cause friendica to repost new entries from this contact."] = "Marcar este contato como auto remoto fará com que o friendica republique novas entradas deste usuário.";
-$a->strings["Login"] = "Entrar";
-$a->strings["The post was created"] = "";
-$a->strings["Access denied."] = "Acesso negado.";
-$a->strings["People Search"] = "Pesquisar pessoas";
-$a->strings["No matches"] = "Nenhuma correspondência";
-$a->strings["Photos"] = "Fotos";
-$a->strings["Files"] = "Arquivos";
-$a->strings["Contacts who are not members of a group"] = "Contatos que não são membros de um grupo";
-$a->strings["Theme settings updated."] = "As configurações do tema foram atualizadas.";
-$a->strings["Site"] = "Site";
-$a->strings["Users"] = "Usuários";
-$a->strings["Plugins"] = "Plugins";
-$a->strings["Themes"] = "Temas";
-$a->strings["DB updates"] = "Atualizações do BD";
-$a->strings["Logs"] = "Relatórios";
-$a->strings["probe address"] = "";
-$a->strings["check webfinger"] = "";
-$a->strings["Admin"] = "Admin";
-$a->strings["Plugin Features"] = "Recursos do plugin";
-$a->strings["diagnostics"] = "";
-$a->strings["User registrations waiting for confirmation"] = "Cadastros de novos usuários aguardando confirmação";
-$a->strings["Normal Account"] = "Conta normal";
-$a->strings["Soapbox Account"] = "Conta de vitrine";
-$a->strings["Community/Celebrity Account"] = "Conta de comunidade/celebridade";
-$a->strings["Automatic Friend Account"] = "Conta de amigo automático";
-$a->strings["Blog Account"] = "Conta de blog";
-$a->strings["Private Forum"] = "Fórum privado";
-$a->strings["Message queues"] = "Fila de mensagens";
-$a->strings["Administration"] = "Administração";
-$a->strings["Summary"] = "Resumo";
-$a->strings["Registered users"] = "Usuários registrados";
-$a->strings["Pending registrations"] = "Registros pendentes";
-$a->strings["Version"] = "Versão";
-$a->strings["Active plugins"] = "Plugins ativos";
-$a->strings["Can not parse base url. Must have at least <scheme>://<domain>"] = "Não foi possível analisar a URL. Ela deve conter pelo menos <scheme>://<domain>";
-$a->strings["Site settings updated."] = "As configurações do site foram atualizadas.";
-$a->strings["No special theme for mobile devices"] = "Nenhum tema especial para dispositivos móveis";
-$a->strings["No community page"] = "";
-$a->strings["Public postings from users of this site"] = "";
-$a->strings["Global community page"] = "";
-$a->strings["At post arrival"] = "Na chegada da publicação";
-$a->strings["Frequently"] = "Frequentemente";
-$a->strings["Hourly"] = "De hora em hora";
-$a->strings["Twice daily"] = "Duas vezes ao dia";
-$a->strings["Daily"] = "Diariamente";
-$a->strings["Multi user instance"] = "Instância multi usuário";
-$a->strings["Closed"] = "Fechado";
-$a->strings["Requires approval"] = "Requer aprovação";
-$a->strings["Open"] = "Aberto";
-$a->strings["No SSL policy, links will track page SSL state"] = "Nenhuma política de SSL, os links irão rastrear o estado SSL da página";
-$a->strings["Force all links to use SSL"] = "Forçar todos os links a utilizar SSL";
-$a->strings["Self-signed certificate, use SSL for local links only (discouraged)"] = "Certificado auto-assinado, usar SSL somente para links locais (não recomendado)";
-$a->strings["Save Settings"] = "Salvar configurações";
-$a->strings["Registration"] = "Registro";
-$a->strings["File upload"] = "Envio de arquivo";
-$a->strings["Policies"] = "Políticas";
-$a->strings["Advanced"] = "Avançado";
-$a->strings["Performance"] = "Performance";
-$a->strings["Relocate - WARNING: advanced function. Could make this server unreachable."] = "Relocação - ATENÇÃO: função avançada. Pode tornar esse servidor inacessível.";
-$a->strings["Site name"] = "Nome do site";
-$a->strings["Host name"] = "Nome do host";
-$a->strings["Sender Email"] = "";
-$a->strings["Banner/Logo"] = "Banner/Logo";
-$a->strings["Shortcut icon"] = "";
-$a->strings["Touch icon"] = "";
-$a->strings["Additional Info"] = "Informação adicional";
-$a->strings["For public servers: you can add additional information here that will be listed at dir.friendica.com/siteinfo."] = "Para servidores públicos: você pode adicionar informações aqui que serão listadas em dir.friendica.com/siteinfo.";
-$a->strings["System language"] = "Idioma do sistema";
-$a->strings["System theme"] = "Tema do sistema";
-$a->strings["Default system theme - may be over-ridden by user profiles - <a href='#' id='cnftheme'>change theme settings</a>"] = "Tema padrão do sistema. Pode ser substituído nos perfis de usuário -  <a href='#' id='cnftheme'>alterar configurações do tema</a>";
-$a->strings["Mobile system theme"] = "Tema do sistema para dispositivos móveis";
-$a->strings["Theme for mobile devices"] = "Tema para dispositivos móveis";
-$a->strings["SSL link policy"] = "Política de link SSL";
-$a->strings["Determines whether generated links should be forced to use SSL"] = "Determina se os links gerados devem ser forçados a utilizar SSL";
-$a->strings["Force SSL"] = "Forçar SSL";
-$a->strings["Force all Non-SSL requests to SSL - Attention: on some systems it could lead to endless loops."] = "Forçar todas as solicitações não-SSL para SSL - Atenção: em alguns sistemas isso pode levar a loops infinitos.";
-$a->strings["Old style 'Share'"] = "Estilo antigo do 'Compartilhar' ";
-$a->strings["Deactivates the bbcode element 'share' for repeating items."] = "Desativa o elemento bbcode 'compartilhar' para repetir ítens.";
-$a->strings["Hide help entry from navigation menu"] = "Oculta a entrada 'Ajuda' do menu de navegação";
-$a->strings["Hides the menu entry for the Help pages from the navigation menu. You can still access it calling /help directly."] = "Oculta a entrada de menu para as páginas de Ajuda do menu de navegação. Ainda será possível acessá-las chamando /help diretamente.";
-$a->strings["Single user instance"] = "Instância de usuário único";
-$a->strings["Make this instance multi-user or single-user for the named user"] = "Faça essa instância multiusuário ou usuário único para o usuário em questão";
-$a->strings["Maximum image size"] = "Tamanho máximo da imagem";
-$a->strings["Maximum size in bytes of uploaded images. Default is 0, which means no limits."] = "Tamanho máximo, em bytes, das imagens enviadas. O padrão é 0, o que significa sem limites";
-$a->strings["Maximum image length"] = "Tamanho máximo da imagem";
-$a->strings["Maximum length in pixels of the longest side of uploaded images. Default is -1, which means no limits."] = "Tamanho máximo em pixels do lado mais largo das imagens enviadas. O padrão é -1, que significa sem limites.";
-$a->strings["JPEG image quality"] = "Qualidade da imagem JPEG";
-$a->strings["Uploaded JPEGS will be saved at this quality setting [0-100]. Default is 100, which is full quality."] = "Imagens JPEG enviadas serão salvas com essa qualidade [0-100]. O padrão é 100, que significa a melhor qualidade.";
-$a->strings["Register policy"] = "Política de registro";
-$a->strings["Maximum Daily Registrations"] = "Registros Diários Máximos";
-$a->strings["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."] = "Se o registro é permitido acima, isso configura o número máximo de registros de novos usuários a serem aceitos por dia. Se o registro está configurado para 'fechado/closed' ,  essa configuração não tem efeito.";
-$a->strings["Register text"] = "Texto de registro";
-$a->strings["Will be displayed prominently on the registration page."] = "Será exibido com destaque na página de registro.";
-$a->strings["Accounts abandoned after x days"] = "Contas abandonadas após x dias";
-$a->strings["Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit."] = "Não desperdiçará recursos do sistema captando de sites externos para contas abandonadas. Digite 0 para nenhum limite de tempo.";
-$a->strings["Allowed friend domains"] = "Domínios de amigos permitidos";
-$a->strings["Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains"] = "Lista dos domínios que têm permissão para estabelecer amizades com esse site, separados por vírgula. Caracteres curinga são aceitos. Deixe em branco para permitir qualquer domínio.";
-$a->strings["Allowed email domains"] = "Domínios de e-mail permitidos";
-$a->strings["Comma separated list of domains which are allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains"] = "Lista de domínios separados por vírgula, que são permitidos em endereços de e-mail para registro nesse site. Caracteres-curinga são aceitos. Vazio para aceitar qualquer domínio";
-$a->strings["Block public"] = "Bloquear acesso público";
-$a->strings["Check to block public access to all otherwise public personal pages on this site unless you are currently logged in."] = "Marque para bloquear o acesso público a todas as páginas desse site, com exceção das páginas pessoais públicas, a não ser que a pessoa esteja autenticada.";
-$a->strings["Force publish"] = "Forçar a listagem";
-$a->strings["Check to force all profiles on this site to be listed in the site directory."] = "Marque para forçar todos os perfis desse site a serem listados no diretório do site.";
-$a->strings["Global directory update URL"] = "URL de atualização do diretório global";
-$a->strings["URL to update the global directory. If this is not set, the global directory is completely unavailable to the application."] = "URL para atualizar o diretório global. Se isso não for definido, o diretório global não estará disponível neste site.";
-$a->strings["Allow threaded items"] = "Habilita itens aninhados";
-$a->strings["Allow infinite level threading for items on this site."] = "Habilita nível infinito de aninhamento (threading) para itens.";
-$a->strings["Private posts by default for new users"] = "Publicações privadas por padrão para novos usuários";
-$a->strings["Set default post permissions for all new members to the default privacy group rather than public."] = "Define as permissões padrão de publicação de todos os novos membros para o grupo de privacidade padrão, ao invés de torná-las públicas.";
-$a->strings["Don't include post content in email notifications"] = "Não incluir o conteúdo da postagem nas notificações de email";
-$a->strings["Don't include the content of a post/comment/private message/etc. in the email notifications that are sent out from this site, as a privacy measure."] = "Não incluir o conteúdo de uma postagem/comentário/mensagem privada/etc. em notificações de email que são enviadas para fora desse sítio, como medida de segurança.";
-$a->strings["Disallow public access to addons listed in the apps menu."] = "Disabilita acesso público a addons listados no menu de aplicativos.";
-$a->strings["Checking this box will restrict addons listed in the apps menu to members only."] = "Marcar essa caixa ira restringir os addons listados no menu de aplicativos aos membros somente.";
-$a->strings["Don't embed private images in posts"] = "Não inclua imagens privadas em publicações";
-$a->strings["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 photos will have to authenticate and load each image, which may take a while."] = "Não substitue fotos privativas guardadas localmente em publicações por uma cópia inclusa da imagem. Isso significa que os contatos que recebem publicações contendo fotos privadas terão que autenticar e carregar cada imagem, o que pode levar algum tempo.";
-$a->strings["Allow Users to set remote_self"] = "Permite usuários configurarem remote_self";
-$a->strings["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."] = "Ao marcar isto, todos os usuários poderão marcar cada contato como um remote_self na opção de reparar contato. Marcar isto para um contato produz espelhamento de toda publicação deste contato no fluxo dos usuários";
-$a->strings["Block multiple registrations"] = "Bloquear registros repetidos";
-$a->strings["Disallow users to register additional accounts for use as pages."] = "Desabilitar o registro de contas adicionais para serem usadas como páginas.";
-$a->strings["OpenID support"] = "Suporte ao OpenID";
-$a->strings["OpenID support for registration and logins."] = "Suporte ao OpenID para registros e autenticações.";
-$a->strings["Fullname check"] = "Verificar nome completo";
-$a->strings["Force users to register with a space between firstname and lastname in Full name, as an antispam measure"] = "Forçar os usuários a usar um espaço em branco entre o nome e o sobrenome, ao preencherem o nome completo no registro, como uma medida contra o spam";
-$a->strings["UTF-8 Regular expressions"] = "Expressões regulares UTF-8";
-$a->strings["Use PHP UTF8 regular expressions"] = "Use expressões regulares do PHP em UTF8";
-$a->strings["Community Page Style"] = "";
-$a->strings["Type of community page to show. 'Global community' shows every public posting from an open distributed network that arrived on this server."] = "";
-$a->strings["Posts per user on community page"] = "";
-$a->strings["The maximum number of posts per user on the community page. (Not valid for 'Global Community')"] = "";
-$a->strings["Enable OStatus support"] = "Habilitar suporte ao OStatus";
-$a->strings["Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All communications in OStatus are public, so privacy warnings will be occasionally displayed."] = "Fornece compatibilidade OStatus (StatusNet, GNU Social, etc.). Todas as comunicações no OStatus são públicas, assim avisos de privacidade serão ocasionalmente mostrados.";
-$a->strings["OStatus conversation completion interval"] = "Intervalo de finalização da conversação OStatus ";
-$a->strings["How often shall the poller check for new entries in OStatus conversations? This can be a very ressource task."] = "De quanto em quanto tempo o \"buscador\" (poller) deve checar por novas entradas numa conversação OStatus? Essa pode ser uma tarefa bem demorada.";
-$a->strings["Enable Diaspora support"] = "Habilitar suporte ao Diaspora";
-$a->strings["Provide built-in Diaspora network compatibility."] = "Fornece compatibilidade nativa com a rede Diaspora.";
-$a->strings["Only allow Friendica contacts"] = "Permitir somente contatos Friendica";
-$a->strings["All contacts must use Friendica protocols. All other built-in communication protocols disabled."] = "Todos os contatos devem usar protocolos Friendica. Todos os outros protocolos de comunicação embarcados estão desabilitados";
-$a->strings["Verify SSL"] = "Verificar SSL";
-$a->strings["If you wish, you can turn on strict certificate checking. This will mean you cannot connect (at all) to self-signed SSL sites."] = "Caso deseje, você pode habilitar a restrição de certificações. Isso significa que você não poderá conectar-se a nenhum site que use certificados auto-assinados.";
-$a->strings["Proxy user"] = "Usuário do proxy";
-$a->strings["Proxy URL"] = "URL do proxy";
-$a->strings["Network timeout"] = "Limite de tempo da rede";
-$a->strings["Value is in seconds. Set to 0 for unlimited (not recommended)."] = "Valor em segundos. Defina como 0 para ilimitado (não recomendado).";
-$a->strings["Delivery interval"] = "Intervalo de envio";
-$a->strings["Delay background delivery processes by this many seconds to reduce system load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 for large dedicated servers."] = "Postergue o processo de entrega em background por essa quantidade de segundos visando reduzir a carga do sistema. Recomendado: 4-5 para servidores compartilhados (shared hosts), 2-3 para servidores privados virtuais (VPS). 0-1 para grandes servidores dedicados.";
-$a->strings["Poll interval"] = "Intervalo da busca (polling)";
-$a->strings["Delay background polling processes by this many seconds to reduce system load. If 0, use delivery interval."] = "Postergue o processo de entrega em background por essa quantidade de segundos visando reduzir a carga do sistema. Se 0, use intervalo de entrega.";
-$a->strings["Maximum Load Average"] = "Média de Carga Máxima";
-$a->strings["Maximum system load before delivery and poll processes are deferred - default 50."] = "Carga do sistema máxima antes que os processos de entrega e busca sejam postergados - padrão 50.";
-$a->strings["Use MySQL full text engine"] = "Use o engine de texto completo (full text) do MySQL";
-$a->strings["Activates the full text engine. Speeds up search - but can only search for four and more characters."] = "Ativa a engine de texto completo (full text). Acelera a busca - mas só pode buscar apenas por 4 ou mais caracteres.";
-$a->strings["Suppress Language"] = "Retira idioma";
-$a->strings["Suppress language information in meta information about a posting."] = "Retira informações sobre idioma nas meta informações sobre uma publicação.";
-$a->strings["Suppress Tags"] = "";
-$a->strings["Suppress showing a list of hashtags at the end of the posting."] = "";
-$a->strings["Path to item cache"] = "Diretório do cache de item";
-$a->strings["Cache duration in seconds"] = "Duração do cache em segundos";
-$a->strings["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."] = "Por quanto tempo os arquivos de cache devem ser mantidos? O valor padrão é 86400 segundos (um dia). Para desativar o cache, defina o valor para -1.";
-$a->strings["Maximum numbers of comments per post"] = "O número máximo de comentários por post";
-$a->strings["How much comments should be shown for each post? Default value is 100."] = "Quanto comentários devem ser mostradas em cada post? O valor padrão é 100.";
-$a->strings["Path for lock file"] = "Diretório do arquivo de trava";
-$a->strings["Temp path"] = "Diretório Temp";
-$a->strings["Base path to installation"] = "Diretório base para instalação";
-$a->strings["Disable picture proxy"] = "Disabilitar proxy de imagem";
-$a->strings["The picture proxy increases performance and privacy. It shouldn't be used on systems with very low bandwith."] = "O proxy de imagem aumenta o desempenho e privacidade. Ele não deve ser usado em sistemas com largura de banda muito baixa.";
-$a->strings["Enable old style pager"] = "";
-$a->strings["The old style pager has page numbers but slows down massively the page speed."] = "";
-$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"] = "Nova URL base";
-$a->strings["Update has been marked successful"] = "A atualização foi marcada como bem sucedida";
-$a->strings["Database structure update %s was successfully applied."] = "A atualização da estrutura do banco de dados %s foi aplicada com sucesso.";
-$a->strings["Executing of database structure update %s failed with error: %s"] = "A execução da atualização da estrutura do banco de dados %s falhou com o erro: %s";
-$a->strings["Executing %s failed with error: %s"] = "A execução de %s falhou com erro: %s";
-$a->strings["Update %s was successfully applied."] = "A atualização %s foi aplicada com sucesso.";
-$a->strings["Update %s did not return a status. Unknown if it succeeded."] = "Atualizar %s não retornou um status. Desconhecido se ele teve sucesso.";
-$a->strings["There was no additional update function %s that needed to be called."] = "Não havia nenhuma função de atualização %s adicional que precisava ser chamada.";
-$a->strings["No failed updates."] = "Nenhuma atualização com falha.";
-$a->strings["Check database structure"] = "Verifique a estrutura do banco de dados";
-$a->strings["Failed Updates"] = "Atualizações com falha";
-$a->strings["This does not include updates prior to 1139, which did not return a status."] = "Isso não inclue atualizações antes da 1139, as quais não retornavam um status.";
-$a->strings["Mark success (if update was manually applied)"] = "Marcar como bem sucedida (caso tenham sido aplicadas atualizações manuais)";
-$a->strings["Attempt to execute this update step automatically"] = "Tentar executar esse passo da atualização automaticamente";
-$a->strings["\n\t\t\tDear %1\$s,\n\t\t\t\tthe administrator of %2\$s has set up an account for you."] = "\n\t\t\tCaro %1\$s,\n\t\t\t\to administrador de %2\$s criou uma conta para você.";
-$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."] = "\n\t\t\tOs dados de login são os seguintes:\n\n\t\t\tLocal do Site:\t%1\$s\n\t\t\tNome de Login:\t\t%2\$s\n\t\t\tSenha:\t\t%3\$s\n\n\t\t\tVocê pode alterar sua senha na página de \"Configurações\" da sua conta após fazer o login.\n\n\t\t\tPor favor, dedique alguns minutos na página para rever as outras configurações da sua conta.\n\n\t\t\tTalvez você também queira incluir algumas informações básicas adicionais ao seu perfil padrão\n\t\t\t(na página de \"Perfis\") para que outras pessoas possam encontrá-lo com facilidade.\n\n\t\t\tRecomendamos que inclua seu nome completo, adicione uma foto do perfil,\n\t\t\tadicionar algumas \"palavras-chave\" (muito útil para fazer novas amizades) - e\n\t\t\ttalvez em que pais você mora; se você não quiser ser mais específico\n\t\t\tdo que isso.\n\n\t\t\tNós respeitamos plenamente seu direito à privacidade, e nenhum desses itens são necessários.\n\t\t\tSe você é novo por aqui e não conheço ninguém, eles podem ajuda-lo\n\t\t\ta fazer novas e interessantes amizades.\n\n\t\t\tObrigado e bem-vindo a %4\$s.";
-$a->strings["Registration details for %s"] = "Detalhes do registro de %s";
-$a->strings["%s user blocked/unblocked"] = array(
-       0 => "%s usuário bloqueado/desbloqueado",
-       1 => "%s usuários bloqueados/desbloqueados",
-);
-$a->strings["%s user deleted"] = array(
-       0 => "%s usuário excluído",
-       1 => "%s usuários excluídos",
-);
-$a->strings["User '%s' deleted"] = "O usuário '%s' foi excluído";
-$a->strings["User '%s' unblocked"] = "O usuário '%s' foi desbloqueado";
-$a->strings["User '%s' blocked"] = "O usuário '%s' foi bloqueado";
-$a->strings["Add User"] = "Adicionar usuário";
-$a->strings["select all"] = "selecionar todos";
-$a->strings["User registrations waiting for confirm"] = "Registros de usuário aguardando confirmação";
-$a->strings["User waiting for permanent deletion"] = "Usuário aguardando por fim permanente da conta.";
-$a->strings["Request date"] = "Solicitar data";
-$a->strings["Email"] = "E-mail";
-$a->strings["No registrations."] = "Nenhum registro.";
-$a->strings["Deny"] = "Negar";
-$a->strings["Site admin"] = "Administração do site";
-$a->strings["Account expired"] = "Conta expirou";
-$a->strings["New User"] = "Novo usuário";
-$a->strings["Register date"] = "Data de registro";
-$a->strings["Last login"] = "Última entrada";
-$a->strings["Last item"] = "Último item";
-$a->strings["Deleted since"] = "Apagado desde";
-$a->strings["Account"] = "Conta";
-$a->strings["Selected users will be deleted!\\n\\nEverything these users had posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "Os usuários selecionados serão excluídos!\\n\\nTudo o que estes usuários publicaram neste site será excluído permanentemente!\\n\\nDeseja continuar?";
-$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?"] = "O usuário {0} será excluído!\\n\\nTudo o que este usuário publicou neste site será permanentemente excluído!\\n\\nDeseja continuar?";
-$a->strings["Name of the new user."] = "Nome do novo usuários.";
-$a->strings["Nickname"] = "Apelido";
-$a->strings["Nickname of the new user."] = "Apelido para o novo usuário.";
-$a->strings["Email address of the new user."] = "Endereço de e-mail do novo usuário.";
-$a->strings["Plugin %s disabled."] = "O plugin %s foi desabilitado.";
-$a->strings["Plugin %s enabled."] = "O plugin %s foi habilitado.";
-$a->strings["Disable"] = "Desabilitar";
-$a->strings["Enable"] = "Habilitar";
-$a->strings["Toggle"] = "Alternar";
-$a->strings["Author: "] = "Autor: ";
-$a->strings["Maintainer: "] = "Mantenedor: ";
-$a->strings["No themes found."] = "Nenhum tema encontrado";
-$a->strings["Screenshot"] = "Captura de tela";
-$a->strings["[Experimental]"] = "[Esperimental]";
-$a->strings["[Unsupported]"] = "[Não suportado]";
-$a->strings["Log settings updated."] = "As configurações de relatórios foram atualizadas.";
-$a->strings["Clear"] = "Limpar";
-$a->strings["Enable Debugging"] = "Habilitar Debugging";
-$a->strings["Log file"] = "Arquivo do relatório";
-$a->strings["Must be writable by web server. Relative to your Friendica top-level directory."] = "O servidor web precisa ter permissão de escrita. Relativa ao diretório raiz do seu Friendica.";
-$a->strings["Log level"] = "Nível do relatório";
-$a->strings["Close"] = "Fechar";
-$a->strings["FTP Host"] = "Endereço do FTP";
-$a->strings["FTP Path"] = "Caminho do FTP";
-$a->strings["FTP User"] = "Usuário do FTP";
-$a->strings["FTP Password"] = "Senha do FTP";
-$a->strings["Search Results For:"] = "Resultados de Busca Por:";
-$a->strings["Remove term"] = "Remover o termo";
-$a->strings["Saved Searches"] = "Pesquisas salvas";
-$a->strings["add"] = "adicionar";
-$a->strings["Commented Order"] = "Ordem dos comentários";
-$a->strings["Sort by Comment Date"] = "Ordenar pela data do comentário";
-$a->strings["Posted Order"] = "Ordem das publicações";
-$a->strings["Sort by Post Date"] = "Ordenar pela data de publicação";
-$a->strings["Posts that mention or involve you"] = "Publicações que mencionem ou envolvam você";
-$a->strings["New"] = "Nova";
-$a->strings["Activity Stream - by date"] = "Fluxo de atividades - por data";
-$a->strings["Shared Links"] = "Links compartilhados";
-$a->strings["Interesting Links"] = "Links interessantes";
-$a->strings["Starred"] = "Destacada";
-$a->strings["Favourite Posts"] = "Publicações favoritas";
-$a->strings["Warning: This group contains %s member from an insecure network."] = array(
-       0 => "Aviso: Este grupo contém %s membro de uma rede insegura.",
-       1 => "Aviso: Este grupo contém %s membros de uma rede insegura.",
-);
-$a->strings["Private messages to this group are at risk of public disclosure."] = "Mensagens privadas para este grupo correm o risco de sofrerem divulgação pública.";
-$a->strings["No such group"] = "Este grupo não existe";
-$a->strings["Group is empty"] = "O grupo está vazio";
-$a->strings["Group: "] = "Grupo: ";
-$a->strings["Contact: "] = "Contato: ";
-$a->strings["Private messages to this person are at risk of public disclosure."] = "Mensagens privadas para esta pessoa correm o risco de sofrerem divulgação pública.";
-$a->strings["Invalid contact."] = "Contato inválido.";
-$a->strings["Friends of %s"] = "Amigos de %s";
-$a->strings["No friends to display."] = "Nenhum amigo para exibir.";
-$a->strings["Event title and start time are required."] = "O título do evento e a hora de início são obrigatórios.";
-$a->strings["l, F j"] = "l, F j";
-$a->strings["Edit event"] = "Editar o evento";
-$a->strings["link to source"] = "exibir a origem";
-$a->strings["Events"] = "Eventos";
-$a->strings["Create New Event"] = "Criar um novo evento";
-$a->strings["Previous"] = "Anterior";
-$a->strings["Next"] = "Próximo";
-$a->strings["hour:minute"] = "hora:minuto";
-$a->strings["Event details"] = "Detalhes do evento";
-$a->strings["Format is %s %s. Starting date and Title are required."] = "O formato é %s %s. O título e a data de início são obrigatórios.";
-$a->strings["Event Starts:"] = "Início do evento:";
-$a->strings["Required"] = "Obrigatório";
-$a->strings["Finish date/time is not known or not relevant"] = "A data/hora de término não é conhecida ou não é relevante";
-$a->strings["Event Finishes:"] = "Término do evento:";
-$a->strings["Adjust for viewer timezone"] = "Ajustar para o fuso horário do visualizador";
-$a->strings["Description:"] = "Descrição:";
-$a->strings["Location:"] = "Localização:";
-$a->strings["Title:"] = "Título:";
-$a->strings["Share this event"] = "Compartilhar este evento";
-$a->strings["Select"] = "Selecionar";
-$a->strings["View %s's profile @ %s"] = "Ver o perfil de %s @ %s";
-$a->strings["%s from %s"] = "%s de %s";
-$a->strings["View in context"] = "Ver no contexto";
-$a->strings["%d comment"] = array(
-       0 => "%d comentário",
-       1 => "%d comentários",
-);
-$a->strings["comment"] = array(
-       0 => "comentário",
-       1 => "comentários",
-);
-$a->strings["show more"] = "exibir mais";
-$a->strings["Private Message"] = "Mensagem privada";
-$a->strings["I like this (toggle)"] = "Eu gostei disso (alternar)";
-$a->strings["like"] = "gostei";
-$a->strings["I don't like this (toggle)"] = "Eu não gostei disso (alternar)";
-$a->strings["dislike"] = "desgostar";
-$a->strings["Share this"] = "Compartilhar isso";
-$a->strings["share"] = "compartilhar";
-$a->strings["This is you"] = "Este(a) é você";
-$a->strings["Comment"] = "Comentar";
-$a->strings["Bold"] = "Negrito";
-$a->strings["Italic"] = "Itálico";
-$a->strings["Underline"] = "Sublinhado";
-$a->strings["Quote"] = "Citação";
-$a->strings["Code"] = "Código";
-$a->strings["Image"] = "Imagem";
-$a->strings["Link"] = "Link";
-$a->strings["Video"] = "Vídeo";
-$a->strings["Preview"] = "Pré-visualização";
-$a->strings["Edit"] = "Editar";
-$a->strings["add star"] = "destacar";
-$a->strings["remove star"] = "remover o destaque";
-$a->strings["toggle star status"] = "ativa/desativa o destaque";
-$a->strings["starred"] = "marcado com estrela";
-$a->strings["add tag"] = "adicionar etiqueta";
-$a->strings["save to folder"] = "salvar na pasta";
-$a->strings["to"] = "para";
-$a->strings["Wall-to-Wall"] = "Mural-para-mural";
-$a->strings["via Wall-To-Wall:"] = "via Mural-para-mural";
-$a->strings["Remove My Account"] = "Remover minha conta";
-$a->strings["This will completely remove your account. Once this has been done it is not recoverable."] = "Isso removerá completamente a sua conta. Uma vez feito isso, não será mais possível recuperá-la.";
-$a->strings["Please enter your password for verification:"] = "Por favor, digite a sua senha para verificação:";
-$a->strings["Friendica Communications Server - Setup"] = "Servidor de Comunicações Friendica - Configuração";
-$a->strings["Could not connect to database."] = "Não foi possível conectar ao banco de dados.";
-$a->strings["Could not create table."] = "Não foi possível criar tabela.";
-$a->strings["Your Friendica site database has been installed."] = "O banco de dados do seu site Friendica foi instalado.";
-$a->strings["You may need to import the file \"database.sql\" manually using phpmyadmin or mysql."] = "Você provavelmente precisará importar o arquivo \"database.sql\" manualmente, usando o phpmyadmin ou o mysql.";
-$a->strings["Please see the file \"INSTALL.txt\"."] = "Por favor, dê uma olhada no arquivo \"INSTALL.TXT\".";
-$a->strings["System check"] = "Checagem do sistema";
-$a->strings["Check again"] = "Checar novamente";
-$a->strings["Database connection"] = "Conexão de banco de dados";
-$a->strings["In order to install Friendica we need to know how to connect to your database."] = "À fim de instalar o Friendica, você precisa saber como se conectar ao seu banco de dados.";
-$a->strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Por favor, entre em contato com a sua hospedagem ou com o administrador do site caso você tenha alguma dúvida em relação a essas configurações.";
-$a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "O banco de dados que você especificou abaixo já deve existir. Caso contrário, por favor crie-o antes de continuar.";
-$a->strings["Database Server Name"] = "Nome do servidor de banco de dados";
-$a->strings["Database Login Name"] = "Nome do usuário do banco de dados";
-$a->strings["Database Login Password"] = "Senha do usuário do banco de dados";
-$a->strings["Database Name"] = "Nome do banco de dados";
-$a->strings["Site administrator email address"] = "Endereço de email do administrador do site";
-$a->strings["Your account email address must match this in order to use the web admin panel."] = "O endereço de email da sua conta deve ser igual a este para que você possa utilizar o painel de administração web.";
-$a->strings["Please select a default timezone for your website"] = "Por favor, selecione o fuso horário padrão para o seu site";
-$a->strings["Site settings"] = "Configurações do site";
-$a->strings["Could not find a command line version of PHP in the web server PATH."] = "Não foi possível encontrar uma versão de linha de comando do PHP nos caminhos do seu servidor web.";
-$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 <a href='http://friendica.com/node/27'>'Activating scheduled tasks'</a>"] = "Caso você não tenha uma versão de linha de comando do PHP instalado no seu servidor, você não será capaz de executar a captação em segundo plano. Dê uma olhada em <a href='http://friendica.com/node/27'>'Activating scheduled tasks'</a>";
-$a->strings["PHP executable path"] = "Caminho para o executável do PhP";
-$a->strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "Digite o caminho completo do executável PHP. Você pode deixar isso em branco para continuar com a instalação.";
-$a->strings["Command line PHP"] = "PHP em linha de comando";
-$a->strings["PHP executable is not the php cli binary (could be cgi-fgci version)"] = "O executável do PHP não é o binário do php cli (could be cgi-fcgi version)";
-$a->strings["Found PHP version: "] = "Encontrado PHP versão:";
-$a->strings["PHP cli binary"] = "Binário cli do PHP";
-$a->strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "\"register_argc_argv\" não está habilitado na versão de linha de comando do PHP no seu sistema.";
-$a->strings["This is required for message delivery to work."] = "Isto é necessário para o funcionamento do envio de mensagens.";
-$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"] = "Erro: a função \"openssl_pkey_new\" no seu sistema não é capaz de gerar as chaves de criptografia";
-$a->strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "Se estiver usando o Windows, por favor dê uma olhada em \"http://www.php.net/manual/en/openssl.installation.php\".";
-$a->strings["Generate encryption keys"] = "Gerar chaves de encriptação";
-$a->strings["libCurl PHP module"] = "Módulo PHP libCurl";
-$a->strings["GD graphics PHP module"] = "Módulo PHP GD graphics";
-$a->strings["OpenSSL PHP module"] = "Módulo PHP OpenSSL";
-$a->strings["mysqli PHP module"] = "Módulo PHP mysqli";
-$a->strings["mb_string PHP module"] = "Módulo PHP mb_string ";
-$a->strings["Apache mod_rewrite module"] = "Módulo mod_rewrite do Apache";
-$a->strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Erro: o módulo mod-rewrite do Apache é necessário, mas não está instalado.";
-$a->strings["Error: libCURL PHP module required but not installed."] = "Erro: o módulo libCURL do PHP é necessário, mas não está instalado.";
-$a->strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Erro: o módulo gráfico GD, com suporte a JPEG, do PHP é necessário, mas não está instalado.";
-$a->strings["Error: openssl PHP module required but not installed."] = "Erro: o módulo openssl do PHP é necessário, mas não está instalado.";
-$a->strings["Error: mysqli PHP module required but not installed."] = "Erro: o módulo mysqli do PHP é necessário, mas não está instalado.";
-$a->strings["Error: mb_string PHP module required but not installed."] = "Erro: o módulo mb_string PHP é necessário, mas não está instalado.";
-$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."] = "O instalador web precisa criar um arquivo chamado \".htconfig.php\" na pasta raiz da instalação e não está conseguindo.";
-$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."] = "Geralmente isso está relacionado às definições de permissão, uma vez que o servidor web pode não estar conseguindo escrever os arquivos nesta pasta.";
-$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."] = "Ao final desse procedimento, será fornecido um texto que deverá ser salvo em um arquivo de nome. htconfig.php, na pasta raiz da instalação do seu Friendica.";
-$a->strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"INSTALL.txt\" for instructions."] = "Você também pode pular esse procedimento e executar uma instalação manual. Por favor, dê uma olhada no arquivo \"INSTALL.TXT\" para instruções.";
-$a->strings[".htconfig.php is writable"] = ".htconfig.php tem permissão de escrita";
-$a->strings["Friendica uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "Friendica usa o engine de template Smarty3 para renderizar suas web views. Smarty3 compila templates para PHP para acelerar a renderização.";
-$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."] = "Para guardar os templates compilados, o servidor web necessita de permissão de escrita no diretório view/smarty3/ no diretório raíz do Friendica.";
-$a->strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "Favor se certificar que o usuário sob o qual o servidor web roda (ex: www-data) tenha permissão de escrita nesse diretório.";
-$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."] = "Nota: como uma medida de segurança, você deve fornecer ao servidor web permissão de escrita em view/smarty3/ somente--não aos arquivos de template (.tpl) que ele contém.";
-$a->strings["view/smarty3 is writable"] = "view/smarty3 tem escrita permitida";
-$a->strings["Url rewrite in .htaccess is not working. Check your server configuration."] = "A reescrita de URLs definida no .htaccess não está funcionando. Por favor, verifique as configurações do seu servidor.";
-$a->strings["Url rewrite is working"] = "A reescrita de URLs está funcionando";
-$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."] = "Não foi possível gravar o arquivo de configuração \".htconfig.php\". Por favor, use o texto incluso para criar um arquivo de configuração na raiz da instalação do Friendika em seu servidor web.";
-$a->strings["<h1>What next</h1>"] = "<h1>A seguir</h1>";
-$a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "IMPORTANTE: Você deve configurar [manualmente] uma tarefa agendada para o captador.";
-$a->strings["Number of daily wall messages for %s exceeded. Message failed."] = "O número diário de mensagens do mural de %s foi excedido. Não foi possível enviar a mensagem.";
-$a->strings["Unable to check your home location."] = "Não foi possível verificar a sua localização.";
-$a->strings["No recipient."] = "Nenhum destinatário.";
-$a->strings["If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders."] = "Caso você deseje uma resposta de %s, por favor verifique se as configurações de privacidade em seu site permitem o recebimento de mensagens de remetentes desconhecidos.";
-$a->strings["Help:"] = "Ajuda:";
-$a->strings["Help"] = "Ajuda";
-$a->strings["Not Found"] = "Não encontrada";
-$a->strings["Page not found."] = "Página não encontrada.";
-$a->strings["%1\$s welcomes %2\$s"] = "%1\$s dá as boas vinda à %2\$s";
-$a->strings["Welcome to %s"] = "Bem-vindo(a) a %s";
-$a->strings["Sorry, maybe your upload is bigger than the PHP configuration allows"] = "Lamento, talvez seu envio seja maior do que as configurações do PHP permitem";
-$a->strings["Or - did you try to upload an empty file?"] = "Ou - você tentou enviar um arquivo vazio?";
-$a->strings["File exceeds size limit of %d"] = "O arquivo excedeu o tamanho limite de %d";
-$a->strings["File upload failed."] = "Não foi possível enviar o arquivo.";
-$a->strings["Profile Match"] = "Correspondência de perfil";
-$a->strings["No keywords to match. Please add keywords to your default profile."] = "Não foi encontrada nenhuma palavra-chave associada a você. Por favor, adicione algumas ao seu perfil padrão.";
-$a->strings["is interested in:"] = "se interessa por:";
-$a->strings["Connect"] = "Conectar";
-$a->strings["link"] = "ligação";
-$a->strings["Not available."] = "Não disponível.";
-$a->strings["Community"] = "Comunidade";
-$a->strings["No results."] = "Nenhum resultado.";
-$a->strings["everybody"] = "todos";
-$a->strings["Additional features"] = "Funcionalidades adicionais";
-$a->strings["Display"] = "Tela";
-$a->strings["Social Networks"] = "Redes Sociais";
-$a->strings["Delegations"] = "Delegações";
-$a->strings["Connected apps"] = "Aplicações conectadas";
-$a->strings["Export personal data"] = "Exportar dados pessoais";
-$a->strings["Remove account"] = "Remover a conta";
-$a->strings["Missing some important data!"] = "Está faltando algum dado importante!";
-$a->strings["Failed to connect with email account using the settings provided."] = "Não foi possível conectar à conta de e-mail com as configurações fornecidas.";
-$a->strings["Email settings updated."] = "As configurações de e-mail foram atualizadas.";
-$a->strings["Features updated"] = "Funcionalidades atualizadas";
-$a->strings["Relocate message has been send to your contacts"] = "A mensagem de relocação foi enviada para seus contatos";
-$a->strings["Passwords do not match. Password unchanged."] = "As senhas não correspondem. A senha não foi modificada.";
-$a->strings["Empty passwords are not allowed. Password unchanged."] = "Não é permitido uma senha em branco. A senha não foi modificada.";
-$a->strings["Wrong password."] = "Senha errada.";
-$a->strings["Password changed."] = "A senha foi modificada.";
-$a->strings["Password update failed. Please try again."] = "Não foi possível atualizar a senha. Por favor, tente novamente.";
-$a->strings[" Please use a shorter name."] = " Por favor, use um nome mais curto.";
-$a->strings[" Name too short."] = " O nome é muito curto.";
-$a->strings["Wrong Password"] = "Senha Errada";
-$a->strings[" Not valid email."] = " Não é um e-mail válido.";
-$a->strings[" Cannot change to that email."] = " Não foi possível alterar para esse e-mail.";
-$a->strings["Private forum has no privacy permissions. Using default privacy group."] = "O fórum privado não possui permissões de privacidade. Utilizando o grupo de privacidade padrão.";
-$a->strings["Private forum has no privacy permissions and no default privacy group."] = "O fórum privado não possui permissões de privacidade e nenhum grupo de privacidade padrão.";
-$a->strings["Settings updated."] = "As configurações foram atualizadas.";
-$a->strings["Add application"] = "Adicionar aplicação";
-$a->strings["Consumer Key"] = "Chave do consumidor";
-$a->strings["Consumer Secret"] = "Segredo do consumidor";
-$a->strings["Redirect"] = "Redirecionar";
-$a->strings["Icon url"] = "URL do ícone";
-$a->strings["You can't edit this application."] = "Você não pode editar esta aplicação.";
-$a->strings["Connected Apps"] = "Aplicações conectadas";
-$a->strings["Client key starts with"] = "A chave do cliente inicia com";
-$a->strings["No name"] = "Sem nome";
-$a->strings["Remove authorization"] = "Remover autorização";
-$a->strings["No Plugin settings configured"] = "Não foi definida nenhuma configuração de plugin";
-$a->strings["Plugin Settings"] = "Configurações do plugin";
-$a->strings["Off"] = "Off";
-$a->strings["On"] = "On";
-$a->strings["Additional Features"] = "Funcionalidades Adicionais";
-$a->strings["Built-in support for %s connectivity is %s"] = "O suporte interno para conectividade de %s está %s";
-$a->strings["Diaspora"] = "Diaspora";
-$a->strings["enabled"] = "habilitado";
-$a->strings["disabled"] = "desabilitado";
-$a->strings["StatusNet"] = "StatusNet";
-$a->strings["Email access is disabled on this site."] = "O acesso ao e-mail está desabilitado neste site.";
-$a->strings["Email/Mailbox Setup"] = "Configurações do e-mail/caixa postal";
-$a->strings["If you wish to communicate with email contacts using this service (optional), please specify how to connect to your mailbox."] = "Caso você deseje se comunicar com contatos de e-mail usando este serviço (opcional), por favor especifique como se conectar à sua caixa postal.";
-$a->strings["Last successful email check:"] = "Última checagem bem sucedida de e-mail:";
-$a->strings["IMAP server name:"] = "Nome do servidor IMAP:";
-$a->strings["IMAP port:"] = "Porta do IMAP:";
-$a->strings["Security:"] = "Segurança:";
-$a->strings["None"] = "Nenhuma";
-$a->strings["Email login name:"] = "Nome de usuário do e-mail:";
-$a->strings["Email password:"] = "Senha do e-mail:";
-$a->strings["Reply-to address:"] = "Endereço de resposta (Reply-to):";
-$a->strings["Send public posts to all email contacts:"] = "Enviar publicações públicas para todos os contatos de e-mail:";
-$a->strings["Action after import:"] = "Ação após a importação:";
-$a->strings["Mark as seen"] = "Marcar como visto";
-$a->strings["Move to folder"] = "Mover para pasta";
-$a->strings["Move to folder:"] = "Mover para pasta:";
-$a->strings["Display Settings"] = "Configurações de exibição";
-$a->strings["Display Theme:"] = "Tema do perfil:";
-$a->strings["Mobile Theme:"] = "Tema para dispositivos móveis:";
-$a->strings["Update browser every xx seconds"] = "Atualizar o navegador a cada xx segundos";
-$a->strings["Minimum of 10 seconds, no maximum"] = "Mínimo de 10 segundos, não possui máximo";
-$a->strings["Number of items to display per page:"] = "Número de itens a serem exibidos por página:";
-$a->strings["Maximum of 100 items"] = "Máximo de 100 itens";
-$a->strings["Number of items to display per page when viewed from mobile device:"] = "Número de itens a serem exibidos por página quando visualizando em um dispositivo móvel:";
-$a->strings["Don't show emoticons"] = "Não exibir emoticons";
-$a->strings["Don't show notices"] = "Não mostra avisos";
-$a->strings["Infinite scroll"] = "rolamento infinito";
-$a->strings["Automatic updates only at the top of the network page"] = "Atualizações automáticas só na parte superior da página da rede";
-$a->strings["User Types"] = "Tipos de Usuários";
-$a->strings["Community Types"] = "Tipos de Comunidades";
-$a->strings["Normal Account Page"] = "Página de conta normal";
-$a->strings["This account is a normal personal profile"] = "Essa conta é um perfil pessoal normal";
-$a->strings["Soapbox Page"] = "Página de vitrine";
-$a->strings["Automatically approve all connection/friend requests as read-only fans"] = "Aprova automaticamente todas as solicitações de conexão/amizade como fãs com permissão somente de leitura";
-$a->strings["Community Forum/Celebrity Account"] = "Conta de fórum de comunidade/celebridade";
-$a->strings["Automatically approve all connection/friend requests as read-write fans"] = "Aprova automaticamente todas as solicitações de conexão/amizade como fãs com permissão de leitura e escrita";
-$a->strings["Automatic Friend Page"] = "Página de amigo automático";
-$a->strings["Automatically approve all connection/friend requests as friends"] = "Aprovar automaticamente todas as solicitações de conexão/amizade como amigos";
-$a->strings["Private Forum [Experimental]"] = "Fórum privado [Experimental]";
-$a->strings["Private forum - approved members only"] = "Fórum privado - somente membros aprovados";
-$a->strings["OpenID:"] = "OpenID:";
-$a->strings["(Optional) Allow this OpenID to login to this account."] = "(Opcional) Permitir o uso deste OpenID para entrar nesta conta";
-$a->strings["Publish your default profile in your local site directory?"] = "Publicar o seu perfil padrão no diretório local do seu site?";
-$a->strings["No"] = "Não";
-$a->strings["Publish your default profile in the global social directory?"] = "Publicar o seu perfil padrão no diretório social global?";
-$a->strings["Hide your contact/friend list from viewers of your default profile?"] = "Ocultar visualização da sua lista de contatos/amigos no seu perfil padrão? ";
-$a->strings["Hide your profile details from unknown viewers?"] = "Ocultar os detalhes do seu perfil para pessoas desconhecidas?";
-$a->strings["If enabled, posting public messages to Diaspora and other networks isn't possible."] = "Se ativado, postar mensagens públicas no Diáspora e em outras redes não será possível.";
-$a->strings["Allow friends to post to your profile page?"] = "Permitir aos amigos publicarem na sua página de perfil?";
-$a->strings["Allow friends to tag your posts?"] = "Permitir aos amigos etiquetarem suas publicações?";
-$a->strings["Allow us to suggest you as a potential friend to new members?"] = "Permitir que você seja sugerido como amigo em potencial para novos membros?";
-$a->strings["Permit unknown people to send you private mail?"] = "Permitir que pessoas desconhecidas lhe enviem mensagens privadas?";
-$a->strings["Profile is <strong>not published</strong>."] = "O perfil <strong>não está publicado</strong>.";
-$a->strings["Your Identity Address is"] = "O endereço da sua identidade é";
-$a->strings["Automatically expire posts after this many days:"] = "Expirar automaticamente publicações após tantos dias:";
-$a->strings["If empty, posts will not expire. Expired posts will be deleted"] = "Se deixado em branco, as publicações não irão expirar. Publicações expiradas serão excluídas.";
-$a->strings["Advanced expiration settings"] = "Configurações avançadas de expiração";
-$a->strings["Advanced Expiration"] = "Expiração avançada";
-$a->strings["Expire posts:"] = "Expirar publicações:";
-$a->strings["Expire personal notes:"] = "Expirar notas pessoais:";
-$a->strings["Expire starred posts:"] = "Expirar publicações destacadas:";
-$a->strings["Expire photos:"] = "Expirar fotos:";
-$a->strings["Only expire posts by others:"] = "Expirar somente as publicações de outras pessoas:";
-$a->strings["Account Settings"] = "Configurações da conta";
-$a->strings["Password Settings"] = "Configurações da senha";
-$a->strings["New Password:"] = "Nova senha:";
-$a->strings["Confirm:"] = "Confirme:";
-$a->strings["Leave password fields blank unless changing"] = "Deixe os campos de senha em branco, a não ser que você queira alterá-la";
-$a->strings["Current Password:"] = "Senha Atual:";
-$a->strings["Your current password to confirm the changes"] = "Sua senha atual para confirmar as mudanças";
-$a->strings["Password:"] = "Senha:";
-$a->strings["Basic Settings"] = "Configurações básicas";
-$a->strings["Full Name:"] = "Nome completo:";
-$a->strings["Email Address:"] = "Endereço de e-mail:";
-$a->strings["Your Timezone:"] = "Seu fuso horário:";
-$a->strings["Default Post Location:"] = "Localização padrão de suas publicações:";
-$a->strings["Use Browser Location:"] = "Usar localizador do navegador:";
-$a->strings["Security and Privacy Settings"] = "Configurações de segurança e privacidade";
-$a->strings["Maximum Friend Requests/Day:"] = "Número máximo de requisições de amizade por dia:";
-$a->strings["(to prevent spam abuse)"] = "(para prevenir abuso de spammers)";
-$a->strings["Default Post Permissions"] = "Permissões padrão de publicação";
-$a->strings["(click to open/close)"] = "(clique para abrir/fechar)";
-$a->strings["Show to Groups"] = "Mostre para Grupos";
-$a->strings["Show to Contacts"] = "Mostre para Contatos";
-$a->strings["Default Private Post"] = "Publicação Privada Padrão";
-$a->strings["Default Public Post"] = "Publicação Pública Padrão";
-$a->strings["Default Permissions for New Posts"] = "Permissões Padrão para Publicações Novas";
-$a->strings["Maximum private messages per day from unknown people:"] = "Número máximo de mensagens privadas de pessoas desconhecidas, por dia:";
-$a->strings["Notification Settings"] = "Configurações de notificação";
-$a->strings["By default post a status message when:"] = "Por padrão, publicar uma mensagem de status quando:";
-$a->strings["accepting a friend request"] = "aceitar uma requisição de amizade";
-$a->strings["joining a forum/community"] = "associar-se a um fórum/comunidade";
-$a->strings["making an <em>interesting</em> profile change"] = "fazer uma modificação <em>interessante</em> em seu perfil";
-$a->strings["Send a notification email when:"] = "Enviar um e-mail de notificação sempre que:";
-$a->strings["You receive an introduction"] = "Você recebeu uma apresentação";
-$a->strings["Your introductions are confirmed"] = "Suas apresentações forem confirmadas";
-$a->strings["Someone writes on your profile wall"] = "Alguém escrever no mural do seu perfil";
-$a->strings["Someone writes a followup comment"] = "Alguém comentar a sua mensagem";
-$a->strings["You receive a private message"] = "Você recebeu uma mensagem privada";
-$a->strings["You receive a friend suggestion"] = "Você recebe uma suggestão de amigo";
-$a->strings["You are tagged in a post"] = "Você foi etiquetado em uma publicação";
-$a->strings["You are poked/prodded/etc. in a post"] = "Você está cutucado/incitado/etc. em uma publicação";
-$a->strings["Text-only notification emails"] = "Emails de notificação apenas de texto";
-$a->strings["Send text only notification emails, without the html part"] = "Enviar e-mails de notificação apenas de texto, sem a parte html";
-$a->strings["Advanced Account/Page Type Settings"] = "Conta avançada/Configurações do tipo de página";
-$a->strings["Change the behaviour of this account for special situations"] = "Modificar o comportamento desta conta em situações especiais";
-$a->strings["Relocate"] = "Relocação";
-$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."] = "Se você moveu esse perfil de outro servidor e algum dos seus contatos não recebe atualizações, pressione esse botão.";
-$a->strings["Resend relocate message to contacts"] = "Reenviar mensagem de relocação para os contatos";
-$a->strings["This introduction has already been accepted."] = "Esta apresentação já foi aceita.";
-$a->strings["Profile location is not valid or does not contain profile information."] = "A localização do perfil não é válida ou não contém uma informação de perfil.";
-$a->strings["Warning: profile location has no identifiable owner name."] = "Aviso: a localização do perfil não possui nenhum nome identificável do seu dono.";
-$a->strings["Warning: profile location has no profile photo."] = "Aviso: a localização do perfil não possui nenhuma foto do perfil.";
-$a->strings["%d required parameter was not found at the given location"] = array(
-       0 => "O parâmetro requerido %d não foi encontrado na localização fornecida",
-       1 => "Os parâmetros requeridos %d não foram encontrados na localização fornecida",
-);
-$a->strings["Introduction complete."] = "A apresentação foi finalizada.";
-$a->strings["Unrecoverable protocol error."] = "Ocorreu um erro irrecuperável de protocolo.";
-$a->strings["Profile unavailable."] = "O perfil não está disponível.";
-$a->strings["%s has received too many connection requests today."] = "%s recebeu solicitações de conexão em excesso hoje.";
-$a->strings["Spam protection measures have been invoked."] = "As medidas de proteção contra spam foram ativadas.";
-$a->strings["Friends are advised to please try again in 24 hours."] = "Os amigos foram notificados para tentar novamente em 24 horas.";
-$a->strings["Invalid locator"] = "Localizador inválido";
-$a->strings["Invalid email address."] = "Endereço de e-mail inválido.";
-$a->strings["This account has not been configured for email. Request failed."] = "Essa conta não foi configurada para e-mails. Não foi possível atender à solicitação.";
-$a->strings["Unable to resolve your name at the provided location."] = "Não foi possível encontrar a sua identificação no endereço indicado.";
-$a->strings["You have already introduced yourself here."] = "Você já fez a sua apresentação aqui.";
-$a->strings["Apparently you are already friends with %s."] = "Aparentemente você já é amigo de %s.";
-$a->strings["Invalid profile URL."] = "URL de perfil inválida.";
-$a->strings["Disallowed profile URL."] = "URL de perfil não permitida.";
-$a->strings["Your introduction has been sent."] = "A sua apresentação foi enviada.";
-$a->strings["Please login to confirm introduction."] = "Por favor, autentique-se para confirmar a apresentação.";
-$a->strings["Incorrect identity currently logged in. Please login to <strong>this</strong> profile."] = "A identidade autenticada está incorreta. Por favor, entre como <strong>este</strong> perfil.";
-$a->strings["Hide this contact"] = "Ocultar este contato";
-$a->strings["Welcome home %s."] = "Bem-vindo(a) à sua página pessoal %s.";
-$a->strings["Please confirm your introduction/connection request to %s."] = "Por favor, confirme sua solicitação de apresentação/conexão para %s.";
-$a->strings["Confirm"] = "Confirmar";
-$a->strings["Please enter your 'Identity Address' from one of the following supported communications networks:"] = "Por favor, digite seu 'Endereço de Identificação' a partir de uma das seguintes redes de comunicação suportadas:";
-$a->strings["If you are not yet a member of the free social web, <a href=\"http://dir.friendica.com/siteinfo\">follow this link to find a public Friendica site and join us today</a>."] = "Caso você ainda não seja membro da rede social livre, <a href=\"http://dir.friendica.com/siteinfo\">clique aqui para encontrar um site Friendica público e junte-se à nós</a>.";
-$a->strings["Friend/Connection Request"] = "Solicitação de amizade/conexão";
-$a->strings["Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"] = "Examplos: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca";
-$a->strings["Please answer the following:"] = "Por favor, entre com as informações solicitadas:";
-$a->strings["Does %s know you?"] = "%s conhece você?";
-$a->strings["Add a personal note:"] = "Adicione uma anotação pessoal:";
-$a->strings["Friendica"] = "Friendica";
-$a->strings["StatusNet/Federated Social Web"] = "StatusNet/Federated Social Web";
-$a->strings[" - please do not use this form.  Instead, enter %s into your Diaspora search bar."] = " - Por favor, não utilize esse formulário.  Ao invés disso, digite %s na sua barra de pesquisa do Diaspora.";
-$a->strings["Your Identity Address:"] = "Seu endereço de identificação:";
-$a->strings["Submit Request"] = "Enviar solicitação";
-$a->strings["Registration successful. Please check your email for further instructions."] = "O registro foi bem sucedido. Por favor, verifique seu e-mail para maiores informações.";
-$a->strings["Failed to send email message. Here your accout details:<br> login: %s<br> password: %s<br><br>You can change your password after login."] = "Falha ao enviar mensagem de email. Estes são os dados da sua conta:<br> login: %s<br> senha: %s<br><br>Você pode alterar sua senha após fazer o login.";
-$a->strings["Your registration can not be processed."] = "Não foi possível processar o seu registro.";
-$a->strings["Your registration is pending approval by the site owner."] = "A aprovação do seu registro está pendente junto ao administrador do site.";
-$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Este site excedeu o limite diário permitido para registros de novas contas.\nPor favor tente novamente amanhã.";
-$a->strings["You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking 'Register'."] = "Você pode (opcionalmente) preencher este formulário via OpenID, fornecendo seu OpenID e clicando em 'Registrar'.";
-$a->strings["If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items."] = "Se você não está familiarizado com o OpenID, por favor, deixe esse campo em branco e preencha os outros itens.";
-$a->strings["Your OpenID (optional): "] = "Seu OpenID (opcional): ";
-$a->strings["Include your profile in member directory?"] = "Incluir o seu perfil no diretório de membros?";
-$a->strings["Membership on this site is by invitation only."] = "A associação a este site só pode ser feita mediante convite.";
-$a->strings["Your invitation ID: "] = "A ID do seu convite: ";
-$a->strings["Your Full Name (e.g. Joe Smith): "] = "Seu nome completo (ex: José da Silva): ";
-$a->strings["Your Email Address: "] = "Seu endereço de e-mail: ";
-$a->strings["Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be '<strong>nickname@\$sitename</strong>'."] = "Selecione uma identificação para o perfil. Ela deve começar com um caractere alfabético. O endereço do seu perfil neste site será '<strong>identificação@\$sitename</strong>'";
-$a->strings["Choose a nickname: "] = "Escolha uma identificação: ";
-$a->strings["Register"] = "Registrar";
-$a->strings["Import"] = "Importar";
-$a->strings["Import your profile to this friendica instance"] = "Importa seu perfil  desta instância do friendica";
-$a->strings["System down for maintenance"] = "Sistema em manutenção";
-$a->strings["Search"] = "Pesquisar";
-$a->strings["Global Directory"] = "Diretório global";
-$a->strings["Find on this site"] = "Pesquisar neste site";
-$a->strings["Site Directory"] = "Diretório do site";
-$a->strings["Age: "] = "Idade: ";
-$a->strings["Gender: "] = "Gênero: ";
-$a->strings["Gender:"] = "Gênero:";
-$a->strings["Status:"] = "Situação:";
-$a->strings["Homepage:"] = "Página web:";
-$a->strings["About:"] = "Sobre:";
-$a->strings["No entries (some entries may be hidden)."] = "Nenhuma entrada (algumas entradas podem estar ocultas).";
-$a->strings["No potential page delegates located."] = "Nenhuma página delegada potencial localizada.";
-$a->strings["Delegate Page Management"] = "Delegar Administração de Página";
-$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."] = "Delegados podem administrar todos os aspectos dessa página/conta exceto por configurações básicas da conta.\nFavor não delegar sua conta pessoal para ninguém que você não confie inteiramente.";
-$a->strings["Existing Page Managers"] = "Administradores de Páginas Existentes";
-$a->strings["Existing Page Delegates"] = "Delegados de Páginas Existentes";
-$a->strings["Potential Delegates"] = "Delegados Potenciais";
-$a->strings["Add"] = "Adicionar";
-$a->strings["No entries."] = "Sem entradas.";
-$a->strings["Common Friends"] = "Amigos em Comum";
-$a->strings["No contacts in common."] = "Nenhum contato em comum.";
-$a->strings["Export account"] = "Exportar conta";
-$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."] = "Exporta suas informações de conta e contatos. Use para fazer uma cópia de segurança de sua conta e/ou para movê-la para outro servidor.";
-$a->strings["Export all"] = "Exportar tudo";
-$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)"] = "Exportar as informações de sua conta, contatos e todos os seus items como JSON. Pode ser um arquivo muito grande, e pode levar bastante tempo. Use isto para fazer uma cópia de segurança completa da sua conta (fotos não são exportadas)";
-$a->strings["%1\$s is currently %2\$s"] = "%1\$s atualmente está %2\$s";
-$a->strings["Mood"] = "Humor";
-$a->strings["Set your current mood and tell your friends"] = "Defina o seu humor e conte aos seus amigos";
-$a->strings["Do you really want to delete this suggestion?"] = "Você realmente deseja deletar essa sugestão?";
-$a->strings["Friend Suggestions"] = "Sugestões de amigos";
-$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Não existe nenhuma sugestão disponível. Se este for um site novo, por favor tente novamente em 24 horas.";
-$a->strings["Ignore/Hide"] = "Ignorar/Ocultar";
-$a->strings["Profile deleted."] = "O perfil foi excluído.";
-$a->strings["Profile-"] = "Perfil-";
-$a->strings["New profile created."] = "O novo perfil foi criado.";
-$a->strings["Profile unavailable to clone."] = "O perfil não está disponível para clonagem.";
-$a->strings["Profile Name is required."] = "É necessário informar o nome do perfil.";
-$a->strings["Marital Status"] = "Situação amorosa";
-$a->strings["Romantic Partner"] = "Parceiro romântico";
-$a->strings["Likes"] = "Gosta de";
-$a->strings["Dislikes"] = "Não gosta de";
-$a->strings["Work/Employment"] = "Trabalho/emprego";
-$a->strings["Religion"] = "Religião";
-$a->strings["Political Views"] = "Posicionamento político";
-$a->strings["Gender"] = "Gênero";
-$a->strings["Sexual Preference"] = "Preferência sexual";
-$a->strings["Homepage"] = "Página Principal";
-$a->strings["Interests"] = "Interesses";
-$a->strings["Address"] = "Endereço";
-$a->strings["Location"] = "Localização";
-$a->strings["Profile updated."] = "O perfil foi atualizado.";
-$a->strings[" and "] = " e ";
-$a->strings["public profile"] = "perfil público";
-$a->strings["%1\$s changed %2\$s to &ldquo;%3\$s&rdquo;"] = "%1\$s mudou %2\$s para &ldquo;%3\$s&rdquo;";
-$a->strings[" - Visit %1\$s's %2\$s"] = " - Visite %2\$s de %1\$s";
-$a->strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s foi atualizado %2\$s, mudando %3\$s.";
-$a->strings["Hide contacts and friends:"] = "Esconder contatos e amigos:";
-$a->strings["Hide your contact/friend list from viewers of this profile?"] = "Ocultar sua lista de contatos/amigos dos visitantes no seu perfil?";
-$a->strings["Edit Profile Details"] = "Editar os detalhes do perfil";
-$a->strings["Change Profile Photo"] = "Mudar Foto do Perfil";
-$a->strings["View this profile"] = "Ver este perfil";
-$a->strings["Create a new profile using these settings"] = "Criar um novo perfil usando estas configurações";
-$a->strings["Clone this profile"] = "Clonar este perfil";
-$a->strings["Delete this profile"] = "Excluir este perfil";
-$a->strings["Basic information"] = "Informação básica";
-$a->strings["Profile picture"] = "Foto do perfil";
-$a->strings["Preferences"] = "Preferências";
-$a->strings["Status information"] = "Informação de Status";
-$a->strings["Additional information"] = "Informações adicionais";
-$a->strings["Profile Name:"] = "Nome do perfil:";
-$a->strings["Your Full Name:"] = "Seu nome completo:";
-$a->strings["Title/Description:"] = "Título/Descrição:";
-$a->strings["Your Gender:"] = "Seu gênero:";
-$a->strings["Birthday (%s):"] = "Aniversário (%s):";
-$a->strings["Street Address:"] = "Endereço:";
-$a->strings["Locality/City:"] = "Localidade/Cidade:";
-$a->strings["Postal/Zip Code:"] = "CEP:";
-$a->strings["Country:"] = "País:";
-$a->strings["Region/State:"] = "Região/Estado:";
-$a->strings["<span class=\"heart\">&hearts;</span> Marital Status:"] = "<span class=\"heart\">&hearts;</span> Situação amorosa:";
-$a->strings["Who: (if applicable)"] = "Quem: (se pertinente)";
-$a->strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Exemplos: fulano123, Fulano de Tal, fulano@exemplo.com";
-$a->strings["Since [date]:"] = "Desde [data]:";
-$a->strings["Sexual Preference:"] = "Preferência sexual:";
-$a->strings["Homepage URL:"] = "Endereço do site web:";
-$a->strings["Hometown:"] = "Cidade:";
-$a->strings["Political Views:"] = "Posição política:";
-$a->strings["Religious Views:"] = "Orientação religiosa:";
-$a->strings["Public Keywords:"] = "Palavras-chave públicas:";
-$a->strings["Private Keywords:"] = "Palavras-chave privadas:";
-$a->strings["Likes:"] = "Gosta de:";
-$a->strings["Dislikes:"] = "Não gosta de:";
-$a->strings["Example: fishing photography software"] = "Exemplo: pesca fotografia software";
-$a->strings["(Used for suggesting potential friends, can be seen by others)"] = "(Usado para sugerir amigos em potencial, pode ser visto pelos outros)";
-$a->strings["(Used for searching profiles, never shown to others)"] = "(Usado na pesquisa de perfis, nunca é exibido para os outros)";
-$a->strings["Tell us about yourself..."] = "Fale um pouco sobre você...";
-$a->strings["Hobbies/Interests"] = "Passatempos/Interesses";
-$a->strings["Contact information and Social Networks"] = "Informações de contato e redes sociais";
-$a->strings["Musical interests"] = "Preferências musicais";
-$a->strings["Books, literature"] = "Livros, literatura";
-$a->strings["Television"] = "Televisão";
-$a->strings["Film/dance/culture/entertainment"] = "Filme/dança/cultura/entretenimento";
-$a->strings["Love/romance"] = "Amor/romance";
-$a->strings["Work/employment"] = "Trabalho/emprego";
-$a->strings["School/education"] = "Escola/educação";
-$a->strings["This is your <strong>public</strong> profile.<br />It <strong>may</strong> be visible to anybody using the internet."] = "Este é o seu perfil <strong>público</strong>.<br />Ele <strong>pode</strong> estar visível para qualquer um que acesse a Internet.";
-$a->strings["Edit/Manage Profiles"] = "Editar/Gerenciar perfis";
-$a->strings["Change profile photo"] = "Mudar a foto do perfil";
-$a->strings["Create New Profile"] = "Criar um novo perfil";
-$a->strings["Profile Image"] = "Imagem do perfil";
-$a->strings["visible to everybody"] = "visível para todos";
-$a->strings["Edit visibility"] = "Editar a visibilidade";
-$a->strings["Item not found"] = "O item não foi encontrado";
-$a->strings["Edit post"] = "Editar a publicação";
-$a->strings["upload photo"] = "upload de foto";
-$a->strings["Attach file"] = "Anexar arquivo";
-$a->strings["attach file"] = "anexar arquivo";
-$a->strings["web link"] = "link web";
-$a->strings["Insert video link"] = "Inserir link de vídeo";
-$a->strings["video link"] = "link de vídeo";
-$a->strings["Insert audio link"] = "Inserir link de áudio";
-$a->strings["audio link"] = "link de áudio";
-$a->strings["Set your location"] = "Definir sua localização";
-$a->strings["set location"] = "configure localização";
-$a->strings["Clear browser location"] = "Limpar a localização do navegador";
-$a->strings["clear location"] = "apague localização";
-$a->strings["Permission settings"] = "Configurações de permissão";
-$a->strings["CC: email addresses"] = "CC: endereço de e-mail";
-$a->strings["Public post"] = "Publicação pública";
-$a->strings["Set title"] = "Definir o título";
-$a->strings["Categories (comma-separated list)"] = "Categorias (lista separada por vírgulas)";
-$a->strings["Example: bob@example.com, mary@example.com"] = "Por exemplo: joao@exemplo.com, maria@exemplo.com";
-$a->strings["This is Friendica, version"] = "Este é o Friendica, versão";
-$a->strings["running at web location"] = "sendo executado no endereço web";
-$a->strings["Please visit <a href=\"http://friendica.com\">Friendica.com</a> to learn more about the Friendica project."] = "Por favor, visite <a href=\"http://friendica.com\">friendica.com</a> para aprender mais sobre o projeto Friendica.";
-$a->strings["Bug reports and issues: please visit"] = "Relatos e acompanhamentos de erros podem ser encontrados em";
-$a->strings["Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - dot com"] = "Sugestões, elogios, doações, etc. - favor enviar e-mail para \"Info\" arroba Friendica - ponto com";
-$a->strings["Installed plugins/addons/apps:"] = "Plugins/complementos/aplicações instaladas:";
-$a->strings["No installed plugins/addons/apps"] = "Nenhum plugin/complemento/aplicativo instalado";
-$a->strings["Authorize application connection"] = "Autorizar a conexão com a aplicação";
-$a->strings["Return to your app and insert this Securty Code:"] = "Volte para a sua aplicação e digite este código de segurança:";
-$a->strings["Please login to continue."] = "Por favor, autentique-se para continuar.";
-$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Deseja autorizar esta aplicação a acessar suas publicações e contatos e/ou criar novas publicações para você?";
-$a->strings["Remote privacy information not available."] = "Não existe informação disponível sobre a privacidade remota.";
-$a->strings["Visible to:"] = "Visível para:";
-$a->strings["Personal Notes"] = "Notas pessoais";
-$a->strings["l F d, Y \\@ g:i A"] = "l F d, Y \\@ H:i";
-$a->strings["Time Conversion"] = "Conversão de tempo";
-$a->strings["Friendica provides this service for sharing events with other networks and friends in unknown timezones."] = "Friendica provê esse serviço para compartilhar eventos com outras redes e amigos em fuso-horários desconhecidos.";
-$a->strings["UTC time: %s"] = "Hora UTC: %s";
-$a->strings["Current timezone: %s"] = "Fuso horário atual: %s";
-$a->strings["Converted localtime: %s"] = "Horário local convertido: %s";
-$a->strings["Please select your timezone:"] = "Por favor, selecione seu fuso horário:";
-$a->strings["Poke/Prod"] = "Cutucar/Incitar";
-$a->strings["poke, prod or do other things to somebody"] = "Cutuca, incita ou faz outras coisas com alguém";
-$a->strings["Recipient"] = "Destinatário";
-$a->strings["Choose what you wish to do to recipient"] = "Selecione o que você deseja fazer com o destinatário";
-$a->strings["Make this post private"] = "Fazer com que essa publicação se torne privada";
-$a->strings["Total invitation limit exceeded."] = "Limite de convites totais excedido.";
-$a->strings["%s : Not a valid email address."] = "%s : Não é um endereço de e-mail válido.";
-$a->strings["Please join us on Friendica"] = "Por favor, junte-se à nós na Friendica";
-$a->strings["Invitation limit exceeded. Please contact your site administrator."] = "Limite de convites ultrapassado. Favor contactar o administrador do sítio.";
-$a->strings["%s : Message delivery failed."] = "%s : Não foi possível enviar a mensagem.";
-$a->strings["%d message sent."] = array(
-       0 => "%d mensagem enviada.",
-       1 => "%d mensagens enviadas.",
-);
-$a->strings["You have no more invitations available"] = "Você não possui mais convites disponíveis";
-$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."] = "Visite %s para obter uma lista de sites públicos onde você pode se cadastrar. Membros da friendica podem se conectar, mesmo que estejam em sites separados. Além disso você também pode se conectar com membros de várias outras redes sociais.";
-$a->strings["To accept this invitation, please visit and register at %s or any other public Friendica website."] = "Para aceitar esse convite, por favor cadastre-se em %s ou qualquer outro site friendica público.";
-$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."] = "Os sites friendica estão todos interconectados para criar uma grande rede social com foco na privacidade e controlada por seus membros, que também podem se conectar com várias redes sociais tradicionais. Dê uma olhada em %s para uma lista de sites friendica onde você pode se cadastrar.";
-$a->strings["Our apologies. This system is not currently configured to connect with other public sites or invite members."] = "Desculpe, mas esse sistema não está configurado para conectar-se com outros sites públicos nem permite convidar novos membros.";
-$a->strings["Send invitations"] = "Enviar convites.";
-$a->strings["Enter email addresses, one per line:"] = "Digite os endereços de e-mail, um por linha:";
-$a->strings["You are cordially invited to join me and other close friends on Friendica - and help us to create a better social web."] = "Você está convidado a se juntar a mim e outros amigos em friendica - e também nos ajudar a criar uma experiência social melhor na web.";
-$a->strings["You will need to supply this invitation code: \$invite_code"] = "Você preciso informar este código de convite: \$invite_code";
-$a->strings["Once you have registered, please connect with me via my profile page at:"] = "Após você se registrar, por favor conecte-se comigo através da minha página de perfil em:";
-$a->strings["For more information about the Friendica project and why we feel it is important, please visit http://friendica.com"] = "Para mais informações sobre o projeto Friendica e porque nós achamos que ele é importante, por favor visite-nos em http://friendica.com.";
-$a->strings["Photo Albums"] = "Álbuns de fotos";
-$a->strings["Contact Photos"] = "Fotos dos contatos";
-$a->strings["Upload New Photos"] = "Enviar novas fotos";
-$a->strings["Contact information unavailable"] = "A informação de contato não está disponível";
-$a->strings["Album not found."] = "O álbum não foi encontrado.";
-$a->strings["Delete Album"] = "Excluir o álbum";
-$a->strings["Do you really want to delete this photo album and all its photos?"] = "Você realmente deseja deletar esse álbum de fotos e todas as suas fotos?";
-$a->strings["Delete Photo"] = "Excluir a foto";
-$a->strings["Do you really want to delete this photo?"] = "Você realmente deseja deletar essa foto?";
-$a->strings["%1\$s was tagged in %2\$s by %3\$s"] = "%1\$s foi marcado em %2\$s por %3\$s";
-$a->strings["a photo"] = "uma foto";
-$a->strings["Image exceeds size limit of "] = "A imagem excede o tamanho máximo de ";
-$a->strings["Image file is empty."] = "O arquivo de imagem está vazio.";
-$a->strings["No photos selected"] = "Não foi selecionada nenhuma foto";
-$a->strings["You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."] = "Você está usando %1$.2f Mbytes dos %2$.2f Mbytes liberados para armazenamento de fotos.";
-$a->strings["Upload Photos"] = "Enviar fotos";
-$a->strings["New album name: "] = "Nome do novo álbum: ";
-$a->strings["or existing album name: "] = "ou o nome de um álbum já existente: ";
-$a->strings["Do not show a status post for this upload"] = "Não exiba uma publicação de status para este envio";
-$a->strings["Permissions"] = "Permissões";
-$a->strings["Private Photo"] = "Foto Privada";
-$a->strings["Public Photo"] = "Foto Pública";
-$a->strings["Edit Album"] = "Editar o álbum";
-$a->strings["Show Newest First"] = "Exibir as mais recentes primeiro";
-$a->strings["Show Oldest First"] = "Exibir as mais antigas primeiro";
-$a->strings["View Photo"] = "Ver a foto";
-$a->strings["Permission denied. Access to this item may be restricted."] = "Permissão negada. O acesso a este item pode estar restrito.";
-$a->strings["Photo not available"] = "A foto não está disponível";
-$a->strings["View photo"] = "Ver a imagem";
-$a->strings["Edit photo"] = "Editar a foto";
-$a->strings["Use as profile photo"] = "Usar como uma foto de perfil";
-$a->strings["View Full Size"] = "Ver no tamanho real";
-$a->strings["Tags: "] = "Etiquetas: ";
-$a->strings["[Remove any tag]"] = "[Remover qualquer etiqueta]";
-$a->strings["Rotate CW (right)"] = "Rotacionar para direita";
-$a->strings["Rotate CCW (left)"] = "Rotacionar para esquerda";
-$a->strings["New album name"] = "Novo nome para o álbum";
-$a->strings["Caption"] = "Legenda";
-$a->strings["Add a Tag"] = "Adicionar uma etiqueta";
-$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"] = "Por exemplo: @joao, @Joao_da_Silva, @joao@exemplo.com, #Minas_Gerais, #acampamento";
-$a->strings["Private photo"] = "Foto privada";
-$a->strings["Public photo"] = "Foto pública";
-$a->strings["Share"] = "Compartilhar";
-$a->strings["Recent Photos"] = "Fotos recentes";
-$a->strings["Account approved."] = "A conta foi aprovada.";
-$a->strings["Registration revoked for %s"] = "O registro de %s foi revogado";
-$a->strings["Please login."] = "Por favor, autentique-se.";
-$a->strings["Move account"] = "Mover conta";
-$a->strings["You can import an account from another Friendica server."] = "Você pode importar um conta de outro sevidor Friendica.";
-$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."] = "Você precisa exportar sua conta de um servidor antigo e fazer o upload aqui. Nós recriaremos sua conta antiga aqui com todos os seus contatos. Nós também tentaremos informar seus amigos que você se mudou para cá.";
-$a->strings["This feature is experimental. We can't import contacts from the OStatus network (statusnet/identi.ca) or from Diaspora"] = "Esse recurso é experimental. Nós não podemos importar contatos de uma rede OStatus (statusnet/identi.ca) ou do Diaspora";
-$a->strings["Account file"] = "Arquivo de conta";
-$a->strings["To export your account, go to \"Settings->Export your personal data\" and select \"Export account\""] = "Para exportar a sua conta, entre em \"Configurações->Exportar dados pessoais\" e selecione \"Exportar conta\"";
-$a->strings["Item not available."] = "O item não está disponível.";
-$a->strings["Item was not found."] = "O item não foi encontrado.";
-$a->strings["Delete this item?"] = "Excluir este item?";
-$a->strings["show fewer"] = "exibir menos";
-$a->strings["Update %s failed. See error logs."] = "Atualização %s falhou. Vide registro de erros (log).";
-$a->strings["Create a New Account"] = "Criar uma nova conta";
-$a->strings["Logout"] = "Sair";
-$a->strings["Nickname or Email address: "] = "Identificação ou endereço de e-mail: ";
-$a->strings["Password: "] = "Senha: ";
-$a->strings["Remember me"] = "Lembre-se de mim";
-$a->strings["Or login using OpenID: "] = "Ou login usando OpendID:";
-$a->strings["Forgot your password?"] = "Esqueceu a sua senha?";
-$a->strings["Website Terms of Service"] = "Termos de Serviço do Website";
-$a->strings["terms of service"] = "termos de serviço";
-$a->strings["Website Privacy Policy"] = "Política de Privacidade do Website";
-$a->strings["privacy policy"] = "política de privacidade";
-$a->strings["Requested account is not available."] = "Conta solicitada não disponível";
-$a->strings["Edit profile"] = "Editar perfil";
-$a->strings["Message"] = "Mensagem";
-$a->strings["Profiles"] = "Perfis";
-$a->strings["Manage/edit profiles"] = "Gerenciar/editar perfis";
-$a->strings["Network:"] = "Rede:";
-$a->strings["g A l F d"] = "G l d F";
-$a->strings["F d"] = "F d";
-$a->strings["[today]"] = "[hoje]";
-$a->strings["Birthday Reminders"] = "Lembretes de aniversário";
-$a->strings["Birthdays this week:"] = "Aniversários nesta semana:";
-$a->strings["[No description]"] = "[Sem descrição]";
-$a->strings["Event Reminders"] = "Lembretes de eventos";
-$a->strings["Events this week:"] = "Eventos esta semana:";
-$a->strings["Status"] = "Status";
-$a->strings["Status Messages and Posts"] = "Mensagem de Estado (status) e Publicações";
-$a->strings["Profile Details"] = "Detalhe do Perfil";
-$a->strings["Videos"] = "Vídeos";
-$a->strings["Events and Calendar"] = "Eventos e Agenda";
-$a->strings["Only You Can See This"] = "Somente Você Pode Ver Isso";
-$a->strings["This entry was edited"] = "Essa entrada foi editada";
-$a->strings["ignore thread"] = "ignorar tópico";
-$a->strings["unignore thread"] = "deixar de ignorar tópico";
-$a->strings["toggle ignore status"] = "alternar status ignorar";
-$a->strings["ignored"] = "Ignorado";
-$a->strings["Categories:"] = "Categorias:";
-$a->strings["Filed under:"] = "Arquivado sob:";
-$a->strings["via"] = "via";
-$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."] = "\n\t\t\tOs desenvolvedores de Friendica lançaram recentemente uma atualização %s,\n\t\t\tmas quando tentei instalá-la, algo deu terrivelmente errado.\n\t\t\tIsso precisa ser corrigido em breve e eu não posso fazer isso sozinho. Por favor, contate um\n\t\t\tdesenvolvedor da Friendica se você não pode me ajudar sozinho. Meu banco de dados pode ser inválido.";
-$a->strings["The error message is\n[pre]%s[/pre]"] = "A mensagem de erro é\n[pre]%s[/pre]";
-$a->strings["Errors encountered creating database tables."] = "Foram encontrados erros durante a criação das tabelas do banco de dados.";
-$a->strings["Errors encountered performing database changes."] = "Erros encontrados realizando mudanças no banco de dados.";
-$a->strings["Logged out."] = "Saiu.";
-$a->strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "Foi encontrado um erro ao tentar conectar usando o OpenID que você forneceu. Por favor, verifique se sua ID está escrita corretamente.";
-$a->strings["The error message was:"] = "A mensagem de erro foi:";
-$a->strings["Add New Contact"] = "Adicionar Contato Novo";
-$a->strings["Enter address or web location"] = "Forneça endereço ou localização web";
-$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Por exemplo: joao@exemplo.com, http://exemplo.com/maria";
-$a->strings["%d invitation available"] = array(
-       0 => "%d convite disponível",
-       1 => "%d convites disponíveis",
-);
-$a->strings["Find People"] = "Pesquisar por pessoas";
-$a->strings["Enter name or interest"] = "Fornecer nome ou interesse";
-$a->strings["Connect/Follow"] = "Conectar-se/acompanhar";
-$a->strings["Examples: Robert Morgenstein, Fishing"] = "Examplos: Robert Morgenstein, Fishing";
-$a->strings["Similar Interests"] = "Interesses Parecidos";
-$a->strings["Random Profile"] = "Perfil Randômico";
-$a->strings["Invite Friends"] = "Convidar amigos";
-$a->strings["Networks"] = "Redes";
-$a->strings["All Networks"] = "Todas as redes";
-$a->strings["Saved Folders"] = "Pastas salvas";
-$a->strings["Everything"] = "Tudo";
-$a->strings["Categories"] = "Categorias";
-$a->strings["General Features"] = "Funcionalidades Gerais";
-$a->strings["Multiple Profiles"] = "Perfís Múltiplos";
-$a->strings["Ability to create multiple profiles"] = "Capacidade de criar perfis múltiplos";
-$a->strings["Post Composition Features"] = "Funcionalidades de Composição de Publicações";
-$a->strings["Richtext Editor"] = "Editor Richtext";
-$a->strings["Enable richtext editor"] = "Habilite editor richtext";
-$a->strings["Post Preview"] = "Pré-visualização da Publicação";
-$a->strings["Allow previewing posts and comments before publishing them"] = "Permite pré-visualizar publicações e comentários antes de publicá-los";
-$a->strings["Auto-mention Forums"] = "Auto-menção Fóruns";
-$a->strings["Add/remove mention when a fourm page is selected/deselected in ACL window."] = "Adiciona/Remove menções quando uma página de fórum é selecionada/deselecionada na janela ACL";
-$a->strings["Network Sidebar Widgets"] = "Widgets da Barra Lateral da Rede";
-$a->strings["Search by Date"] = "Buscar por Data";
-$a->strings["Ability to select posts by date ranges"] = "Capacidade de selecionar publicações por intervalos de data";
-$a->strings["Group Filter"] = "Filtrar Grupo";
-$a->strings["Enable widget to display Network posts only from selected group"] = "Habilita widget para mostrar publicações da Rede somente de grupos selecionados";
-$a->strings["Network Filter"] = "Filtrar Rede";
-$a->strings["Enable widget to display Network posts only from selected network"] = "Habilita widget para mostrar publicações da Rede de redes selecionadas";
-$a->strings["Save search terms for re-use"] = "Guarde as palavras-chaves para reuso";
-$a->strings["Network Tabs"] = "Abas da Rede";
-$a->strings["Network Personal Tab"] = "Aba Pessoal da Rede";
-$a->strings["Enable tab to display only Network posts that you've interacted on"] = "Habilitar aba para mostrar apenas as publicações da Rede que você tenha interagido";
-$a->strings["Network New Tab"] = "Aba Nova da Rede";
-$a->strings["Enable tab to display only new Network posts (from the last 12 hours)"] = "Habilite aba para mostra apenas publicações da Rede novas (das últimas 12 horas)";
-$a->strings["Network Shared Links Tab"] = "Aba de Links Compartilhados da Rede";
-$a->strings["Enable tab to display only Network posts with links in them"] = "Habilite aba para mostrar somente publicações da Rede que contenham links";
-$a->strings["Post/Comment Tools"] = "Ferramentas de Publicação/Comentário";
-$a->strings["Multiple Deletion"] = "Deleção Multipla";
-$a->strings["Select and delete multiple posts/comments at once"] = "Selecione e delete múltiplas publicações/comentário imediatamente";
-$a->strings["Edit Sent Posts"] = "Editar Publicações Enviadas";
-$a->strings["Edit and correct posts and comments after sending"] = "Editar e corrigir publicações e comentários após envio";
-$a->strings["Tagging"] = "Etiquetagem";
-$a->strings["Ability to tag existing posts"] = "Capacidade de colocar etiquetas em publicações existentes";
-$a->strings["Post Categories"] = "Categorias de Publicações";
-$a->strings["Add categories to your posts"] = "Adicione Categorias ás Publicações";
-$a->strings["Ability to file posts under folders"] = "Capacidade de arquivar publicações em pastas";
-$a->strings["Dislike Posts"] = "Desgostar de publicações";
-$a->strings["Ability to dislike posts/comments"] = "Capacidade de desgostar de publicações/comentários";
-$a->strings["Star Posts"] = "Destacar publicações";
-$a->strings["Ability to mark special posts with a star indicator"] = "Capacidade de marcar publicações especiais com uma estrela indicadora";
-$a->strings["Mute Post Notifications"] = "Silenciar Notificações de Postagem";
-$a->strings["Ability to mute notifications for a thread"] = "Habilitar notificação silenciosa para a tarefa";
+$a->strings["Friendica Notification"] = "Notificação Friendica";
+$a->strings["Thank You,"] = "Obrigado,";
+$a->strings["%s Administrator"] = "%s Administrador";
+$a->strings["noreply"] = "naoresponda";
+$a->strings["%s <!item_type!>"] = "%s <!item_type!>";
+$a->strings["[Friendica:Notify] New mail received at %s"] = "[Friendica:Notify] Nova mensagem recebida em %s";
+$a->strings["%1\$s sent you a new private message at %2\$s."] = "%1\$s lhe enviou uma mensagem privativa em %2\$s.";
+$a->strings["%1\$s sent you %2\$s."] = "%1\$s lhe enviou %2\$s.";
+$a->strings["a private message"] = "uma mensagem privada";
+$a->strings["Please visit %s to view and/or reply to your private messages."] = "Favor visitar %s para ver e/ou responder às suas mensagens privadas.";
+$a->strings["%1\$s commented on [url=%2\$s]a %3\$s[/url]"] = "%1\$s comentou uma [url=%2\$s] %3\$s[/url]";
+$a->strings["%1\$s commented on [url=%2\$s]%3\$s's %4\$s[/url]"] = "%1\$s comentou na %4\$s de [url=%2\$s]%3\$s [/url]";
+$a->strings["%1\$s commented on [url=%2\$s]your %3\$s[/url]"] = "%1\$s comentou [url=%2\$s]sua %3\$s[/url]";
+$a->strings["[Friendica:Notify] Comment to conversation #%1\$d by %2\$s"] = "[Friendica:Notify] Comentário na conversa #%1\$d por %2\$s";
+$a->strings["%s commented on an item/conversation you have been following."] = "%s comentou um item/conversa que você está seguindo.";
+$a->strings["Please visit %s to view and/or reply to the conversation."] = "Favor visitar %s para ver e/ou responder à conversa.";
+$a->strings["[Friendica:Notify] %s posted to your profile wall"] = "[Friendica:Notify] %s publicou no mural do seu perfil";
+$a->strings["%1\$s posted to your profile wall at %2\$s"] = "%1\$s publicou no mural do seu perfil em %2\$s";
+$a->strings["%1\$s posted to [url=%2\$s]your wall[/url]"] = "%1\$s publicou para [url=%2\$s]seu mural[/url]";
+$a->strings["[Friendica:Notify] %s tagged you"] = "[Friendica:Notify] %s etiquetou você";
+$a->strings["%1\$s tagged you at %2\$s"] = "%1\$s etiquetou você em %2\$s";
+$a->strings["%1\$s [url=%2\$s]tagged you[/url]."] = "%1\$s [url=%2\$s]etiquetou você[/url].";
+$a->strings["[Friendica:Notify] %s shared a new post"] = "[Friendica:Notify] %s compartilhado uma nova publicação";
+$a->strings["%1\$s shared a new post at %2\$s"] = "%1\$s compartilhou uma nova publicação em %2\$s";
+$a->strings["%1\$s [url=%2\$s]shared a post[/url]."] = "%1\$s [url=%2\$s]compartilhou uma publicação[/url].";
+$a->strings["[Friendica:Notify] %1\$s poked you"] = "[Friendica:Notify] %1\$s cutucou você";
+$a->strings["%1\$s poked you at %2\$s"] = "%1\$s cutucou você em %2\$s";
+$a->strings["%1\$s [url=%2\$s]poked you[/url]."] = "%1\$s [url=%2\$s]cutucou você[/url].";
+$a->strings["[Friendica:Notify] %s tagged your post"] = "[Friendica:Notify] %s etiquetou sua publicação";
+$a->strings["%1\$s tagged your post at %2\$s"] = "%1\$s etiquetou sua publicação em %2\$s";
+$a->strings["%1\$s tagged [url=%2\$s]your post[/url]"] = "%1\$s etiquetou [url=%2\$s]sua publicação[/url]";
+$a->strings["[Friendica:Notify] Introduction received"] = "[Friendica:Notify] Você recebeu uma apresentação";
+$a->strings["You've received an introduction from '%1\$s' at %2\$s"] = "Você recebeu uma apresentação de '%1\$s' em %2\$s";
+$a->strings["You've received [url=%1\$s]an introduction[/url] from %2\$s."] = "Você recebeu [url=%1\$s]uma apresentação[/url] de %2\$s.";
+$a->strings["You may visit their profile at %s"] = "Você pode visitar o perfil deles em %s";
+$a->strings["Please visit %s to approve or reject the introduction."] = "Favor visitar %s para aprovar ou rejeitar a apresentação.";
+$a->strings["[Friendica:Notify] A new person is sharing with you"] = "[Friendica:Notificação] Uma nova pessoa está compartilhando com você";
+$a->strings["%1\$s is sharing with you at %2\$s"] = "%1\$s está compartilhando com você via %2\$s";
+$a->strings["[Friendica:Notify] You have a new follower"] = "[Friendica:Notificação] Você tem um novo seguidor";
+$a->strings["You have a new follower at %2\$s : %1\$s"] = "Você tem um novo seguidor em %2\$s : %1\$s";
+$a->strings["[Friendica:Notify] Friend suggestion received"] = "[Friendica:Notify] Você recebeu uma sugestão de amigo";
+$a->strings["You've received a friend suggestion from '%1\$s' at %2\$s"] = "Você recebeu uma sugestão de amigo de '%1\$s' em %2\$s";
+$a->strings["You've received [url=%1\$s]a friend suggestion[/url] for %2\$s from %3\$s."] = "Você recebeu [url=%1\$s]uma sugestão de amigo[/url] de %2\$s em %3\$s";
+$a->strings["Name:"] = "Nome:";
+$a->strings["Photo:"] = "Foto:";
+$a->strings["Please visit %s to approve or reject the suggestion."] = "Favor visitar %s para aprovar ou rejeitar a sugestão.";
+$a->strings["[Friendica:Notify] Connection accepted"] = "[Friendica:Notificação] Conexão aceita";
+$a->strings["'%1\$s' has acepted your connection request at %2\$s"] = "'%1\$s' sua solicitação de conexão foi aceita em %2\$s";
+$a->strings["%2\$s has accepted your [url=%1\$s]connection request[/url]."] = "%2\$s Foi aceita [url=%1\$s] a conexão solicitada[/url].";
+$a->strings["You are now mutual friends and may exchange status updates, photos, and email\n\twithout restriction."] = "Você agora são amigos em comum e podem trocar atualizações de status, fotos e e-mail\n\tsem restrições.";
+$a->strings["Please visit %s  if you wish to make any changes to this relationship."] = "Por favor, visite %s se você desejar fazer quaisquer alterações a este relacionamento.";
+$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' optou por aceitá-lo um \"fã\", o que restringe algumas formas de comunicação - como mensagens privadas e algumas interações de perfil. Se esta é uma página de celebridade ou de uma comunidade, essas configurações foram aplicadas automaticamente.";
+$a->strings["'%1\$s' may choose to extend this into a two-way or more permissive relationship in the future. "] = "'%1\$s' pode optar no futuro por estender isso para um relacionamento bidirecional ou superior permissivo.";
+$a->strings["[Friendica System:Notify] registration request"] = "[Friendica: Notificação do Sistema] solicitação de cadastro";
+$a->strings["You've received a registration request from '%1\$s' at %2\$s"] = "Você recebeu um pedido de cadastro de '%1\$s' em %2\$s";
+$a->strings["You've received a [url=%1\$s]registration request[/url] from %2\$s."] = "Você recebeu uma [url=%1\$s]solicitação de cadastro[/url] de %2\$s.";
+$a->strings["Full Name:\t%1\$s\\nSite Location:\t%2\$s\\nLogin Name:\t%3\$s (%4\$s)"] = "Nome completo:\t%1\$s\\nLocal do Site:\t%2\$s\\nNome de Login:\t%3\$s (%4\$s)";
+$a->strings["Please visit %s to approve or reject the request."] = "Por favor, visite %s para aprovar ou rejeitar a solicitação.";
+$a->strings["User not found."] = "Usuário não encontrado.";
+$a->strings["Daily posting limit of %d posts reached. The post was rejected."] = "O limite diário de postagem de %d mensagens foi atingido. O post foi rejeitado.";
+$a->strings["Weekly posting limit of %d posts reached. The post was rejected."] = "O limite de postagem semanal de %d mensagens foi atingido. O post foi rejeitado.";
+$a->strings["Monthly posting limit of %d posts reached. The post was rejected."] = "O limite de postagem mensal de %d mensagens foi atingido. O post foi rejeitado.";
+$a->strings["There is no status with this id."] = "Não existe status com esse id.";
+$a->strings["There is no conversation with this id."] = "Não existe conversas com esse id.";
+$a->strings["Invalid request."] = "Solicitação inválida.";
+$a->strings["Invalid item."] = "Ítem inválido.";
+$a->strings["Invalid action. "] = "Ação inválida.";
+$a->strings["DB error"] = "Erro do Banco de Dados";
+$a->strings["view full size"] = "ver na tela inteira";
+$a->strings[" on Last.fm"] = "na Last.fm";
+$a->strings["Full Name:"] = "Nome completo:";
+$a->strings["j F, Y"] = "j de F, Y";
+$a->strings["j F"] = "j de F";
+$a->strings["Birthday:"] = "Aniversário:";
+$a->strings["Age:"] = "Idade:";
+$a->strings["for %1\$d %2\$s"] = "para %1\$d %2\$s";
+$a->strings["Sexual Preference:"] = "Preferência sexual:";
+$a->strings["Hometown:"] = "Cidade:";
+$a->strings["Tags:"] = "Etiquetas:";
+$a->strings["Political Views:"] = "Posição política:";
+$a->strings["Religion:"] = "Religião:";
+$a->strings["Hobbies/Interests:"] = "Passatempos/Interesses:";
+$a->strings["Likes:"] = "Gosta de:";
+$a->strings["Dislikes:"] = "Não gosta de:";
+$a->strings["Contact information and Social Networks:"] = "Informações de contato e redes sociais:";
+$a->strings["Musical interests:"] = "Preferências musicais:";
+$a->strings["Books, literature:"] = "Livros, literatura:";
+$a->strings["Television:"] = "Televisão:";
+$a->strings["Film/dance/culture/entertainment:"] = "Filmes/dança/cultura/entretenimento:";
+$a->strings["Love/Romance:"] = "Amor/romance:";
+$a->strings["Work/employment:"] = "Trabalho/emprego:";
+$a->strings["School/education:"] = "Escola/educação:";
+$a->strings["Nothing new here"] = "Nada de novo aqui";
+$a->strings["Clear notifications"] = "Descartar notificações";
+$a->strings["End this session"] = "Terminar esta sessão";
+$a->strings["Your videos"] = "Seus vídeos";
+$a->strings["Your personal notes"] = "Suas anotações pessoais";
+$a->strings["Sign in"] = "Entrar";
+$a->strings["Home Page"] = "Página pessoal";
+$a->strings["Create an account"] = "Criar uma conta";
+$a->strings["Help"] = "Ajuda";
+$a->strings["Help and documentation"] = "Ajuda e documentação";
+$a->strings["Apps"] = "Aplicativos";
+$a->strings["Addon applications, utilities, games"] = "Complementos, utilitários, jogos";
+$a->strings["Search"] = "Pesquisar";
+$a->strings["Search site content"] = "Pesquisar conteúdo no site";
+$a->strings["Conversations on this site"] = "Conversas neste site";
+$a->strings["Conversations on the network"] = "Conversas na rede";
+$a->strings["Directory"] = "Diretório";
+$a->strings["People directory"] = "Diretório de pessoas";
+$a->strings["Information"] = "Informação";
+$a->strings["Information about this friendica instance"] = "Informação sobre esta instância do friendica";
+$a->strings["Network"] = "Rede";
+$a->strings["Conversations from your friends"] = "Conversas dos seus amigos";
+$a->strings["Network Reset"] = "Reiniciar Rede";
+$a->strings["Load Network page with no filters"] = "Carregar página Rede sem filtros";
+$a->strings["Introductions"] = "Apresentações";
+$a->strings["Friend Requests"] = "Requisições de Amizade";
+$a->strings["Notifications"] = "Notificações";
+$a->strings["See all notifications"] = "Ver todas notificações";
+$a->strings["Mark all system notifications seen"] = "Marcar todas as notificações de sistema como vistas";
+$a->strings["Messages"] = "Mensagens";
+$a->strings["Private mail"] = "Mensagem privada";
+$a->strings["Inbox"] = "Recebidas";
+$a->strings["Outbox"] = "Enviadas";
+$a->strings["New Message"] = "Nova mensagem";
+$a->strings["Manage"] = "Gerenciar";
+$a->strings["Manage other pages"] = "Gerenciar outras páginas";
+$a->strings["Delegations"] = "Delegações";
+$a->strings["Delegate Page Management"] = "Delegar Administração de Página";
+$a->strings["Account settings"] = "Configurações da conta";
+$a->strings["Manage/Edit Profiles"] = "Administrar/Editar Perfis";
+$a->strings["Manage/edit friends and contacts"] = "Gerenciar/editar amigos e contatos";
+$a->strings["Admin"] = "Admin";
+$a->strings["Site setup and configuration"] = "Configurações do site";
+$a->strings["Navigation"] = "Navegação";
+$a->strings["Site map"] = "Mapa do Site";
+$a->strings["Click here to upgrade."] = "Clique aqui para atualização (upgrade).";
+$a->strings["This action exceeds the limits set by your subscription plan."] = "Essa ação excede o limite definido para o seu plano de assinatura.";
+$a->strings["This action is not available under your subscription plan."] = "Essa ação não está disponível em seu plano de assinatura.";
+$a->strings["Disallowed profile URL."] = "URL de perfil não permitida.";
 $a->strings["Connect URL missing."] = "URL de conexão faltando.";
 $a->strings["This site is not configured to allow communications with other networks."] = "Este site não está configurado para permitir comunicações com outras redes.";
 $a->strings["No compatible communication protocols or feeds were discovered."] = "Não foi descoberto nenhum protocolo de comunicação ou fonte de notícias compatível.";
@@ -1366,13 +372,33 @@ $a->strings["The profile address specified belongs to a network which has been d
 $a->strings["Limited profile. This person will be unable to receive direct/personal notifications from you."] = "Perfil limitado. Essa pessoa não poderá receber notificações diretas/pessoais de você.";
 $a->strings["Unable to retrieve contact information."] = "Não foi possível recuperar a informação do contato.";
 $a->strings["following"] = "acompanhando";
-$a->strings["A deleted group with this name was revived. Existing item permissions <strong>may</strong> apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "Um grupo com esse nome, anteriormente excluído, foi reativado. Permissões de itens já existentes <strong>poderão</strong> ser aplicadas a esse grupo e qualquer futuros membros. Se não é essa a sua intenção, favor criar outro grupo com um nome diferente.";
-$a->strings["Default privacy group for new contacts"] = "Grupo de privacidade padrão para novos contatos";
-$a->strings["Everybody"] = "Todos";
-$a->strings["edit"] = "editar";
-$a->strings["Edit group"] = "Editar grupo";
-$a->strings["Create a new group"] = "Criar um novo grupo";
-$a->strings["Contacts not in any group"] = "Contatos não estão dentro de nenhum grupo";
+$a->strings["Error decoding account file"] = "Erro ao decodificar arquivo de conta";
+$a->strings["Error! No version data in file! This is not a Friendica account file?"] = "Erro! Nenhum arquivo de dados de versão! Esse não é um arquivo de conta do Friendica?";
+$a->strings["Error! Cannot check nickname"] = "Erro! Não consigo conferir o apelido (nickname)";
+$a->strings["User '%s' already exists on this server!"] = "User '%s' já existe nesse servidor!";
+$a->strings["User creation error"] = "Erro na criação do usuário";
+$a->strings["User profile creation error"] = "Erro na criação do perfil do Usuário";
+$a->strings["%d contact not imported"] = array(
+       0 => "%d contato não foi importado",
+       1 => "%d contatos não foram importados",
+);
+$a->strings["Done. You can now login with your username and password"] = "Feito. Você agora pode entrar com seu nome de usuário e senha";
+$a->strings["l F d, Y \\@ g:i A"] = "l F d, Y \\@ H:i";
+$a->strings["Starts:"] = "Início:";
+$a->strings["Finishes:"] = "Término:";
+$a->strings["stopped following"] = "parou de acompanhar";
+$a->strings["Poke"] = "Cutucar";
+$a->strings["View Status"] = "Ver Status";
+$a->strings["View Profile"] = "Ver Perfil";
+$a->strings["View Photos"] = "Ver Fotos";
+$a->strings["Network Posts"] = "Publicações da Rede";
+$a->strings["Edit Contact"] = "Editar Contato";
+$a->strings["Drop Contact"] = "Excluir o contato";
+$a->strings["Send PM"] = "Enviar MP";
+$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."] = "\n\t\t\tOs desenvolvedores de Friendica lançaram recentemente uma atualização %s,\n\t\t\tmas quando tentei instalá-la, algo deu terrivelmente errado.\n\t\t\tIsso precisa ser corrigido em breve e eu não posso fazer isso sozinho. Por favor, contate um\n\t\t\tdesenvolvedor da Friendica se você não pode me ajudar sozinho. Meu banco de dados pode ser inválido.";
+$a->strings["The error message is\n[pre]%s[/pre]"] = "A mensagem de erro é\n[pre]%s[/pre]";
+$a->strings["Errors encountered creating database tables."] = "Foram encontrados erros durante a criação das tabelas do banco de dados.";
+$a->strings["Errors encountered performing database changes."] = "Erros encontrados realizando mudanças no banco de dados.";
 $a->strings["Miscellaneous"] = "Miscelânea";
 $a->strings["year"] = "ano";
 $a->strings["month"] = "mês";
@@ -1391,30 +417,53 @@ $a->strings["minutes"] = "minutos";
 $a->strings["second"] = "segundo";
 $a->strings["seconds"] = "segundos";
 $a->strings["%1\$d %2\$s ago"] = "%1\$d %2\$s atrás";
-$a->strings["%s's birthday"] = "aniversários de %s's";
-$a->strings["Happy Birthday %s"] = "Feliz Aniversário %s";
-$a->strings["Visible to everybody"] = "Visível para todos";
-$a->strings["show"] = "exibir";
-$a->strings["don't show"] = "não exibir";
 $a->strings["[no subject]"] = "[sem assunto]";
-$a->strings["stopped following"] = "parou de acompanhar";
-$a->strings["Poke"] = "Cutucar";
-$a->strings["View Status"] = "Ver Status";
-$a->strings["View Profile"] = "Ver Perfil";
-$a->strings["View Photos"] = "Ver Fotos";
-$a->strings["Network Posts"] = "Publicações da Rede";
-$a->strings["Edit Contact"] = "Editar Contato";
-$a->strings["Drop Contact"] = "Excluir o contato";
-$a->strings["Send PM"] = "Enviar MP";
-$a->strings["Welcome "] = "Bem-vindo(a) ";
-$a->strings["Please upload a profile photo."] = "Por favor, envie uma foto para o perfil.";
-$a->strings["Welcome back "] = "Bem-vindo(a) de volta ";
-$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."] = "O token de segurança do formulário não estava correto. Isso provavelmente aconteceu porque o formulário ficou aberto por muito tempo (>3 horas) antes da sua submissão.";
-$a->strings["event"] = "evento";
+$a->strings["(no subject)"] = "(sem assunto)";
+$a->strings["Unknown | Not categorised"] = "Desconhecido | Não categorizado";
+$a->strings["Block immediately"] = "Bloquear imediatamente";
+$a->strings["Shady, spammer, self-marketer"] = "Dissimulado, spammer, propagandista";
+$a->strings["Known to me, but no opinion"] = "Eu conheço, mas não possuo nenhuma opinião acerca";
+$a->strings["OK, probably harmless"] = "Ok, provavelmente inofensivo";
+$a->strings["Reputable, has my trust"] = "Boa reputação, tem minha confiança";
+$a->strings["Frequently"] = "Frequentemente";
+$a->strings["Hourly"] = "De hora em hora";
+$a->strings["Twice daily"] = "Duas vezes ao dia";
+$a->strings["Daily"] = "Diariamente";
+$a->strings["Weekly"] = "Semanalmente";
+$a->strings["Monthly"] = "Mensalmente";
+$a->strings["Friendica"] = "Friendica";
+$a->strings["OStatus"] = "OStatus";
+$a->strings["RSS/Atom"] = "RSS/Atom";
+$a->strings["Email"] = "E-mail";
+$a->strings["Diaspora"] = "Diaspora";
+$a->strings["Facebook"] = "Facebook";
+$a->strings["Zot!"] = "Zot!";
+$a->strings["LinkedIn"] = "LinkedIn";
+$a->strings["XMPP/IM"] = "XMPP/IM";
+$a->strings["MySpace"] = "MySpace";
+$a->strings["Google+"] = "Google+";
+$a->strings["pump.io"] = "pump.io";
+$a->strings["Twitter"] = "Twitter";
+$a->strings["Diaspora Connector"] = "Conector do Diáspora";
+$a->strings["Statusnet"] = "Statusnet";
+$a->strings["App.net"] = "App.net";
+$a->strings["%1\$s is now friends with %2\$s"] = "%1\$s agora é amigo de %2\$s";
+$a->strings["Sharing notification from Diaspora network"] = "Notificação de compartilhamento da rede Diaspora";
+$a->strings["Attachments:"] = "Anexos:";
+$a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s não gosta de %3\$s de %2\$s";
 $a->strings["%1\$s poked %2\$s"] = "%1\$s cutucou %2\$s";
-$a->strings["poked"] = "cutucado";
+$a->strings["%1\$s is currently %2\$s"] = "%1\$s atualmente está %2\$s";
+$a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s etiquetou %3\$s de %2\$s com %4\$s";
 $a->strings["post/item"] = "postagem/item";
 $a->strings["%1\$s marked %2\$s's %3\$s as favorite"] = "%1\$s marcou %3\$s de %2\$s como favorito";
+$a->strings["Select"] = "Selecionar";
+$a->strings["Delete"] = "Excluir";
+$a->strings["View %s's profile @ %s"] = "Ver o perfil de %s @ %s";
+$a->strings["Categories:"] = "Categorias:";
+$a->strings["Filed under:"] = "Arquivado sob:";
+$a->strings["%s from %s"] = "%s de %s";
+$a->strings["View in context"] = "Ver no contexto";
+$a->strings["Please wait"] = "Por favor, espere";
 $a->strings["remove"] = "remover";
 $a->strings["Delete Selected Items"] = "Excluir os itens selecionados";
 $a->strings["Follow Thread"] = "Seguir o Thread";
@@ -1427,30 +476,59 @@ $a->strings[", and %d other people"] = ", e mais %d outras pessoas";
 $a->strings["%s like this."] = "%s gostaram disso.";
 $a->strings["%s don't like this."] = "%s não gostaram disso.";
 $a->strings["Visible to <strong>everybody</strong>"] = "Visível para <strong>todos</strong>";
+$a->strings["Please enter a link URL:"] = "Por favor, digite uma URL:";
 $a->strings["Please enter a video link/URL:"] = "Favor fornecer um link/URL de vídeo";
 $a->strings["Please enter an audio link/URL:"] = "Favor fornecer um link/URL de áudio";
 $a->strings["Tag term:"] = "Etiqueta:";
+$a->strings["Save to Folder:"] = "Salvar na pasta:";
 $a->strings["Where are you right now?"] = "Onde você está agora?";
 $a->strings["Delete item(s)?"] = "Deletar item(s)?";
 $a->strings["Post to Email"] = "Enviar por e-mail";
 $a->strings["Connectors disabled, since \"%s\" is enabled."] = "Conectores desabilitados, desde \"%s\" está habilitado.";
+$a->strings["Hide your profile details from unknown viewers?"] = "Ocultar os detalhes do seu perfil para pessoas desconhecidas?";
+$a->strings["Share"] = "Compartilhar";
+$a->strings["Upload photo"] = "Enviar foto";
+$a->strings["upload photo"] = "upload de foto";
+$a->strings["Attach file"] = "Anexar arquivo";
+$a->strings["attach file"] = "anexar arquivo";
+$a->strings["Insert web link"] = "Inserir link web";
+$a->strings["web link"] = "link web";
+$a->strings["Insert video link"] = "Inserir link de vídeo";
+$a->strings["video link"] = "link de vídeo";
+$a->strings["Insert audio link"] = "Inserir link de áudio";
+$a->strings["audio link"] = "link de áudio";
+$a->strings["Set your location"] = "Definir sua localização";
+$a->strings["set location"] = "configure localização";
+$a->strings["Clear browser location"] = "Limpar a localização do navegador";
+$a->strings["clear location"] = "apague localização";
+$a->strings["Set title"] = "Definir o título";
+$a->strings["Categories (comma-separated list)"] = "Categorias (lista separada por vírgulas)";
+$a->strings["Permission settings"] = "Configurações de permissão";
 $a->strings["permissions"] = "permissões";
+$a->strings["CC: email addresses"] = "CC: endereço de e-mail";
+$a->strings["Public post"] = "Publicação pública";
+$a->strings["Example: bob@example.com, mary@example.com"] = "Por exemplo: joao@exemplo.com, maria@exemplo.com";
+$a->strings["Preview"] = "Pré-visualização";
 $a->strings["Post to Groups"] = "Postar em Grupos";
 $a->strings["Post to Contacts"] = "Publique para Contatos";
 $a->strings["Private post"] = "Publicação privada";
-$a->strings["view full size"] = "ver na tela inteira";
 $a->strings["newer"] = "mais recente";
 $a->strings["older"] = "antigo";
 $a->strings["prev"] = "anterior";
 $a->strings["first"] = "primeiro";
 $a->strings["last"] = "último";
 $a->strings["next"] = "próximo";
+$a->strings["Loading more entries..."] = "Baixando mais entradas...";
+$a->strings["The end"] = "Fim";
 $a->strings["No contacts"] = "Nenhum contato";
 $a->strings["%d Contact"] = array(
        0 => "%d contato",
        1 => "%d contatos",
 );
+$a->strings["View Contacts"] = "Ver contatos";
+$a->strings["Save"] = "Salvar";
 $a->strings["poke"] = "cutucar";
+$a->strings["poked"] = "cutucado";
 $a->strings["ping"] = "ping";
 $a->strings["pinged"] = "pingado";
 $a->strings["prod"] = "incentivar";
@@ -1475,159 +553,58 @@ $a->strings["cheerful"] = "jovial";
 $a->strings["alive"] = "vivo";
 $a->strings["annoyed"] = "incomodado";
 $a->strings["anxious"] = "ansioso";
-$a->strings["cranky"] = "excêntrico";
-$a->strings["disturbed"] = "perturbado";
-$a->strings["frustrated"] = "frustrado";
-$a->strings["motivated"] = "motivado";
-$a->strings["relaxed"] = "relaxado";
-$a->strings["surprised"] = "surpreso";
-$a->strings["Monday"] = "Segunda";
-$a->strings["Tuesday"] = "Terça";
-$a->strings["Wednesday"] = "Quarta";
-$a->strings["Thursday"] = "Quinta";
-$a->strings["Friday"] = "Sexta";
-$a->strings["Saturday"] = "Sábado";
-$a->strings["Sunday"] = "Domingo";
-$a->strings["January"] = "Janeiro";
-$a->strings["February"] = "Fevereiro";
-$a->strings["March"] = "Março";
-$a->strings["April"] = "Abril";
-$a->strings["May"] = "Maio";
-$a->strings["June"] = "Junho";
-$a->strings["July"] = "Julho";
-$a->strings["August"] = "Agosto";
-$a->strings["September"] = "Setembro";
-$a->strings["October"] = "Outubro";
-$a->strings["November"] = "Novembro";
-$a->strings["December"] = "Dezembro";
-$a->strings["bytes"] = "bytes";
-$a->strings["Click to open/close"] = "Clique para abrir/fechar";
-$a->strings["default"] = "padrão";
-$a->strings["Select an alternate language"] = "Selecione um idioma alternativo";
-$a->strings["activity"] = "atividade";
-$a->strings["post"] = "publicação";
-$a->strings["Item filed"] = "O item foi arquivado";
-$a->strings["Image/photo"] = "Imagem/foto";
-$a->strings["<a href=\"%1\$s\" target=\"_blank\">%2\$s</a> %3\$s"] = "<a href=\"%1\$s\" target=\"_blank\">%2\$s</a> %3\$s";
-$a->strings["<span><a href=\"%s\" target=\"_blank\">%s</a> wrote the following <a href=\"%s\" target=\"_blank\">post</a>"] = "<span><a href=\"%s\" target=\"_blank\">%s</a> escreveu a seguinte <a href=\"%s\" target=\"_blank\">publicação</a>";
-$a->strings["$1 wrote:"] = "$1 escreveu:";
-$a->strings["Encrypted content"] = "Conteúdo criptografado";
-$a->strings["(no subject)"] = "(sem assunto)";
-$a->strings["noreply"] = "naoresponda";
-$a->strings["Cannot locate DNS info for database server '%s'"] = "Não foi possível localizar a informação de DNS para o servidor de banco de dados '%s'";
-$a->strings["Unknown | Not categorised"] = "Desconhecido | Não categorizado";
-$a->strings["Block immediately"] = "Bloquear imediatamente";
-$a->strings["Shady, spammer, self-marketer"] = "Dissimulado, spammer, propagandista";
-$a->strings["Known to me, but no opinion"] = "Eu conheço, mas não possuo nenhuma opinião acerca";
-$a->strings["OK, probably harmless"] = "Ok, provavelmente inofensivo";
-$a->strings["Reputable, has my trust"] = "Boa reputação, tem minha confiança";
-$a->strings["Weekly"] = "Semanalmente";
-$a->strings["Monthly"] = "Mensalmente";
-$a->strings["OStatus"] = "OStatus";
-$a->strings["RSS/Atom"] = "RSS/Atom";
-$a->strings["Zot!"] = "Zot!";
-$a->strings["LinkedIn"] = "LinkedIn";
-$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"] = "Conector do Diáspora";
-$a->strings["Statusnet"] = "Statusnet";
-$a->strings["App.net"] = "App.net";
-$a->strings[" on Last.fm"] = "na Last.fm";
-$a->strings["Starts:"] = "Início:";
-$a->strings["Finishes:"] = "Término:";
-$a->strings["j F, Y"] = "j de F, Y";
-$a->strings["j F"] = "j de F";
-$a->strings["Birthday:"] = "Aniversário:";
-$a->strings["Age:"] = "Idade:";
-$a->strings["for %1\$d %2\$s"] = "para %1\$d %2\$s";
-$a->strings["Tags:"] = "Etiquetas:";
-$a->strings["Religion:"] = "Religião:";
-$a->strings["Hobbies/Interests:"] = "Passatempos/Interesses:";
-$a->strings["Contact information and Social Networks:"] = "Informações de contato e redes sociais:";
-$a->strings["Musical interests:"] = "Preferências musicais:";
-$a->strings["Books, literature:"] = "Livros, literatura:";
-$a->strings["Television:"] = "Televisão:";
-$a->strings["Film/dance/culture/entertainment:"] = "Filmes/dança/cultura/entretenimento:";
-$a->strings["Love/Romance:"] = "Amor/romance:";
-$a->strings["Work/employment:"] = "Trabalho/emprego:";
-$a->strings["School/education:"] = "Escola/educação:";
-$a->strings["Click here to upgrade."] = "Clique aqui para atualização (upgrade).";
-$a->strings["This action exceeds the limits set by your subscription plan."] = "Essa ação excede o limite definido para o seu plano de assinatura.";
-$a->strings["This action is not available under your subscription plan."] = "Essa ação não está disponível em seu plano de assinatura.";
-$a->strings["End this session"] = "Terminar esta sessão";
-$a->strings["Your posts and conversations"] = "Suas publicações e conversas";
-$a->strings["Your profile page"] = "Sua página de perfil";
-$a->strings["Your photos"] = "Suas fotos";
-$a->strings["Your videos"] = "Seus vídeos";
-$a->strings["Your events"] = "Seus eventos";
-$a->strings["Personal notes"] = "Suas anotações pessoais";
-$a->strings["Your personal notes"] = "Suas anotações pessoais";
-$a->strings["Sign in"] = "Entrar";
-$a->strings["Home Page"] = "Página pessoal";
-$a->strings["Create an account"] = "Criar uma conta";
-$a->strings["Help and documentation"] = "Ajuda e documentação";
-$a->strings["Apps"] = "Aplicativos";
-$a->strings["Addon applications, utilities, games"] = "Complementos, utilitários, jogos";
-$a->strings["Search site content"] = "Pesquisar conteúdo no site";
-$a->strings["Conversations on this site"] = "Conversas neste site";
-$a->strings["Conversations on the network"] = "";
-$a->strings["Directory"] = "Diretório";
-$a->strings["People directory"] = "Diretório de pessoas";
-$a->strings["Information"] = "Informação";
-$a->strings["Information about this friendica instance"] = "Informação sobre esta instância do friendica";
-$a->strings["Conversations from your friends"] = "Conversas dos seus amigos";
-$a->strings["Network Reset"] = "Reiniciar Rede";
-$a->strings["Load Network page with no filters"] = "Carregar página Rede sem filtros";
-$a->strings["Friend Requests"] = "Requisições de Amizade";
-$a->strings["See all notifications"] = "Ver todas notificações";
-$a->strings["Mark all system notifications seen"] = "Marcar todas as notificações de sistema como vistas";
-$a->strings["Private mail"] = "Mensagem privada";
-$a->strings["Inbox"] = "Recebidas";
-$a->strings["Outbox"] = "Enviadas";
-$a->strings["Manage"] = "Gerenciar";
-$a->strings["Manage other pages"] = "Gerenciar outras páginas";
-$a->strings["Account settings"] = "Configurações da conta";
-$a->strings["Manage/Edit Profiles"] = "Administrar/Editar Perfis";
-$a->strings["Manage/edit friends and contacts"] = "Gerenciar/editar amigos e contatos";
-$a->strings["Site setup and configuration"] = "Configurações do site";
-$a->strings["Navigation"] = "Navegação";
-$a->strings["Site map"] = "Mapa do Site";
-$a->strings["User not found."] = "Usuário não encontrado.";
-$a->strings["Daily posting limit of %d posts reached. The post was rejected."] = "O limite diário de postagem de %d mensagens foi atingido. O post foi rejeitado.";
-$a->strings["Weekly posting limit of %d posts reached. The post was rejected."] = "O limite de postagem semanal de %d mensagens foi atingido. O post foi rejeitado.";
-$a->strings["Monthly posting limit of %d posts reached. The post was rejected."] = "O limite de postagem mensal de %d mensagens foi atingido. O post foi rejeitado.";
-$a->strings["There is no status with this id."] = "Não existe status com esse id.";
-$a->strings["There is no conversation with this id."] = "Não existe conversas com esse id.";
-$a->strings["Invalid request."] = "Solicitação inválida.";
-$a->strings["Invalid item."] = "Ítem inválido.";
-$a->strings["Invalid action. "] = "Ação inválida.";
-$a->strings["DB error"] = "Erro do Banco de Dados";
-$a->strings["An invitation is required."] = "É necessário um convite.";
-$a->strings["Invitation could not be verified."] = "Não foi possível verificar o convite.";
-$a->strings["Invalid OpenID url"] = "A URL do OpenID é inválida";
-$a->strings["Please enter the required information."] = "Por favor, forneça a informação solicitada.";
-$a->strings["Please use a shorter name."] = "Por favor, use um nome mais curto.";
-$a->strings["Name too short."] = "O nome é muito curto.";
-$a->strings["That doesn't appear to be your full (First Last) name."] = "Isso não parece ser o seu nome completo (Nome Sobrenome).";
-$a->strings["Your email domain is not among those allowed on this site."] = "O domínio do seu e-mail não está entre os permitidos neste site.";
-$a->strings["Not a valid email address."] = "Não é um endereço de e-mail válido.";
-$a->strings["Cannot use that email."] = "Não é possível usar esse e-mail.";
-$a->strings["Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and must also begin with a letter."] = "A sua identificação pode conter somente os caracteres \"a-z\", \"0-9\", \"-\", e \"_\", além disso, deve começar com uma letra.";
-$a->strings["Nickname is already registered. Please choose another."] = "Esta identificação já foi registrada. Por favor, escolha outra.";
-$a->strings["Nickname was once registered here and may not be re-used. Please choose another."] = "Essa identificação já foi registrada e não pode ser reutilizada. Por favor, escolha outra.";
-$a->strings["SERIOUS ERROR: Generation of security keys failed."] = "ERRO GRAVE: Não foi possível gerar as chaves de segurança.";
-$a->strings["An error occurred during registration. Please try again."] = "Ocorreu um erro durante o registro. Por favor, tente novamente.";
-$a->strings["An error occurred creating your default profile. Please try again."] = "Ocorreu um erro na criação do seu perfil padrão. Por favor, tente novamente.";
-$a->strings["Friends"] = "Amigos";
-$a->strings["\n\t\tDear %1\$s,\n\t\t\tThank you for registering at %2\$s. Your account has been created.\n\t"] = "\n\t\tCaro %1\$s,\n\t\t\tObrigado por se cadastrar em %2\$s. Sua conta foi criada.\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."] = "\n\t\tOs dados de login são os seguintes:\n\t\t\tLocal do Site:\t%3\$s\n\t\t\tNome de Login:\t%1\$s\n\t\t\tSenha:\t%5\$s\n\n\t\tVocê pode alterar sua senha na página de \"Configurações\" da sua conta após fazer o login\n\n\t\tPor favor, dedique alguns minutos na página para rever as outras configurações da sua conta.\n\n\t\tTalvez você também queira incluir algumas informações básicas adicionais ao seu perfil padrão\n\t\t(na página de \"Perfis\") para que outras pessoas possam encontrá-lo com facilidade.\n\n\t\tRecomendamos que inclua seu nome completo, adicione uma foto do perfil,\n\t\tadicionar algumas \"palavras-chave\" (muito útil para fazer novas amizades) - e\n\t\ttalvez em que pais você mora; se você não quiser ser mais específico \n\t\tdo que isso.\n\n\t\tNós respeitamos plenamente seu direito à privacidade, e nenhum desses itens são necessários.\n\t\tSe você é novo por aqui e não conheço ninguém, eles podem ajuda-lo a fazer novas e interessantes amizades.\n\n\n\t\tObrigado e bem-vindo a %2\$s.";
-$a->strings["Sharing notification from Diaspora network"] = "Notificação de compartilhamento da rede Diaspora";
-$a->strings["Attachments:"] = "Anexos:";
-$a->strings["Do you really want to delete this item?"] = "Você realmente deseja deletar esse item?";
-$a->strings["Archives"] = "Arquivos";
+$a->strings["cranky"] = "excêntrico";
+$a->strings["disturbed"] = "perturbado";
+$a->strings["frustrated"] = "frustrado";
+$a->strings["motivated"] = "motivado";
+$a->strings["relaxed"] = "relaxado";
+$a->strings["surprised"] = "surpreso";
+$a->strings["Monday"] = "Segunda";
+$a->strings["Tuesday"] = "Terça";
+$a->strings["Wednesday"] = "Quarta";
+$a->strings["Thursday"] = "Quinta";
+$a->strings["Friday"] = "Sexta";
+$a->strings["Saturday"] = "Sábado";
+$a->strings["Sunday"] = "Domingo";
+$a->strings["January"] = "Janeiro";
+$a->strings["February"] = "Fevereiro";
+$a->strings["March"] = "Março";
+$a->strings["April"] = "Abril";
+$a->strings["May"] = "Maio";
+$a->strings["June"] = "Junho";
+$a->strings["July"] = "Julho";
+$a->strings["August"] = "Agosto";
+$a->strings["September"] = "Setembro";
+$a->strings["October"] = "Outubro";
+$a->strings["November"] = "Novembro";
+$a->strings["December"] = "Dezembro";
+$a->strings["View Video"] = "Ver Vídeo";
+$a->strings["bytes"] = "bytes";
+$a->strings["Click to open/close"] = "Clique para abrir/fechar";
+$a->strings["link to source"] = "exibir a origem";
+$a->strings["Select an alternate language"] = "Selecione um idioma alternativo";
+$a->strings["activity"] = "atividade";
+$a->strings["comment"] = array(
+       0 => "comentário",
+       1 => "comentários",
+);
+$a->strings["post"] = "publicação";
+$a->strings["Item filed"] = "O item foi arquivado";
+$a->strings["Logged out."] = "Saiu.";
+$a->strings["Login failed."] = "Não foi possível autenticar.";
+$a->strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "Foi encontrado um erro ao tentar conectar usando o OpenID que você forneceu. Por favor, verifique se sua ID está escrita corretamente.";
+$a->strings["The error message was:"] = "A mensagem de erro foi:";
+$a->strings["Image/photo"] = "Imagem/foto";
+$a->strings["<a href=\"%1\$s\" target=\"_blank\">%2\$s</a> %3\$s"] = "<a href=\"%1\$s\" target=\"_blank\">%2\$s</a> %3\$s";
+$a->strings["<span><a href=\"%s\" target=\"_blank\">%s</a> wrote the following <a href=\"%s\" target=\"_blank\">post</a>"] = "<span><a href=\"%s\" target=\"_blank\">%s</a> escreveu a seguinte <a href=\"%s\" target=\"_blank\">publicação</a>";
+$a->strings["$1 wrote:"] = "$1 escreveu:";
+$a->strings["Encrypted content"] = "Conteúdo criptografado";
+$a->strings["Welcome "] = "Bem-vindo(a) ";
+$a->strings["Please upload a profile photo."] = "Por favor, envie uma foto para o perfil.";
+$a->strings["Welcome back "] = "Bem-vindo(a) de volta ";
+$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."] = "O token de segurança do formulário não estava correto. Isso provavelmente aconteceu porque o formulário ficou aberto por muito tempo (>3 horas) antes da sua submissão.";
+$a->strings["Embedded content"] = "Conteúdo incorporado";
+$a->strings["Embedding disabled"] = "A incorporação está desabilitada";
 $a->strings["Male"] = "Masculino";
 $a->strings["Female"] = "Feminino";
 $a->strings["Currently Male"] = "Atualmente masculino";
@@ -1664,6 +641,7 @@ $a->strings["Infatuated"] = "Apaixonado";
 $a->strings["Dating"] = "Saindo com alguém";
 $a->strings["Unfaithful"] = "Infiel";
 $a->strings["Sex Addict"] = "Viciado(a) em sexo";
+$a->strings["Friends"] = "Amigos";
 $a->strings["Friends/Benefits"] = "Amigos/Benefícios";
 $a->strings["Casual"] = "Casual";
 $a->strings["Engaged"] = "Envolvido(a)";
@@ -1685,113 +663,1144 @@ $a->strings["Uncertain"] = "Incerto(a)";
 $a->strings["It's complicated"] = "É complicado";
 $a->strings["Don't care"] = "Não importa";
 $a->strings["Ask me"] = "Pergunte-me";
-$a->strings["Friendica Notification"] = "Notificação Friendica";
-$a->strings["Thank You,"] = "Obrigado,";
-$a->strings["%s Administrator"] = "%s Administrador";
-$a->strings["%s <!item_type!>"] = "%s <!item_type!>";
-$a->strings["[Friendica:Notify] New mail received at %s"] = "[Friendica:Notify] Nova mensagem recebida em %s";
-$a->strings["%1\$s sent you a new private message at %2\$s."] = "%1\$s lhe enviou uma mensagem privativa em %2\$s.";
-$a->strings["%1\$s sent you %2\$s."] = "%1\$s lhe enviou %2\$s.";
-$a->strings["a private message"] = "uma mensagem privada";
-$a->strings["Please visit %s to view and/or reply to your private messages."] = "Favor visitar %s para ver e/ou responder às suas mensagens privadas.";
-$a->strings["%1\$s commented on [url=%2\$s]a %3\$s[/url]"] = "%1\$s comentou uma [url=%2\$s] %3\$s[/url]";
-$a->strings["%1\$s commented on [url=%2\$s]%3\$s's %4\$s[/url]"] = "%1\$s comentou na %4\$s de [url=%2\$s]%3\$s [/url]";
-$a->strings["%1\$s commented on [url=%2\$s]your %3\$s[/url]"] = "%1\$s comentou [url=%2\$s]sua %3\$s[/url]";
-$a->strings["[Friendica:Notify] Comment to conversation #%1\$d by %2\$s"] = "[Friendica:Notify] Comentário na conversa #%1\$d por %2\$s";
-$a->strings["%s commented on an item/conversation you have been following."] = "%s comentou um item/conversa que você está seguindo.";
-$a->strings["Please visit %s to view and/or reply to the conversation."] = "Favor visitar %s para ver e/ou responder à conversa.";
-$a->strings["[Friendica:Notify] %s posted to your profile wall"] = "[Friendica:Notify] %s publicou no mural do seu perfil";
-$a->strings["%1\$s posted to your profile wall at %2\$s"] = "%1\$s publicou no mural do seu perfil em %2\$s";
-$a->strings["%1\$s posted to [url=%2\$s]your wall[/url]"] = "%1\$s publicou para [url=%2\$s]seu mural[/url]";
-$a->strings["[Friendica:Notify] %s tagged you"] = "[Friendica:Notify] %s etiquetou você";
-$a->strings["%1\$s tagged you at %2\$s"] = "%1\$s etiquetou você em %2\$s";
-$a->strings["%1\$s [url=%2\$s]tagged you[/url]."] = "%1\$s [url=%2\$s]etiquetou você[/url].";
-$a->strings["[Friendica:Notify] %s shared a new post"] = "[Friendica:Notify] %s compartilhado uma nova publicação";
-$a->strings["%1\$s shared a new post at %2\$s"] = "%1\$s compartilhou uma nova publicação em %2\$s";
-$a->strings["%1\$s [url=%2\$s]shared a post[/url]."] = "%1\$s [url=%2\$s]compartilhou uma publicação[/url].";
-$a->strings["[Friendica:Notify] %1\$s poked you"] = "[Friendica:Notify] %1\$s cutucou você";
-$a->strings["%1\$s poked you at %2\$s"] = "%1\$s cutucou você em %2\$s";
-$a->strings["%1\$s [url=%2\$s]poked you[/url]."] = "%1\$s [url=%2\$s]cutucou você[/url].";
-$a->strings["[Friendica:Notify] %s tagged your post"] = "[Friendica:Notify] %s etiquetou sua publicação";
-$a->strings["%1\$s tagged your post at %2\$s"] = "%1\$s etiquetou sua publicação em %2\$s";
-$a->strings["%1\$s tagged [url=%2\$s]your post[/url]"] = "%1\$s etiquetou [url=%2\$s]sua publicação[/url]";
-$a->strings["[Friendica:Notify] Introduction received"] = "[Friendica:Notify] Você recebeu uma apresentação";
-$a->strings["You've received an introduction from '%1\$s' at %2\$s"] = "Você recebeu uma apresentação de '%1\$s' em %2\$s";
-$a->strings["You've received [url=%1\$s]an introduction[/url] from %2\$s."] = "Você recebeu [url=%1\$s]uma apresentação[/url] de %2\$s.";
-$a->strings["You may visit their profile at %s"] = "Você pode visitar o perfil deles em %s";
-$a->strings["Please visit %s to approve or reject the introduction."] = "Favor visitar %s para aprovar ou rejeitar a apresentação.";
-$a->strings["[Friendica:Notify] A new person is sharing with you"] = "[Friendica:Notificação] Uma nova pessoa está compartilhando com você";
-$a->strings["%1\$s is sharing with you at %2\$s"] = "%1\$s está compartilhando com você via %2\$s";
-$a->strings["[Friendica:Notify] You have a new follower"] = "[Friendica:Notificação] Você tem um novo seguidor";
-$a->strings["You have a new follower at %2\$s : %1\$s"] = "Você tem um novo seguidor em %2\$s : %1\$s";
-$a->strings["[Friendica:Notify] Friend suggestion received"] = "[Friendica:Notify] Você recebeu uma sugestão de amigo";
-$a->strings["You've received a friend suggestion from '%1\$s' at %2\$s"] = "Você recebeu uma sugestão de amigo de '%1\$s' em %2\$s";
-$a->strings["You've received [url=%1\$s]a friend suggestion[/url] for %2\$s from %3\$s."] = "Você recebeu [url=%1\$s]uma sugestão de amigo[/url] de %2\$s em %3\$s";
-$a->strings["Name:"] = "Nome:";
-$a->strings["Photo:"] = "Foto:";
-$a->strings["Please visit %s to approve or reject the suggestion."] = "Favor visitar %s para aprovar ou rejeitar a sugestão.";
-$a->strings["[Friendica:Notify] Connection accepted"] = "[Friendica:Notificação] Conexão aceita";
-$a->strings["'%1\$s' has acepted your connection request at %2\$s"] = "'%1\$s' sua solicitação de conexão foi aceita em %2\$s";
-$a->strings["%2\$s has accepted your [url=%1\$s]connection request[/url]."] = "%2\$s Foi aceita [url=%1\$s] a conexão solicitada[/url].";
-$a->strings["You are now mutual friends and may exchange status updates, photos, and email\n\twithout restriction."] = "Você agora são amigos em comum e podem trocar atualizações de status, fotos e e-mail\n\tsem restrições.";
-$a->strings["Please visit %s  if you wish to make any changes to this relationship."] = "Por favor, visite %s se você desejar fazer quaisquer alterações a este relacionamento.";
-$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' optou por aceitá-lo um \"fã\", o que restringe algumas formas de comunicação - como mensagens privadas e algumas interações de perfil. Se esta é uma página de celebridade ou de uma comunidade, essas configurações foram aplicadas automaticamente.";
-$a->strings["'%1\$s' may choose to extend this into a two-way or more permissive relationship in the future. "] = "'%1\$s' pode optar no futuro por estender isso para um relacionamento bidirecional ou superior permissivo.";
-$a->strings["[Friendica System:Notify] registration request"] = "[Friendica: Notificação do Sistema] solicitação de cadastro";
-$a->strings["You've received a registration request from '%1\$s' at %2\$s"] = "Você recebeu um pedido de cadastro de '%1\$s' em %2\$s";
-$a->strings["You've received a [url=%1\$s]registration request[/url] from %2\$s."] = "Você recebeu uma [url=%1\$s]solicitação de cadastro[/url] de %2\$s.";
-$a->strings["Full Name:\t%1\$s\\nSite Location:\t%2\$s\\nLogin Name:\t%3\$s (%4\$s)"] = "Nome completo:\t%1\$s\\nLocal do Site:\t%2\$s\\nNome de Login:\t%3\$s (%4\$s)";
-$a->strings["Please visit %s to approve or reject the request."] = "Por favor, visite %s para aprovar ou rejeitar a solicitação.";
-$a->strings["Embedded content"] = "Conteúdo incorporado";
-$a->strings["Embedding disabled"] = "A incorporação está desabilitada";
-$a->strings["Error decoding account file"] = "Erro ao decodificar arquivo de conta";
-$a->strings["Error! No version data in file! This is not a Friendica account file?"] = "Erro! Nenhum arquivo de dados de versão! Esse não é um arquivo de conta do Friendica?";
-$a->strings["Error! Cannot check nickname"] = "Erro! Não consigo conferir o apelido (nickname)";
-$a->strings["User '%s' already exists on this server!"] = "User '%s' já existe nesse servidor!";
-$a->strings["User creation error"] = "Erro na criação do usuário";
-$a->strings["User profile creation error"] = "Erro na criação do perfil do Usuário";
-$a->strings["%d contact not imported"] = array(
-       0 => "%d contato não foi importado",
-       1 => "%d contatos não foram importados",
+$a->strings["An invitation is required."] = "É necessário um convite.";
+$a->strings["Invitation could not be verified."] = "Não foi possível verificar o convite.";
+$a->strings["Invalid OpenID url"] = "A URL do OpenID é inválida";
+$a->strings["Please enter the required information."] = "Por favor, forneça a informação solicitada.";
+$a->strings["Please use a shorter name."] = "Por favor, use um nome mais curto.";
+$a->strings["Name too short."] = "O nome é muito curto.";
+$a->strings["That doesn't appear to be your full (First Last) name."] = "Isso não parece ser o seu nome completo (Nome Sobrenome).";
+$a->strings["Your email domain is not among those allowed on this site."] = "O domínio do seu e-mail não está entre os permitidos neste site.";
+$a->strings["Not a valid email address."] = "Não é um endereço de e-mail válido.";
+$a->strings["Cannot use that email."] = "Não é possível usar esse e-mail.";
+$a->strings["Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and must also begin with a letter."] = "A sua identificação pode conter somente os caracteres \"a-z\", \"0-9\", \"-\", e \"_\", além disso, deve começar com uma letra.";
+$a->strings["Nickname is already registered. Please choose another."] = "Esta identificação já foi registrada. Por favor, escolha outra.";
+$a->strings["Nickname was once registered here and may not be re-used. Please choose another."] = "Essa identificação já foi registrada e não pode ser reutilizada. Por favor, escolha outra.";
+$a->strings["SERIOUS ERROR: Generation of security keys failed."] = "ERRO GRAVE: Não foi possível gerar as chaves de segurança.";
+$a->strings["An error occurred during registration. Please try again."] = "Ocorreu um erro durante o registro. Por favor, tente novamente.";
+$a->strings["An error occurred creating your default profile. Please try again."] = "Ocorreu um erro na criação do seu perfil padrão. Por favor, tente novamente.";
+$a->strings["\n\t\tDear %1\$s,\n\t\t\tThank you for registering at %2\$s. Your account has been created.\n\t"] = "\n\t\tCaro %1\$s,\n\t\t\tObrigado por se cadastrar em %2\$s. Sua conta foi criada.\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."] = "\n\t\tOs dados de login são os seguintes:\n\t\t\tLocal do Site:\t%3\$s\n\t\t\tNome de Login:\t%1\$s\n\t\t\tSenha:\t%5\$s\n\n\t\tVocê pode alterar sua senha na página de \"Configurações\" da sua conta após fazer o login\n\n\t\tPor favor, dedique alguns minutos na página para rever as outras configurações da sua conta.\n\n\t\tTalvez você também queira incluir algumas informações básicas adicionais ao seu perfil padrão\n\t\t(na página de \"Perfis\") para que outras pessoas possam encontrá-lo com facilidade.\n\n\t\tRecomendamos que inclua seu nome completo, adicione uma foto do perfil,\n\t\tadicionar algumas \"palavras-chave\" (muito útil para fazer novas amizades) - e\n\t\ttalvez em que pais você mora; se você não quiser ser mais específico \n\t\tdo que isso.\n\n\t\tNós respeitamos plenamente seu direito à privacidade, e nenhum desses itens são necessários.\n\t\tSe você é novo por aqui e não conheço ninguém, eles podem ajuda-lo a fazer novas e interessantes amizades.\n\n\n\t\tObrigado e bem-vindo a %2\$s.";
+$a->strings["Registration details for %s"] = "Detalhes do registro de %s";
+$a->strings["Visible to everybody"] = "Visível para todos";
+$a->strings["This entry was edited"] = "Essa entrada foi editada";
+$a->strings["Private Message"] = "Mensagem privada";
+$a->strings["Edit"] = "Editar";
+$a->strings["save to folder"] = "salvar na pasta";
+$a->strings["add star"] = "destacar";
+$a->strings["remove star"] = "remover o destaque";
+$a->strings["toggle star status"] = "ativa/desativa o destaque";
+$a->strings["starred"] = "marcado com estrela";
+$a->strings["ignore thread"] = "ignorar tópico";
+$a->strings["unignore thread"] = "deixar de ignorar tópico";
+$a->strings["toggle ignore status"] = "alternar status ignorar";
+$a->strings["ignored"] = "Ignorado";
+$a->strings["add tag"] = "adicionar etiqueta";
+$a->strings["I like this (toggle)"] = "Eu gostei disso (alternar)";
+$a->strings["like"] = "gostei";
+$a->strings["I don't like this (toggle)"] = "Eu não gostei disso (alternar)";
+$a->strings["dislike"] = "desgostar";
+$a->strings["Share this"] = "Compartilhar isso";
+$a->strings["share"] = "compartilhar";
+$a->strings["to"] = "para";
+$a->strings["via"] = "via";
+$a->strings["Wall-to-Wall"] = "Mural-para-mural";
+$a->strings["via Wall-To-Wall:"] = "via Mural-para-mural";
+$a->strings["%d comment"] = array(
+       0 => "%d comentário",
+       1 => "%d comentários",
+);
+$a->strings["This is you"] = "Este(a) é você";
+$a->strings["Bold"] = "Negrito";
+$a->strings["Italic"] = "Itálico";
+$a->strings["Underline"] = "Sublinhado";
+$a->strings["Quote"] = "Citação";
+$a->strings["Code"] = "Código";
+$a->strings["Image"] = "Imagem";
+$a->strings["Link"] = "Link";
+$a->strings["Video"] = "Vídeo";
+$a->strings["Item not available."] = "O item não está disponível.";
+$a->strings["Item was not found."] = "O item não foi encontrado.";
+$a->strings["Number of daily wall messages for %s exceeded. Message failed."] = "O número diário de mensagens do mural de %s foi excedido. Não foi possível enviar a mensagem.";
+$a->strings["No recipient selected."] = "Não foi selecionado nenhum destinatário.";
+$a->strings["Unable to check your home location."] = "Não foi possível verificar a sua localização.";
+$a->strings["Message could not be sent."] = "Não foi possível enviar a mensagem.";
+$a->strings["Message collection failure."] = "Falha na coleta de mensagens.";
+$a->strings["Message sent."] = "A mensagem foi enviada.";
+$a->strings["No recipient."] = "Nenhum destinatário.";
+$a->strings["Send Private Message"] = "Enviar mensagem privada";
+$a->strings["If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders."] = "Caso você deseje uma resposta de %s, por favor verifique se as configurações de privacidade em seu site permitem o recebimento de mensagens de remetentes desconhecidos.";
+$a->strings["To:"] = "Para:";
+$a->strings["Subject:"] = "Assunto:";
+$a->strings["Your message:"] = "Sua mensagem:";
+$a->strings["Group created."] = "O grupo foi criado.";
+$a->strings["Could not create group."] = "Não foi possível criar o grupo.";
+$a->strings["Group not found."] = "O grupo não foi encontrado.";
+$a->strings["Group name changed."] = "O nome do grupo foi alterado.";
+$a->strings["Save Group"] = "Salvar o grupo";
+$a->strings["Create a group of contacts/friends."] = "Criar um grupo de contatos/amigos.";
+$a->strings["Group Name: "] = "Nome do grupo: ";
+$a->strings["Group removed."] = "O grupo foi removido.";
+$a->strings["Unable to remove group."] = "Não foi possível remover o grupo.";
+$a->strings["Group Editor"] = "Editor de grupo";
+$a->strings["Members"] = "Membros";
+$a->strings["All Contacts"] = "Todos os contatos";
+$a->strings["Click on a contact to add or remove."] = "Clique em um contato para adicionar ou remover.";
+$a->strings["No potential page delegates located."] = "Nenhuma página delegada potencial localizada.";
+$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."] = "Delegados podem administrar todos os aspectos dessa página/conta exceto por configurações básicas da conta.\nFavor não delegar sua conta pessoal para ninguém que você não confie inteiramente.";
+$a->strings["Existing Page Managers"] = "Administradores de Páginas Existentes";
+$a->strings["Existing Page Delegates"] = "Delegados de Páginas Existentes";
+$a->strings["Potential Delegates"] = "Delegados Potenciais";
+$a->strings["Remove"] = "Remover";
+$a->strings["Add"] = "Adicionar";
+$a->strings["No entries."] = "Sem entradas.";
+$a->strings["Invalid request identifier."] = "Identificador de solicitação inválido";
+$a->strings["Discard"] = "Descartar";
+$a->strings["Ignore"] = "Ignorar";
+$a->strings["System"] = "Sistema";
+$a->strings["Personal"] = "Pessoal";
+$a->strings["Show Ignored Requests"] = "Exibir solicitações ignoradas";
+$a->strings["Hide Ignored Requests"] = "Ocultar solicitações ignoradas";
+$a->strings["Notification type: "] = "Tipo de notificação:";
+$a->strings["Friend Suggestion"] = "Sugestão de amigo";
+$a->strings["suggested by %s"] = "sugerido por %s";
+$a->strings["Hide this contact from others"] = "Ocultar este contato dos outros";
+$a->strings["Post a new friend activity"] = "Publicar a adição de amigo";
+$a->strings["if applicable"] = "se aplicável";
+$a->strings["Approve"] = "Aprovar";
+$a->strings["Claims to be known to you: "] = "Alega ser conhecido por você: ";
+$a->strings["yes"] = "sim";
+$a->strings["no"] = "não";
+$a->strings["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: "] = "Sua conexão deve ser bidirecional ou não? \"Amigo\" implica que você permite  ler e  se inscreve nos  textos dele. \"Fan / admirador\" significa que você permite  ler, mas você não quer ler os textos dele. Aprovar como:";
+$a->strings["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: "] = "Sua conexão deve ser bidirecional ou não? \"Amigo\" implica que você permite a leitura e assina o textos dele. \"Compartilhador\" significa que você permite a leitura mas você não quer ler os textos dele. Aprova como:";
+$a->strings["Friend"] = "Amigo";
+$a->strings["Sharer"] = "Compartilhador";
+$a->strings["Fan/Admirer"] = "Fã/Admirador";
+$a->strings["Friend/Connect Request"] = "Solicitação de amizade/conexão";
+$a->strings["New Follower"] = "Novo acompanhante";
+$a->strings["No introductions."] = "Sem apresentações.";
+$a->strings["%s liked %s's post"] = "%s gostou da publicação de %s";
+$a->strings["%s disliked %s's post"] = "%s desgostou da publicação de %s";
+$a->strings["%s is now friends with %s"] = "%s agora é amigo de %s";
+$a->strings["%s created a new post"] = "%s criou uma nova publicação";
+$a->strings["%s commented on %s's post"] = "%s comentou uma publicação de %s";
+$a->strings["No more network notifications."] = "Nenhuma notificação de rede.";
+$a->strings["Network Notifications"] = "Notificações de rede";
+$a->strings["No more system notifications."] = "Não fazer notificações de sistema.";
+$a->strings["System Notifications"] = "Notificações de sistema";
+$a->strings["No more personal notifications."] = "Nenhuma notificação pessoal.";
+$a->strings["Personal Notifications"] = "Notificações pessoais";
+$a->strings["No more home notifications."] = "Não existe mais nenhuma notificação pessoal.";
+$a->strings["Home Notifications"] = "Notificações pessoais";
+$a->strings["No profile"] = "Nenhum perfil";
+$a->strings["everybody"] = "todos";
+$a->strings["Account"] = "Conta";
+$a->strings["Additional features"] = "Funcionalidades adicionais";
+$a->strings["Display"] = "Tela";
+$a->strings["Social Networks"] = "Redes Sociais";
+$a->strings["Plugins"] = "Plugins";
+$a->strings["Connected apps"] = "Aplicações conectadas";
+$a->strings["Export personal data"] = "Exportar dados pessoais";
+$a->strings["Remove account"] = "Remover a conta";
+$a->strings["Missing some important data!"] = "Está faltando algum dado importante!";
+$a->strings["Update"] = "Atualizar";
+$a->strings["Failed to connect with email account using the settings provided."] = "Não foi possível conectar à conta de e-mail com as configurações fornecidas.";
+$a->strings["Email settings updated."] = "As configurações de e-mail foram atualizadas.";
+$a->strings["Features updated"] = "Funcionalidades atualizadas";
+$a->strings["Relocate message has been send to your contacts"] = "A mensagem de relocação foi enviada para seus contatos";
+$a->strings["Passwords do not match. Password unchanged."] = "As senhas não correspondem. A senha não foi modificada.";
+$a->strings["Empty passwords are not allowed. Password unchanged."] = "Não é permitido uma senha em branco. A senha não foi modificada.";
+$a->strings["Wrong password."] = "Senha errada.";
+$a->strings["Password changed."] = "A senha foi modificada.";
+$a->strings["Password update failed. Please try again."] = "Não foi possível atualizar a senha. Por favor, tente novamente.";
+$a->strings[" Please use a shorter name."] = " Por favor, use um nome mais curto.";
+$a->strings[" Name too short."] = " O nome é muito curto.";
+$a->strings["Wrong Password"] = "Senha Errada";
+$a->strings[" Not valid email."] = " Não é um e-mail válido.";
+$a->strings[" Cannot change to that email."] = " Não foi possível alterar para esse e-mail.";
+$a->strings["Private forum has no privacy permissions. Using default privacy group."] = "O fórum privado não possui permissões de privacidade. Utilizando o grupo de privacidade padrão.";
+$a->strings["Private forum has no privacy permissions and no default privacy group."] = "O fórum privado não possui permissões de privacidade e nenhum grupo de privacidade padrão.";
+$a->strings["Settings updated."] = "As configurações foram atualizadas.";
+$a->strings["Add application"] = "Adicionar aplicação";
+$a->strings["Save Settings"] = "Salvar configurações";
+$a->strings["Name"] = "Nome";
+$a->strings["Consumer Key"] = "Chave do consumidor";
+$a->strings["Consumer Secret"] = "Segredo do consumidor";
+$a->strings["Redirect"] = "Redirecionar";
+$a->strings["Icon url"] = "URL do ícone";
+$a->strings["You can't edit this application."] = "Você não pode editar esta aplicação.";
+$a->strings["Connected Apps"] = "Aplicações conectadas";
+$a->strings["Client key starts with"] = "A chave do cliente inicia com";
+$a->strings["No name"] = "Sem nome";
+$a->strings["Remove authorization"] = "Remover autorização";
+$a->strings["No Plugin settings configured"] = "Não foi definida nenhuma configuração de plugin";
+$a->strings["Plugin Settings"] = "Configurações do plugin";
+$a->strings["Off"] = "Off";
+$a->strings["On"] = "On";
+$a->strings["Additional Features"] = "Funcionalidades Adicionais";
+$a->strings["Built-in support for %s connectivity is %s"] = "O suporte interno para conectividade de %s está %s";
+$a->strings["enabled"] = "habilitado";
+$a->strings["disabled"] = "desabilitado";
+$a->strings["StatusNet"] = "StatusNet";
+$a->strings["Email access is disabled on this site."] = "O acesso ao e-mail está desabilitado neste site.";
+$a->strings["Email/Mailbox Setup"] = "Configurações do e-mail/caixa postal";
+$a->strings["If you wish to communicate with email contacts using this service (optional), please specify how to connect to your mailbox."] = "Caso você deseje se comunicar com contatos de e-mail usando este serviço (opcional), por favor especifique como se conectar à sua caixa postal.";
+$a->strings["Last successful email check:"] = "Última checagem bem sucedida de e-mail:";
+$a->strings["IMAP server name:"] = "Nome do servidor IMAP:";
+$a->strings["IMAP port:"] = "Porta do IMAP:";
+$a->strings["Security:"] = "Segurança:";
+$a->strings["None"] = "Nenhuma";
+$a->strings["Email login name:"] = "Nome de usuário do e-mail:";
+$a->strings["Email password:"] = "Senha do e-mail:";
+$a->strings["Reply-to address:"] = "Endereço de resposta (Reply-to):";
+$a->strings["Send public posts to all email contacts:"] = "Enviar publicações públicas para todos os contatos de e-mail:";
+$a->strings["Action after import:"] = "Ação após a importação:";
+$a->strings["Mark as seen"] = "Marcar como visto";
+$a->strings["Move to folder"] = "Mover para pasta";
+$a->strings["Move to folder:"] = "Mover para pasta:";
+$a->strings["No special theme for mobile devices"] = "Nenhum tema especial para dispositivos móveis";
+$a->strings["Display Settings"] = "Configurações de exibição";
+$a->strings["Display Theme:"] = "Tema do perfil:";
+$a->strings["Mobile Theme:"] = "Tema para dispositivos móveis:";
+$a->strings["Update browser every xx seconds"] = "Atualizar o navegador a cada xx segundos";
+$a->strings["Minimum of 10 seconds, no maximum"] = "Mínimo de 10 segundos, não possui máximo";
+$a->strings["Number of items to display per page:"] = "Número de itens a serem exibidos por página:";
+$a->strings["Maximum of 100 items"] = "Máximo de 100 itens";
+$a->strings["Number of items to display per page when viewed from mobile device:"] = "Número de itens a serem exibidos por página quando visualizando em um dispositivo móvel:";
+$a->strings["Don't show emoticons"] = "Não exibir emoticons";
+$a->strings["Don't show notices"] = "Não mostra avisos";
+$a->strings["Infinite scroll"] = "rolamento infinito";
+$a->strings["Automatic updates only at the top of the network page"] = "Atualizações automáticas só na parte superior da página da rede";
+$a->strings["User Types"] = "Tipos de Usuários";
+$a->strings["Community Types"] = "Tipos de Comunidades";
+$a->strings["Normal Account Page"] = "Página de conta normal";
+$a->strings["This account is a normal personal profile"] = "Essa conta é um perfil pessoal normal";
+$a->strings["Soapbox Page"] = "Página de vitrine";
+$a->strings["Automatically approve all connection/friend requests as read-only fans"] = "Aprova automaticamente todas as solicitações de conexão/amizade como fãs com permissão somente de leitura";
+$a->strings["Community Forum/Celebrity Account"] = "Conta de fórum de comunidade/celebridade";
+$a->strings["Automatically approve all connection/friend requests as read-write fans"] = "Aprova automaticamente todas as solicitações de conexão/amizade como fãs com permissão de leitura e escrita";
+$a->strings["Automatic Friend Page"] = "Página de amigo automático";
+$a->strings["Automatically approve all connection/friend requests as friends"] = "Aprovar automaticamente todas as solicitações de conexão/amizade como amigos";
+$a->strings["Private Forum [Experimental]"] = "Fórum privado [Experimental]";
+$a->strings["Private forum - approved members only"] = "Fórum privado - somente membros aprovados";
+$a->strings["OpenID:"] = "OpenID:";
+$a->strings["(Optional) Allow this OpenID to login to this account."] = "(Opcional) Permitir o uso deste OpenID para entrar nesta conta";
+$a->strings["Publish your default profile in your local site directory?"] = "Publicar o seu perfil padrão no diretório local do seu site?";
+$a->strings["No"] = "Não";
+$a->strings["Publish your default profile in the global social directory?"] = "Publicar o seu perfil padrão no diretório social global?";
+$a->strings["Hide your contact/friend list from viewers of your default profile?"] = "Ocultar visualização da sua lista de contatos/amigos no seu perfil padrão? ";
+$a->strings["If enabled, posting public messages to Diaspora and other networks isn't possible."] = "Se ativado, postar mensagens públicas no Diáspora e em outras redes não será possível.";
+$a->strings["Allow friends to post to your profile page?"] = "Permitir aos amigos publicarem na sua página de perfil?";
+$a->strings["Allow friends to tag your posts?"] = "Permitir aos amigos etiquetarem suas publicações?";
+$a->strings["Allow us to suggest you as a potential friend to new members?"] = "Permitir que você seja sugerido como amigo em potencial para novos membros?";
+$a->strings["Permit unknown people to send you private mail?"] = "Permitir que pessoas desconhecidas lhe enviem mensagens privadas?";
+$a->strings["Profile is <strong>not published</strong>."] = "O perfil <strong>não está publicado</strong>.";
+$a->strings["or"] = "ou";
+$a->strings["Your Identity Address is"] = "O endereço da sua identidade é";
+$a->strings["Automatically expire posts after this many days:"] = "Expirar automaticamente publicações após tantos dias:";
+$a->strings["If empty, posts will not expire. Expired posts will be deleted"] = "Se deixado em branco, as publicações não irão expirar. Publicações expiradas serão excluídas.";
+$a->strings["Advanced expiration settings"] = "Configurações avançadas de expiração";
+$a->strings["Advanced Expiration"] = "Expiração avançada";
+$a->strings["Expire posts:"] = "Expirar publicações:";
+$a->strings["Expire personal notes:"] = "Expirar notas pessoais:";
+$a->strings["Expire starred posts:"] = "Expirar publicações destacadas:";
+$a->strings["Expire photos:"] = "Expirar fotos:";
+$a->strings["Only expire posts by others:"] = "Expirar somente as publicações de outras pessoas:";
+$a->strings["Account Settings"] = "Configurações da conta";
+$a->strings["Password Settings"] = "Configurações da senha";
+$a->strings["New Password:"] = "Nova senha:";
+$a->strings["Confirm:"] = "Confirme:";
+$a->strings["Leave password fields blank unless changing"] = "Deixe os campos de senha em branco, a não ser que você queira alterá-la";
+$a->strings["Current Password:"] = "Senha Atual:";
+$a->strings["Your current password to confirm the changes"] = "Sua senha atual para confirmar as mudanças";
+$a->strings["Password:"] = "Senha:";
+$a->strings["Basic Settings"] = "Configurações básicas";
+$a->strings["Email Address:"] = "Endereço de e-mail:";
+$a->strings["Your Timezone:"] = "Seu fuso horário:";
+$a->strings["Default Post Location:"] = "Localização padrão de suas publicações:";
+$a->strings["Use Browser Location:"] = "Usar localizador do navegador:";
+$a->strings["Security and Privacy Settings"] = "Configurações de segurança e privacidade";
+$a->strings["Maximum Friend Requests/Day:"] = "Número máximo de requisições de amizade por dia:";
+$a->strings["(to prevent spam abuse)"] = "(para prevenir abuso de spammers)";
+$a->strings["Default Post Permissions"] = "Permissões padrão de publicação";
+$a->strings["(click to open/close)"] = "(clique para abrir/fechar)";
+$a->strings["Show to Groups"] = "Mostre para Grupos";
+$a->strings["Show to Contacts"] = "Mostre para Contatos";
+$a->strings["Default Private Post"] = "Publicação Privada Padrão";
+$a->strings["Default Public Post"] = "Publicação Pública Padrão";
+$a->strings["Default Permissions for New Posts"] = "Permissões Padrão para Publicações Novas";
+$a->strings["Maximum private messages per day from unknown people:"] = "Número máximo de mensagens privadas de pessoas desconhecidas, por dia:";
+$a->strings["Notification Settings"] = "Configurações de notificação";
+$a->strings["By default post a status message when:"] = "Por padrão, publicar uma mensagem de status quando:";
+$a->strings["accepting a friend request"] = "aceitar uma requisição de amizade";
+$a->strings["joining a forum/community"] = "associar-se a um fórum/comunidade";
+$a->strings["making an <em>interesting</em> profile change"] = "fazer uma modificação <em>interessante</em> em seu perfil";
+$a->strings["Send a notification email when:"] = "Enviar um e-mail de notificação sempre que:";
+$a->strings["You receive an introduction"] = "Você recebeu uma apresentação";
+$a->strings["Your introductions are confirmed"] = "Suas apresentações forem confirmadas";
+$a->strings["Someone writes on your profile wall"] = "Alguém escrever no mural do seu perfil";
+$a->strings["Someone writes a followup comment"] = "Alguém comentar a sua mensagem";
+$a->strings["You receive a private message"] = "Você recebeu uma mensagem privada";
+$a->strings["You receive a friend suggestion"] = "Você recebe uma suggestão de amigo";
+$a->strings["You are tagged in a post"] = "Você foi etiquetado em uma publicação";
+$a->strings["You are poked/prodded/etc. in a post"] = "Você está cutucado/incitado/etc. em uma publicação";
+$a->strings["Text-only notification emails"] = "Emails de notificação apenas de texto";
+$a->strings["Send text only notification emails, without the html part"] = "Enviar e-mails de notificação apenas de texto, sem a parte html";
+$a->strings["Advanced Account/Page Type Settings"] = "Conta avançada/Configurações do tipo de página";
+$a->strings["Change the behaviour of this account for special situations"] = "Modificar o comportamento desta conta em situações especiais";
+$a->strings["Relocate"] = "Relocação";
+$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."] = "Se você moveu esse perfil de outro servidor e algum dos seus contatos não recebe atualizações, pressione esse botão.";
+$a->strings["Resend relocate message to contacts"] = "Reenviar mensagem de relocação para os contatos";
+$a->strings["Common Friends"] = "Amigos em Comum";
+$a->strings["No contacts in common."] = "Nenhum contato em comum.";
+$a->strings["Remote privacy information not available."] = "Não existe informação disponível sobre a privacidade remota.";
+$a->strings["Visible to:"] = "Visível para:";
+$a->strings["%d contact edited."] = array(
+       0 => "%d contato editado",
+       1 => "%d contatos editados",
+);
+$a->strings["Could not access contact record."] = "Não foi possível acessar o registro do contato.";
+$a->strings["Could not locate selected profile."] = "Não foi possível localizar o perfil selecionado.";
+$a->strings["Contact updated."] = "O contato foi atualizado.";
+$a->strings["Failed to update contact record."] = "Não foi possível atualizar o registro do contato.";
+$a->strings["Contact has been blocked"] = "O contato foi bloqueado";
+$a->strings["Contact has been unblocked"] = "O contato foi desbloqueado";
+$a->strings["Contact has been ignored"] = "O contato foi ignorado";
+$a->strings["Contact has been unignored"] = "O contato deixou de ser ignorado";
+$a->strings["Contact has been archived"] = "O contato foi arquivado";
+$a->strings["Contact has been unarchived"] = "O contato foi desarquivado";
+$a->strings["Do you really want to delete this contact?"] = "Você realmente deseja deletar esse contato?";
+$a->strings["Contact has been removed."] = "O contato foi removido.";
+$a->strings["You are mutual friends with %s"] = "Você possui uma amizade mútua com %s";
+$a->strings["You are sharing with %s"] = "Você está compartilhando com %s";
+$a->strings["%s is sharing with you"] = "%s está compartilhando com você";
+$a->strings["Private communications are not available for this contact."] = "As comunicações privadas não estão disponíveis para este contato.";
+$a->strings["Never"] = "Nunca";
+$a->strings["(Update was successful)"] = "(A atualização foi bem sucedida)";
+$a->strings["(Update was not successful)"] = "(A atualização não foi bem sucedida)";
+$a->strings["Suggest friends"] = "Sugerir amigos";
+$a->strings["Network type: %s"] = "Tipo de rede: %s";
+$a->strings["View all contacts"] = "Ver todos os contatos";
+$a->strings["Unblock"] = "Desbloquear";
+$a->strings["Block"] = "Bloquear";
+$a->strings["Toggle Blocked status"] = "Alternar o status de bloqueio";
+$a->strings["Unignore"] = "Deixar de ignorar";
+$a->strings["Toggle Ignored status"] = "Alternar o status de ignorado";
+$a->strings["Unarchive"] = "Desarquivar";
+$a->strings["Archive"] = "Arquivar";
+$a->strings["Toggle Archive status"] = "Alternar o status de arquivamento";
+$a->strings["Repair"] = "Reparar";
+$a->strings["Advanced Contact Settings"] = "Configurações avançadas do contato";
+$a->strings["Communications lost with this contact!"] = "As comunicações com esse contato foram perdidas!";
+$a->strings["Fetch further information for feeds"] = "Pega mais informações para feeds";
+$a->strings["Disabled"] = "Desabilitado";
+$a->strings["Fetch information"] = "Buscar informações";
+$a->strings["Fetch information and keywords"] = "Buscar informação e palavras-chave";
+$a->strings["Contact Editor"] = "Editor de contatos";
+$a->strings["Profile Visibility"] = "Visibilidade do perfil";
+$a->strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Por favor, selecione o perfil que você gostaria de exibir para %s quando estiver visualizando seu perfil de modo seguro.";
+$a->strings["Contact Information / Notes"] = "Informações sobre o contato / Anotações";
+$a->strings["Edit contact notes"] = "Editar as anotações do contato";
+$a->strings["Visit %s's profile [%s]"] = "Visitar o perfil de %s [%s]";
+$a->strings["Block/Unblock contact"] = "Bloquear/desbloquear o contato";
+$a->strings["Ignore contact"] = "Ignorar o contato";
+$a->strings["Repair URL settings"] = "Reparar as definições de URL";
+$a->strings["View conversations"] = "Ver as conversas";
+$a->strings["Delete contact"] = "Excluir o contato";
+$a->strings["Last update:"] = "Última atualização:";
+$a->strings["Update public posts"] = "Atualizar publicações públicas";
+$a->strings["Update now"] = "Atualizar agora";
+$a->strings["Currently blocked"] = "Atualmente bloqueado";
+$a->strings["Currently ignored"] = "Atualmente ignorado";
+$a->strings["Currently archived"] = "Atualmente arquivado";
+$a->strings["Replies/likes to your public posts <strong>may</strong> still be visible"] = "Respostas/gostadas associados às suas publicações <strong>ainda podem</strong> estar visíveis";
+$a->strings["Notification for new posts"] = "Notificações para novas publicações";
+$a->strings["Send a notification of every new post of this contact"] = "Envie uma notificação para todos as novas publicações deste contato";
+$a->strings["Blacklisted keywords"] = "Palavras-chave na Lista Negra";
+$a->strings["Comma separated list of keywords that should not be converted to hashtags, when \"Fetch information and keywords\" is selected"] = "Lista de palavras-chave separadas por vírgulas que não devem ser convertidas para hashtags, quando \"Buscar informações e palavras-chave\" for selecionado.";
+$a->strings["Suggestions"] = "Sugestões";
+$a->strings["Suggest potential friends"] = "Sugerir amigos em potencial";
+$a->strings["Show all contacts"] = "Exibe todos os contatos";
+$a->strings["Unblocked"] = "Desbloquear";
+$a->strings["Only show unblocked contacts"] = "Exibe somente contatos desbloqueados";
+$a->strings["Blocked"] = "Bloqueado";
+$a->strings["Only show blocked contacts"] = "Exibe somente contatos bloqueados";
+$a->strings["Ignored"] = "Ignorados";
+$a->strings["Only show ignored contacts"] = "Exibe somente contatos ignorados";
+$a->strings["Archived"] = "Arquivados";
+$a->strings["Only show archived contacts"] = "Exibe somente contatos arquivados";
+$a->strings["Hidden"] = "Ocultos";
+$a->strings["Only show hidden contacts"] = "Exibe somente contatos ocultos";
+$a->strings["Mutual Friendship"] = "Amizade mútua";
+$a->strings["is a fan of yours"] = "é um fã seu";
+$a->strings["you are a fan of"] = "você é um fã de";
+$a->strings["Edit contact"] = "Editar o contato";
+$a->strings["Search your contacts"] = "Pesquisar seus contatos";
+$a->strings["Finding: "] = "Pesquisando: ";
+$a->strings["Sorry, maybe your upload is bigger than the PHP configuration allows"] = "Lamento, talvez seu envio seja maior do que as configurações do PHP permitem";
+$a->strings["Or - did you try to upload an empty file?"] = "Ou - você tentou enviar um arquivo vazio?";
+$a->strings["File exceeds size limit of %d"] = "O arquivo excedeu o tamanho limite de %d";
+$a->strings["File upload failed."] = "Não foi possível enviar o arquivo.";
+$a->strings["[Embedded content - reload page to view]"] = "[Conteúdo incorporado - recarregue a página para ver]";
+$a->strings["Export account"] = "Exportar conta";
+$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."] = "Exporta suas informações de conta e contatos. Use para fazer uma cópia de segurança de sua conta e/ou para movê-la para outro servidor.";
+$a->strings["Export all"] = "Exportar tudo";
+$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)"] = "Exportar as informações de sua conta, contatos e todos os seus items como JSON. Pode ser um arquivo muito grande, e pode levar bastante tempo. Use isto para fazer uma cópia de segurança completa da sua conta (fotos não são exportadas)";
+$a->strings["Registration successful. Please check your email for further instructions."] = "O registro foi bem sucedido. Por favor, verifique seu e-mail para maiores informações.";
+$a->strings["Failed to send email message. Here your accout details:<br> login: %s<br> password: %s<br><br>You can change your password after login."] = "Falha ao enviar mensagem de email. Estes são os dados da sua conta:<br> login: %s<br> senha: %s<br><br>Você pode alterar sua senha após fazer o login.";
+$a->strings["Your registration can not be processed."] = "Não foi possível processar o seu registro.";
+$a->strings["Your registration is pending approval by the site owner."] = "A aprovação do seu registro está pendente junto ao administrador do site.";
+$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Este site excedeu o limite diário permitido para registros de novas contas.\nPor favor tente novamente amanhã.";
+$a->strings["You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking 'Register'."] = "Você pode (opcionalmente) preencher este formulário via OpenID, fornecendo seu OpenID e clicando em 'Registrar'.";
+$a->strings["If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items."] = "Se você não está familiarizado com o OpenID, por favor, deixe esse campo em branco e preencha os outros itens.";
+$a->strings["Your OpenID (optional): "] = "Seu OpenID (opcional): ";
+$a->strings["Include your profile in member directory?"] = "Incluir o seu perfil no diretório de membros?";
+$a->strings["Membership on this site is by invitation only."] = "A associação a este site só pode ser feita mediante convite.";
+$a->strings["Your invitation ID: "] = "A ID do seu convite: ";
+$a->strings["Registration"] = "Registro";
+$a->strings["Your Full Name (e.g. Joe Smith): "] = "Seu nome completo (ex: José da Silva): ";
+$a->strings["Your Email Address: "] = "Seu endereço de e-mail: ";
+$a->strings["Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be '<strong>nickname@\$sitename</strong>'."] = "Selecione uma identificação para o perfil. Ela deve começar com um caractere alfabético. O endereço do seu perfil neste site será '<strong>identificação@\$sitename</strong>'";
+$a->strings["Choose a nickname: "] = "Escolha uma identificação: ";
+$a->strings["Import"] = "Importar";
+$a->strings["Import your profile to this friendica instance"] = "Importa seu perfil  desta instância do friendica";
+$a->strings["Post successful."] = "Publicado com sucesso.";
+$a->strings["System down for maintenance"] = "Sistema em manutenção";
+$a->strings["Access to this profile has been restricted."] = "O acesso a este perfil está restrito.";
+$a->strings["Tips for New Members"] = "Dicas para novos membros";
+$a->strings["Public access denied."] = "Acesso público negado.";
+$a->strings["No videos selected"] = "Nenhum vídeo selecionado";
+$a->strings["Access to this item is restricted."] = "O acesso a este item é restrito.";
+$a->strings["View Album"] = "Ver álbum";
+$a->strings["Recent Videos"] = "Vídeos Recentes";
+$a->strings["Upload New Videos"] = "Envie Novos Vídeos";
+$a->strings["Manage Identities and/or Pages"] = "Gerenciar identidades e/ou páginas";
+$a->strings["Toggle between different identities or community/group pages which share your account details or which you have been granted \"manage\" permissions"] = "Alterne entre diferentes identidades ou páginas de comunidade/grupo que dividem detalhes da sua conta ou que você tenha fornecido permissões de \"administração\"";
+$a->strings["Select an identity to manage: "] = "Selecione uma identidade para gerenciar: ";
+$a->strings["Item not found"] = "O item não foi encontrado";
+$a->strings["Edit post"] = "Editar a publicação";
+$a->strings["People Search"] = "Pesquisar pessoas";
+$a->strings["No matches"] = "Nenhuma correspondência";
+$a->strings["Account approved."] = "A conta foi aprovada.";
+$a->strings["Registration revoked for %s"] = "O registro de %s foi revogado";
+$a->strings["Please login."] = "Por favor, autentique-se.";
+$a->strings["This introduction has already been accepted."] = "Esta apresentação já foi aceita.";
+$a->strings["Profile location is not valid or does not contain profile information."] = "A localização do perfil não é válida ou não contém uma informação de perfil.";
+$a->strings["Warning: profile location has no identifiable owner name."] = "Aviso: a localização do perfil não possui nenhum nome identificável do seu dono.";
+$a->strings["Warning: profile location has no profile photo."] = "Aviso: a localização do perfil não possui nenhuma foto do perfil.";
+$a->strings["%d required parameter was not found at the given location"] = array(
+       0 => "O parâmetro requerido %d não foi encontrado na localização fornecida",
+       1 => "Os parâmetros requeridos %d não foram encontrados na localização fornecida",
+);
+$a->strings["Introduction complete."] = "A apresentação foi finalizada.";
+$a->strings["Unrecoverable protocol error."] = "Ocorreu um erro irrecuperável de protocolo.";
+$a->strings["Profile unavailable."] = "O perfil não está disponível.";
+$a->strings["%s has received too many connection requests today."] = "%s recebeu solicitações de conexão em excesso hoje.";
+$a->strings["Spam protection measures have been invoked."] = "As medidas de proteção contra spam foram ativadas.";
+$a->strings["Friends are advised to please try again in 24 hours."] = "Os amigos foram notificados para tentar novamente em 24 horas.";
+$a->strings["Invalid locator"] = "Localizador inválido";
+$a->strings["Invalid email address."] = "Endereço de e-mail inválido.";
+$a->strings["This account has not been configured for email. Request failed."] = "Essa conta não foi configurada para e-mails. Não foi possível atender à solicitação.";
+$a->strings["Unable to resolve your name at the provided location."] = "Não foi possível encontrar a sua identificação no endereço indicado.";
+$a->strings["You have already introduced yourself here."] = "Você já fez a sua apresentação aqui.";
+$a->strings["Apparently you are already friends with %s."] = "Aparentemente você já é amigo de %s.";
+$a->strings["Invalid profile URL."] = "URL de perfil inválida.";
+$a->strings["Your introduction has been sent."] = "A sua apresentação foi enviada.";
+$a->strings["Please login to confirm introduction."] = "Por favor, autentique-se para confirmar a apresentação.";
+$a->strings["Incorrect identity currently logged in. Please login to <strong>this</strong> profile."] = "A identidade autenticada está incorreta. Por favor, entre como <strong>este</strong> perfil.";
+$a->strings["Hide this contact"] = "Ocultar este contato";
+$a->strings["Welcome home %s."] = "Bem-vindo(a) à sua página pessoal %s.";
+$a->strings["Please confirm your introduction/connection request to %s."] = "Por favor, confirme sua solicitação de apresentação/conexão para %s.";
+$a->strings["Please enter your 'Identity Address' from one of the following supported communications networks:"] = "Por favor, digite seu 'Endereço de Identificação' a partir de uma das seguintes redes de comunicação suportadas:";
+$a->strings["If you are not yet a member of the free social web, <a href=\"http://dir.friendica.com/siteinfo\">follow this link to find a public Friendica site and join us today</a>."] = "Caso você ainda não seja membro da rede social livre, <a href=\"http://dir.friendica.com/siteinfo\">clique aqui para encontrar um site Friendica público e junte-se à nós</a>.";
+$a->strings["Friend/Connection Request"] = "Solicitação de amizade/conexão";
+$a->strings["Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"] = "Examplos: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca";
+$a->strings["Please answer the following:"] = "Por favor, entre com as informações solicitadas:";
+$a->strings["Does %s know you?"] = "%s conhece você?";
+$a->strings["Add a personal note:"] = "Adicione uma anotação pessoal:";
+$a->strings["StatusNet/Federated Social Web"] = "StatusNet/Federated Social Web";
+$a->strings[" - please do not use this form.  Instead, enter %s into your Diaspora search bar."] = " - Por favor, não utilize esse formulário.  Ao invés disso, digite %s na sua barra de pesquisa do Diaspora.";
+$a->strings["Your Identity Address:"] = "Seu endereço de identificação:";
+$a->strings["Submit Request"] = "Enviar solicitação";
+$a->strings["Files"] = "Arquivos";
+$a->strings["Authorize application connection"] = "Autorizar a conexão com a aplicação";
+$a->strings["Return to your app and insert this Securty Code:"] = "Volte para a sua aplicação e digite este código de segurança:";
+$a->strings["Please login to continue."] = "Por favor, autentique-se para continuar.";
+$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Deseja autorizar esta aplicação a acessar suas publicações e contatos e/ou criar novas publicações para você?";
+$a->strings["Do you really want to delete this suggestion?"] = "Você realmente deseja deletar essa sugestão?";
+$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Não existe nenhuma sugestão disponível. Se este for um site novo, por favor tente novamente em 24 horas.";
+$a->strings["Ignore/Hide"] = "Ignorar/Ocultar";
+$a->strings["Contacts who are not members of a group"] = "Contatos que não são membros de um grupo";
+$a->strings["Contact not found."] = "O contato não foi encontrado.";
+$a->strings["Friend suggestion sent."] = "A sugestão de amigo foi enviada";
+$a->strings["Suggest Friends"] = "Sugerir amigos";
+$a->strings["Suggest a friend for %s"] = "Sugerir um amigo para %s";
+$a->strings["link"] = "ligação";
+$a->strings["No contacts."] = "Nenhum contato.";
+$a->strings["Theme settings updated."] = "As configurações do tema foram atualizadas.";
+$a->strings["Site"] = "Site";
+$a->strings["Users"] = "Usuários";
+$a->strings["Themes"] = "Temas";
+$a->strings["DB updates"] = "Atualizações do BD";
+$a->strings["Logs"] = "Relatórios";
+$a->strings["probe address"] = "prova endereço";
+$a->strings["check webfinger"] = "verifica webfinger";
+$a->strings["Plugin Features"] = "Recursos do plugin";
+$a->strings["diagnostics"] = "diagnóstico";
+$a->strings["User registrations waiting for confirmation"] = "Cadastros de novos usuários aguardando confirmação";
+$a->strings["Normal Account"] = "Conta normal";
+$a->strings["Soapbox Account"] = "Conta de vitrine";
+$a->strings["Community/Celebrity Account"] = "Conta de comunidade/celebridade";
+$a->strings["Automatic Friend Account"] = "Conta de amigo automático";
+$a->strings["Blog Account"] = "Conta de blog";
+$a->strings["Private Forum"] = "Fórum privado";
+$a->strings["Message queues"] = "Fila de mensagens";
+$a->strings["Administration"] = "Administração";
+$a->strings["Summary"] = "Resumo";
+$a->strings["Registered users"] = "Usuários registrados";
+$a->strings["Pending registrations"] = "Registros pendentes";
+$a->strings["Version"] = "Versão";
+$a->strings["Active plugins"] = "Plugins ativos";
+$a->strings["Can not parse base url. Must have at least <scheme>://<domain>"] = "Não foi possível analisar a URL. Ela deve conter pelo menos <scheme>://<domain>";
+$a->strings["Site settings updated."] = "As configurações do site foram atualizadas.";
+$a->strings["No community page"] = "Sem página de comunidade";
+$a->strings["Public postings from users of this site"] = "Textos públicos de usuários deste sítio";
+$a->strings["Global community page"] = "Página global da comunidade";
+$a->strings["At post arrival"] = "Na chegada da publicação";
+$a->strings["Multi user instance"] = "Instância multi usuário";
+$a->strings["Closed"] = "Fechado";
+$a->strings["Requires approval"] = "Requer aprovação";
+$a->strings["Open"] = "Aberto";
+$a->strings["No SSL policy, links will track page SSL state"] = "Nenhuma política de SSL, os links irão rastrear o estado SSL da página";
+$a->strings["Force all links to use SSL"] = "Forçar todos os links a utilizar SSL";
+$a->strings["Self-signed certificate, use SSL for local links only (discouraged)"] = "Certificado auto-assinado, usar SSL somente para links locais (não recomendado)";
+$a->strings["File upload"] = "Envio de arquivo";
+$a->strings["Policies"] = "Políticas";
+$a->strings["Advanced"] = "Avançado";
+$a->strings["Performance"] = "Performance";
+$a->strings["Relocate - WARNING: advanced function. Could make this server unreachable."] = "Relocação - ATENÇÃO: função avançada. Pode tornar esse servidor inacessível.";
+$a->strings["Site name"] = "Nome do site";
+$a->strings["Host name"] = "Nome do host";
+$a->strings["Sender Email"] = "enviador de email";
+$a->strings["Banner/Logo"] = "Banner/Logo";
+$a->strings["Shortcut icon"] = "ícone de atalho";
+$a->strings["Touch icon"] = "ícone de toque";
+$a->strings["Additional Info"] = "Informação adicional";
+$a->strings["For public servers: you can add additional information here that will be listed at dir.friendica.com/siteinfo."] = "Para servidores públicos: você pode adicionar informações aqui que serão listadas em dir.friendica.com/siteinfo.";
+$a->strings["System language"] = "Idioma do sistema";
+$a->strings["System theme"] = "Tema do sistema";
+$a->strings["Default system theme - may be over-ridden by user profiles - <a href='#' id='cnftheme'>change theme settings</a>"] = "Tema padrão do sistema. Pode ser substituído nos perfis de usuário -  <a href='#' id='cnftheme'>alterar configurações do tema</a>";
+$a->strings["Mobile system theme"] = "Tema do sistema para dispositivos móveis";
+$a->strings["Theme for mobile devices"] = "Tema para dispositivos móveis";
+$a->strings["SSL link policy"] = "Política de link SSL";
+$a->strings["Determines whether generated links should be forced to use SSL"] = "Determina se os links gerados devem ser forçados a utilizar SSL";
+$a->strings["Force SSL"] = "Forçar SSL";
+$a->strings["Force all Non-SSL requests to SSL - Attention: on some systems it could lead to endless loops."] = "Forçar todas as solicitações não-SSL para SSL - Atenção: em alguns sistemas isso pode levar a loops infinitos.";
+$a->strings["Old style 'Share'"] = "Estilo antigo do 'Compartilhar' ";
+$a->strings["Deactivates the bbcode element 'share' for repeating items."] = "Desativa o elemento bbcode 'compartilhar' para repetir ítens.";
+$a->strings["Hide help entry from navigation menu"] = "Oculta a entrada 'Ajuda' do menu de navegação";
+$a->strings["Hides the menu entry for the Help pages from the navigation menu. You can still access it calling /help directly."] = "Oculta a entrada de menu para as páginas de Ajuda do menu de navegação. Ainda será possível acessá-las chamando /help diretamente.";
+$a->strings["Single user instance"] = "Instância de usuário único";
+$a->strings["Make this instance multi-user or single-user for the named user"] = "Faça essa instância multiusuário ou usuário único para o usuário em questão";
+$a->strings["Maximum image size"] = "Tamanho máximo da imagem";
+$a->strings["Maximum size in bytes of uploaded images. Default is 0, which means no limits."] = "Tamanho máximo, em bytes, das imagens enviadas. O padrão é 0, o que significa sem limites";
+$a->strings["Maximum image length"] = "Tamanho máximo da imagem";
+$a->strings["Maximum length in pixels of the longest side of uploaded images. Default is -1, which means no limits."] = "Tamanho máximo em pixels do lado mais largo das imagens enviadas. O padrão é -1, que significa sem limites.";
+$a->strings["JPEG image quality"] = "Qualidade da imagem JPEG";
+$a->strings["Uploaded JPEGS will be saved at this quality setting [0-100]. Default is 100, which is full quality."] = "Imagens JPEG enviadas serão salvas com essa qualidade [0-100]. O padrão é 100, que significa a melhor qualidade.";
+$a->strings["Register policy"] = "Política de registro";
+$a->strings["Maximum Daily Registrations"] = "Registros Diários Máximos";
+$a->strings["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."] = "Se o registro é permitido acima, isso configura o número máximo de registros de novos usuários a serem aceitos por dia. Se o registro está configurado para 'fechado/closed' ,  essa configuração não tem efeito.";
+$a->strings["Register text"] = "Texto de registro";
+$a->strings["Will be displayed prominently on the registration page."] = "Será exibido com destaque na página de registro.";
+$a->strings["Accounts abandoned after x days"] = "Contas abandonadas após x dias";
+$a->strings["Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit."] = "Não desperdiçará recursos do sistema captando de sites externos para contas abandonadas. Digite 0 para nenhum limite de tempo.";
+$a->strings["Allowed friend domains"] = "Domínios de amigos permitidos";
+$a->strings["Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains"] = "Lista dos domínios que têm permissão para estabelecer amizades com esse site, separados por vírgula. Caracteres curinga são aceitos. Deixe em branco para permitir qualquer domínio.";
+$a->strings["Allowed email domains"] = "Domínios de e-mail permitidos";
+$a->strings["Comma separated list of domains which are allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains"] = "Lista de domínios separados por vírgula, que são permitidos em endereços de e-mail para registro nesse site. Caracteres-curinga são aceitos. Vazio para aceitar qualquer domínio";
+$a->strings["Block public"] = "Bloquear acesso público";
+$a->strings["Check to block public access to all otherwise public personal pages on this site unless you are currently logged in."] = "Marque para bloquear o acesso público a todas as páginas desse site, com exceção das páginas pessoais públicas, a não ser que a pessoa esteja autenticada.";
+$a->strings["Force publish"] = "Forçar a listagem";
+$a->strings["Check to force all profiles on this site to be listed in the site directory."] = "Marque para forçar todos os perfis desse site a serem listados no diretório do site.";
+$a->strings["Global directory update URL"] = "URL de atualização do diretório global";
+$a->strings["URL to update the global directory. If this is not set, the global directory is completely unavailable to the application."] = "URL para atualizar o diretório global. Se isso não for definido, o diretório global não estará disponível neste site.";
+$a->strings["Allow threaded items"] = "Habilita itens aninhados";
+$a->strings["Allow infinite level threading for items on this site."] = "Habilita nível infinito de aninhamento (threading) para itens.";
+$a->strings["Private posts by default for new users"] = "Publicações privadas por padrão para novos usuários";
+$a->strings["Set default post permissions for all new members to the default privacy group rather than public."] = "Define as permissões padrão de publicação de todos os novos membros para o grupo de privacidade padrão, ao invés de torná-las públicas.";
+$a->strings["Don't include post content in email notifications"] = "Não incluir o conteúdo da postagem nas notificações de email";
+$a->strings["Don't include the content of a post/comment/private message/etc. in the email notifications that are sent out from this site, as a privacy measure."] = "Não incluir o conteúdo de uma postagem/comentário/mensagem privada/etc. em notificações de email que são enviadas para fora desse sítio, como medida de segurança.";
+$a->strings["Disallow public access to addons listed in the apps menu."] = "Disabilita acesso público a addons listados no menu de aplicativos.";
+$a->strings["Checking this box will restrict addons listed in the apps menu to members only."] = "Marcar essa caixa ira restringir os addons listados no menu de aplicativos aos membros somente.";
+$a->strings["Don't embed private images in posts"] = "Não inclua imagens privadas em publicações";
+$a->strings["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 photos will have to authenticate and load each image, which may take a while."] = "Não substitue fotos privativas guardadas localmente em publicações por uma cópia inclusa da imagem. Isso significa que os contatos que recebem publicações contendo fotos privadas terão que autenticar e carregar cada imagem, o que pode levar algum tempo.";
+$a->strings["Allow Users to set remote_self"] = "Permite usuários configurarem remote_self";
+$a->strings["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."] = "Ao marcar isto, todos os usuários poderão marcar cada contato como um remote_self na opção de reparar contato. Marcar isto para um contato produz espelhamento de toda publicação deste contato no fluxo dos usuários";
+$a->strings["Block multiple registrations"] = "Bloquear registros repetidos";
+$a->strings["Disallow users to register additional accounts for use as pages."] = "Desabilitar o registro de contas adicionais para serem usadas como páginas.";
+$a->strings["OpenID support"] = "Suporte ao OpenID";
+$a->strings["OpenID support for registration and logins."] = "Suporte ao OpenID para registros e autenticações.";
+$a->strings["Fullname check"] = "Verificar nome completo";
+$a->strings["Force users to register with a space between firstname and lastname in Full name, as an antispam measure"] = "Forçar os usuários a usar um espaço em branco entre o nome e o sobrenome, ao preencherem o nome completo no registro, como uma medida contra o spam";
+$a->strings["UTF-8 Regular expressions"] = "Expressões regulares UTF-8";
+$a->strings["Use PHP UTF8 regular expressions"] = "Use expressões regulares do PHP em UTF8";
+$a->strings["Community Page Style"] = "Estilo da página de comunidade";
+$a->strings["Type of community page to show. 'Global community' shows every public posting from an open distributed network that arrived on this server."] = "Tipo de página de comunidade para mostrar. 'Comunidade Global' mostra todos os textos públicos de uma rede aberta e distribuída que chega neste servidor.";
+$a->strings["Posts per user on community page"] = "Textos por usuário na página da comunidade";
+$a->strings["The maximum number of posts per user on the community page. (Not valid for 'Global Community')"] = "O número máximo de textos por usuário na página da comunidade. (Não é válido para 'comunidade global')";
+$a->strings["Enable OStatus support"] = "Habilitar suporte ao OStatus";
+$a->strings["Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All communications in OStatus are public, so privacy warnings will be occasionally displayed."] = "Fornece compatibilidade OStatus (StatusNet, GNU Social, etc.). Todas as comunicações no OStatus são públicas, assim avisos de privacidade serão ocasionalmente mostrados.";
+$a->strings["OStatus conversation completion interval"] = "Intervalo de finalização da conversação OStatus ";
+$a->strings["How often shall the poller check for new entries in OStatus conversations? This can be a very ressource task."] = "De quanto em quanto tempo o \"buscador\" (poller) deve checar por novas entradas numa conversação OStatus? Essa pode ser uma tarefa bem demorada.";
+$a->strings["Enable Diaspora support"] = "Habilitar suporte ao Diaspora";
+$a->strings["Provide built-in Diaspora network compatibility."] = "Fornece compatibilidade nativa com a rede Diaspora.";
+$a->strings["Only allow Friendica contacts"] = "Permitir somente contatos Friendica";
+$a->strings["All contacts must use Friendica protocols. All other built-in communication protocols disabled."] = "Todos os contatos devem usar protocolos Friendica. Todos os outros protocolos de comunicação embarcados estão desabilitados";
+$a->strings["Verify SSL"] = "Verificar SSL";
+$a->strings["If you wish, you can turn on strict certificate checking. This will mean you cannot connect (at all) to self-signed SSL sites."] = "Caso deseje, você pode habilitar a restrição de certificações. Isso significa que você não poderá conectar-se a nenhum site que use certificados auto-assinados.";
+$a->strings["Proxy user"] = "Usuário do proxy";
+$a->strings["Proxy URL"] = "URL do proxy";
+$a->strings["Network timeout"] = "Limite de tempo da rede";
+$a->strings["Value is in seconds. Set to 0 for unlimited (not recommended)."] = "Valor em segundos. Defina como 0 para ilimitado (não recomendado).";
+$a->strings["Delivery interval"] = "Intervalo de envio";
+$a->strings["Delay background delivery processes by this many seconds to reduce system load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 for large dedicated servers."] = "Postergue o processo de entrega em background por essa quantidade de segundos visando reduzir a carga do sistema. Recomendado: 4-5 para servidores compartilhados (shared hosts), 2-3 para servidores privados virtuais (VPS). 0-1 para grandes servidores dedicados.";
+$a->strings["Poll interval"] = "Intervalo da busca (polling)";
+$a->strings["Delay background polling processes by this many seconds to reduce system load. If 0, use delivery interval."] = "Postergue o processo de entrega em background por essa quantidade de segundos visando reduzir a carga do sistema. Se 0, use intervalo de entrega.";
+$a->strings["Maximum Load Average"] = "Média de Carga Máxima";
+$a->strings["Maximum system load before delivery and poll processes are deferred - default 50."] = "Carga do sistema máxima antes que os processos de entrega e busca sejam postergados - padrão 50.";
+$a->strings["Use MySQL full text engine"] = "Use o engine de texto completo (full text) do MySQL";
+$a->strings["Activates the full text engine. Speeds up search - but can only search for four and more characters."] = "Ativa a engine de texto completo (full text). Acelera a busca - mas só pode buscar apenas por 4 ou mais caracteres.";
+$a->strings["Suppress Language"] = "Retira idioma";
+$a->strings["Suppress language information in meta information about a posting."] = "Retira informações sobre idioma nas meta informações sobre uma publicação.";
+$a->strings["Suppress Tags"] = "Suprime etiquetas";
+$a->strings["Suppress showing a list of hashtags at the end of the posting."] = "suprime mostrar uma lista de hashtags no final de cada texto.";
+$a->strings["Path to item cache"] = "Diretório do cache de item";
+$a->strings["Cache duration in seconds"] = "Duração do cache em segundos";
+$a->strings["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."] = "Por quanto tempo os arquivos de cache devem ser mantidos? O valor padrão é 86400 segundos (um dia). Para desativar o cache, defina o valor para -1.";
+$a->strings["Maximum numbers of comments per post"] = "O número máximo de comentários por post";
+$a->strings["How much comments should be shown for each post? Default value is 100."] = "Quanto comentários devem ser mostradas em cada post? O valor padrão é 100.";
+$a->strings["Path for lock file"] = "Diretório do arquivo de trava";
+$a->strings["Temp path"] = "Diretório Temp";
+$a->strings["Base path to installation"] = "Diretório base para instalação";
+$a->strings["Disable picture proxy"] = "Disabilitar proxy de imagem";
+$a->strings["The picture proxy increases performance and privacy. It shouldn't be used on systems with very low bandwith."] = "O proxy de imagem aumenta o desempenho e privacidade. Ele não deve ser usado em sistemas com largura de banda muito baixa.";
+$a->strings["Enable old style pager"] = "Habilita estilo antigo de paginação";
+$a->strings["The old style pager has page numbers but slows down massively the page speed."] = "O estilo antigo de paginação tem número de páginas mas dimunui muito a velocidade das páginas.";
+$a->strings["Only search in tags"] = "Somente pesquisa nas estiquetas";
+$a->strings["On large systems the text search can slow down the system extremely."] = "Em grandes sistemas a pesquisa de texto pode deixar o sistema muito lento.";
+$a->strings["New base url"] = "Nova URL base";
+$a->strings["Update has been marked successful"] = "A atualização foi marcada como bem sucedida";
+$a->strings["Database structure update %s was successfully applied."] = "A atualização da estrutura do banco de dados %s foi aplicada com sucesso.";
+$a->strings["Executing of database structure update %s failed with error: %s"] = "A execução da atualização da estrutura do banco de dados %s falhou com o erro: %s";
+$a->strings["Executing %s failed with error: %s"] = "A execução de %s falhou com erro: %s";
+$a->strings["Update %s was successfully applied."] = "A atualização %s foi aplicada com sucesso.";
+$a->strings["Update %s did not return a status. Unknown if it succeeded."] = "Atualizar %s não retornou um status. Desconhecido se ele teve sucesso.";
+$a->strings["There was no additional update function %s that needed to be called."] = "Não havia nenhuma função de atualização %s adicional que precisava ser chamada.";
+$a->strings["No failed updates."] = "Nenhuma atualização com falha.";
+$a->strings["Check database structure"] = "Verifique a estrutura do banco de dados";
+$a->strings["Failed Updates"] = "Atualizações com falha";
+$a->strings["This does not include updates prior to 1139, which did not return a status."] = "Isso não inclue atualizações antes da 1139, as quais não retornavam um status.";
+$a->strings["Mark success (if update was manually applied)"] = "Marcar como bem sucedida (caso tenham sido aplicadas atualizações manuais)";
+$a->strings["Attempt to execute this update step automatically"] = "Tentar executar esse passo da atualização automaticamente";
+$a->strings["\n\t\t\tDear %1\$s,\n\t\t\t\tthe administrator of %2\$s has set up an account for you."] = "\n\t\t\tCaro %1\$s,\n\t\t\t\to administrador de %2\$s criou uma conta para você.";
+$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."] = "\n\t\t\tOs dados de login são os seguintes:\n\n\t\t\tLocal do Site:\t%1\$s\n\t\t\tNome de Login:\t\t%2\$s\n\t\t\tSenha:\t\t%3\$s\n\n\t\t\tVocê pode alterar sua senha na página de \"Configurações\" da sua conta após fazer o login.\n\n\t\t\tPor favor, dedique alguns minutos na página para rever as outras configurações da sua conta.\n\n\t\t\tTalvez você também queira incluir algumas informações básicas adicionais ao seu perfil padrão\n\t\t\t(na página de \"Perfis\") para que outras pessoas possam encontrá-lo com facilidade.\n\n\t\t\tRecomendamos que inclua seu nome completo, adicione uma foto do perfil,\n\t\t\tadicionar algumas \"palavras-chave\" (muito útil para fazer novas amizades) - e\n\t\t\ttalvez em que pais você mora; se você não quiser ser mais específico\n\t\t\tdo que isso.\n\n\t\t\tNós respeitamos plenamente seu direito à privacidade, e nenhum desses itens são necessários.\n\t\t\tSe você é novo por aqui e não conheço ninguém, eles podem ajuda-lo\n\t\t\ta fazer novas e interessantes amizades.\n\n\t\t\tObrigado e bem-vindo a %4\$s.";
+$a->strings["%s user blocked/unblocked"] = array(
+       0 => "%s usuário bloqueado/desbloqueado",
+       1 => "%s usuários bloqueados/desbloqueados",
+);
+$a->strings["%s user deleted"] = array(
+       0 => "%s usuário excluído",
+       1 => "%s usuários excluídos",
+);
+$a->strings["User '%s' deleted"] = "O usuário '%s' foi excluído";
+$a->strings["User '%s' unblocked"] = "O usuário '%s' foi desbloqueado";
+$a->strings["User '%s' blocked"] = "O usuário '%s' foi bloqueado";
+$a->strings["Add User"] = "Adicionar usuário";
+$a->strings["select all"] = "selecionar todos";
+$a->strings["User registrations waiting for confirm"] = "Registros de usuário aguardando confirmação";
+$a->strings["User waiting for permanent deletion"] = "Usuário aguardando por fim permanente da conta.";
+$a->strings["Request date"] = "Solicitar data";
+$a->strings["No registrations."] = "Nenhum registro.";
+$a->strings["Deny"] = "Negar";
+$a->strings["Site admin"] = "Administração do site";
+$a->strings["Account expired"] = "Conta expirou";
+$a->strings["New User"] = "Novo usuário";
+$a->strings["Register date"] = "Data de registro";
+$a->strings["Last login"] = "Última entrada";
+$a->strings["Last item"] = "Último item";
+$a->strings["Deleted since"] = "Apagado desde";
+$a->strings["Selected users will be deleted!\\n\\nEverything these users had posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "Os usuários selecionados serão excluídos!\\n\\nTudo o que estes usuários publicaram neste site será excluído permanentemente!\\n\\nDeseja continuar?";
+$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?"] = "O usuário {0} será excluído!\\n\\nTudo o que este usuário publicou neste site será permanentemente excluído!\\n\\nDeseja continuar?";
+$a->strings["Name of the new user."] = "Nome do novo usuários.";
+$a->strings["Nickname"] = "Apelido";
+$a->strings["Nickname of the new user."] = "Apelido para o novo usuário.";
+$a->strings["Email address of the new user."] = "Endereço de e-mail do novo usuário.";
+$a->strings["Plugin %s disabled."] = "O plugin %s foi desabilitado.";
+$a->strings["Plugin %s enabled."] = "O plugin %s foi habilitado.";
+$a->strings["Disable"] = "Desabilitar";
+$a->strings["Enable"] = "Habilitar";
+$a->strings["Toggle"] = "Alternar";
+$a->strings["Author: "] = "Autor: ";
+$a->strings["Maintainer: "] = "Mantenedor: ";
+$a->strings["No themes found."] = "Nenhum tema encontrado";
+$a->strings["Screenshot"] = "Captura de tela";
+$a->strings["[Experimental]"] = "[Esperimental]";
+$a->strings["[Unsupported]"] = "[Não suportado]";
+$a->strings["Log settings updated."] = "As configurações de relatórios foram atualizadas.";
+$a->strings["Clear"] = "Limpar";
+$a->strings["Enable Debugging"] = "Habilitar Debugging";
+$a->strings["Log file"] = "Arquivo do relatório";
+$a->strings["Must be writable by web server. Relative to your Friendica top-level directory."] = "O servidor web precisa ter permissão de escrita. Relativa ao diretório raiz do seu Friendica.";
+$a->strings["Log level"] = "Nível do relatório";
+$a->strings["Close"] = "Fechar";
+$a->strings["FTP Host"] = "Endereço do FTP";
+$a->strings["FTP Path"] = "Caminho do FTP";
+$a->strings["FTP User"] = "Usuário do FTP";
+$a->strings["FTP Password"] = "Senha do FTP";
+$a->strings["Image exceeds size limit of %d"] = "A imagem excede o limite de tamanho de %d";
+$a->strings["Unable to process image."] = "Não foi possível processar a imagem.";
+$a->strings["Image upload failed."] = "Não foi possível enviar a imagem.";
+$a->strings["Welcome to %s"] = "Bem-vindo(a) a %s";
+$a->strings["OpenID protocol error. No ID returned."] = "Erro no protocolo OpenID. Não foi retornada nenhuma ID.";
+$a->strings["Account not found and OpenID registration is not permitted on this site."] = "A conta não foi encontrada e não são permitidos registros via OpenID nesse site.";
+$a->strings["Search Results For:"] = "Resultados de Busca Por:";
+$a->strings["Remove term"] = "Remover o termo";
+$a->strings["Commented Order"] = "Ordem dos comentários";
+$a->strings["Sort by Comment Date"] = "Ordenar pela data do comentário";
+$a->strings["Posted Order"] = "Ordem das publicações";
+$a->strings["Sort by Post Date"] = "Ordenar pela data de publicação";
+$a->strings["Posts that mention or involve you"] = "Publicações que mencionem ou envolvam você";
+$a->strings["New"] = "Nova";
+$a->strings["Activity Stream - by date"] = "Fluxo de atividades - por data";
+$a->strings["Shared Links"] = "Links compartilhados";
+$a->strings["Interesting Links"] = "Links interessantes";
+$a->strings["Starred"] = "Destacada";
+$a->strings["Favourite Posts"] = "Publicações favoritas";
+$a->strings["Warning: This group contains %s member from an insecure network."] = array(
+       0 => "Aviso: Este grupo contém %s membro de uma rede insegura.",
+       1 => "Aviso: Este grupo contém %s membros de uma rede insegura.",
 );
-$a->strings["Done. You can now login with your username and password"] = "Feito. Você agora pode entrar com seu nome de usuário e senha";
-$a->strings["toggle mobile"] = "habilita mobile";
-$a->strings["Theme settings"] = "Configurações do tema";
-$a->strings["Set resize level for images in posts and comments (width and height)"] = "Configure o nível de redimensionamento para imagens em publicações e comentários (largura e altura)";
-$a->strings["Set font-size for posts and comments"] = "Escolha o tamanho da fonte para publicações e comentários";
-$a->strings["Set theme width"] = "Configure a largura do tema";
-$a->strings["Color scheme"] = "Esquema de cores";
-$a->strings["Set line-height for posts and comments"] = "Escolha comprimento da linha para publicações e comentários";
-$a->strings["Set colour scheme"] = "Configure o esquema de cores";
-$a->strings["Alignment"] = "Alinhamento";
-$a->strings["Left"] = "Esquerda";
-$a->strings["Center"] = "Centro";
-$a->strings["Posts font size"] = "Tamanho da fonte para publicações";
-$a->strings["Textareas font size"] = "Tamanho da fonte para campos texto";
-$a->strings["Set resolution for middle column"] = "Escolha a resolução para a coluna do meio";
-$a->strings["Set color scheme"] = "Configure o esquema de cores";
-$a->strings["Set zoomfactor for Earth Layer"] = "Configure o zoom para Camadas da Terra";
-$a->strings["Set longitude (X) for Earth Layers"] = "Configure longitude (X) para Camadas da Terra";
-$a->strings["Set latitude (Y) for Earth Layers"] = "Configure latitude (Y) para Camadas da Terra";
-$a->strings["Community Pages"] = "Páginas da Comunidade";
-$a->strings["Earth Layers"] = "Camadas da Terra";
-$a->strings["Community Profiles"] = "Profiles Comunitários";
-$a->strings["Help or @NewHere ?"] = "Ajuda ou @NewHere ?";
-$a->strings["Connect Services"] = "Conectar serviços";
-$a->strings["Find Friends"] = "Encontrar amigos";
-$a->strings["Last users"] = "Últimos usuários";
-$a->strings["Last photos"] = "Últimas fotos";
-$a->strings["Last likes"] = "Últimas gostadas";
-$a->strings["Your contacts"] = "Seus contatos";
-$a->strings["Your personal photos"] = "Suas fotos pessoais";
-$a->strings["Local Directory"] = "Diretório Local";
-$a->strings["Set zoomfactor for Earth Layers"] = "Configure o zoom para Camadas da Terra";
-$a->strings["Show/hide boxes at right-hand column:"] = "Mostre/esconda caixas na coluna à direita:";
-$a->strings["Set style"] = "escolha estilo";
-$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"] = "Variações";
+$a->strings["Private messages to this group are at risk of public disclosure."] = "Mensagens privadas para este grupo correm o risco de sofrerem divulgação pública.";
+$a->strings["No such group"] = "Este grupo não existe";
+$a->strings["Group is empty"] = "O grupo está vazio";
+$a->strings["Group: "] = "Grupo: ";
+$a->strings["Contact: "] = "Contato: ";
+$a->strings["Private messages to this person are at risk of public disclosure."] = "Mensagens privadas para esta pessoa correm o risco de sofrerem divulgação pública.";
+$a->strings["Invalid contact."] = "Contato inválido.";
+$a->strings["- select -"] = "-selecione-";
+$a->strings["This is Friendica, version"] = "Este é o Friendica, versão";
+$a->strings["running at web location"] = "sendo executado no endereço web";
+$a->strings["Please visit <a href=\"http://friendica.com\">Friendica.com</a> to learn more about the Friendica project."] = "Por favor, visite <a href=\"http://friendica.com\">friendica.com</a> para aprender mais sobre o projeto Friendica.";
+$a->strings["Bug reports and issues: please visit"] = "Relatos e acompanhamentos de erros podem ser encontrados em";
+$a->strings["Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - dot com"] = "Sugestões, elogios, doações, etc. - favor enviar e-mail para \"Info\" arroba Friendica - ponto com";
+$a->strings["Installed plugins/addons/apps:"] = "Plugins/complementos/aplicações instaladas:";
+$a->strings["No installed plugins/addons/apps"] = "Nenhum plugin/complemento/aplicativo instalado";
+$a->strings["Applications"] = "Aplicativos";
+$a->strings["No installed applications."] = "Nenhum aplicativo instalado";
+$a->strings["Upload New Photos"] = "Enviar novas fotos";
+$a->strings["Contact information unavailable"] = "A informação de contato não está disponível";
+$a->strings["Album not found."] = "O álbum não foi encontrado.";
+$a->strings["Delete Album"] = "Excluir o álbum";
+$a->strings["Do you really want to delete this photo album and all its photos?"] = "Você realmente deseja deletar esse álbum de fotos e todas as suas fotos?";
+$a->strings["Delete Photo"] = "Excluir a foto";
+$a->strings["Do you really want to delete this photo?"] = "Você realmente deseja deletar essa foto?";
+$a->strings["%1\$s was tagged in %2\$s by %3\$s"] = "%1\$s foi marcado em %2\$s por %3\$s";
+$a->strings["a photo"] = "uma foto";
+$a->strings["Image exceeds size limit of "] = "A imagem excede o tamanho máximo de ";
+$a->strings["Image file is empty."] = "O arquivo de imagem está vazio.";
+$a->strings["No photos selected"] = "Não foi selecionada nenhuma foto";
+$a->strings["You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."] = "Você está usando %1$.2f Mbytes dos %2$.2f Mbytes liberados para armazenamento de fotos.";
+$a->strings["Upload Photos"] = "Enviar fotos";
+$a->strings["New album name: "] = "Nome do novo álbum: ";
+$a->strings["or existing album name: "] = "ou o nome de um álbum já existente: ";
+$a->strings["Do not show a status post for this upload"] = "Não exiba uma publicação de status para este envio";
+$a->strings["Permissions"] = "Permissões";
+$a->strings["Private Photo"] = "Foto Privada";
+$a->strings["Public Photo"] = "Foto Pública";
+$a->strings["Edit Album"] = "Editar o álbum";
+$a->strings["Show Newest First"] = "Exibir as mais recentes primeiro";
+$a->strings["Show Oldest First"] = "Exibir as mais antigas primeiro";
+$a->strings["View Photo"] = "Ver a foto";
+$a->strings["Permission denied. Access to this item may be restricted."] = "Permissão negada. O acesso a este item pode estar restrito.";
+$a->strings["Photo not available"] = "A foto não está disponível";
+$a->strings["View photo"] = "Ver a imagem";
+$a->strings["Edit photo"] = "Editar a foto";
+$a->strings["Use as profile photo"] = "Usar como uma foto de perfil";
+$a->strings["View Full Size"] = "Ver no tamanho real";
+$a->strings["Tags: "] = "Etiquetas: ";
+$a->strings["[Remove any tag]"] = "[Remover qualquer etiqueta]";
+$a->strings["Rotate CW (right)"] = "Rotacionar para direita";
+$a->strings["Rotate CCW (left)"] = "Rotacionar para esquerda";
+$a->strings["New album name"] = "Novo nome para o álbum";
+$a->strings["Caption"] = "Legenda";
+$a->strings["Add a Tag"] = "Adicionar uma etiqueta";
+$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"] = "Por exemplo: @joao, @Joao_da_Silva, @joao@exemplo.com, #Minas_Gerais, #acampamento";
+$a->strings["Private photo"] = "Foto privada";
+$a->strings["Public photo"] = "Foto pública";
+$a->strings["Recent Photos"] = "Fotos recentes";
+$a->strings["The post was created"] = "O texto foi criado";
+$a->strings["Contact added"] = "O contato foi adicionado";
+$a->strings["Move account"] = "Mover conta";
+$a->strings["You can import an account from another Friendica server."] = "Você pode importar um conta de outro sevidor Friendica.";
+$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."] = "Você precisa exportar sua conta de um servidor antigo e fazer o upload aqui. Nós recriaremos sua conta antiga aqui com todos os seus contatos. Nós também tentaremos informar seus amigos que você se mudou para cá.";
+$a->strings["This feature is experimental. We can't import contacts from the OStatus network (statusnet/identi.ca) or from Diaspora"] = "Esse recurso é experimental. Nós não podemos importar contatos de uma rede OStatus (statusnet/identi.ca) ou do Diaspora";
+$a->strings["Account file"] = "Arquivo de conta";
+$a->strings["To export your account, go to \"Settings->Export your personal data\" and select \"Export account\""] = "Para exportar a sua conta, entre em \"Configurações->Exportar dados pessoais\" e selecione \"Exportar conta\"";
+$a->strings["Total invitation limit exceeded."] = "Limite de convites totais excedido.";
+$a->strings["%s : Not a valid email address."] = "%s : Não é um endereço de e-mail válido.";
+$a->strings["Please join us on Friendica"] = "Por favor, junte-se à nós na Friendica";
+$a->strings["Invitation limit exceeded. Please contact your site administrator."] = "Limite de convites ultrapassado. Favor contactar o administrador do sítio.";
+$a->strings["%s : Message delivery failed."] = "%s : Não foi possível enviar a mensagem.";
+$a->strings["%d message sent."] = array(
+       0 => "%d mensagem enviada.",
+       1 => "%d mensagens enviadas.",
+);
+$a->strings["You have no more invitations available"] = "Você não possui mais convites disponíveis";
+$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."] = "Visite %s para obter uma lista de sites públicos onde você pode se cadastrar. Membros da friendica podem se conectar, mesmo que estejam em sites separados. Além disso você também pode se conectar com membros de várias outras redes sociais.";
+$a->strings["To accept this invitation, please visit and register at %s or any other public Friendica website."] = "Para aceitar esse convite, por favor cadastre-se em %s ou qualquer outro site friendica público.";
+$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."] = "Os sites friendica estão todos interconectados para criar uma grande rede social com foco na privacidade e controlada por seus membros, que também podem se conectar com várias redes sociais tradicionais. Dê uma olhada em %s para uma lista de sites friendica onde você pode se cadastrar.";
+$a->strings["Our apologies. This system is not currently configured to connect with other public sites or invite members."] = "Desculpe, mas esse sistema não está configurado para conectar-se com outros sites públicos nem permite convidar novos membros.";
+$a->strings["Send invitations"] = "Enviar convites.";
+$a->strings["Enter email addresses, one per line:"] = "Digite os endereços de e-mail, um por linha:";
+$a->strings["You are cordially invited to join me and other close friends on Friendica - and help us to create a better social web."] = "Você está convidado a se juntar a mim e outros amigos em friendica - e também nos ajudar a criar uma experiência social melhor na web.";
+$a->strings["You will need to supply this invitation code: \$invite_code"] = "Você preciso informar este código de convite: \$invite_code";
+$a->strings["Once you have registered, please connect with me via my profile page at:"] = "Após você se registrar, por favor conecte-se comigo através da minha página de perfil em:";
+$a->strings["For more information about the Friendica project and why we feel it is important, please visit http://friendica.com"] = "Para mais informações sobre o projeto Friendica e porque nós achamos que ele é importante, por favor visite-nos em http://friendica.com.";
+$a->strings["Access denied."] = "Acesso negado.";
+$a->strings["No valid account found."] = "Não foi encontrada nenhuma conta válida.";
+$a->strings["Password reset request issued. Check your email."] = "A solicitação para reiniciar sua senha foi encaminhada. Verifique seu 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."] = "\n\t\tPrezado %1\$s,\n\t\t\tUma solicitação foi recebida recentemente em \"%2\$s\" para redefinir a\n\t\tsenha da sua conta. Para confirmar este pedido, por favor selecione o link de confirmação\n\t\tabaixo ou copie e cole-o na barra de endereço do seu navegador.\n\n\t\tSe NÃO foi você que solicitou esta alteração por favor, NÃO clique no link\n\t\tfornecido e ignore e/ou apague este e-mail.\n\n\t\tSua senha não será alterada a menos que possamos verificar que foi você que\n\t\temitiu esta solicitação.";
+$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"] = "\n\t\tSiga este link para verificar sua identidade:\n\n\t\t%1\$s\n\n\t\tVocê então receberá uma mensagem de continuidade contendo a nova senha.\n\t\tVocê pode alterar sua senha na sua página de configurações após efetuar seu login.\n\n\t\tOs dados de login são os seguintes:\n\n\t\tLocalização do Site:\t%2\$s\n\t\tNome de Login:\t%3\$s";
+$a->strings["Password reset requested at %s"] = "Foi feita uma solicitação de reiniciação da senha em %s";
+$a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "Não foi possível verificar a solicitação (você pode tê-la submetido anteriormente). A senha não foi reiniciada.";
+$a->strings["Your password has been reset as requested."] = "Sua senha foi reiniciada, conforme solicitado.";
+$a->strings["Your new password is"] = "Sua nova senha é";
+$a->strings["Save or copy your new password - and then"] = "Grave ou copie a sua nova senha e, então";
+$a->strings["click here to login"] = "clique aqui para entrar";
+$a->strings["Your password may be changed from the <em>Settings</em> page after successful login."] = "Sua senha pode ser alterada na página de <em>Configurações</em> após você entrar em seu perfil.";
+$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\tCaro %1\$s,\n\t\t\t\t\tSua senha foi alterada conforme solicitado. Por favor, guarde essas\n\t\t\t\tinformações para seus registros (ou altere a sua senha imediatamente para\n\t\t\t\talgo que você se lembrará).\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"] = "\n\t\t\t\tOs seus dados de login são os seguintes:\n\n\t\t\t\tLocalização do Site:\t%1\$s\n\t\t\t\tNome de Login:\t%2\$s\n\t\t\t\tSenha:\t%3\$s\n\n\t\t\t\tVocê pode alterar esta senha na sua página de configurações depois que efetuar o seu login.\n\t\t\t";
+$a->strings["Your password has been changed at %s"] = "Sua senha foi modifica às %s";
+$a->strings["Forgot your Password?"] = "Esqueceu a sua senha?";
+$a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Digite o seu endereço de e-mail e clique em 'Reiniciar' para prosseguir com a reiniciação da sua senha. Após isso, verifique seu e-mail para mais instruções.";
+$a->strings["Nickname or Email: "] = "Identificação ou e-mail: ";
+$a->strings["Reset"] = "Reiniciar";
+$a->strings["Source (bbcode) text:"] = "Texto fonte (bbcode):";
+$a->strings["Source (Diaspora) text to convert to BBcode:"] = "Texto fonte (Diaspora) a converter para BBcode:";
+$a->strings["Source input: "] = "Entrada fonte:";
+$a->strings["bb2html (raw HTML): "] = "bb2html (HTML puro):";
+$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): "] = "Fonte de entrada (formato Diaspora):";
+$a->strings["diaspora2bb: "] = "diaspora2bb: ";
+$a->strings["Tag removed"] = "A etiqueta foi removida";
+$a->strings["Remove Item Tag"] = "Remover a etiqueta do item";
+$a->strings["Select a tag to remove: "] = "Selecione uma etiqueta para remover: ";
+$a->strings["Remove My Account"] = "Remover minha conta";
+$a->strings["This will completely remove your account. Once this has been done it is not recoverable."] = "Isso removerá completamente a sua conta. Uma vez feito isso, não será mais possível recuperá-la.";
+$a->strings["Please enter your password for verification:"] = "Por favor, digite a sua senha para verificação:";
+$a->strings["Invalid profile identifier."] = "Identificador de perfil inválido.";
+$a->strings["Profile Visibility Editor"] = "Editor de visibilidade do perfil";
+$a->strings["Visible To"] = "Visível para";
+$a->strings["All Contacts (with secure profile access)"] = "Todos os contatos (com acesso a perfil seguro)";
+$a->strings["Profile Match"] = "Correspondência de perfil";
+$a->strings["No keywords to match. Please add keywords to your default profile."] = "Não foi encontrada nenhuma palavra-chave associada a você. Por favor, adicione algumas ao seu perfil padrão.";
+$a->strings["is interested in:"] = "se interessa por:";
+$a->strings["Event title and start time are required."] = "O título do evento e a hora de início são obrigatórios.";
+$a->strings["l, F j"] = "l, F j";
+$a->strings["Edit event"] = "Editar o evento";
+$a->strings["Create New Event"] = "Criar um novo evento";
+$a->strings["Previous"] = "Anterior";
+$a->strings["Next"] = "Próximo";
+$a->strings["hour:minute"] = "hora:minuto";
+$a->strings["Event details"] = "Detalhes do evento";
+$a->strings["Format is %s %s. Starting date and Title are required."] = "O formato é %s %s. O título e a data de início são obrigatórios.";
+$a->strings["Event Starts:"] = "Início do evento:";
+$a->strings["Required"] = "Obrigatório";
+$a->strings["Finish date/time is not known or not relevant"] = "A data/hora de término não é conhecida ou não é relevante";
+$a->strings["Event Finishes:"] = "Término do evento:";
+$a->strings["Adjust for viewer timezone"] = "Ajustar para o fuso horário do visualizador";
+$a->strings["Description:"] = "Descrição:";
+$a->strings["Title:"] = "Título:";
+$a->strings["Share this event"] = "Compartilhar este evento";
+$a->strings["{0} wants to be your friend"] = "{0} deseja ser seu amigo";
+$a->strings["{0} sent you a message"] = "{0} lhe enviou uma mensagem";
+$a->strings["{0} requested registration"] = "{0} solicitou registro";
+$a->strings["{0} commented %s's post"] = "{0} comentou a publicação de %s";
+$a->strings["{0} liked %s's post"] = "{0} gostou da publicação de %s";
+$a->strings["{0} disliked %s's post"] = "{0} desgostou da publicação de %s";
+$a->strings["{0} is now friends with %s"] = "{0} agora é amigo de %s";
+$a->strings["{0} posted"] = "{0} publicou";
+$a->strings["{0} tagged %s's post with #%s"] = "{0} etiquetou a publicação de %s com #%s";
+$a->strings["{0} mentioned you in a post"] = "{0} mencionou você em uma publicação";
+$a->strings["Mood"] = "Humor";
+$a->strings["Set your current mood and tell your friends"] = "Defina o seu humor e conte aos seus amigos";
+$a->strings["No results."] = "Nenhum resultado.";
+$a->strings["Unable to locate contact information."] = "Não foi possível localizar informação do contato.";
+$a->strings["Do you really want to delete this message?"] = "Você realmente deseja deletar essa mensagem?";
+$a->strings["Message deleted."] = "A mensagem foi excluída.";
+$a->strings["Conversation removed."] = "A conversa foi removida.";
+$a->strings["No messages."] = "Nenhuma mensagem.";
+$a->strings["Unknown sender - %s"] = "Remetente desconhecido - %s";
+$a->strings["You and %s"] = "Você e %s";
+$a->strings["%s and You"] = "%s e você";
+$a->strings["Delete conversation"] = "Excluir conversa";
+$a->strings["D, d M Y - g:i A"] = "D, d M Y - g:i A";
+$a->strings["%d message"] = array(
+       0 => "%d mensagem",
+       1 => "%d mensagens",
+);
+$a->strings["Message not available."] = "A mensagem não está disponível.";
+$a->strings["Delete message"] = "Excluir a mensagem";
+$a->strings["No secure communications available. You <strong>may</strong> be able to respond from the sender's profile page."] = "Não foi encontrada nenhuma comunicação segura. Você <strong>pode</strong> ser capaz de responder a partir da página de perfil do remetente.";
+$a->strings["Send Reply"] = "Enviar resposta";
+$a->strings["Not available."] = "Não disponível.";
+$a->strings["Profile not found."] = "O perfil não foi encontrado.";
+$a->strings["Profile deleted."] = "O perfil foi excluído.";
+$a->strings["Profile-"] = "Perfil-";
+$a->strings["New profile created."] = "O novo perfil foi criado.";
+$a->strings["Profile unavailable to clone."] = "O perfil não está disponível para clonagem.";
+$a->strings["Profile Name is required."] = "É necessário informar o nome do perfil.";
+$a->strings["Marital Status"] = "Situação amorosa";
+$a->strings["Romantic Partner"] = "Parceiro romântico";
+$a->strings["Likes"] = "Gosta de";
+$a->strings["Dislikes"] = "Não gosta de";
+$a->strings["Work/Employment"] = "Trabalho/emprego";
+$a->strings["Religion"] = "Religião";
+$a->strings["Political Views"] = "Posicionamento político";
+$a->strings["Gender"] = "Gênero";
+$a->strings["Sexual Preference"] = "Preferência sexual";
+$a->strings["Homepage"] = "Página Principal";
+$a->strings["Interests"] = "Interesses";
+$a->strings["Address"] = "Endereço";
+$a->strings["Location"] = "Localização";
+$a->strings["Profile updated."] = "O perfil foi atualizado.";
+$a->strings[" and "] = " e ";
+$a->strings["public profile"] = "perfil público";
+$a->strings["%1\$s changed %2\$s to &ldquo;%3\$s&rdquo;"] = "%1\$s mudou %2\$s para &ldquo;%3\$s&rdquo;";
+$a->strings[" - Visit %1\$s's %2\$s"] = " - Visite %2\$s de %1\$s";
+$a->strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s foi atualizado %2\$s, mudando %3\$s.";
+$a->strings["Hide contacts and friends:"] = "Esconder contatos e amigos:";
+$a->strings["Hide your contact/friend list from viewers of this profile?"] = "Ocultar sua lista de contatos/amigos dos visitantes no seu perfil?";
+$a->strings["Edit Profile Details"] = "Editar os detalhes do perfil";
+$a->strings["Change Profile Photo"] = "Mudar Foto do Perfil";
+$a->strings["View this profile"] = "Ver este perfil";
+$a->strings["Create a new profile using these settings"] = "Criar um novo perfil usando estas configurações";
+$a->strings["Clone this profile"] = "Clonar este perfil";
+$a->strings["Delete this profile"] = "Excluir este perfil";
+$a->strings["Basic information"] = "Informação básica";
+$a->strings["Profile picture"] = "Foto do perfil";
+$a->strings["Preferences"] = "Preferências";
+$a->strings["Status information"] = "Informação de Status";
+$a->strings["Additional information"] = "Informações adicionais";
+$a->strings["Upload Profile Photo"] = "Enviar foto do perfil";
+$a->strings["Profile Name:"] = "Nome do perfil:";
+$a->strings["Your Full Name:"] = "Seu nome completo:";
+$a->strings["Title/Description:"] = "Título/Descrição:";
+$a->strings["Your Gender:"] = "Seu gênero:";
+$a->strings["Birthday (%s):"] = "Aniversário (%s):";
+$a->strings["Street Address:"] = "Endereço:";
+$a->strings["Locality/City:"] = "Localidade/Cidade:";
+$a->strings["Postal/Zip Code:"] = "CEP:";
+$a->strings["Country:"] = "País:";
+$a->strings["Region/State:"] = "Região/Estado:";
+$a->strings["<span class=\"heart\">&hearts;</span> Marital Status:"] = "<span class=\"heart\">&hearts;</span> Situação amorosa:";
+$a->strings["Who: (if applicable)"] = "Quem: (se pertinente)";
+$a->strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Exemplos: fulano123, Fulano de Tal, fulano@exemplo.com";
+$a->strings["Since [date]:"] = "Desde [data]:";
+$a->strings["Homepage URL:"] = "Endereço do site web:";
+$a->strings["Religious Views:"] = "Orientação religiosa:";
+$a->strings["Public Keywords:"] = "Palavras-chave públicas:";
+$a->strings["Private Keywords:"] = "Palavras-chave privadas:";
+$a->strings["Example: fishing photography software"] = "Exemplo: pesca fotografia software";
+$a->strings["(Used for suggesting potential friends, can be seen by others)"] = "(Usado para sugerir amigos em potencial, pode ser visto pelos outros)";
+$a->strings["(Used for searching profiles, never shown to others)"] = "(Usado na pesquisa de perfis, nunca é exibido para os outros)";
+$a->strings["Tell us about yourself..."] = "Fale um pouco sobre você...";
+$a->strings["Hobbies/Interests"] = "Passatempos/Interesses";
+$a->strings["Contact information and Social Networks"] = "Informações de contato e redes sociais";
+$a->strings["Musical interests"] = "Preferências musicais";
+$a->strings["Books, literature"] = "Livros, literatura";
+$a->strings["Television"] = "Televisão";
+$a->strings["Film/dance/culture/entertainment"] = "Filme/dança/cultura/entretenimento";
+$a->strings["Love/romance"] = "Amor/romance";
+$a->strings["Work/employment"] = "Trabalho/emprego";
+$a->strings["School/education"] = "Escola/educação";
+$a->strings["This is your <strong>public</strong> profile.<br />It <strong>may</strong> be visible to anybody using the internet."] = "Este é o seu perfil <strong>público</strong>.<br />Ele <strong>pode</strong> estar visível para qualquer um que acesse a Internet.";
+$a->strings["Age: "] = "Idade: ";
+$a->strings["Edit/Manage Profiles"] = "Editar/Gerenciar perfis";
+$a->strings["Friendica Communications Server - Setup"] = "Servidor de Comunicações Friendica - Configuração";
+$a->strings["Could not connect to database."] = "Não foi possível conectar ao banco de dados.";
+$a->strings["Could not create table."] = "Não foi possível criar tabela.";
+$a->strings["Your Friendica site database has been installed."] = "O banco de dados do seu site Friendica foi instalado.";
+$a->strings["You may need to import the file \"database.sql\" manually using phpmyadmin or mysql."] = "Você provavelmente precisará importar o arquivo \"database.sql\" manualmente, usando o phpmyadmin ou o mysql.";
+$a->strings["Please see the file \"INSTALL.txt\"."] = "Por favor, dê uma olhada no arquivo \"INSTALL.TXT\".";
+$a->strings["System check"] = "Checagem do sistema";
+$a->strings["Check again"] = "Checar novamente";
+$a->strings["Database connection"] = "Conexão de banco de dados";
+$a->strings["In order to install Friendica we need to know how to connect to your database."] = "À fim de instalar o Friendica, você precisa saber como se conectar ao seu banco de dados.";
+$a->strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Por favor, entre em contato com a sua hospedagem ou com o administrador do site caso você tenha alguma dúvida em relação a essas configurações.";
+$a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "O banco de dados que você especificou abaixo já deve existir. Caso contrário, por favor crie-o antes de continuar.";
+$a->strings["Database Server Name"] = "Nome do servidor de banco de dados";
+$a->strings["Database Login Name"] = "Nome do usuário do banco de dados";
+$a->strings["Database Login Password"] = "Senha do usuário do banco de dados";
+$a->strings["Database Name"] = "Nome do banco de dados";
+$a->strings["Site administrator email address"] = "Endereço de email do administrador do site";
+$a->strings["Your account email address must match this in order to use the web admin panel."] = "O endereço de email da sua conta deve ser igual a este para que você possa utilizar o painel de administração web.";
+$a->strings["Please select a default timezone for your website"] = "Por favor, selecione o fuso horário padrão para o seu site";
+$a->strings["Site settings"] = "Configurações do site";
+$a->strings["Could not find a command line version of PHP in the web server PATH."] = "Não foi possível encontrar uma versão de linha de comando do PHP nos caminhos do seu servidor web.";
+$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 <a href='http://friendica.com/node/27'>'Activating scheduled tasks'</a>"] = "Caso você não tenha uma versão de linha de comando do PHP instalado no seu servidor, você não será capaz de executar a captação em segundo plano. Dê uma olhada em <a href='http://friendica.com/node/27'>'Activating scheduled tasks'</a>";
+$a->strings["PHP executable path"] = "Caminho para o executável do PhP";
+$a->strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "Digite o caminho completo do executável PHP. Você pode deixar isso em branco para continuar com a instalação.";
+$a->strings["Command line PHP"] = "PHP em linha de comando";
+$a->strings["PHP executable is not the php cli binary (could be cgi-fgci version)"] = "O executável do PHP não é o binário do php cli (could be cgi-fcgi version)";
+$a->strings["Found PHP version: "] = "Encontrado PHP versão:";
+$a->strings["PHP cli binary"] = "Binário cli do PHP";
+$a->strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "\"register_argc_argv\" não está habilitado na versão de linha de comando do PHP no seu sistema.";
+$a->strings["This is required for message delivery to work."] = "Isto é necessário para o funcionamento do envio de mensagens.";
+$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"] = "Erro: a função \"openssl_pkey_new\" no seu sistema não é capaz de gerar as chaves de criptografia";
+$a->strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "Se estiver usando o Windows, por favor dê uma olhada em \"http://www.php.net/manual/en/openssl.installation.php\".";
+$a->strings["Generate encryption keys"] = "Gerar chaves de encriptação";
+$a->strings["libCurl PHP module"] = "Módulo PHP libCurl";
+$a->strings["GD graphics PHP module"] = "Módulo PHP GD graphics";
+$a->strings["OpenSSL PHP module"] = "Módulo PHP OpenSSL";
+$a->strings["mysqli PHP module"] = "Módulo PHP mysqli";
+$a->strings["mb_string PHP module"] = "Módulo PHP mb_string ";
+$a->strings["Apache mod_rewrite module"] = "Módulo mod_rewrite do Apache";
+$a->strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Erro: o módulo mod-rewrite do Apache é necessário, mas não está instalado.";
+$a->strings["Error: libCURL PHP module required but not installed."] = "Erro: o módulo libCURL do PHP é necessário, mas não está instalado.";
+$a->strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Erro: o módulo gráfico GD, com suporte a JPEG, do PHP é necessário, mas não está instalado.";
+$a->strings["Error: openssl PHP module required but not installed."] = "Erro: o módulo openssl do PHP é necessário, mas não está instalado.";
+$a->strings["Error: mysqli PHP module required but not installed."] = "Erro: o módulo mysqli do PHP é necessário, mas não está instalado.";
+$a->strings["Error: mb_string PHP module required but not installed."] = "Erro: o módulo mb_string PHP é necessário, mas não está instalado.";
+$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."] = "O instalador web precisa criar um arquivo chamado \".htconfig.php\" na pasta raiz da instalação e não está conseguindo.";
+$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."] = "Geralmente isso está relacionado às definições de permissão, uma vez que o servidor web pode não estar conseguindo escrever os arquivos nesta pasta.";
+$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."] = "Ao final desse procedimento, será fornecido um texto que deverá ser salvo em um arquivo de nome. htconfig.php, na pasta raiz da instalação do seu Friendica.";
+$a->strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"INSTALL.txt\" for instructions."] = "Você também pode pular esse procedimento e executar uma instalação manual. Por favor, dê uma olhada no arquivo \"INSTALL.TXT\" para instruções.";
+$a->strings[".htconfig.php is writable"] = ".htconfig.php tem permissão de escrita";
+$a->strings["Friendica uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "Friendica usa o engine de template Smarty3 para renderizar suas web views. Smarty3 compila templates para PHP para acelerar a renderização.";
+$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."] = "Para guardar os templates compilados, o servidor web necessita de permissão de escrita no diretório view/smarty3/ no diretório raíz do Friendica.";
+$a->strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "Favor se certificar que o usuário sob o qual o servidor web roda (ex: www-data) tenha permissão de escrita nesse diretório.";
+$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."] = "Nota: como uma medida de segurança, você deve fornecer ao servidor web permissão de escrita em view/smarty3/ somente--não aos arquivos de template (.tpl) que ele contém.";
+$a->strings["view/smarty3 is writable"] = "view/smarty3 tem escrita permitida";
+$a->strings["Url rewrite in .htaccess is not working. Check your server configuration."] = "A reescrita de URLs definida no .htaccess não está funcionando. Por favor, verifique as configurações do seu servidor.";
+$a->strings["Url rewrite is working"] = "A reescrita de URLs está funcionando";
+$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."] = "Não foi possível gravar o arquivo de configuração \".htconfig.php\". Por favor, use o texto incluso para criar um arquivo de configuração na raiz da instalação do Friendika em seu servidor web.";
+$a->strings["<h1>What next</h1>"] = "<h1>A seguir</h1>";
+$a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "IMPORTANTE: Você deve configurar [manualmente] uma tarefa agendada para o captador.";
+$a->strings["Help:"] = "Ajuda:";
+$a->strings["Contact settings applied."] = "As configurações do contato foram aplicadas.";
+$a->strings["Contact update failed."] = "Não foi possível atualizar o contato.";
+$a->strings["Repair Contact Settings"] = "Corrigir configurações do contato";
+$a->strings["<strong>WARNING: This is highly advanced</strong> and if you enter incorrect information your communications with this contact may stop working."] = "<strong>ATENÇÃO: Isso é muito avançado</strong>, se você digitar informações incorretas, suas comunicações com esse contato pode parar de funcionar.";
+$a->strings["Please use your browser 'Back' button <strong>now</strong> if you are uncertain what to do on this page."] = "Por favor, use o botão 'Voltar' do seu navegador <strong>agora</strong>, caso você não tenha certeza do que está fazendo.";
+$a->strings["Return to contact editor"] = "Voltar ao editor de contatos";
+$a->strings["No mirroring"] = "Nenhum espelhamento";
+$a->strings["Mirror as forwarded posting"] = "Espelhar como postagem encaminhada";
+$a->strings["Mirror as my own posting"] = "Espelhar como minha própria postagem";
+$a->strings["Account Nickname"] = "Identificação da conta";
+$a->strings["@Tagname - overrides Name/Nickname"] = "@Tagname - sobrescreve Nome/Identificação";
+$a->strings["Account URL"] = "URL da conta";
+$a->strings["Friend Request URL"] = "URL da requisição de amizade";
+$a->strings["Friend Confirm URL"] = "URL da confirmação de amizade";
+$a->strings["Notification Endpoint URL"] = "URL do ponto final da notificação";
+$a->strings["Poll/Feed URL"] = "URL do captador/fonte de notícias";
+$a->strings["New photo from this URL"] = "Nova imagem desta URL";
+$a->strings["Remote Self"] = "Auto remoto";
+$a->strings["Mirror postings from this contact"] = "Espelhar publicações deste contato";
+$a->strings["Mark this contact as remote_self, this will cause friendica to repost new entries from this contact."] = "Marcar este contato como auto remoto fará com que o friendica republique novas entradas deste usuário.";
+$a->strings["Welcome to Friendica"] = "Bemvindo ao Friendica";
+$a->strings["New Member Checklist"] = "Dicas para os novos membros";
+$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."] = "Gostaríamos de oferecer algumas dicas e links para ajudar a tornar a sua experiência agradável. Clique em qualquer item para visitar a página correspondente. Um link para essa página será visível em sua home page por duas semanas após o seu registro inicial e, então, desaparecerá discretamente.";
+$a->strings["Getting Started"] = "Do Início";
+$a->strings["Friendica Walk-Through"] = "Passo-a-passo da friendica";
+$a->strings["On your <em>Quick Start</em> page - find a brief introduction to your profile and network tabs, make some new connections, and find some groups to join."] = "Na sua página <em>Início Rápido</em> - encontre uma introdução rápida ao seu perfil e abas da rede, faça algumas conexões novas, e encontre alguns grupos entrar.";
+$a->strings["Go to Your Settings"] = "Ir para as suas configurações";
+$a->strings["On your <em>Settings</em> page -  change your initial password. Also make a note of your Identity Address. This looks just like an email address - and will be useful in making friends on the free social web."] = "Em sua página  <em>Configurações</em> - mude sua senha inicial. Também tome nota de seu Endereço de Identidade. Isso se parece com um endereço de e-mail - e será útil para se fazer amigos na rede social livre.";
+$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."] = "Revise as outras configurações, em particular as relacionadas a privacidade. Não estar listado no diretório é o equivalente a não ter o seu número na lista telefônica. Normalmente é interessante você estar listado - a não ser que os seu amigos atuais e potenciais saibam exatamente como encontrar você.";
+$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."] = "Envie uma foto para o seu perfil, caso ainda não tenha feito isso. Estudos indicam que pessoas que publicam fotos reais delas mesmas têm 10 vezes mais chances de encontrar novos amigos do que as que não o fazem.";
+$a->strings["Edit Your Profile"] = "Editar seu perfil";
+$a->strings["Edit your <strong>default</strong> profile to your liking. Review the settings for hiding your list of friends and hiding the profile from unknown visitors."] = "Edite o seu perfil <strong>padrão</strong> a seu gosto. Revise as configurações de ocultação da sua lista de amigos e do seu perfil de visitantes desconhecidos.";
+$a->strings["Profile Keywords"] = "Palavras-chave do perfil";
+$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."] = "Defina algumas palavras-chave públicas para o seu perfil padrão, que descrevam os seus interesses. Nós podemos encontrar outras pessoas com interesses similares e sugerir novas amizades.";
+$a->strings["Connecting"] = "Conexões";
+$a->strings["Authorise the Facebook Connector if you currently have a Facebook account and we will (optionally) import all your Facebook friends and conversations."] = "Autorize o Conector com Facebook, caso você tenha uma conta lá e nós (opcionalmente) importaremos todos os seus amigos e conversas do Facebook.";
+$a->strings["<em>If</em> this is your own personal server, installing the Facebook addon may ease your transition to the free social web."] = "<em>Se</em> esse é o seu servidor pessoal, instalar o complemento do Facebook talvez facilite a transição para a rede social livre.";
+$a->strings["Importing Emails"] = "Importação de e-mails";
+$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"] = "Forneça a informação de acesso ao seu e-mail na sua página de Configuração de Conector se você deseja importar e interagir com amigos ou listas de discussão da sua Caixa de Entrada de e-mail";
+$a->strings["Go to Your Contacts Page"] = "Ir para a sua página de contatos";
+$a->strings["Your Contacts page is your gateway to managing friendships and connecting with friends on other networks. Typically you enter their address or site URL in the <em>Add New Contact</em> dialog."] = "Sua página de contatos é sua rota para o gerenciamento de amizades e conexão com amigos em outras redes. Geralmente você fornece o endereço deles ou a URL do site na janela de diálogo <em>Adicionar Novo Contato</em>.";
+$a->strings["Go to Your Site's Directory"] = "Ir para o diretório do seu site";
+$a->strings["The Directory page lets you find other people in this network or other federated sites. Look for a <em>Connect</em> or <em>Follow</em> link on their profile page. Provide your own Identity Address if requested."] = "A página de Diretório permite que você encontre outras pessoas nesta rede ou em outras redes federadas. Procure por um link <em>Conectar</em> ou <em>Seguir</em> no perfil que deseja acompanhar. Forneça o seu Endereço de Identidade próprio, se solicitado.";
+$a->strings["Finding New People"] = "Pesquisar por novas pessoas";
+$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."] = "No painel lateral da página de Contatos existem várias ferramentas para encontrar novos amigos. Você pode descobrir pessoas com os mesmos interesses, procurar por nomes ou interesses e fornecer sugestões baseadas nos relacionamentos da rede. Em um site completamente novo, as sugestões de amizades geralmente começam a ser populadas dentro de 24 horas.";
+$a->strings["Group Your Contacts"] = "Agrupe seus contatos";
+$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."] = "Após fazer novas amizades, organize-as em grupos de conversa privados, a partir da barra lateral na sua página de Contatos. A partir daí, você poderá interagir com cada grupo privativamente, na sua página de Rede.";
+$a->strings["Why Aren't My Posts Public?"] = "Por que as minhas publicações não são públicas?";
+$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."] = "A friendica respeita sua privacidade. Por padrão, suas publicações estarão visíveis apenas para as pessoas que você adicionou como amigos. Para mais informações, veja a página de ajuda, a partir do link acima.";
+$a->strings["Getting Help"] = "Obtendo ajuda";
+$a->strings["Go to the Help Section"] = "Ir para a seção de ajuda";
+$a->strings["Our <strong>help</strong> pages may be consulted for detail on other program features and resources."] = "Nossas páginas de <strong>ajuda</strong> podem ser consultadas para mais detalhes sobre características e recursos do programa.";
+$a->strings["Poke/Prod"] = "Cutucar/Incitar";
+$a->strings["poke, prod or do other things to somebody"] = "Cutuca, incita ou faz outras coisas com alguém";
+$a->strings["Recipient"] = "Destinatário";
+$a->strings["Choose what you wish to do to recipient"] = "Selecione o que você deseja fazer com o destinatário";
+$a->strings["Make this post private"] = "Fazer com que essa publicação se torne privada";
+$a->strings["Item has been removed."] = "O item foi removido.";
+$a->strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s está seguindo %2\$s's %3\$s";
+$a->strings["%1\$s welcomes %2\$s"] = "%1\$s dá as boas vinda à %2\$s";
+$a->strings["This may occasionally happen if contact was requested by both persons and it has already been approved."] = "Isso pode acontecer eventualmente se o contato foi solicitado por ambas as pessoas e ele já tinha sido aprovado.";
+$a->strings["Response from remote site was not understood."] = "A resposta do site remoto não foi compreendida.";
+$a->strings["Unexpected response from remote site: "] = "Resposta inesperada do site remoto: ";
+$a->strings["Confirmation completed successfully."] = "A confirmação foi completada com sucesso.";
+$a->strings["Remote site reported: "] = "O site remoto relatou: ";
+$a->strings["Temporary failure. Please wait and try again."] = "Falha temporária. Por favor, aguarde e tente novamente.";
+$a->strings["Introduction failed or was revoked."] = "Ocorreu uma falha na apresentação ou ela foi revogada.";
+$a->strings["Unable to set contact photo."] = "Não foi possível definir a foto do contato.";
+$a->strings["No user record found for '%s' "] = "Não foi encontrado nenhum registro de usuário para '%s' ";
+$a->strings["Our site encryption key is apparently messed up."] = "A chave de criptografia do nosso site está, aparentemente, bagunçada.";
+$a->strings["Empty site URL was provided or URL could not be decrypted by us."] = "Foi fornecida uma URL em branco ou não foi possível descriptografá-la.";
+$a->strings["Contact record was not found for you on our site."] = "O registro do contato não foi encontrado para você em seu site.";
+$a->strings["Site public key not available in contact record for URL %s."] = "A chave pública do site não está disponível no registro do contato para a URL %s";
+$a->strings["The ID provided by your system is a duplicate on our system. It should work if you try again."] = "O ID fornecido pelo seu sistema é uma duplicata em nosso sistema. Deve funcionar agora, se você tentar de novo.";
+$a->strings["Unable to set your contact credentials on our system."] = "Não foi possível definir suas credenciais de contato no nosso sistema.";
+$a->strings["Unable to update your contact profile details on our system"] = "Não foi possível atualizar os detalhes do seu perfil em nosso sistema.";
+$a->strings["%1\$s has joined %2\$s"] = "%1\$s se associou a %2\$s";
+$a->strings["Unable to locate original post."] = "Não foi possível localizar a publicação original.";
+$a->strings["Empty post discarded."] = "A publicação em branco foi descartada.";
+$a->strings["System error. Post not saved."] = "Erro no sistema. A publicação não foi salva.";
+$a->strings["This message was sent to you by %s, a member of the Friendica social network."] = "Essa mensagem foi enviada a você por %s, um membro da rede social Friendica.";
+$a->strings["You may visit them online at %s"] = "Você pode visitá-lo em %s";
+$a->strings["Please contact the sender by replying to this post if you do not wish to receive these messages."] = "Por favor, entre em contato com o remetente respondendo a esta publicação, caso você não queira mais receber estas mensagens.";
+$a->strings["%s posted an update."] = "%s publicou uma atualização.";
+$a->strings["Image uploaded but image cropping failed."] = "A imagem foi enviada, mas não foi possível cortá-la.";
+$a->strings["Image size reduction [%s] failed."] = "Não foi possível reduzir o tamanho da imagem [%s].";
+$a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Recarregue a página pressionando a tecla Shift ou limpe o cache do navegador caso a nova foto não apareça imediatamente";
+$a->strings["Unable to process image"] = "Não foi possível processar a imagem";
+$a->strings["Upload File:"] = "Enviar arquivo:";
+$a->strings["Select a profile:"] = "Selecione um perfil:";
+$a->strings["Upload"] = "Enviar";
+$a->strings["skip this step"] = "pule esta etapa";
+$a->strings["select a photo from your photo albums"] = "selecione uma foto de um álbum de fotos";
+$a->strings["Crop Image"] = "Cortar a imagem";
+$a->strings["Please adjust the image cropping for optimum viewing."] = "Por favor, ajuste o corte da imagem para a melhor visualização.";
+$a->strings["Done Editing"] = "Encerrar a edição";
+$a->strings["Image uploaded successfully."] = "A imagem foi enviada com sucesso.";
+$a->strings["Friends of %s"] = "Amigos de %s";
+$a->strings["No friends to display."] = "Nenhum amigo para exibir.";
+$a->strings["Find on this site"] = "Pesquisar neste site";
+$a->strings["Site Directory"] = "Diretório do site";
+$a->strings["Gender: "] = "Gênero: ";
+$a->strings["No entries (some entries may be hidden)."] = "Nenhuma entrada (algumas entradas podem estar ocultas).";
+$a->strings["Time Conversion"] = "Conversão de tempo";
+$a->strings["Friendica provides this service for sharing events with other networks and friends in unknown timezones."] = "Friendica provê esse serviço para compartilhar eventos com outras redes e amigos em fuso-horários desconhecidos.";
+$a->strings["UTC time: %s"] = "Hora UTC: %s";
+$a->strings["Current timezone: %s"] = "Fuso horário atual: %s";
+$a->strings["Converted localtime: %s"] = "Horário local convertido: %s";
+$a->strings["Please select your timezone:"] = "Por favor, selecione seu fuso horário:";
index 4b34ee182fe3d5765892070592b829424dbe61fb..a96e5aff31c1f54a51bc8f2ef231e223e3bda77d 100644 (file)
                        eventClick: function(calEvent, jsEvent, view) {
                                showEvent(calEvent.id);
                        },
+                        loading: function(isLoading, view) {
+                               if(!isLoading) {
+                                       $('td.fc-day').dblclick(function() { window.location.href='/events/new?start='+$(this).data('date'); });
+                               }
+                       },
                        
                        eventRender: function(event, element, view) {
                                //console.log(view.name);
index b304be3b994b37888b8fb9fd01f68332cb5b7ae1..fa3a111480982731b821fafef7569f0e65d8c998 100644 (file)
@@ -1,4 +1,3 @@
-
 <div class="widget" id="group-sidebar">
 <h3>{{$title}}</h3>
 
        </ul>
        </div>
   <div id="sidebar-new-group">
-  <a href="group/new">{{$createtext}}</a>
+  <a onclick="javascript:$('#group-new-form').fadeIn('fast');return false;">{{$createtext}}</a>
+  <form id="group-new-form" action="group/new" method="post" style="display:none;">
+   <input type="hidden" name="form_security_token" value="{{$form_security_token}}">
+   <input name="groupname" id="id_groupname" placeholder="{{$creategroup}}">
+  </form>
   </div>
   {{if $ungrouped}}
   <div id="sidebar-ungrouped">