]> git.mxchange.org Git - friendica.git/commitdiff
Merge remote-tracking branch 'friendica/develop' into develop
authorHypolite Petovan <mrpetovan@gmail.com>
Tue, 20 Dec 2016 16:59:35 +0000 (11:59 -0500)
committerHypolite Petovan <mrpetovan@gmail.com>
Tue, 20 Dec 2016 16:59:35 +0000 (11:59 -0500)
148 files changed:
boot.php
include/Contact.php
include/Core/Config.php
include/Core/PConfig.php
include/ForumManager.php
include/NotificationsManager.php
include/Probe.php
include/acl_selectors.php
include/api.php
include/auth.php
include/auth_ejabberd.php
include/contact_selectors.php
include/contact_widgets.php
include/conversation.php
include/cron.php
include/cronhooks.php
include/datetime.php
include/dba.php
include/dba_pdo.php
include/dbstructure.php
include/delivery.php
include/dfrn.php
include/diaspora.php
include/discover_poco.php
include/enotify.php
include/event.php
include/expire.php
include/fcontact.php
include/files.php
include/follow.php
include/gprobe.php
include/group.php
include/identity.php
include/items.php
include/like.php
include/lock.php
include/message.php
include/nav.php
include/network.php
include/notifier.php
include/oauth.php
include/oembed.php
include/onepoll.php
include/ostatus.php
include/pgettext.php
include/plaintext.php
include/plugin.php
include/poller.php
include/queue_fn.php
include/redir.php
include/security.php
include/socgraph.php
include/tags.php
include/text.php
include/threads.php
include/uimport.php
include/user.php
library/langdet/Text/LanguageDetect.php
mod/admin.php
mod/allfriends.php
mod/api.php
mod/attach.php
mod/cal.php
mod/common.php
mod/community.php
mod/contactgroup.php
mod/contacts.php
mod/content.php
mod/crepair.php
mod/delegate.php
mod/dfrn_confirm.php
mod/dfrn_notify.php
mod/dfrn_poll.php
mod/dfrn_request.php
mod/directory.php
mod/editpost.php
mod/events.php
mod/fbrowser.php
mod/fetch.php
mod/friendica.php
mod/fsuggest.php
mod/group.php
mod/ignored.php
mod/install.php
mod/item.php
mod/lockview.php
mod/lostpass.php
mod/manage.php
mod/match.php
mod/message.php
mod/modexp.php
mod/mood.php
mod/msearch.php
mod/network.php
mod/nogroup.php
mod/noscrape.php
mod/notes.php
mod/notice.php
mod/notifications.php
mod/notify.php
mod/openid.php
mod/p.php
mod/photo.php
mod/photos.php
mod/ping.php
mod/poco.php
mod/poke.php
mod/post.php
mod/profile.php
mod/profile_photo.php
mod/profiles.php
mod/profperm.php
mod/proxy.php
mod/pubsub.php
mod/pubsubhubbub.php
mod/qsearch.php
mod/receive.php
mod/redir.php
mod/regmod.php
mod/salmon.php
mod/search.php
mod/settings.php
mod/share.php
mod/starred.php
mod/subthread.php
mod/suggest.php
mod/tagger.php
mod/tagrm.php
mod/uexport.php
mod/videos.php
mod/viewcontacts.php
mod/viewsrc.php
mod/wall_attach.php
mod/wall_upload.php
mod/wallmessage.php
mod/xrd.php
object/BaseObject.php
object/Conversation.php
object/Item.php
tests/get_tags_test.php
update.php
util/messages.po
view/lang/de/messages.po
view/lang/de/strings.php
view/templates/follow_slap.tpl [deleted file]
view/theme/frio/theme.php
view/theme/vier/style.css
view/theme/vier/theme.php

index 49745122481b4c51e0dfb7e124bf7a479d4719ce..b282f8d48e0b64577860cfcad7da20c4d943a75d 100644 (file)
--- a/boot.php
+++ b/boot.php
@@ -767,7 +767,7 @@ class App {
 
        }
 
-       function get_basepath() {
+       public static function get_basepath() {
 
                $basepath = get_config("system", "basepath");
 
@@ -1191,7 +1191,7 @@ class App {
                q("START TRANSACTION");
 
                $r = q("SELECT `pid` FROM `process` WHERE `pid` = %d", intval(getmypid()));
-               if(!dbm::is_result($r)) {
+               if (!dbm::is_result($r)) {
                        q("INSERT INTO `process` (`pid`,`command`,`created`) VALUES (%d, '%s', '%s')",
                                intval(getmypid()),
                                dbesc($command),
@@ -1207,7 +1207,7 @@ class App {
                q("START TRANSACTION");
 
                $r = q("SELECT `pid` FROM `process`");
-               if(dbm::is_result($r)) {
+               if (dbm::is_result($r)) {
                        foreach ($r AS $process) {
                                if (!posix_kill($process["pid"], 0)) {
                                        q("DELETE FROM `process` WHERE `pid` = %d", intval($process["pid"]));
@@ -1294,10 +1294,6 @@ class App {
         */
        function max_processes_reached() {
 
-               // Is the function called statically?
-               if (!is_object($this))
-                       return(self::$a->max_processes_reached());
-
                if ($this->is_backend()) {
                        $process = "backend";
                        $max_processes = get_config('system', 'max_processes_backend');
@@ -1329,10 +1325,6 @@ class App {
         */
        function maxload_reached() {
 
-               // Is the function called statically?
-               if (!is_object($this))
-                       return(self::$a->maxload_reached());
-
                if ($this->is_backend()) {
                        $process = "backend";
                        $maxsysload = intval(get_config('system', 'maxloadavg'));
@@ -1479,17 +1471,18 @@ function system_unavailable() {
 
 
 function clean_urls() {
-       global $a;
+       $a = get_app();
        //      if($a->config['system']['clean_urls'])
        return true;
        //      return false;
 }
 
 function z_path() {
-       global $a;
-       $base = $a->get_baseurl();
+       $base = App::get_baseurl();
+
        if(! clean_urls())
                $base .= '/?q=';
+
        return $base;
 }
 
@@ -1499,10 +1492,10 @@ function z_path() {
  * @see App::get_baseurl()
  *
  * @return string
+ * @TODO Maybe super-flous and deprecated? Seems to only wrap App::get_baseurl()
  */
 function z_root() {
-       global $a;
-       return $a->get_baseurl();
+       return App::get_baseurl();
 }
 
 /**
@@ -1685,7 +1678,7 @@ function run_update_function($x) {
 function check_plugins(&$a) {
 
        $r = q("SELECT * FROM `addon` WHERE `installed` = 1");
-       if(dbm::is_result($r))
+       if (dbm::is_result($r))
                $installed = $r;
        else
                $installed = array();
@@ -1903,7 +1896,7 @@ function info($s) {
  * @return int
  */
 function get_max_import_size() {
-       global $a;
+       $a = get_app();
        return ((x($a->config,'max_import_size')) ? $a->config['max_import_size'] : 0 );
 }
 
@@ -2029,7 +2022,7 @@ function current_theme(){
                $r = q("select theme from user where uid = %d limit 1",
                        intval($a->profile_uid)
                );
-               if(dbm::is_result($r))
+               if (dbm::is_result($r))
                        $page_theme = $r[0]['theme'];
        }
 
@@ -2100,7 +2093,7 @@ function current_theme(){
  * @return string
  */
 function current_theme_url() {
-       global $a;
+       $a = get_app();
 
        $t = current_theme();
 
@@ -2142,7 +2135,7 @@ function feed_birthday($uid,$tz) {
                        intval($uid)
        );
 
-       if(dbm::is_result($p)) {
+       if (dbm::is_result($p)) {
                $tmp_dob = substr($p[0]['dob'],5);
                if(intval($tmp_dob)) {
                        $y = datetime_convert($tz,$tz,'now','Y');
index 8a33e3fe9161e865c6b1e2fa507ea4de7ad29d0c..7ca45a21bd01e32baee60d3e235faa49afc76cb1 100644 (file)
@@ -64,7 +64,7 @@ function contact_remove($id) {
        $r = q("select uid from contact where id = %d limit 1",
                intval($id)
        );
-       if((! count($r)) || (! intval($r[0]['uid'])))
+       if((! dbm::is_result($r)) || (! intval($r[0]['uid'])))
                return;
 
        $archive = get_pconfig($r[0]['uid'], 'system','archive_removed_contacts');
@@ -93,20 +93,13 @@ function terminate_friendship($user,$self,$contact) {
 
        if($contact['network'] === NETWORK_OSTATUS) {
 
-               $slap = replace_macros(get_markup_template('follow_slap.tpl'), array(
-                       '$name' => $user['username'],
-                       '$profile_page' => $a->get_baseurl() . '/profile/' . $user['nickname'],
-                       '$photo' => $self['photo'],
-                       '$thumb' => $self['thumb'],
-                       '$published' => datetime_convert('UTC','UTC', 'now', ATOM_TIME),
-                       '$item_id' => 'urn:X-dfrn:' . $a->get_hostname() . ':unfollow:' . get_guid(32),
-                       '$title' => '',
-                       '$type' => 'text',
-                       '$content' => t('stopped following'),
-                       '$nick' => $user['nickname'],
-                       '$verb' => 'http://ostatus.org/schema/1.0/unfollow', // ACTIVITY_UNFOLLOW,
-                       '$ostat_follow' => '' // '<as:verb>http://ostatus.org/schema/1.0/unfollow</as:verb>' . "\r\n"
-               ));
+               require_once('include/ostatus.php');
+
+               // create an unfollow slap
+               $item = array();
+               $item['verb'] = NAMESPACE_OSTATUS."/unfollow";
+               $item['follow'] = $contact["url"];
+               $slap = ostatus::salmon($item, $user);
 
                if((x($contact,'notify')) && (strlen($contact['notify']))) {
                        require_once('include/salmon.php');
@@ -249,7 +242,7 @@ function get_contact_details_by_url($url, $uid = -1, $default = array()) {
                        FROM `gcontact` WHERE `nurl` = '%s'",
                                dbesc(normalise_link($url)));
 
-       if ($r) {
+       if (dbm::is_result($r)) {
                // If there is more than one entry we filter out the connector networks
                if (count($r) > 1) {
                        foreach ($r AS $id => $result) {
@@ -435,7 +428,7 @@ function random_profile() {
                        ORDER BY rand() LIMIT 1",
                dbesc(NETWORK_DFRN));
 
-       if(count($r))
+       if (dbm::is_result($r))
                return dirname($r[0]['url']);
        return '';
 }
index a5eca0570a56efc86f1ecf26ed4dae91f71e07df..7b7045a9ee3ed2f3fe00989d97db6cba13e9959f 100644 (file)
@@ -1,5 +1,8 @@
 <?php
 namespace Friendica\Core;
+
+use dbm;
+
 /**
  * @file include/Core/Config.php
  *
@@ -30,10 +33,10 @@ class Config {
         * @return void
         */
        public static function load($family) {
-               global $a;
+               $a = get_app();
 
                $r = q("SELECT `v`, `k` FROM `config` WHERE `cat` = '%s' ORDER BY `cat`, `k`, `id`", dbesc($family));
-               if (count($r)) {
+               if (dbm::is_result($r)) {
                        foreach ($r as $rr) {
                                $k = $rr['k'];
                                if ($family === 'config') {
@@ -72,7 +75,7 @@ class Config {
         */
        public static function get($family, $key, $default_value = null, $refresh = false) {
 
-               global $a;
+               $a = get_app();
 
                if (!$refresh) {
                        // Looking if the whole family isn't set
@@ -123,7 +126,7 @@ class Config {
         * @return mixed Stored $value or false if the database update failed
         */
        public static function set($family, $key, $value) {
-               global $a;
+               $a = get_app();
 
                $stored = self::get($family, $key);
 
@@ -171,7 +174,7 @@ class Config {
         */
        public static function delete($family, $key) {
 
-               global $a;
+               $a = get_app();
                if (x($a->config[$family],$key)) {
                        unset($a->config[$family][$key]);
                }
index 63d204b3a2cd01ff63c1b88842ed65d83c1866bf..43735018e4ce143b2826ed61d61987d21cd9303e 100644 (file)
@@ -1,5 +1,8 @@
 <?php
 namespace Friendica\Core;
+
+use dbm;
+
 /**
  * @file include/Core/PConfig.php
  * @brief contains the class with methods for the management
@@ -28,12 +31,12 @@ class PConfig {
         * @return void
         */
        public static function load($uid, $family) {
-               global $a;
+               $a = get_app();
                $r = q("SELECT `v`,`k` FROM `pconfig` WHERE `cat` = '%s' AND `uid` = %d ORDER BY `cat`, `k`, `id`",
                        dbesc($family),
                        intval($uid)
                );
-               if (count($r)) {
+               if (dbm::is_result($r)) {
                        foreach ($r as $rr) {
                                $k = $rr['k'];
                                $a->config[$uid][$family][$k] = $rr['v'];
@@ -65,7 +68,7 @@ class PConfig {
         */
        public static function get($uid, $family, $key, $default_value = null, $refresh = false) {
 
-               global $a;
+               $a = get_app();
 
                if (!$refresh) {
                        // Looking if the whole family isn't set
@@ -120,7 +123,7 @@ class PConfig {
         */
        public static function set($uid, $family, $key, $value) {
 
-               global $a;
+               $a = get_app();
 
                $stored = self::get($uid, $family, $key);
 
@@ -171,7 +174,7 @@ class PConfig {
         */
        public static function delete($uid,$family,$key) {
 
-               global $a;
+               $a = get_app();
 
                if (x($a->config[$uid][$family], $key)) {
                        unset($a->config[$uid][$family][$key]);
index d01ece4d95377fb2f3643484d095fda8ebeb74ee..c2a20df29faf069bd0b3fc987b33e3d12b918e7f 100644 (file)
@@ -88,7 +88,7 @@ class ForumManager {
                $total = count($contacts);
                $visible_forums = 10;
 
-               if(dbm::is_result($contacts)) {
+               if (dbm::is_result($contacts)) {
 
                        $id = 0;
 
index 13a2534e1e42b6e36e5072fd40b1f75719a0d871..2adab59721e4cd48d88c482eea03f9ad3681997d 100644 (file)
@@ -88,7 +88,7 @@ class NotificationsManager {
                                intval(local_user())
                        );
 
-               if(dbm::is_result($r))
+               if (dbm::is_result($r))
                        return $this->_set_extra($r);
 
                return false;
@@ -105,7 +105,7 @@ class NotificationsManager {
                        intval($id),
                        intval(local_user())
                );
-               if(dbm::is_result($r)) {
+               if (dbm::is_result($r)) {
                        return $this->_set_extra($r)[0];
                }
                return null;
@@ -358,7 +358,7 @@ class NotificationsManager {
                        intval(local_user())
                );
 
-               if(dbm::is_result($r))
+               if (dbm::is_result($r))
                        return $r[0]['total'];
 
                return 0;
@@ -401,7 +401,7 @@ class NotificationsManager {
                                intval($limit)
                );
 
-               if(dbm::is_result($r))
+               if (dbm::is_result($r))
                        $notifs = $this->formatNotifs($r, $ident);
 
                $arr = array (
@@ -430,7 +430,7 @@ class NotificationsManager {
                        intval(local_user())
                );
 
-               if(dbm::is_result($r))
+               if (dbm::is_result($r))
                        return $r[0]['total'];
 
                return 0;
@@ -466,7 +466,7 @@ class NotificationsManager {
                        intval($limit)
                );
 
-               if(dbm::is_result($r))
+               if (dbm::is_result($r))
                        $notifs = $this->formatNotifs($r, $ident);
 
                $arr = array (
@@ -520,7 +520,7 @@ class NotificationsManager {
                        intval(local_user())
                );
 
-               if(dbm::is_result($r))
+               if (dbm::is_result($r))
                        return $r[0]['total'];
 
                return 0;
@@ -564,7 +564,7 @@ class NotificationsManager {
                                intval($limit)
                );
 
-               if(dbm::is_result($r))
+               if (dbm::is_result($r))
                        $notifs = $this->formatNotifs($r, $ident);
                
                $arr = array (
@@ -596,7 +596,7 @@ class NotificationsManager {
                        intval(local_user())
                );
 
-               if(dbm::is_result($r))
+               if (dbm::is_result($r))
                        return $r[0]['total'];
 
                return 0;
@@ -638,7 +638,7 @@ class NotificationsManager {
                                intval($limit)
                );
 
-               if(dbm::is_result($r))
+               if (dbm::is_result($r))
                        $notifs = $this->formatNotifs($r, $ident);
 
                $arr = array (
@@ -668,7 +668,7 @@ class NotificationsManager {
                                intval($_SESSION['uid'])
                );
 
-               if(dbm::is_result($r))
+               if (dbm::is_result($r))
                        return $r[0]['total'];
 
                return 0;
@@ -713,7 +713,7 @@ class NotificationsManager {
                                intval($limit)
                );
 
-               if(dbm::is_result($r))
+               if (dbm::is_result($r))
                        $notifs = $this->formatIntros($r);
 
                $arr = array (
index 14e8d5bcad8ab2593547a100bb12c3fa09a365bf..5c2ba86ccde08e0ec1a56926bc97f139859d9c99 100644 (file)
@@ -1084,7 +1084,7 @@ class Probe {
 
                $r = q("SELECT * FROM `mailacct` WHERE `uid` = %d AND `server` != '' LIMIT 1", intval($uid));
 
-               if(count($x) && count($r)) {
+               if (dbm::is_result($x) && dbm::is_result($r)) {
                        $mailbox = construct_mailbox_name($r[0]);
                        $password = '';
                        openssl_private_decrypt(hex2bin($r[0]['pass']), $password,$x[0]['prvkey']);
index 71a42478ba92c06b80c02f6f3d332af6382deba4..ed9c634c23a8073950eb6ae40e146444e8554737 100644 (file)
@@ -33,7 +33,7 @@ function group_select($selname,$selclass,$preselected = false,$size = 4) {
 
        call_hooks($a->module . '_pre_' . $selname, $arr);
 
-       if(count($r)) {
+       if (dbm::is_result($r)) {
                foreach($r as $rr) {
                        if((is_array($preselected)) && in_array($rr['id'], $preselected))
                                $selected = " selected=\"selected\" ";
@@ -144,7 +144,7 @@ function contact_selector($selname, $selclass, $preselected = false, $options) {
 
        call_hooks($a->module . '_pre_' . $selname, $arr);
 
-       if(count($r)) {
+       if (dbm::is_result($r)) {
                foreach($r as $rr) {
                        if((is_array($preselected)) && in_array($rr['id'], $preselected))
                                $selected = " selected=\"selected\" ";
@@ -220,7 +220,7 @@ function contact_select($selname, $selclass, $preselected = false, $size = 4, $p
 
        $receiverlist = array();
 
-       if(count($r)) {
+       if (dbm::is_result($r)) {
                foreach($r as $rr) {
                        if((is_array($preselected)) && in_array($rr['id'], $preselected))
                                $selected = " selected=\"selected\" ";
@@ -314,7 +314,7 @@ function populate_acl($user = null, $show_jotnets = false) {
                        $r = q("SELECT `pubmail` FROM `mailacct` WHERE `uid` = %d AND `server` != '' LIMIT 1",
                                intval(local_user())
                        );
-                       if(count($r)) {
+                       if (dbm::is_result($r)) {
                                $mail_enabled = true;
                                if(intval($r[0]['pubmail']))
                                        $pubmail_enabled = true;
@@ -577,7 +577,7 @@ function acl_lookup(&$a, $out_type = 'json') {
                $r = array();
 
 
-       if(count($r)) {
+       if (dbm::is_result($r)) {
                foreach($r as $g){
                        $contacts[] = array(
                                "type"  => "c",
@@ -612,7 +612,7 @@ function acl_lookup(&$a, $out_type = 'json') {
                                dbesc($search),
                                implode("','", $known_contacts)
                );
-               if (is_array($r) && count($r)){
+               if (dbm::is_result($r)){
                        foreach($r as $row) {
                                // nickname..
                                $up = parse_url($row['author-link']);
index 1f3c762989f3f2c5850fdfd4327768307b545060..2ae1aeaa026e25e9f8c7fbca5b7d0bb61ec4aa79 100644 (file)
                                dbesc(trim($user)),
                                dbesc($encrypted)
                        );
-                       if(count($r))
+                       if (dbm::is_result($r))
                                $record = $r[0];
                }
 
                if (is_null($user_info)) $user_info = api_get_user($a);
                $arr['$user'] = $user_info;
                $arr['$rss'] = array(
-                       'alternate' => $user_info['url'],
-                       'self' => App::get_baseurl(). "/". $a->query_string,
-                       'base' => App::get_baseurl(),
-                       'updated' => api_date(null),
+                       'alternate'    => $user_info['url'],
+                       'self'         => App::get_baseurl(). "/". $a->query_string,
+                       'base'         => App::get_baseurl(),
+                       'updated'      => api_date(null),
                        'atom_updated' => datetime_convert('UTC','UTC','now',ATOM_TIME),
-                       'language' => $user_info['language'],
-                       'logo'  => App::get_baseurl()."/images/friendica-32.png",
+                       'language'     => $user_info['language'],
+                       'logo'         => App::get_baseurl()."/images/friendica-32.png",
                );
 
                return $arr;
 
                if (isset($_GET["q"])) {
                        $r = q("SELECT id FROM `contact` WHERE `uid` = 0 AND `name` = '%s'", dbesc($_GET["q"]));
-                       if (!count($r))
+                       if (!dbm::is_result($r))
                                $r = q("SELECT `id` FROM `contact` WHERE `uid` = 0 AND `nick` = '%s'", dbesc($_GET["q"]));
 
-                       if (count($r)) {
+                       if (dbm::is_result($r)) {
                                $k = 0;
                                foreach ($r AS $user) {
                                        $user_info = api_get_user($a, $user["id"], "json");
                        intval(api_user())
                );
 
-               if(!dbm::is_result($r))
+               if (!dbm::is_result($r))
                        return;
 
                $ids = array();
                        intval(api_user())
                );
 
-               if ((! count($r)) || ($r[0]['network'] !== NETWORK_DFRN))
+               if ((! dbm::is_result($r)) || ($r[0]['network'] !== NETWORK_DFRN))
                        throw new BadRequestException("Unknown contact");
 
                $cid = $r[0]['id'];
                                intval($uid),
                                intval($gid));
                        // error message if specified gid is not in database
-                       if (count($r) == 0)
+                       if (!dbm::is_result($r))
                                throw new BadRequestException("gid not available");
                }
                else
                        intval($uid),
                        intval($gid));
                // error message if specified gid is not in database
-               if (count($r) == 0)
+               if (!dbm::is_result($r))
                        throw new BadRequestException('gid not available');
 
                // get data of the specified group id and group name
 
                $profile_url = $user_info["url"];
                // message if nothing was found
-               if (count($r) == 0) 
+               if (!dbm::is_result($r))
+                       $success = array('success' => false, 'search_results' => 'problem with query');
+               else if (count($r) == 0) 
                        $success = array('success' => false, 'search_results' => 'nothing found');
                else {
                        $ret = Array();
        }
        api_register_func('api/friendica/direct_messages_search', 'api_friendica_direct_messages_search', true);
 
-
        /**
         * @brief return data of all the profiles a user has to the client
         *
                                intval(api_user()),
                                intval($profileid));
                        // error message if specified gid is not in database
-                       if (count($r) == 0)
+                       if (!dbm::is_result($r))
                                throw new BadRequestException("profile_id not available");
                }
                else
index d1917b8b30903138f18a8cd17203588c8c8f1361..2ca9c3efb29e7937b326b40ee8e5d2665693cd57 100644 (file)
@@ -50,7 +50,7 @@ if (isset($_SESSION) && x($_SESSION,'authenticated') && (!x($_POST,'auth-params'
                $r = q("SELECT * FROM `contact` WHERE `id` = %d LIMIT 1",
                        intval($_SESSION['visitor_id'])
                );
-               if (count($r)) {
+               if (dbm::is_result($r)) {
                        $a->contact = $r[0];
                }
        }
@@ -73,7 +73,7 @@ if (isset($_SESSION) && x($_SESSION,'authenticated') && (!x($_POST,'auth-params'
                        intval($_SESSION['uid'])
                );
 
-               if (!count($r)) {
+               if (!dbm::is_result($r)) {
                        nuke_session();
                        goaway(z_root());
                }
@@ -169,7 +169,7 @@ if (isset($_SESSION) && x($_SESSION,'authenticated') && (!x($_POST,'auth-params'
                                dbesc(trim($_POST['username'])),
                                dbesc($encrypted)
                        );
-                       if (count($r))
+                       if (dbm::is_result($r))
                                $record = $r[0];
                }
 
index e1900dc7304df8501794b5f9537fc050d59f3e85..8ee3af8e2be23148342d2eb84bcffb6707ba8da4 100755 (executable)
@@ -146,7 +146,7 @@ class exAuth {
         * @param array $aCommand The command array
         */
        private function isuser($aCommand) {
-               global $a;
+               $a = get_app();
 
                // Check if there is a username
                if (!isset($aCommand[1])) {
@@ -159,14 +159,19 @@ class exAuth {
                $sUser = str_replace(array("%20", "(a)"), array(" ", "@"), $aCommand[1]);
                $this->writeDebugLog("[debug] checking isuser for ". $sUser."@".$aCommand[2]);
 
-               // If the hostnames doesn't match, we try to check remotely
-               if ($a->get_hostname() != $aCommand[2])
-                       $found = $this->check_user($aCommand[2], $aCommand[1], true);
-               else {
+               // Does the hostname match? So we try directly
+               if ($a->get_hostname() == $aCommand[2]) {
                        $sQuery = "SELECT `uid` FROM `user` WHERE `nickname`='".dbesc($sUser)."'";
                        $this->writeDebugLog("[debug] using query ". $sQuery);
                        $r = q($sQuery);
                        $found = dbm::is_result($r);
+               } else {
+                       $found = false;
+               }
+
+               // If the hostnames doesn't match or there is some failure, we try to check remotely
+               if (!$found) {
+                       $found = $this->check_user($aCommand[2], $aCommand[1], true);
                }
 
                if ($found) {
@@ -214,7 +219,7 @@ class exAuth {
         * @param array $aCommand The command array
         */
        private function auth($aCommand) {
-               global $a;
+               $a = get_app();
 
                // check user authentication
                if (sizeof($aCommand) != 4) {
@@ -227,10 +232,8 @@ class exAuth {
                $sUser = str_replace(array("%20", "(a)"), array(" ", "@"), $aCommand[1]);
                $this->writeDebugLog("[debug] doing auth for ".$sUser."@".$aCommand[2]);
 
-               // If the hostnames doesn't match, we try to authenticate remotely
-               if ($a->get_hostname() != $aCommand[2])
-                       $Error = !$this->check_credentials($aCommand[2], $aCommand[1], $aCommand[3], true);
-               else {
+               // Does the hostname match? So we try directly
+               if ($a->get_hostname() == $aCommand[2]) {
                        $sQuery = "SELECT `uid`, `password` FROM `user` WHERE `nickname`='".dbesc($sUser)."'";
                        $this->writeDebugLog("[debug] using query ". $sQuery);
                        if ($oResult = q($sQuery)) {
@@ -246,6 +249,13 @@ class exAuth {
                                $this->writeLog("[exAuth] got password ".$oConfig[0]["v"]);
                                $Error = ($aCommand[3] != $oConfig[0]["v"]);
                        }
+               } else {
+                       $Error = true;
+               }
+
+               // If the hostnames doesn't match or there is some failure, we try to check remotely
+               if ($Error) {
+                       $Error = !$this->check_credentials($aCommand[2], $aCommand[1], $aCommand[3], true);
                }
 
                if ($Error) {
index 35c9d983d72797f49ac49f46da496d93d1bfed48..0790e503ea3d24cef132442f8e949dac98e5333d 100644 (file)
@@ -12,7 +12,7 @@ function contact_profile_assign($current,$foreign_net) {
        $r = q("SELECT `id`, `profile-name` FROM `profile` WHERE `uid` = %d",
                        intval($_SESSION['uid']));
 
-       if(count($r)) {
+       if (dbm::is_result($r)) {
                foreach($r as $rr) {
                        $selected = (($rr['id'] == $current) ? " selected=\"selected\" " : "");
                        $o .= "<option value=\"{$rr['id']}\" $selected >{$rr['profile-name']}</option>\r\n";
index bbbd941b5609df3ae7321bc708599e17c6de4ccc..f66d23c518e5b16125d91c7d3381f92b17404ea2 100644 (file)
@@ -93,7 +93,7 @@ function networks_widget($baseurl,$selected = '') {
        );
 
        $nets = array();
-       if(count($r)) {
+       if (dbm::is_result($r)) {
                require_once('include/contact_selectors.php');
                foreach($r as $rr) {
                                if($rr['network'])
@@ -204,13 +204,13 @@ function common_friends_visitor_widget($profile_uid) {
                                dbesc(normalise_link(get_my_url())),
                                intval($profile_uid)
                        );
-                       if(count($r))
+                       if (dbm::is_result($r))
                                $cid = $r[0]['id'];
                        else {
                                $r = q("select id from gcontact where nurl = '%s' limit 1",
                                        dbesc(normalise_link(get_my_url()))
                                );
-                               if(count($r))
+                               if (dbm::is_result($r))
                                        $zcid = $r[0]['id'];
                        }
                }
index 63db42d93ad91439b552d7213dfdd1f5fe7b5ffe..567bf83e1bfdb2e7b0d2d0a38af11fc2b37f298e 100644 (file)
@@ -109,7 +109,7 @@ function localize_item(&$item){
                $r = q("SELECT * from `item`,`contact` WHERE
                                `item`.`contact-id`=`contact`.`id` AND `item`.`uri`='%s';",
                                 dbesc($item['parent-uri']));
-               if(count($r)==0) return;
+               if (!dbm::is_result($r)) return;
                $obj=$r[0];
 
                $author  = '[url=' . $item['author-link'] . ']' . $item['author-name'] . '[/url]';
@@ -245,7 +245,7 @@ function localize_item(&$item){
                $r = q("SELECT * from `item`,`contact` WHERE
                `item`.`contact-id`=`contact`.`id` AND `item`.`uri`='%s';",
                 dbesc($item['parent-uri']));
-               if(count($r)==0) return;
+               if (!dbm::is_result($r)) return;
                $obj=$r[0];
 
                $author  = '[url=' . zrl($item['author-link']) . ']' . $item['author-name'] . '[/url]';
@@ -294,7 +294,7 @@ function localize_item(&$item){
                                        dbesc($obj->id),
                                        intval($item['uid'])
                        );
-                       if(count($r) && $r[0]['plink']) {
+                       if (dbm::is_result($r) && $r[0]['plink']) {
                                $target = $r[0];
                                $Bname = $target['author-name'];
                                $Blink = $target['author-link'];
index c92396dc7a446ce256e66f7e46d5d38d924c7a77..77332dcec6c2daa300b2222b496dfd2fee0cdbc8 100644 (file)
@@ -12,6 +12,7 @@ if (!file_exists("boot.php") AND (sizeof($_SERVER["argv"]) != 0)) {
 
 require_once("boot.php");
 require_once("include/photos.php");
+require_once("include/user.php");
 
 
 function cron_run(&$argv, &$argc){
@@ -42,7 +43,7 @@ function cron_run(&$argv, &$argc){
 
        // Don't check this stuff if the function is called by the poller
        if (App::callstack() != "poller_run") {
-               if (App::maxload_reached())
+               if ($a->maxload_reached())
                        return;
                if (App::is_already_running('cron', 'include/cron.php', 540))
                        return;
@@ -433,7 +434,7 @@ function cron_repair_diaspora(&$a) {
        $r = q("SELECT `id`, `url` FROM `contact`
                WHERE `network` = '%s' AND (`batch` = '' OR `notify` = '' OR `poll` = '' OR pubkey = '')
                        ORDER BY RAND() LIMIT 50", dbesc(NETWORK_DIASPORA));
-       if ($r) {
+       if (dbm::is_result($r)) {
                foreach ($r AS $contact) {
                        if (poco_reachable($contact["url"])) {
                                $data = probe_url($contact["url"]);
@@ -454,6 +455,16 @@ function cron_repair_diaspora(&$a) {
  */
 function cron_repair_database() {
 
+       // Sometimes there seem to be issues where the "self" contact vanishes.
+       // We haven't found the origin of the problem by now.
+       $r = q("SELECT `uid` FROM `user` WHERE NOT EXISTS (SELECT `uid` FROM `contact` WHERE `contact`.`uid` = `user`.`uid` AND `contact`.`self`)");
+       if (dbm::is_result($r)) {
+               foreach ($r AS $user) {
+                       logger('Create missing self contact for user '.$user['uid']);
+                       user_create_self_contact($user['uid']);
+               }
+       }
+
        // Set the parent if it wasn't set. (Shouldn't happen - but does sometimes)
        // This call is very "cheap" so we can do it at any time without a problem
        q("UPDATE `item` INNER JOIN `item` AS `parent` ON `parent`.`uri` = `item`.`parent-uri` AND `parent`.`uid` = `item`.`uid` SET `item`.`parent` = `parent`.`id` WHERE `item`.`parent` = 0");
@@ -463,7 +474,7 @@ function cron_repair_database() {
 
        // Update the global contacts for local users
        $r = q("SELECT `uid` FROM `user` WHERE `verified` AND NOT `blocked` AND NOT `account_removed` AND NOT `account_expired`");
-       if ($r)
+       if (dbm::is_result($r))
                foreach ($r AS $user)
                        update_gcontact_for_user($user["uid"]);
 
index 4bb1e5f65960b3b3c1bbad1077d34628388040b0..7524a0c3a8883c80b4a914e54093d7cfa9351508 100644 (file)
@@ -25,7 +25,7 @@ function cronhooks_run(&$argv, &$argc){
 
        // Don't check this stuff if the function is called by the poller
        if (App::callstack() != "poller_run") {
-               if (App::maxload_reached())
+               if ($a->maxload_reached())
                        return;
                if (App::is_already_running('cronhooks', 'include/cronhooks.php', 1140))
                        return;
index 16b134e90b13d8525fdfd3535f3694bb451ade2e..e88c274ab967449649311a592171af1f7be4a9a8 100644 (file)
@@ -552,7 +552,7 @@ function update_contact_birthdays() {
        // In-network birthdays are handled within local_delivery
 
        $r = q("SELECT * FROM contact WHERE `bd` != '' AND `bd` != '0000-00-00' AND SUBSTRING(`bd`,1,4) != `bdyear` ");
-       if(count($r)) {
+       if (dbm::is_result($r)) {
                foreach($r as $rr) {
 
                        logger('update_contact_birthday: ' . $rr['bd']);
index 16d2dc54d9cc1a362028699c974f41a8299174fb..920027cbcfaeef721a02f2ec3214efed0fcf459b 100644 (file)
@@ -35,7 +35,7 @@ class dba {
        public  $error = false;
 
        function __construct($server, $user, $pass, $db, $install = false) {
-               global $a;
+               $a = get_app();
 
                $stamp1 = microtime(true);
 
@@ -139,7 +139,7 @@ class dba {
        }
 
        public function q($sql, $onlyquery = false) {
-               global $a;
+               $a = get_app();
 
                if (!$this->db || !$this->connected) {
                        return false;
index 7b720fb6c1217e31be5ae0368ea9facbdfcf229e..a44c447af20fa568d8ed15bb6e6082fc5330b182 100644 (file)
@@ -44,7 +44,7 @@ class dba {
        public  $error = false;
 
        function __construct($server,$user,$pass,$db,$install = false) {
-               global $a;
+               $a = get_app();
     
     # work around, to store the database - configuration in DDDBL
     $objDataObjectPool = new \DDDBL\DataObjectPool('Database-Definition');
@@ -99,7 +99,7 @@ class dba {
        }
 
        public function q($sql, $onlyquery = false) {
-               global $a;
+               $a = get_app();
 
     $strHandler = (true === $onlyquery) ? 'PDOStatement' : 'MULTI';
     
index 94e8da4a44fbda632652204ecc4afe53f1acf1bf..c694014f68fae8b11b7d952bc538b1efac9b8f56 100644 (file)
@@ -17,6 +17,14 @@ function update_fail($update_id, $error_message){
                $admin_mail_list
        );
 
+       // No valid result?
+       if (!dbm::is_result($adminlist)) {
+               logger(sprintf('Cannot notify administrators about update_id=%d, error_message=%s', $update_id, $error_message), LOGGER_WARNING);
+
+               // Don't continue
+               return;
+       }
+
        // every admin could had different language
 
        foreach ($adminlist as $admin) {
@@ -73,7 +81,7 @@ function table_structure($table) {
        $fielddata = array();
        $indexdata = array();
 
-       if (is_array($indexes))
+       if (dbm::is_result($indexes))
                foreach ($indexes AS $index) {
                        if ($index["Index_type"] == "FULLTEXT")
                                continue;
@@ -93,7 +101,7 @@ function table_structure($table) {
                        $indexdata[$index["Key_name"]][] = $column;
                }
 
-       if (is_array($structures)) {
+       if (dbm::is_result($structures)) {
                foreach($structures AS $field) {
                        $fielddata[$field["Field"]]["type"] = $field["Type"];
                        if ($field["Null"] == "NO")
@@ -151,6 +159,7 @@ function update_structure($verbose, $action, $tables=null, $definition=null) {
        foreach ($tables AS $table) {
                $table = current($table);
 
+               logger(sprintf('updating structure for table %s ...', $table), LOGGER_DEBUG);
                $database[$table] = table_structure($table);
        }
 
@@ -179,7 +188,7 @@ function update_structure($verbose, $action, $tables=null, $definition=null) {
                $sql3="";
                if (!isset($database[$name])) {
                        $r = db_create_table($name, $structure["fields"], $charset, $verbose, $action, $structure['indexes']);
-                       if(false === $r) {
+                       if (!dbm::is_result($r)) {
                                $errors .=  t('Errors encountered creating database tables.').$name.EOL;
                        }
                        $is_new_table = True;
@@ -256,7 +265,7 @@ function update_structure($verbose, $action, $tables=null, $definition=null) {
 
                        if ($action) {
                                $r = @$db->q($sql3);
-                               if(false === $r)
+                               if (dbm::is_result($r))
                                        $errors .= t('Errors encountered performing database changes.').$sql3.EOL;
                        }
                }
index 8fce98774250cdaeeaccda7bd841671cbda1a7ed..a7aebe709a29b726a504cd300a201b8832429320 100644 (file)
@@ -53,11 +53,11 @@ function delivery_run(&$argv, &$argc){
                        dbesc($item_id),
                        dbesc($contact_id)
                );
-               if (!count($r)) {
+               if (!dbm::is_result($r)) {
                        continue;
                }
 
-               if (App::maxload_reached())
+               if ($a->maxload_reached())
                        return;
 
                // It's ours to deliver. Remove it from the queue.
@@ -131,7 +131,7 @@ function delivery_run(&$argv, &$argc){
                                intval($item_id)
                        );
 
-                       if ((!count($r)) || (!intval($r[0]['parent']))) {
+                       if ((!dbm::is_result($r)) || (!intval($r[0]['parent']))) {
                                continue;
                        }
 
@@ -184,7 +184,7 @@ function delivery_run(&$argv, &$argc){
                        intval($uid)
                );
 
-               if (!count($r))
+               if (!dbm::is_result($r))
                        continue;
 
                $owner = $r[0];
@@ -254,7 +254,7 @@ function delivery_run(&$argv, &$argc){
                        intval($contact_id)
                );
 
-               if (count($r))
+               if (dbm::is_result($r))
                        $contact = $r[0];
 
                if ($contact['self'])
@@ -423,7 +423,7 @@ function delivery_run(&$argv, &$argc){
                                                        intval($argv[2]),
                                                        intval($uid)
                                                );
-                                               if (count($r))
+                                               if (dbm::is_result($r))
                                                        $it = $r[0];
                                        }
                                        if (!$it)
@@ -478,14 +478,14 @@ function delivery_run(&$argv, &$argc){
                                                                dbesc($it['parent-uri']),
                                                                intval($uid));
 
-                                                       if (count($r) AND ($r[0]['title'] != ''))
+                                                       if (dbm::is_result($r) AND ($r[0]['title'] != ''))
                                                                $subject = $r[0]['title'];
                                                        else {
                                                                $r = q("SELECT `title` FROM `item` WHERE `parent-uri` = '%s' AND `uid` = %d LIMIT 1",
                                                                        dbesc($it['parent-uri']),
                                                                        intval($uid));
 
-                                                               if (count($r) AND ($r[0]['title'] != ''))
+                                                               if (dbm::is_result($r) AND ($r[0]['title'] != ''))
                                                                        $subject = $r[0]['title'];
                                                        }
                                                }
index 272105128fe07a2ea4c9711a54cdf4d52deb6c67..6451b8521bf326bac30fccdf00e3b19d8c8e28aa 100644 (file)
@@ -105,7 +105,7 @@ class dfrn {
                        dbesc($owner_nick)
                );
 
-               if(! count($r))
+               if(! dbm::is_result($r))
                        killme();
 
                $owner = $r[0];
@@ -139,7 +139,7 @@ class dfrn {
                                intval($owner_id)
                        );
 
-                       if(! count($r))
+                       if(! dbm::is_result($r))
                                killme();
 
                        $contact = $r[0];
@@ -1443,6 +1443,7 @@ class dfrn {
         * @param array $importer Record of the importer user mixed with contact of the content
         */
        private function process_suggestion($xpath, $suggestion, $importer) {
+               $a = get_app();
 
                logger("Processing suggestions");
 
@@ -1462,7 +1463,7 @@ class dfrn {
                        dbesc(normalise_link($suggest["url"])),
                        intval($suggest["uid"])
                );
-               if(count($r))
+               if (dbm::is_result($r))
                        return false;
 
                // Do we already have an fcontact record for this person?
@@ -1473,7 +1474,7 @@ class dfrn {
                        dbesc($suggest["name"]),
                        dbesc($suggest["request"])
                );
-               if(count($r)) {
+               if (dbm::is_result($r)) {
                        $fid = $r[0]["id"];
 
                        // OK, we do. Do we already have an introduction for this person ?
@@ -1481,7 +1482,7 @@ class dfrn {
                                intval($suggest["uid"]),
                                intval($fid)
                        );
-                       if(count($r))
+                       if (dbm::is_result($r))
                                return false;
                }
                if(!$fid)
@@ -1496,7 +1497,7 @@ class dfrn {
                        dbesc($suggest["name"]),
                        dbesc($suggest["request"])
                );
-               if(count($r))
+               if (dbm::is_result($r))
                        $fid = $r[0]["id"];
                else
                        // database record did not get created. Quietly give up.
@@ -1745,7 +1746,7 @@ class dfrn {
                                LIMIT 1",
                                dbesc($item["parent-uri"])
                        );
-                       if($r && count($r)) {
+                       if (dbm::is_result($r)) {
                                $r = q("SELECT `item`.`forum_mode`, `item`.`wall` FROM `item`
                                        INNER JOIN `contact` ON `contact`.`id` = `item`.`contact-id`
                                        WHERE `item`.`uri` = '%s' AND (`item`.`parent-uri` = '%s' OR `item`.`thr-parent` = '%s')
@@ -1757,7 +1758,7 @@ class dfrn {
                                        dbesc($r[0]["parent-uri"]),
                                        intval($importer["importer_uid"])
                                );
-                               if($r && count($r))
+                               if (dbm::is_result($r))
                                        $is_a_remote_action = true;
                        }
 
@@ -1895,7 +1896,7 @@ class dfrn {
                                        dbesc($item["verb"]),
                                        dbesc($item["parent-uri"])
                                );
-                               if($r && count($r))
+                               if (dbm::is_result($r))
                                        return false;
 
                                $r = q("SELECT `id` FROM `item` WHERE `uid` = %d AND `author-link` = '%s' AND `verb` = '%s' AND `thr-parent` = '%s' AND NOT `deleted` LIMIT 1",
@@ -1904,7 +1905,7 @@ class dfrn {
                                        dbesc($item["verb"]),
                                        dbesc($item["parent-uri"])
                                );
-                               if($r && count($r))
+                               if (dbm::is_result($r))
                                        return false;
                        } else
                                $is_like = false;
@@ -1920,7 +1921,7 @@ class dfrn {
                                                intval($importer["importer_uid"])
                                        );
 
-                                       if(!count($r))
+                                       if (!dbm::is_result($r))
                                                return false;
 
                                        // extract tag, if not duplicate, add to parent item
@@ -2192,7 +2193,7 @@ class dfrn {
                                                dbesc($item["uri"]),
                                                intval($importer["uid"])
                                        );
-                                       if(count($r))
+                                       if (dbm::is_result($r))
                                                $ev["id"] = $r[0]["id"];
 
                                        $event_id = event_store($ev);
@@ -2213,7 +2214,7 @@ class dfrn {
                }
 
                // Update content if 'updated' changes
-               if(count($r)) {
+               if (dbm::is_result($r)) {
                        if (self::update_content($r[0], $item, $importer, $entrytype))
                                logger("Item ".$item["uri"]." was updated.", LOGGER_DEBUG);
                        else
@@ -2235,7 +2236,7 @@ class dfrn {
                                        intval($posted_id),
                                        intval($importer["importer_uid"])
                                );
-                               if(count($r)) {
+                               if (dbm::is_result($r)) {
                                        $parent = $r[0]["parent"];
                                        $parent_uri = $r[0]["parent-uri"];
                                }
@@ -2323,7 +2324,7 @@ class dfrn {
                                intval($importer["uid"]),
                                intval($importer["id"])
                        );
-               if(!count($r)) {
+               if (!dbm::is_result($r)) {
                        logger("Item with uri ".$uri." from contact ".$importer["id"]." for user ".$importer["uid"]." wasn't found.", LOGGER_DEBUG);
                        return;
                } else {
@@ -2417,7 +2418,7 @@ class dfrn {
                                                        dbesc($item["parent-uri"]),
                                                        intval($importer["uid"])
                                        );
-                                       if(count($r)) {
+                                       if (dbm::is_result($r)) {
                                                q("UPDATE `item` SET `last-child` = 1 WHERE `id` = %d",
                                                        intval($r[0]["id"])
                                                );
index f2d48486788bf68145cd3dcbb22b07395b4d91f5..3b4832e74f579bcdd35b4cba9f2ba1f4e22fec8a 100644 (file)
@@ -1278,7 +1278,7 @@ class diaspora {
                $r = q("SELECT `id` FROM `mail` WHERE `uri` = '%s' LIMIT 1",
                        dbesc($message_uri)
                );
-               if($r) {
+               if (dbm::is_result($r)) {
                        logger("duplicate message already delivered.", LOGGER_DEBUG);
                        return false;
                }
@@ -2290,7 +2290,7 @@ class diaspora {
                                $body = "[img]".unxmlify($photo->remote_photo_path).
                                        unxmlify($photo->remote_photo_name)."[/img]\n".$body;
 
-                       $datarray["object-type"] = ACTIVITY_OBJ_PHOTO;
+                       $datarray["object-type"] = ACTIVITY_OBJ_IMAGE;
                } else {
                        $datarray["object-type"] = ACTIVITY_OBJ_NOTE;
 
@@ -2925,7 +2925,7 @@ class diaspora {
 
                $p = q("SELECT `guid`, `uri`, `parent-uri` FROM `item` WHERE `uri` = '%s' LIMIT 1",
                        dbesc($item["thr-parent"]));
-               if(!$p)
+               if (!dbm::is_result($p))
                        return false;
 
                $parent = $p[0];
@@ -2956,7 +2956,7 @@ class diaspora {
                        intval($item["parent"])
                );
 
-               if (!$p)
+               if (!dbm::is_result($p))
                        return false;
 
                $parent = $p[0];
@@ -3170,7 +3170,7 @@ class diaspora {
                        intval($item["uid"])
                );
 
-               if (!$r) {
+               if (!dbm::is_result($r)) {
                        logger("conversation not found.");
                        return;
                }
index 0b468faea189e522505ed5c686facd22be905406..bf3e47edd9a514acde02b4dcb5cdcb8d00a676be 100644 (file)
@@ -26,7 +26,7 @@ function discover_poco_run(&$argv, &$argc){
 
        // Don't check this stuff if the function is called by the poller
        if (App::callstack() != "poller_run")
-               if (App::maxload_reached())
+               if ($a->maxload_reached())
                        return;
 
        if(($argc > 2) && ($argv[1] == "dirsearch")) {
index 5b2bea2977b070fdb908eeb720ca1a699ba15173..c6e0506e96ef2e34191e6d3fd250f4192e068a8a 100644 (file)
@@ -411,7 +411,7 @@ function notification($params) {
                        $hash = random_string();
                        $r = q("SELECT `id` FROM `notify` WHERE `hash` = '%s' LIMIT 1",
                                dbesc($hash));
-                       if (count($r))
+                       if (dbm::is_result($r))
                                $dups = true;
                } while($dups == true);
 
@@ -648,6 +648,7 @@ function notification($params) {
  * @param str $defaulttype (Optional) Forces a notification with this type.
  */
 function check_item_notification($itemid, $uid, $defaulttype = "") {
+       $a = get_app();
 
        $notification_data = array("uid" => $uid, "profiles" => array());
        call_hooks('check_item_notification', $notification_data);
@@ -666,7 +667,7 @@ function check_item_notification($itemid, $uid, $defaulttype = "") {
        $profiles[] = $owner[0]["url"];
 
        // Notifications from Diaspora are often with an URL in the Diaspora format
-       $profiles[] = App::get_baseurl()."/u/".$user[0]["nickname"];
+       $profiles[] = $a->get_baseurl()."/u/".$user[0]["nickname"];
 
        $profiles2 = array();
 
@@ -732,17 +733,17 @@ function check_item_notification($itemid, $uid, $defaulttype = "") {
                        intval($item[0]['contact-id']),
                        intval($uid)
                );
-               $send_notification = count($r);
+               $send_notification = dbm::is_result($r);
 
                if (!$send_notification) {
                        $tags = q("SELECT `url` FROM `term` WHERE `otype` = %d AND `oid` = %d AND `type` = %d AND `uid` = %d",
                                intval(TERM_OBJ_POST), intval($itemid), intval(TERM_MENTION), intval($uid));
 
-                       if (count($tags)) {
+                       if (dbm::is_result($tags)) {
                                foreach ($tags AS $tag) {
                                        $r = q("SELECT `id` FROM `contact` WHERE `nurl` = '%s' AND `uid` = %d AND `notify_new_posts`",
                                                normalise_link($tag["url"]), intval($uid));
-                                       if (count($r))
+                                       if (dbm::is_result($r))
                                                $send_notification = true;
                                }
                        }
index 6c0e2bdec6e68608a5d8267200cb75ea6289f8e6..3a41dad4e70dd5b66b3f51cc964f62b8271b3e5e 100644 (file)
@@ -271,7 +271,7 @@ function event_store($arr) {
                        intval($arr['id']),
                        intval($arr['uid'])
                );
-               if((! count($r)) || ($r[0]['edited'] === $arr['edited'])) {
+               if((! dbm::is_result($r)) || ($r[0]['edited'] === $arr['edited'])) {
 
                        // Nothing has changed. Grab the item id to return.
 
@@ -279,7 +279,7 @@ function event_store($arr) {
                                intval($arr['id']),
                                intval($arr['uid'])
                        );
-                       return((count($r)) ? $r[0]['id'] : 0);
+                       return((dbm::is_result($r)) ? $r[0]['id'] : 0);
                }
 
                // The event changed. Update it.
@@ -312,7 +312,7 @@ function event_store($arr) {
                        intval($arr['id']),
                        intval($arr['uid'])
                );
-               if(count($r)) {
+               if (dbm::is_result($r)) {
                        $object = '<object><type>' . xmlify(ACTIVITY_OBJ_EVENT) . '</type><title></title><id>' . xmlify($arr['uri']) . '</id>';
                        $object .= '<content>' . xmlify(format_event_bbcode($arr)) . '</content>';
                        $object .= '</object>' . "\n";
@@ -365,7 +365,7 @@ function event_store($arr) {
                        dbesc($arr['uri']),
                        intval($arr['uid'])
                );
-               if(count($r))
+               if (dbm::is_result($r))
                        $event = $r[0];
 
                $item_arr = array();
@@ -407,7 +407,7 @@ function event_store($arr) {
                $r = q("SELECT * FROM `user` WHERE `uid` = %d LIMIT 1",
                        intval($arr['uid'])
                );
-               //if(count($r))
+               //if (dbm::is_result($r))
                //      $plink = $a->get_baseurl() . '/display/' . $r[0]['nickname'] . '/' . $item_id;
 
 
@@ -515,7 +515,7 @@ function event_by_id($owner_uid = 0, $event_params, $sql_extra = '') {
                intval($event_params["event_id"])
        );
 
-       if(count($r))
+       if (dbm::is_result($r))
                return $r;
 
 }
@@ -557,7 +557,7 @@ function events_by_date($owner_uid = 0, $event_params, $sql_extra = '') {
                        dbesc($event_params["adjust_finish"])
        );
 
-       if(count($r))
+       if (dbm::is_result($r))
                return $r;
 }
 
@@ -750,7 +750,7 @@ function events_by_uid($uid = 0, $sql_extra = '') {
                );
        }
 
-       if(count($r))
+       if (dbm::is_result($r))
                return $r;
 }
 
@@ -773,7 +773,7 @@ function event_export($uid, $format = 'ical') {
        // we are allowed to show events
        // get the timezone the user is in
        $r = q("SELECT `timezone` FROM `user` WHERE `uid` = %d LIMIT 1", intval($uid));
-       if (count($r))
+       if (dbm::is_result($r))
                $timezone = $r[0]['timezone'];
 
        // get all events which are owned by a uid (respects permissions);
index 873c594e8499ea93aeaa55727abeb09f34e81e28..eca2b1c42ad9a7ee3962c047e8c67e7faeb22051 100644 (file)
@@ -39,7 +39,7 @@ function expire_run(&$argv, &$argc){
        logger('expire: start');
 
        $r = q("SELECT `uid`,`username`,`expire` FROM `user` WHERE `expire` != 0");
-       if(count($r)) {
+       if (dbm::is_result($r)) {
                foreach($r as $rr) {
                        logger('Expire: ' . $rr['username'] . ' interval: ' . $rr['expire'], LOGGER_DEBUG);
                        item_expire($rr['uid'],$rr['expire']);
index 8821a985f2dc06e77619ce6bf7719c422358b031..b2706e51a0226e3cc13bfd6cafb4179a8c249fd6 100644 (file)
@@ -10,7 +10,7 @@ function fcontact_store($url,$name,$photo) {
                dbesc($nurl)
        );
 
-       if(count($r))
+       if (dbm::is_result($r))
                return $r[0]['id'];
 
        $r = q("INSERT INTO `fcontact` ( `url`, `name`, `photo` ) VALUES ( '%s', '%s', '%s' ) ",
@@ -19,11 +19,11 @@ function fcontact_store($url,$name,$photo) {
                dbesc($photo)
        );
 
-       if($r) {
+       if (dbm::is_result($r)) {
                $r = q("SELECT `id` FROM `fcontact` WHERE `url` = '%s' LIMIT 1",
                        dbesc($nurl)
                );
-               if(count($r))
+               if (dbm::is_result($r))
                        return $r[0]['id'];
        }
 
index b3bd7690fe7194a9403fc4b386343f17e1210e56..7bff0e3468bd7d0331e0549ce2dd9c3616aa574a 100644 (file)
@@ -1,6 +1,6 @@
 <?php
 function create_files_from_item($itemid) {
-       global $a;
+       $a = get_app();
 
        $messages = q("SELECT `guid`, `uid`, `id`, `edited`, `deleted`, `file`, `parent` FROM `item` WHERE `id` = %d LIMIT 1", intval($itemid));
 
index 1c33edf80ecdf6a62f6fc253ade0223dd68f557d..7a3514b3a73aa4942ca00f009cc6128361782461 100644 (file)
@@ -2,6 +2,10 @@
 require_once("include/Scrape.php");
 require_once("include/socgraph.php");
 require_once('include/group.php');
+require_once('include/salmon.php');
+require_once('include/ostatus.php');
+require_once("include/Photo.php");
+require_once('include/diaspora.php');
 
 function update_contact($id) {
        /*
@@ -173,12 +177,12 @@ function new_contact($uid,$url,$interactive = false) {
                dbesc($ret['network'])
        );
 
-       if(!count($r))
+       if (!dbm::is_result($r))
                $r = q("SELECT * FROM `contact` WHERE `uid` = %d AND `nurl` = '%s' AND `network` = '%s' LIMIT 1",
                        intval($uid), dbesc(normalise_link($url)), dbesc($ret['network'])
        );
 
-       if(count($r)) {
+       if (dbm::is_result($r)) {
                // update contact
                if($r[0]['rel'] == CONTACT_IS_FOLLOWER || ($network === NETWORK_DIASPORA && $r[0]['rel'] == CONTACT_IS_SHARING)) {
                        q("UPDATE `contact` SET `rel` = %d , `subhub` = %d, `readonly` = 0 WHERE `id` = %d AND `uid` = %d",
@@ -196,7 +200,7 @@ function new_contact($uid,$url,$interactive = false) {
                $r = q("select count(*) as total from contact where uid = %d and pending = 0 and self = 0",
                        intval($uid)
                );
-               if(count($r))
+               if (dbm::is_result($r))
                        $total_contacts = $r[0]['total'];
 
                if(! service_class_allows($uid,'total_contacts',$total_contacts)) {
@@ -208,7 +212,7 @@ function new_contact($uid,$url,$interactive = false) {
                        intval($uid),
                        dbesc($network)
                );
-               if(count($r))
+               if (dbm::is_result($r))
                        $total_network = $r[0]['total'];
 
                if(! service_class_allows($uid,'total_contacts_' . $network,$total_network)) {
@@ -250,7 +254,7 @@ function new_contact($uid,$url,$interactive = false) {
                intval($uid)
        );
 
-       if(! count($r)) {
+       if(! dbm::is_result($r)) {
                $result['message'] .=  t('Unable to retrieve contact information.') . EOL;
                return $result;
        }
@@ -263,8 +267,6 @@ function new_contact($uid,$url,$interactive = false) {
        if (intval($def_gid))
                group_add_member($uid, '', $contact_id, $def_gid);
 
-       require_once("include/Photo.php");
-
        // Update the avatar
        update_contact_avatar($ret['photo'],$uid,$contact_id);
 
@@ -272,36 +274,22 @@ function new_contact($uid,$url,$interactive = false) {
 
        proc_run(PRIORITY_HIGH, "include/onepoll.php", $contact_id, "force");
 
-       // create a follow slap
-
-       $tpl = get_markup_template('follow_slap.tpl');
-       $slap = replace_macros($tpl, array(
-               '$name' => $a->user['username'],
-               '$profile_page' => $a->get_baseurl() . '/profile/' . $a->user['nickname'],
-               '$photo' => $a->contact['photo'],
-               '$thumb' => $a->contact['thumb'],
-               '$published' => datetime_convert('UTC','UTC', 'now', ATOM_TIME),
-               '$item_id' => 'urn:X-dfrn:' . $a->get_hostname() . ':follow:' . get_guid(32),
-               '$title' => '',
-               '$type' => 'text',
-               '$content' => t('following'),
-               '$nick' => $a->user['nickname'],
-               '$verb' => ACTIVITY_FOLLOW,
-               '$ostat_follow' => ''
-       ));
-
        $r = q("SELECT `contact`.*, `user`.* FROM `contact` INNER JOIN `user` ON `contact`.`uid` = `user`.`uid`
-                       WHERE `user`.`uid` = %d AND `contact`.`self` = 1 LIMIT 1",
+                       WHERE `user`.`uid` = %d AND `contact`.`self` LIMIT 1",
                        intval($uid)
        );
 
-       if(count($r)) {
-               if(($contact['network'] == NETWORK_OSTATUS) && (strlen($contact['notify']))) {
-                       require_once('include/salmon.php');
-                       slapper($r[0],$contact['notify'],$slap);
+       if (dbm::is_result($r)) {
+               if (($contact['network'] == NETWORK_OSTATUS) && (strlen($contact['notify']))) {
+
+                       // create a follow slap
+                       $item = array();
+                       $item['verb'] = ACTIVITY_FOLLOW;
+                       $item['follow'] = $contact["url"];
+                       $slap = ostatus::salmon($item, $r[0]);
+                       slapper($r[0], $contact['notify'], $slap);
                }
-               if($contact['network'] == NETWORK_DIASPORA) {
-                       require_once('include/diaspora.php');
+               if ($contact['network'] == NETWORK_DIASPORA) {
                        $ret = diaspora::send_share($a->user,$contact);
                        logger('share returns: '.$ret);
                }
index 42a8ef71355d1fc8a044c254de0e82ef6c42a762..7169aada3f7e38435d194f770c62f8186794b9da 100644 (file)
@@ -64,7 +64,7 @@ function gprobe_run(&$argv, &$argc){
                        dbesc(normalise_link($url))
                );
        }
-       if(dbm::is_result($r)) {
+       if (dbm::is_result($r)) {
                // Check for accessibility and do a poco discovery
                if (poco_last_updated($r[0]['url'], true) AND ($r[0]["network"] == NETWORK_DFRN))
                        poco_load(0,0,$r[0]['id'], str_replace('/profile/','/poco/',$r[0]['url']));
index 53c0b78d841b5854f1eb08604a3c69aef0d2aad0..2c903306864da2caa1ef4368212faffb6c016c43 100644 (file)
@@ -44,7 +44,7 @@ function group_rmv($uid,$name) {
                        intval($uid),
                        dbesc($name)
                );
-               if(count($r))
+               if (dbm::is_result($r))
                        $group_id = $r[0]['id'];
                if(! $group_id)
                        return false;
@@ -106,7 +106,7 @@ function group_byname($uid,$name) {
                intval($uid),
                dbesc($name)
        );
-       if(count($r))
+       if (dbm::is_result($r))
                return $r[0]['id'];
        return false;
 }
@@ -139,11 +139,11 @@ function group_add_member($uid,$name,$member,$gid = 0) {
                intval($gid),
                intval($member)
        );
-       if(count($r))
+       if (dbm::is_result($r))
                return true;    // You might question this, but
                                // we indicate success because the group member was in fact created
                                // -- It was just created at another time
-       if(! count($r))
+       if(! dbm::is_result($r))
                $r = q("INSERT INTO `group_member` (`uid`, `gid`, `contact-id`)
                        VALUES( %d, %d, %d ) ",
                        intval($uid),
@@ -164,7 +164,7 @@ function group_get_members($gid) {
                        intval($gid),
                        intval(local_user())
                );
-               if(count($r))
+               if (dbm::is_result($r))
                        $ret = $r;
        }
        return $ret;
@@ -181,7 +181,7 @@ function group_public_members($gid) {
                        intval(local_user()),
                        dbesc(NETWORK_OSTATUS)
                );
-               if(count($r))
+               if (dbm::is_result($r))
                        $ret = count($r);
        }
        return $ret;
@@ -197,7 +197,7 @@ function mini_group_select($uid,$gid = 0, $label = "") {
                intval($uid)
        );
        $grps[] = array('name' => '', 'id' => '0', 'selected' => '');
-       if(count($r)) {
+       if (dbm::is_result($r)) {
                foreach($r as $rr) {
                        $grps[] = array('name' => $rr['name'], 'id' => $rr['id'], 'selected' => (($gid == $rr['id']) ? 'true' : ''));
                }
@@ -255,7 +255,7 @@ function group_side($every="contacts",$each="group",$editmode = "standard", $gro
                $member_of = groups_containing(local_user(),$cid);
        }
 
-       if(count($r)) {
+       if (dbm::is_result($r)) {
                foreach($r as $rr) {
                        $selected = (($group_id == $rr['id']) ? ' group-selected' : '');
 
@@ -316,7 +316,7 @@ function expand_groups($a,$check_dead = false, $use_gcontact = false) {
 
 
        $ret = array();
-       if(count($r))
+       if (dbm::is_result($r))
                foreach($r as $rr)
                        $ret[] = $rr['contact-id'];
        if($check_dead AND !$use_gcontact) {
@@ -345,7 +345,7 @@ function groups_containing($uid,$c) {
        );
 
        $ret = array();
-       if(count($r)) {
+       if (dbm::is_result($r)) {
                foreach($r as $rr)
                        $ret[] = $rr['gid'];
        }
index a792c4714426a9a1334442a90f07620177f9ca85..bf05a005160eb81d83e7a1012bf21052f98bba82 100644 (file)
@@ -138,7 +138,7 @@ function get_profiledata_by_nick($nickname, $uid = 0, $profile = 0) {
                                        $r = q("SELECT `profile-id` FROM `contact` WHERE `id` = %d LIMIT 1",
                                                intval($visitor['cid'])
                                        );
-                                       if(count($r))
+                                       if (dbm::is_result($r))
                                                $profile = $r[0]['profile-id'];
                                        break;
                                }
@@ -159,7 +159,7 @@ function get_profiledata_by_nick($nickname, $uid = 0, $profile = 0) {
                                intval($profile_int)
                );
        }
-       if((!$r) && (!count($r))) {
+       if (!dbm::is_result($r)) {
                $r = q("SELECT `contact`.`id` AS `contact_id`, `profile`.`uid` AS `profile_uid`, `profile`.*,
                                `contact`.`avatar-date` AS picdate, `contact`.`addr`, `user`.*
                        FROM `profile`
@@ -236,7 +236,7 @@ function profile_sidebar($profile, $block = 0) {
 
                $r = q("SELECT * FROM `contact` WHERE NOT `pending` AND `uid` = %d AND `nurl` = '%s'",
                        local_user(), $profile_url);
-               if (count($r))
+               if (dbm::is_result($r))
                        $connect = false;
        }
 
@@ -289,7 +289,7 @@ function profile_sidebar($profile, $block = 0) {
                        'entries' => array(),
                );
 
-               if(count($r)) {
+               if (dbm::is_result($r)) {
 
                        foreach($r as $rr) {
                                $profile['menu']['entries'][] = array(
@@ -368,7 +368,7 @@ function profile_sidebar($profile, $block = 0) {
                if(is_array($a->profile) AND !$a->profile['hide-friends']) {
                        $r = q("SELECT `gcontact`.`updated` FROM `contact` INNER JOIN `gcontact` WHERE `gcontact`.`nurl` = `contact`.`nurl` AND `self` AND `uid` = %d LIMIT 1",
                                intval($a->profile['uid']));
-                       if(count($r))
+                       if (dbm::is_result($r))
                                $updated =  date("c", strtotime($r[0]['updated']));
 
                        $r = q("SELECT COUNT(*) AS `total` FROM `contact` WHERE `uid` = %d AND NOT `self` AND NOT `blocked` AND NOT `hidden` AND NOT `archive`
@@ -378,7 +378,7 @@ function profile_sidebar($profile, $block = 0) {
                                dbesc(NETWORK_DIASPORA),
                                dbesc(NETWORK_OSTATUS)
                        );
-                       if(count($r))
+                       if (dbm::is_result($r))
                                $contacts = intval($r[0]['total']);
                }
        }
@@ -460,7 +460,7 @@ function get_birthdays() {
                        dbesc(datetime_convert('UTC','UTC','now'))
        );
 
-       if($r && count($r)) {
+       if (dbm::is_result($r)) {
                $total = 0;
                $now = strtotime('now');
                $cids = array();
@@ -543,7 +543,7 @@ function get_events() {
                        dbesc(datetime_convert('UTC','UTC','now - 1 days'))
        );
 
-       if($r && count($r)) {
+       if (dbm::is_result($r)) {
                $now = strtotime('now');
                $istoday = false;
                foreach($r as $rr) {
index c2c4c10293edc3a8d2cdeeca304df1819fe74469..da9147faddddd4da00cc2d7050b74cfe6c2d7dd2 100644 (file)
@@ -451,7 +451,7 @@ function item_store($arr,$force_parent = false, $notify = false, $dontcache = fa
        /* check for create  date and expire time */
        $uid = intval($arr['uid']);
        $r = q("SELECT expire FROM user WHERE uid = %d", intval($uid));
-       if (count($r)) {
+       if (dbm::is_result($r)) {
                $expire_interval = $r[0]['expire'];
                if ($expire_interval>0) {
                        $expire_date =  new DateTime( '- '.$expire_interval.' days', new DateTimeZone('UTC'));
@@ -568,19 +568,19 @@ function item_store($arr,$force_parent = false, $notify = false, $dontcache = fa
                        intval($arr['uid'])
                );
 
-               if (!count($r))
+               if (!dbm::is_result($r))
                        $r = q("SELECT `network` FROM `gcontact` WHERE `network` IN ('%s', '%s', '%s') AND `nurl` = '%s' LIMIT 1",
                                dbesc(NETWORK_DFRN), dbesc(NETWORK_DIASPORA), dbesc(NETWORK_OSTATUS),
                                dbesc(normalise_link($arr['author-link']))
                        );
 
-               if (!count($r))
+               if (!dbm::is_result($r))
                        $r = q("SELECT `network` FROM `contact` WHERE `id` = %d AND `uid` = %d LIMIT 1",
                                intval($arr['contact-id']),
                                intval($arr['uid'])
                        );
 
-               if (count($r))
+               if (dbm::is_result($r))
                        $arr['network'] = $r[0]["network"];
 
                // Fallback to friendica (why is it empty in some cases?)
@@ -634,7 +634,7 @@ function item_store($arr,$force_parent = false, $notify = false, $dontcache = fa
                $r = q("SELECT `guid` FROM `item` WHERE `guid` = '%s' AND `network` = '%s' AND `uid` = '%d' LIMIT 1",
                        dbesc($arr['guid']), dbesc($arr['network']), intval($arr['uid']));
 
-               if (count($r)) {
+               if (dbm::is_result($r)) {
                        logger('found item with guid '.$arr['guid'].' for user '.$arr['uid'].' on network '.$arr['network'], LOGGER_DEBUG);
                        return 0;
                }
@@ -662,7 +662,7 @@ function item_store($arr,$force_parent = false, $notify = false, $dontcache = fa
                        intval($arr['uid'])
                );
 
-               if (count($r)) {
+               if (dbm::is_result($r)) {
 
                        // is the new message multi-level threaded?
                        // even though we don't support it now, preserve the info
@@ -1120,7 +1120,7 @@ function item_body_set_hashtags(&$item) {
 
 function get_item_guid($id) {
        $r = q("SELECT `guid` FROM `item` WHERE `id` = %d LIMIT 1", intval($id));
-       if (count($r))
+       if (dbm::is_result($r))
                return($r[0]["guid"]);
        else
                return("");
@@ -1139,7 +1139,7 @@ function get_item_id($guid, $uid = 0) {
                $r = q("SELECT `item`.`id`, `user`.`nickname` FROM `item` INNER JOIN `user` ON `user`.`uid` = `item`.`uid`
                        WHERE `item`.`visible` = 1 AND `item`.`deleted` = 0 and `item`.`moderated` = 0
                                AND `item`.`guid` = '%s' AND `item`.`uid` = %d", dbesc($guid), intval($uid));
-               if (count($r)) {
+               if (dbm::is_result($r)) {
                        $id = $r[0]["id"];
                        $nick = $r[0]["nickname"];
                }
@@ -1153,7 +1153,7 @@ function get_item_id($guid, $uid = 0) {
                                AND `item`.`deny_cid`  = '' AND `item`.`deny_gid`  = ''
                                AND `item`.`private` = 0 AND `item`.`wall` = 1
                                AND `item`.`guid` = '%s'", dbesc($guid));
-               if (count($r)) {
+               if (dbm::is_result($r)) {
                        $id = $r[0]["id"];
                        $nick = $r[0]["nickname"];
                }
@@ -1454,7 +1454,7 @@ function item_is_remote_self($contact, &$datarray) {
        if ($contact['remote_self'] == 2) {
                $r = q("SELECT `id`,`url`,`name`,`thumb` FROM `contact` WHERE `uid` = %d AND `self`",
                        intval($contact['uid']));
-               if (count($r)) {
+               if (dbm::is_result($r)) {
                        $datarray['contact-id'] = $r[0]["id"];
 
                        $datarray['owner-name'] = $r[0]["name"];
@@ -1531,7 +1531,7 @@ function new_follower($importer,$contact,$datarray,$item,$sharing = false) {
                                intval($importer['uid']),
                                dbesc($url)
                );
-               if (count($r)) {
+               if (dbm::is_result($r)) {
                        $contact_record = $r[0];
                        update_contact_avatar($photo, $importer["uid"], $contact_record["id"], true);
                }
@@ -1541,7 +1541,8 @@ function new_follower($importer,$contact,$datarray,$item,$sharing = false) {
                        intval($importer['uid'])
                );
                $a = get_app();
-               if (count($r) AND !in_array($r[0]['page-flags'], array(PAGE_SOAPBOX, PAGE_FREELOVE))) {
+
+               if (dbm::is_result($r) AND !in_array($r[0]['page-flags'], array(PAGE_SOAPBOX, PAGE_FREELOVE))) {
 
                        // create notification
                        $hash = random_string();
@@ -1580,7 +1581,7 @@ function new_follower($importer,$contact,$datarray,$item,$sharing = false) {
                                ));
 
                        }
-               } elseif (count($r) AND in_array($r[0]['page-flags'], array(PAGE_SOAPBOX, PAGE_FREELOVE))) {
+               } elseif (dbm::is_result($r) AND in_array($r[0]['page-flags'], array(PAGE_SOAPBOX, PAGE_FREELOVE))) {
                        $r = q("UPDATE `contact` SET `pending` = 0 WHERE `uid` = %d AND `url` = '%s' AND `pending` LIMIT 1",
                                        intval($importer['uid']),
                                        dbesc($url)
@@ -1628,7 +1629,7 @@ function subscribe_to_hub($url,$importer,$contact,$hubmode = 'subscribe') {
        // through the direct Diaspora protocol. If we try and use
        // the feed, we'll get duplicates. So don't.
 
-       if ((! count($r)) || $contact['network'] === NETWORK_DIASPORA)
+       if ((! dbm::is_result($r)) || $contact['network'] === NETWORK_DIASPORA)
                return;
 
        $push_url = get_config('system','url') . '/pubsub/' . $r[0]['nickname'] . '/' . $contact['id'];
@@ -1846,7 +1847,7 @@ function item_expire($uid, $days, $network = "", $force = false) {
                intval($days)
        );
 
-       if (! count($r))
+       if (! dbm::is_result($r))
                return;
 
        $expire_items = get_pconfig($uid, 'expire','items');
@@ -1924,7 +1925,7 @@ function drop_item($id,$interactive = true) {
                intval($id)
        );
 
-       if (! count($r)) {
+       if (! dbm::is_result($r)) {
                if (! $interactive)
                        return 0;
                notice( t('Item not found.') . EOL);
@@ -2111,7 +2112,7 @@ function drop_item($id,$interactive = true) {
                                dbesc($item['parent-uri']),
                                intval($item['uid'])
                        );
-                       if (count($r)) {
+                       if (dbm::is_result($r)) {
                                q("UPDATE `item` SET `last-child` = 1 WHERE `id` = %d",
                                        intval($r[0]['id'])
                                );
@@ -2147,7 +2148,7 @@ function first_post_date($uid,$wall = false) {
                intval($uid),
                intval($wall ? 1 : 0)
        );
-       if (count($r)) {
+       if (dbm::is_result($r)) {
 //             logger('first_post_date: ' . $r[0]['id'] . ' ' . $r[0]['created'], LOGGER_DATA);
                return substr(datetime_convert('',date_default_timezone_get(),$r[0]['created']),0,10);
        }
index 118ec81ca1c35e47ca966c997c254a2a379234d1..e997e05d6b0e43601d6924dd1bf23ebec532915c 100644 (file)
@@ -57,7 +57,7 @@ function do_like($item_id, $verb) {
                dbesc($item_id)
        );
 
-       if(! $item_id || (! count($r))) {
+       if(! $item_id || (! dbm::is_result($r))) {
                logger('like: no item ' . $item_id);
                return false;
        }
@@ -78,7 +78,7 @@ function do_like($item_id, $verb) {
                        intval($item['contact-id']),
                        intval($item['uid'])
                );
-               if(! count($r))
+               if(! dbm::is_result($r))
                        return false;
                if(! $r[0]['self'])
                        $remote_owner = $r[0];
@@ -90,7 +90,7 @@ function do_like($item_id, $verb) {
                WHERE `contact`.`self` = 1 AND `contact`.`uid` = %d LIMIT 1",
                intval($owner_uid)
        );
-       if(count($r))
+       if (dbm::is_result($r))
                $owner = $r[0];
 
        if(! $owner) {
@@ -112,7 +112,7 @@ function do_like($item_id, $verb) {
                        intval($_SESSION['visitor_id']),
                        intval($owner_uid)
                );
-               if(count($r))
+               if (dbm::is_result($r))
                        $contact = $r[0];
        }
        if(! $contact) {
@@ -135,7 +135,7 @@ function do_like($item_id, $verb) {
                dbesc($item_id), dbesc($item_id), dbesc($item['uri'])
        );
 
-       if(count($r)) {
+       if (dbm::is_result($r)) {
                $like_item = $r[0];
 
                // Already voted, undo it
@@ -163,7 +163,7 @@ function do_like($item_id, $verb) {
        $post_type = (($item['resource-id']) ? t('photo') : t('status'));
        if($item['object-type'] === ACTIVITY_OBJ_EVENT)
                $post_type = t('event');
-       $objtype = (($item['resource-id']) ? ACTIVITY_OBJ_PHOTO : ACTIVITY_OBJ_NOTE );
+       $objtype = (($item['resource-id']) ? ACTIVITY_OBJ_IMAGE : ACTIVITY_OBJ_NOTE );
        $link = xmlify('<link rel="alternate" type="text/html" href="' . $a->get_baseurl() . '/display/' . $owner['nickname'] . '/' . $item['id'] . '" />' . "\n") ;
        $body = $item['body'];
 
index 70cf4b787b439dbf25c5c135965cd0b3b4bfad24..0c7b6acaa4afbaa45c440fccb194399ea60539d2 100644 (file)
@@ -16,14 +16,14 @@ function lock_function($fn_name, $block = true, $wait_sec = 2, $timeout = 30) {
                        dbesc($fn_name)
                );
 
-               if((count($r)) AND (!$r[0]['locked'] OR (strtotime($r[0]['created']) < time() - 3600))) {
+               if((dbm::is_result($r)) AND (!$r[0]['locked'] OR (strtotime($r[0]['created']) < time() - 3600))) {
                        q("UPDATE `locks` SET `locked` = 1, `created` = '%s' WHERE `name` = '%s'",
                                dbesc(datetime_convert()),
                                dbesc($fn_name)
                        );
                        $got_lock = true;
                }
-               elseif(! $r) { // the Boolean value for count($r) should be equivalent to the Boolean value of $r
+               elseif(! dbm::is_result($r)) { // the Boolean value for count($r) should be equivalent to the Boolean value of $r
                        q("INSERT INTO `locks` (`name`, `created`, `locked`) VALUES ('%s', '%s', 1)",
                                dbesc($fn_name),
                                dbesc(datetime_convert())
@@ -56,10 +56,10 @@ function block_on_function_lock($fn_name, $wait_sec = 2, $timeout = 30) {
                                dbesc($fn_name)
                     );
 
-               if(count($r) && $r[0]['locked'])
+               if (dbm::is_result($r) && $r[0]['locked'])
                        sleep($wait_sec);
 
-       } while(count($r) && $r[0]['locked'] && ((time() - $start) < $timeout));
+       } while(dbm::is_result($r) && $r[0]['locked'] && ((time() - $start) < $timeout));
 
        return;
 }}
index 51f3ad805a667fcbd45242625bb4f539d96d145c..ea2fcef3bcb213e24ed280b844f05c90507d3f91 100644 (file)
@@ -41,7 +41,7 @@ function send_message($recipient=0, $body='', $subject='', $replyto=''){
                        dbesc($replyto),
                        dbesc($replyto)
                );
-               if(count($r))
+               if (dbm::is_result($r))
                        $convid = $r[0]['convid'];
        }
 
@@ -74,7 +74,7 @@ function send_message($recipient=0, $body='', $subject='', $replyto=''){
                        dbesc($conv_guid),
                        intval(local_user())
                );
-               if(count($r))
+               if (dbm::is_result($r))
                        $convid = $r[0]['id'];
        }
 
@@ -113,7 +113,7 @@ function send_message($recipient=0, $body='', $subject='', $replyto=''){
                dbesc($uri),
                intval(local_user())
        );
-       if(count($r))
+       if (dbm::is_result($r))
                $post_id = $r[0]['id'];
 
        /**
@@ -210,7 +210,7 @@ function send_wallmessage($recipient='', $body='', $subject='', $replyto=''){
                dbesc($conv_guid),
                intval($recipient['uid'])
        );
-       if(count($r))
+       if (dbm::is_result($r))
                $convid = $r[0]['id'];
 
        if(! $convid) {
index 7a8230cc15da8f4bc6b9f6a6c7d0cb9479b82c0b..2a9f24ca9f5644e351e4ac29fd7ee2a676a4074e 100644 (file)
@@ -88,7 +88,7 @@ function nav_info(App $a)
                // user info
                $r = q("SELECT `micro` FROM `contact` WHERE `uid` = %d AND `self` = 1", intval($a->user['uid']));
                $userinfo = array(
-                       'icon' => (count($r) ? $a->remove_baseurl($r[0]['micro']) : 'images/person-48.jpg'),
+                       'icon' => (dbm::is_result($r) ? $a->remove_baseurl($r[0]['micro']) : 'images/person-48.jpg'),
                        'name' => $a->user['username'],
                );
        } else {
index 351951846c6f38ef1f006b662f4335c5514ccd54..df46d35932fcb694b506a3bc361516e118d609fa 100644 (file)
@@ -338,7 +338,6 @@ function xml_status($st, $message = '') {
        killme();
 }
 
-
 /**
  * @brief Send HTTP status header and exit.
  *
@@ -348,6 +347,14 @@ function xml_status($st, $message = '') {
  *    'description' => optional message
  */
 
+/**
+ * @brief Send HTTP status header and exit.
+ *
+ * @param integer $val HTTP status result value
+ * @param array $description optional message
+ *    'title' => header title
+ *    'description' => optional message
+ */
 function http_status_exit($val, $description = array()) {
        $err = '';
        if($val >= 400) {
@@ -381,19 +388,23 @@ function http_status_exit($val, $description = array()) {
  * @return boolean True if it's a valid URL, fals if something wrong with it
  */
 function validate_url(&$url) {
-
        if(get_config('system','disable_url_validation'))
                return true;
+
        // no naked subdomains (allow localhost for tests)
        if(strpos($url,'.') === false && strpos($url,'/localhost/') === false)
                return false;
+
        if(substr($url,0,4) != 'http')
                $url = 'http://' . $url;
+
+       /// @TODO Really supress function outcomes? Why not find them + debug them?
        $h = @parse_url($url);
 
-       if(($h) && (dns_get_record($h['host'], DNS_A + DNS_CNAME + DNS_PTR) || filter_var($h['host'], FILTER_VALIDATE_IP) )) {
+       if((is_array($h)) && (dns_get_record($h['host'], DNS_A + DNS_CNAME + DNS_PTR) || filter_var($h['host'], FILTER_VALIDATE_IP) )) {
                return true;
        }
+
        return false;
 }
 
index 812752a55c2ac2975834be4154de455d3c052cc7..7221fa376db154eba4656d2e4f1049cade18ab36 100644 (file)
@@ -170,7 +170,7 @@ function notifier_run(&$argv, &$argc){
                        intval($item_id)
                );
 
-               if((! count($r)) || (! intval($r[0]['parent']))) {
+               if((! dbm::is_result($r)) || (! intval($r[0]['parent']))) {
                        return;
                }
 
@@ -210,7 +210,7 @@ function notifier_run(&$argv, &$argc){
                intval($uid)
        );
 
-       if(! count($r))
+       if(! dbm::is_result($r))
                return;
 
        $owner = $r[0];
@@ -321,7 +321,7 @@ function notifier_run(&$argv, &$argc){
                                                intval($uid),
                                                dbesc(NETWORK_DFRN)
                                        );
-                                       if(count($r))
+                                       if (dbm::is_result($r))
                                                foreach($r as $rr)
                                                        $recipients_followup[] = $rr['id'];
                                }
@@ -445,7 +445,7 @@ function notifier_run(&$argv, &$argc){
 
                $r = q("SELECT * FROM `contact` WHERE `id` IN ($conversant_str) AND NOT `blocked` AND NOT `pending` AND NOT `archive`".$sql_extra);
 
-               if(count($r))
+               if (dbm::is_result($r))
                        $contacts = $r;
 
        } else
@@ -463,7 +463,7 @@ function notifier_run(&$argv, &$argc){
                                intval($uid),
                                dbesc(NETWORK_MAIL)
                        );
-                       if(count($r)) {
+                       if (dbm::is_result($r)) {
                                foreach($r as $rr)
                                        $recipients[] = $rr['id'];
                        }
@@ -491,7 +491,7 @@ function notifier_run(&$argv, &$argc){
 
        // delivery loop
 
-       if(count($r)) {
+       if (dbm::is_result($r)) {
 
                foreach($r as $contact) {
                        if(!$contact['self']) {
@@ -575,7 +575,7 @@ function notifier_run(&$argv, &$argc){
                        $r0 = array();
 
                $r1 = q("SELECT DISTINCT(`batch`), `id`, `name`,`network` FROM `contact` WHERE `network` = '%s'
-                       AND `uid` = %d AND `rel` != %d group by `batch` ORDER BY rand() ",
+                       AND `uid` = %d AND `rel` != %d AND NOT `blocked` AND NOT `pending` AND NOT `archive` GROUP BY `batch` ORDER BY rand()",
                        dbesc(NETWORK_DIASPORA),
                        intval($owner['uid']),
                        intval(CONTACT_IS_SHARING)
@@ -592,7 +592,7 @@ function notifier_run(&$argv, &$argc){
 
                $r = array_merge($r2,$r1,$r0);
 
-               if(count($r)) {
+               if (dbm::is_result($r)) {
                        logger('pubdeliver '.$target_item["guid"].': '.print_r($r,true), LOGGER_DEBUG);
 
                        // throw everything into the queue in case we get killed
index 6a1d72d178f413fb68a94b8f7a64c7c35cb4d045..a30232df4a89a89f990172ccfb018bab4bd73429 100644 (file)
@@ -23,7 +23,7 @@ class FKOAuthDataStore extends OAuthDataStore {
                $r = q("SELECT client_id, pw, redirect_uri FROM clients WHERE client_id='%s'",
                        dbesc($consumer_key)
                );
-               if (count($r))
+               if (dbm::is_result($r))
                        return new OAuthConsumer($r[0]['client_id'],$r[0]['pw'],$r[0]['redirect_uri']);
                return null;
   }
@@ -35,7 +35,7 @@ class FKOAuthDataStore extends OAuthDataStore {
                        dbesc($token_type),
                        dbesc($token)
                );
-               if (count($r)){
+               if (dbm::is_result($r)){
                        $ot=new OAuthToken($r[0]['id'],$r[0]['secret']);
                        $ot->scope=$r[0]['scope'];
                        $ot->expires = $r[0]['expires'];
@@ -52,7 +52,7 @@ class FKOAuthDataStore extends OAuthDataStore {
                        dbesc($nonce),
                        intval($timestamp)
                );
-               if (count($r))
+               if (dbm::is_result($r))
                        return new OAuthToken($r[0]['id'],$r[0]['secret']);
                return null;
   }
@@ -136,7 +136,7 @@ class FKOAuth1 extends OAuthServer {
                $r = q("SELECT * FROM `user` WHERE uid=%d AND `blocked` = 0 AND `account_expired` = 0 AND `account_removed` = 0 AND `verified` = 1 LIMIT 1",
                        intval($uid)
                );
-               if(count($r)){
+               if (dbm::is_result($r)){
                        $record = $r[0];
                } else {
                   logger('FKOAuth1::loginUser failure: ' . print_r($_SERVER,true), LOGGER_DEBUG);
@@ -162,7 +162,7 @@ class FKOAuth1 extends OAuthServer {
 
                $r = q("SELECT * FROM `contact` WHERE `uid` = %s AND `self` = 1 LIMIT 1",
                        intval($_SESSION['uid']));
-               if(count($r)) {
+               if (dbm::is_result($r)) {
                        $a->contact = $r[0];
                        $a->cid = $r[0]['id'];
                        $_SESSION['cid'] = $a->cid;
@@ -219,7 +219,7 @@ class FKOAuth2 extends OAuth2 {
                $r = q("SELECT client_id, expires, scope FROM tokens WHERE id = '%s'",
                                dbesc($oauth_token));
        
-               if (count($r))
+               if (dbm::is_result($r))
                        return $r[0];
                return null;
        }
@@ -247,7 +247,7 @@ class FKOAuth2 extends OAuth2 {
                $r = q("SELECT id, client_id, redirect_uri, expires, scope FROM auth_codes WHERE id = '%s'",
                                dbesc($code));
                
-               if (count($r))
+               if (dbm::is_result($r))
                        return $r[0];
                return null;
        }
index 5abd03b61769587180e292d9ebdb825e12ddf757..a1945894fcaf3fb877ff36c7e2b5a2ec1e0b7e71 100755 (executable)
@@ -165,12 +165,12 @@ function oembed_format_object($j){
                                $th=120; $tw = $th*$tr;
                                $tpl=get_markup_template('oembed_video.tpl');
                                $ret.=replace_macros($tpl, array(
-                                       '$baseurl' => App::get_baseurl(),
-                                       '$embedurl'=>$embedurl,
-                                       '$escapedhtml'=>base64_encode($jhtml),
-                                       '$tw'=>$tw,
-                                       '$th'=>$th,
-                                       '$turl'=>$j->thumbnail_url,
+                                       '$baseurl'     => App::get_baseurl(),
+                                       '$embedurl'    => $embedurl,
+                                       '$escapedhtml' => base64_encode($jhtml),
+                                       '$tw'          => $tw,
+                                       '$th'          => $th,
+                                       '$turl'        => $j->thumbnail_url,
                                ));
 
                        } else {
@@ -255,12 +255,14 @@ function oembed_format_object($j){
  * @see oembed_format_object()
  */
 function oembed_iframe($src, $width, $height) {
+       $a = get_app();
+
        if (!$height || strstr($height,'%')) {
                $height = '200';
        }
        $width = '100%';
 
-       $s = App::get_baseurl() . '/oembed/'.base64url_encode($src);
+       $s = App::get_baseurl() . '/oembed/' . base64url_encode($src);
        return '<iframe onload="resizeIframe(this);" class="embed_rich" height="' . $height . '" width="' . $width . '" src="' . $s . '" allowfullscreen scrolling="no" frameborder="no">' . t('Embedded content') . '</iframe>';
 }
 
index 4ac5f38bee43e919a9901104f0ae64b7a2020086..2834036665bad1c3ef0a6d7629761726acd40711 100644 (file)
@@ -93,7 +93,7 @@ function onepoll_run(&$argv, &$argc){
                        where `cid` = %d and updated > UTC_TIMESTAMP() - INTERVAL 1 DAY",
                        intval($contact['id'])
                );
-               if (count($r))
+               if (dbm::is_result($r))
                        if (!$r[0]['total'])
                                poco_load($contact['id'],$importer_uid,0,$contact['poco']);
        }
@@ -143,7 +143,7 @@ function onepoll_run(&$argv, &$argc){
        $r = q("SELECT `contact`.*, `user`.`page-flags` FROM `contact` INNER JOIN `user` on `contact`.`uid` = `user`.`uid` WHERE `user`.`uid` = %d AND `contact`.`self` = 1 LIMIT 1",
                intval($importer_uid)
        );
-       if(! count($r))
+       if(! dbm::is_result($r))
                return;
 
        $importer = $r[0];
@@ -393,7 +393,7 @@ function onepoll_run(&$argv, &$argc){
                                                        dbesc($datarray['uri'])
                                                );
 
-                                               if(count($r)) {
+                                               if (dbm::is_result($r)) {
                                                        logger("Mail: Seen before ".$msg_uid." for ".$mailconf[0]['user']." UID: ".$importer_uid." URI: ".$datarray['uri'],LOGGER_DEBUG);
 
                                                        // Only delete when mails aren't automatically moved or deleted
@@ -446,7 +446,7 @@ function onepoll_run(&$argv, &$argc){
                                                        $r = q("SELECT `uri` , `parent-uri` FROM `item` USE INDEX (`uid_uri`) WHERE `uri` IN ($qstr) AND `uid` = %d LIMIT 1",
                                                                intval($importer_uid)
                                                        );
-                                                       if(count($r))
+                                                       if (dbm::is_result($r))
                                                                $datarray['parent-uri'] = $r[0]['parent-uri'];  // Set the parent as the top-level item
        //                                                      $datarray['parent-uri'] = $r[0]['uri'];
                                                }
@@ -479,7 +479,7 @@ function onepoll_run(&$argv, &$argc){
                                                                dbesc(protect_sprintf($datarray['title'])),
                                                                intval($importer_uid),
                                                                dbesc(NETWORK_MAIL));
-                                                       if(count($r))
+                                                       if (dbm::is_result($r))
                                                                $datarray['parent-uri'] = $r[0]['parent-uri'];
                                                }
 
index bcd8fd671302bffd4527ab1160d277d7095602ef..f9911bfaab7622925fff20a6b2718eaa734dcd16 100644 (file)
@@ -467,7 +467,7 @@ class ostatus {
                        }
 
                        // Is it a repeated post?
-                       if ($repeat_of != "") {
+                       if (($repeat_of != "") OR ($item["verb"] == ACTIVITY_SHARE)) {
                                $activityobjects = $xpath->query('activity:object', $entry)->item(0);
 
                                if (is_object($activityobjects)) {
@@ -1561,10 +1561,13 @@ class ostatus {
                if ($xml)
                        return $xml;
 
-               if ($item["verb"] == ACTIVITY_LIKE)
+               if ($item["verb"] == ACTIVITY_LIKE) {
                        return self::like_entry($doc, $item, $owner, $toplevel);
-               else
+               } elseif (in_array($item["verb"], array(ACTIVITY_FOLLOW, NAMESPACE_OSTATUS."/unfollow"))) {
+                       return self::follow_entry($doc, $item, $owner, $toplevel);
+               } else {
                        return self::note_entry($doc, $item, $owner, $toplevel);
+               }
        }
 
        /**
@@ -1740,6 +1743,113 @@ class ostatus {
                return $entry;
        }
 
+       /**
+        * @brief Adds the person object element to the XML document
+        *
+        * @param object $doc XML document
+        * @param array $owner Contact data of the poster
+        * @param array $contact Contact data of the target
+        *
+        * @return object author element
+        */
+       private function add_person_object($doc, $owner, $contact) {
+
+               $object = $doc->createElement("activity:object");
+               xml::add_element($doc, $object, "activity:object-type", ACTIVITY_OBJ_PERSON);
+
+               if ($contact['network'] == NETWORK_PHANTOM) {
+                       xml::add_element($doc, $object, "id", $contact['url']);
+                       return $object;
+               }
+
+               xml::add_element($doc, $object, "id", $contact["alias"]);
+               xml::add_element($doc, $object, "title", $contact["nick"]);
+
+               $attributes = array("rel" => "alternate", "type" => "text/html", "href" => $contact["url"]);
+               xml::add_element($doc, $object, "link", "", $attributes);
+
+               $attributes = array(
+                               "rel" => "avatar",
+                               "type" => "image/jpeg", // To-Do?
+                               "media:width" => 175,
+                               "media:height" => 175,
+                               "href" => $contact["photo"]);
+               xml::add_element($doc, $object, "link", "", $attributes);
+
+               xml::add_element($doc, $object, "poco:preferredUsername", $contact["nick"]);
+               xml::add_element($doc, $object, "poco:displayName", $contact["name"]);
+
+               if (trim($contact["location"]) != "") {
+                       $element = $doc->createElement("poco:address");
+                       xml::add_element($doc, $element, "poco:formatted", $contact["location"]);
+                       $object->appendChild($element);
+               }
+
+               return $object;
+       }
+
+       /**
+        * @brief Adds a follow/unfollow entry element
+        *
+        * @param object $doc XML document
+        * @param array $item Data of the follow/unfollow message
+        * @param array $owner Contact data of the poster
+        * @param bool $toplevel Is it for en entry element (false) or a feed entry (true)?
+        *
+        * @return object Entry element
+        */
+       private function follow_entry($doc, $item, $owner, $toplevel) {
+
+               $item["id"] = $item["parent"] = 0;
+               $item["created"] = $item["edited"] = date("c");
+               $item["private"] = true;
+
+               $contact = Probe::uri($item['follow']);
+
+               if ($contact['alias'] == '') {
+                       $contact['alias'] = $contact["url"];
+               } else {
+                       $item['follow'] = $contact['alias'];
+               }
+
+               $r = q("SELECT `id` FROM `contact` WHERE `uid` = %d AND `nurl` = '%s'",
+                       intval($owner['uid']), dbesc(normalise_link($contact["url"])));
+
+               if (dbm::is_result($r)) {
+                       $connect_id = $r[0]['id'];
+               } else {
+                       $connect_id = 0;
+               }
+
+               if ($item['verb'] == ACTIVITY_FOLLOW) {
+                       $message = t('%s is now following %s.');
+                       $title = t('following');
+                       $action = "subscription";
+               } else {
+                       $message = t('%s stopped following %s.');
+                       $title = t('stopped following');
+                       $action = "unfollow";
+               }
+
+               $item["uri"] = $item['parent-uri'] = $item['thr-parent'] =
+                               'tag:'.get_app()->get_hostname().
+                               ','.date('Y-m-d').':'.$action.':'.$owner['uid'].
+                               ':person:'.$connect_id.':'.$item['created'];
+
+               $item["body"] = sprintf($message, $owner["nick"], $contact["nick"]);
+
+               self::entry_header($doc, $entry, $owner, $toplevel);
+
+               self::entry_content($doc, $entry, $item, $owner, $title);
+
+               $object = self::add_person_object($doc, $owner, $contact);
+               $entry->appendChild($object);
+
+               self::entry_footer($doc, $entry, $item, $owner);
+
+               return $entry;
+       }
+
        /**
         * @brief Adds a regular entry element
         *
@@ -1832,7 +1942,7 @@ class ostatus {
                xml::add_element($doc, $entry, "link", "", array("rel" => "alternate", "type" => "text/html",
                                                                "href" => App::get_baseurl()."/display/".$item["guid"]));
 
-               if ($complete)
+               if ($complete AND ($item["id"] > 0))
                        xml::add_element($doc, $entry, "status_net", "", array("notice_id" => $item["id"]));
 
                xml::add_element($doc, $entry, "activity:verb", $verb);
@@ -1881,9 +1991,11 @@ class ostatus {
                        }
                }
 
-               xml::add_element($doc, $entry, "link", "", array("rel" => "ostatus:conversation",
-                                                       "href" => App::get_baseurl()."/display/".$owner["nick"]."/".$item["parent"]));
-               xml::add_element($doc, $entry, "ostatus:conversation", App::get_baseurl()."/display/".$owner["nick"]."/".$item["parent"]);
+               if (intval($item["parent"]) > 0) {
+                       $conversation = App::get_baseurl()."/display/".$owner["nick"]."/".$item["parent"];
+                       xml::add_element($doc, $entry, "link", "", array("rel" => "ostatus:conversation", "href" => $conversation));
+                       xml::add_element($doc, $entry, "ostatus:conversation", $conversation);
+               }
 
                $tags = item_getfeedtags($item);
 
@@ -1929,7 +2041,7 @@ class ostatus {
 
                self::get_attachment($doc, $entry, $item);
 
-               if ($complete) {
+               if ($complete AND ($item["id"] > 0)) {
                        $app = $item["app"];
                        if ($app == "")
                                $app = "web";
index de7cdda9e8575cfa41a3d117062225666e8e2ca2..fb87798ff72712b74acccc8f2d4a93bf6b5ba1f4 100644 (file)
@@ -98,7 +98,7 @@ if(! function_exists('load_translation_table')) {
  * @param string $lang language code to load
  */
 function load_translation_table($lang) {
-       global $a;
+       $a = get_app();
 
        $a->strings = array();
        // load enabled plugins strings
index d98d736550469225f226b6fbc7341065b9b43fef..83027286798d574c08a9c64acf99fb8d1b08c803 100644 (file)
@@ -63,6 +63,10 @@ function get_old_attachment_data($body) {
                                $post["url"] = $matches[1];
                                $post["title"] = $matches[2];
                        }
+                       if (($post["url"] == "") AND (in_array($post["type"], array("link", "video")))
+                               AND preg_match("/\[url\=([$URLSearchString]*)\](.*?)\[\/url\]/ism", $attacheddata, $matches)) {
+                               $post["url"] = $matches[1];
+                       }
 
                        // Search for description
                        if (preg_match("/\[quote\](.*?)\[\/quote\]/ism", $attacheddata, $matches))
index f6e4a7a88223e651ad5c7ec1131891338571459d..487ab575156d4812d6d959922496ac5f04efdb1a 100644 (file)
@@ -79,7 +79,7 @@ function reload_plugins() {
        if(strlen($plugins)) {
 
                $r = q("SELECT * FROM `addon` WHERE `installed` = 1");
-               if(count($r))
+               if (dbm::is_result($r))
                        $installed = $r;
                else
                        $installed = array();
@@ -150,7 +150,7 @@ function register_hook($hook,$file,$function,$priority=0) {
                dbesc($file),
                dbesc($function)
        );
-       if(count($r))
+       if (dbm::is_result($r))
                return true;
 
        $r = q("INSERT INTO `hook` (`hook`, `file`, `function`, `priority`) VALUES ( '%s', '%s', '%s', '%s' ) ",
@@ -187,7 +187,7 @@ function load_hooks() {
        $a = get_app();
        $a->hooks = array();
        $r = q("SELECT * FROM `hook` WHERE 1 ORDER BY `priority` DESC, `file`");
-       if(count($r)) {
+       if (dbm::is_result($r)) {
                foreach($r as $rr) {
                        if(! array_key_exists($rr['hook'],$a->hooks))
                                $a->hooks[$rr['hook']] = array();
@@ -473,7 +473,7 @@ function service_class_allows($uid,$property,$usage = false) {
                $r = q("SELECT `service_class` FROM `user` WHERE `uid` = %d LIMIT 1",
                        intval($uid)
                );
-               if($r !== false and count($r)) {
+               if (dbm::is_result($r)) {
                        $service_class = $r[0]['service_class'];
                }
        }
@@ -503,7 +503,7 @@ function service_class_fetch($uid,$property) {
                $r = q("SELECT `service_class` FROM `user` WHERE `uid` = %d LIMIT 1",
                        intval($uid)
                );
-               if($r !== false and count($r)) {
+               if (dbm::is_result($r)) {
                        $service_class = $r[0]['service_class'];
                }
        }
index 925de3fe5b04994cb6102b425850e5d9d6c3e810..44f4895cdbda1991d9d12d1c0e59dee33b055eab 100644 (file)
@@ -39,7 +39,7 @@ function poller_run($argv, $argc){
                return;
        }
 
-       if (App::maxload_reached()) {
+       if ($a->maxload_reached()) {
                return;
        }
 
index a68aa8918fb4ac9fc37e9a3f0949131f3f7f8259..9dcefdd244b59288c9177a401735d186480a680b 100644 (file)
@@ -23,12 +23,11 @@ function remove_queue_item($id) {
  * @return bool The communication with this contact has currently problems
  */
 function was_recently_delayed($cid) {
-
        $was_delayed = false;
 
        // Are there queue entries that were recently added?
        $r = q("SELECT `id` FROM `queue` WHERE `cid` = %d
-               AND `last` > UTC_TIMESTAMP() - interval 15 minute LIMIT 1",
+               AND `last` > UTC_TIMESTAMP() - INTERVAL 15 MINUTE LIMIT 1",
                intval($cid)
        );
 
@@ -61,7 +60,7 @@ function add_to_queue($cid,$network,$msg,$batch = false) {
                WHERE `queue`.`cid` = %d AND `contact`.`self` = 0 ",
                intval($cid)
        );
-       if($r && count($r)) {
+       if (dbm::is_result($r)) {
                if($batch &&  ($r[0]['total'] > $batch_queue)) {
                        logger('add_to_queue: too many queued items for batch server ' . $cid . ' - discarding message');
                        return;
index ab4f3220cd7d1a1ace36ece544828db9ab96d0a6..8d8a035f1db5fa83c07e388111526c5855416b29 100644 (file)
@@ -36,7 +36,7 @@ function auto_redir(&$a, $contact_nick) {
                dbesc($nurl)
                );
 
-               if((!$r) || (! count($r)) || $r[0]['id'] == remote_user())
+               if((! dbm::is_result($r)) || $r[0]['id'] == remote_user())
                        return;
 
 
@@ -48,7 +48,7 @@ function auto_redir(&$a, $contact_nick) {
                       dbesc($baseurl)
                );
 
-               if(! ($r && count($r)))
+               if(! dbm::is_result($r))
                        return;
 
                $cid = $r[0]['id'];
index b52ddeb2dfa49f6124b78ffe234d898268b80b19..fa698c1b1a62aeb48e5ea9953507eb3c6fec0e81 100644 (file)
@@ -42,7 +42,7 @@ function authenticate_success($user_record, $login_initial = false, $interactive
                $r = q("select * from user where uid = %d limit 1",
                        intval($_SESSION['submanage'])
                );
-               if(count($r))
+               if (dbm::is_result($r))
                        $master_record = $r[0];
        }
 
@@ -50,7 +50,7 @@ function authenticate_success($user_record, $login_initial = false, $interactive
                dbesc($master_record['password']),
                dbesc($master_record['email'])
        );
-       if($r && count($r))
+       if (dbm::is_result($r))
                $a->identities = $r;
        else
                $a->identities = array();
@@ -60,7 +60,7 @@ function authenticate_success($user_record, $login_initial = false, $interactive
                and `manage`.`uid` = %d",
                intval($master_record['uid'])
        );
-       if($r && count($r))
+       if (dbm::is_result($r))
                $a->identities = array_merge($a->identities,$r);
 
        if($login_initial)
@@ -70,7 +70,7 @@ function authenticate_success($user_record, $login_initial = false, $interactive
 
        $r = q("SELECT * FROM `contact` WHERE `uid` = %d AND `self` = 1 LIMIT 1",
                intval($_SESSION['uid']));
-       if(count($r)) {
+       if (dbm::is_result($r)) {
                $a->contact = $r[0];
                $a->cid = $r[0]['id'];
                $_SESSION['cid'] = $a->cid;
@@ -156,7 +156,7 @@ function can_write_wall(&$a,$owner) {
                                intval(PAGE_COMMUNITY)
                        );
 
-                       if(count($r)) {
+                       if (dbm::is_result($r)) {
                                $verified = 2;
                                return true;
                        }
@@ -210,7 +210,7 @@ function permissions_sql($owner_id,$remote_verified = false,$groups = null) {
                                intval($remote_user),
                                intval($owner_id)
                        );
-                       if(count($r)) {
+                       if (dbm::is_result($r)) {
                                $remote_verified = true;
                                $groups = init_groups_visitor($remote_user);
                        }
@@ -292,7 +292,7 @@ function item_permissions_sql($owner_id,$remote_verified = false,$groups = null)
                                intval($remote_user),
                                intval($owner_id)
                        );
-                       if(count($r)) {
+                       if (dbm::is_result($r)) {
                                $remote_verified = true;
                                $groups = init_groups_visitor($remote_user);
                        }
@@ -403,7 +403,7 @@ function init_groups_visitor($contact_id) {
                WHERE `contact-id` = %d ",
                intval($contact_id)
        );
-       if(count($r)) {
+       if (dbm::is_result($r)) {
                foreach($r as $rr)
                        $groups[] = $rr['gid'];
        }
index 765ed5d8912b5fb30d513d6430a07a47bed86fd6..349fd0b2caebcecd5dfff17e050a2129c5161ec1 100644 (file)
@@ -40,7 +40,7 @@ function poco_load($cid,$uid = 0,$zcid = 0,$url = null) {
                        $r = q("select `poco`, `uid` from `contact` where `id` = %d limit 1",
                                intval($cid)
                        );
-                       if(count($r)) {
+                       if (dbm::is_result($r)) {
                                $url = $r[0]['poco'];
                                $uid = $r[0]['uid'];
                        }
@@ -213,14 +213,14 @@ function poco_check($profile_url, $name, $network, $profile_photo, $about, $loca
        $r = q("SELECT `network` FROM `contact` WHERE `nurl` = '%s' AND `network` != '' AND `network` != '%s' LIMIT 1",
                dbesc(normalise_link($profile_url)), dbesc(NETWORK_STATUSNET)
        );
-       if(count($r))
+       if (dbm::is_result($r))
                $network = $r[0]["network"];
 
        if (($network == "") OR ($network == NETWORK_OSTATUS)) {
                $r = q("SELECT `network`, `url` FROM `contact` WHERE `alias` IN ('%s', '%s') AND `network` != '' AND `network` != '%s' LIMIT 1",
                        dbesc($profile_url), dbesc(normalise_link($profile_url)), dbesc(NETWORK_STATUSNET)
                );
-               if(count($r)) {
+               if (dbm::is_result($r)) {
                        $network = $r[0]["network"];
                        //$profile_url = $r[0]["url"];
                }
@@ -330,7 +330,7 @@ function poco_check($profile_url, $name, $network, $profile_photo, $about, $loca
                intval($gcid),
                intval($zcid)
        );
-       if(! count($r)) {
+       if(! dbm::is_result($r)) {
                q("INSERT INTO `glink` (`cid`,`uid`,`gcid`,`zcid`, `updated`) VALUES (%d,%d,%d,%d, '%s') ",
                        intval($cid),
                        intval($uid),
@@ -976,7 +976,7 @@ function count_common_friends($uid,$cid) {
        );
 
 //     logger("count_common_friends: $uid $cid {$r[0]['total']}");
-       if(count($r))
+       if (dbm::is_result($r))
                return $r[0]['total'];
        return 0;
 
@@ -1022,7 +1022,7 @@ function count_common_friends_zcid($uid,$zcid) {
                intval($uid)
        );
 
-       if(count($r))
+       if (dbm::is_result($r))
                return $r[0]['total'];
        return 0;
 
@@ -1061,7 +1061,7 @@ function count_all_friends($uid,$cid) {
                intval($uid)
        );
 
-       if(count($r))
+       if (dbm::is_result($r))
                return $r[0]['total'];
        return 0;
 
@@ -1133,7 +1133,7 @@ function suggestion_query($uid, $start = 0, $limit = 80) {
                intval($limit)
        );
 
-       if (count($r) && count($r) >= ($limit -1)) {
+       if (dbm::is_result($r) && count($r) >= ($limit -1)) {
 // Uncommented because the result of the queries are to big to store it in the cache.
 // We need to decide if we want to change the db column type or if we want to delete it.
 //             Cache::set("suggestion_query:".$uid.":".$start.":".$limit, $r, CACHE_FIVE_MINUTES);
@@ -1207,7 +1207,7 @@ function update_suggestions() {
                dbesc(NETWORK_DFRN), dbesc(NETWORK_DIASPORA)
        );
 
-       if(count($r)) {
+       if (dbm::is_result($r)) {
                foreach($r as $rr) {
                        $base = substr($rr['poco'],0,strrpos($rr['poco'],'/'));
                        if(! in_array($base,$done))
index a8bcae86dcc3783c13bbbc8ab6466517db431f1e..6c1d01d74da5063e6b167d3388b1a03b4b913813 100644 (file)
@@ -1,6 +1,6 @@
 <?php
 function create_tags_from_item($itemid) {
-       global $a;
+       $a = get_app();
 
        $profile_base = $a->get_baseurl();
        $profile_data = parse_url($profile_base);
index 1197f24ee169421e9ab45336b454ad79ae8e18db..5856226c3725ea3eac596c69bbf781afce18d8b7 100644 (file)
@@ -491,7 +491,7 @@ function item_new_uri($hostname,$uid, $guid = "") {
 
                $r = q("SELECT `id` FROM `item` WHERE `uri` = '%s' LIMIT 1",
                        dbesc($uri));
-               if(count($r))
+               if (dbm::is_result($r))
                        $dups = true;
        } while($dups == true);
        return $uri;
@@ -515,7 +515,7 @@ function photo_new_resource() {
                $r = q("SELECT `id` FROM `photo` WHERE `resource-id` = '%s' LIMIT 1",
                        dbesc($resource)
                );
-               if(count($r))
+               if (dbm::is_result($r))
                        $found = true;
        } while($found == true);
        return $resource;
@@ -699,7 +699,7 @@ $LOGGER_LEVELS = array();
  * @param int $level
  */
 function logger($msg, $level = 0) {
-       global $a;
+       $a = get_app();
        global $db;
        global $LOGGER_LEVELS;
 
@@ -882,7 +882,7 @@ function contact_block() {
                        dbesc(NETWORK_OSTATUS),
                        dbesc(NETWORK_DIASPORA)
        );
-       if(count($r)) {
+       if (dbm::is_result($r)) {
                $total = intval($r[0]['total']);
        }
        if(! $total) {
@@ -901,14 +901,15 @@ function contact_block() {
                                dbesc(NETWORK_DIASPORA),
                                intval($shown)
                );
-               if ($r) {
+               if (dbm::is_result($r)) {
                        $contacts = "";
                        foreach ($r AS $contact)
                                $contacts[] = $contact["id"];
 
                        $r = q("SELECT `id`, `uid`, `addr`, `url`, `name`, `thumb`, `network` FROM `contact` WHERE `id` IN (%s)",
                                dbesc(implode(",", $contacts)));
-                       if(count($r)) {
+
+                       if (dbm::is_result($r)) {
                                $contacts = sprintf( tt('%d Contact','%d Contacts', $total),$total);
                                $micropro = Array();
                                foreach($r as $rr) {
@@ -1931,7 +1932,7 @@ function file_tag_update_pconfig($uid,$file_old,$file_new,$type = 'file') {
                        //      intval($uid)
                        //);
 
-                       if(count($r)) {
+                       if (dbm::is_result($r)) {
                                unset($deleted_tags[$key]);
                        }
                        else {
@@ -1961,7 +1962,7 @@ function file_tag_save_file($uid,$item,$file) {
                intval($item),
                intval($uid)
        );
-       if(count($r)) {
+       if (dbm::is_result($r)) {
                if(! stristr($r[0]['file'],'[' . file_tag_encode($file) . ']'))
                        q("UPDATE `item` SET `file` = '%s' WHERE `id` = %d AND `uid` = %d",
                                dbesc($r[0]['file'] . '[' . file_tag_encode($file) . ']'),
@@ -1999,7 +2000,7 @@ function file_tag_unsave_file($uid,$item,$file,$cat = false) {
                intval($item),
                intval($uid)
        );
-       if(! count($r))
+       if(! dbm::is_result($r))
                return false;
 
        q("UPDATE `item` SET `file` = '%s' WHERE `id` = %d AND `uid` = %d",
@@ -2019,7 +2020,7 @@ function file_tag_unsave_file($uid,$item,$file,$cat = false) {
        //$r = q("select file from item where uid = %d and deleted = 0 " . file_tag_file_query('item',$file,(($cat) ? 'category' : 'file')),
        //);
 
-       if(! count($r)) {
+       if(! dbm::is_result($r)) {
                $saved = get_pconfig($uid,'system','filetags');
                set_pconfig($uid,'system','filetags',str_replace($pattern,'',$saved));
 
index df0f8ee1de5a24e5577be553a4871226573c312d..48391174ecd683eaaf9d577f6e1d777d64d1d8c0 100644 (file)
@@ -142,12 +142,12 @@ function add_shadow_entry($itemid) {
 
        // Is there a shadow parent?
        $r = q("SELECT `id` FROM `item` WHERE `uri` = '%s' AND `uid` = 0 LIMIT 1", dbesc($item['parent-uri']));
-       if (!count($r))
+       if (!dbm::is_result($r))
                return;
 
        // Is there already a shadow entry?
        $r = q("SELECT `id` FROM `item` WHERE `uri` = '%s' AND `uid` = 0 LIMIT 1", dbesc($item['uri']));
-       if (count($r))
+       if (dbm::is_result($r))
                return;
 
        // Preparing public shadow (removing user specific data)
@@ -174,7 +174,7 @@ function add_shadow_entry($itemid) {
 function update_thread_uri($itemuri, $uid) {
        $messages = q("SELECT `id` FROM `item` WHERE uri ='%s' AND uid=%d", dbesc($itemuri), intval($uid));
 
-       if(count($messages))
+       if (dbm::is_result($messages))
                foreach ($messages as $message)
                        update_thread($message["id"]);
 }
@@ -183,7 +183,7 @@ function update_thread($itemid, $setmention = false) {
        $items = q("SELECT `uid`, `guid`, `title`, `body`, `created`, `edited`, `commented`, `received`, `changed`, `wall`, `private`, `pubmail`, `moderated`, `visible`, `spam`, `starred`, `bookmark`, `contact-id`, `gcontact-id`,
                        `deleted`, `origin`, `forum_mode`, `network`, `rendered-html`, `rendered-hash` FROM `item` WHERE `id` = %d AND (`parent` = %d OR `parent` = 0) LIMIT 1", intval($itemid), intval($itemid));
 
-       if (!$items)
+       if (!dbm::is_result($items))
                return;
 
        $item = $items[0];
@@ -241,7 +241,7 @@ function delete_thread($itemid, $itemuri = "") {
                                dbesc($itemuri),
                                intval($item["uid"])
                        );
-               if (!count($r)) {
+               if (!dbm::is_result($r)) {
                        $r = q("DELETE FROM `item` WHERE `uri` = '%s' AND `uid` = 0",
                                dbesc($itemuri)
                        );
index 937a16710a9211214547600da5555b4d13134d69..51672d92b6a27919704028408f8aa550b94e719c 100644 (file)
@@ -116,7 +116,7 @@ function import_account(&$a, $file) {
                notice(t('Error! Cannot check nickname'));\r
                return;\r
        }\r
-       if (count($r) > 0) {\r
+       if (dbm::is_result($r) > 0) {\r
                notice(sprintf(t("User '%s' already exists on this server!"), $account['user']['nickname']));\r
                return;\r
        }\r
@@ -127,7 +127,7 @@ function import_account(&$a, $file) {
                notice(t('Error! Cannot check nickname'));\r
                return;\r
        }\r
-       if (count($r) > 0) {\r
+       if (dbm::is_result($r) > 0) {\r
                notice(sprintf(t("User '%s' already exists on this server!"), $account['user']['nickname']));\r
                return;\r
        }\r
index 5e8014abf8a8ddf22db1eda7b9610342e4f4d41f..ec15d5b1340f722c0e0de3d2910012ec04855e75 100644 (file)
@@ -130,7 +130,7 @@ function create_user($arr) {
                $r = q("SELECT * FROM `user` WHERE `email` = '%s' LIMIT 1",
                        dbesc($email)
                );
-               if(count($r))
+               if (dbm::is_result($r))
                        $result['message'] .= t('Cannot use that email.') . EOL;
        }
 
@@ -143,7 +143,7 @@ function create_user($arr) {
                WHERE `nickname` = '%s' LIMIT 1",
                dbesc($nickname)
        );
-       if(count($r))
+       if (dbm::is_result($r))
                $result['message'] .= t('Nickname is already registered. Please choose another.') . EOL;
 
        // Check deleted accounts that had this nickname. Doesn't matter to us,
@@ -153,7 +153,7 @@ function create_user($arr) {
                WHERE `username` = '%s' LIMIT 1",
                dbesc($nickname)
        );
-       if(count($r))
+       if (dbm::is_result($r))
                $result['message'] .= t('Nickname was once registered here and may not be re-used. Please choose another.') . EOL;
 
        if(strlen($result['message'])) {
@@ -222,7 +222,7 @@ function create_user($arr) {
                        dbesc($username),
                        dbesc($new_password_encoded)
                );
-               if($r !== false && count($r)) {
+               if (dbm::is_result($r)) {
                        $u = $r[0];
                        $newuid = intval($r[0]['uid']);
                }
@@ -269,28 +269,9 @@ function create_user($arr) {
                                intval($newuid));
                        return $result;
                }
-               $r = q("INSERT INTO `contact` ( `uid`, `created`, `self`, `name`, `nick`, `photo`, `thumb`, `micro`, `blocked`, `pending`, `url`, `nurl`,
-                       `addr`, `request`, `notify`, `poll`, `confirm`, `poco`, `name-date`, `uri-date`, `avatar-date`, `closeness` )
-                       VALUES ( %d, '%s', 1, '%s', '%s', '%s', '%s', '%s', 0, 0, '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', 0 ) ",
-                       intval($newuid),
-                       datetime_convert(),
-                       dbesc($username),
-                       dbesc($nickname),
-                       dbesc(z_root() . "/photo/profile/{$newuid}.jpg"),
-                       dbesc(z_root() . "/photo/avatar/{$newuid}.jpg"),
-                       dbesc(z_root() . "/photo/micro/{$newuid}.jpg"),
-                       dbesc(z_root() . "/profile/$nickname"),
-                       dbesc(normalise_link(z_root() . "/profile/$nickname")),
-                       dbesc($nickname . '@' . substr(z_root(), strpos(z_root(),'://') + 3 )),
-                       dbesc(z_root() . "/dfrn_request/$nickname"),
-                       dbesc(z_root() . "/dfrn_notify/$nickname"),
-                       dbesc(z_root() . "/dfrn_poll/$nickname"),
-                       dbesc(z_root() . "/dfrn_confirm/$nickname"),
-                       dbesc(z_root() . "/poco/$nickname"),
-                       dbesc(datetime_convert()),
-                       dbesc(datetime_convert()),
-                       dbesc(datetime_convert())
-               );
+
+               // Create the self contact
+               user_create_self_contact($newuid);
 
                // Create a group with no members. This allows somebody to use it
                // right away as a default group for new contacts.
@@ -302,7 +283,7 @@ function create_user($arr) {
                        intval($newuid),
                        dbesc(t('Friends'))
                );
-               if($r && count($r)) {
+               if (dbm::is_result($r)) {
                        $def_gid = $r[0]['id'];
 
                        q("UPDATE `user` SET `def_gid` = %d WHERE `uid` = %d",
@@ -377,6 +358,49 @@ function create_user($arr) {
 
 }
 
+/**
+ * @brief create the "self" contact from data from the user table
+ *
+ * @param integer $uid
+ */
+function user_create_self_contact($uid) {
+
+       // Only create the entry if it doesn't exist yet
+       $r = q("SELECT `id` FROM `contact` WHERE `uid` = %d AND `self`", intval($uid));
+       if (dbm::is_result($r)) {
+               return;
+       }
+
+       $r = q("SELECT `uid`, `username`, `nickname` FROM `user` WHERE `uid` = %d", intval($uid));
+       if (!dbm::is_result($r)) {
+               return;
+       }
+
+       $user = $r[0];
+
+       q("INSERT INTO `contact` (`uid`, `created`, `self`, `name`, `nick`, `photo`, `thumb`, `micro`, `blocked`, `pending`, `url`, `nurl`,
+               `addr`, `request`, `notify`, `poll`, `confirm`, `poco`, `name-date`, `uri-date`, `avatar-date`, `closeness`)
+               VALUES (%d, '%s', 1, '%s', '%s', '%s', '%s', '%s', 0, 0, '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', 0)",
+               intval($user['uid']),
+               datetime_convert(),
+               dbesc($user['username']),
+               dbesc($user['nickname']),
+               dbesc(z_root()."/photo/profile/".$user['uid'].".jpg"),
+               dbesc(z_root()."/photo/avatar/".$user['uid'].".jpg"),
+               dbesc(z_root()."/photo/micro/".$user['uid'].".jpg"),
+               dbesc(z_root()."/profile/".$user['nickname']),
+               dbesc(normalise_link(z_root()."/profile/".$user['nickname'])),
+               dbesc($user['nickname'].'@'.substr(z_root(), strpos(z_root(),'://') + 3)),
+               dbesc(z_root()."/dfrn_request/".$user['nickname']),
+               dbesc(z_root()."/dfrn_notify/".$user['nickname']),
+               dbesc(z_root()."/dfrn_poll/".$user['nickname']),
+               dbesc(z_root()."/dfrn_confirm/".$user['nickname']),
+               dbesc(z_root()."/poco/".$user['nickname']),
+               dbesc(datetime_convert()),
+               dbesc(datetime_convert()),
+               dbesc(datetime_convert())
+       );
+}
 
 /**
  * @brief send registration confiŕmation with the intormation that reg is pending
index d3caaff39023107a6e9951449190c02bc8159fd7..45337ea8fca6054206f3b7851a989e474fe0f981 100644 (file)
@@ -396,7 +396,7 @@ class Text_LanguageDetect
      * Returns the list of detectable languages
      *
      * @access public
-     * @return array        the names of the languages known to this object<<<<<<<
+     * @return array        the names of the languages known to this object
      * @throws   Text_LanguageDetect_Exception
      */
     function getLanguages()
index f852bd58d581752802c6c60073ae80014dbf1d58..cf0d8d9ac6bc043481490a3d054f38a758492369 100644 (file)
@@ -1121,7 +1121,7 @@ function admin_page_dbsync(&$a) {
 
        $failed = array();
        $r = q("SELECT `k`, `v` FROM `config` WHERE `cat` = 'database' ");
-       if(count($r)) {
+       if (dbm::is_result($r)) {
                foreach($r as $rr) {
                        $upd = intval(substr($rr['k'],7));
                        if($upd < 1139 || $rr['v'] === 'success')
index 03f78e696e2c4946a112dc2aeecd694472e049e8..240aa524be308ea605076fcb250a9da693a7dd42 100644 (file)
@@ -39,7 +39,7 @@ function allfriends_content(&$a) {
 
        $r = all_friends(local_user(), $cid, $a->pager['start'], $a->pager['itemspage']);
 
-       if(! count($r)) {
+       if(! dbm::is_result($r)) {
                $o .= t('No friends to display.');
                return $o;
        }
index da2c40c3055a54b566cfd92bdcaf6a40680b65a0..406ef26c1c76adf22993b14e27da1badd1c87bb8 100644 (file)
@@ -14,7 +14,7 @@ function oauth_get_client($request){
                        AND `tokens`.`id`='%s' AND `tokens`.`scope`='request'",
                        dbesc($token));
 
-       if (!count($r))
+       if (!dbm::is_result($r))
                return null;
 
        return $r[0];
index 03f850f0d1749972d7e68e63de295007bf856cb5..274acfc2bed8af1f4e23af00eb267e6fa9925cfd 100644 (file)
@@ -16,7 +16,7 @@ function attach_init(&$a) {
        $r = q("SELECT * FROM `attach` WHERE `id` = %d LIMIT 1",
                intval($item_id)
        );
-       if(! count($r)) {
+       if(! dbm::is_result($r)) {
                notice( t('Item was not found.'). EOL);
                return;
        }
@@ -29,7 +29,7 @@ function attach_init(&$a) {
                dbesc($item_id)
        );
 
-       if(! count($r)) {
+       if(! dbm::is_result($r)) {
                notice( t('Permission denied.') . EOL);
                return;
        }
index 3a229ebadb607d1424e5f9300b20eefac06e1b05..ba43393284767fe744c46c3598b034dd1bc5d1ca 100644 (file)
@@ -132,7 +132,7 @@ function cal_content(&$a) {
                        intval($contact_id),
                        intval($a->profile['profile_uid'])
                );
-               if(count($r)) {
+               if (dbm::is_result($r)) {
                        $contact = $r[0];
                        $remote_contact = true;
                }
@@ -227,7 +227,7 @@ function cal_content(&$a) {
 
                $links = array();
 
-               if(count($r)) {
+               if (dbm::is_result($r)) {
                        $r = sort_by_date($r);
                        foreach($r as $rr) {
                                $j = (($rr['adjust']) ? datetime_convert('UTC',date_default_timezone_get(),$rr['start'], 'j') : datetime_convert('UTC','UTC',$rr['start'],'j'));
@@ -240,7 +240,7 @@ function cal_content(&$a) {
                $events=array();
 
                // transform the event in a usable array
-               if(count($r))
+               if (dbm::is_result($r))
                        $r = sort_by_date($r);
                        $events = process_events($r);
 
index 063eafe67b90d3a1925f6571abb7325e9351c8e8..9f9379be57d989cc0dff050ab44eafe7ddb11995 100644 (file)
@@ -57,13 +57,13 @@ function common_content(&$a) {
                                dbesc(normalise_link(get_my_url())),
                                intval($profile_uid)
                        );
-                       if(count($r))
+                       if (dbm::is_result($r))
                                $cid = $r[0]['id'];
                        else {
                                $r = q("SELECT `id` FROM `gcontact` WHERE `nurl` = '%s' LIMIT 1",
                                        dbesc(normalise_link(get_my_url()))
                                );
-                               if(count($r))
+                               if (dbm::is_result($r))
                                        $zcid = $r[0]['id'];
                        }
                }
@@ -94,7 +94,7 @@ function common_content(&$a) {
                $r = common_friends_zcid($uid, $zcid, $a->pager['start'], $a->pager['itemspage']);
 
 
-       if(! count($r)) {
+       if(! dbm::is_result($r)) {
                return $o;
        }
 
index c8d1e0c9ddf10505661db79551ea36464b789470..40d4016f338b2b6738c1abc6e3f7666d888e8b0f 100644 (file)
@@ -59,7 +59,7 @@ function community_content(&$a, $update = 0) {
                        AND `item`.`private` = 0 AND `item`.`wall` = 1"
                );
 
-               if(count($r))
+               if (dbm::is_result($r))
                        $a->set_pager_total($r[0]['total']);
 
                if(! $r[0]['total']) {
@@ -71,7 +71,7 @@ function community_content(&$a, $update = 0) {
 
        $r = community_getitems($a->pager['start'], $a->pager['itemspage']);
 
-       if(! count($r)) {
+       if(! dbm::is_result($r)) {
                info( t('No results.') . EOL);
                return $o;
        }
index bf81afe079118767cd83e3917871e6cf34e510ff..4456db2f5326a4ae5bdd7ba5a9dea9dba8fefa0e 100644 (file)
@@ -14,7 +14,7 @@ function contactgroup_content(&$a) {
                        intval($a->argv[2]),
                        intval(local_user())
                );
-               if(count($r))
+               if (dbm::is_result($r))
                        $change = intval($a->argv[2]);
        }
 
@@ -24,7 +24,7 @@ function contactgroup_content(&$a) {
                        intval($a->argv[1]),
                        intval(local_user())
                );
-               if(! count($r)) {
+               if(! dbm::is_result($r)) {
                        killme();
                }
 
@@ -47,4 +47,4 @@ function contactgroup_content(&$a) {
        }
 
        killme();
-}
\ No newline at end of file
+}
index 1c1c21638d4e2225254debf94d02874ad6845a3f..735ccec727e191599d53282ec2558c4d88afb37b 100644 (file)
@@ -19,7 +19,7 @@ function contacts_init(&$a) {
                        intval(local_user()),
                        intval($contact_id)
                );
-               if(! count($r)) {
+               if(! dbm::is_result($r)) {
                        $contact_id = 0;
                }
        }
@@ -169,7 +169,7 @@ function contacts_post(&$a) {
                        intval($profile_id),
                        intval(local_user())
                );
-               if(! count($r)) {
+               if(! dbm::is_result($r)) {
                        notice( t('Could not locate selected profile.') . EOL);
                        return;
                }
@@ -211,7 +211,7 @@ function contacts_post(&$a) {
                intval($contact_id),
                intval(local_user())
        );
-       if($r && count($r))
+       if($r && dbm::is_result($r))
                $a->data['contact'] = $r[0];
 
        return;
@@ -765,7 +765,7 @@ function contacts_content(&$a) {
        $r = q("SELECT COUNT(*) AS `total` FROM `contact`
                WHERE `uid` = %d AND `self` = 0 AND `pending` = 0 $sql_extra $sql_extra2 ",
                intval($_SESSION['uid']));
-       if(count($r)) {
+       if (dbm::is_result($r)) {
                $a->set_pager_total($r[0]['total']);
                $total = $r[0]['total'];
        }
@@ -780,8 +780,8 @@ function contacts_content(&$a) {
 
        $contacts = array();
 
-       if(count($r)) {
-               foreach($r as $rr) {
+       if (dbm::is_result($r)) {
+               foreach ($r as $rr) {
                        $contacts[] = _contact_detail_for_template($rr);
                }
        }
index c4b1f2f68f9a51a11d3f13b1e878544b970de9aa..1e2307f553fd52b26348f9b9b0ce42d521e3163a 100644 (file)
@@ -93,7 +93,7 @@ function content_content(&$a, $update = 0) {
                );
 
                $str = '';
-               if(count($r))
+               if (dbm::is_result($r))
                        foreach($r as $rr)
                                $str .= '<' . $rr['id'] . '>';
                if(strlen($str))
@@ -113,7 +113,7 @@ function content_content(&$a, $update = 0) {
                        intval($group),
                        intval($_SESSION['uid'])
                );
-               if(! count($r)) {
+               if(! dbm::is_result($r)) {
                        if($update)
                                killme();
                        notice( t('No such group') . EOL );
@@ -141,7 +141,7 @@ function content_content(&$a, $update = 0) {
                                AND `blocked` = 0 AND `pending` = 0 LIMIT 1",
                        intval($cid)
                );
-               if(count($r)) {
+               if (dbm::is_result($r)) {
                        $sql_extra = " AND `item`.`parent` IN ( SELECT DISTINCT(`parent`) FROM `item` WHERE 1 $sql_options AND `contact-id` = " . intval($cid) . " and deleted = 0 ) ";
 
                }
@@ -197,7 +197,7 @@ function content_content(&$a, $update = 0) {
        }
 
        if($conv) {
-               $myurl = $a->get_baseurl() . '/profile/'. $a->user['nickname'];
+               $myurl = App::get_baseurl() . '/profile/'. $a->user['nickname'];
                $myurl = substr($myurl,strpos($myurl,'://')+3);
                $myurl = str_replace('www.','',$myurl);
                $diasp_url = str_replace('/profile/','/u/',$myurl);
@@ -259,7 +259,7 @@ function content_content(&$a, $update = 0) {
                $parents_arr = array();
                $parents_str = '';
 
-               if(count($r)) {
+               if (dbm::is_result($r)) {
                        foreach($r as $rr)
                                if(! in_array($rr['item_id'],$parents_arr))
                                        $parents_arr[] = $rr['item_id'];
@@ -782,7 +782,7 @@ function render_content(&$a, $items, $mode, $update, $preview = false) {
                                                        intval($item['uid']),
                                                        intval($item['id'])
                                                );
-                                               if (count($r)) {
+                                               if (dbm::is_result($r)) {
                                                        $ignore = array(
                                                                'do' => t("ignore thread"),
                                                                'undo' => t("unignore thread"),
index 3abbe343b26d0d09709fe0bcd9f3e47a50ab9757..b4275f6baa2d4f2a709c57a25de218b6265778c8 100644 (file)
@@ -14,7 +14,7 @@ function crepair_init(&$a) {
                        intval(local_user()),
                        intval($contact_id)
                );
-               if(! count($r)) {
+               if(! dbm::is_result($r)) {
                        $contact_id = 0;
                }
        }
@@ -43,7 +43,7 @@ function crepair_post(&$a) {
                );
        }
 
-       if(! count($r))
+       if(! dbm::is_result($r))
                return;
 
        $contact = $r[0];
@@ -110,7 +110,7 @@ function crepair_content(&$a) {
                );
        }
 
-       if(! count($r)) {
+       if(! dbm::is_result($r)) {
                notice( t('Contact not found.') . EOL);
                return;
        }
index 20d2e605e0a2d91c90e1d664567037d6baf1902d..71628aed0ed4d535854de2a60c90fb0855bbf8c7 100644 (file)
@@ -26,12 +26,12 @@ function delegate_content(&$a) {
                $r = q("select `nickname` from user where uid = %d limit 1",
                        intval($id)
                );
-               if(count($r)) {
+               if (dbm::is_result($r)) {
                        $r = q("select id from contact where uid = %d and nurl = '%s' limit 1",
                                intval(local_user()),
                                dbesc(normalise_link($a->get_baseurl() . '/profile/' . $r[0]['nickname']))
                        );
-                       if(count($r)) {
+                       if (dbm::is_result($r)) {
                                q("insert into manage ( uid, mid ) values ( %d , %d ) ",
                                        intval($a->argv[2]),
                                        intval(local_user())
@@ -64,7 +64,7 @@ function delegate_content(&$a) {
                dbesc($a->user['email']),
                dbesc($a->user['password'])
        );
-       if(count($r))
+       if (dbm::is_result($r))
                $full_managers = $r;
 
        $delegates = array();
@@ -75,7 +75,7 @@ function delegate_content(&$a) {
                intval(local_user())
        );
 
-       if(count($r))
+       if (dbm::is_result($r))
                $delegates = $r;
 
        $uids = array();
@@ -97,14 +97,14 @@ function delegate_content(&$a) {
                dbesc(NETWORK_DFRN)
        ); 
 
-       if(! count($r)) {
+       if(! dbm::is_result($r)) {
                notice( t('No potential page delegates located.') . EOL);
                return;
        }
 
        $nicknames = array();
 
-       if(count($r)) {
+       if (dbm::is_result($r)) {
                foreach($r as $rr) {
                        $nicknames[] = "'" . dbesc(basename($rr['nurl'])) . "'";
                }
@@ -118,7 +118,7 @@ function delegate_content(&$a) {
 
        $r = q("select `uid`, `username`, `nickname` from user where nickname in ( $nicks )");
 
-       if(count($r))
+       if (dbm::is_result($r))
                foreach($r as $rr)
                        if(! in_array($rr['uid'],$uids))
                                $potentials[] = $rr;
index 5aea4eede967524f4b093dd04657aebadb985479..23c62cb0ab25d127c8c0fd1037a6a998c69e5a03 100644 (file)
@@ -121,7 +121,7 @@ function dfrn_confirm_post(&$a,$handsfree = null) {
                        intval($uid)
                );
 
-               if(! count($r)) {
+               if(! dbm::is_result($r)) {
                        logger('Contact not found in DB.');
                        notice( t('Contact not found.') . EOL );
                        notice( t('This may occasionally happen if contact was requested by both persons and it has already been approved.') . EOL );
@@ -423,7 +423,7 @@ function dfrn_confirm_post(&$a,$handsfree = null) {
                $r = q("SELECT * FROM `contact` WHERE `id` = %d LIMIT 1",
                        intval($contact_id)
                );
-               if(count($r))
+               if (dbm::is_result($r))
                        $contact = $r[0];
                else
                        $contact = null;
@@ -443,7 +443,7 @@ function dfrn_confirm_post(&$a,$handsfree = null) {
                                intval($uid)
                        );
 
-                       if((count($r)) && ($r[0]['hide-friends'] == 0) && ($activity) && (! $hidden)) {
+                       if((dbm::is_result($r)) && ($r[0]['hide-friends'] == 0) && ($activity) && (! $hidden)) {
 
                                require_once('include/items.php');
 
@@ -553,7 +553,7 @@ function dfrn_confirm_post(&$a,$handsfree = null) {
                $r = q("SELECT * FROM `user` WHERE `nickname` = '%s' LIMIT 1",
                        dbesc($node));
 
-               if(! count($r)) {
+               if(! dbm::is_result($r)) {
                        $message = sprintf(t('No user record found for \'%s\' '), $node);
                        xml_status(3,$message); // failure
                        // NOTREACHED
@@ -629,7 +629,7 @@ function dfrn_confirm_post(&$a,$handsfree = null) {
                $r = q("SELECT * FROM `contact` WHERE `dfrn-id` = '%s' LIMIT 1",
                        dbesc($decrypted_dfrn_id)
                );
-               if(count($r)) {
+               if (dbm::is_result($r)) {
                        $message = t('The ID provided by your system is a duplicate on our system. It should work if you try again.');
                        xml_status(1,$message); // Birthday paradox - duplicate dfrn-id
                        // NOTREACHED
@@ -640,7 +640,7 @@ function dfrn_confirm_post(&$a,$handsfree = null) {
                        dbesc($dfrn_pubkey),
                        intval($dfrn_record)
                );
-               if(! count($r)) {
+               if(! dbm::is_result($r)) {
                        $message = t('Unable to set your contact credentials on our system.');
                        xml_status(3,$message);
                }
@@ -661,7 +661,7 @@ function dfrn_confirm_post(&$a,$handsfree = null) {
                $r = q("SELECT `photo` FROM `contact` WHERE `id` = %d LIMIT 1",
                        intval($dfrn_record));
 
-               if(count($r))
+               if (dbm::is_result($r))
                        $photo = $r[0]['photo'];
                else
                        $photo = $a->get_baseurl() . '/images/person-175.jpg';
@@ -714,10 +714,10 @@ function dfrn_confirm_post(&$a,$handsfree = null) {
                        intval($dfrn_record)
                );
 
-               if(count($r))
+               if (dbm::is_result($r))
                        $combined = $r[0];
 
-               if((count($r)) && ($r[0]['notify-flags'] & NOTIFY_CONFIRM)) {
+               if((dbm::is_result($r)) && ($r[0]['notify-flags'] & NOTIFY_CONFIRM)) {
                        $mutual = ($new_relation == CONTACT_IS_FRIEND);
                        notification(array(
                                'type'         => NOTIFY_CONFIRM,
@@ -742,7 +742,7 @@ function dfrn_confirm_post(&$a,$handsfree = null) {
                                intval($local_uid)
                        );
 
-                       if((count($r)) && ($r[0]['hide-friends'] == 0)) {
+                       if((dbm::is_result($r)) && ($r[0]['hide-friends'] == 0)) {
 
                                require_once('include/items.php');
 
index 6f6fc41c12d28078290c9bd85cc66f9dd01cc5db..dfa2af18ce29985901409d3d3149879811a7b8e7 100644 (file)
@@ -42,7 +42,7 @@ function dfrn_notify_post(&$a) {
                dbesc($dfrn_id),
                dbesc($challenge)
        );
-       if(! count($r)) {
+       if(! dbm::is_result($r)) {
                logger('dfrn_notify: could not match challenge to dfrn_id ' . $dfrn_id . ' challenge=' . $challenge);
                xml_status(3);
        }
@@ -88,7 +88,7 @@ function dfrn_notify_post(&$a) {
                dbesc($a->argv[1])
        );
 
-       if(! count($r)) {
+       if(! dbm::is_result($r)) {
                logger('dfrn_notify: contact not found for dfrn_id ' . $dfrn_id);
                xml_status(3);
                //NOTREACHED
@@ -284,7 +284,7 @@ function dfrn_notify_content(&$a) {
                                dbesc($a->argv[1])
                );
 
-               if(! count($r))
+               if(! dbm::is_result($r))
                        $status = 1;
 
                logger("Remote rino version: ".$rino_remote." for ".$r[0]["url"], LOGGER_DEBUG);
index 9613229dab04e3381f63a657448acb447f55e6ca..91cd33f49abf66e1475448aaec6a630914da2594 100644 (file)
@@ -79,7 +79,7 @@ function dfrn_poll_init(&$a) {
                        dbesc($a->argv[1])
                );
 
-               if(count($r)) {
+               if (dbm::is_result($r)) {
 
                        $s = fetch_url($r[0]['poll'] . '?dfrn_id=' . $my_id . '&type=profile-check');
 
@@ -126,7 +126,7 @@ function dfrn_poll_init(&$a) {
                        $r = q("SELECT * FROM `profile_check` WHERE `sec` = '%s' ORDER BY `expire` DESC LIMIT 1",
                                dbesc($sec)
                        );
-                       if(! count($r)) {
+                       if(! dbm::is_result($r)) {
                                xml_status(3, 'No ticket');
                                // NOTREACHED
                        }
@@ -190,7 +190,7 @@ function dfrn_poll_init(&$a) {
                        q("DELETE FROM `profile_check` WHERE `expire` < " . intval(time()));
                        $r = q("SELECT * FROM `profile_check` WHERE `dfrn_id` = '%s' ORDER BY `expire` DESC",
                                dbesc($dfrn_id));
-                       if(count($r)) {
+                       if (dbm::is_result($r)) {
                                xml_status(1);
                                return; // NOTREACHED
                        }
@@ -223,7 +223,7 @@ function dfrn_poll_post(&$a) {
                        $r = q("SELECT * FROM `profile_check` WHERE `sec` = '%s' ORDER BY `expire` DESC LIMIT 1",
                                dbesc($sec)
                        );
-                       if(! count($r)) {
+                       if(! dbm::is_result($r)) {
                                xml_status(3, 'No ticket');
                                // NOTREACHED
                        }
@@ -284,7 +284,7 @@ function dfrn_poll_post(&$a) {
                dbesc($challenge)
        );
 
-       if(! count($r))
+       if(! dbm::is_result($r))
                killme();
 
        $type = $r[0]['type'];
@@ -319,7 +319,7 @@ function dfrn_poll_post(&$a) {
        $r = q("SELECT * FROM `contact` WHERE `blocked` = 0 AND `pending` = 0 $sql_extra LIMIT 1");
 
 
-       if(! count($r))
+       if(! dbm::is_result($r))
                killme();
 
        $contact = $r[0];
@@ -335,7 +335,7 @@ function dfrn_poll_post(&$a) {
                $reputation = 0;
                $text = '';
 
-               if(count($r)) {
+               if (dbm::is_result($r)) {
                        $reputation = $r[0]['rating'];
                        $text = $r[0]['reason'];
 
@@ -448,7 +448,7 @@ function dfrn_poll_content(&$a) {
                        dbesc($nickname)
                );
 
-               if(count($r)) {
+               if (dbm::is_result($r)) {
 
                        $challenge = '';
                        $encrypted_id = '';
@@ -495,7 +495,7 @@ function dfrn_poll_content(&$a) {
                                ));
                        }
 
-                       $profile = ((count($r) && $r[0]['nickname']) ? $r[0]['nickname'] : $nickname);
+                       $profile = ((dbm::is_result($r) && $r[0]['nickname']) ? $r[0]['nickname'] : $nickname);
 
                        switch($destination_url) {
                                case 'profile':
index d7566905b72f6291f64a7c0ce989f854a34416ad..236970a2e9d8c0bb91ed250b9e9f312b0df7a129 100644 (file)
@@ -91,7 +91,7 @@ function dfrn_request_post(&$a) {
                                        dbesc(normalise_link($dfrn_url))
                                );
 
-                               if(count($r)) {
+                               if (dbm::is_result($r)) {
                                        if(strlen($r[0]['dfrn-id'])) {
 
                                                /*
@@ -185,7 +185,7 @@ function dfrn_request_post(&$a) {
                                        dbesc($dfrn_url),
                                        $parms['key'] // this was already escaped
                                );
-                               if(count($r)) {
+                               if (dbm::is_result($r)) {
                                        $def_gid = get_default_group(local_user(), $r[0]["network"]);
                                        if(intval($def_gid))
                                                group_add_member(local_user(), '', $r[0]['id'], $def_gid);
@@ -273,7 +273,7 @@ function dfrn_request_post(&$a) {
                                dbesc(datetime_convert('UTC','UTC','now - 24 hours')),
                                intval($uid)
                        );
-                       if(count($r) > $maxreq) {
+                       if (dbm::is_result($r) && count($r) > $maxreq) {
                                notice( sprintf( t('%s has received too many connection requests today.'),  $a->profile['name']) . EOL);
                                notice( t('Spam protection measures have been invoked.') . EOL);
                                notice( t('Friends are advised to please try again in 24 hours.') . EOL);
@@ -295,7 +295,7 @@ function dfrn_request_post(&$a) {
                        AND `intro`.`datetime` < UTC_TIMESTAMP() - INTERVAL 30 MINUTE ",
                        dbesc(NETWORK_MAIL2)
                );
-               if(count($r)) {
+               if (dbm::is_result($r)) {
                        foreach($r as $rr) {
                                if(! $rr['rel']) {
                                        q("DELETE FROM `contact` WHERE `id` = %d",
@@ -320,7 +320,7 @@ function dfrn_request_post(&$a) {
                        AND `intro`.`datetime` < UTC_TIMESTAMP() - INTERVAL 3 DAY ",
                        dbesc(NETWORK_MAIL2)
                );
-               if(count($r)) {
+               if (dbm::is_result($r)) {
                        foreach($r as $rr) {
                                if(! $rr['rel']) {
                                        q("DELETE FROM `contact` WHERE `id` = %d",
@@ -370,8 +370,8 @@ function dfrn_request_post(&$a) {
                                $r = q("SELECT * FROM `mailacct` WHERE `uid` = %d LIMIT 1",
                                        intval($uid)
                                );
-                               if(! count($r)) {
 
+                               if(! dbm::is_result($r)) {
                                        notice( t('This account has not been configured for email. Request failed.') . EOL);
                                        return;
                                }
@@ -398,7 +398,7 @@ function dfrn_request_post(&$a) {
                                dbesc($poll),
                                intval($uid)
                        );
-                       if(count($r)) {
+                       if (dbm::is_result($r)) {
                                $contact_id = $r[0]['id'];
 
                                $def_gid = get_default_group($uid, $r[0]["network"]);
@@ -431,8 +431,8 @@ function dfrn_request_post(&$a) {
 
                        $hash = random_string();
 
-                       $r = q("insert into intro ( uid, `contact-id`, knowyou, note, hash, datetime, blocked )
-                               values( %d , %d, %d, '%s', '%s', '%s', %d ) ",
+                       $r = q("INSERT INTO `intro` ( `uid`, `contact-id`, knowyou, note, hash, datetime, blocked )
+                               VALUES( %d , %d, %d, '%s', '%s', '%s', %d ) ",
                                intval($uid),
                                intval($contact_id),
                                ((x($_POST,'knowyou') && ($_POST['knowyou'] == 1)) ? 1 : 0),
@@ -473,7 +473,7 @@ function dfrn_request_post(&$a) {
                                dbesc($url)
                        );
 
-                       if(count($ret)) {
+                       if (dbm::is_result($ret)) {
                                if(strlen($ret[0]['issued-id'])) {
                                        notice( t('You have already introduced yourself here.') . EOL );
                                        return;
@@ -572,7 +572,7 @@ function dfrn_request_post(&$a) {
                                                $parms['url'],
                                                $parms['issued-id']
                                        );
-                                       if(count($r)) {
+                                       if (dbm::is_result($r)) {
                                                $contact_record = $r[0];
                                                update_contact_avatar($photo, $uid, $contact_record["id"], true);
                                        }
@@ -720,7 +720,7 @@ function dfrn_request_content(&$a) {
                        dbesc($_GET['confirm_key'])
                );
 
-               if(count($intro)) {
+               if (dbm::is_result($intro)) {
 
                        $r = q("SELECT `contact`.*, `user`.* FROM `contact` LEFT JOIN `user` ON `contact`.`uid` = `user`.`uid`
                                WHERE `contact`.`id` = %d LIMIT 1",
@@ -729,7 +729,7 @@ function dfrn_request_content(&$a) {
 
                        $auto_confirm = false;
 
-                       if(count($r)) {
+                       if (dbm::is_result($r)) {
                                if(($r[0]['page-flags'] != PAGE_NORMAL) && ($r[0]['page-flags'] != PAGE_PRVGROUP))
                                        $auto_confirm = true;
 
@@ -742,7 +742,7 @@ function dfrn_request_content(&$a) {
                                                'to_name'      => $r[0]['username'],
                                                'to_email'     => $r[0]['email'],
                                                'uid'          => $r[0]['uid'],
-                                               'link'             => $a->get_baseurl() . '/notifications/intros',
+                                               'link'         => $a->get_baseurl() . '/notifications/intros',
                                                'source_name'  => ((strlen(stripslashes($r[0]['name']))) ? stripslashes($r[0]['name']) : t('[Name Withheld]')),
                                                'source_link'  => $r[0]['url'],
                                                'source_photo' => $r[0]['photo'],
@@ -754,11 +754,11 @@ function dfrn_request_content(&$a) {
                                if($auto_confirm) {
                                        require_once('mod/dfrn_confirm.php');
                                        $handsfree = array(
-                                               'uid' => $r[0]['uid'],
-                                               'node' => $r[0]['nickname'],
-                                               'dfrn_id' => $r[0]['issued-id'],
+                                               'uid'      => $r[0]['uid'],
+                                               'node'     => $r[0]['nickname'],
+                                               'dfrn_id'  => $r[0]['issued-id'],
                                                'intro_id' => $intro[0]['id'],
-                                               'duplex' => (($r[0]['page-flags'] == PAGE_FREELOVE) ? 1 : 0),
+                                               'duplex'   => (($r[0]['page-flags'] == PAGE_FREELOVE) ? 1 : 0),
                                                'activity' => intval(get_pconfig($r[0]['uid'],'system','post_newfriend'))
                                        );
                                        dfrn_confirm_post($a,$handsfree);
@@ -842,7 +842,7 @@ function dfrn_request_content(&$a) {
                        $r = q("SELECT * FROM `mailacct` WHERE `uid` = %d LIMIT 1",
                                intval($a->profile['uid'])
                        );
-                       if(! count($r))
+                       if(! dbm::is_result($r))
                                $mail_disabled = 1;
                }
 
index 06aeec622fffb5d0af21d163b12edeb8f6c6bae3..ddea650de2b5796e8c7dbd065c28f44913ba38ad 100644 (file)
@@ -78,7 +78,7 @@ function directory_content(&$a) {
        $r = $db->q("SELECT COUNT(*) AS `total` FROM `profile`
                        LEFT JOIN `user` ON `user`.`uid` = `profile`.`uid`
                        WHERE `is-default` = 1 $publish AND `user`.`blocked` = 0 $sql_extra ");
-       if(count($r))
+       if (dbm::is_result($r))
                $a->set_pager_total($r[0]['total']);
 
        $order = " ORDER BY `name` ASC ";
@@ -90,7 +90,7 @@ function directory_content(&$a) {
                        LEFT JOIN `user` ON `user`.`uid` = `profile`.`uid`
                        LEFT JOIN `contact` ON `contact`.`uid` = `user`.`uid`
                        WHERE `is-default` = 1 $publish AND `user`.`blocked` = 0 AND `contact`.`self` $sql_extra $order LIMIT ".$limit);
-       if(count($r)) {
+       if (dbm::is_result($r)) {
 
                if(in_array('small', $a->argv))
                        $photo = 'thumb';
index 46a530dce09f49ec5da5058364aac0b88f4fe6df..217d793f5225541fc44745203a02a77f9b307885 100644 (file)
@@ -78,7 +78,7 @@ function editpost_content(&$a) {
                $r = q("SELECT * FROM `mailacct` WHERE `uid` = %d AND `server` != '' LIMIT 1",
                        intval(local_user())
                );
-               if(count($r)) {
+               if (dbm::is_result($r)) {
                        $mail_enabled = true;
                        if(intval($r[0]['pubmail']))
                                $pubmail_enabled = true;
index 16679ff7e7b47d952ea09b1ff87ce6304376cf1a..7cb171f9e5cc65cc1c011699fc4e3ac985da5fb5 100644 (file)
@@ -332,7 +332,7 @@ function events_content(&$a) {
 
                $links = array();
 
-               if(count($r)) {
+               if (dbm::is_result($r)) {
                        $r = sort_by_date($r);
                        foreach($r as $rr) {
                                $j = (($rr['adjust']) ? datetime_convert('UTC',date_default_timezone_get(),$rr['start'], 'j') : datetime_convert('UTC','UTC',$rr['start'],'j'));
@@ -344,9 +344,10 @@ function events_content(&$a) {
                $events=array();
 
                // transform the event in a usable array
-               if(count($r))
+               if (dbm::is_result($r)) {
                        $r = sort_by_date($r);
                        $events = process_events($r);
+               }
 
                if ($a->argv[1] === 'json'){
                        echo json_encode($events); killme();
@@ -403,7 +404,7 @@ function events_content(&$a) {
                        intval($event_id),
                        intval(local_user())
                );
-               if(count($r))
+               if (dbm::is_result($r))
                        $orig_event = $r[0];
        }
 
index 110ca9585c9d2e5ff0e346aaf4ad4328afffadd7..11ac2d82531bf76c5ba3969ac82b3a8bc5514f23 100644 (file)
@@ -63,7 +63,7 @@ function fbrowser_content($a){
                        );
 
                        function _map_files1($rr){
-                               global $a;
+                               $a = get_app();
                                $types = Photo::supportedTypes();
                                $ext = $types[$rr['type']];
 
@@ -110,7 +110,8 @@ function fbrowser_content($a){
                                        intval(local_user())
                                );
 
-                               function _map_files2($rr){ global $a;
+                               function _map_files2($rr){
+                                       $a = get_app();
                                        list($m1,$m2) = explode("/",$rr['filetype']);
                                        $filetype = ( (file_exists("images/icons/$m1.png"))?$m1:"zip");
 
index 1c73ad37185234328952834fa042bc0f237a8aa3..04bdf518804a84ee49b6da109391b3076feceda4 100644 (file)
@@ -6,7 +6,9 @@ require_once("include/crypto.php");
 require_once("include/diaspora.php");
 require_once("include/xml.php");
 
-function fetch_init($a){
+/// @TODO You always make it like this: function foo(&$a)
+/// @TODO This means that the value of $a can be changed in anything, remove & and use App as type-hint
+function fetch_init(&$a){
 
        if (($a->argc != 3) OR (!in_array($a->argv[1], array("post", "status_message", "reshare")))) {
                header($_SERVER["SERVER_PROTOCOL"].' 404 '.t('Not Found'));
index aad5964baf6e5d1ddf737e88f46b636cb255d6d7..fb25f40e451cce134059c9e6e60a89f6cbdcaa6f 100644 (file)
@@ -24,7 +24,7 @@ function friendica_init(&$a) {
                $visible_plugins = array();
                if(is_array($a->plugins) && count($a->plugins)) {
                        $r = q("select * from addon where hidden = 0");
-                       if(count($r))
+                       if (dbm::is_result($r))
                                foreach($r as $rr)
                                        $visible_plugins[] = $rr['name'];
                }
@@ -80,7 +80,7 @@ function friendica_content(&$a) {
        $visible_plugins = array();
        if(is_array($a->plugins) && count($a->plugins)) {
                $r = q("select * from addon where hidden = 0");
-               if(count($r))
+               if (dbm::is_result($r))
                        foreach($r as $rr)
                                $visible_plugins[] = $rr['name'];
        }
index ad407d5f32a0ca80552fbe36a02e638296282d25..1d56f4573625f175e1e4f9f24adb93bda97c6eb6 100644 (file)
@@ -16,7 +16,7 @@ function fsuggest_post(&$a) {
                intval($contact_id),
                intval(local_user())
        );
-       if(! count($r)) {
+       if(! dbm::is_result($r)) {
                notice( t('Contact not found.') . EOL);
                return;
        }
@@ -33,7 +33,7 @@ function fsuggest_post(&$a) {
                        intval($new_contact),
                        intval(local_user())
                );
-               if(count($r)) {
+               if (dbm::is_result($r)) {
 
                        $x = q("INSERT INTO `fsuggest` ( `uid`,`cid`,`name`,`url`,`request`,`photo`,`note`,`created`)
                                VALUES ( %d, %d, '%s','%s','%s','%s','%s','%s')",
@@ -50,7 +50,7 @@ function fsuggest_post(&$a) {
                                dbesc($hash),
                                intval(local_user())
                        );
-                       if(count($r)) {
+                       if (dbm::is_result($r)) {
                                $fsuggest_id = $r[0]['id'];
                                q("UPDATE `fsuggest` SET `note` = '%s' WHERE `id` = %d AND `uid` = %d",
                                        dbesc($note),
@@ -88,7 +88,7 @@ function fsuggest_content(&$a) {
                intval($contact_id),
                intval(local_user())
        );
-       if(! count($r)) {
+       if(! dbm::is_result($r)) {
                notice( t('Contact not found.') . EOL);
                return;
        }
index 5b28784f5663cc1b7056125b26619416e9e76b6d..db92ed7de6fb19f1102d6ad4594e6c7c8581d7ba 100644 (file)
@@ -43,7 +43,7 @@ function group_post(&$a) {
                        intval($a->argv[1]),
                        intval(local_user())
                );
-               if(! count($r)) {
+               if(! dbm::is_result($r)) {
                        notice( t('Group not found.') . EOL );
                        goaway($a->get_baseurl() . '/contacts');
                        return; // NOTREACHED
@@ -107,7 +107,7 @@ function group_content(&$a) {
                                intval($a->argv[2]),
                                intval(local_user())
                        );
-                       if(count($r))
+                       if (dbm::is_result($r))
                                $result = group_rmv(local_user(),$r[0]['name']);
                        if($result)
                                info( t('Group removed.') . EOL);
@@ -125,7 +125,7 @@ function group_content(&$a) {
                        intval($a->argv[2]),
                        intval(local_user())
                );
-               if(count($r))
+               if (dbm::is_result($r))
                        $change = intval($a->argv[2]);
        }
 
@@ -136,7 +136,7 @@ function group_content(&$a) {
                        intval($a->argv[1]),
                        intval(local_user())
                );
-               if(! count($r)) {
+               if(! dbm::is_result($r)) {
                        notice( t('Group not found.') . EOL );
                        goaway($a->get_baseurl() . '/contacts');
                }
@@ -209,7 +209,7 @@ function group_content(&$a) {
                intval(local_user())
        );
 
-       if(count($r)) {
+       if (dbm::is_result($r)) {
                $textmode = (($switchtotext && (count($r) > $switchtotext)) ? true : false);
                foreach($r as $member) {
                        if(! in_array($member['id'],$preselected)) {
index e876b4ef8b929ebb0ba661687b4baf04ea63697d..ba55c55e368925648bad537fec37fe8ede477a8e 100644 (file)
@@ -16,7 +16,7 @@ function ignored_init(&$a) {
                intval(local_user()),
                intval($message_id)
        );
-       if(! count($r))
+       if(! dbm::is_result($r))
                killme();
 
        if(! intval($r[0]['ignored']))
index d18d4ac3e29fba1048d431529bbbd9a8f95e439a..b5af1373a443703b7ec35b862cc4cf84fdbc5c66 100755 (executable)
@@ -165,7 +165,7 @@ function install_content(&$a) {
 
        if($db && $db->connected) {
                $r = q("SELECT COUNT(*) as `total` FROM `user`");
-               if($r && count($r) && $r[0]['total']) {
+               if (dbm::is_result($r) && $r[0]['total']) {
                        $tpl = get_markup_template('install.tpl');
                        return replace_macros($tpl, array(
                                '$title' => $install_title,
@@ -548,9 +548,14 @@ function check_imagik(&$checks) {
                        $gif = true;
                }
        }
-       check_add($checks, t('ImageMagick PHP extension is installed'), $imagick, false, "");
-       if ($imagick) {
-               check_add($checks, t('ImageMagick supports GIF'), $gif, false, "");
+       if ($imagick == false) {
+               check_add($checks, t('ImageMagick PHP extension is not installed'), $imagick, false, "");
+               }
+       else {
+               check_add($checks, t('ImageMagick PHP extension is installed'), $imagick, false, "");
+               if ($imagick) {
+                       check_add($checks, t('ImageMagick supports GIF'), $gif, false, "");
+               }
        }
 }
 
index 170bed12a53d6055e3ac2aedb51acf4728744665..9ef82616c35a42adae5326606a30345c317bf660 100644 (file)
@@ -102,7 +102,7 @@ function item_post(&$a) {
                }
 
                // if this isn't the real parent of the conversation, find it
-               if($r !== false && count($r)) {
+               if (dbm::is_result($r)) {
                        $parid = $r[0]['parent'];
                        $parent_uri = $r[0]['uri'];
                        if($r[0]['id'] != $r[0]['parent']) {
@@ -112,7 +112,7 @@ function item_post(&$a) {
                        }
                }
 
-               if(($r === false) || (! count($r))) {
+               if(! dbm::is_result($r)) {
                        notice( t('Unable to locate original post.') . EOL);
                        if(x($_REQUEST,'return'))
                                goaway($return_path);
@@ -141,7 +141,7 @@ function item_post(&$a) {
 
                                $r = q("SELECT * FROM `gcontact` WHERE `nurl` = '%s' LIMIT 1",
                                        dbesc(normalise_link($thrparent[0]["author-link"])));
-                               if (count($r)) {
+                               if (dbm::is_result($r)) {
                                        $parent_contact = $r[0];
                                        $parent_contact["thumb"] = $parent_contact["photo"];
                                        $parent_contact["micro"] = $parent_contact["photo"];
@@ -330,7 +330,7 @@ function item_post(&$a) {
                                $r = q("SELECT * FROM `mailacct` WHERE `uid` = %d AND `server` != '' LIMIT 1",
                                        intval(local_user())
                                );
-                               if(count($r) && intval($r[0]['pubmail']))
+                               if (dbm::is_result($r) && intval($r[0]['pubmail']))
                                        $pubmail_enabled = true;
                        }
                }
@@ -464,7 +464,7 @@ function item_post(&$a) {
                                        intval($profile_uid)
                                );
 
-                               if(! count($r))
+                               if(! dbm::is_result($r))
                                        continue;
 
                                $r = q("UPDATE `photo` SET `allow_cid` = '%s', `allow_gid` = '%s', `deny_cid` = '%s', `deny_gid` = '%s'
index 0ae54c8c125f92d07616113a7b52865e3d61fed1..c806fc317550b4d8e1f82ef4ee40fddf178855f0 100644 (file)
@@ -21,7 +21,7 @@ function lockview_content(&$a) {
                dbesc($type),
                intval($item_id)
        );
-       if(! count($r))
+       if(! dbm::is_result($r))
                killme();
        $item = $r[0];
 
@@ -52,7 +52,7 @@ function lockview_content(&$a) {
                $r = q("SELECT `name` FROM `group` WHERE `id` IN ( %s )",
                        dbesc(implode(', ', $allowed_groups))
                );
-               if(count($r))
+               if (dbm::is_result($r))
                        foreach($r as $rr) 
                                $l[] = '<b>' . $rr['name'] . '</b>';
        }
@@ -60,7 +60,7 @@ function lockview_content(&$a) {
                $r = q("SELECT `name` FROM `contact` WHERE `id` IN ( %s )",
                        dbesc(implode(', ',$allowed_users))
                );
-               if(count($r))
+               if (dbm::is_result($r))
                        foreach($r as $rr) 
                                $l[] = $rr['name'];
 
@@ -70,7 +70,7 @@ function lockview_content(&$a) {
                $r = q("SELECT `name` FROM `group` WHERE `id` IN ( %s )",
                        dbesc(implode(', ', $deny_groups))
                );
-               if(count($r))
+               if (dbm::is_result($r))
                        foreach($r as $rr) 
                                $l[] = '<b><strike>' . $rr['name'] . '</strike></b>';
        }
@@ -78,7 +78,7 @@ function lockview_content(&$a) {
                $r = q("SELECT `name` FROM `contact` WHERE `id` IN ( %s )",
                        dbesc(implode(', ',$deny_users))
                );
-               if(count($r))
+               if (dbm::is_result($r))
                        foreach($r as $rr) 
                                $l[] = '<strike>' . $rr['name'] . '</strike>';
 
index 938d1cbb008ada25359cf6a68514760a2d98fc6f..3dca3a8b81d51d80137b25c86408a3257094d7e8 100644 (file)
@@ -15,7 +15,7 @@ function lostpass_post(&$a) {
                dbesc($loginame)
        );
 
-       if(! count($r)) {
+       if(! dbm::is_result($r)) {
                notice( t('No valid account found.') . EOL);
                goaway(z_root());
        }
@@ -88,7 +88,7 @@ function lostpass_content(&$a) {
                $r = q("SELECT * FROM `user` WHERE `pwdreset` = '%s' LIMIT 1",
                        dbesc($hash)
                );
-               if(! count($r)) {
+               if(! dbm::is_result($r)) {
                        $o =  t("Request could not be verified. \x28You may have previously submitted it.\x29 Password reset failed.");
                        return $o;
                }
index adcc3d787aac0d58563cbd5d38e82e50384498d2..66891db720a540fbe659644b4a25a7d0d85b23be 100644 (file)
@@ -15,7 +15,7 @@ function manage_post(&$a) {
                $r = q("select * from user where uid = %d limit 1",
                        intval($_SESSION['submanage'])
                );
-               if(count($r)) {
+               if (dbm::is_result($r)) {
                        $uid = intval($r[0]['uid']);
                        $orig_record = $r[0];
                }
@@ -56,7 +56,7 @@ function manage_post(&$a) {
                );
        }
 
-       if(! count($r))
+       if(! dbm::is_result($r))
                return;
 
        unset($_SESSION['authenticated']);
index 33e07c91ce40fbcf9614d0aca83040756c49c8b0..f7fe325b3868937786e2b2cc9fd9728c849babd4 100644 (file)
@@ -27,7 +27,7 @@ function match_content(&$a) {
        $r = q("SELECT `pub_keywords`, `prv_keywords` FROM `profile` WHERE `is-default` = 1 AND `uid` = %d LIMIT 1",
                intval(local_user())
        );
-       if(! count($r))
+       if(! dbm::is_result($r))
                return;
        if(! $r[0]['pub_keywords'] && (! $r[0]['prv_keywords'])) {
                notice( t('No keywords to match. Please add keywords to your default profile.') . EOL);
index 4bd73d0cee9d36da73e625d467457843d4a4fe2a..9bd5b0d72278bf0367cf79f4c3c7c59454924c17 100644 (file)
@@ -242,7 +242,7 @@ function message_content(&$a) {
                                intval($a->argv[2]),
                                intval(local_user())
                        );
-                       if(count($r)) {
+                       if (dbm::is_result($r)) {
                                $parent = $r[0]['parent-uri'];
                                $convid = $r[0]['convid'];
 
@@ -309,19 +309,21 @@ function message_content(&$a) {
                                intval(local_user()),
                                intval($a->argv[2])
                        );
-                       if(!$r) {
+                       if (!dbm::is_result($r)) {
                                $r = q("SELECT `name`, `url`, `id` FROM `contact` WHERE `uid` = %d AND `nurl` = '%s' LIMIT 1",
                                        intval(local_user()),
                                        dbesc(normalise_link(base64_decode($a->argv[2])))
                                );
                        }
-                       if(!$r) {
+
+                       if (!dbm::is_result($r)) {
                                $r = q("SELECT `name`, `url`, `id` FROM `contact` WHERE `uid` = %d AND `addr` = '%s' LIMIT 1",
                                        intval(local_user()),
                                        dbesc(base64_decode($a->argv[2]))
                                );
                        }
-                       if(count($r)) {
+
+                       if (dbm::is_result($r)) {
                                $prename = $r[0]['name'];
                                $preurl = $r[0]['url'];
                                $preid = $r[0]['id'];
@@ -405,7 +407,7 @@ function message_content(&$a) {
                        intval(local_user()),
                        intval($a->argv[1])
                );
-               if(count($r)) {
+               if (dbm::is_result($r)) {
                        $contact_id = $r[0]['contact-id'];
                        $convid = $r[0]['convid'];
 
index bba2c2882d065e5fc2320f5ed8582718f5940b9a..d1dabb101b3834aec9d7ef9cbfe5f0d15e5e3920 100644 (file)
@@ -12,7 +12,7 @@ function modexp_init(&$a) {
                        dbesc($nick)
        );
 
-       if(! count($r))
+       if(! dbm::is_result($r))
                killme();
 
        $lines = explode("\n",$r[0]['spubkey']);
index f804af0c00819ec0d9ed93714867e44b49396502..c64dd0d9efbe2ae3baa68618d8c0c774115ea9a4 100644 (file)
@@ -36,7 +36,7 @@ function mood_init(&$a) {
                        intval($parent),
                        intval($uid)
                );
-               if(count($r)) {
+               if (dbm::is_result($r)) {
                        $parent_uri = $r[0]['uri'];
                        $private    = $r[0]['private'];
                        $allow_cid  = $r[0]['allow_cid'];
index 89de5b70576f354653ad4daf8645d5aa5b843876..43b200ddf84ecaf7a3abbc16fcaca0056e57a583 100644 (file)
@@ -13,17 +13,19 @@ function msearch_post(&$a) {
        $r = q("SELECT COUNT(*) AS `total` FROM `profile` LEFT JOIN `user` ON `user`.`uid` = `profile`.`uid` WHERE `is-default` = 1 AND `user`.`hidewall` = 0 AND MATCH `pub_keywords` AGAINST ('%s') ",
                dbesc($search)
        );
-       if(count($r))
+
+       if (dbm::is_result($r))
                $total = $r[0]['total'];
 
+       $results = array();
+
        $r = q("SELECT `pub_keywords`, `username`, `nickname`, `user`.`uid` FROM `user` LEFT JOIN `profile` ON `user`.`uid` = `profile`.`uid` WHERE `is-default` = 1 AND `user`.`hidewall` = 0 AND MATCH `pub_keywords` AGAINST ('%s') LIMIT %d , %d ",
                dbesc($search),
                intval($startrec),
                intval($perpage)
        );
 
-       $results = array();
-       if(count($r)) {
+       if (dbm::is_result($r)) {
                foreach($r as $rr)
                        $results[] = array(
                                'name' => $rr['name'], 
@@ -39,4 +41,4 @@ function msearch_post(&$a) {
 
        killme();
 
-}
\ No newline at end of file
+}
index cafaa11aecca87d53a91943556020f0185b3d977..9cfeda1026b9e8e3f51f8cadaa1a0f4c758e2d82 100644 (file)
@@ -126,7 +126,7 @@ function network_init(&$a) {
                        intval(local_user()),
                        dbesc($search)
                );
-               if(! count($r)) {
+               if(! dbm::is_result($r)) {
                        q("INSERT INTO `search` ( `uid`,`term` ) VALUES ( %d, '%s') ",
                                intval(local_user()),
                                dbesc($search)
@@ -182,7 +182,7 @@ function saved_searches($search) {
 
        $saved = array();
 
-       if(count($r)) {
+       if (dbm::is_result($r)) {
                foreach($r as $rr) {
                        $saved[] = array(
                                'id'            => $rr['id'],
@@ -381,7 +381,7 @@ function network_content(&$a, $update = 0) {
                );
 
                $str = '';
-               if(count($r))
+               if (dbm::is_result($r))
                        foreach($r as $rr)
                                $str .= '<' . $rr['id'] . '>';
                if(strlen($str))
@@ -463,7 +463,7 @@ function network_content(&$a, $update = 0) {
                        intval($group),
                        intval($_SESSION['uid'])
                );
-               if(! count($r)) {
+               if(! dbm::is_result($r)) {
                        if($update)
                                killme();
                        notice( t('No such group') . EOL );
@@ -507,7 +507,7 @@ function network_content(&$a, $update = 0) {
                                AND (NOT `blocked` OR `pending`) LIMIT 1",
                        intval($cid)
                );
-               if(count($r)) {
+               if (dbm::is_result($r)) {
                        $sql_extra = " AND ".$sql_table.".`contact-id` = ".intval($cid);
 
                        $entries[0] = array(
@@ -609,7 +609,7 @@ function network_content(&$a, $update = 0) {
                                intval($_SESSION['uid'])
                        );
 
-                       if(count($r)) {
+                       if (dbm::is_result($r)) {
                                $a->set_pager_total($r[0]['total']);
                        }
                }
@@ -705,7 +705,7 @@ function network_content(&$a, $update = 0) {
                $parents_str = '';
                $date_offset = "";
 
-               if(dbm::is_result($r)) {
+               if (dbm::is_result($r)) {
                        foreach($r as $rr)
                                if(! in_array($rr['item_id'],$parents_arr))
                                        $parents_arr[] = $rr['item_id'];
@@ -729,7 +729,9 @@ function network_content(&$a, $update = 0) {
                                        intval($parents),
                                        intval($max_comments + 1)
                                );
-                               $items = array_merge($items, $thread_items);
+       
+                               if (dbm::is_result($thread_items))
+                                       $items = array_merge($items, $thread_items);
                        }
                        $items = conv_sort($items,$ordering);
                } else {
index 2f0985c9dbba0db74ae2be74bfc4d31a110c0f6d..0a014c067668daf5c2a40c34b79bec944fae3137 100644 (file)
@@ -28,11 +28,11 @@ function nogroup_content(&$a) {
 
        require_once('include/Contact.php');
        $r = contacts_not_grouped(local_user());
-       if(count($r)) {
+       if (dbm::is_result($r)) {
                $a->set_pager_total($r[0]['total']);
        }
        $r = contacts_not_grouped(local_user(),$a->pager['start'],$a->pager['itemspage']);
-       if(count($r)) {
+       if (dbm::is_result($r)) {
                foreach($r as $rr) {
 
                        $contact_details = get_contact_details_by_url($rr['url'], local_user(), $rr);
index 2a04605469b845745755b2bce39eb3a5f9472972..537aff878f8e79ab81f7453ce4b27b7ff53410f0 100644 (file)
@@ -43,7 +43,7 @@ function noscrape_init(&$a) {
        if(is_array($a->profile) AND !$a->profile['hide-friends']) {
                $r = q("SELECT `gcontact`.`updated` FROM `contact` INNER JOIN `gcontact` WHERE `gcontact`.`nurl` = `contact`.`nurl` AND `self` AND `uid` = %d LIMIT 1",
                        intval($a->profile['uid']));
-               if(count($r))
+               if (dbm::is_result($r))
                        $json_info["updated"] =  date("c", strtotime($r[0]['updated']));
 
                $r = q("SELECT COUNT(*) AS `total` FROM `contact` WHERE `uid` = %d AND `self` = 0 AND `blocked` = 0 and `pending` = 0 AND `hidden` = 0 AND `archive` = 0
@@ -53,7 +53,7 @@ function noscrape_init(&$a) {
                        dbesc(NETWORK_DIASPORA),
                        dbesc(NETWORK_OSTATUS)
                );
-               if(count($r))
+               if (dbm::is_result($r))
                        $json_info["contacts"] = intval($r[0]['total']);
        }
 
index a25d090ed701faad32ab49fb2dbc7012b13d8e2f..74ab18a6f95f0aeeb16418b584709163a471c981 100644 (file)
@@ -82,7 +82,7 @@ function notes_content(&$a,$update = false) {
 
        );
 
-       if(count($r)) {
+       if (dbm::is_result($r)) {
                $a->set_pager_total($r[0]['total']);
                $a->set_pager_itemspage(40);
        }
@@ -102,7 +102,7 @@ function notes_content(&$a,$update = false) {
        $parents_arr = array();
        $parents_str = '';
 
-       if(count($r)) {
+       if (dbm::is_result($r)) {
                foreach($r as $rr)
                        $parents_arr[] = $rr['item_id'];
                $parents_str = implode(', ', $parents_arr);
@@ -116,7 +116,7 @@ function notes_content(&$a,$update = false) {
                        dbesc($parents_str)
                );
 
-               if(count($r)) {
+               if (dbm::is_result($r)) {
                        $items = conv_sort($r,"`commented`");
 
                        $o .= conversation($a,$items,'notes',$update);
index 19cf53189a1476dfb9795026ab9b23139ad0160f..7fdf4493a4f5cf30a801f4c0008df1c8970d2fa9 100644 (file)
@@ -6,7 +6,7 @@
                $r = q("SELECT user.nickname FROM user LEFT JOIN item ON item.uid=user.uid WHERE item.id=%d",
                                intval($id)
                                );
-               if (count($r)){
+               if (dbm::is_result($r)){
                        $nick = $r[0]['nickname'];
                        $url = $a->get_baseurl()."/display/$nick/$id";
                        goaway($url);
index af44097c1cb42a508c3267665d37b8fd2de8c52e..3e0bd9cc47d715e79adefe574436f97ff5465238 100644 (file)
@@ -27,7 +27,7 @@ function notifications_post(&$a) {
                        intval(local_user())
                );
 
-               if(count($r)) {
+               if (dbm::is_result($r)) {
                        $intro_id = $r[0]['id'];
                        $contact_id = $r[0]['contact-id'];
                }
@@ -305,7 +305,6 @@ function notifications_content(&$a) {
                        $notif_nocontent = sprintf( t('No more %s notifications.'), $notifs['ident']);
        }
 
-
        $o .= replace_macros($notif_tpl, array(
                '$notif_header' => $notif_header,
                '$tabs' => $tabs,
index 938e2ffbe35a908a79162b2a4c692a1d9a0d228c..dceb326a4bdd260faa34824d2350edfac52f8ab6 100644 (file)
@@ -47,7 +47,7 @@ function notify_content(&$a) {
        require_once('include/bbcode.php');
 
        $r = $nm->getAll(array('seen'=>0));
-       if ($r!==false && count($r) > 0) {
+       if (dbm::is_result($r) > 0) {
                foreach ($r as $it) {
                        $notif_content .= replace_macros($not_tpl,array(
                                '$item_link' => $a->get_baseurl(true).'/notify/view/'. $it['id'],
index 0ebda485d023a5cf090aed7138a824538f71e7f1..60a9c1381b083e5322be743bf4241ac0169887d2 100644 (file)
@@ -38,7 +38,7 @@ function openid_content(&$a) {
                                dbesc($authid), dbesc(normalise_openid($authid))
                        );
 
-                       if($r && count($r)) {
+                       if (dbm::is_result($r)) {
 
                                // successful OpenID login
 
index 8da044e9323916e742b2b1bb24404fefe854acdf..4db8f552962c9f8504c4a6ed1ea3c29971c6de42 100644 (file)
--- a/mod/p.php
+++ b/mod/p.php
@@ -48,7 +48,7 @@ function p_init($a){
        $r = q("SELECT `user`.`prvkey`, `contact`.`addr`, `user`.`nickname`, `contact`.`nick` FROM `user`
                INNER JOIN `contact` ON `contact`.`uid` = `user`.`uid`
                WHERE `user`.`uid` = %d", intval($item[0]["uid"]));
-       if (!$r) {
+       if (!dbm::is_result($r)) {
                header($_SERVER["SERVER_PROTOCOL"].' 404 '.t('Not Found'));
                killme();
        }
index 0d60282d5ffc19f7fa39d93f9edfb12722ba25dc..a94a3ac2ce57eb97f260689e6cb699b2766ce94f 100644 (file)
@@ -76,7 +76,7 @@ function photo_init(&$a) {
                        intval($resolution),
                        intval($uid)
                );
-               if(count($r)) {
+               if (dbm::is_result($r)) {
                        $data = $r[0]['data'];
                        $mimetype = $r[0]['type'];
                }
@@ -106,7 +106,7 @@ function photo_init(&$a) {
                        dbesc($photo),
                        intval($resolution)
                );
-               if(count($r)) {
+               if (dbm::is_result($r)) {
 
                        $sql_extra = permissions_sql($r[0]['uid']);
 
@@ -117,9 +117,9 @@ function photo_init(&$a) {
                                intval($resolution)
                        );
 
-                       $public = ($r[0]['allow_cid'] == '') AND ($r[0]['allow_gid'] == '') AND ($r[0]['deny_cid']  == '') AND ($r[0]['deny_gid']  == '');
+                       $public = (dbm::is_result($r)) AND ($r[0]['allow_cid'] == '') AND ($r[0]['allow_gid'] == '') AND ($r[0]['deny_cid']  == '') AND ($r[0]['deny_gid']  == '');
 
-                       if(count($r)) {
+                       if (dbm::is_result($r)) {
                                $resolution = $r[0]['scale'];
                                $data = $r[0]['data'];
                                $mimetype = $r[0]['type'];
index d72a824827dac3f6daabc5f2a24ce4044222d454..1ef43f423ab3f6105eb63094a114b9af8a8977b8 100644 (file)
@@ -165,7 +165,7 @@ function photos_post(&$a) {
                intval($page_owner_uid)
        );
 
-       if (! count($r)) {
+       if (! dbm::is_result($r)) {
                notice( t('Contact information unavailable') . EOL);
                logger('photos_post: unable to locate contact record for page owner. uid=' . $page_owner_uid);
                killme();
@@ -186,7 +186,7 @@ function photos_post(&$a) {
                        dbesc($album),
                        intval($page_owner_uid)
                );
-               if (! count($r)) {
+               if (! dbm::is_result($r)) {
                        notice( t('Album not found.') . EOL);
                        goaway($_SESSION['photo_return']);
                        return; // NOTREACHED
@@ -255,7 +255,7 @@ function photos_post(&$a) {
                                );
                        }
                        if (dbm::is_result($r)) {
-                               foreach ($r as $rr) {
+                               foreach($r as $rr) {
                                        $res[] = "'" . dbesc($rr['rid']) . "'" ;
                                }
                        } else {
@@ -277,7 +277,7 @@ function photos_post(&$a) {
                                intval($page_owner_uid)
                        );
                        if (dbm::is_result($r)) {
-                               foreach ($r as $rr) {
+                               foreach($r as $rr) {
                                        q("UPDATE `item` SET `deleted` = 1, `changed` = '%s' WHERE `parent-uri` = '%s' AND `uid` = %d",
                                                dbesc(datetime_convert()),
                                                dbesc($rr['parent-uri']),
@@ -681,7 +681,7 @@ function photos_post(&$a) {
                                        $arr['visible']       = 1;
                                        $arr['verb']          = ACTIVITY_TAG;
                                        $arr['object-type']   = ACTIVITY_OBJ_PERSON;
-                                       $arr['target-type']   = ACTIVITY_OBJ_PHOTO;
+                                       $arr['target-type']   = ACTIVITY_OBJ_IMAGE;
                                        $arr['tag']           = $tagged[4];
                                        $arr['inform']        = $tagged[2];
                                        $arr['origin']        = 1;
@@ -694,7 +694,7 @@ function photos_post(&$a) {
                                                $arr['object'] .= xmlify('<link rel="photo" type="'.$p[0]['type'].'" href="' . $tagged[3]['photo'] . '" />' . "\n");
                                        $arr['object'] .= '</link></object>' . "\n";
 
-                                       $arr['target'] = '<target><type>' . ACTIVITY_OBJ_PHOTO . '</type><title>' . $p[0]['desc'] . '</title><id>'
+                                       $arr['target'] = '<target><type>' . ACTIVITY_OBJ_IMAGE . '</type><title>' . $p[0]['desc'] . '</title><id>'
                                                . $a->get_baseurl() . '/photos/' . $owner_record['nickname'] . '/image/' . $p[0]['resource-id'] . '</id>';
                                        $arr['target'] .= '<link>' . xmlify('<link rel="alternate" type="text/html" href="' . $a->get_baseurl() . '/photos/' . $owner_record['nickname'] . '/image/' . $p[0]['resource-id'] . '" />' . "\n" . '<link rel="preview" type="'.$p[0]['type'].'" href="' . $a->get_baseurl() . "/photo/" . $p[0]['resource-id'] . '-' . $best . '.' . $ext . '" />') . '</link></target>';
 
@@ -748,7 +748,7 @@ function photos_post(&$a) {
                dbesc($album),
                intval($page_owner_uid)
        );
-       if ((! count($r)) || ($album == t('Profile Photos')))
+       if ((! dbm::is_result($r)) || ($album == t('Profile Photos')))
                $visible = 1;
        else
                $visible = 0;
@@ -1573,7 +1573,7 @@ function photos_content(&$a) {
                        }
 
                        $comments = '';
-                       if (! count($r)) {
+                       if (! dbm::is_result($r)) {
                                if ($can_post || can_write_wall($a,$owner_uid)) {
                                        if ($link_item['last-child']) {
                                                $comments .= replace_macros($cmnt_tpl,array(
@@ -1809,8 +1809,6 @@ function photos_content(&$a) {
                intval($a->pager['itemspage'])
        );
 
-
-
        $photos = array();
        if (dbm::is_result($r)) {
                $twist = 'rotright';
index 7e20b9383d6788cb68bf8c6a08c060a87ee46f36..1ef3cc5b4732b95eeeb396efe1f3beb711a6886e 100644 (file)
@@ -175,7 +175,7 @@ function ping_init(App $a)
                );
 
                $intro_count = count($intros1) + count($intros2);
-               $intros = $intros1+$intros2;
+               $intros = $intros1 + $intros2;
 
                $myurl = $a->get_baseurl() . '/profile/' . $a->user['nickname'] ;
                $mails = qu("SELECT `id`, `from-name`, `from-url`, `from-photo`, `created` FROM `mail`
@@ -189,7 +189,8 @@ function ping_init(App $a)
                        $regs = qu("SELECT `contact`.`name`, `contact`.`url`, `contact`.`micro`, `register`.`created`, COUNT(*) AS `total`
                                FROM `contact` RIGHT JOIN `register` ON `register`.`uid` = `contact`.`uid`
                                WHERE `contact`.`self` = 1");
-                       if ($regs) {
+
+                       if (dbm::is_result($regs)) {
                                $register_count = $regs[0]['total'];
                        }
                }
index 1ec5b2d4e1b07e1c91157cfadc31c28e59c30d14..e454d1e668fce7deeea29a82c5017c1eb4719d88 100644 (file)
@@ -45,7 +45,7 @@ function poco_init(&$a) {
                        where `user`.`nickname` = '%s' and `profile`.`is-default` = 1 limit 1",
                        dbesc($user)
                );
-               if(! count($r) || $r[0]['hidewall'] || $r[0]['hide-friends'])
+               if(! dbm::is_result($r) || $r[0]['hidewall'] || $r[0]['hide-friends'])
                        http_status_exit(404);
 
                $user = $r[0];
@@ -83,7 +83,7 @@ function poco_init(&$a) {
                        dbesc(NETWORK_STATUSNET)
                );
        }
-       if(count($r))
+       if (dbm::is_result($r))
                $totalResults = intval($r[0]['total']);
        else
                $totalResults = 0;
@@ -173,7 +173,7 @@ function poco_init(&$a) {
        }
 
        if(is_array($r)) {
-               if(count($r)) {
+               if (dbm::is_result($r)) {
                        foreach($r as $rr) {
                                if (!isset($rr['generation'])) {
                                        if ($global)
index 435da4dcd4facd27229767709633724529c690be..8102c3697da787e63983e3b753883e52f6bbf4f3 100644 (file)
@@ -52,7 +52,7 @@ function poke_init(&$a) {
                intval($uid)
        );
 
-       if(! count($r)) {
+       if(! dbm::is_result($r)) {
                logger('poke: no contact ' . $contact_id);
                return;
        }
@@ -66,7 +66,7 @@ function poke_init(&$a) {
                        intval($parent),
                        intval($uid)
                );
-               if(count($r)) {
+               if (dbm::is_result($r)) {
                        $parent_uri = $r[0]['uri'];
                        $private    = $r[0]['private'];
                        $allow_cid  = $r[0]['allow_cid'];
@@ -159,7 +159,7 @@ function poke_content(&$a) {
                        intval($_GET['c']),
                        intval(local_user())
                );
-               if(count($r)) {
+               if (dbm::is_result($r)) {
                        $name = $r[0]['name'];
                        $id = $r[0]['id'];
                }
index c0e783a6aaded3cb6ea126bfd177eb50cb76e4df..76282d29a5390bf706d59957dc9e40769f7830cb 100644 (file)
@@ -23,7 +23,7 @@ function post_post(&$a) {
                                AND `account_expired` = 0 AND `account_removed` = 0 LIMIT 1",
                        dbesc($nickname)
                );
-               if(! count($r))
+               if(! dbm::is_result($r))
                        http_status_exit(500);
 
                $importer = $r[0];
index 279f8635231591e8e2444fa54453aa12169023bc..5ab675dd0d589d6c1b9a4f539d217be025dc54cd 100644 (file)
@@ -13,7 +13,7 @@ function profile_init(&$a) {
                $which = htmlspecialchars($a->argv[1]);
        else {
                $r = q("select nickname from user where blocked = 0 and account_expired = 0 and account_removed = 0 and verified = 1 order by rand() limit 1");
-               if(count($r)) {
+               if (dbm::is_result($r)) {
                        goaway($a->get_baseurl() . '/profile/' . $r[0]['nickname']);
                }
                else {
@@ -136,7 +136,7 @@ function profile_content(&$a, $update = 0) {
                        intval($contact_id),
                        intval($a->profile['profile_uid'])
                );
-               if(count($r)) {
+               if (dbm::is_result($r)) {
                        $contact = $r[0];
                        $remote_contact = true;
                }
@@ -256,21 +256,21 @@ function profile_content(&$a, $update = 0) {
                            AND `thread`.`wall` = 1
                            $sql_extra $sql_extra2 ",
                            intval($a->profile['profile_uid'])
-                   );
+                       );
 
-               if(count($r)) {
-                       $a->set_pager_total($r[0]['total']);
+                       if (dbm::is_result($r)) {
+                               $a->set_pager_total($r[0]['total']);
                        }
                }
 
                //  check if we serve a mobile device and get the user settings
                //  accordingly
                if ($a->is_mobile) {
-                   $itemspage_network = get_pconfig(local_user(),'system','itemspage_mobile_network');
-                   $itemspage_network = ((intval($itemspage_network)) ? $itemspage_network : 10);
+                       $itemspage_network = get_pconfig(local_user(),'system','itemspage_mobile_network');
+                       $itemspage_network = ((intval($itemspage_network)) ? $itemspage_network : 10);
                } else {
-                   $itemspage_network = get_pconfig(local_user(),'system','itemspage_network');
-                   $itemspage_network = ((intval($itemspage_network)) ? $itemspage_network : 20);
+                       $itemspage_network = get_pconfig(local_user(),'system','itemspage_network');
+                       $itemspage_network = ((intval($itemspage_network)) ? $itemspage_network : 20);
                }
                //  now that we have the user settings, see if the theme forces
                //  a maximum item number which is lower then the user choice
index 11e671afc58a2f58e5ef51655d55a473e78aa708..20bbbbcbd41e98d2400782cafd71ff7a53576da0 100644 (file)
@@ -32,7 +32,7 @@ function profile_photo_post(&$a) {
                                intval($_REQUEST['profile']),
                                intval(local_user())
                        );
-                       if(count($r) && (! intval($r[0]['is-default'])))
+                       if (dbm::is_result($r) && (! intval($r[0]['is-default'])))
                                $is_default_profile = 0;
                }
 
@@ -63,7 +63,7 @@ function profile_photo_post(&$a) {
                        dbesc(local_user()),
                        intval($scale));
 
-               if(count($r)) {
+               if (dbm::is_result($r)) {
 
                        $base_image = $r[0];
 
@@ -195,7 +195,7 @@ function profile_photo_content(&$a) {
                        intval(local_user()),
                        dbesc($resource_id)
                        );
-               if (!count($r)){
+               if (!dbm::is_result($r)){
                        notice( t('Permission denied.') . EOL );
                        return;
                }
index 943742e3a2edfd7dfbc076656fafd5fa43595d59..f9fde658d2a9766d0a825b2a36928563065a3287 100644 (file)
@@ -15,7 +15,7 @@ function profiles_init(&$a) {
                        intval($a->argv[2]),
                        intval(local_user())
                );
-               if(! count($r)) {
+               if(! dbm::is_result($r)) {
                        notice( t('Profile not found.') . EOL);
                        goaway('profiles');
                        return; // NOTREACHED
@@ -130,7 +130,7 @@ function profiles_init(&$a) {
                        intval($a->argv[1]),
                        intval(local_user())
                );
-               if(! count($r)) {
+               if(! dbm::is_result($r)) {
                        notice( t('Profile not found.') . EOL);
                        killme();
                        return;
@@ -286,7 +286,7 @@ function profiles_post(&$a) {
                                                        intval(local_user())
                                                );
                                        }
-                                       if(count($r)) {
+                                       if (dbm::is_result($r)) {
                                                $prf = $r[0]['url'];
                                                $newname = $r[0]['name'];
                                        }
@@ -613,7 +613,7 @@ function profiles_content(&$a) {
                        intval($a->argv[1]),
                        intval(local_user())
                );
-               if(! count($r)) {
+               if(! dbm::is_result($r)) {
                        notice( t('Profile not found.') . EOL);
                        return;
                }
@@ -767,7 +767,7 @@ function profiles_content(&$a) {
                                "SELECT * FROM `profile` WHERE `uid` = %d AND `is-default`=1",
                                local_user()
                        );
-                       if(count($r)){
+                       if (dbm::is_result($r)){
                                //Go to the default profile.
                                goaway('profiles/'.$r[0]['id']);
                        }
@@ -775,7 +775,7 @@ function profiles_content(&$a) {
 
                $r = q("SELECT * FROM `profile` WHERE `uid` = %d",
                        local_user());
-               if(count($r)) {
+               if (dbm::is_result($r)) {
 
                        $tpl = get_markup_template('profile_entry.tpl');
                        foreach($r as $rr) {
index 077f695bea14c15be10f592258847bcd6e3d1198..1c37f84ab2fca78f9703d2c74ac9075d7eeee380 100644 (file)
@@ -42,7 +42,7 @@ function profperm_content(&$a) {
                        intval($a->argv[2]),
                        intval(local_user())
                );
-               if(count($r))
+               if (dbm::is_result($r))
                        $change = intval($a->argv[2]);
        }
 
@@ -52,7 +52,7 @@ function profperm_content(&$a) {
                        intval($a->argv[1]),
                        intval(local_user())
                );
-               if(! count($r)) {
+               if(! dbm::is_result($r)) {
                        notice( t('Invalid profile identifier.') . EOL );
                        return;
                }
@@ -64,7 +64,7 @@ function profperm_content(&$a) {
                );
 
                $ingroup = array();
-               if(count($r))
+               if (dbm::is_result($r))
                        foreach($r as $member)
                                $ingroup[] = $member['id'];
 
@@ -94,7 +94,7 @@ function profperm_content(&$a) {
                        $members = $r;
 
                        $ingroup = array();
-                       if(count($r))
+                       if (dbm::is_result($r))
                                foreach($r as $member)
                                        $ingroup[] = $member['id'];
                }
@@ -138,7 +138,7 @@ function profperm_content(&$a) {
                        dbesc(NETWORK_DFRN)
                );
 
-               if(count($r)) {
+               if (dbm::is_result($r)) {
                        $textmode = (($switchtotext && (count($r) > $switchtotext)) ? true : false);
                        foreach($r as $member) {
                                if(! in_array($member['id'],$ingroup)) {
index de2810dd78e87ba1ae6294a5d4c5b5047401c1bd..09a80f32849cacb08abd588bd5e3b4e9c8104f59 100644 (file)
@@ -136,7 +136,7 @@ function proxy_init() {
 
        if (!$direct_cache AND ($cachefile == "")) {
                $r = qu("SELECT * FROM `photo` WHERE `resource-id` = '%s' LIMIT 1", $urlhash);
-               if (count($r)) {
+               if (dbm::is_result($r)) {
                        $img_str = $r[0]['data'];
                        $mime = $r[0]["desc"];
                        if ($mime == "") $mime = "image/jpeg";
@@ -144,7 +144,7 @@ function proxy_init() {
        } else
                $r = array();
 
-       if (!count($r)) {
+       if (!dbm::is_result($r)) {
                // It shouldn't happen but it does - spaces in URL
                $_REQUEST['url'] = str_replace(" ", "+", $_REQUEST['url']);
                $redirects = 0;
@@ -281,14 +281,14 @@ function proxy_url($url, $writemode = false, $size = '') {
 
        $longpath .= '/' . strtr(base64_encode($url), '+/', '-_');
 
-       // Checking for valid extensions. Only add them if they are safe
-       $pos = strrpos($url, '.');
-       if ($pos) {
-               $extension = strtolower(substr($url, $pos + 1));
-               $pos = strpos($extension, '?');
-               if ($pos) {
-                       $extension = substr($extension, 0, $pos);
-               }
+       // Extract the URL extension, disregarding GET parameters starting with ?
+       $question_mark_pos = strpos($url, '?');
+       if ($question_mark_pos === false) {
+               $question_mark_pos = strlen($url);
+       }
+       $dot_pos = strrpos($url, '.', $question_mark_pos - strlen($url));
+       if ($dot_pos !== false) {
+               $extension = strtolower(substr($url, $dot_pos + 1, $question_mark_pos - ($dot_pos + 1)));
        }
 
        $extensions = array('jpg', 'jpeg', 'gif', 'png');
index 6053ee2fbe1553e60d1fa182aff303fbd8e1dad0..ddda7ec228a9e9ff0718e3eb732d7beccaad2ec7 100644 (file)
@@ -47,7 +47,7 @@ function pubsub_init(&$a) {
                $r = q("SELECT * FROM `user` WHERE `nickname` = '%s' AND `account_expired` = 0 AND `account_removed` = 0 LIMIT 1",
                        dbesc($nick)
                );
-               if(! count($r)) {
+               if(! dbm::is_result($r)) {
                        logger('pubsub: local account not found: ' . $nick);
                        hub_return(false, '');
                }
@@ -62,7 +62,7 @@ function pubsub_init(&$a) {
                        intval($contact_id),
                        intval($owner['uid'])
                );
-               if(! count($r)) {
+               if(! dbm::is_result($r)) {
                        logger('pubsub: contact '.$contact_id.' not found.');
                        hub_return(false, '');
                }
@@ -117,7 +117,7 @@ function pubsub_post(&$a) {
        $r = q("SELECT * FROM `user` WHERE `nickname` = '%s' AND `account_expired` = 0 AND `account_removed` = 0 LIMIT 1",
                dbesc($nick)
        );
-       if(! count($r))
+       if(! dbm::is_result($r))
                hub_post_return();
 
        $importer = $r[0];
@@ -131,7 +131,7 @@ function pubsub_post(&$a) {
                dbesc(NETWORK_FEED)
        );
 
-       if(! count($r)) {
+       if(! dbm::is_result($r)) {
                logger('pubsub: no contact record for "'.$nick.' ('.$contact_id.')" - ignored. '.$xml);
                hub_post_return();
        }
index 5d7621cc745fdf648cd1dc79d83342d09ccbe694..bfe553c44caf1e8c91b5ee7cc74f1e2167fe3408 100644 (file)
@@ -55,7 +55,7 @@ function pubsubhubbub_init(&$a) {
                           " AND `account_expired` = 0 AND `account_removed` = 0 LIMIT 1",
                           dbesc($nick));
 
-               if(!count($r)) {
+               if (!dbm::is_result($r)) {
                        logger('pubsubhubbub: local account not found: ' . $nick);
                        http_status_exit(404);
                }
@@ -73,7 +73,7 @@ function pubsubhubbub_init(&$a) {
                $r = q("SELECT * FROM `contact` WHERE `uid` = %d AND NOT `blocked`".
                           " AND NOT `pending` AND `self` LIMIT 1",
                           intval($owner['uid']));
-               if(!count($r)) {
+               if (!dbm::is_result($r)) {
                        logger('pubsubhubbub: contact not found.');
                        http_status_exit(404);
                }
@@ -132,7 +132,7 @@ function pubsubhubbub_init(&$a) {
 
                        // if we are just updating an old subscription, keep the
                        // old values for push and last_update
-                       if (count($r)) {
+                       if (dbm::is_result($r)) {
                                $last_update = $r[0]['last_update'];
                                $push_flag = $r[0]['push'];
                        }
index c35e253b670508c23771013c04187ca482f36a44..a440ea708fe22e0b211ad588468d198abd773202 100644 (file)
@@ -23,7 +23,7 @@ function qsearch_init(&$a) {
                intval($limit)
        );
 
-       if(count($r)) {
+       if (dbm::is_result($r)) {
 
                foreach($r as $rr)
                        $results[] = array( 0, (int) $rr['id'], $rr['name'], '', '');
@@ -38,7 +38,7 @@ function qsearch_init(&$a) {
        );
 
 
-       if(count($r)) {
+       if (dbm::is_result($r)) {
 
                foreach($r as $rr)
                        $results[] = array( (int) $rr['id'], 0, $rr['name'],$rr['url'],$rr['photo']);
index 4991ac47e81811b473597398a4c129df2c00b330..dd4e61ae4f95ce43cbb4fd8b47b1ae20c6072ae3 100644 (file)
@@ -34,7 +34,7 @@ function receive_post(&$a) {
                $r = q("SELECT * FROM `user` WHERE `guid` = '%s' AND `account_expired` = 0 AND `account_removed` = 0 LIMIT 1",
                        dbesc($guid)
                );
-               if(! count($r))
+               if(! dbm::is_result($r))
                        http_status_exit(500);
 
                $importer = $r[0];
index 632c39578696807b3dfd20e6f6658df50656cc99..5dc5ad372416e2788a376f8dafb1bc903615c217 100644 (file)
@@ -18,7 +18,7 @@ function redir_init(&$a) {
                                intval(local_user())
                        );
 
-                       if((! count($r)) || ($r[0]['network'] !== NETWORK_DFRN))
+                       if((! dbm::is_result($r)) || ($r[0]['network'] !== NETWORK_DFRN))
                                goaway(z_root());
 
                        $cid = $r[0]['id'];
@@ -31,7 +31,7 @@ function redir_init(&$a) {
                                intval(local_user())
                        );
 
-                       if((! count($r)) || ($r[0]['network'] !== NETWORK_DFRN))
+                       if((! dbm::is_result($r)) || ($r[0]['network'] !== NETWORK_DFRN))
                                goaway(z_root());
                }
 
index bbe733003a56dfe11ea9affceabd03f7be00fcb0..0120017b00dd39c02d964c8951004c0c7e7f1864 100644 (file)
@@ -34,7 +34,7 @@ function user_allow($hash) {
        $r = q("SELECT * FROM `profile` WHERE `uid` = %d AND `is-default` = 1",
                intval($user[0]['uid'])
        );
-       if(count($r) && $r[0]['net-publish']) {
+       if (dbm::is_result($r) && $r[0]['net-publish']) {
                $url = $a->get_baseurl() . '/profile/' . $user[0]['nickname'];
                if($url && strlen(get_config('system','directory')))
                        proc_run(PRIORITY_LOW, "include/directory.php", $url);
index 37230a557351ad70e9b4faada55a17a89f6ef69e..78cdc09328685158a9dcc931a7b22963e0471a9d 100644 (file)
@@ -31,7 +31,7 @@ function salmon_post(&$a) {
        $r = q("SELECT * FROM `user` WHERE `nickname` = '%s' AND `account_expired` = 0 AND `account_removed` = 0 LIMIT 1",
                dbesc($nick)
        );
-       if(! count($r))
+       if(! dbm::is_result($r))
                http_status_exit(500);
 
        $importer = $r[0];
@@ -150,7 +150,7 @@ function salmon_post(&$a) {
                dbesc(normalise_link($author_link)),
                intval($importer['uid'])
        );
-       if(! count($r)) {
+       if(! dbm::is_result($r)) {
                logger('mod-salmon: Author unknown to us.');
                if(get_pconfig($importer['uid'],'system','ostatus_autofriend')) {
                        $result = new_contact($importer['uid'],$author_link);
@@ -169,8 +169,8 @@ function salmon_post(&$a) {
        // Have we ignored the person?
        // If so we can not accept this post.
 
-       //if((count($r)) && (($r[0]['readonly']) || ($r[0]['rel'] == CONTACT_IS_FOLLOWER) || ($r[0]['blocked']))) {
-       if(count($r) && $r[0]['blocked']) {
+       //if((dbm::is_result($r)) && (($r[0]['readonly']) || ($r[0]['rel'] == CONTACT_IS_FOLLOWER) || ($r[0]['blocked']))) {
+       if (dbm::is_result($r) && $r[0]['blocked']) {
                logger('mod-salmon: Ignoring this author.');
                http_status_exit(202);
                // NOTREACHED
@@ -179,7 +179,7 @@ function salmon_post(&$a) {
        // Placeholder for hub discovery.
        $hub = '';
 
-       $contact_rec = ((count($r)) ? $r[0] : null);
+       $contact_rec = ((dbm::is_result($r)) ? $r[0] : null);
 
        ostatus::import($data,$importer,$contact_rec, $hub);
 
index a8372599916c4e574b0faca3e11fc1080184a651..d36cc8fcb73ee22f8d64e90b534406fce62da040 100644 (file)
@@ -15,7 +15,7 @@ function search_saved_searches() {
                intval(local_user())
        );
 
-       if(count($r)) {
+       if (dbm::is_result($r)) {
                $saved = array();
                foreach($r as $rr) {
                        $saved[] = array(
@@ -53,7 +53,7 @@ function search_init(&$a) {
                                intval(local_user()),
                                dbesc($search)
                        );
-                       if(! count($r)) {
+                       if(! dbm::is_result($r)) {
                                q("INSERT INTO `search` (`uid`,`term`) VALUES ( %d, '%s')",
                                        intval(local_user()),
                                        dbesc($search)
@@ -209,7 +209,6 @@ function search_content(&$a) {
                        $sql_extra = sprintf(" AND `item`.`body` REGEXP '%s' ", dbesc(protect_sprintf(preg_quote($search))));
                }
 
-
                $r = q("SELECT %s
                        FROM `item` %s
                        WHERE %s AND (`item`.`uid` = 0 OR (`item`.`uid` = %s AND NOT `item`.`global`))
@@ -220,7 +219,7 @@ function search_content(&$a) {
                                intval($a->pager['start']), intval($a->pager['itemspage']));
        }
 
-       if(! count($r)) {
+       if(! dbm::is_result($r)) {
                info( t('No results.') . EOL);
                return $o;
        }
index 663acd69f0267c974e5bb26776ea65a66261ca1e..a9521db221bd0e6ccbb429f3ae326dbda39a73bf 100644 (file)
@@ -225,7 +225,7 @@ function settings_post(&$a) {
                                $r = q("SELECT * FROM `mailacct` WHERE `uid` = %d LIMIT 1",
                                        intval(local_user())
                                );
-                               if(! count($r)) {
+                               if(! dbm::is_result($r)) {
                                        q("INSERT INTO `mailacct` (`uid`) VALUES (%d)",
                                                intval(local_user())
                                        );
@@ -255,7 +255,7 @@ function settings_post(&$a) {
                                $r = q("SELECT * FROM `mailacct` WHERE `uid` = %d LIMIT 1",
                                        intval(local_user())
                                );
-                               if(count($r)) {
+                               if (dbm::is_result($r)) {
                                        $eacct = $r[0];
                                        require_once('include/email.php');
                                        $mb = construct_mailbox_name($eacct);
@@ -691,7 +691,7 @@ function settings_content(&$a) {
                                        dbesc($a->argv[3]),
                                        local_user());
 
-                       if (!count($r)){
+                       if (!dbm::is_result($r)){
                                notice(t("You can't edit this application."));
                                return;
                        }
@@ -752,7 +752,7 @@ function settings_content(&$a) {
                $settings_addons = "";
 
                $r = q("SELECT * FROM `hook` WHERE `hook` = 'plugin_settings' ");
-               if(! count($r))
+               if(! dbm::is_result($r))
                        $settings_addons = t('No Plugin settings configured');
 
                call_hooks('plugin_settings', $settings_addons);
@@ -859,15 +859,15 @@ function settings_content(&$a) {
                        $r = null;
                }
 
-               $mail_server       = ((count($r)) ? $r[0]['server'] : '');
-               $mail_port         = ((count($r) && intval($r[0]['port'])) ? intval($r[0]['port']) : '');
-               $mail_ssl          = ((count($r)) ? $r[0]['ssltype'] : '');
-               $mail_user         = ((count($r)) ? $r[0]['user'] : '');
-               $mail_replyto      = ((count($r)) ? $r[0]['reply_to'] : '');
-               $mail_pubmail      = ((count($r)) ? $r[0]['pubmail'] : 0);
-               $mail_action       = ((count($r)) ? $r[0]['action'] : 0);
-               $mail_movetofolder = ((count($r)) ? $r[0]['movetofolder'] : '');
-               $mail_chk          = ((count($r)) ? $r[0]['last_check'] : '0000-00-00 00:00:00');
+               $mail_server       = ((dbm::is_result($r)) ? $r[0]['server'] : '');
+               $mail_port         = ((dbm::is_result($r) && intval($r[0]['port'])) ? intval($r[0]['port']) : '');
+               $mail_ssl          = ((dbm::is_result($r)) ? $r[0]['ssltype'] : '');
+               $mail_user         = ((dbm::is_result($r)) ? $r[0]['user'] : '');
+               $mail_replyto      = ((dbm::is_result($r)) ? $r[0]['reply_to'] : '');
+               $mail_pubmail      = ((dbm::is_result($r)) ? $r[0]['pubmail'] : 0);
+               $mail_action       = ((dbm::is_result($r)) ? $r[0]['action'] : 0);
+               $mail_movetofolder = ((dbm::is_result($r)) ? $r[0]['movetofolder'] : '');
+               $mail_chk          = ((dbm::is_result($r)) ? $r[0]['last_check'] : '0000-00-00 00:00:00');
 
 
                $tpl = get_markup_template("settings_connectors.tpl");
index 085da4e30d8a8b6f15e343a480d6743f733def15..0a34c6fc50699dd1923872f78d0aae8338be6820 100644 (file)
@@ -12,7 +12,7 @@ function share_init(&$a) {
                intval($post_id),
                intval(local_user())
        );
-       if(! count($r) || ($r[0]['private'] == 1))
+       if(! dbm::is_result($r) || ($r[0]['private'] == 1))
                killme();
 
        if (!intval(get_config('system','old_share'))) {
index 2a89ac768bae20cb3150c48b3d5a841347790611..27f924e44b5452abad9c95ca3ec655019f83b23e 100644 (file)
@@ -18,7 +18,7 @@ function starred_init(&$a) {
                intval(local_user()),
                intval($message_id)
        );
-       if(! count($r))
+       if(! dbm::is_result($r))
                killme();
 
        if(! intval($r[0]['starred']))
index 33cf7489c167764b716f3cee77ca7dae78011667..b15b954742af5a7dc6c749e02988434b218ae53c 100644 (file)
@@ -20,7 +20,7 @@ function subthread_content(&$a) {
                dbesc($item_id)
        );
 
-       if(! $item_id || (! count($r))) {
+       if(! $item_id || (! dbm::is_result($r))) {
                logger('subthread: no item ' . $item_id);
                return;
        }
@@ -41,7 +41,7 @@ function subthread_content(&$a) {
                        intval($item['contact-id']),
                        intval($item['uid'])
                );
-               if(! count($r))
+               if(! dbm::is_result($r))
                        return;
                if(! $r[0]['self'])
                        $remote_owner = $r[0];
@@ -53,7 +53,7 @@ function subthread_content(&$a) {
                WHERE `contact`.`self` = 1 AND `contact`.`uid` = %d LIMIT 1",
                intval($owner_uid)
        );
-       if(count($r))
+       if (dbm::is_result($r))
                $owner = $r[0];
 
        if(! $owner) {
@@ -75,7 +75,7 @@ function subthread_content(&$a) {
                        intval($_SESSION['visitor_id']),
                        intval($owner_uid)
                );
-               if(count($r))
+               if (dbm::is_result($r))
                        $contact = $r[0];
        }
        if(! $contact) {
@@ -85,7 +85,7 @@ function subthread_content(&$a) {
        $uri = item_new_uri($a->get_hostname(),$owner_uid);
 
        $post_type = (($item['resource-id']) ? t('photo') : t('status'));
-       $objtype = (($item['resource-id']) ? ACTIVITY_OBJ_PHOTO : ACTIVITY_OBJ_NOTE );
+       $objtype = (($item['resource-id']) ? ACTIVITY_OBJ_IMAGE : ACTIVITY_OBJ_NOTE );
        $link = xmlify('<link rel="alternate" type="text/html" href="' . $a->get_baseurl() . '/display/' . $owner['nickname'] . '/' . $item['id'] . '" />' . "\n") ;
        $body = $item['body'];
 
index 4399450eccf2a1330882886d10e9923bc820e383..8f4315a84146ad4446b2fa0c3d28eab191086aa0 100644 (file)
@@ -67,7 +67,7 @@ function suggest_content(&$a) {
 
        $r = suggestion_query(local_user());
 
-       if(! count($r)) {
+       if(! dbm::is_result($r)) {
                $o .= t('No suggestions available. If this is a new site, please try again in 24 hours.');
                return $o;
        }
index e0ef1ceb02091496c4cf6d963daf02d903d4d88d..d6f421205cbfff1cb9e30eefae1bd16ebbb7ce30 100644 (file)
@@ -27,7 +27,7 @@ function tagger_content(&$a) {
                dbesc($item_id)
        );
 
-       if(! $item_id || (! count($r))) {
+       if(! $item_id || (! dbm::is_result($r))) {
                logger('tagger: no item ' . $item_id);
                return;
        }
@@ -39,7 +39,7 @@ function tagger_content(&$a) {
        $r = q("select `nickname`,`blocktags` from user where uid = %d limit 1",
                intval($owner_uid)
        );
-       if(count($r)) {
+       if (dbm::is_result($r)) {
                $owner_nick = $r[0]['nickname'];
                $blocktags = $r[0]['blocktags'];
        }
@@ -50,7 +50,7 @@ function tagger_content(&$a) {
        $r = q("select * from contact where self = 1 and uid = %d limit 1",
                intval(local_user())
        );
-       if(count($r))
+       if (dbm::is_result($r))
                        $contact = $r[0];
        else {
                logger('tagger: no contact_id');
@@ -60,7 +60,7 @@ function tagger_content(&$a) {
        $uri = item_new_uri($a->get_hostname(),$owner_uid);
        $xterm = xmlify($term);
        $post_type = (($item['resource-id']) ? t('photo') : t('status'));
-       $targettype = (($item['resource-id']) ? ACTIVITY_OBJ_PHOTO : ACTIVITY_OBJ_NOTE );
+       $targettype = (($item['resource-id']) ? ACTIVITY_OBJ_IMAGE : ACTIVITY_OBJ_NOTE );
 
        $link = xmlify('<link rel="alternate" type="text/html" href="'
                . $a->get_baseurl() . '/display/' . $owner['nickname'] . '/' . $item['id'] . '" />' . "\n") ;
@@ -178,7 +178,7 @@ EOT;
        $r = q("select `tag`,`id`,`uid` from item where `origin` = 1 AND `uri` = '%s' LIMIT 1",
                dbesc($item['uri'])
        );
-       if(count($r)) {
+       if (dbm::is_result($r)) {
                $x = q("SELECT `blocktags` FROM `user` WHERE `uid` = %d limit 1",
                        intval($r[0]['uid'])
                );
index 176986bc38e23cc195918b60b3f0e995e4b28fab..57024b3c3b6f2127a20074849f1c8593cbddf251 100644 (file)
@@ -19,7 +19,7 @@ function tagrm_post(&$a) {
                intval(local_user())
        );
 
-       if(! count($r))
+       if(! dbm::is_result($r))
                goaway($a->get_baseurl() . '/' . $_SESSION['photo_return']);
 
        $arr = explode(',', $r[0]['tag']);
@@ -68,7 +68,7 @@ function tagrm_content(&$a) {
                intval(local_user())
        );
 
-       if(! count($r))
+       if(! dbm::is_result($r))
                goaway($a->get_baseurl() . '/' . $_SESSION['photo_return']);
 
        $arr = explode(',', $r[0]['tag']);
index 3114add7e4a56ae325ce024b379fd232a053f9fe..e0a0b071f6e3636663c6f1d2e89634191e8392fe 100644 (file)
@@ -44,7 +44,7 @@ function uexport_content(&$a){
 function _uexport_multirow($query) {
        $result = array();
        $r = q($query);
-//     if(count($r)) {
+//     if (dbm::is_result($r)) {
        if ($r){
                foreach($r as $rr){
             $p = array();
@@ -130,7 +130,7 @@ function uexport_all(&$a) {
        $r = q("SELECT count(*) as `total` FROM `item` WHERE `uid` = %d ",
                intval(local_user())
        );
-       if(count($r))
+       if (dbm::is_result($r))
                $total = $r[0]['total'];
 
        // chunk the output to avoid exhausting memory
@@ -142,7 +142,7 @@ function uexport_all(&$a) {
                        intval($x),
                        intval(500)
                );
-               /*if(count($r)) {
+               /*if (dbm::is_result($r)) {
                        foreach($r as $rr)
                                foreach($rr as $k => $v)
                                        $item[][$k] = $v;
index 1bb59bc5429e9b614e0cb3596d62eb23fc072f64..1e03c5005a6670d6b4ead8a82f060df201606c90 100644 (file)
@@ -140,7 +140,7 @@ function videos_post(&$a) {
                        dbesc($video_id)
                );
 
-               if(count($r)) {
+               if (dbm::is_result($r)) {
                        q("DELETE FROM `attach` WHERE `uid` = %d AND `id` = '%s'",
                                intval(local_user()),
                                dbesc($video_id)
@@ -259,7 +259,7 @@ function videos_content(&$a) {
                                        intval($contact_id),
                                        intval($owner_uid)
                                );
-                               if(count($r)) {
+                               if (dbm::is_result($r)) {
                                        $can_post = true;
                                        $contact = $r[0];
                                        $remote_contact = true;
@@ -287,7 +287,7 @@ function videos_content(&$a) {
                                intval($contact_id),
                                intval($owner_uid)
                        );
-                       if(count($r)) {
+                       if (dbm::is_result($r)) {
                                $contact = $r[0];
                                $remote_contact = true;
                        }
@@ -347,7 +347,7 @@ function videos_content(&$a) {
                $sql_extra GROUP BY hash",
                intval($a->data['user']['uid'])
        );
-       if(count($r)) {
+       if (dbm::is_result($r)) {
                $a->set_pager_total(count($r));
                $a->set_pager_itemspage(20);
        }
@@ -363,7 +363,7 @@ function videos_content(&$a) {
 
 
        $videos = array();
-       if(count($r)) {
+       if (dbm::is_result($r)) {
                foreach($r as $rr) {
                        if($a->theme['template_engine'] === 'internal') {
                                $alt_e = template_escape($rr['filename']);
index 6be1f16de0298fcd589dc49353b436db9aa99858..c9f465676cfe6da34991f3290cae8a998b0a10be 100644 (file)
@@ -16,7 +16,7 @@ function viewcontacts_init(&$a) {
                        dbesc($nick)
                );
 
-               if(! count($r))
+               if(! dbm::is_result($r))
                        return;
 
                $a->data['user'] = $r[0];
@@ -54,7 +54,7 @@ function viewcontacts_content(&$a) {
                dbesc(NETWORK_DIASPORA),
                dbesc(NETWORK_OSTATUS)
        );
-       if(count($r))
+       if (dbm::is_result($r))
                $a->set_pager_total($r[0]['total']);
 
        $r = q("SELECT * FROM `contact`
@@ -68,7 +68,7 @@ function viewcontacts_content(&$a) {
                intval($a->pager['start']),
                intval($a->pager['itemspage'])
        );
-       if(!count($r)) {
+       if (!dbm::is_result($r)) {
                info(t('No contacts.').EOL);
                return $o;
        }
index 3fa4eaed53bad2b53686a59aef0af30acf1f5645..904b1442505d6f1aea9e58ae6335ea8dacb92485 100644 (file)
@@ -24,7 +24,7 @@ function viewsrc_content(&$a) {
                dbesc($item_id)
        );
 
-       if(count($r))
+       if (dbm::is_result($r))
                if(is_ajax()) {
                        echo str_replace("\n",'<br />',$r[0]['body']);
                        killme();
index 15e3d3f75e2384f8a8030e31d88c58f2280fb3f2..80fc1c6e796e71c11940e7e3f3f10f40e529f7f6 100644 (file)
@@ -12,7 +12,7 @@ function wall_attach_post(&$a) {
                $r = q("SELECT `user`.*, `contact`.`id` FROM `user` LEFT JOIN `contact` on `user`.`uid` = `contact`.`uid`  WHERE `user`.`nickname` = '%s' AND `user`.`blocked` = 0 and `contact`.`self` = 1 LIMIT 1",
                        dbesc($nick)
                );
-               if(! count($r)){
+               if(! dbm::is_result($r)){
                        if ($r_json) {
                                echo json_encode(array('error'=>t('Invalid request.')));
                                killme();
@@ -55,7 +55,7 @@ function wall_attach_post(&$a) {
                                        intval($contact_id),
                                        intval($page_owner_uid)
                                );
-                               if(count($r)) {
+                               if (dbm::is_result($r)) {
                                        $can_post = true;
                                        $visitor = $contact_id;
                                }
@@ -168,7 +168,7 @@ function wall_attach_post(&$a) {
                dbesc($hash)
        );
 
-       if(! count($r)) {
+       if(! dbm::is_result($r)) {
                $msg = t('File upload failed.');
                if ($r_json) {
                        echo json_encode(array('error'=>$msg));
index f5996d76f5de8dddf66279ea9788ce0b1316911f..21d9bf49cb2de85a9218b05b7086bffe4a6d63cb 100644 (file)
@@ -15,7 +15,7 @@ function wall_upload_post(&$a, $desktopmode = true) {
                                dbesc($nick)
                        );
 
-                       if(! count($r)){
+                       if(! dbm::is_result($r)){
                                if ($r_json) {
                                        echo json_encode(array('error'=>t('Invalid request.')));
                                        killme();
@@ -63,7 +63,7 @@ function wall_upload_post(&$a, $desktopmode = true) {
                                        intval($contact_id),
                                        intval($page_owner_uid)
                                );
-                               if(count($r)) {
+                               if (dbm::is_result($r)) {
                                        $can_post = true;
                                        $visitor = $contact_id;
                                }
index 8642624a476e4b75c3c0f7dbb99cf5ba0e5ebbab..03a0b7a16f57e0e3aafbf3683792ea06dbb68cd6 100644 (file)
@@ -22,7 +22,7 @@ function wallmessage_post(&$a) {
                dbesc($recipient)
        );
 
-       if(! count($r)) {
+       if(! dbm::is_result($r)) {
                logger('wallmessage: no recipient');
                return;
        }
@@ -91,7 +91,7 @@ function wallmessage_content(&$a) {
                dbesc($recipient)
        );
 
-       if(! count($r)) {
+       if(! dbm::is_result($r)) {
                notice( t('No recipient.') . EOL);
                logger('wallmessage: no recipient');
                return;
index 094211360e03b107c23e7d841d385c96253b2ec1..1250b0812c0bd754558931686e2d0ca1fae4040e 100644 (file)
@@ -21,7 +21,7 @@ function xrd_init(&$a) {
        $r = q("SELECT * FROM `user` WHERE `nickname` = '%s' LIMIT 1",
                dbesc($name)
        );
-       if(! count($r))
+       if(! dbm::is_result($r))
                killme();
 
        $salmon_key = salmon_key($r[0]['spubkey']);
index 14f0d8fd083a398c6a7af1953d2551c9cd1b782b..2666dc1de572816a01ec53d4522288392e8c5424 100644 (file)
@@ -21,8 +21,7 @@ class BaseObject {
                if(self::$app)
                        return self::$app;
 
-               global $a;
-               self::$app = $a;
+               self::$app = get_app();
 
                return self::$app;
        }
index 36c06c6d62d2c3014f880c8017b1a4f8814c4e9b..eb5b3b9b486985fe67bc0c8958cb3f33912293c8 100644 (file)
@@ -127,7 +127,7 @@ class Conversation extends BaseObject {
         *      _ false on failure
         */
        public function get_template_data($conv_responses) {
-               global $a;
+               $a = get_app();
                $result = array();
 
                $i = 0;
index 9f01ac59b08af0b0c4bd86fbfff7d6da7b9f62f2..45d2dba3edb78c81c68823eecb1d08e312b4b8c0 100644 (file)
@@ -235,7 +235,7 @@ class Item extends BaseObject {
                                        intval($item['uid']),
                                        intval($item['id'])
                                );
-                               if (count($r)) {
+                               if (dbm::is_result($r)) {
                                        $ignore = array(
                                                'do' => t("ignore thread"),
                                                'undo' => t("unignore thread"),
index 40f016747f8a93ea8a971238e958a9904fdd8682..79dcb36a7f4c1800b6e84b89fbe73eb63712795a 100644 (file)
@@ -55,13 +55,13 @@ function q($sql) {
                        return $result; 
                }
                //second call in handle_body, name
-               if($result[0]['name']===$args[1]) {\r
-                       return $result;\r
+               if($result[0]['name']===$args[1]) {
+                       return $result;
                }
        }
        //third call in handle_body, nick or attag
-       if($result[0]['nick']===$args[2] || $result[0]['attag']===$args[1]) {\r
-               return $result;\r
+       if($result[0]['nick']===$args[2] || $result[0]['attag']===$args[1]) {
+               return $result;
        }
 }
 
@@ -88,23 +88,23 @@ function dbesc($str) {
  */
 class GetTagsTest extends PHPUnit_Framework_TestCase {
        /** the mock to use as app */
-       private $a; \r
+       private $a; 
 
        /**
         * initialize the test. That's a phpUnit function, 
         * don't change its name.
-        */\r
-       public function setUp() {\r
+        */
+       public function setUp() {
                $this->a=new MockApp(); 
        }
 
-       /**\r
-        * test with one Person tag\r
-        */\r
-       public function testGetTagsShortPerson() {\r
-               $text="hi @Mike";\r
-\r
-               $tags=get_tags($text);\r
+       /**
+        * test with one Person tag
+        */
+       public function testGetTagsShortPerson() {
+               $text="hi @Mike";
+
+               $tags=get_tags($text);
 
                $inform=''; 
                $str_tags='';
@@ -113,32 +113,32 @@ class GetTagsTest extends PHPUnit_Framework_TestCase {
                }
 
                //correct tags found?
-               $this->assertEquals(1, count($tags)); \r
+               $this->assertEquals(1, count($tags)); 
                $this->assertTrue(in_array("@Mike", $tags));
                
                //correct output from handle_tag?
                $this->assertEquals("cid:15", $inform); 
                $this->assertEquals("@[url=http://justatest.de]Mike Lastname[/url]", $str_tags);
-               $this->assertEquals("hi @[url=http://justatest.de]Mike Lastname[/url]", $text);\r
+               $this->assertEquals("hi @[url=http://justatest.de]Mike Lastname[/url]", $text);
        }
        
-       /**\r
+       /**
         * test with one Person tag. 
-        * There's a minor spelling mistake...\r
-        */\r
-       public function testGetTagsShortPersonSpelling() {\r
-               $text="hi @Mike.because";\r
-       \r
-               $tags=get_tags($text);\r
+        * There's a minor spelling mistake...
+        */
+       public function testGetTagsShortPersonSpelling() {
+               $text="hi @Mike.because";
+       
+               $tags=get_tags($text);
        
-               //correct tags found?\r
-               $this->assertEquals(1, count($tags));\r
+               //correct tags found?
+               $this->assertEquals(1, count($tags));
                $this->assertTrue(in_array("@Mike.because", $tags));
-               \r
-               $inform='';\r
-               $str_tags='';\r
-               handle_tag($this->a, $text, $inform, $str_tags, 11, $tags[0]);\r
-       \r
+               
+               $inform='';
+               $str_tags='';
+               handle_tag($this->a, $text, $inform, $str_tags, 11, $tags[0]);
+       
                // (mike) - This is a tricky case.
                // we support mentions as in @mike@example.com - which contains a period.
                // This shouldn't match anything unless you have a contact named "Mike.because".
@@ -147,91 +147,91 @@ class GetTagsTest extends PHPUnit_Framework_TestCase {
  
 //             $this->assertEquals("cid:15", $inform); 
 //             $this->assertEquals("@[url=http://justatest.de]Mike Lastname[/url]", $str_tags);
-//             $this->assertEquals("hi @[url=http://justatest.de]Mike Lastname[/url].because", $text);\r
+//             $this->assertEquals("hi @[url=http://justatest.de]Mike Lastname[/url].because", $text);
 
                $this->assertEquals("", $inform); 
                $this->assertEquals("", $str_tags);
 
        }
        
-       /**\r
+       /**
         * test with two Person tags. 
-        * There's a minor spelling mistake...\r
-        */\r
+        * There's a minor spelling mistake...
+        */
 
-       public function testGetTagsPerson2Spelling() {\r
-               $text="hi @Mike@campino@friendica.eu";\r
-       \r
-               $tags=get_tags($text);\r
+       public function testGetTagsPerson2Spelling() {
+               $text="hi @Mike@campino@friendica.eu";
+       
+               $tags=get_tags($text);
 
 // This construct is not supported. Results are indeterminate                  
-//             $this->assertEquals(2, count($tags)); \r
+//             $this->assertEquals(2, count($tags)); 
 //             $this->assertTrue(in_array("@Mike", $tags));
-//             $this->assertTrue(in_array("@campino@friendica.eu", $tags));\r
-       }\r
+//             $this->assertTrue(in_array("@campino@friendica.eu", $tags));
+       }
 
        /**
         * Test with one hash tag.
-        */\r
-       public function testGetTagsShortTag() {\r
-               $text="This is a #test_case";\r
-\r
-               $tags=get_tags($text);\r
+        */
+       public function testGetTagsShortTag() {
+               $text="This is a #test_case";
+
+               $tags=get_tags($text);
 
-               $this->assertEquals(1, count($tags));\r
-               $this->assertTrue(in_array("#test_case", $tags));\r
-       }\r
+               $this->assertEquals(1, count($tags));
+               $this->assertTrue(in_array("#test_case", $tags));
+       }
 
        /**
         * test with a person and a hash tag
-        */\r
-       public function testGetTagsShortTagAndPerson() {\r
-               $text="hi @Mike This is a #test_case";\r
-\r
-               $tags=get_tags($text);\r
+        */
+       public function testGetTagsShortTagAndPerson() {
+               $text="hi @Mike This is a #test_case";
+
+               $tags=get_tags($text);
 
                $this->assertEquals(3, count($tags));
                $this->assertTrue(in_array("@Mike", $tags));
-               $this->assertTrue(in_array("@Mike This", $tags));\r
-               $this->assertTrue(in_array("#test_case", $tags));\r
+               $this->assertTrue(in_array("@Mike This", $tags));
+               $this->assertTrue(in_array("#test_case", $tags));
 
                $inform='';
                $str_tags='';
                foreach($tags as $tag) {
                        handle_tag($this->a, $text, $inform, $str_tags, 11, $tag);
                }
-               \r
+               
                $this->assertEquals("cid:15", $inform); 
                $this->assertEquals("@[url=http://justatest.de]Mike Lastname[/url],#[url=baseurl/search?tag=test%20case]test case[/url]", $str_tags);
                $this->assertEquals("hi @[url=http://justatest.de]Mike Lastname[/url] This is a #[url=baseurl/search?tag=test%20case]test case[/url]", $text); 
-               \r
-       }\r
+               
+       }
 
        /**
         * test with a person, a hash tag and some special chars.
-        */\r
-       public function testGetTagsShortTagAndPersonSpecialChars() {\r
-               $text="hi @Mike, This is a #test_case.";\r
-\r
-               $tags=get_tags($text);\r
-\r
+        */
+       public function testGetTagsShortTagAndPersonSpecialChars() {
+               $text="hi @Mike, This is a #test_case.";
+
+               $tags=get_tags($text);
+
                $this->assertEquals(2, count($tags));
                $this->assertTrue(in_array("@Mike", $tags));
-               $this->assertTrue(in_array("#test_case", $tags));\r
-       }\r
+               $this->assertTrue(in_array("#test_case", $tags));
+       }
 
        /**
         * Test with a person tag and text behind it.
-        */\r
-       public function testGetTagsPersonOnly() {\r
-               $text="@Test I saw the Theme Dev group was created.";\r
-\r
-               $tags=get_tags($text);\r
+        */
+       public function testGetTagsPersonOnly() {
+               $text="@Test I saw the Theme Dev group was created.";
+
+               $tags=get_tags($text);
 
-               $this->assertEquals(2, count($tags));\r
+               $this->assertEquals(2, count($tags));
                $this->assertTrue(in_array("@Test I", $tags));
-               $this->assertTrue(in_array("@Test", $tags));\r
-       }\r
+               $this->assertTrue(in_array("@Test", $tags));
+       }
 
        /**
         * this test demonstrates strange behaviour by intval. 
@@ -255,72 +255,72 @@ class GetTagsTest extends PHPUnit_Framework_TestCase {
                //happens right now, but it shouldn't be necessary
                $this->assertTrue(in_array("@mike+15 id", $tags));
                
-               $inform='';\r
+               $inform='';
                $str_tags='';
                foreach($tags as $tag) {
                        handle_tag($this->a, $text, $inform, $str_tags, 11, $tag);
                }
                
-               $this->assertEquals("Test with @[url=http://justatest.de]Mike Lastname[/url] id tag", $text);\r
-               $this->assertEquals("@[url=http://justatest.de]Mike Lastname[/url]", $str_tags);\r
+               $this->assertEquals("Test with @[url=http://justatest.de]Mike Lastname[/url] id tag", $text);
+               $this->assertEquals("@[url=http://justatest.de]Mike Lastname[/url]", $str_tags);
                // this test may produce two cid:15 entries - which is OK because duplicates are pruned before delivery
                $this->assertContains("cid:15",$inform);
        }
        
        /**
         * test with two persons and one special tag.
-        */\r
-       public function testGetTags2Persons1TagSpecialChars() {\r
-               $text="hi @Mike, I'm just writing #test_cases, so"\r
-               ." so @somebody@friendica.com may change #things.";\r
-\r
-               $tags=get_tags($text);\r
-
-               $this->assertEquals(5, count($tags));\r
-               $this->assertTrue(in_array("@Mike", $tags));\r
+        */
+       public function testGetTags2Persons1TagSpecialChars() {
+               $text="hi @Mike, I'm just writing #test_cases, so"
+               ." so @somebody@friendica.com may change #things.";
+
+               $tags=get_tags($text);
+
+               $this->assertEquals(5, count($tags));
+               $this->assertTrue(in_array("@Mike", $tags));
                $this->assertTrue(in_array("#test_cases", $tags));
-               $this->assertTrue(in_array("@somebody@friendica.com", $tags));\r
-               $this->assertTrue(in_array("@somebody@friendica.com may", $tags));\r
-               $this->assertTrue(in_array("#things", $tags));\r
-       }\r
+               $this->assertTrue(in_array("@somebody@friendica.com", $tags));
+               $this->assertTrue(in_array("@somebody@friendica.com may", $tags));
+               $this->assertTrue(in_array("#things", $tags));
+       }
 
        /**
         * test with a long text.
-        */\r
-       public function testGetTags() {\r
-               $text="hi @Mike, I'm just writing #test_cases, "\r
-               ." so @somebody@friendica.com may change #things. Of course I "\r
-               ."look for a lot of #pitfalls, like #tags at the end of a sentence "\r
-               ."@comment. I hope noone forgets about @fullstops.because that might"\r
-               ." break #things. @Mike@campino@friendica.eu is also #nice, isn't it? "\r
-               ."Now, add a @first_last tag. ";\r
-               \r
-               $tags=get_tags($text);\r
-\r
-               $this->assertTrue(in_array("@Mike", $tags));\r
-               $this->assertTrue(in_array("#test_cases", $tags));\r
-               $this->assertTrue(in_array("@somebody@friendica.com", $tags));\r
-               $this->assertTrue(in_array("#things", $tags));\r
-               $this->assertTrue(in_array("#pitfalls", $tags));\r
-               $this->assertTrue(in_array("#tags", $tags));\r
-               $this->assertTrue(in_array("@comment", $tags));\r
-               $this->assertTrue(in_array("@fullstops.because", $tags));\r
-               $this->assertTrue(in_array("#things", $tags));\r
-               $this->assertTrue(in_array("@Mike", $tags));\r
-               $this->assertTrue(in_array("#nice", $tags));\r
+        */
+       public function testGetTags() {
+               $text="hi @Mike, I'm just writing #test_cases, "
+               ." so @somebody@friendica.com may change #things. Of course I "
+               ."look for a lot of #pitfalls, like #tags at the end of a sentence "
+               ."@comment. I hope noone forgets about @fullstops.because that might"
+               ." break #things. @Mike@campino@friendica.eu is also #nice, isn't it? "
+               ."Now, add a @first_last tag. ";
+               
+               $tags=get_tags($text);
+
+               $this->assertTrue(in_array("@Mike", $tags));
+               $this->assertTrue(in_array("#test_cases", $tags));
+               $this->assertTrue(in_array("@somebody@friendica.com", $tags));
+               $this->assertTrue(in_array("#things", $tags));
+               $this->assertTrue(in_array("#pitfalls", $tags));
+               $this->assertTrue(in_array("#tags", $tags));
+               $this->assertTrue(in_array("@comment", $tags));
+               $this->assertTrue(in_array("@fullstops.because", $tags));
+               $this->assertTrue(in_array("#things", $tags));
+               $this->assertTrue(in_array("@Mike", $tags));
+               $this->assertTrue(in_array("#nice", $tags));
                $this->assertTrue(in_array("@first_last", $tags));
                
                //right now, none of the is matched (unsupported)
-//             $this->assertFalse(in_array("@Mike@campino@friendica.eu", $tags));\r
+//             $this->assertFalse(in_array("@Mike@campino@friendica.eu", $tags));
 //             $this->assertTrue(in_array("@campino@friendica.eu", $tags));
-//             $this->assertTrue(in_array("@campino@friendica.eu is", $tags));\r
-       }\r
+//             $this->assertTrue(in_array("@campino@friendica.eu is", $tags));
+       }
 
        /**
         * test with an empty string
-        */\r
-       public function testGetTagsEmpty() {\r
-               $tags=get_tags("");\r
-               $this->assertEquals(0, count($tags));\r
+        */
+       public function testGetTagsEmpty() {
+               $tags=get_tags("");
+               $this->assertEquals(0, count($tags));
        }
-}
\ No newline at end of file
+}
index 76007ad3aa0d3ac9860ea68a81c6c49303db2832..0679b5a1f8295ce028e3b8b1f7d35117f0dd026a 100644 (file)
@@ -85,7 +85,7 @@ function update_1006() {
        // create 's' keys for everybody that does not have one
 
        $r = q("SELECT * FROM `user` WHERE `spubkey` = '' ");
-       if(count($r)) {
+       if (dbm::is_result($r)) {
                foreach($r as $rr) {
                        $sres=openssl_pkey_new(array('encrypt_key' => false ));
                        $sprvkey = '';
@@ -122,7 +122,7 @@ function update_1010() {
 function update_1011() {
        q("ALTER TABLE `contact` ADD `nick` CHAR( 255 ) NOT NULL AFTER `name` ");
        $r = q("SELECT * FROM `contact` WHERE 1");
-       if(count($r)) {
+       if (dbm::is_result($r)) {
                foreach($r as $rr) {
                                q("UPDATE `contact` SET `nick` = '%s' WHERE `id` = %d",
                                        dbesc(basename($rr['url'])),
@@ -145,7 +145,7 @@ function update_1014() {
        require_once('include/Photo.php');
        q("ALTER TABLE `contact` ADD `micro` TEXT NOT NULL AFTER `thumb` ");
        $r = q("SELECT * FROM `photo` WHERE `scale` = 4");
-       if(count($r)) {
+       if (dbm::is_result($r)) {
                foreach($r as $rr) {
                        $ph = new Photo($rr['data']);
                        if($ph->is_valid()) {
@@ -155,7 +155,7 @@ function update_1014() {
                }
        }
        $r = q("SELECT * FROM `contact` WHERE 1");
-       if(count($r)) {
+       if (dbm::is_result($r)) {
                foreach($r as $rr) {
                        if(stristr($rr['thumb'],'avatar'))
                                q("UPDATE `contact` SET `micro` = '%s' WHERE `id` = %d",
@@ -308,7 +308,7 @@ function update_1030() {
 function update_1031() {
        // Repair any bad links that slipped into the item table
        $r = q("SELECT `id`, `object` FROM `item` WHERE `object` != '' ");
-       if($r && count($r)) {
+       if($r && dbm::is_result($r)) {
                foreach($r as $rr) {
                        if(strstr($rr['object'],'type=&quot;http')) {
                                q("UPDATE `item` SET `object` = '%s' WHERE `id` = %d",
@@ -356,7 +356,7 @@ function update_1035() {
 function update_1036() {
 
        $r = dbq("SELECT * FROM `contact` WHERE `network` = 'dfrn' && `photo` LIKE '%include/photo%' ");
-       if(count($r)) {
+       if (dbm::is_result($r)) {
                foreach($r as $rr) {
                        q("UPDATE `contact` SET `photo` = '%s', `thumb` = '%s', `micro` = '%s' WHERE `id` = %d",
                                dbesc(str_replace('include/photo','photo',$rr['photo'])),
@@ -594,7 +594,7 @@ function update_1073() {
 function update_1074() {
        q("ALTER TABLE `user` ADD `hidewall` TINYINT( 1) NOT NULL DEFAULT '0' AFTER `blockwall` ");
        $r = q("SELECT `uid` FROM `profile` WHERE `is-default` = 1 AND `hidewall` = 1");
-       if(count($r)) {
+       if (dbm::is_result($r)) {
                foreach($r as $rr)
                        q("UPDATE `user` SET `hidewall` = 1 WHERE `uid` = %d",
                                intval($rr['uid'])
@@ -606,7 +606,7 @@ function update_1074() {
 function update_1075() {
        q("ALTER TABLE `user` ADD `guid` CHAR( 16 ) NOT NULL AFTER `uid` ");
        $r = q("SELECT `uid` FROM `user` WHERE 1");
-       if(count($r)) {
+       if (dbm::is_result($r)) {
                foreach($r as $rr) {
                        $found = true;
                        do {
@@ -685,10 +685,10 @@ function update_1082() {
                ADD INDEX ( `guid` )  ");
        // make certain the following code is only executed once
        $r = q("select `id` from `photo` where `guid` != '' limit 1");
-       if($r && count($r))
+       if (dbm::is_result($r))
                return;
        $r = q("SELECT distinct(`resource-id`) FROM `photo` WHERE 1 group by `id`");
-       if(count($r)) {
+       if (dbm::is_result($r)) {
                foreach($r as $rr) {
                        $guid = get_guid();
                        q("update `photo` set `guid` = '%s' where `resource-id` = '%s'",
@@ -731,7 +731,7 @@ function update_1087() {
        q("ALTER TABLE `item` ADD `commented` datetime NOT NULL DEFAULT '0000-00-00 00:00:00' AFTER `edited` ");
 
        $r = q("SELECT `id` FROM `item` WHERE `parent` = `id` ");
-       if(count($r)) {
+       if (dbm::is_result($r)) {
                foreach($r as $rr) {
                        $x = q("SELECT max(`created`) AS `cdate` FROM `item` WHERE `parent` = %d LIMIT 1",
                                intval($rr['id'])
@@ -854,7 +854,7 @@ function update_1100() {
        require_once('include/text.php');
 
        $r = q("select id, url from contact where url != '' and nurl = '' ");
-       if(count($r)) {
+       if (dbm::is_result($r)) {
                foreach($r as $rr) {
                        q("update contact set nurl = '%s' where id = %d",
                                dbesc(normalise_link($rr['url'])),
@@ -1030,7 +1030,7 @@ function update_1120() {
        // might be missing on new installs. We'll check.
 
        $r = q("describe item");
-       if($r && count($r)) {
+       if (dbm::is_result($r)) {
                foreach($r as $rr)
                        if($rr['Field'] == 'spam')
                                return;
@@ -1168,7 +1168,7 @@ function update_1136() {
        // order in reverse so that we save the newest entry
 
        $r = q("select * from config where 1 order by id desc");
-       if(count($r)) {
+       if (dbm::is_result($r)) {
                foreach($r as $rr) {
                        $found = false;
                        foreach($arr as $x) {
@@ -1187,7 +1187,7 @@ function update_1136() {
 
        $arr = array();
        $r = q("select * from pconfig where 1 order by id desc");
-       if(count($r)) {
+       if (dbm::is_result($r)) {
                foreach($r as $rr) {
                        $found = false;
                        foreach($arr as $x) {
@@ -1692,7 +1692,7 @@ function update_1190() {
        );
 
        // convert old forumlist addon entries in new config entries
-       if (count($r)) {
+       if (dbm::is_result($r)) {
                foreach ($r as $rr) {
                        $uid = $rr['uid'];
                        $family = $rr['cat'];
index 7759370e1f6d83655b08e2713e7365f74acbc00f..696fa565f1648a0e5d0c18f6e9dec5f4e6dee689 100644 (file)
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2016-12-06 08:42+0100\n"
+"POT-Creation-Date: 2016-12-19 07:46+0100\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"
@@ -18,185 +18,6 @@ msgstr ""
 "Content-Transfer-Encoding: 8bit\n"
 
 
-#: boot.php:970
-msgid "Delete this item?"
-msgstr ""
-
-#: boot.php:971 mod/content.php:727 mod/content.php:945 mod/photos.php:1589
-#: mod/photos.php:1637 mod/photos.php:1723 object/Item.php:403
-#: object/Item.php:719
-msgid "Comment"
-msgstr ""
-
-#: boot.php:972 include/contact_widgets.php:242 include/ForumManager.php:119
-#: include/items.php:2241 mod/content.php:624 object/Item.php:432
-#: view/theme/vier/theme.php:260
-msgid "show more"
-msgstr ""
-
-#: boot.php:973
-msgid "show fewer"
-msgstr ""
-
-#: boot.php:1655
-#, php-format
-msgid "Update %s failed. See error logs."
-msgstr ""
-
-#: boot.php:1767
-msgid "Create a New Account"
-msgstr ""
-
-#: boot.php:1768 include/nav.php:109 mod/register.php:289
-msgid "Register"
-msgstr ""
-
-#: boot.php:1792 include/nav.php:78 view/theme/frio/theme.php:246
-msgid "Logout"
-msgstr ""
-
-#: boot.php:1793 include/nav.php:95 mod/bookmarklet.php:12
-msgid "Login"
-msgstr ""
-
-#: boot.php:1795 mod/lostpass.php:161
-msgid "Nickname or Email: "
-msgstr ""
-
-#: boot.php:1796
-msgid "Password: "
-msgstr ""
-
-#: boot.php:1797
-msgid "Remember me"
-msgstr ""
-
-#: boot.php:1800
-msgid "Or login using OpenID: "
-msgstr ""
-
-#: boot.php:1806
-msgid "Forgot your password?"
-msgstr ""
-
-#: boot.php:1807 mod/lostpass.php:109
-msgid "Password Reset"
-msgstr ""
-
-#: boot.php:1809
-msgid "Website Terms of Service"
-msgstr ""
-
-#: boot.php:1810
-msgid "terms of service"
-msgstr ""
-
-#: boot.php:1812
-msgid "Website Privacy Policy"
-msgstr ""
-
-#: boot.php:1813
-msgid "privacy policy"
-msgstr ""
-
-#: include/datetime.php:57 include/datetime.php:59 mod/profiles.php:705
-msgid "Miscellaneous"
-msgstr ""
-
-#: include/datetime.php:183 include/identity.php:629
-msgid "Birthday:"
-msgstr ""
-
-#: include/datetime.php:185 mod/profiles.php:728
-msgid "Age: "
-msgstr ""
-
-#: include/datetime.php:187
-msgid "YYYY-MM-DD or MM-DD"
-msgstr ""
-
-#: include/datetime.php:341
-msgid "never"
-msgstr ""
-
-#: include/datetime.php:347
-msgid "less than a second ago"
-msgstr ""
-
-#: include/datetime.php:350
-msgid "year"
-msgstr ""
-
-#: include/datetime.php:350
-msgid "years"
-msgstr ""
-
-#: include/datetime.php:351 include/event.php:480 mod/events.php:389
-#: mod/cal.php:284
-msgid "month"
-msgstr ""
-
-#: include/datetime.php:351
-msgid "months"
-msgstr ""
-
-#: include/datetime.php:352 include/event.php:481 mod/events.php:390
-#: mod/cal.php:285
-msgid "week"
-msgstr ""
-
-#: include/datetime.php:352
-msgid "weeks"
-msgstr ""
-
-#: include/datetime.php:353 include/event.php:482 mod/events.php:391
-#: mod/cal.php:286
-msgid "day"
-msgstr ""
-
-#: include/datetime.php:353
-msgid "days"
-msgstr ""
-
-#: include/datetime.php:354
-msgid "hour"
-msgstr ""
-
-#: include/datetime.php:354
-msgid "hours"
-msgstr ""
-
-#: include/datetime.php:355
-msgid "minute"
-msgstr ""
-
-#: include/datetime.php:355
-msgid "minutes"
-msgstr ""
-
-#: include/datetime.php:356
-msgid "second"
-msgstr ""
-
-#: include/datetime.php:356
-msgid "seconds"
-msgstr ""
-
-#: include/datetime.php:365
-#, php-format
-msgid "%1$d %2$s ago"
-msgstr ""
-
-#: include/datetime.php:572
-#, php-format
-msgid "%s's birthday"
-msgstr ""
-
-#: include/datetime.php:573 include/dfrn.php:1109
-#, php-format
-msgid "Happy Birthday %s"
-msgstr ""
-
 #: include/contact_widgets.php:6
 msgid "Add New Contact"
 msgstr ""
@@ -209,8 +30,9 @@ msgstr ""
 msgid "Example: bob@example.com, http://example.com/barbara"
 msgstr ""
 
-#: include/contact_widgets.php:10 include/identity.php:218 mod/dirfind.php:201
-#: mod/match.php:87 mod/allfriends.php:82 mod/suggest.php:101
+#: include/contact_widgets.php:10 include/identity.php:218
+#: mod/allfriends.php:82 mod/dirfind.php:201 mod/match.php:87
+#: mod/suggest.php:101
 msgid "Connect"
 msgstr ""
 
@@ -229,10 +51,9 @@ msgstr ""
 msgid "Enter name or interest"
 msgstr ""
 
-#: include/contact_widgets.php:32 include/conversation.php:981
-#: include/Contact.php:361 mod/dirfind.php:204 mod/match.php:72
-#: mod/allfriends.php:66 mod/contacts.php:602 mod/follow.php:103
-#: mod/suggest.php:83
+#: include/contact_widgets.php:32 include/Contact.php:354
+#: include/conversation.php:981 mod/allfriends.php:66 mod/dirfind.php:204
+#: mod/match.php:72 mod/suggest.php:83 mod/contacts.php:602 mod/follow.php:103
 msgid "Connect/Follow"
 msgstr ""
 
@@ -288,2417 +109,2098 @@ msgid_plural "%d contacts in common"
 msgstr[0] ""
 msgstr[1] ""
 
-#: include/NotificationsManager.php:153
-msgid "System"
+#: include/contact_widgets.php:242 include/ForumManager.php:119
+#: include/items.php:2245 mod/content.php:624 object/Item.php:432
+#: view/theme/vier/theme.php:260 boot.php:972
+msgid "show more"
 msgstr ""
 
-#: include/NotificationsManager.php:160 include/nav.php:158 mod/admin.php:411
-#: view/theme/frio/theme.php:256
-msgid "Network"
+#: include/ForumManager.php:114 include/nav.php:131 include/text.php:1025
+#: view/theme/vier/theme.php:255
+msgid "Forums"
 msgstr ""
 
-#: include/NotificationsManager.php:167 mod/profiles.php:703
-#: mod/network.php:846
-msgid "Personal"
+#: include/ForumManager.php:116 view/theme/vier/theme.php:257
+msgid "External link to forum"
 msgstr ""
 
-#: include/NotificationsManager.php:174 include/nav.php:105
-#: include/nav.php:161
-msgid "Home"
+#: include/profile_selectors.php:6
+msgid "Male"
 msgstr ""
 
-#: include/NotificationsManager.php:181 include/nav.php:166
-msgid "Introductions"
+#: include/profile_selectors.php:6
+msgid "Female"
 msgstr ""
 
-#: include/NotificationsManager.php:234 include/NotificationsManager.php:244
-#, php-format
-msgid "%s commented on %s's post"
+#: include/profile_selectors.php:6
+msgid "Currently Male"
 msgstr ""
 
-#: include/NotificationsManager.php:243
-#, php-format
-msgid "%s created a new post"
+#: include/profile_selectors.php:6
+msgid "Currently Female"
 msgstr ""
 
-#: include/NotificationsManager.php:256
-#, php-format
-msgid "%s liked %s's post"
+#: include/profile_selectors.php:6
+msgid "Mostly Male"
 msgstr ""
 
-#: include/NotificationsManager.php:267
-#, php-format
-msgid "%s disliked %s's post"
+#: include/profile_selectors.php:6
+msgid "Mostly Female"
 msgstr ""
 
-#: include/NotificationsManager.php:278
-#, php-format
-msgid "%s is attending %s's event"
+#: include/profile_selectors.php:6
+msgid "Transgender"
 msgstr ""
 
-#: include/NotificationsManager.php:289
-#, php-format
-msgid "%s is not attending %s's event"
+#: include/profile_selectors.php:6
+msgid "Intersex"
 msgstr ""
 
-#: include/NotificationsManager.php:300
-#, php-format
-msgid "%s may attend %s's event"
+#: include/profile_selectors.php:6
+msgid "Transsexual"
 msgstr ""
 
-#: include/NotificationsManager.php:315
-#, php-format
-msgid "%s is now friends with %s"
+#: include/profile_selectors.php:6
+msgid "Hermaphrodite"
 msgstr ""
 
-#: include/NotificationsManager.php:748
-msgid "Friend Suggestion"
+#: include/profile_selectors.php:6
+msgid "Neuter"
 msgstr ""
 
-#: include/NotificationsManager.php:781
-msgid "Friend/Connect Request"
+#: include/profile_selectors.php:6
+msgid "Non-specific"
 msgstr ""
 
-#: include/NotificationsManager.php:781
-msgid "New Follower"
+#: include/profile_selectors.php:6
+msgid "Other"
 msgstr ""
 
-#: include/enotify.php:24
-msgid "Friendica Notification"
+#: include/profile_selectors.php:6 include/conversation.php:1487
+msgid "Undecided"
+msgid_plural "Undecided"
+msgstr[0] ""
+msgstr[1] ""
+
+#: include/profile_selectors.php:23
+msgid "Males"
 msgstr ""
 
-#: include/enotify.php:27
-msgid "Thank You,"
+#: include/profile_selectors.php:23
+msgid "Females"
 msgstr ""
 
-#: include/enotify.php:30
-#, php-format
-msgid "%s Administrator"
+#: include/profile_selectors.php:23
+msgid "Gay"
 msgstr ""
 
-#: include/enotify.php:32
-#, php-format
-msgid "%1$s, %2$s Administrator"
+#: include/profile_selectors.php:23
+msgid "Lesbian"
 msgstr ""
 
-#: include/enotify.php:43 include/delivery.php:457
-msgid "noreply"
-msgstr ""
-
-#: include/enotify.php:70
-#, php-format
-msgid "%s <!item_type!>"
-msgstr ""
-
-#: include/enotify.php:83
-#, php-format
-msgid "[Friendica:Notify] New mail received at %s"
+#: include/profile_selectors.php:23
+msgid "No Preference"
 msgstr ""
 
-#: include/enotify.php:85
-#, php-format
-msgid "%1$s sent you a new private message at %2$s."
+#: include/profile_selectors.php:23
+msgid "Bisexual"
 msgstr ""
 
-#: include/enotify.php:86
-#, php-format
-msgid "%1$s sent you %2$s."
+#: include/profile_selectors.php:23
+msgid "Autosexual"
 msgstr ""
 
-#: include/enotify.php:86
-msgid "a private message"
+#: include/profile_selectors.php:23
+msgid "Abstinent"
 msgstr ""
 
-#: include/enotify.php:88
-#, php-format
-msgid "Please visit %s to view and/or reply to your private messages."
+#: include/profile_selectors.php:23
+msgid "Virgin"
 msgstr ""
 
-#: include/enotify.php:134
-#, php-format
-msgid "%1$s commented on [url=%2$s]a %3$s[/url]"
+#: include/profile_selectors.php:23
+msgid "Deviant"
 msgstr ""
 
-#: include/enotify.php:141
-#, php-format
-msgid "%1$s commented on [url=%2$s]%3$s's %4$s[/url]"
+#: include/profile_selectors.php:23
+msgid "Fetish"
 msgstr ""
 
-#: include/enotify.php:149
-#, php-format
-msgid "%1$s commented on [url=%2$s]your %3$s[/url]"
+#: include/profile_selectors.php:23
+msgid "Oodles"
 msgstr ""
 
-#: include/enotify.php:159
-#, php-format
-msgid "[Friendica:Notify] Comment to conversation #%1$d by %2$s"
+#: include/profile_selectors.php:23
+msgid "Nonsexual"
 msgstr ""
 
-#: include/enotify.php:161
-#, php-format
-msgid "%s commented on an item/conversation you have been following."
+#: include/profile_selectors.php:42
+msgid "Single"
 msgstr ""
 
-#: include/enotify.php:164 include/enotify.php:178 include/enotify.php:192
-#: include/enotify.php:206 include/enotify.php:224 include/enotify.php:238
-#, php-format
-msgid "Please visit %s to view and/or reply to the conversation."
+#: include/profile_selectors.php:42
+msgid "Lonely"
 msgstr ""
 
-#: include/enotify.php:171
-#, php-format
-msgid "[Friendica:Notify] %s posted to your profile wall"
+#: include/profile_selectors.php:42
+msgid "Available"
 msgstr ""
 
-#: include/enotify.php:173
-#, php-format
-msgid "%1$s posted to your profile wall at %2$s"
+#: include/profile_selectors.php:42
+msgid "Unavailable"
 msgstr ""
 
-#: include/enotify.php:174
-#, php-format
-msgid "%1$s posted to [url=%2$s]your wall[/url]"
+#: include/profile_selectors.php:42
+msgid "Has crush"
 msgstr ""
 
-#: include/enotify.php:185
-#, php-format
-msgid "[Friendica:Notify] %s tagged you"
+#: include/profile_selectors.php:42
+msgid "Infatuated"
 msgstr ""
 
-#: include/enotify.php:187
-#, php-format
-msgid "%1$s tagged you at %2$s"
+#: include/profile_selectors.php:42
+msgid "Dating"
 msgstr ""
 
-#: include/enotify.php:188
-#, php-format
-msgid "%1$s [url=%2$s]tagged you[/url]."
+#: include/profile_selectors.php:42
+msgid "Unfaithful"
 msgstr ""
 
-#: include/enotify.php:199
-#, php-format
-msgid "[Friendica:Notify] %s shared a new post"
+#: include/profile_selectors.php:42
+msgid "Sex Addict"
 msgstr ""
 
-#: include/enotify.php:201
-#, php-format
-msgid "%1$s shared a new post at %2$s"
+#: include/profile_selectors.php:42 include/user.php:280 include/user.php:284
+msgid "Friends"
 msgstr ""
 
-#: include/enotify.php:202
-#, php-format
-msgid "%1$s [url=%2$s]shared a post[/url]."
+#: include/profile_selectors.php:42
+msgid "Friends/Benefits"
 msgstr ""
 
-#: include/enotify.php:213
-#, php-format
-msgid "[Friendica:Notify] %1$s poked you"
+#: include/profile_selectors.php:42
+msgid "Casual"
 msgstr ""
 
-#: include/enotify.php:215
-#, php-format
-msgid "%1$s poked you at %2$s"
+#: include/profile_selectors.php:42
+msgid "Engaged"
 msgstr ""
 
-#: include/enotify.php:216
-#, php-format
-msgid "%1$s [url=%2$s]poked you[/url]."
+#: include/profile_selectors.php:42
+msgid "Married"
 msgstr ""
 
-#: include/enotify.php:231
-#, php-format
-msgid "[Friendica:Notify] %s tagged your post"
+#: include/profile_selectors.php:42
+msgid "Imaginarily married"
 msgstr ""
 
-#: include/enotify.php:233
-#, php-format
-msgid "%1$s tagged your post at %2$s"
+#: include/profile_selectors.php:42
+msgid "Partners"
 msgstr ""
 
-#: include/enotify.php:234
-#, php-format
-msgid "%1$s tagged [url=%2$s]your post[/url]"
+#: include/profile_selectors.php:42
+msgid "Cohabiting"
 msgstr ""
 
-#: include/enotify.php:245
-msgid "[Friendica:Notify] Introduction received"
+#: include/profile_selectors.php:42
+msgid "Common law"
 msgstr ""
 
-#: include/enotify.php:247
-#, php-format
-msgid "You've received an introduction from '%1$s' at %2$s"
+#: include/profile_selectors.php:42
+msgid "Happy"
 msgstr ""
 
-#: include/enotify.php:248
-#, php-format
-msgid "You've received [url=%1$s]an introduction[/url] from %2$s."
+#: include/profile_selectors.php:42
+msgid "Not looking"
 msgstr ""
 
-#: include/enotify.php:252 include/enotify.php:295
-#, php-format
-msgid "You may visit their profile at %s"
+#: include/profile_selectors.php:42
+msgid "Swinger"
 msgstr ""
 
-#: include/enotify.php:254
-#, php-format
-msgid "Please visit %s to approve or reject the introduction."
+#: include/profile_selectors.php:42
+msgid "Betrayed"
 msgstr ""
 
-#: include/enotify.php:262
-msgid "[Friendica:Notify] A new person is sharing with you"
+#: include/profile_selectors.php:42
+msgid "Separated"
 msgstr ""
 
-#: include/enotify.php:264 include/enotify.php:265
-#, php-format
-msgid "%1$s is sharing with you at %2$s"
+#: include/profile_selectors.php:42
+msgid "Unstable"
 msgstr ""
 
-#: include/enotify.php:271
-msgid "[Friendica:Notify] You have a new follower"
+#: include/profile_selectors.php:42
+msgid "Divorced"
 msgstr ""
 
-#: include/enotify.php:273 include/enotify.php:274
-#, php-format
-msgid "You have a new follower at %2$s : %1$s"
+#: include/profile_selectors.php:42
+msgid "Imaginarily divorced"
 msgstr ""
 
-#: include/enotify.php:285
-msgid "[Friendica:Notify] Friend suggestion received"
+#: include/profile_selectors.php:42
+msgid "Widowed"
 msgstr ""
 
-#: include/enotify.php:287
-#, php-format
-msgid "You've received a friend suggestion from '%1$s' at %2$s"
+#: include/profile_selectors.php:42
+msgid "Uncertain"
 msgstr ""
 
-#: include/enotify.php:288
-#, php-format
-msgid "You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s."
+#: include/profile_selectors.php:42
+msgid "It's complicated"
 msgstr ""
 
-#: include/enotify.php:293
-msgid "Name:"
+#: include/profile_selectors.php:42
+msgid "Don't care"
 msgstr ""
 
-#: include/enotify.php:294
-msgid "Photo:"
+#: include/profile_selectors.php:42
+msgid "Ask me"
 msgstr ""
 
-#: include/enotify.php:297
+#: include/dba_pdo.php:72 include/dba.php:56
 #, php-format
-msgid "Please visit %s to approve or reject the suggestion."
-msgstr ""
-
-#: include/enotify.php:305 include/enotify.php:319
-msgid "[Friendica:Notify] Connection accepted"
+msgid "Cannot locate DNS info for database server '%s'"
 msgstr ""
 
-#: include/enotify.php:307 include/enotify.php:321
-#, php-format
-msgid "'%1$s' has accepted your connection request at %2$s"
+#: include/auth.php:45
+msgid "Logged out."
 msgstr ""
 
-#: include/enotify.php:308 include/enotify.php:322
-#, php-format
-msgid "%2$s has accepted your [url=%1$s]connection request[/url]."
+#: include/auth.php:116 include/auth.php:178 mod/openid.php:100
+msgid "Login failed."
 msgstr ""
 
-#: include/enotify.php:312
+#: include/auth.php:132 include/user.php:75
 msgid ""
-"You are now mutual friends and may exchange status updates, photos, and "
-"email without restriction."
+"We encountered a problem while logging in with the OpenID you provided. "
+"Please check the correct spelling of the ID."
 msgstr ""
 
-#: include/enotify.php:314
-#, php-format
-msgid "Please visit %s if you wish to make any changes to this relationship."
+#: include/auth.php:132 include/user.php:75
+msgid "The error message was:"
 msgstr ""
 
-#: include/enotify.php:326
-#, php-format
+#: include/group.php:25
 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."
+"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 ""
 
-#: include/enotify.php:328
-#, php-format
-msgid ""
-"'%1$s' may choose to extend this into a two-way or more permissive "
-"relationship in the future."
+#: include/group.php:209
+msgid "Default privacy group for new contacts"
 msgstr ""
 
-#: include/enotify.php:330
-#, php-format
-msgid "Please visit %s  if you wish to make any changes to this relationship."
+#: include/group.php:242
+msgid "Everybody"
 msgstr ""
 
-#: include/enotify.php:340
-msgid "[Friendica System:Notify] registration request"
+#: include/group.php:265
+msgid "edit"
 msgstr ""
 
-#: include/enotify.php:342
-#, php-format
-msgid "You've received a registration request from '%1$s' at %2$s"
+#: include/group.php:286 mod/newmember.php:61
+msgid "Groups"
 msgstr ""
 
-#: include/enotify.php:343
-#, php-format
-msgid "You've received a [url=%1$s]registration request[/url] from %2$s."
+#: include/group.php:288
+msgid "Edit groups"
 msgstr ""
 
-#: include/enotify.php:347
-#, php-format
-msgid "Full Name:\t%1$s\\nSite Location:\t%2$s\\nLogin Name:\t%3$s (%4$s)"
+#: include/group.php:290
+msgid "Edit group"
 msgstr ""
 
-#: include/enotify.php:350
-#, php-format
-msgid "Please visit %s to approve or reject the request."
+#: include/group.php:291
+msgid "Create a new group"
 msgstr ""
 
-#: include/plugin.php:526 include/plugin.php:528
-msgid "Click here to upgrade."
+#: include/group.php:292 mod/group.php:94 mod/group.php:178
+msgid "Group Name: "
 msgstr ""
 
-#: include/plugin.php:534
-msgid "This action exceeds the limits set by your subscription plan."
+#: include/group.php:294
+msgid "Contacts not in any group"
 msgstr ""
 
-#: include/plugin.php:539
-msgid "This action is not available under your subscription plan."
+#: include/group.php:296 mod/network.php:201
+msgid "add"
 msgstr ""
 
-#: include/ForumManager.php:114 include/text.php:1025 include/nav.php:131
-#: view/theme/vier/theme.php:255
-msgid "Forums"
+#: include/contact_selectors.php:32
+msgid "Unknown | Not categorised"
 msgstr ""
 
-#: include/ForumManager.php:116 view/theme/vier/theme.php:257
-msgid "External link to forum"
+#: include/contact_selectors.php:33
+msgid "Block immediately"
 msgstr ""
 
-#: include/diaspora.php:1402 include/conversation.php:141 include/like.php:182
-#, php-format
-msgid "%1$s likes %2$s's %3$s"
+#: include/contact_selectors.php:34
+msgid "Shady, spammer, self-marketer"
 msgstr ""
 
-#: include/diaspora.php:1406 include/conversation.php:125
-#: include/conversation.php:134 include/conversation.php:261
-#: include/conversation.php:270 include/like.php:163 mod/tagger.php:62
-#: mod/subthread.php:87
-msgid "status"
+#: include/contact_selectors.php:35
+msgid "Known to me, but no opinion"
 msgstr ""
 
-#: include/diaspora.php:1958
-msgid "Sharing notification from Diaspora network"
+#: include/contact_selectors.php:36
+msgid "OK, probably harmless"
 msgstr ""
 
-#: include/diaspora.php:2864
-msgid "Attachments:"
+#: include/contact_selectors.php:37
+msgid "Reputable, has my trust"
 msgstr ""
 
-#: include/dfrn.php:1108
-#, php-format
-msgid "%s\\'s birthday"
+#: include/contact_selectors.php:56 mod/admin.php:890
+msgid "Frequently"
 msgstr ""
 
-#: include/uimport.php:94
-msgid "Error decoding account file"
+#: include/contact_selectors.php:57 mod/admin.php:891
+msgid "Hourly"
 msgstr ""
 
-#: include/uimport.php:100
-msgid "Error! No version data in file! This is not a Friendica account file?"
+#: include/contact_selectors.php:58 mod/admin.php:892
+msgid "Twice daily"
 msgstr ""
 
-#: include/uimport.php:116 include/uimport.php:127
-msgid "Error! Cannot check nickname"
+#: include/contact_selectors.php:59 mod/admin.php:893
+msgid "Daily"
 msgstr ""
 
-#: include/uimport.php:120 include/uimport.php:131
-#, php-format
-msgid "User '%s' already exists on this server!"
+#: include/contact_selectors.php:60
+msgid "Weekly"
 msgstr ""
 
-#: include/uimport.php:153
-msgid "User creation error"
+#: include/contact_selectors.php:61
+msgid "Monthly"
 msgstr ""
 
-#: include/uimport.php:173
-msgid "User profile creation error"
+#: include/contact_selectors.php:76 mod/dfrn_request.php:868
+msgid "Friendica"
 msgstr ""
 
-#: include/uimport.php:222
-#, php-format
-msgid "%d contact not imported"
-msgid_plural "%d contacts not imported"
-msgstr[0] ""
-msgstr[1] ""
-
-#: include/uimport.php:292
-msgid "Done. You can now login with your username and password"
+#: include/contact_selectors.php:77
+msgid "OStatus"
 msgstr ""
 
-#: include/dba.php:56 include/dba_pdo.php:72
-#, php-format
-msgid "Cannot locate DNS info for database server '%s'"
+#: include/contact_selectors.php:78
+msgid "RSS/Atom"
 msgstr ""
 
-#: include/event.php:16 include/bb2diaspora.php:148 mod/localtime.php:12
-msgid "l F d, Y \\@ g:i A"
+#: include/contact_selectors.php:79 include/contact_selectors.php:86
+#: mod/admin.php:1396 mod/admin.php:1409 mod/admin.php:1422 mod/admin.php:1440
+msgid "Email"
 msgstr ""
 
-#: include/event.php:33 include/event.php:51 include/event.php:487
-#: include/bb2diaspora.php:154
-msgid "Starts:"
+#: include/contact_selectors.php:80 mod/settings.php:842
+#: mod/dfrn_request.php:870
+msgid "Diaspora"
 msgstr ""
 
-#: include/event.php:36 include/event.php:57 include/event.php:488
-#: include/bb2diaspora.php:162
-msgid "Finishes:"
+#: include/contact_selectors.php:81
+msgid "Facebook"
 msgstr ""
 
-#: include/event.php:39 include/event.php:63 include/event.php:489
-#: include/identity.php:328 include/bb2diaspora.php:170
-#: mod/notifications.php:232 mod/events.php:494 mod/directory.php:137
-#: mod/contacts.php:628
-msgid "Location:"
+#: include/contact_selectors.php:82
+msgid "Zot!"
 msgstr ""
 
-#: include/event.php:441
-msgid "Sun"
+#: include/contact_selectors.php:83
+msgid "LinkedIn"
 msgstr ""
 
-#: include/event.php:442
-msgid "Mon"
+#: include/contact_selectors.php:84
+msgid "XMPP/IM"
 msgstr ""
 
-#: include/event.php:443
-msgid "Tue"
+#: include/contact_selectors.php:85
+msgid "MySpace"
 msgstr ""
 
-#: include/event.php:444
-msgid "Wed"
+#: include/contact_selectors.php:87
+msgid "Google+"
 msgstr ""
 
-#: include/event.php:445
-msgid "Thu"
+#: include/contact_selectors.php:88
+msgid "pump.io"
 msgstr ""
 
-#: include/event.php:446
-msgid "Fri"
+#: include/contact_selectors.php:89
+msgid "Twitter"
 msgstr ""
 
-#: include/event.php:447
-msgid "Sat"
+#: include/contact_selectors.php:90
+msgid "Diaspora Connector"
 msgstr ""
 
-#: include/event.php:448 include/text.php:1130 mod/settings.php:972
-msgid "Sunday"
+#: include/contact_selectors.php:91
+msgid "GNU Social"
 msgstr ""
 
-#: include/event.php:449 include/text.php:1130 mod/settings.php:972
-msgid "Monday"
+#: include/contact_selectors.php:92
+msgid "App.net"
 msgstr ""
 
-#: include/event.php:450 include/text.php:1130
-msgid "Tuesday"
+#: include/contact_selectors.php:103
+msgid "Hubzilla/Redmatrix"
 msgstr ""
 
-#: include/event.php:451 include/text.php:1130
-msgid "Wednesday"
+#: include/acl_selectors.php:327
+msgid "Post to Email"
 msgstr ""
 
-#: include/event.php:452 include/text.php:1130
-msgid "Thursday"
+#: include/acl_selectors.php:332
+#, php-format
+msgid "Connectors disabled, since \"%s\" is enabled."
 msgstr ""
 
-#: include/event.php:453 include/text.php:1130
-msgid "Friday"
+#: include/acl_selectors.php:333 mod/settings.php:1181
+msgid "Hide your profile details from unknown viewers?"
 msgstr ""
 
-#: include/event.php:454 include/text.php:1130
-msgid "Saturday"
+#: include/acl_selectors.php:338
+msgid "Visible to everybody"
 msgstr ""
 
-#: include/event.php:455
-msgid "Jan"
+#: include/acl_selectors.php:339 view/theme/vier/config.php:103
+msgid "show"
 msgstr ""
 
-#: include/event.php:456
-msgid "Feb"
+#: include/acl_selectors.php:340 view/theme/vier/config.php:103
+msgid "don't show"
 msgstr ""
 
-#: include/event.php:457
-msgid "Mar"
+#: include/acl_selectors.php:346 mod/editpost.php:133
+msgid "CC: email addresses"
 msgstr ""
 
-#: include/event.php:458
-msgid "Apr"
+#: include/acl_selectors.php:347 mod/editpost.php:140
+msgid "Example: bob@example.com, mary@example.com"
 msgstr ""
 
-#: include/event.php:459 include/event.php:471 include/text.php:1134
-msgid "May"
+#: include/acl_selectors.php:349 mod/events.php:509 mod/photos.php:1156
+#: mod/photos.php:1535
+msgid "Permissions"
 msgstr ""
 
-#: include/event.php:460
-msgid "Jun"
+#: include/acl_selectors.php:350
+msgid "Close"
 msgstr ""
 
-#: include/event.php:461
-msgid "Jul"
+#: include/like.php:163 include/conversation.php:130
+#: include/conversation.php:266 include/text.php:1804 mod/subthread.php:87
+#: mod/tagger.php:62
+msgid "photo"
 msgstr ""
 
-#: include/event.php:462
-msgid "Aug"
+#: include/like.php:163 include/diaspora.php:1406 include/conversation.php:125
+#: include/conversation.php:134 include/conversation.php:261
+#: include/conversation.php:270 mod/subthread.php:87 mod/tagger.php:62
+msgid "status"
 msgstr ""
 
-#: include/event.php:463
-msgid "Sept"
+#: include/like.php:165 include/conversation.php:122
+#: include/conversation.php:258 include/text.php:1802
+msgid "event"
 msgstr ""
 
-#: include/event.php:464
-msgid "Oct"
+#: include/like.php:182 include/diaspora.php:1402 include/conversation.php:141
+#, php-format
+msgid "%1$s likes %2$s's %3$s"
 msgstr ""
 
-#: include/event.php:465
-msgid "Nov"
+#: include/like.php:184 include/conversation.php:144
+#, php-format
+msgid "%1$s doesn't like %2$s's %3$s"
 msgstr ""
 
-#: include/event.php:466
-msgid "Dec"
+#: include/like.php:186
+#, php-format
+msgid "%1$s is attending %2$s's %3$s"
 msgstr ""
 
-#: include/event.php:467 include/text.php:1134
-msgid "January"
+#: include/like.php:188
+#, php-format
+msgid "%1$s is not attending %2$s's %3$s"
 msgstr ""
 
-#: include/event.php:468 include/text.php:1134
-msgid "February"
+#: include/like.php:190
+#, php-format
+msgid "%1$s may attend %2$s's %3$s"
 msgstr ""
 
-#: include/event.php:469 include/text.php:1134
-msgid "March"
+#: include/message.php:15 include/message.php:173
+msgid "[no subject]"
 msgstr ""
 
-#: include/event.php:470 include/text.php:1134
-msgid "April"
+#: include/message.php:145 include/Photo.php:1040 include/Photo.php:1056
+#: include/Photo.php:1064 include/Photo.php:1089 mod/wall_upload.php:218
+#: mod/wall_upload.php:232 mod/wall_upload.php:239 mod/item.php:478
+msgid "Wall Photos"
 msgstr ""
 
-#: include/event.php:472 include/text.php:1134
-msgid "June"
+#: include/plugin.php:526 include/plugin.php:528
+msgid "Click here to upgrade."
 msgstr ""
 
-#: include/event.php:473 include/text.php:1134
-msgid "July"
+#: include/plugin.php:534
+msgid "This action exceeds the limits set by your subscription plan."
 msgstr ""
 
-#: include/event.php:474 include/text.php:1134
-msgid "August"
+#: include/plugin.php:539
+msgid "This action is not available under your subscription plan."
 msgstr ""
 
-#: include/event.php:475 include/text.php:1134
-msgid "September"
+#: include/uimport.php:94
+msgid "Error decoding account file"
 msgstr ""
 
-#: include/event.php:476 include/text.php:1134
-msgid "October"
+#: include/uimport.php:100
+msgid "Error! No version data in file! This is not a Friendica account file?"
 msgstr ""
 
-#: include/event.php:477 include/text.php:1134
-msgid "November"
+#: include/uimport.php:116 include/uimport.php:127
+msgid "Error! Cannot check nickname"
 msgstr ""
 
-#: include/event.php:478 include/text.php:1134
-msgid "December"
+#: include/uimport.php:120 include/uimport.php:131
+#, php-format
+msgid "User '%s' already exists on this server!"
 msgstr ""
 
-#: include/event.php:479 mod/events.php:388 mod/cal.php:283
-msgid "today"
+#: include/uimport.php:153
+msgid "User creation error"
 msgstr ""
 
-#: include/event.php:483
-msgid "all-day"
+#: include/uimport.php:173
+msgid "User profile creation error"
 msgstr ""
 
-#: include/event.php:485
-msgid "No events to display"
-msgstr ""
+#: include/uimport.php:222
+#, php-format
+msgid "%d contact not imported"
+msgid_plural "%d contacts not imported"
+msgstr[0] ""
+msgstr[1] ""
 
-#: include/event.php:574
-msgid "l, F j"
+#: include/uimport.php:292
+msgid "Done. You can now login with your username and password"
 msgstr ""
 
-#: include/event.php:593
-msgid "Edit event"
+#: include/datetime.php:57 include/datetime.php:59 mod/profiles.php:705
+msgid "Miscellaneous"
 msgstr ""
 
-#: include/event.php:615 include/text.php:1536 include/text.php:1543
-msgid "link to source"
+#: include/datetime.php:183 include/identity.php:629
+msgid "Birthday:"
 msgstr ""
 
-#: include/event.php:850
-msgid "Export"
+#: include/datetime.php:185 mod/profiles.php:728
+msgid "Age: "
 msgstr ""
 
-#: include/event.php:851
-msgid "Export calendar as ical"
+#: include/datetime.php:187
+msgid "YYYY-MM-DD or MM-DD"
 msgstr ""
 
-#: include/event.php:852
-msgid "Export calendar as csv"
+#: include/datetime.php:341
+msgid "never"
 msgstr ""
 
-#: include/security.php:22
-msgid "Welcome "
+#: include/datetime.php:347
+msgid "less than a second ago"
 msgstr ""
 
-#: include/security.php:23
-msgid "Please upload a profile photo."
+#: include/datetime.php:350
+msgid "year"
 msgstr ""
 
-#: include/security.php:26
-msgid "Welcome back "
+#: include/datetime.php:350
+msgid "years"
 msgstr ""
 
-#: include/security.php:373
-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."
+#: include/datetime.php:351 include/event.php:480 mod/cal.php:284
+#: mod/events.php:389
+msgid "month"
 msgstr ""
 
-#: include/profile_selectors.php:6
-msgid "Male"
+#: include/datetime.php:351
+msgid "months"
 msgstr ""
 
-#: include/profile_selectors.php:6
-msgid "Female"
+#: include/datetime.php:352 include/event.php:481 mod/cal.php:285
+#: mod/events.php:390
+msgid "week"
 msgstr ""
 
-#: include/profile_selectors.php:6
-msgid "Currently Male"
+#: include/datetime.php:352
+msgid "weeks"
 msgstr ""
 
-#: include/profile_selectors.php:6
-msgid "Currently Female"
+#: include/datetime.php:353 include/event.php:482 mod/cal.php:286
+#: mod/events.php:391
+msgid "day"
 msgstr ""
 
-#: include/profile_selectors.php:6
-msgid "Mostly Male"
+#: include/datetime.php:353
+msgid "days"
 msgstr ""
 
-#: include/profile_selectors.php:6
-msgid "Mostly Female"
+#: include/datetime.php:354
+msgid "hour"
 msgstr ""
 
-#: include/profile_selectors.php:6
-msgid "Transgender"
+#: include/datetime.php:354
+msgid "hours"
 msgstr ""
 
-#: include/profile_selectors.php:6
-msgid "Intersex"
+#: include/datetime.php:355
+msgid "minute"
 msgstr ""
 
-#: include/profile_selectors.php:6
-msgid "Transsexual"
+#: include/datetime.php:355
+msgid "minutes"
 msgstr ""
 
-#: include/profile_selectors.php:6
-msgid "Hermaphrodite"
+#: include/datetime.php:356
+msgid "second"
 msgstr ""
 
-#: include/profile_selectors.php:6
-msgid "Neuter"
+#: include/datetime.php:356
+msgid "seconds"
 msgstr ""
 
-#: include/profile_selectors.php:6
-msgid "Non-specific"
+#: include/datetime.php:365
+#, php-format
+msgid "%1$d %2$s ago"
 msgstr ""
 
-#: include/profile_selectors.php:6
-msgid "Other"
+#: include/datetime.php:572
+#, php-format
+msgid "%s's birthday"
 msgstr ""
 
-#: include/profile_selectors.php:6 include/conversation.php:1487
-msgid "Undecided"
-msgid_plural "Undecided"
-msgstr[0] ""
-msgstr[1] ""
+#: include/datetime.php:573 include/dfrn.php:1109
+#, php-format
+msgid "Happy Birthday %s"
+msgstr ""
 
-#: include/profile_selectors.php:23
-msgid "Males"
+#: include/enotify.php:24
+msgid "Friendica Notification"
 msgstr ""
 
-#: include/profile_selectors.php:23
-msgid "Females"
+#: include/enotify.php:27
+msgid "Thank You,"
 msgstr ""
 
-#: include/profile_selectors.php:23
-msgid "Gay"
+#: include/enotify.php:30
+#, php-format
+msgid "%s Administrator"
 msgstr ""
 
-#: include/profile_selectors.php:23
-msgid "Lesbian"
+#: include/enotify.php:32
+#, php-format
+msgid "%1$s, %2$s Administrator"
 msgstr ""
 
-#: include/profile_selectors.php:23
-msgid "No Preference"
+#: include/enotify.php:43 include/delivery.php:457
+msgid "noreply"
 msgstr ""
 
-#: include/profile_selectors.php:23
-msgid "Bisexual"
+#: include/enotify.php:70
+#, php-format
+msgid "%s <!item_type!>"
 msgstr ""
 
-#: include/profile_selectors.php:23
-msgid "Autosexual"
+#: include/enotify.php:83
+#, php-format
+msgid "[Friendica:Notify] New mail received at %s"
 msgstr ""
 
-#: include/profile_selectors.php:23
-msgid "Abstinent"
+#: include/enotify.php:85
+#, php-format
+msgid "%1$s sent you a new private message at %2$s."
 msgstr ""
 
-#: include/profile_selectors.php:23
-msgid "Virgin"
+#: include/enotify.php:86
+#, php-format
+msgid "%1$s sent you %2$s."
 msgstr ""
 
-#: include/profile_selectors.php:23
-msgid "Deviant"
+#: include/enotify.php:86
+msgid "a private message"
 msgstr ""
 
-#: include/profile_selectors.php:23
-msgid "Fetish"
+#: include/enotify.php:88
+#, php-format
+msgid "Please visit %s to view and/or reply to your private messages."
 msgstr ""
 
-#: include/profile_selectors.php:23
-msgid "Oodles"
+#: include/enotify.php:134
+#, php-format
+msgid "%1$s commented on [url=%2$s]a %3$s[/url]"
 msgstr ""
 
-#: include/profile_selectors.php:23
-msgid "Nonsexual"
+#: include/enotify.php:141
+#, php-format
+msgid "%1$s commented on [url=%2$s]%3$s's %4$s[/url]"
 msgstr ""
 
-#: include/profile_selectors.php:42
-msgid "Single"
+#: include/enotify.php:149
+#, php-format
+msgid "%1$s commented on [url=%2$s]your %3$s[/url]"
 msgstr ""
 
-#: include/profile_selectors.php:42
-msgid "Lonely"
+#: include/enotify.php:159
+#, php-format
+msgid "[Friendica:Notify] Comment to conversation #%1$d by %2$s"
 msgstr ""
 
-#: include/profile_selectors.php:42
-msgid "Available"
+#: include/enotify.php:161
+#, php-format
+msgid "%s commented on an item/conversation you have been following."
 msgstr ""
 
-#: include/profile_selectors.php:42
-msgid "Unavailable"
+#: include/enotify.php:164 include/enotify.php:178 include/enotify.php:192
+#: include/enotify.php:206 include/enotify.php:224 include/enotify.php:238
+#, php-format
+msgid "Please visit %s to view and/or reply to the conversation."
 msgstr ""
 
-#: include/profile_selectors.php:42
-msgid "Has crush"
+#: include/enotify.php:171
+#, php-format
+msgid "[Friendica:Notify] %s posted to your profile wall"
 msgstr ""
 
-#: include/profile_selectors.php:42
-msgid "Infatuated"
+#: include/enotify.php:173
+#, php-format
+msgid "%1$s posted to your profile wall at %2$s"
 msgstr ""
 
-#: include/profile_selectors.php:42
-msgid "Dating"
+#: include/enotify.php:174
+#, php-format
+msgid "%1$s posted to [url=%2$s]your wall[/url]"
 msgstr ""
 
-#: include/profile_selectors.php:42
-msgid "Unfaithful"
+#: include/enotify.php:185
+#, php-format
+msgid "[Friendica:Notify] %s tagged you"
 msgstr ""
 
-#: include/profile_selectors.php:42
-msgid "Sex Addict"
+#: include/enotify.php:187
+#, php-format
+msgid "%1$s tagged you at %2$s"
 msgstr ""
 
-#: include/profile_selectors.php:42 include/user.php:299 include/user.php:303
-msgid "Friends"
+#: include/enotify.php:188
+#, php-format
+msgid "%1$s [url=%2$s]tagged you[/url]."
 msgstr ""
 
-#: include/profile_selectors.php:42
-msgid "Friends/Benefits"
+#: include/enotify.php:199
+#, php-format
+msgid "[Friendica:Notify] %s shared a new post"
 msgstr ""
 
-#: include/profile_selectors.php:42
-msgid "Casual"
+#: include/enotify.php:201
+#, php-format
+msgid "%1$s shared a new post at %2$s"
 msgstr ""
 
-#: include/profile_selectors.php:42
-msgid "Engaged"
+#: include/enotify.php:202
+#, php-format
+msgid "%1$s [url=%2$s]shared a post[/url]."
 msgstr ""
 
-#: include/profile_selectors.php:42
-msgid "Married"
-msgstr ""
-
-#: include/profile_selectors.php:42
-msgid "Imaginarily married"
+#: include/enotify.php:213
+#, php-format
+msgid "[Friendica:Notify] %1$s poked you"
 msgstr ""
 
-#: include/profile_selectors.php:42
-msgid "Partners"
+#: include/enotify.php:215
+#, php-format
+msgid "%1$s poked you at %2$s"
 msgstr ""
 
-#: include/profile_selectors.php:42
-msgid "Cohabiting"
+#: include/enotify.php:216
+#, php-format
+msgid "%1$s [url=%2$s]poked you[/url]."
 msgstr ""
 
-#: include/profile_selectors.php:42
-msgid "Common law"
+#: include/enotify.php:231
+#, php-format
+msgid "[Friendica:Notify] %s tagged your post"
 msgstr ""
 
-#: include/profile_selectors.php:42
-msgid "Happy"
+#: include/enotify.php:233
+#, php-format
+msgid "%1$s tagged your post at %2$s"
 msgstr ""
 
-#: include/profile_selectors.php:42
-msgid "Not looking"
+#: include/enotify.php:234
+#, php-format
+msgid "%1$s tagged [url=%2$s]your post[/url]"
 msgstr ""
 
-#: include/profile_selectors.php:42
-msgid "Swinger"
+#: include/enotify.php:245
+msgid "[Friendica:Notify] Introduction received"
 msgstr ""
 
-#: include/profile_selectors.php:42
-msgid "Betrayed"
+#: include/enotify.php:247
+#, php-format
+msgid "You've received an introduction from '%1$s' at %2$s"
 msgstr ""
 
-#: include/profile_selectors.php:42
-msgid "Separated"
+#: include/enotify.php:248
+#, php-format
+msgid "You've received [url=%1$s]an introduction[/url] from %2$s."
 msgstr ""
 
-#: include/profile_selectors.php:42
-msgid "Unstable"
+#: include/enotify.php:252 include/enotify.php:295
+#, php-format
+msgid "You may visit their profile at %s"
 msgstr ""
 
-#: include/profile_selectors.php:42
-msgid "Divorced"
+#: include/enotify.php:254
+#, php-format
+msgid "Please visit %s to approve or reject the introduction."
 msgstr ""
 
-#: include/profile_selectors.php:42
-msgid "Imaginarily divorced"
+#: include/enotify.php:262
+msgid "[Friendica:Notify] A new person is sharing with you"
 msgstr ""
 
-#: include/profile_selectors.php:42
-msgid "Widowed"
+#: include/enotify.php:264 include/enotify.php:265
+#, php-format
+msgid "%1$s is sharing with you at %2$s"
 msgstr ""
 
-#: include/profile_selectors.php:42
-msgid "Uncertain"
+#: include/enotify.php:271
+msgid "[Friendica:Notify] You have a new follower"
 msgstr ""
 
-#: include/profile_selectors.php:42
-msgid "It's complicated"
+#: include/enotify.php:273 include/enotify.php:274
+#, php-format
+msgid "You have a new follower at %2$s : %1$s"
 msgstr ""
 
-#: include/profile_selectors.php:42
-msgid "Don't care"
+#: include/enotify.php:285
+msgid "[Friendica:Notify] Friend suggestion received"
 msgstr ""
 
-#: include/profile_selectors.php:42
-msgid "Ask me"
+#: include/enotify.php:287
+#, php-format
+msgid "You've received a friend suggestion from '%1$s' at %2$s"
 msgstr ""
 
-#: include/items.php:1571 mod/dfrn_confirm.php:730 mod/dfrn_request.php:746
-msgid "[Name Withheld]"
+#: include/enotify.php:288
+#, php-format
+msgid "You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s."
 msgstr ""
 
-#: include/items.php:1926 mod/viewsrc.php:15 mod/admin.php:234
-#: mod/admin.php:1471 mod/admin.php:1705 mod/display.php:103
-#: mod/display.php:279 mod/display.php:478 mod/notice.php:15
-msgid "Item not found."
+#: include/enotify.php:293
+msgid "Name:"
 msgstr ""
 
-#: include/items.php:1965
-msgid "Do you really want to delete this item?"
+#: include/enotify.php:294
+msgid "Photo:"
 msgstr ""
 
-#: include/items.php:1967 mod/profiles.php:648 mod/profiles.php:651
-#: mod/profiles.php:677 mod/contacts.php:442 mod/follow.php:110
-#: mod/suggest.php:29 mod/dfrn_request.php:862 mod/register.php:245
-#: mod/settings.php:1163 mod/settings.php:1169 mod/settings.php:1177
-#: mod/settings.php:1181 mod/settings.php:1186 mod/settings.php:1192
-#: mod/settings.php:1198 mod/settings.php:1204 mod/settings.php:1230
-#: mod/settings.php:1231 mod/settings.php:1232 mod/settings.php:1233
-#: mod/settings.php:1234 mod/api.php:105 mod/message.php:217
-msgid "Yes"
+#: include/enotify.php:297
+#, php-format
+msgid "Please visit %s to approve or reject the suggestion."
 msgstr ""
 
-#: include/items.php:1970 include/conversation.php:1283 mod/fbrowser.php:101
-#: mod/fbrowser.php:136 mod/tagrm.php:11 mod/tagrm.php:94 mod/videos.php:128
-#: mod/photos.php:235 mod/photos.php:322 mod/contacts.php:445
-#: mod/follow.php:121 mod/suggest.php:32 mod/editpost.php:148
-#: mod/dfrn_request.php:876 mod/settings.php:679 mod/settings.php:705
-#: mod/message.php:220
-msgid "Cancel"
+#: include/enotify.php:305 include/enotify.php:319
+msgid "[Friendica:Notify] Connection accepted"
 msgstr ""
 
-#: include/items.php:2130 index.php:401 mod/regmod.php:110 mod/dirfind.php:11
-#: mod/notifications.php:71 mod/dfrn_confirm.php:61 mod/wall_upload.php:77
-#: mod/wall_upload.php:80 mod/fsuggest.php:78 mod/notes.php:22
-#: mod/events.php:190 mod/uimport.php:23 mod/nogroup.php:25 mod/invite.php:15
-#: mod/invite.php:101 mod/viewcontacts.php:45 mod/crepair.php:100
-#: mod/wall_attach.php:67 mod/wall_attach.php:70 mod/allfriends.php:12
-#: mod/cal.php:304 mod/repair_ostatus.php:9 mod/delegate.php:12
-#: mod/profiles.php:166 mod/profiles.php:605 mod/poke.php:150
-#: mod/photos.php:159 mod/photos.php:1072 mod/attach.php:33
-#: mod/contacts.php:350 mod/follow.php:11 mod/follow.php:73 mod/follow.php:155
-#: mod/suggest.php:58 mod/display.php:475 mod/common.php:18 mod/mood.php:114
-#: mod/editpost.php:10 mod/network.php:4 mod/group.php:19
-#: mod/profile_photo.php:19 mod/profile_photo.php:175
-#: mod/profile_photo.php:186 mod/profile_photo.php:199 mod/register.php:42
-#: mod/settings.php:22 mod/settings.php:128 mod/settings.php:665
-#: mod/wallmessage.php:9 mod/wallmessage.php:33 mod/wallmessage.php:79
-#: mod/wallmessage.php:103 mod/api.php:26 mod/api.php:31 mod/item.php:198
-#: mod/item.php:210 mod/ostatus_subscribe.php:9 mod/message.php:46
-#: mod/message.php:182 mod/manage.php:96
-msgid "Permission denied."
+#: include/enotify.php:307 include/enotify.php:321
+#, php-format
+msgid "'%1$s' has accepted your connection request at %2$s"
 msgstr ""
 
-#: include/items.php:2235
-msgid "Archives"
+#: include/enotify.php:308 include/enotify.php:322
+#, php-format
+msgid "%2$s has accepted your [url=%1$s]connection request[/url]."
 msgstr ""
 
-#: include/text.php:304
-msgid "newer"
+#: include/enotify.php:312
+msgid ""
+"You are now mutual friends and may exchange status updates, photos, and "
+"email without restriction."
 msgstr ""
 
-#: include/text.php:306
-msgid "older"
+#: include/enotify.php:314
+#, php-format
+msgid "Please visit %s if you wish to make any changes to this relationship."
 msgstr ""
 
-#: include/text.php:311
-msgid "prev"
+#: include/enotify.php:326
+#, php-format
+msgid ""
+"'%1$s' has chosen to accept you a \"fan\", which restricts some forms of "
+"communication - such as private messaging and some profile interactions. If "
+"this is a celebrity or community page, these settings were applied "
+"automatically."
 msgstr ""
 
-#: include/text.php:313
-msgid "first"
+#: include/enotify.php:328
+#, php-format
+msgid ""
+"'%1$s' may choose to extend this into a two-way or more permissive "
+"relationship in the future."
 msgstr ""
 
-#: include/text.php:345
-msgid "last"
+#: include/enotify.php:330
+#, php-format
+msgid "Please visit %s  if you wish to make any changes to this relationship."
 msgstr ""
 
-#: include/text.php:348
-msgid "next"
+#: include/enotify.php:340
+msgid "[Friendica System:Notify] registration request"
 msgstr ""
 
-#: include/text.php:403
-msgid "Loading more entries..."
+#: include/enotify.php:342
+#, php-format
+msgid "You've received a registration request from '%1$s' at %2$s"
 msgstr ""
 
-#: include/text.php:404
-msgid "The end"
+#: include/enotify.php:343
+#, php-format
+msgid "You've received a [url=%1$s]registration request[/url] from %2$s."
 msgstr ""
 
-#: include/text.php:889
-msgid "No contacts"
+#: include/enotify.php:347
+#, php-format
+msgid "Full Name:\t%1$s\\nSite Location:\t%2$s\\nLogin Name:\t%3$s (%4$s)"
 msgstr ""
 
-#: include/text.php:912
+#: include/enotify.php:350
 #, php-format
-msgid "%d Contact"
-msgid_plural "%d Contacts"
-msgstr[0] ""
-msgstr[1] ""
-
-#: include/text.php:925
-msgid "View Contacts"
+msgid "Please visit %s to approve or reject the request."
 msgstr ""
 
-#: include/text.php:1012 include/nav.php:123 mod/search.php:149
-msgid "Search"
+#: include/event.php:16 include/bb2diaspora.php:152 mod/localtime.php:12
+msgid "l F d, Y \\@ g:i A"
 msgstr ""
 
-#: include/text.php:1013 mod/notes.php:61 mod/filer.php:31
-#: mod/editpost.php:109
-msgid "Save"
+#: include/event.php:33 include/event.php:51 include/event.php:487
+#: include/bb2diaspora.php:158
+msgid "Starts:"
 msgstr ""
 
-#: include/text.php:1015 include/nav.php:40
-msgid "@name, !forum, #tags, content"
+#: include/event.php:36 include/event.php:57 include/event.php:488
+#: include/bb2diaspora.php:166
+msgid "Finishes:"
 msgstr ""
 
-#: include/text.php:1020 include/nav.php:126
-msgid "Full Text"
+#: include/event.php:39 include/event.php:63 include/event.php:489
+#: include/bb2diaspora.php:174 include/identity.php:328
+#: mod/notifications.php:232 mod/directory.php:137 mod/events.php:494
+#: mod/contacts.php:628
+msgid "Location:"
 msgstr ""
 
-#: include/text.php:1021 include/nav.php:127
-msgid "Tags"
+#: include/event.php:441
+msgid "Sun"
 msgstr ""
 
-#: include/text.php:1022 include/identity.php:783 include/identity.php:786
-#: include/nav.php:128 include/nav.php:192 mod/viewcontacts.php:116
-#: mod/contacts.php:792 mod/contacts.php:853 view/theme/frio/theme.php:260
-msgid "Contacts"
+#: include/event.php:442
+msgid "Mon"
 msgstr ""
 
-#: include/text.php:1076
-msgid "poke"
+#: include/event.php:443
+msgid "Tue"
 msgstr ""
 
-#: include/text.php:1076
-msgid "poked"
+#: include/event.php:444
+msgid "Wed"
 msgstr ""
 
-#: include/text.php:1077
-msgid "ping"
+#: include/event.php:445
+msgid "Thu"
 msgstr ""
 
-#: include/text.php:1077
-msgid "pinged"
+#: include/event.php:446
+msgid "Fri"
 msgstr ""
 
-#: include/text.php:1078
-msgid "prod"
+#: include/event.php:447
+msgid "Sat"
 msgstr ""
 
-#: include/text.php:1078
-msgid "prodded"
+#: include/event.php:448 include/text.php:1130 mod/settings.php:972
+msgid "Sunday"
 msgstr ""
 
-#: include/text.php:1079
-msgid "slap"
+#: include/event.php:449 include/text.php:1130 mod/settings.php:972
+msgid "Monday"
 msgstr ""
 
-#: include/text.php:1079
-msgid "slapped"
+#: include/event.php:450 include/text.php:1130
+msgid "Tuesday"
 msgstr ""
 
-#: include/text.php:1080
-msgid "finger"
+#: include/event.php:451 include/text.php:1130
+msgid "Wednesday"
 msgstr ""
 
-#: include/text.php:1080
-msgid "fingered"
+#: include/event.php:452 include/text.php:1130
+msgid "Thursday"
 msgstr ""
 
-#: include/text.php:1081
-msgid "rebuff"
+#: include/event.php:453 include/text.php:1130
+msgid "Friday"
 msgstr ""
 
-#: include/text.php:1081
-msgid "rebuffed"
+#: include/event.php:454 include/text.php:1130
+msgid "Saturday"
 msgstr ""
 
-#: include/text.php:1095
-msgid "happy"
+#: include/event.php:455
+msgid "Jan"
 msgstr ""
 
-#: include/text.php:1096
-msgid "sad"
+#: include/event.php:456
+msgid "Feb"
 msgstr ""
 
-#: include/text.php:1097
-msgid "mellow"
+#: include/event.php:457
+msgid "Mar"
 msgstr ""
 
-#: include/text.php:1098
-msgid "tired"
+#: include/event.php:458
+msgid "Apr"
 msgstr ""
 
-#: include/text.php:1099
-msgid "perky"
+#: include/event.php:459 include/event.php:471 include/text.php:1134
+msgid "May"
 msgstr ""
 
-#: include/text.php:1100
-msgid "angry"
+#: include/event.php:460
+msgid "Jun"
 msgstr ""
 
-#: include/text.php:1101
-msgid "stupified"
+#: include/event.php:461
+msgid "Jul"
 msgstr ""
 
-#: include/text.php:1102
-msgid "puzzled"
+#: include/event.php:462
+msgid "Aug"
 msgstr ""
 
-#: include/text.php:1103
-msgid "interested"
+#: include/event.php:463
+msgid "Sept"
 msgstr ""
 
-#: include/text.php:1104
-msgid "bitter"
+#: include/event.php:464
+msgid "Oct"
 msgstr ""
 
-#: include/text.php:1105
-msgid "cheerful"
+#: include/event.php:465
+msgid "Nov"
 msgstr ""
 
-#: include/text.php:1106
-msgid "alive"
+#: include/event.php:466
+msgid "Dec"
 msgstr ""
 
-#: include/text.php:1107
-msgid "annoyed"
+#: include/event.php:467 include/text.php:1134
+msgid "January"
 msgstr ""
 
-#: include/text.php:1108
-msgid "anxious"
+#: include/event.php:468 include/text.php:1134
+msgid "February"
 msgstr ""
 
-#: include/text.php:1109
-msgid "cranky"
+#: include/event.php:469 include/text.php:1134
+msgid "March"
 msgstr ""
 
-#: include/text.php:1110
-msgid "disturbed"
+#: include/event.php:470 include/text.php:1134
+msgid "April"
 msgstr ""
 
-#: include/text.php:1111
-msgid "frustrated"
+#: include/event.php:472 include/text.php:1134
+msgid "June"
 msgstr ""
 
-#: include/text.php:1112
-msgid "motivated"
+#: include/event.php:473 include/text.php:1134
+msgid "July"
 msgstr ""
 
-#: include/text.php:1113
-msgid "relaxed"
+#: include/event.php:474 include/text.php:1134
+msgid "August"
 msgstr ""
 
-#: include/text.php:1114
-msgid "surprised"
+#: include/event.php:475 include/text.php:1134
+msgid "September"
 msgstr ""
 
-#: include/text.php:1328 mod/videos.php:380
-msgid "View Video"
+#: include/event.php:476 include/text.php:1134
+msgid "October"
 msgstr ""
 
-#: include/text.php:1360
-msgid "bytes"
+#: include/event.php:477 include/text.php:1134
+msgid "November"
 msgstr ""
 
-#: include/text.php:1392 include/text.php:1404
-msgid "Click to open/close"
+#: include/event.php:478 include/text.php:1134
+msgid "December"
 msgstr ""
 
-#: include/text.php:1530
-msgid "View on separate page"
+#: include/event.php:479 mod/cal.php:283 mod/events.php:388
+msgid "today"
 msgstr ""
 
-#: include/text.php:1531
-msgid "view on separate page"
+#: include/event.php:483
+msgid "all-day"
 msgstr ""
 
-#: include/text.php:1806 include/conversation.php:122
-#: include/conversation.php:258 include/like.php:165
-msgid "event"
+#: include/event.php:485
+msgid "No events to display"
 msgstr ""
 
-#: include/text.php:1808 include/conversation.php:130
-#: include/conversation.php:266 include/like.php:163 mod/tagger.php:62
-#: mod/subthread.php:87
-msgid "photo"
+#: include/event.php:574
+msgid "l, F j"
 msgstr ""
 
-#: include/text.php:1810
-msgid "activity"
+#: include/event.php:593
+msgid "Edit event"
 msgstr ""
 
-#: include/text.php:1812 mod/content.php:623 object/Item.php:431
-#: object/Item.php:444
-msgid "comment"
-msgid_plural "comments"
-msgstr[0] ""
-msgstr[1] ""
-
-#: include/text.php:1813
-msgid "post"
+#: include/event.php:615 include/text.php:1532 include/text.php:1539
+msgid "link to source"
 msgstr ""
 
-#: include/text.php:1981
-msgid "Item filed"
+#: include/event.php:850
+msgid "Export"
 msgstr ""
 
-#: include/conversation.php:144 include/like.php:184
-#, php-format
-msgid "%1$s doesn't like %2$s's %3$s"
+#: include/event.php:851
+msgid "Export calendar as ical"
 msgstr ""
 
-#: include/conversation.php:147
-#, php-format
-msgid "%1$s attends %2$s's %3$s"
+#: include/event.php:852
+msgid "Export calendar as csv"
 msgstr ""
 
-#: include/conversation.php:150
-#, php-format
-msgid "%1$s doesn't attend %2$s's %3$s"
+#: include/nav.php:35 mod/navigation.php:19
+msgid "Nothing new here"
 msgstr ""
 
-#: include/conversation.php:153
-#, php-format
-msgid "%1$s attends maybe %2$s's %3$s"
+#: include/nav.php:39 mod/navigation.php:23
+msgid "Clear notifications"
 msgstr ""
 
-#: include/conversation.php:185 mod/dfrn_confirm.php:477
-#, php-format
-msgid "%1$s is now friends with %2$s"
+#: include/nav.php:40 include/text.php:1015
+msgid "@name, !forum, #tags, content"
 msgstr ""
 
-#: include/conversation.php:219
-#, php-format
-msgid "%1$s poked %2$s"
+#: include/nav.php:78 view/theme/frio/theme.php:246 boot.php:1792
+msgid "Logout"
 msgstr ""
 
-#: include/conversation.php:239 mod/mood.php:62
-#, php-format
-msgid "%1$s is currently %2$s"
+#: include/nav.php:78 view/theme/frio/theme.php:246
+msgid "End this session"
 msgstr ""
 
-#: include/conversation.php:278 mod/tagger.php:95
-#, php-format
-msgid "%1$s tagged %2$s's %3$s with %4$s"
+#: include/nav.php:81 include/identity.php:714 mod/contacts.php:637
+#: mod/contacts.php:833 view/theme/frio/theme.php:249
+msgid "Status"
 msgstr ""
 
-#: include/conversation.php:303
-msgid "post/item"
+#: include/nav.php:81 include/nav.php:161 view/theme/frio/theme.php:249
+msgid "Your posts and conversations"
 msgstr ""
 
-#: include/conversation.php:304
-#, php-format
-msgid "%1$s marked %2$s's %3$s as favorite"
+#: include/nav.php:82 include/identity.php:605 include/identity.php:691
+#: include/identity.php:722 mod/profperm.php:104 mod/newmember.php:32
+#: mod/contacts.php:639 mod/contacts.php:841 view/theme/frio/theme.php:250
+msgid "Profile"
 msgstr ""
 
-#: include/conversation.php:585 mod/content.php:372 mod/profiles.php:346
-#: mod/photos.php:1607
-msgid "Likes"
+#: include/nav.php:82 view/theme/frio/theme.php:250
+msgid "Your profile page"
 msgstr ""
 
-#: include/conversation.php:585 mod/content.php:372 mod/profiles.php:350
-#: mod/photos.php:1607
-msgid "Dislikes"
+#: include/nav.php:83 include/identity.php:730 mod/fbrowser.php:32
+#: view/theme/frio/theme.php:251
+msgid "Photos"
 msgstr ""
 
-#: include/conversation.php:586 include/conversation.php:1481
-#: mod/content.php:373 mod/photos.php:1608
-msgid "Attending"
-msgid_plural "Attending"
-msgstr[0] ""
-msgstr[1] ""
+#: include/nav.php:83 view/theme/frio/theme.php:251
+msgid "Your photos"
+msgstr ""
 
-#: include/conversation.php:586 mod/content.php:373 mod/photos.php:1608
-msgid "Not attending"
+#: include/nav.php:84 include/identity.php:738 include/identity.php:741
+#: view/theme/frio/theme.php:252
+msgid "Videos"
 msgstr ""
 
-#: include/conversation.php:586 mod/content.php:373 mod/photos.php:1608
-msgid "Might attend"
+#: include/nav.php:84 view/theme/frio/theme.php:252
+msgid "Your videos"
 msgstr ""
 
-#: include/conversation.php:708 mod/content.php:453 mod/content.php:758
-#: mod/photos.php:1681 object/Item.php:133
-msgid "Select"
+#: include/nav.php:85 include/nav.php:149 include/identity.php:750
+#: include/identity.php:761 mod/cal.php:275 mod/events.php:379
+#: view/theme/frio/theme.php:253 view/theme/frio/theme.php:257
+msgid "Events"
 msgstr ""
 
-#: include/conversation.php:709 mod/admin.php:1414 mod/content.php:454
-#: mod/content.php:759 mod/photos.php:1682 mod/contacts.php:808
-#: mod/contacts.php:1016 mod/group.php:171 mod/settings.php:741
-#: object/Item.php:134
-msgid "Delete"
+#: include/nav.php:85 view/theme/frio/theme.php:253
+msgid "Your events"
 msgstr ""
 
-#: include/conversation.php:753 mod/content.php:487 mod/content.php:910
-#: mod/content.php:911 object/Item.php:367 object/Item.php:368
-#, php-format
-msgid "View %s's profile @ %s"
+#: include/nav.php:86
+msgid "Personal notes"
 msgstr ""
 
-#: include/conversation.php:765 object/Item.php:355
-msgid "Categories:"
+#: include/nav.php:86
+msgid "Your personal notes"
 msgstr ""
 
-#: include/conversation.php:766 object/Item.php:356
-msgid "Filed under:"
+#: include/nav.php:95 mod/bookmarklet.php:12 boot.php:1793
+msgid "Login"
 msgstr ""
 
-#: include/conversation.php:773 mod/content.php:497 mod/content.php:923
-#: object/Item.php:381
-#, php-format
-msgid "%s from %s"
+#: include/nav.php:95
+msgid "Sign in"
 msgstr ""
 
-#: include/conversation.php:789 mod/content.php:513
-msgid "View in context"
+#: include/nav.php:105 include/nav.php:161
+#: include/NotificationsManager.php:174
+msgid "Home"
 msgstr ""
 
-#: include/conversation.php:791 include/conversation.php:1264
-#: mod/content.php:515 mod/content.php:948 mod/photos.php:1570
-#: mod/editpost.php:124 mod/wallmessage.php:156 mod/message.php:356
-#: mod/message.php:548 object/Item.php:406
-msgid "Please wait"
+#: include/nav.php:105
+msgid "Home Page"
 msgstr ""
 
-#: include/conversation.php:870
-msgid "remove"
+#: include/nav.php:109 mod/register.php:289 boot.php:1768
+msgid "Register"
 msgstr ""
 
-#: include/conversation.php:874
-msgid "Delete Selected Items"
+#: include/nav.php:109
+msgid "Create an account"
 msgstr ""
 
-#: include/conversation.php:966
-msgid "Follow Thread"
+#: include/nav.php:115 mod/help.php:47 view/theme/vier/theme.php:298
+msgid "Help"
 msgstr ""
 
-#: include/conversation.php:967 include/Contact.php:404
-msgid "View Status"
+#: include/nav.php:115
+msgid "Help and documentation"
 msgstr ""
 
-#: include/conversation.php:968 include/conversation.php:984
-#: include/Contact.php:347 include/Contact.php:360 include/Contact.php:405
-#: mod/dirfind.php:203 mod/directory.php:155 mod/match.php:71
-#: mod/allfriends.php:65 mod/suggest.php:82
-msgid "View Profile"
+#: include/nav.php:119
+msgid "Apps"
 msgstr ""
 
-#: include/conversation.php:969 include/Contact.php:406
-msgid "View Photos"
+#: include/nav.php:119
+msgid "Addon applications, utilities, games"
 msgstr ""
 
-#: include/conversation.php:970 include/Contact.php:407
-msgid "Network Posts"
+#: include/nav.php:123 include/text.php:1012 mod/search.php:149
+msgid "Search"
 msgstr ""
 
-#: include/conversation.php:971 include/Contact.php:408
-msgid "View Contact"
+#: include/nav.php:123
+msgid "Search site content"
 msgstr ""
 
-#: include/conversation.php:972 include/Contact.php:410
-msgid "Send PM"
+#: include/nav.php:126 include/text.php:1020
+msgid "Full Text"
 msgstr ""
 
-#: include/conversation.php:976 include/Contact.php:411
-msgid "Poke"
+#: include/nav.php:127 include/text.php:1021
+msgid "Tags"
 msgstr ""
 
-#: include/conversation.php:1097
-#, php-format
-msgid "%s likes this."
+#: include/nav.php:128 include/nav.php:192 include/identity.php:783
+#: include/identity.php:786 include/text.php:1022 mod/contacts.php:792
+#: mod/contacts.php:853 mod/viewcontacts.php:116 view/theme/frio/theme.php:260
+msgid "Contacts"
 msgstr ""
 
-#: include/conversation.php:1100
-#, php-format
-msgid "%s doesn't like this."
+#: include/nav.php:143 include/nav.php:145 mod/community.php:36
+msgid "Community"
 msgstr ""
 
-#: include/conversation.php:1103
-#, php-format
-msgid "%s attends."
+#: include/nav.php:143
+msgid "Conversations on this site"
 msgstr ""
 
-#: include/conversation.php:1106
-#, php-format
-msgid "%s doesn't attend."
+#: include/nav.php:145
+msgid "Conversations on the network"
 msgstr ""
 
-#: include/conversation.php:1109
-#, php-format
-msgid "%s attends maybe."
-msgstr ""
-
-#: include/conversation.php:1119
-msgid "and"
-msgstr ""
-
-#: include/conversation.php:1125
-#, php-format
-msgid ", and %d other people"
+#: include/nav.php:149 include/identity.php:753 include/identity.php:764
+#: view/theme/frio/theme.php:257
+msgid "Events and Calendar"
 msgstr ""
 
-#: include/conversation.php:1134
-#, php-format
-msgid "<span  %1$s>%2$d people</span> like this"
+#: include/nav.php:152
+msgid "Directory"
 msgstr ""
 
-#: include/conversation.php:1135
-#, php-format
-msgid "%s like this."
+#: include/nav.php:152
+msgid "People directory"
 msgstr ""
 
-#: include/conversation.php:1138
-#, php-format
-msgid "<span  %1$s>%2$d people</span> don't like this"
+#: include/nav.php:154
+msgid "Information"
 msgstr ""
 
-#: include/conversation.php:1139
-#, php-format
-msgid "%s don't like this."
+#: include/nav.php:154
+msgid "Information about this friendica instance"
 msgstr ""
 
-#: include/conversation.php:1142
-#, php-format
-msgid "<span  %1$s>%2$d people</span> attend"
+#: include/nav.php:158 include/NotificationsManager.php:160 mod/admin.php:411
+#: view/theme/frio/theme.php:256
+msgid "Network"
 msgstr ""
 
-#: include/conversation.php:1143
-#, php-format
-msgid "%s attend."
+#: include/nav.php:158 view/theme/frio/theme.php:256
+msgid "Conversations from your friends"
 msgstr ""
 
-#: include/conversation.php:1146
-#, php-format
-msgid "<span  %1$s>%2$d people</span> don't attend"
+#: include/nav.php:159
+msgid "Network Reset"
 msgstr ""
 
-#: include/conversation.php:1147
-#, php-format
-msgid "%s don't attend."
+#: include/nav.php:159
+msgid "Load Network page with no filters"
 msgstr ""
 
-#: include/conversation.php:1150
-#, php-format
-msgid "<span  %1$s>%2$d people</span> attend maybe"
+#: include/nav.php:166 include/NotificationsManager.php:181
+msgid "Introductions"
 msgstr ""
 
-#: include/conversation.php:1151
-#, php-format
-msgid "%s anttend maybe."
+#: include/nav.php:166
+msgid "Friend Requests"
 msgstr ""
 
-#: include/conversation.php:1190 include/conversation.php:1208
-msgid "Visible to <strong>everybody</strong>"
+#: include/nav.php:169 mod/notifications.php:96
+msgid "Notifications"
 msgstr ""
 
-#: include/conversation.php:1191 include/conversation.php:1209
-#: mod/wallmessage.php:127 mod/wallmessage.php:135 mod/message.php:291
-#: mod/message.php:299 mod/message.php:442 mod/message.php:450
-msgid "Please enter a link URL:"
+#: include/nav.php:170
+msgid "See all notifications"
 msgstr ""
 
-#: include/conversation.php:1192 include/conversation.php:1210
-msgid "Please enter a video link/URL:"
+#: include/nav.php:171 mod/settings.php:902
+msgid "Mark as seen"
 msgstr ""
 
-#: include/conversation.php:1193 include/conversation.php:1211
-msgid "Please enter an audio link/URL:"
+#: include/nav.php:171
+msgid "Mark all system notifications seen"
 msgstr ""
 
-#: include/conversation.php:1194 include/conversation.php:1212
-msgid "Tag term:"
+#: include/nav.php:175 mod/message.php:190 view/theme/frio/theme.php:258
+msgid "Messages"
 msgstr ""
 
-#: include/conversation.php:1195 include/conversation.php:1213
-#: mod/filer.php:30
-msgid "Save to Folder:"
+#: include/nav.php:175 view/theme/frio/theme.php:258
+msgid "Private mail"
 msgstr ""
 
-#: include/conversation.php:1196 include/conversation.php:1214
-msgid "Where are you right now?"
+#: include/nav.php:176
+msgid "Inbox"
 msgstr ""
 
-#: include/conversation.php:1197
-msgid "Delete item(s)?"
+#: include/nav.php:177
+msgid "Outbox"
 msgstr ""
 
-#: include/conversation.php:1245 mod/photos.php:1569
-msgid "Share"
+#: include/nav.php:178 mod/message.php:16
+msgid "New Message"
 msgstr ""
 
-#: include/conversation.php:1246 mod/editpost.php:110 mod/wallmessage.php:154
-#: mod/message.php:354 mod/message.php:545
-msgid "Upload photo"
+#: include/nav.php:181
+msgid "Manage"
 msgstr ""
 
-#: include/conversation.php:1247 mod/editpost.php:111
-msgid "upload photo"
+#: include/nav.php:181
+msgid "Manage other pages"
 msgstr ""
 
-#: include/conversation.php:1248 mod/editpost.php:112
-msgid "Attach file"
+#: include/nav.php:184 mod/settings.php:81
+msgid "Delegations"
 msgstr ""
 
-#: include/conversation.php:1249 mod/editpost.php:113
-msgid "attach file"
+#: include/nav.php:184 mod/delegate.php:130
+msgid "Delegate Page Management"
 msgstr ""
 
-#: include/conversation.php:1250 mod/editpost.php:114 mod/wallmessage.php:155
-#: mod/message.php:355 mod/message.php:546
-msgid "Insert web link"
+#: include/nav.php:186 mod/newmember.php:22 mod/settings.php:111
+#: mod/admin.php:1524 mod/admin.php:1782 view/theme/frio/theme.php:259
+msgid "Settings"
 msgstr ""
 
-#: include/conversation.php:1251 mod/editpost.php:115
-msgid "web link"
+#: include/nav.php:186 view/theme/frio/theme.php:259
+msgid "Account settings"
 msgstr ""
 
-#: include/conversation.php:1252 mod/editpost.php:116
-msgid "Insert video link"
+#: include/nav.php:189 include/identity.php:282
+msgid "Profiles"
 msgstr ""
 
-#: include/conversation.php:1253 mod/editpost.php:117
-msgid "video link"
+#: include/nav.php:189
+msgid "Manage/Edit Profiles"
 msgstr ""
 
-#: include/conversation.php:1254 mod/editpost.php:118
-msgid "Insert audio link"
+#: include/nav.php:192 view/theme/frio/theme.php:260
+msgid "Manage/edit friends and contacts"
 msgstr ""
 
-#: include/conversation.php:1255 mod/editpost.php:119
-msgid "audio link"
+#: include/nav.php:197 mod/admin.php:186
+msgid "Admin"
 msgstr ""
 
-#: include/conversation.php:1256 mod/editpost.php:120
-msgid "Set your location"
+#: include/nav.php:197
+msgid "Site setup and configuration"
 msgstr ""
 
-#: include/conversation.php:1257 mod/editpost.php:121
-msgid "set location"
+#: include/nav.php:200
+msgid "Navigation"
 msgstr ""
 
-#: include/conversation.php:1258 mod/editpost.php:122
-msgid "Clear browser location"
+#: include/nav.php:200
+msgid "Site map"
 msgstr ""
 
-#: include/conversation.php:1259 mod/editpost.php:123
-msgid "clear location"
+#: include/photos.php:53 mod/fbrowser.php:41 mod/fbrowser.php:62
+#: mod/photos.php:180 mod/photos.php:1086 mod/photos.php:1211
+#: mod/photos.php:1232 mod/photos.php:1795 mod/photos.php:1807
+msgid "Contact Photos"
 msgstr ""
 
-#: include/conversation.php:1261 mod/editpost.php:137
-msgid "Set title"
+#: include/security.php:22
+msgid "Welcome "
 msgstr ""
 
-#: include/conversation.php:1263 mod/editpost.php:139
-msgid "Categories (comma-separated list)"
+#: include/security.php:23
+msgid "Please upload a profile photo."
 msgstr ""
 
-#: include/conversation.php:1265 mod/editpost.php:125
-msgid "Permission settings"
+#: include/security.php:26
+msgid "Welcome back "
 msgstr ""
 
-#: include/conversation.php:1266 mod/editpost.php:154
-msgid "permissions"
+#: include/security.php:373
+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/conversation.php:1274 mod/editpost.php:134
-msgid "Public post"
+#: include/NotificationsManager.php:153
+msgid "System"
 msgstr ""
 
-#: include/conversation.php:1279 mod/events.php:504 mod/content.php:737
-#: mod/photos.php:1591 mod/photos.php:1639 mod/photos.php:1725
-#: mod/editpost.php:145 object/Item.php:729
-msgid "Preview"
+#: include/NotificationsManager.php:167 mod/profiles.php:703
+#: mod/network.php:845
+msgid "Personal"
 msgstr ""
 
-#: include/conversation.php:1289
-msgid "Post to Groups"
+#: include/NotificationsManager.php:234 include/NotificationsManager.php:244
+#, php-format
+msgid "%s commented on %s's post"
 msgstr ""
 
-#: include/conversation.php:1290
-msgid "Post to Contacts"
+#: include/NotificationsManager.php:243
+#, php-format
+msgid "%s created a new post"
 msgstr ""
 
-#: include/conversation.php:1291
-msgid "Private post"
+#: include/NotificationsManager.php:256
+#, php-format
+msgid "%s liked %s's post"
 msgstr ""
 
-#: include/conversation.php:1296 include/identity.php:256 mod/editpost.php:152
-msgid "Message"
+#: include/NotificationsManager.php:267
+#, php-format
+msgid "%s disliked %s's post"
 msgstr ""
 
-#: include/conversation.php:1297 mod/editpost.php:153
-msgid "Browser"
+#: include/NotificationsManager.php:278
+#, php-format
+msgid "%s is attending %s's event"
 msgstr ""
 
-#: include/conversation.php:1453
-msgid "View all"
+#: include/NotificationsManager.php:289
+#, php-format
+msgid "%s is not attending %s's event"
 msgstr ""
 
-#: include/conversation.php:1475
-msgid "Like"
-msgid_plural "Likes"
-msgstr[0] ""
-msgstr[1] ""
-
-#: include/conversation.php:1478
-msgid "Dislike"
-msgid_plural "Dislikes"
-msgstr[0] ""
-msgstr[1] ""
-
-#: include/conversation.php:1484
-msgid "Not Attending"
-msgid_plural "Not Attending"
-msgstr[0] ""
-msgstr[1] ""
-
-#: include/photos.php:53 mod/fbrowser.php:41 mod/fbrowser.php:62
-#: mod/photos.php:180 mod/photos.php:1086 mod/photos.php:1211
-#: mod/photos.php:1232 mod/photos.php:1795 mod/photos.php:1807
-msgid "Contact Photos"
+#: include/NotificationsManager.php:300
+#, php-format
+msgid "%s may attend %s's event"
 msgstr ""
 
-#: include/identity.php:42
-msgid "Requested account is not available."
+#: include/NotificationsManager.php:315
+#, php-format
+msgid "%s is now friends with %s"
 msgstr ""
 
-#: include/identity.php:51 mod/profile.php:21
-msgid "Requested profile is not available."
+#: include/NotificationsManager.php:748
+msgid "Friend Suggestion"
 msgstr ""
 
-#: include/identity.php:95 include/identity.php:311 include/identity.php:688
-msgid "Edit profile"
+#: include/NotificationsManager.php:781
+msgid "Friend/Connect Request"
 msgstr ""
 
-#: include/identity.php:251
-msgid "Atom feed"
+#: include/NotificationsManager.php:781
+msgid "New Follower"
 msgstr ""
 
-#: include/identity.php:282 include/nav.php:189
-msgid "Profiles"
+#: include/dbstructure.php:26
+#, php-format
+msgid ""
+"\n"
+"\t\t\tThe friendica developers released update %s recently,\n"
+"\t\t\tbut when I tried to install it, something went terribly wrong.\n"
+"\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n"
+"\t\t\tfriendica developer if you can not help me on your own. My database "
+"might be invalid."
 msgstr ""
 
-#: include/identity.php:282
-msgid "Manage/edit profiles"
+#: include/dbstructure.php:31
+#, php-format
+msgid ""
+"The error message is\n"
+"[pre]%s[/pre]"
 msgstr ""
 
-#: include/identity.php:287 include/identity.php:313 mod/profiles.php:795
-msgid "Change profile photo"
+#: include/dbstructure.php:183
+msgid "Errors encountered creating database tables."
 msgstr ""
 
-#: include/identity.php:288 mod/profiles.php:796
-msgid "Create New Profile"
+#: include/dbstructure.php:260
+msgid "Errors encountered performing database changes."
 msgstr ""
 
-#: include/identity.php:298 mod/profiles.php:785
-msgid "Profile Image"
+#: include/delivery.php:446
+msgid "(no subject)"
 msgstr ""
 
-#: include/identity.php:301 mod/profiles.php:787
-msgid "visible to everybody"
+#: include/diaspora.php:1958
+msgid "Sharing notification from Diaspora network"
 msgstr ""
 
-#: include/identity.php:302 mod/profiles.php:691 mod/profiles.php:788
-msgid "Edit visibility"
+#: include/diaspora.php:2864
+msgid "Attachments:"
 msgstr ""
 
-#: include/identity.php:330 include/identity.php:616 mod/notifications.php:238
-#: mod/directory.php:139
-msgid "Gender:"
+#: include/network.php:595
+msgid "view full size"
 msgstr ""
 
-#: include/identity.php:333 include/identity.php:636 mod/directory.php:141
-msgid "Status:"
+#: include/Contact.php:340 include/Contact.php:353 include/Contact.php:398
+#: include/conversation.php:968 include/conversation.php:984
+#: mod/allfriends.php:65 mod/directory.php:155 mod/dirfind.php:203
+#: mod/match.php:71 mod/suggest.php:82
+msgid "View Profile"
 msgstr ""
 
-#: include/identity.php:335 include/identity.php:647 mod/directory.php:143
-msgid "Homepage:"
+#: include/Contact.php:397 include/conversation.php:967
+msgid "View Status"
 msgstr ""
 
-#: include/identity.php:337 include/identity.php:657 mod/notifications.php:234
-#: mod/directory.php:145 mod/contacts.php:632
-msgid "About:"
+#: include/Contact.php:399 include/conversation.php:969
+msgid "View Photos"
 msgstr ""
 
-#: include/identity.php:339 mod/contacts.php:630
-msgid "XMPP:"
+#: include/Contact.php:400 include/conversation.php:970
+msgid "Network Posts"
 msgstr ""
 
-#: include/identity.php:422 mod/notifications.php:246 mod/contacts.php:50
-msgid "Network:"
+#: include/Contact.php:401 include/conversation.php:971
+msgid "View Contact"
 msgstr ""
 
-#: include/identity.php:451 include/identity.php:535
-msgid "g A l F d"
+#: include/Contact.php:402
+msgid "Drop Contact"
 msgstr ""
 
-#: include/identity.php:452 include/identity.php:536
-msgid "F d"
+#: include/Contact.php:403 include/conversation.php:972
+msgid "Send PM"
 msgstr ""
 
-#: include/identity.php:497 include/identity.php:582
-msgid "[today]"
+#: include/Contact.php:404 include/conversation.php:976
+msgid "Poke"
 msgstr ""
 
-#: include/identity.php:509
-msgid "Birthday Reminders"
+#: include/Contact.php:775
+msgid "Organisation"
 msgstr ""
 
-#: include/identity.php:510
-msgid "Birthdays this week:"
+#: include/Contact.php:778
+msgid "News"
 msgstr ""
 
-#: include/identity.php:569
-msgid "[No description]"
+#: include/Contact.php:781
+msgid "Forum"
 msgstr ""
 
-#: include/identity.php:593
-msgid "Event Reminders"
+#: include/api.php:1018
+#, php-format
+msgid "Daily posting limit of %d posts reached. The post was rejected."
 msgstr ""
 
-#: include/identity.php:594
-msgid "Events this week:"
+#: include/api.php:1038
+#, php-format
+msgid "Weekly posting limit of %d posts reached. The post was rejected."
 msgstr ""
 
-#: include/identity.php:605 include/identity.php:691 include/identity.php:722
-#: include/nav.php:82 mod/profperm.php:104 mod/contacts.php:639
-#: mod/contacts.php:841 mod/newmember.php:32 view/theme/frio/theme.php:250
-msgid "Profile"
+#: include/api.php:1059
+#, php-format
+msgid "Monthly posting limit of %d posts reached. The post was rejected."
 msgstr ""
 
-#: include/identity.php:614 mod/settings.php:1279
-msgid "Full Name:"
+#: include/bbcode.php:350 include/bbcode.php:1057 include/bbcode.php:1058
+msgid "Image/photo"
 msgstr ""
 
-#: include/identity.php:621
-msgid "j F, Y"
+#: include/bbcode.php:467
+#, php-format
+msgid "<a href=\"%1$s\" target=\"_blank\">%2$s</a> %3$s"
 msgstr ""
 
-#: include/identity.php:622
-msgid "j F"
+#: include/bbcode.php:1017 include/bbcode.php:1037
+msgid "$1 wrote:"
 msgstr ""
 
-#: include/identity.php:633
-msgid "Age:"
+#: include/bbcode.php:1066 include/bbcode.php:1067
+msgid "Encrypted content"
 msgstr ""
 
-#: include/identity.php:642
-#, php-format
-msgid "for %1$d %2$s"
+#: include/bbcode.php:1169
+msgid "Invalid source protocol"
 msgstr ""
 
-#: include/identity.php:645 mod/profiles.php:710
-msgid "Sexual Preference:"
+#: include/bbcode.php:1179
+msgid "Invalid link protocol"
 msgstr ""
 
-#: include/identity.php:649 mod/profiles.php:737
-msgid "Hometown:"
+#: include/conversation.php:147
+#, php-format
+msgid "%1$s attends %2$s's %3$s"
 msgstr ""
 
-#: include/identity.php:651 mod/notifications.php:236 mod/contacts.php:634
-#: mod/follow.php:134
-msgid "Tags:"
+#: include/conversation.php:150
+#, php-format
+msgid "%1$s doesn't attend %2$s's %3$s"
 msgstr ""
 
-#: include/identity.php:653 mod/profiles.php:738
-msgid "Political Views:"
+#: include/conversation.php:153
+#, php-format
+msgid "%1$s attends maybe %2$s's %3$s"
 msgstr ""
 
-#: include/identity.php:655
-msgid "Religion:"
+#: include/conversation.php:185 mod/dfrn_confirm.php:477
+#, php-format
+msgid "%1$s is now friends with %2$s"
 msgstr ""
 
-#: include/identity.php:659
-msgid "Hobbies/Interests:"
+#: include/conversation.php:219
+#, php-format
+msgid "%1$s poked %2$s"
 msgstr ""
 
-#: include/identity.php:661 mod/profiles.php:742
-msgid "Likes:"
+#: include/conversation.php:239 mod/mood.php:62
+#, php-format
+msgid "%1$s is currently %2$s"
 msgstr ""
 
-#: include/identity.php:663 mod/profiles.php:743
-msgid "Dislikes:"
+#: include/conversation.php:278 mod/tagger.php:95
+#, php-format
+msgid "%1$s tagged %2$s's %3$s with %4$s"
 msgstr ""
 
-#: include/identity.php:666
-msgid "Contact information and Social Networks:"
+#: include/conversation.php:303
+msgid "post/item"
 msgstr ""
 
-#: include/identity.php:668
-msgid "Musical interests:"
+#: include/conversation.php:304
+#, php-format
+msgid "%1$s marked %2$s's %3$s as favorite"
 msgstr ""
 
-#: include/identity.php:670
-msgid "Books, literature:"
+#: include/conversation.php:585 mod/content.php:372 mod/profiles.php:346
+#: mod/photos.php:1607
+msgid "Likes"
 msgstr ""
 
-#: include/identity.php:672
-msgid "Television:"
+#: include/conversation.php:585 mod/content.php:372 mod/profiles.php:350
+#: mod/photos.php:1607
+msgid "Dislikes"
 msgstr ""
 
-#: include/identity.php:674
-msgid "Film/dance/culture/entertainment:"
+#: include/conversation.php:586 include/conversation.php:1481
+#: mod/content.php:373 mod/photos.php:1608
+msgid "Attending"
+msgid_plural "Attending"
+msgstr[0] ""
+msgstr[1] ""
+
+#: include/conversation.php:586 mod/content.php:373 mod/photos.php:1608
+msgid "Not attending"
 msgstr ""
 
-#: include/identity.php:676
-msgid "Love/Romance:"
+#: include/conversation.php:586 mod/content.php:373 mod/photos.php:1608
+msgid "Might attend"
 msgstr ""
 
-#: include/identity.php:678
-msgid "Work/employment:"
+#: include/conversation.php:708 mod/content.php:453 mod/content.php:758
+#: mod/photos.php:1681 object/Item.php:133
+msgid "Select"
 msgstr ""
 
-#: include/identity.php:680
-msgid "School/education:"
+#: include/conversation.php:709 mod/group.php:171 mod/content.php:454
+#: mod/content.php:759 mod/photos.php:1682 mod/settings.php:741
+#: mod/admin.php:1414 mod/contacts.php:808 mod/contacts.php:1007
+#: object/Item.php:134
+msgid "Delete"
 msgstr ""
 
-#: include/identity.php:684
-msgid "Forums:"
+#: include/conversation.php:753 mod/content.php:487 mod/content.php:910
+#: mod/content.php:911 object/Item.php:367 object/Item.php:368
+#, php-format
+msgid "View %s's profile @ %s"
 msgstr ""
 
-#: include/identity.php:692 mod/events.php:507
-msgid "Basic"
+#: include/conversation.php:765 object/Item.php:355
+msgid "Categories:"
 msgstr ""
 
-#: include/identity.php:693 mod/events.php:508 mod/admin.php:959
-#: mod/contacts.php:870
-msgid "Advanced"
+#: include/conversation.php:766 object/Item.php:356
+msgid "Filed under:"
 msgstr ""
 
-#: include/identity.php:714 include/nav.php:81 mod/contacts.php:637
-#: mod/contacts.php:833 view/theme/frio/theme.php:249
-msgid "Status"
+#: include/conversation.php:773 mod/content.php:497 mod/content.php:923
+#: object/Item.php:381
+#, php-format
+msgid "%s from %s"
 msgstr ""
 
-#: include/identity.php:717 mod/contacts.php:836 mod/follow.php:143
-msgid "Status Messages and Posts"
+#: include/conversation.php:789 mod/content.php:513
+msgid "View in context"
 msgstr ""
 
-#: include/identity.php:725 mod/contacts.php:844
-msgid "Profile Details"
+#: include/conversation.php:791 include/conversation.php:1264
+#: mod/editpost.php:124 mod/wallmessage.php:156 mod/message.php:356
+#: mod/message.php:548 mod/content.php:515 mod/content.php:948
+#: mod/photos.php:1570 object/Item.php:406
+msgid "Please wait"
 msgstr ""
 
-#: include/identity.php:730 include/nav.php:83 mod/fbrowser.php:32
-#: view/theme/frio/theme.php:251
-msgid "Photos"
+#: include/conversation.php:870
+msgid "remove"
 msgstr ""
 
-#: include/identity.php:733 mod/photos.php:87
-msgid "Photo Albums"
+#: include/conversation.php:874
+msgid "Delete Selected Items"
 msgstr ""
 
-#: include/identity.php:738 include/identity.php:741 include/nav.php:84
-#: view/theme/frio/theme.php:252
-msgid "Videos"
+#: include/conversation.php:966
+msgid "Follow Thread"
 msgstr ""
 
-#: include/identity.php:750 include/identity.php:761 include/nav.php:85
-#: include/nav.php:149 mod/events.php:379 mod/cal.php:275
-#: view/theme/frio/theme.php:253 view/theme/frio/theme.php:257
-msgid "Events"
+#: include/conversation.php:1097
+#, php-format
+msgid "%s likes this."
 msgstr ""
 
-#: include/identity.php:753 include/identity.php:764 include/nav.php:149
-#: view/theme/frio/theme.php:257
-msgid "Events and Calendar"
+#: include/conversation.php:1100
+#, php-format
+msgid "%s doesn't like this."
 msgstr ""
 
-#: include/identity.php:772 mod/notes.php:46
-msgid "Personal Notes"
+#: include/conversation.php:1103
+#, php-format
+msgid "%s attends."
 msgstr ""
 
-#: include/identity.php:775
-msgid "Only You Can See This"
+#: include/conversation.php:1106
+#, php-format
+msgid "%s doesn't attend."
 msgstr ""
 
-#: include/follow.php:77 mod/dfrn_request.php:509
-msgid "Disallowed profile URL."
+#: include/conversation.php:1109
+#, php-format
+msgid "%s attends maybe."
 msgstr ""
 
-#: include/follow.php:82
-msgid "Connect URL missing."
+#: include/conversation.php:1119
+msgid "and"
 msgstr ""
 
-#: include/follow.php:109
-msgid ""
-"This site is not configured to allow communications with other networks."
+#: include/conversation.php:1125
+#, php-format
+msgid ", and %d other people"
 msgstr ""
 
-#: include/follow.php:110 include/follow.php:130
-msgid "No compatible communication protocols or feeds were discovered."
+#: include/conversation.php:1134
+#, php-format
+msgid "<span  %1$s>%2$d people</span> like this"
 msgstr ""
 
-#: include/follow.php:128
-msgid "The profile address specified does not provide adequate information."
+#: include/conversation.php:1135
+#, php-format
+msgid "%s like this."
 msgstr ""
 
-#: include/follow.php:132
-msgid "An author or name was not found."
+#: include/conversation.php:1138
+#, php-format
+msgid "<span  %1$s>%2$d people</span> don't like this"
 msgstr ""
 
-#: include/follow.php:134
-msgid "No browser URL could be matched to this address."
+#: include/conversation.php:1139
+#, php-format
+msgid "%s don't like this."
 msgstr ""
 
-#: include/follow.php:136
-msgid ""
-"Unable to match @-style Identity Address with a known protocol or email "
-"contact."
+#: include/conversation.php:1142
+#, php-format
+msgid "<span  %1$s>%2$d people</span> attend"
 msgstr ""
 
-#: include/follow.php:137
-msgid "Use mailto: in front of address to force email check."
+#: include/conversation.php:1143
+#, php-format
+msgid "%s attend."
 msgstr ""
 
-#: include/follow.php:143
-msgid ""
-"The profile address specified belongs to a network which has been disabled "
-"on this site."
+#: include/conversation.php:1146
+#, php-format
+msgid "<span  %1$s>%2$d people</span> don't attend"
 msgstr ""
 
-#: include/follow.php:153
-msgid ""
-"Limited profile. This person will be unable to receive direct/personal "
-"notifications from you."
+#: include/conversation.php:1147
+#, php-format
+msgid "%s don't attend."
 msgstr ""
 
-#: include/follow.php:254
-msgid "Unable to retrieve contact information."
+#: include/conversation.php:1150
+#, php-format
+msgid "<span  %1$s>%2$d people</span> attend maybe"
 msgstr ""
 
-#: include/follow.php:287
-msgid "following"
+#: include/conversation.php:1151
+#, php-format
+msgid "%s anttend maybe."
 msgstr ""
 
-#: include/Contact.php:105
-msgid "stopped following"
+#: include/conversation.php:1190 include/conversation.php:1208
+msgid "Visible to <strong>everybody</strong>"
 msgstr ""
 
-#: include/Contact.php:409
-msgid "Drop Contact"
+#: include/conversation.php:1191 include/conversation.php:1209
+#: mod/wallmessage.php:127 mod/wallmessage.php:135 mod/message.php:291
+#: mod/message.php:299 mod/message.php:442 mod/message.php:450
+msgid "Please enter a link URL:"
 msgstr ""
 
-#: include/Contact.php:784
-msgid "Organisation"
+#: include/conversation.php:1192 include/conversation.php:1210
+msgid "Please enter a video link/URL:"
 msgstr ""
 
-#: include/Contact.php:787
-msgid "News"
+#: include/conversation.php:1193 include/conversation.php:1211
+msgid "Please enter an audio link/URL:"
 msgstr ""
 
-#: include/Contact.php:790
-msgid "Forum"
+#: include/conversation.php:1194 include/conversation.php:1212
+msgid "Tag term:"
 msgstr ""
 
-#: include/oembed.php:264
-msgid "Embedded content"
+#: include/conversation.php:1195 include/conversation.php:1213
+#: mod/filer.php:30
+msgid "Save to Folder:"
 msgstr ""
 
-#: include/oembed.php:272
-msgid "Embedding disabled"
+#: include/conversation.php:1196 include/conversation.php:1214
+msgid "Where are you right now?"
 msgstr ""
 
-#: include/bbcode.php:348 include/bbcode.php:1055 include/bbcode.php:1056
-msgid "Image/photo"
+#: include/conversation.php:1197
+msgid "Delete item(s)?"
 msgstr ""
 
-#: include/bbcode.php:465
-#, php-format
-msgid "<a href=\"%1$s\" target=\"_blank\">%2$s</a> %3$s"
+#: include/conversation.php:1245 mod/photos.php:1569
+msgid "Share"
 msgstr ""
 
-#: include/bbcode.php:1015 include/bbcode.php:1035
-msgid "$1 wrote:"
+#: include/conversation.php:1246 mod/editpost.php:110 mod/wallmessage.php:154
+#: mod/message.php:354 mod/message.php:545
+msgid "Upload photo"
 msgstr ""
 
-#: include/bbcode.php:1064 include/bbcode.php:1065
-msgid "Encrypted content"
+#: include/conversation.php:1247 mod/editpost.php:111
+msgid "upload photo"
 msgstr ""
 
-#: include/contact_selectors.php:32
-msgid "Unknown | Not categorised"
+#: include/conversation.php:1248 mod/editpost.php:112
+msgid "Attach file"
 msgstr ""
 
-#: include/contact_selectors.php:33
-msgid "Block immediately"
+#: include/conversation.php:1249 mod/editpost.php:113
+msgid "attach file"
 msgstr ""
 
-#: include/contact_selectors.php:34
-msgid "Shady, spammer, self-marketer"
+#: include/conversation.php:1250 mod/editpost.php:114 mod/wallmessage.php:155
+#: mod/message.php:355 mod/message.php:546
+msgid "Insert web link"
 msgstr ""
 
-#: include/contact_selectors.php:35
-msgid "Known to me, but no opinion"
+#: include/conversation.php:1251 mod/editpost.php:115
+msgid "web link"
 msgstr ""
 
-#: include/contact_selectors.php:36
-msgid "OK, probably harmless"
+#: include/conversation.php:1252 mod/editpost.php:116
+msgid "Insert video link"
 msgstr ""
 
-#: include/contact_selectors.php:37
-msgid "Reputable, has my trust"
+#: include/conversation.php:1253 mod/editpost.php:117
+msgid "video link"
 msgstr ""
 
-#: include/contact_selectors.php:56 mod/admin.php:890
-msgid "Frequently"
+#: include/conversation.php:1254 mod/editpost.php:118
+msgid "Insert audio link"
 msgstr ""
 
-#: include/contact_selectors.php:57 mod/admin.php:891
-msgid "Hourly"
+#: include/conversation.php:1255 mod/editpost.php:119
+msgid "audio link"
 msgstr ""
 
-#: include/contact_selectors.php:58 mod/admin.php:892
-msgid "Twice daily"
+#: include/conversation.php:1256 mod/editpost.php:120
+msgid "Set your location"
 msgstr ""
 
-#: include/contact_selectors.php:59 mod/admin.php:893
-msgid "Daily"
+#: include/conversation.php:1257 mod/editpost.php:121
+msgid "set location"
 msgstr ""
 
-#: include/contact_selectors.php:60
-msgid "Weekly"
+#: include/conversation.php:1258 mod/editpost.php:122
+msgid "Clear browser location"
 msgstr ""
 
-#: include/contact_selectors.php:61
-msgid "Monthly"
+#: include/conversation.php:1259 mod/editpost.php:123
+msgid "clear location"
 msgstr ""
 
-#: include/contact_selectors.php:76 mod/dfrn_request.php:868
-msgid "Friendica"
+#: include/conversation.php:1261 mod/editpost.php:137
+msgid "Set title"
 msgstr ""
 
-#: include/contact_selectors.php:77
-msgid "OStatus"
+#: include/conversation.php:1263 mod/editpost.php:139
+msgid "Categories (comma-separated list)"
 msgstr ""
 
-#: include/contact_selectors.php:78
-msgid "RSS/Atom"
+#: include/conversation.php:1265 mod/editpost.php:125
+msgid "Permission settings"
 msgstr ""
 
-#: include/contact_selectors.php:79 include/contact_selectors.php:86
-#: mod/admin.php:1396 mod/admin.php:1409 mod/admin.php:1422 mod/admin.php:1440
-msgid "Email"
+#: include/conversation.php:1266 mod/editpost.php:154
+msgid "permissions"
 msgstr ""
 
-#: include/contact_selectors.php:80 mod/dfrn_request.php:870
-#: mod/settings.php:842
-msgid "Diaspora"
+#: include/conversation.php:1274 mod/editpost.php:134
+msgid "Public post"
 msgstr ""
 
-#: include/contact_selectors.php:81
-msgid "Facebook"
+#: include/conversation.php:1279 mod/editpost.php:145 mod/content.php:737
+#: mod/events.php:504 mod/photos.php:1591 mod/photos.php:1639
+#: mod/photos.php:1725 object/Item.php:729
+msgid "Preview"
 msgstr ""
 
-#: include/contact_selectors.php:82
-msgid "Zot!"
+#: include/conversation.php:1283 include/items.php:1974 mod/fbrowser.php:101
+#: mod/fbrowser.php:136 mod/tagrm.php:11 mod/tagrm.php:94 mod/editpost.php:148
+#: mod/message.php:220 mod/suggest.php:32 mod/photos.php:235
+#: mod/photos.php:322 mod/settings.php:679 mod/settings.php:705
+#: mod/videos.php:128 mod/contacts.php:445 mod/dfrn_request.php:876
+#: mod/follow.php:121
+msgid "Cancel"
 msgstr ""
 
-#: include/contact_selectors.php:83
-msgid "LinkedIn"
+#: include/conversation.php:1289
+msgid "Post to Groups"
 msgstr ""
 
-#: include/contact_selectors.php:84
-msgid "XMPP/IM"
+#: include/conversation.php:1290
+msgid "Post to Contacts"
 msgstr ""
 
-#: include/contact_selectors.php:85
-msgid "MySpace"
+#: include/conversation.php:1291
+msgid "Private post"
 msgstr ""
 
-#: include/contact_selectors.php:87
-msgid "Google+"
+#: include/conversation.php:1296 include/identity.php:256 mod/editpost.php:152
+msgid "Message"
 msgstr ""
 
-#: include/contact_selectors.php:88
-msgid "pump.io"
+#: include/conversation.php:1297 mod/editpost.php:153
+msgid "Browser"
 msgstr ""
 
-#: include/contact_selectors.php:89
-msgid "Twitter"
+#: include/conversation.php:1453
+msgid "View all"
 msgstr ""
 
-#: include/contact_selectors.php:90
-msgid "Diaspora Connector"
+#: include/conversation.php:1475
+msgid "Like"
+msgid_plural "Likes"
+msgstr[0] ""
+msgstr[1] ""
+
+#: include/conversation.php:1478
+msgid "Dislike"
+msgid_plural "Dislikes"
+msgstr[0] ""
+msgstr[1] ""
+
+#: include/conversation.php:1484
+msgid "Not Attending"
+msgid_plural "Not Attending"
+msgstr[0] ""
+msgstr[1] ""
+
+#: include/dfrn.php:1108
+#, php-format
+msgid "%s\\'s birthday"
 msgstr ""
 
-#: include/contact_selectors.php:91
-msgid "GNU Social"
+#: include/features.php:70
+msgid "General Features"
 msgstr ""
 
-#: include/contact_selectors.php:92
-msgid "App.net"
+#: include/features.php:72
+msgid "Multiple Profiles"
 msgstr ""
 
-#: include/contact_selectors.php:103
-msgid "Hubzilla/Redmatrix"
+#: include/features.php:72
+msgid "Ability to create multiple profiles"
 msgstr ""
 
-#: include/dbstructure.php:26
-#, php-format
-msgid ""
-"\n"
-"\t\t\tThe friendica developers released update %s recently,\n"
-"\t\t\tbut when I tried to install it, something went terribly wrong.\n"
-"\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n"
-"\t\t\tfriendica developer if you can not help me on your own. My database "
-"might be invalid."
+#: include/features.php:73
+msgid "Photo Location"
 msgstr ""
 
-#: include/dbstructure.php:31
-#, php-format
+#: include/features.php:73
 msgid ""
-"The error message is\n"
-"[pre]%s[/pre]"
+"Photo metadata is normally stripped. This extracts the location (if present) "
+"prior to stripping metadata and links it to a map."
 msgstr ""
 
-#: include/dbstructure.php:183
-msgid "Errors encountered creating database tables."
+#: include/features.php:74
+msgid "Export Public Calendar"
 msgstr ""
 
-#: include/dbstructure.php:260
-msgid "Errors encountered performing database changes."
-msgstr ""
-
-#: include/auth.php:45
-msgid "Logged out."
-msgstr ""
-
-#: include/auth.php:116 include/auth.php:178 mod/openid.php:100
-msgid "Login failed."
-msgstr ""
-
-#: include/auth.php:132 include/user.php:75
-msgid ""
-"We encountered a problem while logging in with the OpenID you provided. "
-"Please check the correct spelling of the ID."
-msgstr ""
-
-#: include/auth.php:132 include/user.php:75
-msgid "The error message was:"
-msgstr ""
-
-#: include/network.php:595
-msgid "view full size"
-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 ""
-
-#: include/group.php:209
-msgid "Default privacy group for new contacts"
-msgstr ""
-
-#: include/group.php:242
-msgid "Everybody"
-msgstr ""
-
-#: include/group.php:265
-msgid "edit"
-msgstr ""
-
-#: include/group.php:286 mod/newmember.php:61
-msgid "Groups"
-msgstr ""
-
-#: include/group.php:288
-msgid "Edit groups"
-msgstr ""
-
-#: include/group.php:290
-msgid "Edit group"
-msgstr ""
-
-#: include/group.php:291
-msgid "Create a new group"
-msgstr ""
-
-#: include/group.php:292 mod/group.php:94 mod/group.php:178
-msgid "Group Name: "
-msgstr ""
-
-#: include/group.php:294
-msgid "Contacts not in any group"
-msgstr ""
-
-#: include/group.php:296 mod/network.php:201
-msgid "add"
-msgstr ""
-
-#: include/Photo.php:1040 include/Photo.php:1056 include/Photo.php:1064
-#: include/Photo.php:1089 include/message.php:145 mod/wall_upload.php:218
-#: mod/wall_upload.php:232 mod/wall_upload.php:239 mod/item.php:477
-msgid "Wall Photos"
-msgstr ""
-
-#: include/delivery.php:446
-msgid "(no subject)"
-msgstr ""
-
-#: include/user.php:39 mod/settings.php:373
-msgid "Passwords do not match. Password unchanged."
-msgstr ""
-
-#: include/user.php:48
-msgid "An invitation is required."
-msgstr ""
-
-#: include/user.php:53
-msgid "Invitation could not be verified."
-msgstr ""
-
-#: include/user.php:61
-msgid "Invalid OpenID url"
-msgstr ""
-
-#: include/user.php:82
-msgid "Please enter the required information."
-msgstr ""
-
-#: include/user.php:96
-msgid "Please use a shorter name."
-msgstr ""
-
-#: include/user.php:98
-msgid "Name too short."
-msgstr ""
-
-#: include/user.php:113
-msgid "That doesn't appear to be your full (First Last) name."
-msgstr ""
-
-#: include/user.php:118
-msgid "Your email domain is not among those allowed on this site."
-msgstr ""
-
-#: include/user.php:121
-msgid "Not a valid email address."
-msgstr ""
-
-#: include/user.php:134
-msgid "Cannot use that email."
-msgstr ""
-
-#: include/user.php:140
-msgid "Your \"nickname\" can only contain \"a-z\", \"0-9\" and \"_\"."
-msgstr ""
-
-#: include/user.php:147 include/user.php:245
-msgid "Nickname is already registered. Please choose another."
-msgstr ""
-
-#: include/user.php:157
-msgid ""
-"Nickname was once registered here and may not be re-used. Please choose "
-"another."
-msgstr ""
-
-#: include/user.php:173
-msgid "SERIOUS ERROR: Generation of security keys failed."
-msgstr ""
-
-#: include/user.php:231
-msgid "An error occurred during registration. Please try again."
-msgstr ""
-
-#: include/user.php:256 view/theme/duepuntozero/config.php:44
-msgid "default"
-msgstr ""
-
-#: include/user.php:266
-msgid "An error occurred creating your default profile. Please try again."
-msgstr ""
-
-#: include/user.php:345 include/user.php:352 include/user.php:359
-#: mod/photos.php:66 mod/photos.php:180 mod/photos.php:751 mod/photos.php:1211
-#: mod/photos.php:1232 mod/photos.php:1819 mod/profile_photo.php:74
-#: mod/profile_photo.php:81 mod/profile_photo.php:88 mod/profile_photo.php:210
-#: mod/profile_photo.php:302 mod/profile_photo.php:311
-msgid "Profile Photos"
-msgstr ""
-
-#: include/user.php:390
-#, php-format
-msgid ""
-"\n"
-"\t\tDear %1$s,\n"
-"\t\t\tThank you for registering at %2$s. Your account is pending for "
-"approval by the administrator.\n"
-"\t"
-msgstr ""
-
-#: include/user.php:400
-#, php-format
-msgid "Registration at %s"
-msgstr ""
-
-#: include/user.php:410
-#, php-format
-msgid ""
-"\n"
-"\t\tDear %1$s,\n"
-"\t\t\tThank you for registering at %2$s. Your account has been created.\n"
-"\t"
-msgstr ""
-
-#: include/user.php:414
-#, php-format
-msgid ""
-"\n"
-"\t\tThe login details are as follows:\n"
-"\t\t\tSite Location:\t%3$s\n"
-"\t\t\tLogin Name:\t%1$s\n"
-"\t\t\tPassword:\t%5$s\n"
-"\n"
-"\t\tYou may change your password from your account \"Settings\" page after "
-"logging\n"
-"\t\tin.\n"
-"\n"
-"\t\tPlease take a few moments to review the other account settings on that "
-"page.\n"
-"\n"
-"\t\tYou may also wish to add some basic information to your default profile\n"
-"\t\t(on the \"Profiles\" page) so that other people can easily find you.\n"
-"\n"
-"\t\tWe recommend setting your full name, adding a profile photo,\n"
-"\t\tadding some profile \"keywords\" (very useful in making new friends) - "
-"and\n"
-"\t\tperhaps what country you live in; if you do not wish to be more "
-"specific\n"
-"\t\tthan that.\n"
-"\n"
-"\t\tWe fully respect your right to privacy, and none of these items are "
-"necessary.\n"
-"\t\tIf you are new and do not know anybody here, they may help\n"
-"\t\tyou to make some new and interesting friends.\n"
-"\n"
-"\n"
-"\t\tThank you and welcome to %2$s."
-msgstr ""
-
-#: include/user.php:446 mod/admin.php:1213
-#, php-format
-msgid "Registration details for %s"
-msgstr ""
-
-#: include/api.php:1018
-#, php-format
-msgid "Daily posting limit of %d posts reached. The post was rejected."
-msgstr ""
-
-#: include/api.php:1038
-#, php-format
-msgid "Weekly posting limit of %d posts reached. The post was rejected."
-msgstr ""
-
-#: include/api.php:1059
-#, php-format
-msgid "Monthly posting limit of %d posts reached. The post was rejected."
-msgstr ""
-
-#: include/features.php:70
-msgid "General Features"
-msgstr ""
-
-#: include/features.php:72
-msgid "Multiple Profiles"
-msgstr ""
-
-#: include/features.php:72
-msgid "Ability to create multiple profiles"
-msgstr ""
-
-#: include/features.php:73
-msgid "Photo Location"
-msgstr ""
-
-#: include/features.php:73
-msgid ""
-"Photo metadata is normally stripped. This extracts the location (if present) "
-"prior to stripping metadata and links it to a map."
-msgstr ""
-
-#: include/features.php:74
-msgid "Export Public Calendar"
-msgstr ""
-
-#: include/features.php:74
-msgid "Ability for visitors to download the public calendar"
+#: include/features.php:74
+msgid "Ability for visitors to download the public calendar"
 msgstr ""
 
 #: include/features.php:79
@@ -2874,581 +2376,776 @@ msgstr ""
 msgid "Show visitors public community forums at the Advanced Profile Page"
 msgstr ""
 
-#: include/nav.php:35 mod/navigation.php:19
-msgid "Nothing new here"
+#: include/follow.php:81 mod/dfrn_request.php:509
+msgid "Disallowed profile URL."
 msgstr ""
 
-#: include/nav.php:39 mod/navigation.php:23
-msgid "Clear notifications"
+#: include/follow.php:86
+msgid "Connect URL missing."
 msgstr ""
 
-#: include/nav.php:78 view/theme/frio/theme.php:246
-msgid "End this session"
+#: include/follow.php:113
+msgid ""
+"This site is not configured to allow communications with other networks."
 msgstr ""
 
-#: include/nav.php:81 include/nav.php:161 view/theme/frio/theme.php:249
-msgid "Your posts and conversations"
+#: include/follow.php:114 include/follow.php:134
+msgid "No compatible communication protocols or feeds were discovered."
 msgstr ""
 
-#: include/nav.php:82 view/theme/frio/theme.php:250
-msgid "Your profile page"
+#: include/follow.php:132
+msgid "The profile address specified does not provide adequate information."
 msgstr ""
 
-#: include/nav.php:83 view/theme/frio/theme.php:251
-msgid "Your photos"
+#: include/follow.php:136
+msgid "An author or name was not found."
 msgstr ""
 
-#: include/nav.php:84 view/theme/frio/theme.php:252
-msgid "Your videos"
+#: include/follow.php:138
+msgid "No browser URL could be matched to this address."
 msgstr ""
 
-#: include/nav.php:85 view/theme/frio/theme.php:253
-msgid "Your events"
+#: include/follow.php:140
+msgid ""
+"Unable to match @-style Identity Address with a known protocol or email "
+"contact."
 msgstr ""
 
-#: include/nav.php:86
-msgid "Personal notes"
+#: include/follow.php:141
+msgid "Use mailto: in front of address to force email check."
 msgstr ""
 
-#: include/nav.php:86
-msgid "Your personal notes"
+#: include/follow.php:147
+msgid ""
+"The profile address specified belongs to a network which has been disabled "
+"on this site."
 msgstr ""
 
-#: include/nav.php:95
-msgid "Sign in"
+#: include/follow.php:157
+msgid ""
+"Limited profile. This person will be unable to receive direct/personal "
+"notifications from you."
 msgstr ""
 
-#: include/nav.php:105
-msgid "Home Page"
+#: include/follow.php:258
+msgid "Unable to retrieve contact information."
 msgstr ""
 
-#: include/nav.php:109
-msgid "Create an account"
+#: include/identity.php:42
+msgid "Requested account is not available."
 msgstr ""
 
-#: include/nav.php:115 mod/help.php:47 view/theme/vier/theme.php:298
-msgid "Help"
+#: include/identity.php:51 mod/profile.php:21
+msgid "Requested profile is not available."
 msgstr ""
 
-#: include/nav.php:115
-msgid "Help and documentation"
+#: include/identity.php:95 include/identity.php:311 include/identity.php:688
+msgid "Edit profile"
 msgstr ""
 
-#: include/nav.php:119
-msgid "Apps"
+#: include/identity.php:251
+msgid "Atom feed"
 msgstr ""
 
-#: include/nav.php:119
-msgid "Addon applications, utilities, games"
+#: include/identity.php:282
+msgid "Manage/edit profiles"
 msgstr ""
 
-#: include/nav.php:123
-msgid "Search site content"
+#: include/identity.php:287 include/identity.php:313 mod/profiles.php:795
+msgid "Change profile photo"
 msgstr ""
 
-#: include/nav.php:143 include/nav.php:145 mod/community.php:36
-msgid "Community"
+#: include/identity.php:288 mod/profiles.php:796
+msgid "Create New Profile"
 msgstr ""
 
-#: include/nav.php:143
-msgid "Conversations on this site"
+#: include/identity.php:298 mod/profiles.php:785
+msgid "Profile Image"
 msgstr ""
 
-#: include/nav.php:145
-msgid "Conversations on the network"
+#: include/identity.php:301 mod/profiles.php:787
+msgid "visible to everybody"
 msgstr ""
 
-#: include/nav.php:152
-msgid "Directory"
+#: include/identity.php:302 mod/profiles.php:691 mod/profiles.php:788
+msgid "Edit visibility"
 msgstr ""
 
-#: include/nav.php:152
-msgid "People directory"
+#: include/identity.php:330 include/identity.php:616 mod/notifications.php:238
+#: mod/directory.php:139
+msgid "Gender:"
 msgstr ""
 
-#: include/nav.php:154
-msgid "Information"
+#: include/identity.php:333 include/identity.php:636 mod/directory.php:141
+msgid "Status:"
 msgstr ""
 
-#: include/nav.php:154
-msgid "Information about this friendica instance"
+#: include/identity.php:335 include/identity.php:647 mod/directory.php:143
+msgid "Homepage:"
 msgstr ""
 
-#: include/nav.php:158 view/theme/frio/theme.php:256
-msgid "Conversations from your friends"
+#: include/identity.php:337 include/identity.php:657 mod/notifications.php:234
+#: mod/directory.php:145 mod/contacts.php:632
+msgid "About:"
 msgstr ""
 
-#: include/nav.php:159
-msgid "Network Reset"
+#: include/identity.php:339 mod/contacts.php:630
+msgid "XMPP:"
 msgstr ""
 
-#: include/nav.php:159
-msgid "Load Network page with no filters"
+#: include/identity.php:422 mod/notifications.php:246 mod/contacts.php:50
+msgid "Network:"
 msgstr ""
 
-#: include/nav.php:166
-msgid "Friend Requests"
+#: include/identity.php:451 include/identity.php:535
+msgid "g A l F d"
 msgstr ""
 
-#: include/nav.php:169 mod/notifications.php:96
-msgid "Notifications"
+#: include/identity.php:452 include/identity.php:536
+msgid "F d"
 msgstr ""
 
-#: include/nav.php:170
-msgid "See all notifications"
+#: include/identity.php:497 include/identity.php:582
+msgid "[today]"
 msgstr ""
 
-#: include/nav.php:171 mod/settings.php:902
-msgid "Mark as seen"
+#: include/identity.php:509
+msgid "Birthday Reminders"
 msgstr ""
 
-#: include/nav.php:171
-msgid "Mark all system notifications seen"
+#: include/identity.php:510
+msgid "Birthdays this week:"
 msgstr ""
 
-#: include/nav.php:175 mod/message.php:190 view/theme/frio/theme.php:258
-msgid "Messages"
+#: include/identity.php:569
+msgid "[No description]"
 msgstr ""
 
-#: include/nav.php:175 view/theme/frio/theme.php:258
-msgid "Private mail"
+#: include/identity.php:593
+msgid "Event Reminders"
 msgstr ""
 
-#: include/nav.php:176
-msgid "Inbox"
+#: include/identity.php:594
+msgid "Events this week:"
 msgstr ""
 
-#: include/nav.php:177
-msgid "Outbox"
+#: include/identity.php:614 mod/settings.php:1279
+msgid "Full Name:"
 msgstr ""
 
-#: include/nav.php:178 mod/message.php:16
-msgid "New Message"
+#: include/identity.php:621
+msgid "j F, Y"
 msgstr ""
 
-#: include/nav.php:181
-msgid "Manage"
+#: include/identity.php:622
+msgid "j F"
 msgstr ""
 
-#: include/nav.php:181
-msgid "Manage other pages"
+#: include/identity.php:633
+msgid "Age:"
 msgstr ""
 
-#: include/nav.php:184 mod/settings.php:81
-msgid "Delegations"
+#: include/identity.php:642
+#, php-format
+msgid "for %1$d %2$s"
 msgstr ""
 
-#: include/nav.php:184 mod/delegate.php:130
-msgid "Delegate Page Management"
+#: include/identity.php:645 mod/profiles.php:710
+msgid "Sexual Preference:"
 msgstr ""
 
-#: include/nav.php:186 mod/admin.php:1524 mod/admin.php:1782
-#: mod/newmember.php:22 mod/settings.php:111 view/theme/frio/theme.php:259
-msgid "Settings"
+#: include/identity.php:649 mod/profiles.php:737
+msgid "Hometown:"
 msgstr ""
 
-#: include/nav.php:186 view/theme/frio/theme.php:259
-msgid "Account settings"
+#: include/identity.php:651 mod/notifications.php:236 mod/contacts.php:634
+#: mod/follow.php:134
+msgid "Tags:"
 msgstr ""
 
-#: include/nav.php:189
-msgid "Manage/Edit Profiles"
+#: include/identity.php:653 mod/profiles.php:738
+msgid "Political Views:"
 msgstr ""
 
-#: include/nav.php:192 view/theme/frio/theme.php:260
-msgid "Manage/edit friends and contacts"
+#: include/identity.php:655
+msgid "Religion:"
 msgstr ""
 
-#: include/nav.php:197 mod/admin.php:186
-msgid "Admin"
+#: include/identity.php:659
+msgid "Hobbies/Interests:"
 msgstr ""
 
-#: include/nav.php:197
-msgid "Site setup and configuration"
+#: include/identity.php:661 mod/profiles.php:742
+msgid "Likes:"
 msgstr ""
 
-#: include/nav.php:200
-msgid "Navigation"
+#: include/identity.php:663 mod/profiles.php:743
+msgid "Dislikes:"
 msgstr ""
 
-#: include/nav.php:200
-msgid "Site map"
+#: include/identity.php:666
+msgid "Contact information and Social Networks:"
 msgstr ""
 
-#: include/like.php:186
-#, php-format
-msgid "%1$s is attending %2$s's %3$s"
+#: include/identity.php:668
+msgid "Musical interests:"
 msgstr ""
 
-#: include/like.php:188
-#, php-format
-msgid "%1$s is not attending %2$s's %3$s"
+#: include/identity.php:670
+msgid "Books, literature:"
 msgstr ""
 
-#: include/like.php:190
-#, php-format
-msgid "%1$s may attend %2$s's %3$s"
+#: include/identity.php:672
+msgid "Television:"
 msgstr ""
 
-#: include/acl_selectors.php:327
-msgid "Post to Email"
+#: include/identity.php:674
+msgid "Film/dance/culture/entertainment:"
 msgstr ""
 
-#: include/acl_selectors.php:332
-#, php-format
-msgid "Connectors disabled, since \"%s\" is enabled."
+#: include/identity.php:676
+msgid "Love/Romance:"
 msgstr ""
 
-#: include/acl_selectors.php:333 mod/settings.php:1181
-msgid "Hide your profile details from unknown viewers?"
+#: include/identity.php:678
+msgid "Work/employment:"
 msgstr ""
 
-#: include/acl_selectors.php:338
-msgid "Visible to everybody"
+#: include/identity.php:680
+msgid "School/education:"
 msgstr ""
 
-#: include/acl_selectors.php:339 view/theme/vier/config.php:103
-msgid "show"
+#: include/identity.php:684
+msgid "Forums:"
 msgstr ""
 
-#: include/acl_selectors.php:340 view/theme/vier/config.php:103
-msgid "don't show"
+#: include/identity.php:692 mod/events.php:507
+msgid "Basic"
 msgstr ""
 
-#: include/acl_selectors.php:346 mod/editpost.php:133
-msgid "CC: email addresses"
+#: include/identity.php:693 mod/events.php:508 mod/admin.php:959
+#: mod/contacts.php:870
+msgid "Advanced"
 msgstr ""
 
-#: include/acl_selectors.php:347 mod/editpost.php:140
-msgid "Example: bob@example.com, mary@example.com"
+#: include/identity.php:717 mod/contacts.php:836 mod/follow.php:142
+msgid "Status Messages and Posts"
 msgstr ""
 
-#: include/acl_selectors.php:349 mod/events.php:509 mod/photos.php:1156
-#: mod/photos.php:1535
-msgid "Permissions"
+#: include/identity.php:725 mod/contacts.php:844
+msgid "Profile Details"
 msgstr ""
 
-#: include/acl_selectors.php:350
-msgid "Close"
+#: include/identity.php:733 mod/photos.php:87
+msgid "Photo Albums"
 msgstr ""
 
-#: include/message.php:15 include/message.php:173
-msgid "[no subject]"
-msgstr ""
-
-#: index.php:244 mod/apps.php:7
-msgid "You must be logged in to use addons. "
+#: include/identity.php:772 mod/notes.php:46
+msgid "Personal Notes"
 msgstr ""
 
-#: index.php:288 mod/help.php:53 mod/p.php:16 mod/p.php:43 mod/p.php:52
-#: mod/fetch.php:12 mod/fetch.php:39 mod/fetch.php:48
-msgid "Not Found"
+#: include/identity.php:775
+msgid "Only You Can See This"
 msgstr ""
 
-#: index.php:291 mod/help.php:56
-msgid "Page not found."
+#: include/items.php:1575 mod/dfrn_confirm.php:730 mod/dfrn_request.php:746
+msgid "[Name Withheld]"
 msgstr ""
 
-#: index.php:400 mod/profperm.php:19 mod/group.php:72
-msgid "Permission denied"
+#: include/items.php:1930 mod/viewsrc.php:15 mod/notice.php:15
+#: mod/display.php:103 mod/display.php:279 mod/display.php:478
+#: mod/admin.php:234 mod/admin.php:1471 mod/admin.php:1705
+msgid "Item not found."
 msgstr ""
 
-#: index.php:451
-msgid "toggle mobile"
+#: include/items.php:1969
+msgid "Do you really want to delete this item?"
 msgstr ""
 
-#: mod/regmod.php:55
-msgid "Account approved."
+#: include/items.php:1971 mod/api.php:105 mod/message.php:217
+#: mod/profiles.php:648 mod/profiles.php:651 mod/profiles.php:677
+#: mod/suggest.php:29 mod/register.php:245 mod/settings.php:1163
+#: mod/settings.php:1169 mod/settings.php:1177 mod/settings.php:1181
+#: mod/settings.php:1186 mod/settings.php:1192 mod/settings.php:1198
+#: mod/settings.php:1204 mod/settings.php:1230 mod/settings.php:1231
+#: mod/settings.php:1232 mod/settings.php:1233 mod/settings.php:1234
+#: mod/contacts.php:442 mod/dfrn_request.php:862 mod/follow.php:110
+msgid "Yes"
 msgstr ""
 
-#: mod/regmod.php:92
-#, php-format
-msgid "Registration revoked for %s"
+#: include/items.php:2134 mod/notes.php:22 mod/uimport.php:23
+#: mod/nogroup.php:25 mod/invite.php:15 mod/invite.php:101
+#: mod/repair_ostatus.php:9 mod/delegate.php:12 mod/attach.php:33
+#: mod/editpost.php:10 mod/group.php:19 mod/wallmessage.php:9
+#: mod/wallmessage.php:33 mod/wallmessage.php:79 mod/wallmessage.php:103
+#: mod/api.php:26 mod/api.php:31 mod/ostatus_subscribe.php:9
+#: mod/message.php:46 mod/message.php:182 mod/manage.php:96
+#: mod/crepair.php:100 mod/fsuggest.php:78 mod/mood.php:114 mod/poke.php:150
+#: mod/profile_photo.php:19 mod/profile_photo.php:175
+#: mod/profile_photo.php:186 mod/profile_photo.php:199 mod/regmod.php:110
+#: mod/notifications.php:71 mod/profiles.php:166 mod/profiles.php:605
+#: mod/allfriends.php:12 mod/cal.php:304 mod/common.php:18 mod/dirfind.php:11
+#: mod/display.php:475 mod/events.php:190 mod/suggest.php:58
+#: mod/photos.php:159 mod/photos.php:1072 mod/register.php:42
+#: mod/settings.php:22 mod/settings.php:128 mod/settings.php:665
+#: mod/wall_attach.php:67 mod/wall_attach.php:70 mod/wall_upload.php:77
+#: mod/wall_upload.php:80 mod/contacts.php:350 mod/dfrn_confirm.php:61
+#: mod/follow.php:11 mod/follow.php:73 mod/follow.php:155 mod/item.php:199
+#: mod/item.php:211 mod/network.php:4 mod/viewcontacts.php:45 index.php:401
+msgid "Permission denied."
 msgstr ""
 
-#: mod/regmod.php:104
-msgid "Please login."
+#: include/items.php:2239
+msgid "Archives"
 msgstr ""
 
-#: mod/oexchange.php:25
-msgid "Post successful."
+#: include/oembed.php:264
+msgid "Embedded content"
 msgstr ""
 
-#: mod/update_community.php:19 mod/update_notes.php:36
-#: mod/update_display.php:23 mod/update_profile.php:35
-#: mod/update_network.php:27
-msgid "[Embedded content - reload page to view]"
+#: include/oembed.php:272
+msgid "Embedding disabled"
 msgstr ""
 
-#: mod/dirfind.php:36
+#: include/ostatus.php:1825
 #, php-format
-msgid "People Search - %s"
+msgid "%s is now following %s."
 msgstr ""
 
-#: mod/dirfind.php:47
-#, php-format
-msgid "Forum Search - %s"
+#: include/ostatus.php:1826
+msgid "following"
 msgstr ""
 
-#: mod/dirfind.php:240 mod/match.php:107
-msgid "No matches"
+#: include/ostatus.php:1829
+#, php-format
+msgid "%s stopped following %s."
 msgstr ""
 
-#: mod/viewsrc.php:7
-msgid "Access denied."
+#: include/ostatus.php:1830
+msgid "stopped following"
 msgstr ""
 
-#: mod/home.php:35
-#, php-format
-msgid "Welcome to %s"
+#: include/text.php:304
+msgid "newer"
 msgstr ""
 
-#: mod/notify.php:60
-msgid "No more system notifications."
+#: include/text.php:306
+msgid "older"
 msgstr ""
 
-#: mod/notify.php:64 mod/notifications.php:111
-msgid "System Notifications"
+#: include/text.php:311
+msgid "prev"
 msgstr ""
 
-#: mod/search.php:25 mod/network.php:191
-msgid "Remove term"
+#: include/text.php:313
+msgid "first"
 msgstr ""
 
-#: mod/search.php:93 mod/search.php:99 mod/directory.php:37
-#: mod/viewcontacts.php:35 mod/videos.php:194 mod/photos.php:944
-#: mod/display.php:200 mod/community.php:22 mod/dfrn_request.php:791
-msgid "Public access denied."
+#: include/text.php:345
+msgid "last"
 msgstr ""
 
-#: mod/search.php:100
-msgid "Only logged in users are permitted to perform a search."
+#: include/text.php:348
+msgid "next"
 msgstr ""
 
-#: mod/search.php:124
-msgid "Too Many Requests"
+#: include/text.php:403
+msgid "Loading more entries..."
 msgstr ""
 
-#: mod/search.php:125
-msgid "Only one search per minute is permitted for not logged in users."
+#: include/text.php:404
+msgid "The end"
 msgstr ""
 
-#: mod/search.php:224 mod/community.php:66 mod/community.php:75
-msgid "No results."
+#: include/text.php:889
+msgid "No contacts"
 msgstr ""
 
-#: mod/search.php:230
+#: include/text.php:912
 #, php-format
-msgid "Items tagged with: %s"
-msgstr ""
+msgid "%d Contact"
+msgid_plural "%d Contacts"
+msgstr[0] ""
+msgstr[1] ""
 
-#: mod/search.php:232 mod/contacts.php:797 mod/network.php:146
-#, php-format
-msgid "Results for: %s"
+#: include/text.php:925
+msgid "View Contacts"
 msgstr ""
 
-#: mod/notifications.php:35
-msgid "Invalid request identifier."
+#: include/text.php:1013 mod/notes.php:61 mod/filer.php:31
+#: mod/editpost.php:109
+msgid "Save"
 msgstr ""
 
-#: mod/notifications.php:44 mod/notifications.php:180
-#: mod/notifications.php:252
-msgid "Discard"
+#: include/text.php:1076
+msgid "poke"
 msgstr ""
 
-#: mod/notifications.php:60 mod/notifications.php:179
-#: mod/notifications.php:251 mod/contacts.php:606 mod/contacts.php:806
-#: mod/contacts.php:1000
-msgid "Ignore"
+#: include/text.php:1076
+msgid "poked"
 msgstr ""
 
-#: mod/notifications.php:105
-msgid "Network Notifications"
+#: include/text.php:1077
+msgid "ping"
 msgstr ""
 
-#: mod/notifications.php:117
-msgid "Personal Notifications"
+#: include/text.php:1077
+msgid "pinged"
 msgstr ""
 
-#: mod/notifications.php:123
-msgid "Home Notifications"
+#: include/text.php:1078
+msgid "prod"
 msgstr ""
 
-#: mod/notifications.php:152
-msgid "Show Ignored Requests"
+#: include/text.php:1078
+msgid "prodded"
 msgstr ""
 
-#: mod/notifications.php:152
-msgid "Hide Ignored Requests"
+#: include/text.php:1079
+msgid "slap"
 msgstr ""
 
-#: mod/notifications.php:164 mod/notifications.php:222
-msgid "Notification type: "
+#: include/text.php:1079
+msgid "slapped"
 msgstr ""
 
-#: mod/notifications.php:167
-#, php-format
-msgid "suggested by %s"
+#: include/text.php:1080
+msgid "finger"
 msgstr ""
 
-#: mod/notifications.php:172 mod/notifications.php:239 mod/contacts.php:613
-msgid "Hide this contact from others"
+#: include/text.php:1080
+msgid "fingered"
 msgstr ""
 
-#: mod/notifications.php:173 mod/notifications.php:240
-msgid "Post a new friend activity"
+#: include/text.php:1081
+msgid "rebuff"
 msgstr ""
 
-#: mod/notifications.php:173 mod/notifications.php:240
-msgid "if applicable"
+#: include/text.php:1081
+msgid "rebuffed"
 msgstr ""
 
-#: mod/notifications.php:176 mod/notifications.php:249 mod/admin.php:1412
-msgid "Approve"
+#: include/text.php:1095
+msgid "happy"
 msgstr ""
 
-#: mod/notifications.php:195
-msgid "Claims to be known to you: "
+#: include/text.php:1096
+msgid "sad"
 msgstr ""
 
-#: mod/notifications.php:196
-msgid "yes"
+#: include/text.php:1097
+msgid "mellow"
 msgstr ""
 
-#: mod/notifications.php:196
-msgid "no"
+#: include/text.php:1098
+msgid "tired"
 msgstr ""
 
-#: mod/notifications.php:197
-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: "
+#: include/text.php:1099
+msgid "perky"
 msgstr ""
 
-#: mod/notifications.php:200
-msgid ""
-"Shall your connection be bidirectional or not? \"Friend\" implies that you "
-"allow to read and you subscribe to their posts. \"Sharer\" means that you "
-"allow to read but you do not want to read theirs. Approve as: "
+#: include/text.php:1100
+msgid "angry"
 msgstr ""
 
-#: mod/notifications.php:209
-msgid "Friend"
+#: include/text.php:1101
+msgid "stupified"
 msgstr ""
 
-#: mod/notifications.php:210
-msgid "Sharer"
+#: include/text.php:1102
+msgid "puzzled"
 msgstr ""
 
-#: mod/notifications.php:210
-msgid "Fan/Admirer"
+#: include/text.php:1103
+msgid "interested"
 msgstr ""
 
-#: mod/notifications.php:243 mod/contacts.php:624 mod/follow.php:126
-msgid "Profile URL"
+#: include/text.php:1104
+msgid "bitter"
 msgstr ""
 
-#: mod/notifications.php:260
-msgid "No introductions."
+#: include/text.php:1105
+msgid "cheerful"
 msgstr ""
 
-#: mod/notifications.php:299
-msgid "Show unread"
+#: include/text.php:1106
+msgid "alive"
 msgstr ""
 
-#: mod/notifications.php:299
-msgid "Show all"
+#: include/text.php:1107
+msgid "annoyed"
 msgstr ""
 
-#: mod/notifications.php:305
-#, php-format
-msgid "No more %s notifications."
+#: include/text.php:1108
+msgid "anxious"
 msgstr ""
 
-#: mod/dfrn_confirm.php:70 mod/profiles.php:19 mod/profiles.php:134
-#: mod/profiles.php:180 mod/profiles.php:617
-msgid "Profile not found."
+#: include/text.php:1109
+msgid "cranky"
 msgstr ""
 
-#: mod/dfrn_confirm.php:126 mod/fsuggest.php:20 mod/fsuggest.php:92
-#: mod/crepair.php:114
-msgid "Contact not found."
+#: include/text.php:1110
+msgid "disturbed"
 msgstr ""
 
-#: mod/dfrn_confirm.php:127
-msgid ""
-"This may occasionally happen if contact was requested by both persons and it "
-"has already been approved."
+#: include/text.php:1111
+msgid "frustrated"
 msgstr ""
 
-#: mod/dfrn_confirm.php:246
-msgid "Response from remote site was not understood."
+#: include/text.php:1112
+msgid "motivated"
 msgstr ""
 
-#: mod/dfrn_confirm.php:255 mod/dfrn_confirm.php:260
-msgid "Unexpected response from remote site: "
+#: include/text.php:1113
+msgid "relaxed"
 msgstr ""
 
-#: mod/dfrn_confirm.php:269
-msgid "Confirmation completed successfully."
+#: include/text.php:1114
+msgid "surprised"
 msgstr ""
 
-#: mod/dfrn_confirm.php:271 mod/dfrn_confirm.php:285 mod/dfrn_confirm.php:292
-msgid "Remote site reported: "
+#: include/text.php:1324 mod/videos.php:380
+msgid "View Video"
 msgstr ""
 
-#: mod/dfrn_confirm.php:283
-msgid "Temporary failure. Please wait and try again."
+#: include/text.php:1356
+msgid "bytes"
 msgstr ""
 
-#: mod/dfrn_confirm.php:290
-msgid "Introduction failed or was revoked."
+#: include/text.php:1388 include/text.php:1400
+msgid "Click to open/close"
 msgstr ""
 
-#: mod/dfrn_confirm.php:419
-msgid "Unable to set contact photo."
+#: include/text.php:1526
+msgid "View on separate page"
 msgstr ""
 
-#: mod/dfrn_confirm.php:557
-#, php-format
-msgid "No user record found for '%s' "
+#: include/text.php:1527
+msgid "view on separate page"
 msgstr ""
 
-#: mod/dfrn_confirm.php:567
-msgid "Our site encryption key is apparently messed up."
+#: include/text.php:1806
+msgid "activity"
 msgstr ""
 
-#: mod/dfrn_confirm.php:578
-msgid "Empty site URL was provided or URL could not be decrypted by us."
+#: include/text.php:1808 mod/content.php:623 object/Item.php:431
+#: object/Item.php:444
+msgid "comment"
+msgid_plural "comments"
+msgstr[0] ""
+msgstr[1] ""
+
+#: include/text.php:1809
+msgid "post"
 msgstr ""
 
-#: mod/dfrn_confirm.php:599
-msgid "Contact record was not found for you on our site."
+#: include/text.php:1977
+msgid "Item filed"
 msgstr ""
 
-#: mod/dfrn_confirm.php:613
+#: include/user.php:39 mod/settings.php:373
+msgid "Passwords do not match. Password unchanged."
+msgstr ""
+
+#: include/user.php:48
+msgid "An invitation is required."
+msgstr ""
+
+#: include/user.php:53
+msgid "Invitation could not be verified."
+msgstr ""
+
+#: include/user.php:61
+msgid "Invalid OpenID url"
+msgstr ""
+
+#: include/user.php:82
+msgid "Please enter the required information."
+msgstr ""
+
+#: include/user.php:96
+msgid "Please use a shorter name."
+msgstr ""
+
+#: include/user.php:98
+msgid "Name too short."
+msgstr ""
+
+#: include/user.php:113
+msgid "That doesn't appear to be your full (First Last) name."
+msgstr ""
+
+#: include/user.php:118
+msgid "Your email domain is not among those allowed on this site."
+msgstr ""
+
+#: include/user.php:121
+msgid "Not a valid email address."
+msgstr ""
+
+#: include/user.php:134
+msgid "Cannot use that email."
+msgstr ""
+
+#: include/user.php:140
+msgid "Your \"nickname\" can only contain \"a-z\", \"0-9\" and \"_\"."
+msgstr ""
+
+#: include/user.php:147 include/user.php:245
+msgid "Nickname is already registered. Please choose another."
+msgstr ""
+
+#: include/user.php:157
+msgid ""
+"Nickname was once registered here and may not be re-used. Please choose "
+"another."
+msgstr ""
+
+#: include/user.php:173
+msgid "SERIOUS ERROR: Generation of security keys failed."
+msgstr ""
+
+#: include/user.php:231
+msgid "An error occurred during registration. Please try again."
+msgstr ""
+
+#: include/user.php:256 view/theme/duepuntozero/config.php:44
+msgid "default"
+msgstr ""
+
+#: include/user.php:266
+msgid "An error occurred creating your default profile. Please try again."
+msgstr ""
+
+#: include/user.php:326 include/user.php:333 include/user.php:340
+#: mod/profile_photo.php:74 mod/profile_photo.php:81 mod/profile_photo.php:88
+#: mod/profile_photo.php:210 mod/profile_photo.php:302
+#: mod/profile_photo.php:311 mod/photos.php:66 mod/photos.php:180
+#: mod/photos.php:751 mod/photos.php:1211 mod/photos.php:1232
+#: mod/photos.php:1819
+msgid "Profile Photos"
+msgstr ""
+
+#: include/user.php:414
 #, php-format
-msgid "Site public key not available in contact record for URL %s."
+msgid ""
+"\n"
+"\t\tDear %1$s,\n"
+"\t\t\tThank you for registering at %2$s. Your account is pending for "
+"approval by the administrator.\n"
+"\t"
 msgstr ""
 
-#: mod/dfrn_confirm.php:633
+#: include/user.php:424
+#, php-format
+msgid "Registration at %s"
+msgstr ""
+
+#: include/user.php:434
+#, php-format
 msgid ""
-"The ID provided by your system is a duplicate on our system. It should work "
-"if you try again."
+"\n"
+"\t\tDear %1$s,\n"
+"\t\t\tThank you for registering at %2$s. Your account has been created.\n"
+"\t"
 msgstr ""
 
-#: mod/dfrn_confirm.php:644
-msgid "Unable to set your contact credentials on our system."
+#: include/user.php:438
+#, 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/dfrn_confirm.php:703
-msgid "Unable to update your contact profile details on our system"
+#: include/user.php:470 mod/admin.php:1213
+#, php-format
+msgid "Registration details for %s"
 msgstr ""
 
-#: mod/dfrn_confirm.php:775
+#: mod/oexchange.php:25
+msgid "Post successful."
+msgstr ""
+
+#: mod/viewsrc.php:7
+msgid "Access denied."
+msgstr ""
+
+#: mod/home.php:35
 #, php-format
-msgid "%1$s has joined %2$s"
+msgid "Welcome to %s"
+msgstr ""
+
+#: mod/notify.php:60
+msgid "No more system notifications."
+msgstr ""
+
+#: mod/notify.php:64 mod/notifications.php:111
+msgid "System Notifications"
+msgstr ""
+
+#: mod/search.php:25 mod/network.php:191
+msgid "Remove term"
+msgstr ""
+
+#: mod/search.php:93 mod/search.php:99 mod/community.php:22
+#: mod/directory.php:37 mod/display.php:200 mod/photos.php:944
+#: mod/videos.php:194 mod/dfrn_request.php:791 mod/viewcontacts.php:35
+msgid "Public access denied."
+msgstr ""
+
+#: mod/search.php:100
+msgid "Only logged in users are permitted to perform a search."
+msgstr ""
+
+#: mod/search.php:124
+msgid "Too Many Requests"
+msgstr ""
+
+#: mod/search.php:125
+msgid "Only one search per minute is permitted for not logged in users."
+msgstr ""
+
+#: mod/search.php:224 mod/community.php:66 mod/community.php:75
+msgid "No results."
+msgstr ""
+
+#: mod/search.php:230
+#, php-format
+msgid "Items tagged with: %s"
+msgstr ""
+
+#: mod/search.php:232 mod/contacts.php:797 mod/network.php:146
+#, php-format
+msgid "Results for: %s"
 msgstr ""
 
 #: mod/friendica.php:70
@@ -3541,6 +3238,10 @@ msgid ""
 "Password reset failed."
 msgstr ""
 
+#: mod/lostpass.php:109 boot.php:1807
+msgid "Password Reset"
+msgstr ""
+
 #: mod/lostpass.php:110
 msgid "Your password has been reset as requested."
 msgstr ""
@@ -3605,6 +3306,10 @@ msgid ""
 "your email for further instructions."
 msgstr ""
 
+#: mod/lostpass.php:161 boot.php:1795
+msgid "Nickname or Email: "
+msgstr ""
+
 #: mod/lostpass.php:162
 msgid "Reset"
 msgstr ""
@@ -3617,179 +3322,55 @@ msgstr ""
 msgid "Help:"
 msgstr ""
 
-#: mod/wall_upload.php:20 mod/wall_upload.php:33 mod/wall_upload.php:86
-#: mod/wall_upload.php:122 mod/wall_upload.php:125 mod/wall_attach.php:17
-#: mod/wall_attach.php:25 mod/wall_attach.php:76
-msgid "Invalid request."
+#: mod/help.php:53 mod/p.php:16 mod/p.php:43 mod/p.php:52 mod/fetch.php:12
+#: mod/fetch.php:39 mod/fetch.php:48 index.php:288
+msgid "Not Found"
 msgstr ""
 
-#: mod/wall_upload.php:151 mod/photos.php:786 mod/profile_photo.php:150
-#, php-format
-msgid "Image exceeds size limit of %s"
+#: mod/help.php:56 index.php:291
+msgid "Page not found."
 msgstr ""
 
-#: mod/wall_upload.php:188 mod/photos.php:826 mod/profile_photo.php:159
-msgid "Unable to process image."
+#: mod/lockview.php:31 mod/lockview.php:39
+msgid "Remote privacy information not available."
 msgstr ""
 
-#: mod/wall_upload.php:221 mod/photos.php:853 mod/profile_photo.php:307
-msgid "Image upload failed."
+#: mod/lockview.php:48
+msgid "Visible to:"
 msgstr ""
 
-#: mod/fsuggest.php:63
-msgid "Friend suggestion sent."
+#: mod/openid.php:24
+msgid "OpenID protocol error. No ID returned."
 msgstr ""
 
-#: mod/fsuggest.php:97
-msgid "Suggest Friends"
+#: mod/openid.php:60
+msgid ""
+"Account not found and OpenID registration is not permitted on this site."
 msgstr ""
 
-#: mod/fsuggest.php:99
-#, php-format
-msgid "Suggest a friend for %s"
+#: mod/uimport.php:50 mod/register.php:198
+msgid ""
+"This site has exceeded the number of allowed daily account registrations. "
+"Please try again tomorrow."
 msgstr ""
 
-#: mod/fsuggest.php:107 mod/events.php:506 mod/invite.php:140
-#: mod/crepair.php:154 mod/content.php:728 mod/profiles.php:688
-#: mod/poke.php:199 mod/photos.php:1104 mod/photos.php:1226
-#: mod/photos.php:1539 mod/photos.php:1590 mod/photos.php:1638
-#: mod/photos.php:1724 mod/install.php:272 mod/install.php:312
-#: mod/contacts.php:577 mod/mood.php:137 mod/localtime.php:45
-#: mod/message.php:357 mod/message.php:547 mod/manage.php:143
-#: object/Item.php:720 view/theme/frio/config.php:59
-#: view/theme/quattro/config.php:64 view/theme/vier/config.php:107
-#: view/theme/duepuntozero/config.php:59
-msgid "Submit"
+#: mod/uimport.php:64 mod/register.php:295
+msgid "Import"
 msgstr ""
 
-#: mod/lockview.php:31 mod/lockview.php:39
-msgid "Remote privacy information not available."
+#: mod/uimport.php:66
+msgid "Move account"
 msgstr ""
 
-#: mod/lockview.php:48
-msgid "Visible to:"
+#: mod/uimport.php:67
+msgid "You can import an account from another Friendica server."
 msgstr ""
 
-#: mod/events.php:95 mod/events.php:97
-msgid "Event can not end before it has started."
-msgstr ""
-
-#: mod/events.php:104 mod/events.php:106
-msgid "Event title and start time are required."
-msgstr ""
-
-#: mod/events.php:380 mod/cal.php:276
-msgid "View"
-msgstr ""
-
-#: mod/events.php:381
-msgid "Create New Event"
-msgstr ""
-
-#: mod/events.php:382 mod/cal.php:277
-msgid "Previous"
-msgstr ""
-
-#: mod/events.php:383 mod/cal.php:278 mod/install.php:231
-msgid "Next"
-msgstr ""
-
-#: mod/events.php:392 mod/cal.php:287
-msgid "list"
-msgstr ""
-
-#: mod/events.php:482
-msgid "Event details"
-msgstr ""
-
-#: mod/events.php:483
-msgid "Starting date and Title are required."
-msgstr ""
-
-#: mod/events.php:484 mod/events.php:485
-msgid "Event Starts:"
-msgstr ""
-
-#: mod/events.php:484 mod/events.php:496 mod/profiles.php:716
-msgid "Required"
-msgstr ""
-
-#: mod/events.php:486 mod/events.php:502
-msgid "Finish date/time is not known or not relevant"
-msgstr ""
-
-#: mod/events.php:488 mod/events.php:489
-msgid "Event Finishes:"
-msgstr ""
-
-#: mod/events.php:490 mod/events.php:503
-msgid "Adjust for viewer timezone"
-msgstr ""
-
-#: mod/events.php:492
-msgid "Description:"
-msgstr ""
-
-#: mod/events.php:496 mod/events.php:498
-msgid "Title:"
-msgstr ""
-
-#: mod/events.php:499 mod/events.php:500
-msgid "Share this event"
-msgstr ""
-
-#: mod/directory.php:197 view/theme/vier/theme.php:201
-msgid "Global Directory"
-msgstr ""
-
-#: mod/directory.php:199
-msgid "Find on this site"
-msgstr ""
-
-#: mod/directory.php:201
-msgid "Results for:"
-msgstr ""
-
-#: mod/directory.php:203
-msgid "Site Directory"
-msgstr ""
-
-#: mod/directory.php:210
-msgid "No entries (some entries may be hidden)."
-msgstr ""
-
-#: mod/openid.php:24
-msgid "OpenID protocol error. No ID returned."
-msgstr ""
-
-#: mod/openid.php:60
-msgid ""
-"Account not found and OpenID registration is not permitted on this site."
-msgstr ""
-
-#: mod/uimport.php:50 mod/register.php:198
-msgid ""
-"This site has exceeded the number of allowed daily account registrations. "
-"Please try again tomorrow."
-msgstr ""
-
-#: mod/uimport.php:64 mod/register.php:295
-msgid "Import"
-msgstr ""
-
-#: mod/uimport.php:66
-msgid "Move account"
-msgstr ""
-
-#: mod/uimport.php:67
-msgid "You can import an account from another Friendica server."
-msgstr ""
-
-#: mod/uimport.php:68
-msgid ""
-"You need to export your account from the old server and upload it here. We "
-"will recreate your old account here with all your contacts. We will try also "
-"to inform your friends that you moved here."
+#: mod/uimport.php:68
+msgid ""
+"You need to export your account from the old server and upload it here. We "
+"will recreate your old account here with all your contacts. We will try also "
+"to inform your friends that you moved here."
 msgstr ""
 
 #: mod/uimport.php:69
@@ -3808,13 +3389,13 @@ msgid ""
 "select \"Export account\""
 msgstr ""
 
-#: mod/nogroup.php:41 mod/viewcontacts.php:97 mod/contacts.php:586
-#: mod/contacts.php:939
+#: mod/nogroup.php:41 mod/contacts.php:586 mod/contacts.php:930
+#: mod/viewcontacts.php:97
 #, php-format
 msgid "Visit %s's profile [%s]"
 msgstr ""
 
-#: mod/nogroup.php:42 mod/contacts.php:940
+#: mod/nogroup.php:42 mod/contacts.php:931
 msgid "Edit contact"
 msgstr ""
 
@@ -3822,18 +3403,6 @@ msgstr ""
 msgid "Contacts who are not members of a group"
 msgstr ""
 
-#: mod/match.php:33
-msgid "No keywords to match. Please add keywords to your default profile."
-msgstr ""
-
-#: mod/match.php:86
-msgid "is interested in:"
-msgstr ""
-
-#: mod/match.php:100
-msgid "Profile Match"
-msgstr ""
-
 #: mod/uexport.php:29
 msgid "Export account"
 msgstr ""
@@ -3956,12 +3525,24 @@ msgid ""
 "important, please visit http://friendica.com"
 msgstr ""
 
+#: mod/invite.php:140 mod/localtime.php:45 mod/message.php:357
+#: mod/message.php:547 mod/manage.php:143 mod/crepair.php:154
+#: mod/content.php:728 mod/fsuggest.php:107 mod/mood.php:137 mod/poke.php:199
+#: mod/profiles.php:688 mod/events.php:506 mod/photos.php:1104
+#: mod/photos.php:1226 mod/photos.php:1539 mod/photos.php:1590
+#: mod/photos.php:1638 mod/photos.php:1724 mod/contacts.php:577
+#: mod/install.php:272 mod/install.php:312 object/Item.php:720
+#: view/theme/frio/config.php:59 view/theme/quattro/config.php:64
+#: view/theme/vier/config.php:107 view/theme/duepuntozero/config.php:59
+msgid "Submit"
+msgstr ""
+
 #: mod/fbrowser.php:133
 msgid "Files"
 msgstr ""
 
-#: mod/maintenance.php:9
-msgid "System down for maintenance"
+#: mod/profperm.php:19 mod/group.php:72 index.php:400
+msgid "Permission denied"
 msgstr ""
 
 #: mod/profperm.php:25 mod/profperm.php:56
@@ -3984,1572 +3565,1456 @@ msgstr ""
 msgid "All Contacts (with secure profile access)"
 msgstr ""
 
-#: mod/viewcontacts.php:72
-msgid "No contacts."
-msgstr ""
-
-#: mod/crepair.php:87
-msgid "Contact settings applied."
+#: mod/tagrm.php:41
+msgid "Tag removed"
 msgstr ""
 
-#: mod/crepair.php:89
-msgid "Contact update failed."
+#: mod/tagrm.php:79
+msgid "Remove Item Tag"
 msgstr ""
 
-#: mod/crepair.php:120
-msgid ""
-"<strong>WARNING: This is highly advanced</strong> and if you enter incorrect "
-"information your communications with this contact may stop working."
+#: mod/tagrm.php:81
+msgid "Select a tag to remove: "
 msgstr ""
 
-#: mod/crepair.php:121
-msgid ""
-"Please use your browser 'Back' button <strong>now</strong> if you are "
-"uncertain what to do on this page."
+#: mod/tagrm.php:93 mod/delegate.php:139
+msgid "Remove"
 msgstr ""
 
-#: mod/crepair.php:134 mod/crepair.php:136
-msgid "No mirroring"
+#: mod/repair_ostatus.php:14
+msgid "Resubscribing to OStatus contacts"
 msgstr ""
 
-#: mod/crepair.php:134
-msgid "Mirror as forwarded posting"
+#: mod/repair_ostatus.php:30
+msgid "Error"
 msgstr ""
 
-#: mod/crepair.php:134 mod/crepair.php:136
-msgid "Mirror as my own posting"
+#: mod/repair_ostatus.php:44 mod/ostatus_subscribe.php:51
+msgid "Done"
 msgstr ""
 
-#: mod/crepair.php:150
-msgid "Return to contact editor"
+#: mod/repair_ostatus.php:50 mod/ostatus_subscribe.php:73
+msgid "Keep this window open until done."
 msgstr ""
 
-#: mod/crepair.php:152
-msgid "Refetch contact data"
+#: mod/delegate.php:101
+msgid "No potential page delegates located."
 msgstr ""
 
-#: mod/crepair.php:156
-msgid "Remote Self"
+#: mod/delegate.php:132
+msgid ""
+"Delegates are able to manage all aspects of this account/page except for "
+"basic account settings. Please do not delegate your personal account to "
+"anybody that you do not trust completely."
 msgstr ""
 
-#: mod/crepair.php:159
-msgid "Mirror postings from this contact"
+#: mod/delegate.php:133
+msgid "Existing Page Managers"
 msgstr ""
 
-#: mod/crepair.php:161
-msgid ""
-"Mark this contact as remote_self, this will cause friendica to repost new "
-"entries from this contact."
+#: mod/delegate.php:135
+msgid "Existing Page Delegates"
 msgstr ""
 
-#: mod/crepair.php:165 mod/admin.php:1396 mod/admin.php:1409
-#: mod/admin.php:1422 mod/admin.php:1438 mod/settings.php:680
-#: mod/settings.php:706
-msgid "Name"
+#: mod/delegate.php:137
+msgid "Potential Delegates"
 msgstr ""
 
-#: mod/crepair.php:166
-msgid "Account Nickname"
+#: mod/delegate.php:140
+msgid "Add"
 msgstr ""
 
-#: mod/crepair.php:167
-msgid "@Tagname - overrides Name/Nickname"
+#: mod/delegate.php:141
+msgid "No entries."
 msgstr ""
 
-#: mod/crepair.php:168
-msgid "Account URL"
+#: mod/credits.php:16
+msgid "Credits"
 msgstr ""
 
-#: mod/crepair.php:169
-msgid "Friend Request URL"
+#: mod/credits.php:17
+msgid ""
+"Friendica is a community project, that would not be possible without the "
+"help of many people. Here is a list of those who have contributed to the "
+"code or the translation of Friendica. Thank you all!"
 msgstr ""
 
-#: mod/crepair.php:170
-msgid "Friend Confirm URL"
+#: mod/filer.php:30
+msgid "- select -"
 msgstr ""
 
-#: mod/crepair.php:171
-msgid "Notification Endpoint URL"
+#: mod/subthread.php:103
+#, php-format
+msgid "%1$s is following %2$s's %3$s"
 msgstr ""
 
-#: mod/crepair.php:172
-msgid "Poll/Feed URL"
+#: mod/attach.php:8
+msgid "Item not available."
 msgstr ""
 
-#: mod/crepair.php:173
-msgid "New photo from this URL"
+#: mod/attach.php:20
+msgid "Item was not found."
 msgstr ""
 
-#: mod/tagrm.php:41
-msgid "Tag removed"
+#: mod/apps.php:7 index.php:244
+msgid "You must be logged in to use addons. "
 msgstr ""
 
-#: mod/tagrm.php:79
-msgid "Remove Item Tag"
+#: mod/apps.php:11
+msgid "Applications"
 msgstr ""
 
-#: mod/tagrm.php:81
-msgid "Select a tag to remove: "
+#: mod/apps.php:14
+msgid "No installed applications."
 msgstr ""
 
-#: mod/tagrm.php:93 mod/delegate.php:139
-msgid "Remove"
+#: mod/p.php:9
+msgid "Not Extended"
 msgstr ""
 
-#: mod/ping.php:261
-msgid "{0} wants to be your friend"
+#: mod/newmember.php:6
+msgid "Welcome to Friendica"
 msgstr ""
 
-#: mod/ping.php:276
-msgid "{0} sent you a message"
+#: mod/newmember.php:8
+msgid "New Member Checklist"
 msgstr ""
 
-#: mod/ping.php:291
-msgid "{0} requested registration"
+#: mod/newmember.php:12
+msgid ""
+"We would like to offer some tips and links to help make your experience "
+"enjoyable. Click any item to visit the relevant page. A link to this page "
+"will be visible from your home page for two weeks after your initial "
+"registration and then will quietly disappear."
 msgstr ""
 
-#: mod/admin.php:92
-msgid "Theme settings updated."
+#: mod/newmember.php:14
+msgid "Getting Started"
 msgstr ""
 
-#: mod/admin.php:156 mod/admin.php:954
-msgid "Site"
+#: mod/newmember.php:18
+msgid "Friendica Walk-Through"
 msgstr ""
 
-#: mod/admin.php:157 mod/admin.php:898 mod/admin.php:1404 mod/admin.php:1420
-msgid "Users"
+#: 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 ""
 
-#: mod/admin.php:158 mod/admin.php:1522 mod/admin.php:1582 mod/settings.php:74
-msgid "Plugins"
+#: mod/newmember.php:26
+msgid "Go to Your Settings"
 msgstr ""
 
-#: mod/admin.php:159 mod/admin.php:1780 mod/admin.php:1830
-msgid "Themes"
+#: 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 ""
 
-#: mod/admin.php:160 mod/settings.php:52
-msgid "Additional features"
+#: mod/newmember.php:28
+msgid ""
+"Review the other settings, particularly the privacy settings. An unpublished "
+"directory listing is like having an unlisted phone number. In general, you "
+"should probably publish your listing - unless all of your friends and "
+"potential friends know exactly how to find you."
 msgstr ""
 
-#: mod/admin.php:161
-msgid "DB updates"
+#: mod/newmember.php:36 mod/profile_photo.php:250 mod/profiles.php:707
+msgid "Upload Profile Photo"
 msgstr ""
 
-#: mod/admin.php:162 mod/admin.php:406
-msgid "Inspect Queue"
+#: mod/newmember.php:36
+msgid ""
+"Upload a profile photo if you have not done so already. Studies have shown "
+"that people with real photos of themselves are ten times more likely to make "
+"friends than people who do not."
 msgstr ""
 
-#: mod/admin.php:163 mod/admin.php:372
-msgid "Federation Statistics"
+#: mod/newmember.php:38
+msgid "Edit Your Profile"
 msgstr ""
 
-#: mod/admin.php:177 mod/admin.php:188 mod/admin.php:1904
-msgid "Logs"
+#: 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 ""
 
-#: mod/admin.php:178 mod/admin.php:1972
-msgid "View Logs"
+#: mod/newmember.php:40
+msgid "Profile Keywords"
 msgstr ""
 
-#: mod/admin.php:179
-msgid "probe address"
+#: mod/newmember.php:40
+msgid ""
+"Set some public keywords for your default profile which describe your "
+"interests. We may be able to find other people with similar interests and "
+"suggest friendships."
 msgstr ""
 
-#: mod/admin.php:180
-msgid "check webfinger"
+#: mod/newmember.php:44
+msgid "Connecting"
 msgstr ""
 
-#: mod/admin.php:187
-msgid "Plugin Features"
+#: mod/newmember.php:51
+msgid "Importing Emails"
 msgstr ""
 
-#: mod/admin.php:189
-msgid "diagnostics"
+#: mod/newmember.php:51
+msgid ""
+"Enter your email access information on your Connector Settings page if you "
+"wish to import and interact with friends or mailing lists from your email "
+"INBOX"
 msgstr ""
 
-#: mod/admin.php:190
-msgid "User registrations waiting for confirmation"
+#: mod/newmember.php:53
+msgid "Go to Your Contacts Page"
 msgstr ""
 
-#: mod/admin.php:306
-msgid "unknown"
+#: mod/newmember.php:53
+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 ""
 
-#: mod/admin.php:365
-msgid ""
-"This page offers you some numbers to the known part of the federated social "
-"network your Friendica node is part of. These numbers are not complete but "
-"only reflect the part of the network your node is aware of."
+#: mod/newmember.php:55
+msgid "Go to Your Site's Directory"
 msgstr ""
 
-#: mod/admin.php:366
+#: mod/newmember.php:55
 msgid ""
-"The <em>Auto Discovered Contact Directory</em> feature is not enabled, it "
-"will improve the data displayed here."
+"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 ""
 
-#: mod/admin.php:371 mod/admin.php:405 mod/admin.php:484 mod/admin.php:953
-#: mod/admin.php:1403 mod/admin.php:1521 mod/admin.php:1581 mod/admin.php:1779
-#: mod/admin.php:1829 mod/admin.php:1903 mod/admin.php:1971
-msgid "Administration"
+#: mod/newmember.php:57
+msgid "Finding New People"
 msgstr ""
 
-#: mod/admin.php:378
-#, php-format
-msgid "Currently this node is aware of %d nodes from the following platforms:"
+#: mod/newmember.php:57
+msgid ""
+"On the side panel of the Contacts page are several tools to find new "
+"friends. We can match people by interest, look up people by name or "
+"interest, and provide suggestions based on network relationships. On a brand "
+"new site, friend suggestions will usually begin to be populated within 24 "
+"hours."
 msgstr ""
 
-#: mod/admin.php:408
-msgid "ID"
+#: mod/newmember.php:65
+msgid "Group Your Contacts"
 msgstr ""
 
-#: mod/admin.php:409
-msgid "Recipient Name"
+#: mod/newmember.php:65
+msgid ""
+"Once you have made some friends, organize them into private conversation "
+"groups from the sidebar of your Contacts page and then you can interact with "
+"each group privately on your Network page."
 msgstr ""
 
-#: mod/admin.php:410
-msgid "Recipient Profile"
+#: mod/newmember.php:68
+msgid "Why Aren't My Posts Public?"
 msgstr ""
 
-#: mod/admin.php:412
-msgid "Created"
+#: mod/newmember.php:68
+msgid ""
+"Friendica respects your privacy. By default, your posts will only show up to "
+"people you've added as friends. For more information, see the help section "
+"from the link above."
 msgstr ""
 
-#: mod/admin.php:413
-msgid "Last Tried"
+#: mod/newmember.php:73
+msgid "Getting Help"
 msgstr ""
 
-#: mod/admin.php:414
-msgid ""
-"This page lists the content of the queue for outgoing postings. These are "
-"postings the initial delivery failed for. They will be resend later and "
-"eventually deleted if the delivery fails permanently."
+#: mod/newmember.php:77
+msgid "Go to the Help Section"
 msgstr ""
 
-#: mod/admin.php:439
-#, php-format
+#: mod/newmember.php:77
 msgid ""
-"Your DB still runs with MyISAM tables. You should change the engine type to "
-"InnoDB. As Friendica will use InnoDB only features in the future, you should "
-"change this! See <a href=\"%s\">here</a> for a guide that may be helpful "
-"converting the table engines. You may also use the <tt>convert_innodb.sql</"
-"tt> in the <tt>/util</tt> directory of your Friendica installation.<br />"
+"Our <strong>help</strong> pages may be consulted for detail on other program "
+"features and resources."
 msgstr ""
 
-#: mod/admin.php:444
+#: mod/removeme.php:46 mod/removeme.php:49
+msgid "Remove My Account"
+msgstr ""
+
+#: mod/removeme.php:47
 msgid ""
-"You are using a MySQL version which does not support all features that "
-"Friendica uses. You should consider switching to MariaDB."
+"This will completely remove your account. Once this has been done it is not "
+"recoverable."
 msgstr ""
 
-#: mod/admin.php:448 mod/admin.php:1352
-msgid "Normal Account"
+#: mod/removeme.php:48
+msgid "Please enter your password for verification:"
 msgstr ""
 
-#: mod/admin.php:449 mod/admin.php:1353
-msgid "Soapbox Account"
+#: mod/editpost.php:17 mod/editpost.php:27
+msgid "Item not found"
 msgstr ""
 
-#: mod/admin.php:450 mod/admin.php:1354
-msgid "Community/Celebrity Account"
+#: mod/editpost.php:40
+msgid "Edit post"
 msgstr ""
 
-#: mod/admin.php:451 mod/admin.php:1355
-msgid "Automatic Friend Account"
+#: mod/localtime.php:24
+msgid "Time Conversion"
 msgstr ""
 
-#: mod/admin.php:452
-msgid "Blog Account"
+#: mod/localtime.php:26
+msgid ""
+"Friendica provides this service for sharing events with other networks and "
+"friends in unknown timezones."
 msgstr ""
 
-#: mod/admin.php:453
-msgid "Private Forum"
+#: mod/localtime.php:30
+#, php-format
+msgid "UTC time: %s"
 msgstr ""
 
-#: mod/admin.php:479
-msgid "Message queues"
+#: mod/localtime.php:33
+#, php-format
+msgid "Current timezone: %s"
 msgstr ""
 
-#: mod/admin.php:485
-msgid "Summary"
+#: mod/localtime.php:36
+#, php-format
+msgid "Converted localtime: %s"
 msgstr ""
 
-#: mod/admin.php:488
-msgid "Registered users"
+#: mod/localtime.php:41
+msgid "Please select your timezone:"
 msgstr ""
 
-#: mod/admin.php:490
-msgid "Pending registrations"
+#: mod/bookmarklet.php:41
+msgid "The post was created"
 msgstr ""
 
-#: mod/admin.php:491
-msgid "Version"
+#: mod/group.php:29
+msgid "Group created."
 msgstr ""
 
-#: mod/admin.php:496
-msgid "Active plugins"
+#: mod/group.php:35
+msgid "Could not create group."
 msgstr ""
 
-#: mod/admin.php:521
-msgid "Can not parse base url. Must have at least <scheme>://<domain>"
+#: mod/group.php:47 mod/group.php:140
+msgid "Group not found."
 msgstr ""
 
-#: mod/admin.php:826
-msgid "RINO2 needs mcrypt php extension to work."
+#: mod/group.php:60
+msgid "Group name changed."
 msgstr ""
 
-#: mod/admin.php:834
-msgid "Site settings updated."
+#: mod/group.php:87
+msgid "Save Group"
 msgstr ""
 
-#: mod/admin.php:862 mod/settings.php:934
-msgid "No special theme for mobile devices"
+#: mod/group.php:93
+msgid "Create a group of contacts/friends."
 msgstr ""
 
-#: mod/admin.php:881
-msgid "No community page"
+#: mod/group.php:113
+msgid "Group removed."
 msgstr ""
 
-#: mod/admin.php:882
-msgid "Public postings from users of this site"
+#: mod/group.php:115
+msgid "Unable to remove group."
 msgstr ""
 
-#: mod/admin.php:883
-msgid "Global community page"
+#: mod/group.php:177
+msgid "Group Editor"
 msgstr ""
 
-#: mod/admin.php:888 mod/contacts.php:530
-msgid "Never"
+#: mod/group.php:190
+msgid "Members"
 msgstr ""
 
-#: mod/admin.php:889
-msgid "At post arrival"
+#: mod/group.php:192 mod/contacts.php:692
+msgid "All Contacts"
 msgstr ""
 
-#: mod/admin.php:897 mod/contacts.php:557
-msgid "Disabled"
+#: mod/group.php:193 mod/content.php:130 mod/network.php:496
+msgid "Group is empty"
 msgstr ""
 
-#: mod/admin.php:899
-msgid "Users, Global Contacts"
+#: mod/wallmessage.php:42 mod/wallmessage.php:112
+#, php-format
+msgid "Number of daily wall messages for %s exceeded. Message failed."
 msgstr ""
 
-#: mod/admin.php:900
-msgid "Users, Global Contacts/fallback"
+#: mod/wallmessage.php:56 mod/message.php:71
+msgid "No recipient selected."
 msgstr ""
 
-#: mod/admin.php:904
-msgid "One month"
+#: mod/wallmessage.php:59
+msgid "Unable to check your home location."
 msgstr ""
 
-#: mod/admin.php:905
-msgid "Three months"
+#: mod/wallmessage.php:62 mod/message.php:78
+msgid "Message could not be sent."
 msgstr ""
 
-#: mod/admin.php:906
-msgid "Half a year"
+#: mod/wallmessage.php:65 mod/message.php:81
+msgid "Message collection failure."
 msgstr ""
 
-#: mod/admin.php:907
-msgid "One year"
+#: mod/wallmessage.php:68 mod/message.php:84
+msgid "Message sent."
 msgstr ""
 
-#: mod/admin.php:912
-msgid "Multi user instance"
+#: mod/wallmessage.php:86 mod/wallmessage.php:95
+msgid "No recipient."
 msgstr ""
 
-#: mod/admin.php:935
-msgid "Closed"
+#: mod/wallmessage.php:142 mod/message.php:341
+msgid "Send Private Message"
 msgstr ""
 
-#: mod/admin.php:936
-msgid "Requires approval"
+#: mod/wallmessage.php:143
+#, php-format
+msgid ""
+"If you wish for %s to respond, please check that the privacy settings on "
+"your site allow private mail from unknown senders."
 msgstr ""
 
-#: mod/admin.php:937
-msgid "Open"
+#: mod/wallmessage.php:144 mod/message.php:342 mod/message.php:536
+msgid "To:"
 msgstr ""
 
-#: mod/admin.php:941
-msgid "No SSL policy, links will track page SSL state"
+#: mod/wallmessage.php:145 mod/message.php:347 mod/message.php:538
+msgid "Subject:"
 msgstr ""
 
-#: mod/admin.php:942
-msgid "Force all links to use SSL"
+#: mod/share.php:38
+msgid "link"
 msgstr ""
 
-#: mod/admin.php:943
-msgid "Self-signed certificate, use SSL for local links only (discouraged)"
+#: mod/api.php:76 mod/api.php:102
+msgid "Authorize application connection"
 msgstr ""
 
-#: mod/admin.php:955 mod/admin.php:1583 mod/admin.php:1831 mod/admin.php:1905
-#: mod/admin.php:2055 mod/settings.php:678 mod/settings.php:788
-#: mod/settings.php:835 mod/settings.php:904 mod/settings.php:996
-#: mod/settings.php:1264
-msgid "Save Settings"
+#: mod/api.php:77
+msgid "Return to your app and insert this Securty Code:"
 msgstr ""
 
-#: mod/admin.php:956 mod/register.php:272
-msgid "Registration"
+#: mod/api.php:89
+msgid "Please login to continue."
 msgstr ""
 
-#: mod/admin.php:957
-msgid "File upload"
+#: mod/api.php:104
+msgid ""
+"Do you want to authorize this application to access your posts and contacts, "
+"and/or create new posts for you?"
 msgstr ""
 
-#: mod/admin.php:958
-msgid "Policies"
+#: mod/api.php:106 mod/profiles.php:648 mod/profiles.php:652
+#: mod/profiles.php:677 mod/register.php:246 mod/settings.php:1163
+#: mod/settings.php:1169 mod/settings.php:1177 mod/settings.php:1181
+#: mod/settings.php:1186 mod/settings.php:1192 mod/settings.php:1198
+#: mod/settings.php:1204 mod/settings.php:1230 mod/settings.php:1231
+#: mod/settings.php:1232 mod/settings.php:1233 mod/settings.php:1234
+#: mod/dfrn_request.php:862 mod/follow.php:110
+msgid "No"
 msgstr ""
 
-#: mod/admin.php:960
-msgid "Auto Discovered Contact Directory"
+#: mod/babel.php:17
+msgid "Source (bbcode) text:"
 msgstr ""
 
-#: mod/admin.php:961
-msgid "Performance"
+#: mod/babel.php:23
+msgid "Source (Diaspora) text to convert to BBcode:"
 msgstr ""
 
-#: mod/admin.php:962
-msgid "Worker"
+#: mod/babel.php:31
+msgid "Source input: "
 msgstr ""
 
-#: mod/admin.php:963
-msgid ""
-"Relocate - WARNING: advanced function. Could make this server unreachable."
+#: mod/babel.php:35
+msgid "bb2html (raw HTML): "
 msgstr ""
 
-#: mod/admin.php:966
-msgid "Site name"
+#: mod/babel.php:39
+msgid "bb2html: "
 msgstr ""
 
-#: mod/admin.php:967
-msgid "Host name"
+#: mod/babel.php:43
+msgid "bb2html2bb: "
 msgstr ""
 
-#: mod/admin.php:968
-msgid "Sender Email"
+#: mod/babel.php:47
+msgid "bb2md: "
 msgstr ""
 
-#: mod/admin.php:968
-msgid ""
-"The email address your server shall use to send notification emails from."
+#: mod/babel.php:51
+msgid "bb2md2html: "
 msgstr ""
 
-#: mod/admin.php:969
-msgid "Banner/Logo"
+#: mod/babel.php:55
+msgid "bb2dia2bb: "
 msgstr ""
 
-#: mod/admin.php:970
-msgid "Shortcut icon"
+#: mod/babel.php:59
+msgid "bb2md2html2bb: "
 msgstr ""
 
-#: mod/admin.php:970
-msgid "Link to an icon that will be used for browsers."
+#: mod/babel.php:69
+msgid "Source input (Diaspora format): "
 msgstr ""
 
-#: mod/admin.php:971
-msgid "Touch icon"
+#: mod/babel.php:74
+msgid "diaspora2bb: "
 msgstr ""
 
-#: mod/admin.php:971
-msgid "Link to an icon that will be used for tablets and mobiles."
+#: mod/ostatus_subscribe.php:14
+msgid "Subscribing to OStatus contacts"
 msgstr ""
 
-#: mod/admin.php:972
-msgid "Additional Info"
+#: mod/ostatus_subscribe.php:25
+msgid "No contact provided."
 msgstr ""
 
-#: mod/admin.php:972
-#, php-format
-msgid ""
-"For public servers: you can add additional information here that will be "
-"listed at %s/siteinfo."
+#: mod/ostatus_subscribe.php:30
+msgid "Couldn't fetch information for contact."
 msgstr ""
 
-#: mod/admin.php:973
-msgid "System language"
+#: mod/ostatus_subscribe.php:38
+msgid "Couldn't fetch friends for contact."
 msgstr ""
 
-#: mod/admin.php:974
-msgid "System theme"
+#: mod/ostatus_subscribe.php:65
+msgid "success"
 msgstr ""
 
-#: mod/admin.php:974
-msgid ""
-"Default system theme - may be over-ridden by user profiles - <a href='#' "
-"id='cnftheme'>change theme settings</a>"
+#: mod/ostatus_subscribe.php:67
+msgid "failed"
 msgstr ""
 
-#: mod/admin.php:975
-msgid "Mobile system theme"
+#: mod/ostatus_subscribe.php:69 mod/content.php:792 object/Item.php:245
+msgid "ignored"
 msgstr ""
 
-#: mod/admin.php:975
-msgid "Theme for mobile devices"
+#: mod/dfrn_poll.php:104 mod/dfrn_poll.php:537
+#, php-format
+msgid "%1$s welcomes %2$s"
 msgstr ""
 
-#: mod/admin.php:976
-msgid "SSL link policy"
+#: mod/message.php:75
+msgid "Unable to locate contact information."
 msgstr ""
 
-#: mod/admin.php:976
-msgid "Determines whether generated links should be forced to use SSL"
+#: mod/message.php:215
+msgid "Do you really want to delete this message?"
 msgstr ""
 
-#: mod/admin.php:977
-msgid "Force SSL"
+#: mod/message.php:235
+msgid "Message deleted."
 msgstr ""
 
-#: mod/admin.php:977
-msgid ""
-"Force all Non-SSL requests to SSL - Attention: on some systems it could lead "
-"to endless loops."
+#: mod/message.php:266
+msgid "Conversation removed."
 msgstr ""
 
-#: mod/admin.php:978
-msgid "Old style 'Share'"
+#: mod/message.php:383
+msgid "No messages."
 msgstr ""
 
-#: mod/admin.php:978
-msgid "Deactivates the bbcode element 'share' for repeating items."
+#: mod/message.php:426
+msgid "Message not available."
 msgstr ""
 
-#: mod/admin.php:979
-msgid "Hide help entry from navigation menu"
+#: mod/message.php:503
+msgid "Delete message"
 msgstr ""
 
-#: mod/admin.php:979
-msgid ""
-"Hides the menu entry for the Help pages from the navigation menu. You can "
-"still access it calling /help directly."
+#: mod/message.php:529 mod/message.php:609
+msgid "Delete conversation"
 msgstr ""
 
-#: mod/admin.php:980
-msgid "Single user instance"
+#: mod/message.php:531
+msgid ""
+"No secure communications available. You <strong>may</strong> be able to "
+"respond from the sender's profile page."
 msgstr ""
 
-#: mod/admin.php:980
-msgid "Make this instance multi-user or single-user for the named user"
+#: mod/message.php:535
+msgid "Send Reply"
 msgstr ""
 
-#: mod/admin.php:981
-msgid "Maximum image size"
+#: mod/message.php:579
+#, php-format
+msgid "Unknown sender - %s"
 msgstr ""
 
-#: mod/admin.php:981
-msgid ""
-"Maximum size in bytes of uploaded images. Default is 0, which means no "
-"limits."
+#: mod/message.php:581
+#, php-format
+msgid "You and %s"
 msgstr ""
 
-#: mod/admin.php:982
-msgid "Maximum image length"
+#: mod/message.php:583
+#, php-format
+msgid "%s and You"
 msgstr ""
 
-#: mod/admin.php:982
-msgid ""
-"Maximum length in pixels of the longest side of uploaded images. Default is "
-"-1, which means no limits."
+#: mod/message.php:612
+msgid "D, d M Y - g:i A"
 msgstr ""
 
-#: mod/admin.php:983
-msgid "JPEG image quality"
-msgstr ""
+#: mod/message.php:615
+#, php-format
+msgid "%d message"
+msgid_plural "%d messages"
+msgstr[0] ""
+msgstr[1] ""
 
-#: mod/admin.php:983
-msgid ""
-"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is "
-"100, which is full quality."
+#: mod/manage.php:139
+msgid "Manage Identities and/or Pages"
 msgstr ""
 
-#: mod/admin.php:985
-msgid "Register policy"
+#: mod/manage.php:140
+msgid ""
+"Toggle between different identities or community/group pages which share "
+"your account details or which you have been granted \"manage\" permissions"
 msgstr ""
 
-#: mod/admin.php:986
-msgid "Maximum Daily Registrations"
+#: mod/manage.php:141
+msgid "Select an identity to manage: "
 msgstr ""
 
-#: mod/admin.php:986
-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."
+#: mod/crepair.php:87
+msgid "Contact settings applied."
 msgstr ""
 
-#: mod/admin.php:987
-msgid "Register text"
+#: mod/crepair.php:89
+msgid "Contact update failed."
 msgstr ""
 
-#: mod/admin.php:987
-msgid "Will be displayed prominently on the registration page."
+#: mod/crepair.php:114 mod/fsuggest.php:20 mod/fsuggest.php:92
+#: mod/dfrn_confirm.php:126
+msgid "Contact not found."
 msgstr ""
 
-#: mod/admin.php:988
-msgid "Accounts abandoned after x days"
+#: mod/crepair.php:120
+msgid ""
+"<strong>WARNING: This is highly advanced</strong> and if you enter incorrect "
+"information your communications with this contact may stop working."
 msgstr ""
 
-#: mod/admin.php:988
+#: mod/crepair.php:121
 msgid ""
-"Will not waste system resources polling external sites for abandonded "
-"accounts. Enter 0 for no time limit."
+"Please use your browser 'Back' button <strong>now</strong> if you are "
+"uncertain what to do on this page."
 msgstr ""
 
-#: mod/admin.php:989
-msgid "Allowed friend domains"
+#: mod/crepair.php:134 mod/crepair.php:136
+msgid "No mirroring"
 msgstr ""
 
-#: mod/admin.php:989
-msgid ""
-"Comma separated list of domains which are allowed to establish friendships "
-"with this site. Wildcards are accepted. Empty to allow any domains"
+#: mod/crepair.php:134
+msgid "Mirror as forwarded posting"
 msgstr ""
 
-#: mod/admin.php:990
-msgid "Allowed email domains"
+#: mod/crepair.php:134 mod/crepair.php:136
+msgid "Mirror as my own posting"
 msgstr ""
 
-#: mod/admin.php:990
-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"
+#: mod/crepair.php:150
+msgid "Return to contact editor"
 msgstr ""
 
-#: mod/admin.php:991
-msgid "Block public"
+#: mod/crepair.php:152
+msgid "Refetch contact data"
 msgstr ""
 
-#: mod/admin.php:991
-msgid ""
-"Check to block public access to all otherwise public personal pages on this "
-"site unless you are currently logged in."
+#: mod/crepair.php:156
+msgid "Remote Self"
 msgstr ""
 
-#: mod/admin.php:992
-msgid "Force publish"
+#: mod/crepair.php:159
+msgid "Mirror postings from this contact"
 msgstr ""
 
-#: mod/admin.php:992
+#: mod/crepair.php:161
 msgid ""
-"Check to force all profiles on this site to be listed in the site directory."
+"Mark this contact as remote_self, this will cause friendica to repost new "
+"entries from this contact."
 msgstr ""
 
-#: mod/admin.php:993
-msgid "Global directory URL"
+#: mod/crepair.php:165 mod/settings.php:680 mod/settings.php:706
+#: mod/admin.php:1396 mod/admin.php:1409 mod/admin.php:1422 mod/admin.php:1438
+msgid "Name"
 msgstr ""
 
-#: mod/admin.php:993
-msgid ""
-"URL to the global directory. If this is not set, the global directory is "
-"completely unavailable to the application."
+#: mod/crepair.php:166
+msgid "Account Nickname"
 msgstr ""
 
-#: mod/admin.php:994
-msgid "Allow threaded items"
+#: mod/crepair.php:167
+msgid "@Tagname - overrides Name/Nickname"
 msgstr ""
 
-#: mod/admin.php:994
-msgid "Allow infinite level threading for items on this site."
+#: mod/crepair.php:168
+msgid "Account URL"
 msgstr ""
 
-#: mod/admin.php:995
-msgid "Private posts by default for new users"
+#: mod/crepair.php:169
+msgid "Friend Request URL"
 msgstr ""
 
-#: mod/admin.php:995
-msgid ""
-"Set default post permissions for all new members to the default privacy "
-"group rather than public."
+#: mod/crepair.php:170
+msgid "Friend Confirm URL"
 msgstr ""
 
-#: mod/admin.php:996
-msgid "Don't include post content in email notifications"
+#: mod/crepair.php:171
+msgid "Notification Endpoint URL"
 msgstr ""
 
-#: mod/admin.php:996
-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."
+#: mod/crepair.php:172
+msgid "Poll/Feed URL"
 msgstr ""
 
-#: mod/admin.php:997
-msgid "Disallow public access to addons listed in the apps menu."
+#: mod/crepair.php:173
+msgid "New photo from this URL"
 msgstr ""
 
-#: mod/admin.php:997
-msgid ""
-"Checking this box will restrict addons listed in the apps menu to members "
-"only."
+#: mod/content.php:119 mod/network.php:469
+msgid "No such group"
 msgstr ""
 
-#: mod/admin.php:998
-msgid "Don't embed private images in posts"
+#: mod/content.php:135 mod/network.php:500
+#, php-format
+msgid "Group: %s"
 msgstr ""
 
-#: mod/admin.php:998
-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."
+#: mod/content.php:325 object/Item.php:95
+msgid "This entry was edited"
 msgstr ""
 
-#: mod/admin.php:999
-msgid "Allow Users to set remote_self"
+#: mod/content.php:621 object/Item.php:429
+#, php-format
+msgid "%d comment"
+msgid_plural "%d comments"
+msgstr[0] ""
+msgstr[1] ""
+
+#: mod/content.php:638 mod/photos.php:1379 object/Item.php:117
+msgid "Private Message"
 msgstr ""
 
-#: mod/admin.php:999
-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."
+#: mod/content.php:702 mod/photos.php:1567 object/Item.php:263
+msgid "I like this (toggle)"
 msgstr ""
 
-#: mod/admin.php:1000
-msgid "Block multiple registrations"
+#: mod/content.php:702 object/Item.php:263
+msgid "like"
 msgstr ""
 
-#: mod/admin.php:1000
-msgid "Disallow users to register additional accounts for use as pages."
+#: mod/content.php:703 mod/photos.php:1568 object/Item.php:264
+msgid "I don't like this (toggle)"
 msgstr ""
 
-#: mod/admin.php:1001
-msgid "OpenID support"
+#: mod/content.php:703 object/Item.php:264
+msgid "dislike"
 msgstr ""
 
-#: mod/admin.php:1001
-msgid "OpenID support for registration and logins."
+#: mod/content.php:705 object/Item.php:266
+msgid "Share this"
 msgstr ""
 
-#: mod/admin.php:1002
-msgid "Fullname check"
+#: mod/content.php:705 object/Item.php:266
+msgid "share"
 msgstr ""
 
-#: mod/admin.php:1002
-msgid ""
-"Force users to register with a space between firstname and lastname in Full "
-"name, as an antispam measure"
+#: mod/content.php:725 mod/photos.php:1587 mod/photos.php:1635
+#: mod/photos.php:1721 object/Item.php:717
+msgid "This is you"
 msgstr ""
 
-#: mod/admin.php:1003
-msgid "UTF-8 Regular expressions"
+#: mod/content.php:727 mod/content.php:945 mod/photos.php:1589
+#: mod/photos.php:1637 mod/photos.php:1723 object/Item.php:403
+#: object/Item.php:719 boot.php:971
+msgid "Comment"
 msgstr ""
 
-#: mod/admin.php:1003
-msgid "Use PHP UTF8 regular expressions"
+#: mod/content.php:729 object/Item.php:721
+msgid "Bold"
 msgstr ""
 
-#: mod/admin.php:1004
-msgid "Community Page Style"
+#: mod/content.php:730 object/Item.php:722
+msgid "Italic"
 msgstr ""
 
-#: mod/admin.php:1004
-msgid ""
-"Type of community page to show. 'Global community' shows every public "
-"posting from an open distributed network that arrived on this server."
+#: mod/content.php:731 object/Item.php:723
+msgid "Underline"
 msgstr ""
 
-#: mod/admin.php:1005
-msgid "Posts per user on community page"
+#: mod/content.php:732 object/Item.php:724
+msgid "Quote"
 msgstr ""
 
-#: mod/admin.php:1005
-msgid ""
-"The maximum number of posts per user on the community page. (Not valid for "
-"'Global Community')"
+#: mod/content.php:733 object/Item.php:725
+msgid "Code"
 msgstr ""
 
-#: mod/admin.php:1006
-msgid "Enable OStatus support"
+#: mod/content.php:734 object/Item.php:726
+msgid "Image"
 msgstr ""
 
-#: mod/admin.php:1006
-msgid ""
-"Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All "
-"communications in OStatus are public, so privacy warnings will be "
-"occasionally displayed."
+#: mod/content.php:735 object/Item.php:727
+msgid "Link"
 msgstr ""
 
-#: mod/admin.php:1007
-msgid "OStatus conversation completion interval"
+#: mod/content.php:736 object/Item.php:728
+msgid "Video"
 msgstr ""
 
-#: mod/admin.php:1007
-msgid ""
-"How often shall the poller check for new entries in OStatus conversations? "
-"This can be a very ressource task."
+#: mod/content.php:746 mod/settings.php:740 object/Item.php:122
+#: object/Item.php:124
+msgid "Edit"
 msgstr ""
 
-#: mod/admin.php:1008
-msgid "Only import OStatus threads from our contacts"
+#: mod/content.php:771 object/Item.php:227
+msgid "add star"
 msgstr ""
 
-#: mod/admin.php:1008
-msgid ""
-"Normally we import every content from our OStatus contacts. With this option "
-"we only store threads that are started by a contact that is known on our "
-"system."
+#: mod/content.php:772 object/Item.php:228
+msgid "remove star"
 msgstr ""
 
-#: mod/admin.php:1009
-msgid "OStatus support can only be enabled if threading is enabled."
+#: mod/content.php:773 object/Item.php:229
+msgid "toggle star status"
 msgstr ""
 
-#: mod/admin.php:1011
-msgid ""
-"Diaspora support can't be enabled because Friendica was installed into a sub "
-"directory."
+#: mod/content.php:776 object/Item.php:232
+msgid "starred"
 msgstr ""
 
-#: mod/admin.php:1012
-msgid "Enable Diaspora support"
+#: mod/content.php:777 mod/content.php:798 object/Item.php:252
+msgid "add tag"
 msgstr ""
 
-#: mod/admin.php:1012
-msgid "Provide built-in Diaspora network compatibility."
+#: mod/content.php:787 object/Item.php:240
+msgid "ignore thread"
 msgstr ""
 
-#: mod/admin.php:1013
-msgid "Only allow Friendica contacts"
+#: mod/content.php:788 object/Item.php:241
+msgid "unignore thread"
 msgstr ""
 
-#: mod/admin.php:1013
-msgid ""
-"All contacts must use Friendica protocols. All other built-in communication "
-"protocols disabled."
+#: mod/content.php:789 object/Item.php:242
+msgid "toggle ignore status"
 msgstr ""
 
-#: mod/admin.php:1014
-msgid "Verify SSL"
+#: mod/content.php:803 object/Item.php:137
+msgid "save to folder"
 msgstr ""
 
-#: mod/admin.php:1014
-msgid ""
-"If you wish, you can turn on strict certificate checking. This will mean you "
-"cannot connect (at all) to self-signed SSL sites."
+#: mod/content.php:848 object/Item.php:201
+msgid "I will attend"
 msgstr ""
 
-#: mod/admin.php:1015
-msgid "Proxy user"
+#: mod/content.php:848 object/Item.php:201
+msgid "I will not attend"
 msgstr ""
 
-#: mod/admin.php:1016
-msgid "Proxy URL"
+#: mod/content.php:848 object/Item.php:201
+msgid "I might attend"
 msgstr ""
 
-#: mod/admin.php:1017
-msgid "Network timeout"
+#: mod/content.php:912 object/Item.php:369
+msgid "to"
 msgstr ""
 
-#: mod/admin.php:1017
-msgid "Value is in seconds. Set to 0 for unlimited (not recommended)."
+#: mod/content.php:913 object/Item.php:371
+msgid "Wall-to-Wall"
 msgstr ""
 
-#: mod/admin.php:1018
-msgid "Delivery interval"
+#: mod/content.php:914 object/Item.php:372
+msgid "via Wall-To-Wall:"
 msgstr ""
 
-#: mod/admin.php:1018
-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."
+#: mod/fsuggest.php:63
+msgid "Friend suggestion sent."
 msgstr ""
 
-#: mod/admin.php:1019
-msgid "Poll interval"
+#: mod/fsuggest.php:97
+msgid "Suggest Friends"
 msgstr ""
 
-#: mod/admin.php:1019
-msgid ""
-"Delay background polling processes by this many seconds to reduce system "
-"load. If 0, use delivery interval."
+#: mod/fsuggest.php:99
+#, php-format
+msgid "Suggest a friend for %s"
 msgstr ""
 
-#: mod/admin.php:1020
-msgid "Maximum Load Average"
+#: mod/mood.php:133
+msgid "Mood"
 msgstr ""
 
-#: mod/admin.php:1020
-msgid ""
-"Maximum system load before delivery and poll processes are deferred - "
-"default 50."
+#: mod/mood.php:134
+msgid "Set your current mood and tell your friends"
 msgstr ""
 
-#: mod/admin.php:1021
-msgid "Maximum Load Average (Frontend)"
+#: mod/poke.php:192
+msgid "Poke/Prod"
 msgstr ""
 
-#: mod/admin.php:1021
-msgid "Maximum system load before the frontend quits service - default 50."
+#: mod/poke.php:193
+msgid "poke, prod or do other things to somebody"
 msgstr ""
 
-#: mod/admin.php:1022
-msgid "Maximum table size for optimization"
+#: mod/poke.php:194
+msgid "Recipient"
 msgstr ""
 
-#: mod/admin.php:1022
-msgid ""
-"Maximum table size (in MB) for the automatic optimization - default 100 MB. "
-"Enter -1 to disable it."
+#: mod/poke.php:195
+msgid "Choose what you wish to do to recipient"
 msgstr ""
 
-#: mod/admin.php:1023
-msgid "Minimum level of fragmentation"
+#: mod/poke.php:198
+msgid "Make this post private"
 msgstr ""
 
-#: mod/admin.php:1023
-msgid ""
-"Minimum fragmenation level to start the automatic optimization - default "
-"value is 30%."
+#: mod/profile_photo.php:44
+msgid "Image uploaded but image cropping failed."
 msgstr ""
 
-#: mod/admin.php:1025
-msgid "Periodical check of global contacts"
+#: mod/profile_photo.php:77 mod/profile_photo.php:84 mod/profile_photo.php:91
+#: mod/profile_photo.php:314
+#, php-format
+msgid "Image size reduction [%s] failed."
 msgstr ""
 
-#: mod/admin.php:1025
+#: mod/profile_photo.php:124
 msgid ""
-"If enabled, the global contacts are checked periodically for missing or "
-"outdated data and the vitality of the contacts and servers."
+"Shift-reload the page or clear browser cache if the new photo does not "
+"display immediately."
 msgstr ""
 
-#: mod/admin.php:1026
-msgid "Days between requery"
+#: mod/profile_photo.php:134
+msgid "Unable to process image"
 msgstr ""
 
-#: mod/admin.php:1026
-msgid "Number of days after which a server is requeried for his contacts."
+#: mod/profile_photo.php:150 mod/photos.php:786 mod/wall_upload.php:151
+#, php-format
+msgid "Image exceeds size limit of %s"
 msgstr ""
 
-#: mod/admin.php:1027
-msgid "Discover contacts from other servers"
+#: mod/profile_photo.php:159 mod/photos.php:826 mod/wall_upload.php:188
+msgid "Unable to process image."
 msgstr ""
 
-#: mod/admin.php:1027
-msgid ""
-"Periodically query other servers for contacts. You can choose between "
-"'users': the users on the remote system, 'Global Contacts': active contacts "
-"that are known on the system. The fallback is meant for Redmatrix servers "
-"and older friendica servers, where global contacts weren't available. The "
-"fallback increases the server load, so the recommened setting is 'Users, "
-"Global Contacts'."
+#: mod/profile_photo.php:248
+msgid "Upload File:"
 msgstr ""
 
-#: mod/admin.php:1028
-msgid "Timeframe for fetching global contacts"
+#: mod/profile_photo.php:249
+msgid "Select a profile:"
 msgstr ""
 
-#: mod/admin.php:1028
-msgid ""
-"When the discovery is activated, this value defines the timeframe for the "
-"activity of the global contacts that are fetched from other servers."
+#: mod/profile_photo.php:251
+msgid "Upload"
 msgstr ""
 
-#: mod/admin.php:1029
-msgid "Search the local directory"
+#: mod/profile_photo.php:254
+msgid "or"
 msgstr ""
 
-#: mod/admin.php:1029
-msgid ""
-"Search the local directory instead of the global directory. When searching "
-"locally, every search will be executed on the global directory in the "
-"background. This improves the search results when the search is repeated."
+#: mod/profile_photo.php:254
+msgid "skip this step"
 msgstr ""
 
-#: mod/admin.php:1031
-msgid "Publish server information"
+#: mod/profile_photo.php:254
+msgid "select a photo from your photo albums"
 msgstr ""
 
-#: mod/admin.php:1031
-msgid ""
-"If enabled, general server and usage data will be published. The data "
-"contains the name and version of the server, number of users with public "
-"profiles, number of posts and the activated protocols and connectors. See <a "
-"href='http://the-federation.info/'>the-federation.info</a> for details."
+#: mod/profile_photo.php:268
+msgid "Crop Image"
 msgstr ""
 
-#: mod/admin.php:1033
-msgid "Use MySQL full text engine"
+#: mod/profile_photo.php:269
+msgid "Please adjust the image cropping for optimum viewing."
 msgstr ""
 
-#: mod/admin.php:1033
-msgid ""
-"Activates the full text engine. Speeds up search - but can only search for "
-"four and more characters."
+#: mod/profile_photo.php:271
+msgid "Done Editing"
 msgstr ""
 
-#: mod/admin.php:1034
-msgid "Suppress Language"
+#: mod/profile_photo.php:305
+msgid "Image uploaded successfully."
 msgstr ""
 
-#: mod/admin.php:1034
-msgid "Suppress language information in meta information about a posting."
+#: mod/profile_photo.php:307 mod/photos.php:853 mod/wall_upload.php:221
+msgid "Image upload failed."
 msgstr ""
 
-#: mod/admin.php:1035
-msgid "Suppress Tags"
+#: mod/regmod.php:55
+msgid "Account approved."
 msgstr ""
 
-#: mod/admin.php:1035
-msgid "Suppress showing a list of hashtags at the end of the posting."
+#: mod/regmod.php:92
+#, php-format
+msgid "Registration revoked for %s"
 msgstr ""
 
-#: mod/admin.php:1036
-msgid "Path to item cache"
+#: mod/regmod.php:104
+msgid "Please login."
 msgstr ""
 
-#: mod/admin.php:1036
-msgid "The item caches buffers generated bbcode and external images."
+#: mod/notifications.php:35
+msgid "Invalid request identifier."
 msgstr ""
 
-#: mod/admin.php:1037
-msgid "Cache duration in seconds"
+#: mod/notifications.php:44 mod/notifications.php:180
+#: mod/notifications.php:252
+msgid "Discard"
 msgstr ""
 
-#: mod/admin.php:1037
-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."
+#: mod/notifications.php:60 mod/notifications.php:179
+#: mod/notifications.php:251 mod/contacts.php:606 mod/contacts.php:806
+#: mod/contacts.php:991
+msgid "Ignore"
 msgstr ""
 
-#: mod/admin.php:1038
-msgid "Maximum numbers of comments per post"
+#: mod/notifications.php:105
+msgid "Network Notifications"
 msgstr ""
 
-#: mod/admin.php:1038
-msgid "How much comments should be shown for each post? Default value is 100."
+#: mod/notifications.php:117
+msgid "Personal Notifications"
 msgstr ""
 
-#: mod/admin.php:1039
-msgid "Path for lock file"
+#: mod/notifications.php:123
+msgid "Home Notifications"
 msgstr ""
 
-#: mod/admin.php:1039
-msgid ""
-"The lock file is used to avoid multiple pollers at one time. Only define a "
-"folder here."
+#: mod/notifications.php:152
+msgid "Show Ignored Requests"
 msgstr ""
 
-#: mod/admin.php:1040
-msgid "Temp path"
+#: mod/notifications.php:152
+msgid "Hide Ignored Requests"
 msgstr ""
 
-#: mod/admin.php:1040
-msgid ""
-"If you have a restricted system where the webserver can't access the system "
-"temp path, enter another path here."
+#: mod/notifications.php:164 mod/notifications.php:222
+msgid "Notification type: "
 msgstr ""
 
-#: mod/admin.php:1041
-msgid "Base path to installation"
+#: mod/notifications.php:167
+#, php-format
+msgid "suggested by %s"
 msgstr ""
 
-#: mod/admin.php:1041
-msgid ""
-"If the system cannot detect the correct path to your installation, enter the "
-"correct path here. This setting should only be set if you are using a "
-"restricted system and symbolic links to your webroot."
+#: mod/notifications.php:172 mod/notifications.php:239 mod/contacts.php:613
+msgid "Hide this contact from others"
 msgstr ""
 
-#: mod/admin.php:1042
-msgid "Disable picture proxy"
+#: mod/notifications.php:173 mod/notifications.php:240
+msgid "Post a new friend activity"
 msgstr ""
 
-#: mod/admin.php:1042
-msgid ""
-"The picture proxy increases performance and privacy. It shouldn't be used on "
-"systems with very low bandwith."
+#: mod/notifications.php:173 mod/notifications.php:240
+msgid "if applicable"
 msgstr ""
 
-#: mod/admin.php:1043
-msgid "Enable old style pager"
+#: mod/notifications.php:176 mod/notifications.php:249 mod/admin.php:1412
+msgid "Approve"
 msgstr ""
 
-#: mod/admin.php:1043
-msgid ""
-"The old style pager has page numbers but slows down massively the page speed."
+#: mod/notifications.php:195
+msgid "Claims to be known to you: "
 msgstr ""
 
-#: mod/admin.php:1044
-msgid "Only search in tags"
+#: mod/notifications.php:196
+msgid "yes"
 msgstr ""
 
-#: mod/admin.php:1044
-msgid "On large systems the text search can slow down the system extremely."
+#: mod/notifications.php:196
+msgid "no"
 msgstr ""
 
-#: mod/admin.php:1046
-msgid "New base url"
+#: mod/notifications.php:197
+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/admin.php:1046
+#: mod/notifications.php:200
 msgid ""
-"Change base url for this server. Sends relocate message to all DFRN contacts "
-"of all users."
+"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/admin.php:1048
-msgid "RINO Encryption"
+#: mod/notifications.php:209
+msgid "Friend"
 msgstr ""
 
-#: mod/admin.php:1048
-msgid "Encryption layer between nodes."
+#: mod/notifications.php:210
+msgid "Sharer"
 msgstr ""
 
-#: mod/admin.php:1049
-msgid "Embedly API key"
+#: mod/notifications.php:210
+msgid "Fan/Admirer"
 msgstr ""
 
-#: mod/admin.php:1049
-msgid ""
-"<a href='http://embed.ly'>Embedly</a> is used to fetch additional data for "
-"web pages. This is an optional parameter."
+#: mod/notifications.php:243 mod/contacts.php:624 mod/follow.php:126
+msgid "Profile URL"
 msgstr ""
 
-#: mod/admin.php:1051
-msgid "Enable 'worker' background processing"
+#: mod/notifications.php:260
+msgid "No introductions."
 msgstr ""
 
-#: mod/admin.php:1051
-msgid ""
-"The worker background processing limits the number of parallel background "
-"jobs to a maximum number and respects the system load."
+#: mod/notifications.php:299
+msgid "Show unread"
 msgstr ""
 
-#: mod/admin.php:1052
-msgid "Maximum number of parallel workers"
+#: mod/notifications.php:299
+msgid "Show all"
 msgstr ""
 
-#: mod/admin.php:1052
-msgid ""
-"On shared hosters set this to 2. On larger systems, values of 10 are great. "
-"Default value is 4."
+#: mod/notifications.php:305
+#, php-format
+msgid "No more %s notifications."
 msgstr ""
 
-#: mod/admin.php:1053
-msgid "Don't use 'proc_open' with the worker"
+#: mod/profiles.php:19 mod/profiles.php:134 mod/profiles.php:180
+#: mod/profiles.php:617 mod/dfrn_confirm.php:70
+msgid "Profile not found."
 msgstr ""
 
-#: mod/admin.php:1053
-msgid ""
-"Enable this if your system doesn't allow the use of 'proc_open'. This can "
-"happen on shared hosters. If this is enabled you should increase the "
-"frequency of poller calls in your crontab."
+#: mod/profiles.php:38
+msgid "Profile deleted."
 msgstr ""
 
-#: mod/admin.php:1054
-msgid "Enable fastlane"
+#: mod/profiles.php:56 mod/profiles.php:90
+msgid "Profile-"
 msgstr ""
 
-#: mod/admin.php:1054
-msgid ""
-"When enabed, the fastlane mechanism starts an additional worker if processes "
-"with higher priority are blocked by processes of lower priority."
+#: mod/profiles.php:75 mod/profiles.php:118
+msgid "New profile created."
 msgstr ""
 
-#: mod/admin.php:1055
-msgid "Enable frontend worker"
+#: mod/profiles.php:96
+msgid "Profile unavailable to clone."
 msgstr ""
 
-#: mod/admin.php:1055
-msgid ""
-"When enabled the Worker process is triggered when backend access is "
-"performed (e.g. messages being delivered). On smaller sites you might want "
-"to call yourdomain.tld/worker on a regular basis via an external cron job. "
-"You should only enable this option if you cannot utilize cron/scheduled jobs "
-"on your server. The worker background process needs to be activated for this."
+#: mod/profiles.php:190
+msgid "Profile Name is required."
 msgstr ""
 
-#: mod/admin.php:1084
-msgid "Update has been marked successful"
+#: mod/profiles.php:338
+msgid "Marital Status"
 msgstr ""
 
-#: mod/admin.php:1092
-#, php-format
-msgid "Database structure update %s was successfully applied."
+#: mod/profiles.php:342
+msgid "Romantic Partner"
 msgstr ""
 
-#: mod/admin.php:1095
-#, php-format
-msgid "Executing of database structure update %s failed with error: %s"
+#: mod/profiles.php:354
+msgid "Work/Employment"
 msgstr ""
 
-#: mod/admin.php:1107
-#, php-format
-msgid "Executing %s failed with error: %s"
+#: mod/profiles.php:357
+msgid "Religion"
 msgstr ""
 
-#: mod/admin.php:1110
-#, php-format
-msgid "Update %s was successfully applied."
+#: mod/profiles.php:361
+msgid "Political Views"
 msgstr ""
 
-#: mod/admin.php:1114
-#, php-format
-msgid "Update %s did not return a status. Unknown if it succeeded."
+#: mod/profiles.php:365
+msgid "Gender"
 msgstr ""
 
-#: mod/admin.php:1116
-#, php-format
-msgid "There was no additional update function %s that needed to be called."
+#: mod/profiles.php:369
+msgid "Sexual Preference"
 msgstr ""
 
-#: mod/admin.php:1135
-msgid "No failed updates."
+#: mod/profiles.php:373
+msgid "XMPP"
 msgstr ""
 
-#: mod/admin.php:1136
-msgid "Check database structure"
+#: mod/profiles.php:377
+msgid "Homepage"
 msgstr ""
 
-#: mod/admin.php:1141
-msgid "Failed Updates"
+#: mod/profiles.php:381 mod/profiles.php:702
+msgid "Interests"
 msgstr ""
 
-#: mod/admin.php:1142
-msgid ""
-"This does not include updates prior to 1139, which did not return a status."
+#: mod/profiles.php:385
+msgid "Address"
 msgstr ""
 
-#: mod/admin.php:1143
-msgid "Mark success (if update was manually applied)"
+#: mod/profiles.php:392 mod/profiles.php:698
+msgid "Location"
 msgstr ""
 
-#: mod/admin.php:1144
-msgid "Attempt to execute this update step automatically"
+#: mod/profiles.php:477
+msgid "Profile updated."
 msgstr ""
 
-#: mod/admin.php:1178
-#, 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."
+#: mod/profiles.php:564
+msgid " and "
 msgstr ""
 
-#: mod/admin.php:1181
-#, 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."
+#: mod/profiles.php:572
+msgid "public profile"
 msgstr ""
 
-#: mod/admin.php:1225
-#, php-format
-msgid "%s user blocked/unblocked"
-msgid_plural "%s users blocked/unblocked"
-msgstr[0] ""
-msgstr[1] ""
-
-#: mod/admin.php:1232
-#, php-format
-msgid "%s user deleted"
-msgid_plural "%s users deleted"
-msgstr[0] ""
-msgstr[1] ""
-
-#: mod/admin.php:1279
+#: mod/profiles.php:575
 #, php-format
-msgid "User '%s' deleted"
+msgid "%1$s changed %2$s to &ldquo;%3$s&rdquo;"
 msgstr ""
 
-#: mod/admin.php:1287
+#: mod/profiles.php:576
 #, php-format
-msgid "User '%s' unblocked"
+msgid " - Visit %1$s's %2$s"
 msgstr ""
 
-#: mod/admin.php:1287
+#: mod/profiles.php:579
 #, php-format
-msgid "User '%s' blocked"
+msgid "%1$s has an updated %2$s, changing %3$s."
 msgstr ""
 
-#: mod/admin.php:1396 mod/admin.php:1422
-msgid "Register date"
+#: mod/profiles.php:645
+msgid "Hide contacts and friends:"
 msgstr ""
 
-#: mod/admin.php:1396 mod/admin.php:1422
-msgid "Last login"
+#: mod/profiles.php:650
+msgid "Hide your contact/friend list from viewers of this profile?"
 msgstr ""
 
-#: mod/admin.php:1396 mod/admin.php:1422
-msgid "Last item"
+#: mod/profiles.php:674
+msgid "Show more profile fields:"
 msgstr ""
 
-#: mod/admin.php:1396 mod/settings.php:43
-msgid "Account"
+#: mod/profiles.php:686
+msgid "Profile Actions"
 msgstr ""
 
-#: mod/admin.php:1405
-msgid "Add User"
+#: mod/profiles.php:687
+msgid "Edit Profile Details"
 msgstr ""
 
-#: mod/admin.php:1406
-msgid "select all"
-msgstr ""
-
-#: mod/admin.php:1407
-msgid "User registrations waiting for confirm"
-msgstr ""
-
-#: mod/admin.php:1408
-msgid "User waiting for permanent deletion"
+#: mod/profiles.php:689
+msgid "Change Profile Photo"
 msgstr ""
 
-#: mod/admin.php:1409
-msgid "Request date"
+#: mod/profiles.php:690
+msgid "View this profile"
 msgstr ""
 
-#: mod/admin.php:1410
-msgid "No registrations."
+#: mod/profiles.php:692
+msgid "Create a new profile using these settings"
 msgstr ""
 
-#: mod/admin.php:1411
-msgid "Note from the user"
+#: mod/profiles.php:693
+msgid "Clone this profile"
 msgstr ""
 
-#: mod/admin.php:1413
-msgid "Deny"
+#: mod/profiles.php:694
+msgid "Delete this profile"
 msgstr ""
 
-#: mod/admin.php:1415 mod/contacts.php:605 mod/contacts.php:805
-#: mod/contacts.php:992
-msgid "Block"
+#: mod/profiles.php:696
+msgid "Basic information"
 msgstr ""
 
-#: mod/admin.php:1416 mod/contacts.php:605 mod/contacts.php:805
-#: mod/contacts.php:992
-msgid "Unblock"
+#: mod/profiles.php:697
+msgid "Profile picture"
 msgstr ""
 
-#: mod/admin.php:1417
-msgid "Site admin"
+#: mod/profiles.php:699
+msgid "Preferences"
 msgstr ""
 
-#: mod/admin.php:1418
-msgid "Account expired"
+#: mod/profiles.php:700
+msgid "Status information"
 msgstr ""
 
-#: mod/admin.php:1421
-msgid "New User"
+#: mod/profiles.php:701
+msgid "Additional information"
 msgstr ""
 
-#: mod/admin.php:1422
-msgid "Deleted since"
+#: mod/profiles.php:704
+msgid "Relation"
 msgstr ""
 
-#: mod/admin.php:1427
-msgid ""
-"Selected users will be deleted!\\n\\nEverything these users had posted on "
-"this site will be permanently deleted!\\n\\nAre you sure?"
+#: mod/profiles.php:708
+msgid "Your Gender:"
 msgstr ""
 
-#: mod/admin.php:1428
-msgid ""
-"The user {0} will be deleted!\\n\\nEverything this user has posted on this "
-"site will be permanently deleted!\\n\\nAre you sure?"
+#: mod/profiles.php:709
+msgid "<span class=\"heart\">&hearts;</span> Marital Status:"
 msgstr ""
 
-#: mod/admin.php:1438
-msgid "Name of the new user."
+#: mod/profiles.php:711
+msgid "Example: fishing photography software"
 msgstr ""
 
-#: mod/admin.php:1439
-msgid "Nickname"
+#: mod/profiles.php:716
+msgid "Profile Name:"
 msgstr ""
 
-#: mod/admin.php:1439
-msgid "Nickname of the new user."
+#: mod/profiles.php:716 mod/events.php:484 mod/events.php:496
+msgid "Required"
 msgstr ""
 
-#: mod/admin.php:1440
-msgid "Email address of the new user."
+#: mod/profiles.php:718
+msgid ""
+"This is your <strong>public</strong> profile.<br />It <strong>may</strong> "
+"be visible to anybody using the internet."
 msgstr ""
 
-#: mod/admin.php:1483
-#, php-format
-msgid "Plugin %s disabled."
+#: mod/profiles.php:719
+msgid "Your Full Name:"
 msgstr ""
 
-#: mod/admin.php:1487
-#, php-format
-msgid "Plugin %s enabled."
+#: mod/profiles.php:720
+msgid "Title/Description:"
 msgstr ""
 
-#: mod/admin.php:1498 mod/admin.php:1734
-msgid "Disable"
+#: mod/profiles.php:723
+msgid "Street Address:"
 msgstr ""
 
-#: mod/admin.php:1500 mod/admin.php:1736
-msgid "Enable"
+#: mod/profiles.php:724
+msgid "Locality/City:"
 msgstr ""
 
-#: mod/admin.php:1523 mod/admin.php:1781
-msgid "Toggle"
+#: mod/profiles.php:725
+msgid "Region/State:"
 msgstr ""
 
-#: mod/admin.php:1531 mod/admin.php:1790
-msgid "Author: "
+#: mod/profiles.php:726
+msgid "Postal/Zip Code:"
 msgstr ""
 
-#: mod/admin.php:1532 mod/admin.php:1791
-msgid "Maintainer: "
+#: mod/profiles.php:727
+msgid "Country:"
 msgstr ""
 
-#: mod/admin.php:1584
-msgid "Reload active plugins"
+#: mod/profiles.php:731
+msgid "Who: (if applicable)"
 msgstr ""
 
-#: mod/admin.php:1589
-#, php-format
-msgid ""
-"There are currently no plugins available on your node. You can find the "
-"official plugin repository at %1$s and might find other interesting plugins "
-"in the open plugin registry at %2$s"
+#: mod/profiles.php:731
+msgid "Examples: cathy123, Cathy Williams, cathy@example.com"
 msgstr ""
 
-#: mod/admin.php:1694
-msgid "No themes found."
+#: mod/profiles.php:732
+msgid "Since [date]:"
 msgstr ""
 
-#: mod/admin.php:1772
-msgid "Screenshot"
+#: mod/profiles.php:734
+msgid "Tell us about yourself..."
 msgstr ""
 
-#: mod/admin.php:1832
-msgid "Reload active themes"
+#: mod/profiles.php:735
+msgid "XMPP (Jabber) address:"
 msgstr ""
 
-#: mod/admin.php:1837
-#, php-format
-msgid "No themes found on the system. They should be paced in %1$s"
+#: mod/profiles.php:735
+msgid ""
+"The XMPP address will be propagated to your contacts so that they can follow "
+"you."
 msgstr ""
 
-#: mod/admin.php:1838
-msgid "[Experimental]"
+#: mod/profiles.php:736
+msgid "Homepage URL:"
 msgstr ""
 
-#: mod/admin.php:1839
-msgid "[Unsupported]"
+#: mod/profiles.php:739
+msgid "Religious Views:"
 msgstr ""
 
-#: mod/admin.php:1863
-msgid "Log settings updated."
+#: mod/profiles.php:740
+msgid "Public Keywords:"
 msgstr ""
 
-#: mod/admin.php:1895
-msgid "PHP log currently enabled."
+#: mod/profiles.php:740
+msgid "(Used for suggesting potential friends, can be seen by others)"
 msgstr ""
 
-#: mod/admin.php:1897
-msgid "PHP log currently disabled."
+#: mod/profiles.php:741
+msgid "Private Keywords:"
 msgstr ""
 
-#: mod/admin.php:1906
-msgid "Clear"
+#: mod/profiles.php:741
+msgid "(Used for searching profiles, never shown to others)"
 msgstr ""
 
-#: mod/admin.php:1911
-msgid "Enable Debugging"
+#: mod/profiles.php:744
+msgid "Musical interests"
 msgstr ""
 
-#: mod/admin.php:1912
-msgid "Log file"
+#: mod/profiles.php:745
+msgid "Books, literature"
 msgstr ""
 
-#: mod/admin.php:1912
-msgid ""
-"Must be writable by web server. Relative to your Friendica top-level "
-"directory."
+#: mod/profiles.php:746
+msgid "Television"
 msgstr ""
 
-#: mod/admin.php:1913
-msgid "Log level"
+#: mod/profiles.php:747
+msgid "Film/dance/culture/entertainment"
 msgstr ""
 
-#: mod/admin.php:1916
-msgid "PHP logging"
+#: mod/profiles.php:748
+msgid "Hobbies/Interests"
 msgstr ""
 
-#: mod/admin.php:1917
-msgid ""
-"To enable logging of PHP errors and warnings you can add the following to "
-"the .htconfig.php file of your installation. The filename set in the "
-"'error_log' line is relative to the friendica top-level directory and must "
-"be writeable by the web server. The option '1' for 'log_errors' and "
-"'display_errors' is to enable these options, set to '0' to disable them."
+#: mod/profiles.php:749
+msgid "Love/romance"
 msgstr ""
 
-#: mod/admin.php:2044 mod/admin.php:2045 mod/settings.php:778
-msgid "Off"
+#: mod/profiles.php:750
+msgid "Work/employment"
 msgstr ""
 
-#: mod/admin.php:2044 mod/admin.php:2045 mod/settings.php:778
-msgid "On"
+#: mod/profiles.php:751
+msgid "School/education"
 msgstr ""
 
-#: mod/admin.php:2045
-#, php-format
-msgid "Lock feature %s"
+#: mod/profiles.php:752
+msgid "Contact information and Social Networks"
 msgstr ""
 
-#: mod/admin.php:2053
-msgid "Manage Additional Features"
+#: mod/profiles.php:794
+msgid "Edit/Manage Profiles"
 msgstr ""
 
-#: mod/wall_attach.php:94
-msgid "Sorry, maybe your upload is bigger than the PHP configuration allows"
+#: mod/allfriends.php:43
+msgid "No friends to display."
 msgstr ""
 
-#: mod/wall_attach.php:94
-msgid "Or - did you try to upload an empty file?"
+#: mod/cal.php:149 mod/display.php:328 mod/profile.php:155
+msgid "Access to this profile has been restricted."
 msgstr ""
 
-#: mod/wall_attach.php:105
-#, php-format
-msgid "File exceeds size limit of %s"
+#: mod/cal.php:276 mod/events.php:380
+msgid "View"
 msgstr ""
 
-#: mod/wall_attach.php:156 mod/wall_attach.php:172
-msgid "File upload failed."
+#: mod/cal.php:277 mod/events.php:382
+msgid "Previous"
 msgstr ""
 
-#: mod/allfriends.php:43
-msgid "No friends to display."
+#: mod/cal.php:278 mod/events.php:383 mod/install.php:231
+msgid "Next"
 msgstr ""
 
-#: mod/cal.php:149 mod/display.php:328 mod/profile.php:155
-msgid "Access to this profile has been restricted."
+#: mod/cal.php:287 mod/events.php:392
+msgid "list"
 msgstr ""
 
 #: mod/cal.php:297
@@ -5568,3148 +5033,3649 @@ msgstr ""
 msgid "calendar"
 msgstr ""
 
-#: mod/content.php:119 mod/network.php:469
-msgid "No such group"
+#: mod/common.php:86
+msgid "No contacts in common."
 msgstr ""
 
-#: mod/content.php:130 mod/network.php:496 mod/group.php:193
-msgid "Group is empty"
+#: mod/common.php:134 mod/contacts.php:863
+msgid "Common Friends"
 msgstr ""
 
-#: mod/content.php:135 mod/network.php:500
-#, php-format
-msgid "Group: %s"
+#: mod/community.php:27
+msgid "Not available."
 msgstr ""
 
-#: mod/content.php:325 object/Item.php:95
-msgid "This entry was edited"
+#: mod/directory.php:197 view/theme/vier/theme.php:201
+msgid "Global Directory"
 msgstr ""
 
-#: mod/content.php:621 object/Item.php:429
-#, php-format
-msgid "%d comment"
-msgid_plural "%d comments"
-msgstr[0] ""
-msgstr[1] ""
-
-#: mod/content.php:638 mod/photos.php:1379 object/Item.php:117
-msgid "Private Message"
+#: mod/directory.php:199
+msgid "Find on this site"
 msgstr ""
 
-#: mod/content.php:702 mod/photos.php:1567 object/Item.php:263
-msgid "I like this (toggle)"
+#: mod/directory.php:201
+msgid "Results for:"
 msgstr ""
 
-#: mod/content.php:702 object/Item.php:263
-msgid "like"
+#: mod/directory.php:203
+msgid "Site Directory"
 msgstr ""
 
-#: mod/content.php:703 mod/photos.php:1568 object/Item.php:264
-msgid "I don't like this (toggle)"
+#: mod/directory.php:210
+msgid "No entries (some entries may be hidden)."
 msgstr ""
 
-#: mod/content.php:703 object/Item.php:264
-msgid "dislike"
+#: mod/dirfind.php:36
+#, php-format
+msgid "People Search - %s"
 msgstr ""
 
-#: mod/content.php:705 object/Item.php:266
-msgid "Share this"
+#: mod/dirfind.php:47
+#, php-format
+msgid "Forum Search - %s"
 msgstr ""
 
-#: mod/content.php:705 object/Item.php:266
-msgid "share"
+#: mod/dirfind.php:240 mod/match.php:107
+msgid "No matches"
 msgstr ""
 
-#: mod/content.php:725 mod/photos.php:1587 mod/photos.php:1635
-#: mod/photos.php:1721 object/Item.php:717
-msgid "This is you"
+#: mod/display.php:473
+msgid "Item has been removed."
 msgstr ""
 
-#: mod/content.php:729 object/Item.php:721
-msgid "Bold"
+#: mod/events.php:95 mod/events.php:97
+msgid "Event can not end before it has started."
 msgstr ""
 
-#: mod/content.php:730 object/Item.php:722
-msgid "Italic"
+#: mod/events.php:104 mod/events.php:106
+msgid "Event title and start time are required."
 msgstr ""
 
-#: mod/content.php:731 object/Item.php:723
-msgid "Underline"
+#: mod/events.php:381
+msgid "Create New Event"
 msgstr ""
 
-#: mod/content.php:732 object/Item.php:724
-msgid "Quote"
+#: mod/events.php:482
+msgid "Event details"
 msgstr ""
 
-#: mod/content.php:733 object/Item.php:725
-msgid "Code"
+#: mod/events.php:483
+msgid "Starting date and Title are required."
 msgstr ""
 
-#: mod/content.php:734 object/Item.php:726
-msgid "Image"
+#: mod/events.php:484 mod/events.php:485
+msgid "Event Starts:"
 msgstr ""
 
-#: mod/content.php:735 object/Item.php:727
-msgid "Link"
+#: mod/events.php:486 mod/events.php:502
+msgid "Finish date/time is not known or not relevant"
 msgstr ""
 
-#: mod/content.php:736 object/Item.php:728
-msgid "Video"
+#: mod/events.php:488 mod/events.php:489
+msgid "Event Finishes:"
 msgstr ""
 
-#: mod/content.php:746 mod/settings.php:740 object/Item.php:122
-#: object/Item.php:124
-msgid "Edit"
+#: mod/events.php:490 mod/events.php:503
+msgid "Adjust for viewer timezone"
 msgstr ""
 
-#: mod/content.php:771 object/Item.php:227
-msgid "add star"
+#: mod/events.php:492
+msgid "Description:"
 msgstr ""
 
-#: mod/content.php:772 object/Item.php:228
-msgid "remove star"
+#: mod/events.php:496 mod/events.php:498
+msgid "Title:"
 msgstr ""
 
-#: mod/content.php:773 object/Item.php:229
-msgid "toggle star status"
+#: mod/events.php:499 mod/events.php:500
+msgid "Share this event"
 msgstr ""
 
-#: mod/content.php:776 object/Item.php:232
-msgid "starred"
+#: mod/maintenance.php:9
+msgid "System down for maintenance"
 msgstr ""
 
-#: mod/content.php:777 mod/content.php:798 object/Item.php:252
-msgid "add tag"
+#: mod/match.php:33
+msgid "No keywords to match. Please add keywords to your default profile."
 msgstr ""
 
-#: mod/content.php:787 object/Item.php:240
-msgid "ignore thread"
+#: mod/match.php:86
+msgid "is interested in:"
 msgstr ""
 
-#: mod/content.php:788 object/Item.php:241
-msgid "unignore thread"
+#: mod/match.php:100
+msgid "Profile Match"
 msgstr ""
 
-#: mod/content.php:789 object/Item.php:242
-msgid "toggle ignore status"
+#: mod/profile.php:179
+msgid "Tips for New Members"
 msgstr ""
 
-#: mod/content.php:792 mod/ostatus_subscribe.php:69 object/Item.php:245
-msgid "ignored"
+#: mod/suggest.php:27
+msgid "Do you really want to delete this suggestion?"
 msgstr ""
 
-#: mod/content.php:803 object/Item.php:137
-msgid "save to folder"
+#: mod/suggest.php:71
+msgid ""
+"No suggestions available. If this is a new site, please try again in 24 "
+"hours."
 msgstr ""
 
-#: mod/content.php:848 object/Item.php:201
-msgid "I will attend"
+#: mod/suggest.php:84 mod/suggest.php:104
+msgid "Ignore/Hide"
 msgstr ""
 
-#: mod/content.php:848 object/Item.php:201
-msgid "I will not attend"
+#: mod/update_community.php:19 mod/update_display.php:23
+#: mod/update_network.php:27 mod/update_notes.php:36 mod/update_profile.php:35
+msgid "[Embedded content - reload page to view]"
 msgstr ""
 
-#: mod/content.php:848 object/Item.php:201
-msgid "I might attend"
+#: mod/photos.php:88 mod/photos.php:1856
+msgid "Recent Photos"
 msgstr ""
 
-#: mod/content.php:912 object/Item.php:369
-msgid "to"
+#: mod/photos.php:91 mod/photos.php:1283 mod/photos.php:1858
+msgid "Upload New Photos"
 msgstr ""
 
-#: mod/content.php:913 object/Item.php:371
-msgid "Wall-to-Wall"
+#: mod/photos.php:105 mod/settings.php:36
+msgid "everybody"
 msgstr ""
 
-#: mod/content.php:914 object/Item.php:372
-msgid "via Wall-To-Wall:"
+#: mod/photos.php:169
+msgid "Contact information unavailable"
 msgstr ""
 
-#: mod/repair_ostatus.php:14
-msgid "Resubscribing to OStatus contacts"
+#: mod/photos.php:190
+msgid "Album not found."
 msgstr ""
 
-#: mod/repair_ostatus.php:30
-msgid "Error"
+#: mod/photos.php:220 mod/photos.php:232 mod/photos.php:1227
+msgid "Delete Album"
 msgstr ""
 
-#: mod/repair_ostatus.php:44 mod/ostatus_subscribe.php:51
-msgid "Done"
+#: mod/photos.php:230
+msgid "Do you really want to delete this photo album and all its photos?"
 msgstr ""
 
-#: mod/repair_ostatus.php:50 mod/ostatus_subscribe.php:73
-msgid "Keep this window open until done."
+#: mod/photos.php:308 mod/photos.php:319 mod/photos.php:1540
+msgid "Delete Photo"
 msgstr ""
 
-#: mod/delegate.php:101
-msgid "No potential page delegates located."
+#: mod/photos.php:317
+msgid "Do you really want to delete this photo?"
 msgstr ""
 
-#: mod/delegate.php:132
-msgid ""
-"Delegates are able to manage all aspects of this account/page except for "
-"basic account settings. Please do not delegate your personal account to "
-"anybody that you do not trust completely."
+#: mod/photos.php:688
+#, php-format
+msgid "%1$s was tagged in %2$s by %3$s"
 msgstr ""
 
-#: mod/delegate.php:133
-msgid "Existing Page Managers"
+#: mod/photos.php:688
+msgid "a photo"
 msgstr ""
 
-#: mod/delegate.php:135
-msgid "Existing Page Delegates"
+#: mod/photos.php:794
+msgid "Image file is empty."
 msgstr ""
 
-#: mod/delegate.php:137
-msgid "Potential Delegates"
+#: mod/photos.php:954
+msgid "No photos selected"
 msgstr ""
 
-#: mod/delegate.php:140
-msgid "Add"
+#: mod/photos.php:1054 mod/videos.php:305
+msgid "Access to this item is restricted."
 msgstr ""
 
-#: mod/delegate.php:141
-msgid "No entries."
+#: mod/photos.php:1114
+#, php-format
+msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."
 msgstr ""
 
-#: mod/videos.php:120
-msgid "Do you really want to delete this video?"
+#: mod/photos.php:1148
+msgid "Upload Photos"
 msgstr ""
 
-#: mod/videos.php:125
-msgid "Delete Video"
+#: mod/photos.php:1152 mod/photos.php:1222
+msgid "New album name: "
 msgstr ""
 
-#: mod/videos.php:204
-msgid "No videos selected"
+#: mod/photos.php:1153
+msgid "or existing album name: "
 msgstr ""
 
-#: mod/videos.php:305 mod/photos.php:1054
-msgid "Access to this item is restricted."
+#: mod/photos.php:1154
+msgid "Do not show a status post for this upload"
 msgstr ""
 
-#: mod/videos.php:387 mod/photos.php:1847
-msgid "View Album"
+#: mod/photos.php:1165 mod/photos.php:1544 mod/settings.php:1300
+msgid "Show to Groups"
 msgstr ""
 
-#: mod/videos.php:396
-msgid "Recent Videos"
+#: mod/photos.php:1166 mod/photos.php:1545 mod/settings.php:1301
+msgid "Show to Contacts"
 msgstr ""
 
-#: mod/videos.php:398
-msgid "Upload New Videos"
+#: mod/photos.php:1167
+msgid "Private Photo"
 msgstr ""
 
-#: mod/profiles.php:38
-msgid "Profile deleted."
+#: mod/photos.php:1168
+msgid "Public Photo"
 msgstr ""
 
-#: mod/profiles.php:56 mod/profiles.php:90
-msgid "Profile-"
+#: mod/photos.php:1234
+msgid "Edit Album"
 msgstr ""
 
-#: mod/profiles.php:75 mod/profiles.php:118
-msgid "New profile created."
+#: mod/photos.php:1240
+msgid "Show Newest First"
 msgstr ""
 
-#: mod/profiles.php:96
-msgid "Profile unavailable to clone."
+#: mod/photos.php:1242
+msgid "Show Oldest First"
 msgstr ""
 
-#: mod/profiles.php:190
-msgid "Profile Name is required."
+#: mod/photos.php:1269 mod/photos.php:1841
+msgid "View Photo"
 msgstr ""
 
-#: mod/profiles.php:338
-msgid "Marital Status"
+#: mod/photos.php:1315
+msgid "Permission denied. Access to this item may be restricted."
 msgstr ""
 
-#: mod/profiles.php:342
-msgid "Romantic Partner"
+#: mod/photos.php:1317
+msgid "Photo not available"
 msgstr ""
 
-#: mod/profiles.php:354
-msgid "Work/Employment"
+#: mod/photos.php:1372
+msgid "View photo"
 msgstr ""
 
-#: mod/profiles.php:357
-msgid "Religion"
+#: mod/photos.php:1372
+msgid "Edit photo"
 msgstr ""
 
-#: mod/profiles.php:361
-msgid "Political Views"
+#: mod/photos.php:1373
+msgid "Use as profile photo"
 msgstr ""
 
-#: mod/profiles.php:365
-msgid "Gender"
+#: mod/photos.php:1398
+msgid "View Full Size"
 msgstr ""
 
-#: mod/profiles.php:369
-msgid "Sexual Preference"
-msgstr ""
-
-#: mod/profiles.php:373
-msgid "XMPP"
+#: mod/photos.php:1484
+msgid "Tags: "
 msgstr ""
 
-#: mod/profiles.php:377
-msgid "Homepage"
+#: mod/photos.php:1487
+msgid "[Remove any tag]"
 msgstr ""
 
-#: mod/profiles.php:381 mod/profiles.php:702
-msgid "Interests"
+#: mod/photos.php:1526
+msgid "New album name"
 msgstr ""
 
-#: mod/profiles.php:385
-msgid "Address"
+#: mod/photos.php:1527
+msgid "Caption"
 msgstr ""
 
-#: mod/profiles.php:392 mod/profiles.php:698
-msgid "Location"
+#: mod/photos.php:1528
+msgid "Add a Tag"
 msgstr ""
 
-#: mod/profiles.php:477
-msgid "Profile updated."
+#: mod/photos.php:1528
+msgid "Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
 msgstr ""
 
-#: mod/profiles.php:564
-msgid " and "
+#: mod/photos.php:1529
+msgid "Do not rotate"
 msgstr ""
 
-#: mod/profiles.php:572
-msgid "public profile"
+#: mod/photos.php:1530
+msgid "Rotate CW (right)"
 msgstr ""
 
-#: mod/profiles.php:575
-#, php-format
-msgid "%1$s changed %2$s to &ldquo;%3$s&rdquo;"
+#: mod/photos.php:1531
+msgid "Rotate CCW (left)"
 msgstr ""
 
-#: mod/profiles.php:576
-#, php-format
-msgid " - Visit %1$s's %2$s"
+#: mod/photos.php:1546
+msgid "Private photo"
 msgstr ""
 
-#: mod/profiles.php:579
-#, php-format
-msgid "%1$s has an updated %2$s, changing %3$s."
+#: mod/photos.php:1547
+msgid "Public photo"
 msgstr ""
 
-#: mod/profiles.php:645
-msgid "Hide contacts and friends:"
+#: mod/photos.php:1770
+msgid "Map"
 msgstr ""
 
-#: mod/profiles.php:648 mod/profiles.php:652 mod/profiles.php:677
-#: mod/follow.php:110 mod/dfrn_request.php:862 mod/register.php:246
-#: mod/settings.php:1163 mod/settings.php:1169 mod/settings.php:1177
-#: mod/settings.php:1181 mod/settings.php:1186 mod/settings.php:1192
-#: mod/settings.php:1198 mod/settings.php:1204 mod/settings.php:1230
-#: mod/settings.php:1231 mod/settings.php:1232 mod/settings.php:1233
-#: mod/settings.php:1234 mod/api.php:106
-msgid "No"
+#: mod/photos.php:1847 mod/videos.php:387
+msgid "View Album"
 msgstr ""
 
-#: mod/profiles.php:650
-msgid "Hide your contact/friend list from viewers of this profile?"
+#: mod/register.php:93
+msgid ""
+"Registration successful. Please check your email for further instructions."
 msgstr ""
 
-#: mod/profiles.php:674
-msgid "Show more profile fields:"
+#: mod/register.php:98
+#, 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 ""
 
-#: mod/profiles.php:686
-msgid "Profile Actions"
+#: mod/register.php:105
+msgid "Registration successful."
 msgstr ""
 
-#: mod/profiles.php:687
-msgid "Edit Profile Details"
+#: mod/register.php:111
+msgid "Your registration can not be processed."
 msgstr ""
 
-#: mod/profiles.php:689
-msgid "Change Profile Photo"
+#: mod/register.php:160
+msgid "Your registration is pending approval by the site owner."
 msgstr ""
 
-#: mod/profiles.php:690
-msgid "View this profile"
+#: mod/register.php:226
+msgid ""
+"You may (optionally) fill in this form via OpenID by supplying your OpenID "
+"and clicking 'Register'."
 msgstr ""
 
-#: mod/profiles.php:692
-msgid "Create a new profile using these settings"
+#: mod/register.php:227
+msgid ""
+"If you are not familiar with OpenID, please leave that field blank and fill "
+"in the rest of the items."
 msgstr ""
 
-#: mod/profiles.php:693
-msgid "Clone this profile"
+#: mod/register.php:228
+msgid "Your OpenID (optional): "
 msgstr ""
 
-#: mod/profiles.php:694
-msgid "Delete this profile"
+#: mod/register.php:242
+msgid "Include your profile in member directory?"
 msgstr ""
 
-#: mod/profiles.php:696
-msgid "Basic information"
+#: mod/register.php:267
+msgid "Note for the admin"
 msgstr ""
 
-#: mod/profiles.php:697
-msgid "Profile picture"
+#: mod/register.php:267
+msgid "Leave a message for the admin, why you want to join this node"
 msgstr ""
 
-#: mod/profiles.php:699
-msgid "Preferences"
+#: mod/register.php:268
+msgid "Membership on this site is by invitation only."
 msgstr ""
 
-#: mod/profiles.php:700
-msgid "Status information"
+#: mod/register.php:269
+msgid "Your invitation ID: "
 msgstr ""
 
-#: mod/profiles.php:701
-msgid "Additional information"
+#: mod/register.php:272 mod/admin.php:956
+msgid "Registration"
 msgstr ""
 
-#: mod/profiles.php:704
-msgid "Relation"
+#: mod/register.php:280
+msgid "Your Full Name (e.g. Joe Smith, real or real-looking): "
 msgstr ""
 
-#: mod/profiles.php:707 mod/newmember.php:36 mod/profile_photo.php:250
-msgid "Upload Profile Photo"
+#: mod/register.php:281
+msgid "Your Email Address: "
 msgstr ""
 
-#: mod/profiles.php:708
-msgid "Your Gender:"
+#: mod/register.php:283 mod/settings.php:1271
+msgid "New Password:"
 msgstr ""
 
-#: mod/profiles.php:709
-msgid "<span class=\"heart\">&hearts;</span> Marital Status:"
+#: mod/register.php:283
+msgid "Leave empty for an auto generated password."
 msgstr ""
 
-#: mod/profiles.php:711
-msgid "Example: fishing photography software"
+#: mod/register.php:284 mod/settings.php:1272
+msgid "Confirm:"
 msgstr ""
 
-#: mod/profiles.php:716
-msgid "Profile Name:"
+#: mod/register.php:285
+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 ""
 
-#: mod/profiles.php:718
-msgid ""
-"This is your <strong>public</strong> profile.<br />It <strong>may</strong> "
-"be visible to anybody using the internet."
+#: mod/register.php:286
+msgid "Choose a nickname: "
 msgstr ""
 
-#: mod/profiles.php:719
-msgid "Your Full Name:"
+#: mod/register.php:296
+msgid "Import your profile to this friendica instance"
 msgstr ""
 
-#: mod/profiles.php:720
-msgid "Title/Description:"
+#: mod/settings.php:43 mod/admin.php:1396
+msgid "Account"
 msgstr ""
 
-#: mod/profiles.php:723
-msgid "Street Address:"
+#: mod/settings.php:52 mod/admin.php:160
+msgid "Additional features"
 msgstr ""
 
-#: mod/profiles.php:724
-msgid "Locality/City:"
+#: mod/settings.php:60
+msgid "Display"
 msgstr ""
 
-#: mod/profiles.php:725
-msgid "Region/State:"
+#: mod/settings.php:67 mod/settings.php:886
+msgid "Social Networks"
 msgstr ""
 
-#: mod/profiles.php:726
-msgid "Postal/Zip Code:"
+#: mod/settings.php:74 mod/admin.php:158 mod/admin.php:1522 mod/admin.php:1582
+msgid "Plugins"
 msgstr ""
 
-#: mod/profiles.php:727
-msgid "Country:"
+#: mod/settings.php:88
+msgid "Connected apps"
 msgstr ""
 
-#: mod/profiles.php:731
-msgid "Who: (if applicable)"
+#: mod/settings.php:102
+msgid "Remove account"
 msgstr ""
 
-#: mod/profiles.php:731
-msgid "Examples: cathy123, Cathy Williams, cathy@example.com"
+#: mod/settings.php:155
+msgid "Missing some important data!"
 msgstr ""
 
-#: mod/profiles.php:732
-msgid "Since [date]:"
+#: mod/settings.php:158 mod/settings.php:704 mod/contacts.php:804
+msgid "Update"
 msgstr ""
 
-#: mod/profiles.php:734
-msgid "Tell us about yourself..."
+#: mod/settings.php:269
+msgid "Failed to connect with email account using the settings provided."
 msgstr ""
 
-#: mod/profiles.php:735
-msgid "XMPP (Jabber) address:"
+#: mod/settings.php:274
+msgid "Email settings updated."
 msgstr ""
 
-#: mod/profiles.php:735
-msgid ""
-"The XMPP address will be propagated to your contacts so that they can follow "
-"you."
+#: mod/settings.php:289
+msgid "Features updated"
 msgstr ""
 
-#: mod/profiles.php:736
-msgid "Homepage URL:"
+#: mod/settings.php:359
+msgid "Relocate message has been send to your contacts"
 msgstr ""
 
-#: mod/profiles.php:739
-msgid "Religious Views:"
+#: mod/settings.php:378
+msgid "Empty passwords are not allowed. Password unchanged."
 msgstr ""
 
-#: mod/profiles.php:740
-msgid "Public Keywords:"
+#: mod/settings.php:386
+msgid "Wrong password."
 msgstr ""
 
-#: mod/profiles.php:740
-msgid "(Used for suggesting potential friends, can be seen by others)"
+#: mod/settings.php:397
+msgid "Password changed."
 msgstr ""
 
-#: mod/profiles.php:741
-msgid "Private Keywords:"
+#: mod/settings.php:399
+msgid "Password update failed. Please try again."
 msgstr ""
 
-#: mod/profiles.php:741
-msgid "(Used for searching profiles, never shown to others)"
+#: mod/settings.php:479
+msgid " Please use a shorter name."
 msgstr ""
 
-#: mod/profiles.php:744
-msgid "Musical interests"
+#: mod/settings.php:481
+msgid " Name too short."
 msgstr ""
 
-#: mod/profiles.php:745
-msgid "Books, literature"
+#: mod/settings.php:490
+msgid "Wrong Password"
 msgstr ""
 
-#: mod/profiles.php:746
-msgid "Television"
+#: mod/settings.php:495
+msgid " Not valid email."
 msgstr ""
 
-#: mod/profiles.php:747
-msgid "Film/dance/culture/entertainment"
+#: mod/settings.php:501
+msgid " Cannot change to that email."
 msgstr ""
 
-#: mod/profiles.php:748
-msgid "Hobbies/Interests"
+#: mod/settings.php:557
+msgid "Private forum has no privacy permissions. Using default privacy group."
 msgstr ""
 
-#: mod/profiles.php:749
-msgid "Love/romance"
+#: mod/settings.php:561
+msgid "Private forum has no privacy permissions and no default privacy group."
 msgstr ""
 
-#: mod/profiles.php:750
-msgid "Work/employment"
+#: mod/settings.php:601
+msgid "Settings updated."
 msgstr ""
 
-#: mod/profiles.php:751
-msgid "School/education"
+#: mod/settings.php:677 mod/settings.php:703 mod/settings.php:739
+msgid "Add application"
 msgstr ""
 
-#: mod/profiles.php:752
-msgid "Contact information and Social Networks"
+#: mod/settings.php:678 mod/settings.php:788 mod/settings.php:835
+#: mod/settings.php:904 mod/settings.php:996 mod/settings.php:1264
+#: mod/admin.php:955 mod/admin.php:1583 mod/admin.php:1831 mod/admin.php:1905
+#: mod/admin.php:2055
+msgid "Save Settings"
 msgstr ""
 
-#: mod/profiles.php:794
-msgid "Edit/Manage Profiles"
+#: mod/settings.php:681 mod/settings.php:707
+msgid "Consumer Key"
 msgstr ""
 
-#: mod/credits.php:16
-msgid "Credits"
+#: mod/settings.php:682 mod/settings.php:708
+msgid "Consumer Secret"
 msgstr ""
 
-#: mod/credits.php:17
-msgid ""
-"Friendica is a community project, that would not be possible without the "
-"help of many people. Here is a list of those who have contributed to the "
-"code or the translation of Friendica. Thank you all!"
+#: mod/settings.php:683 mod/settings.php:709
+msgid "Redirect"
 msgstr ""
 
-#: mod/filer.php:30
-msgid "- select -"
+#: mod/settings.php:684 mod/settings.php:710
+msgid "Icon url"
 msgstr ""
 
-#: mod/poke.php:192
-msgid "Poke/Prod"
+#: mod/settings.php:695
+msgid "You can't edit this application."
 msgstr ""
 
-#: mod/poke.php:193
-msgid "poke, prod or do other things to somebody"
+#: mod/settings.php:738
+msgid "Connected Apps"
 msgstr ""
 
-#: mod/poke.php:194
-msgid "Recipient"
+#: mod/settings.php:742
+msgid "Client key starts with"
 msgstr ""
 
-#: mod/poke.php:195
-msgid "Choose what you wish to do to recipient"
+#: mod/settings.php:743
+msgid "No name"
 msgstr ""
 
-#: mod/poke.php:198
-msgid "Make this post private"
+#: mod/settings.php:744
+msgid "Remove authorization"
 msgstr ""
 
-#: mod/photos.php:88 mod/photos.php:1856
-msgid "Recent Photos"
+#: mod/settings.php:756
+msgid "No Plugin settings configured"
 msgstr ""
 
-#: mod/photos.php:91 mod/photos.php:1283 mod/photos.php:1858
-msgid "Upload New Photos"
+#: mod/settings.php:764
+msgid "Plugin Settings"
 msgstr ""
 
-#: mod/photos.php:105 mod/settings.php:36
-msgid "everybody"
+#: mod/settings.php:778 mod/admin.php:2044 mod/admin.php:2045
+msgid "Off"
 msgstr ""
 
-#: mod/photos.php:169
-msgid "Contact information unavailable"
+#: mod/settings.php:778 mod/admin.php:2044 mod/admin.php:2045
+msgid "On"
 msgstr ""
 
-#: mod/photos.php:190
-msgid "Album not found."
+#: mod/settings.php:786
+msgid "Additional Features"
 msgstr ""
 
-#: mod/photos.php:220 mod/photos.php:232 mod/photos.php:1227
-msgid "Delete Album"
+#: mod/settings.php:796 mod/settings.php:800
+msgid "General Social Media Settings"
 msgstr ""
 
-#: mod/photos.php:230
-msgid "Do you really want to delete this photo album and all its photos?"
+#: mod/settings.php:806
+msgid "Disable intelligent shortening"
 msgstr ""
 
-#: mod/photos.php:308 mod/photos.php:319 mod/photos.php:1540
-msgid "Delete Photo"
+#: mod/settings.php:808
+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/photos.php:317
-msgid "Do you really want to delete this photo?"
+#: mod/settings.php:814
+msgid "Automatically follow any GNU Social (OStatus) followers/mentioners"
 msgstr ""
 
-#: mod/photos.php:688
-#, php-format
-msgid "%1$s was tagged in %2$s by %3$s"
+#: mod/settings.php:816
+msgid ""
+"If you receive a message from an unknown OStatus user, this option decides "
+"what to do. If it is checked, a new contact will be created for every "
+"unknown user."
 msgstr ""
 
-#: mod/photos.php:688
-msgid "a photo"
+#: mod/settings.php:822
+msgid "Default group for OStatus contacts"
 msgstr ""
 
-#: mod/photos.php:794
-msgid "Image file is empty."
+#: mod/settings.php:828
+msgid "Your legacy GNU Social account"
 msgstr ""
 
-#: mod/photos.php:954
-msgid "No photos selected"
+#: mod/settings.php:830
+msgid ""
+"If you enter your old GNU Social/Statusnet account name here (in the format "
+"user@domain.tld), your contacts will be added automatically. The field will "
+"be emptied when done."
 msgstr ""
 
-#: mod/photos.php:1114
-#, php-format
-msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."
+#: mod/settings.php:833
+msgid "Repair OStatus subscriptions"
 msgstr ""
 
-#: mod/photos.php:1148
-msgid "Upload Photos"
+#: mod/settings.php:842 mod/settings.php:843
+#, php-format
+msgid "Built-in support for %s connectivity is %s"
 msgstr ""
 
-#: mod/photos.php:1152 mod/photos.php:1222
-msgid "New album name: "
+#: mod/settings.php:842 mod/settings.php:843
+msgid "enabled"
 msgstr ""
 
-#: mod/photos.php:1153
-msgid "or existing album name: "
+#: mod/settings.php:842 mod/settings.php:843
+msgid "disabled"
 msgstr ""
 
-#: mod/photos.php:1154
-msgid "Do not show a status post for this upload"
+#: mod/settings.php:843
+msgid "GNU Social (OStatus)"
 msgstr ""
 
-#: mod/photos.php:1165 mod/photos.php:1544 mod/settings.php:1300
-msgid "Show to Groups"
+#: mod/settings.php:879
+msgid "Email access is disabled on this site."
 msgstr ""
 
-#: mod/photos.php:1166 mod/photos.php:1545 mod/settings.php:1301
-msgid "Show to Contacts"
+#: mod/settings.php:891
+msgid "Email/Mailbox Setup"
 msgstr ""
 
-#: mod/photos.php:1167
-msgid "Private Photo"
+#: mod/settings.php:892
+msgid ""
+"If you wish to communicate with email contacts using this service "
+"(optional), please specify how to connect to your mailbox."
 msgstr ""
 
-#: mod/photos.php:1168
-msgid "Public Photo"
+#: mod/settings.php:893
+msgid "Last successful email check:"
 msgstr ""
 
-#: mod/photos.php:1234
-msgid "Edit Album"
+#: mod/settings.php:895
+msgid "IMAP server name:"
 msgstr ""
 
-#: mod/photos.php:1240
-msgid "Show Newest First"
+#: mod/settings.php:896
+msgid "IMAP port:"
 msgstr ""
 
-#: mod/photos.php:1242
-msgid "Show Oldest First"
+#: mod/settings.php:897
+msgid "Security:"
 msgstr ""
 
-#: mod/photos.php:1269 mod/photos.php:1841
-msgid "View Photo"
+#: mod/settings.php:897 mod/settings.php:902
+msgid "None"
 msgstr ""
 
-#: mod/photos.php:1315
-msgid "Permission denied. Access to this item may be restricted."
+#: mod/settings.php:898
+msgid "Email login name:"
 msgstr ""
 
-#: mod/photos.php:1317
-msgid "Photo not available"
+#: mod/settings.php:899
+msgid "Email password:"
 msgstr ""
 
-#: mod/photos.php:1372
-msgid "View photo"
+#: mod/settings.php:900
+msgid "Reply-to address:"
 msgstr ""
 
-#: mod/photos.php:1372
-msgid "Edit photo"
+#: mod/settings.php:901
+msgid "Send public posts to all email contacts:"
 msgstr ""
 
-#: mod/photos.php:1373
-msgid "Use as profile photo"
+#: mod/settings.php:902
+msgid "Action after import:"
 msgstr ""
 
-#: mod/photos.php:1398
-msgid "View Full Size"
+#: mod/settings.php:902
+msgid "Move to folder"
 msgstr ""
 
-#: mod/photos.php:1484
-msgid "Tags: "
+#: mod/settings.php:903
+msgid "Move to folder:"
 msgstr ""
 
-#: mod/photos.php:1487
-msgid "[Remove any tag]"
+#: mod/settings.php:934 mod/admin.php:862
+msgid "No special theme for mobile devices"
 msgstr ""
 
-#: mod/photos.php:1526
-msgid "New album name"
+#: mod/settings.php:994
+msgid "Display Settings"
 msgstr ""
 
-#: mod/photos.php:1527
-msgid "Caption"
+#: mod/settings.php:1000 mod/settings.php:1023
+msgid "Display Theme:"
 msgstr ""
 
-#: mod/photos.php:1528
-msgid "Add a Tag"
+#: mod/settings.php:1001
+msgid "Mobile Theme:"
 msgstr ""
 
-#: mod/photos.php:1528
-msgid "Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
+#: mod/settings.php:1002
+msgid "Suppress warning of insecure networks"
 msgstr ""
 
-#: mod/photos.php:1529
-msgid "Do not rotate"
+#: mod/settings.php:1002
+msgid ""
+"Should the system suppress the warning that the current group contains "
+"members of networks that can't receive non public postings."
 msgstr ""
 
-#: mod/photos.php:1530
-msgid "Rotate CW (right)"
+#: mod/settings.php:1003
+msgid "Update browser every xx seconds"
 msgstr ""
 
-#: mod/photos.php:1531
-msgid "Rotate CCW (left)"
+#: mod/settings.php:1003
+msgid "Minimum of 10 seconds. Enter -1 to disable it."
 msgstr ""
 
-#: mod/photos.php:1546
-msgid "Private photo"
+#: mod/settings.php:1004
+msgid "Number of items to display per page:"
 msgstr ""
 
-#: mod/photos.php:1547
-msgid "Public photo"
+#: mod/settings.php:1004 mod/settings.php:1005
+msgid "Maximum of 100 items"
 msgstr ""
 
-#: mod/photos.php:1770
-msgid "Map"
+#: mod/settings.php:1005
+msgid "Number of items to display per page when viewed from mobile device:"
 msgstr ""
 
-#: mod/install.php:139
-msgid "Friendica Communications Server - Setup"
+#: mod/settings.php:1006
+msgid "Don't show emoticons"
 msgstr ""
 
-#: mod/install.php:145
-msgid "Could not connect to database."
+#: mod/settings.php:1007
+msgid "Calendar"
 msgstr ""
 
-#: mod/install.php:149
-msgid "Could not create table."
+#: mod/settings.php:1008
+msgid "Beginning of week:"
 msgstr ""
 
-#: mod/install.php:155
-msgid "Your Friendica site database has been installed."
+#: mod/settings.php:1009
+msgid "Don't show notices"
 msgstr ""
 
-#: mod/install.php:160
-msgid ""
-"You may need to import the file \"database.sql\" manually using phpmyadmin "
-"or mysql."
+#: mod/settings.php:1010
+msgid "Infinite scroll"
 msgstr ""
 
-#: mod/install.php:161 mod/install.php:230 mod/install.php:602
-msgid "Please see the file \"INSTALL.txt\"."
+#: mod/settings.php:1011
+msgid "Automatic updates only at the top of the network page"
 msgstr ""
 
-#: mod/install.php:173
-msgid "Database already in use."
+#: mod/settings.php:1012
+msgid "Bandwith Saver Mode"
 msgstr ""
 
-#: mod/install.php:227
-msgid "System check"
+#: mod/settings.php:1012
+msgid ""
+"When enabled, embedded content is not displayed on automatic updates, they "
+"only show on page reload."
 msgstr ""
 
-#: mod/install.php:232
-msgid "Check again"
+#: mod/settings.php:1014
+msgid "General Theme Settings"
 msgstr ""
 
-#: mod/install.php:251
-msgid "Database connection"
+#: mod/settings.php:1015
+msgid "Custom Theme Settings"
 msgstr ""
 
-#: mod/install.php:252
-msgid ""
-"In order to install Friendica we need to know how to connect to your "
-"database."
+#: mod/settings.php:1016
+msgid "Content Settings"
 msgstr ""
 
-#: mod/install.php:253
-msgid ""
-"Please contact your hosting provider or site administrator if you have "
-"questions about these settings."
+#: mod/settings.php:1017 view/theme/frio/config.php:61
+#: view/theme/quattro/config.php:66 view/theme/vier/config.php:109
+#: view/theme/duepuntozero/config.php:61
+msgid "Theme settings"
 msgstr ""
 
-#: mod/install.php:254
-msgid ""
-"The database you specify below should already exist. If it does not, please "
-"create it before continuing."
+#: mod/settings.php:1099
+msgid "Account Types"
 msgstr ""
 
-#: mod/install.php:258
-msgid "Database Server Name"
+#: mod/settings.php:1100
+msgid "Personal Page Subtypes"
 msgstr ""
 
-#: mod/install.php:259
-msgid "Database Login Name"
+#: mod/settings.php:1101
+msgid "Community Forum Subtypes"
 msgstr ""
 
-#: mod/install.php:260
-msgid "Database Login Password"
+#: mod/settings.php:1108
+msgid "Personal Page"
 msgstr ""
 
-#: mod/install.php:261
-msgid "Database Name"
+#: mod/settings.php:1109
+msgid "This account is a regular personal profile"
 msgstr ""
 
-#: mod/install.php:262 mod/install.php:303
-msgid "Site administrator email address"
+#: mod/settings.php:1112
+msgid "Organisation Page"
 msgstr ""
 
-#: mod/install.php:262 mod/install.php:303
-msgid ""
-"Your account email address must match this in order to use the web admin "
-"panel."
+#: mod/settings.php:1113
+msgid "This account is a profile for an organisation"
 msgstr ""
 
-#: mod/install.php:266 mod/install.php:306
-msgid "Please select a default timezone for your website"
+#: mod/settings.php:1116
+msgid "News Page"
 msgstr ""
 
-#: mod/install.php:293
-msgid "Site settings"
+#: mod/settings.php:1117
+msgid "This account is a news account/reflector"
 msgstr ""
 
-#: mod/install.php:307
-msgid "System Language:"
+#: mod/settings.php:1120
+msgid "Community Forum"
 msgstr ""
 
-#: mod/install.php:307
+#: mod/settings.php:1121
 msgid ""
-"Set the default language for your Friendica installation interface and to "
-"send emails."
+"This account is a community forum where people can discuss with each other"
 msgstr ""
 
-#: mod/install.php:347
-msgid "Could not find a command line version of PHP in the web server PATH."
+#: mod/settings.php:1124
+msgid "Normal Account Page"
 msgstr ""
 
-#: mod/install.php:348
-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='https://"
-"github.com/friendica/friendica/blob/master/doc/Install.md#set-up-the-"
-"poller'>'Setup the poller'</a>"
+#: mod/settings.php:1125
+msgid "This account is a normal personal profile"
 msgstr ""
 
-#: mod/install.php:352
-msgid "PHP executable path"
+#: mod/settings.php:1128
+msgid "Soapbox Page"
 msgstr ""
 
-#: mod/install.php:352
-msgid ""
-"Enter full path to php executable. You can leave this blank to continue the "
-"installation."
+#: mod/settings.php:1129
+msgid "Automatically approve all connection/friend requests as read-only fans"
 msgstr ""
 
-#: mod/install.php:357
-msgid "Command line PHP"
+#: mod/settings.php:1132
+msgid "Public Forum"
 msgstr ""
 
-#: mod/install.php:366
-msgid "PHP executable is not the php cli binary (could be cgi-fgci version)"
+#: mod/settings.php:1133
+msgid "Automatically approve all contact requests"
 msgstr ""
 
-#: mod/install.php:367
-msgid "Found PHP version: "
+#: mod/settings.php:1136
+msgid "Automatic Friend Page"
 msgstr ""
 
-#: mod/install.php:369
-msgid "PHP cli binary"
+#: mod/settings.php:1137
+msgid "Automatically approve all connection/friend requests as friends"
 msgstr ""
 
-#: mod/install.php:380
-msgid ""
-"The command line version of PHP on your system does not have "
-"\"register_argc_argv\" enabled."
+#: mod/settings.php:1140
+msgid "Private Forum [Experimental]"
 msgstr ""
 
-#: mod/install.php:381
-msgid "This is required for message delivery to work."
+#: mod/settings.php:1141
+msgid "Private forum - approved members only"
 msgstr ""
 
-#: mod/install.php:383
-msgid "PHP register_argc_argv"
+#: mod/settings.php:1153
+msgid "OpenID:"
 msgstr ""
 
-#: mod/install.php:404
-msgid ""
-"Error: the \"openssl_pkey_new\" function on this system is not able to "
-"generate encryption keys"
+#: mod/settings.php:1153
+msgid "(Optional) Allow this OpenID to login to this account."
 msgstr ""
 
-#: mod/install.php:405
-msgid ""
-"If running under Windows, please see \"http://www.php.net/manual/en/openssl."
-"installation.php\"."
+#: mod/settings.php:1163
+msgid "Publish your default profile in your local site directory?"
 msgstr ""
 
-#: mod/install.php:407
-msgid "Generate encryption keys"
+#: mod/settings.php:1169
+msgid "Publish your default profile in the global social directory?"
 msgstr ""
 
-#: mod/install.php:414
-msgid "libCurl PHP module"
+#: mod/settings.php:1177
+msgid "Hide your contact/friend list from viewers of your default profile?"
 msgstr ""
 
-#: mod/install.php:415
-msgid "GD graphics PHP module"
+#: mod/settings.php:1181
+msgid ""
+"If enabled, posting public messages to Diaspora and other networks isn't "
+"possible."
 msgstr ""
 
-#: mod/install.php:416
-msgid "OpenSSL PHP module"
+#: mod/settings.php:1186
+msgid "Allow friends to post to your profile page?"
 msgstr ""
 
-#: mod/install.php:417
-msgid "mysqli PHP module"
+#: mod/settings.php:1192
+msgid "Allow friends to tag your posts?"
 msgstr ""
 
-#: mod/install.php:418
-msgid "mb_string PHP module"
+#: mod/settings.php:1198
+msgid "Allow us to suggest you as a potential friend to new members?"
 msgstr ""
 
-#: mod/install.php:419
-msgid "mcrypt PHP module"
+#: mod/settings.php:1204
+msgid "Permit unknown people to send you private mail?"
 msgstr ""
 
-#: mod/install.php:420
-msgid "XML PHP module"
+#: mod/settings.php:1212
+msgid "Profile is <strong>not published</strong>."
 msgstr ""
 
-#: mod/install.php:421
-msgid "iconv module"
+#: mod/settings.php:1220
+#, php-format
+msgid "Your Identity Address is <strong>'%s'</strong> or '%s'."
 msgstr ""
 
-#: mod/install.php:425 mod/install.php:427
-msgid "Apache mod_rewrite module"
+#: mod/settings.php:1227
+msgid "Automatically expire posts after this many days:"
 msgstr ""
 
-#: mod/install.php:425
-msgid ""
-"Error: Apache webserver mod-rewrite module is required but not installed."
+#: mod/settings.php:1227
+msgid "If empty, posts will not expire. Expired posts will be deleted"
 msgstr ""
 
-#: mod/install.php:433
-msgid "Error: libCURL PHP module required but not installed."
+#: mod/settings.php:1228
+msgid "Advanced expiration settings"
 msgstr ""
 
-#: mod/install.php:437
-msgid ""
-"Error: GD graphics PHP module with JPEG support required but not installed."
+#: mod/settings.php:1229
+msgid "Advanced Expiration"
 msgstr ""
 
-#: mod/install.php:441
-msgid "Error: openssl PHP module required but not installed."
+#: mod/settings.php:1230
+msgid "Expire posts:"
 msgstr ""
 
-#: mod/install.php:445
-msgid "Error: mysqli PHP module required but not installed."
+#: mod/settings.php:1231
+msgid "Expire personal notes:"
 msgstr ""
 
-#: mod/install.php:449
-msgid "Error: mb_string PHP module required but not installed."
+#: mod/settings.php:1232
+msgid "Expire starred posts:"
 msgstr ""
 
-#: mod/install.php:453
-msgid "Error: mcrypt PHP module required but not installed."
+#: mod/settings.php:1233
+msgid "Expire photos:"
 msgstr ""
 
-#: mod/install.php:457
-msgid "Error: iconv PHP module required but not installed."
+#: mod/settings.php:1234
+msgid "Only expire posts by others:"
 msgstr ""
 
-#: mod/install.php:466
-msgid ""
-"If you are using php_cli, please make sure that mcrypt module is enabled in "
-"its config file"
+#: mod/settings.php:1262
+msgid "Account Settings"
 msgstr ""
 
-#: mod/install.php:469
-msgid ""
-"Function mcrypt_create_iv() is not defined. This is needed to enable RINO2 "
-"encryption layer."
+#: mod/settings.php:1270
+msgid "Password Settings"
 msgstr ""
 
-#: mod/install.php:471
-msgid "mcrypt_create_iv() function"
+#: mod/settings.php:1272
+msgid "Leave password fields blank unless changing"
 msgstr ""
 
-#: mod/install.php:479
-msgid "Error, XML PHP module required but not installed."
+#: mod/settings.php:1273
+msgid "Current Password:"
 msgstr ""
 
-#: mod/install.php:494
-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."
+#: mod/settings.php:1273 mod/settings.php:1274
+msgid "Your current password to confirm the changes"
 msgstr ""
 
-#: mod/install.php:495
-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."
+#: mod/settings.php:1274
+msgid "Password:"
 msgstr ""
 
-#: mod/install.php:496
-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."
+#: mod/settings.php:1278
+msgid "Basic Settings"
 msgstr ""
 
-#: mod/install.php:497
-msgid ""
-"You can alternatively skip this procedure and perform a manual installation. "
-"Please see the file \"INSTALL.txt\" for instructions."
+#: mod/settings.php:1280
+msgid "Email Address:"
 msgstr ""
 
-#: mod/install.php:500
-msgid ".htconfig.php is writable"
+#: mod/settings.php:1281
+msgid "Your Timezone:"
 msgstr ""
 
-#: mod/install.php:510
-msgid ""
-"Friendica uses the Smarty3 template engine to render its web views. Smarty3 "
-"compiles templates to PHP to speed up rendering."
+#: mod/settings.php:1282
+msgid "Your Language:"
 msgstr ""
 
-#: mod/install.php:511
+#: mod/settings.php:1282
 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."
+"Set the language we use to show you friendica interface and to send you "
+"emails"
 msgstr ""
 
-#: mod/install.php:512
-msgid ""
-"Please ensure that the user that your web server runs as (e.g. www-data) has "
-"write access to this folder."
+#: mod/settings.php:1283
+msgid "Default Post Location:"
 msgstr ""
 
-#: mod/install.php:513
-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."
+#: mod/settings.php:1284
+msgid "Use Browser Location:"
 msgstr ""
 
-#: mod/install.php:516
-msgid "view/smarty3 is writable"
+#: mod/settings.php:1287
+msgid "Security and Privacy Settings"
 msgstr ""
 
-#: mod/install.php:532
-msgid ""
-"Url rewrite in .htaccess is not working. Check your server configuration."
+#: mod/settings.php:1289
+msgid "Maximum Friend Requests/Day:"
 msgstr ""
 
-#: mod/install.php:534
-msgid "Url rewrite is working"
+#: mod/settings.php:1289 mod/settings.php:1319
+msgid "(to prevent spam abuse)"
 msgstr ""
 
-#: mod/install.php:551
-msgid "ImageMagick PHP extension is installed"
+#: mod/settings.php:1290
+msgid "Default Post Permissions"
 msgstr ""
 
-#: mod/install.php:553
-msgid "ImageMagick supports GIF"
+#: mod/settings.php:1291
+msgid "(click to open/close)"
 msgstr ""
 
-#: mod/install.php:561
-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."
+#: mod/settings.php:1302
+msgid "Default Private Post"
 msgstr ""
 
-#: mod/install.php:600
-msgid "<h1>What next</h1>"
+#: mod/settings.php:1303
+msgid "Default Public Post"
 msgstr ""
 
-#: mod/install.php:601
-msgid ""
-"IMPORTANT: You will need to [manually] setup a scheduled task for the poller."
+#: mod/settings.php:1307
+msgid "Default Permissions for New Posts"
 msgstr ""
 
-#: mod/subthread.php:103
-#, php-format
-msgid "%1$s is following %2$s's %3$s"
+#: mod/settings.php:1319
+msgid "Maximum private messages per day from unknown people:"
 msgstr ""
 
-#: mod/attach.php:8
-msgid "Item not available."
+#: mod/settings.php:1322
+msgid "Notification Settings"
 msgstr ""
 
-#: mod/attach.php:20
-msgid "Item was not found."
+#: mod/settings.php:1323
+msgid "By default post a status message when:"
 msgstr ""
 
-#: mod/contacts.php:128
-#, php-format
-msgid "%d contact edited."
-msgid_plural "%d contacts edited."
-msgstr[0] ""
-msgstr[1] ""
+#: mod/settings.php:1324
+msgid "accepting a friend request"
+msgstr ""
 
-#: mod/contacts.php:159 mod/contacts.php:368
-msgid "Could not access contact record."
+#: mod/settings.php:1325
+msgid "joining a forum/community"
 msgstr ""
 
-#: mod/contacts.php:173
-msgid "Could not locate selected profile."
+#: mod/settings.php:1326
+msgid "making an <em>interesting</em> profile change"
 msgstr ""
 
-#: mod/contacts.php:206
-msgid "Contact updated."
+#: mod/settings.php:1327
+msgid "Send a notification email when:"
 msgstr ""
 
-#: mod/contacts.php:208 mod/dfrn_request.php:583
-msgid "Failed to update contact record."
+#: mod/settings.php:1328
+msgid "You receive an introduction"
 msgstr ""
 
-#: mod/contacts.php:389
-msgid "Contact has been blocked"
+#: mod/settings.php:1329
+msgid "Your introductions are confirmed"
 msgstr ""
 
-#: mod/contacts.php:389
-msgid "Contact has been unblocked"
+#: mod/settings.php:1330
+msgid "Someone writes on your profile wall"
 msgstr ""
 
-#: mod/contacts.php:400
-msgid "Contact has been ignored"
+#: mod/settings.php:1331
+msgid "Someone writes a followup comment"
 msgstr ""
 
-#: mod/contacts.php:400
-msgid "Contact has been unignored"
+#: mod/settings.php:1332
+msgid "You receive a private message"
 msgstr ""
 
-#: mod/contacts.php:412
-msgid "Contact has been archived"
+#: mod/settings.php:1333
+msgid "You receive a friend suggestion"
 msgstr ""
 
-#: mod/contacts.php:412
-msgid "Contact has been unarchived"
+#: mod/settings.php:1334
+msgid "You are tagged in a post"
 msgstr ""
 
-#: mod/contacts.php:437
-msgid "Drop contact"
+#: mod/settings.php:1335
+msgid "You are poked/prodded/etc. in a post"
 msgstr ""
 
-#: mod/contacts.php:440 mod/contacts.php:801
-msgid "Do you really want to delete this contact?"
+#: mod/settings.php:1337
+msgid "Activate desktop notifications"
 msgstr ""
 
-#: mod/contacts.php:457
-msgid "Contact has been removed."
+#: mod/settings.php:1337
+msgid "Show desktop popup on new notifications"
 msgstr ""
 
-#: mod/contacts.php:498
-#, php-format
-msgid "You are mutual friends with %s"
+#: mod/settings.php:1339
+msgid "Text-only notification emails"
 msgstr ""
 
-#: mod/contacts.php:502
-#, php-format
-msgid "You are sharing with %s"
+#: mod/settings.php:1341
+msgid "Send text only notification emails, without the html part"
 msgstr ""
 
-#: mod/contacts.php:507
-#, php-format
-msgid "%s is sharing with you"
+#: mod/settings.php:1343
+msgid "Advanced Account/Page Type Settings"
 msgstr ""
 
-#: mod/contacts.php:527
-msgid "Private communications are not available for this contact."
+#: mod/settings.php:1344
+msgid "Change the behaviour of this account for special situations"
 msgstr ""
 
-#: mod/contacts.php:534
-msgid "(Update was successful)"
+#: mod/settings.php:1347
+msgid "Relocate"
 msgstr ""
 
-#: mod/contacts.php:534
-msgid "(Update was not successful)"
+#: mod/settings.php:1348
+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/contacts.php:536 mod/contacts.php:973
-msgid "Suggest friends"
+#: mod/settings.php:1349
+msgid "Resend relocate message to contacts"
 msgstr ""
 
-#: mod/contacts.php:540
-#, php-format
-msgid "Network type: %s"
+#: mod/videos.php:120
+msgid "Do you really want to delete this video?"
 msgstr ""
 
-#: mod/contacts.php:553
-msgid "Communications lost with this contact!"
+#: mod/videos.php:125
+msgid "Delete Video"
 msgstr ""
 
-#: mod/contacts.php:556
-msgid "Fetch further information for feeds"
+#: mod/videos.php:204
+msgid "No videos selected"
 msgstr ""
 
-#: mod/contacts.php:557
-msgid "Fetch information"
+#: mod/videos.php:396
+msgid "Recent Videos"
 msgstr ""
 
-#: mod/contacts.php:557
-msgid "Fetch information and keywords"
+#: mod/videos.php:398
+msgid "Upload New Videos"
 msgstr ""
 
-#: mod/contacts.php:575
-msgid "Contact"
+#: mod/wall_attach.php:17 mod/wall_attach.php:25 mod/wall_attach.php:76
+#: mod/wall_upload.php:20 mod/wall_upload.php:33 mod/wall_upload.php:86
+#: mod/wall_upload.php:122 mod/wall_upload.php:125
+msgid "Invalid request."
 msgstr ""
 
-#: mod/contacts.php:578
-msgid "Profile Visibility"
+#: mod/wall_attach.php:94
+msgid "Sorry, maybe your upload is bigger than the PHP configuration allows"
 msgstr ""
 
-#: mod/contacts.php:579
-#, php-format
-msgid ""
-"Please choose the profile you would like to display to %s when viewing your "
-"profile securely."
+#: mod/wall_attach.php:94
+msgid "Or - did you try to upload an empty file?"
 msgstr ""
 
-#: mod/contacts.php:580
-msgid "Contact Information / Notes"
+#: mod/wall_attach.php:105
+#, php-format
+msgid "File exceeds size limit of %s"
 msgstr ""
 
-#: mod/contacts.php:581
-msgid "Edit contact notes"
+#: mod/wall_attach.php:156 mod/wall_attach.php:172
+msgid "File upload failed."
 msgstr ""
 
-#: mod/contacts.php:587
-msgid "Block/Unblock contact"
+#: mod/admin.php:92
+msgid "Theme settings updated."
 msgstr ""
 
-#: mod/contacts.php:588
-msgid "Ignore contact"
+#: mod/admin.php:156 mod/admin.php:954
+msgid "Site"
 msgstr ""
 
-#: mod/contacts.php:589
-msgid "Repair URL settings"
+#: mod/admin.php:157 mod/admin.php:898 mod/admin.php:1404 mod/admin.php:1420
+msgid "Users"
 msgstr ""
 
-#: mod/contacts.php:590
-msgid "View conversations"
+#: mod/admin.php:159 mod/admin.php:1780 mod/admin.php:1830
+msgid "Themes"
 msgstr ""
 
-#: mod/contacts.php:596
-msgid "Last update:"
+#: mod/admin.php:161
+msgid "DB updates"
 msgstr ""
 
-#: mod/contacts.php:598
-msgid "Update public posts"
+#: mod/admin.php:162 mod/admin.php:406
+msgid "Inspect Queue"
 msgstr ""
 
-#: mod/contacts.php:600 mod/contacts.php:983
-msgid "Update now"
+#: mod/admin.php:163 mod/admin.php:372
+msgid "Federation Statistics"
 msgstr ""
 
-#: mod/contacts.php:606 mod/contacts.php:806 mod/contacts.php:1000
-msgid "Unignore"
+#: mod/admin.php:177 mod/admin.php:188 mod/admin.php:1904
+msgid "Logs"
 msgstr ""
 
-#: mod/contacts.php:610
-msgid "Currently blocked"
+#: mod/admin.php:178 mod/admin.php:1972
+msgid "View Logs"
 msgstr ""
 
-#: mod/contacts.php:611
-msgid "Currently ignored"
+#: mod/admin.php:179
+msgid "probe address"
 msgstr ""
 
-#: mod/contacts.php:612
-msgid "Currently archived"
+#: mod/admin.php:180
+msgid "check webfinger"
 msgstr ""
 
-#: mod/contacts.php:613
-msgid ""
-"Replies/likes to your public posts <strong>may</strong> still be visible"
+#: mod/admin.php:187
+msgid "Plugin Features"
 msgstr ""
 
-#: mod/contacts.php:614
-msgid "Notification for new posts"
+#: mod/admin.php:189
+msgid "diagnostics"
 msgstr ""
 
-#: mod/contacts.php:614
-msgid "Send a notification of every new post of this contact"
+#: mod/admin.php:190
+msgid "User registrations waiting for confirmation"
 msgstr ""
 
-#: mod/contacts.php:617
-msgid "Blacklisted keywords"
+#: mod/admin.php:306
+msgid "unknown"
 msgstr ""
 
-#: mod/contacts.php:617
+#: mod/admin.php:365
 msgid ""
-"Comma separated list of keywords that should not be converted to hashtags, "
-"when \"Fetch information and keywords\" is selected"
+"This page offers you some numbers to the known part of the federated social "
+"network your Friendica node is part of. These numbers are not complete but "
+"only reflect the part of the network your node is aware of."
 msgstr ""
 
-#: mod/contacts.php:635
-msgid "Actions"
+#: mod/admin.php:366
+msgid ""
+"The <em>Auto Discovered Contact Directory</em> feature is not enabled, it "
+"will improve the data displayed here."
 msgstr ""
 
-#: mod/contacts.php:638
-msgid "Contact Settings"
+#: mod/admin.php:371 mod/admin.php:405 mod/admin.php:484 mod/admin.php:953
+#: mod/admin.php:1403 mod/admin.php:1521 mod/admin.php:1581 mod/admin.php:1779
+#: mod/admin.php:1829 mod/admin.php:1903 mod/admin.php:1971
+msgid "Administration"
 msgstr ""
 
-#: mod/contacts.php:684
-msgid "Suggestions"
+#: mod/admin.php:378
+#, php-format
+msgid "Currently this node is aware of %d nodes from the following platforms:"
 msgstr ""
 
-#: mod/contacts.php:687
-msgid "Suggest potential friends"
+#: mod/admin.php:408
+msgid "ID"
 msgstr ""
 
-#: mod/contacts.php:692 mod/group.php:192
-msgid "All Contacts"
+#: mod/admin.php:409
+msgid "Recipient Name"
 msgstr ""
 
-#: mod/contacts.php:695
-msgid "Show all contacts"
+#: mod/admin.php:410
+msgid "Recipient Profile"
 msgstr ""
 
-#: mod/contacts.php:700
-msgid "Unblocked"
+#: mod/admin.php:412
+msgid "Created"
 msgstr ""
 
-#: mod/contacts.php:703
-msgid "Only show unblocked contacts"
+#: mod/admin.php:413
+msgid "Last Tried"
 msgstr ""
 
-#: mod/contacts.php:709
-msgid "Blocked"
+#: mod/admin.php:414
+msgid ""
+"This page lists the content of the queue for outgoing postings. These are "
+"postings the initial delivery failed for. They will be resend later and "
+"eventually deleted if the delivery fails permanently."
 msgstr ""
 
-#: mod/contacts.php:712
-msgid "Only show blocked contacts"
+#: mod/admin.php:439
+#, php-format
+msgid ""
+"Your DB still runs with MyISAM tables. You should change the engine type to "
+"InnoDB. As Friendica will use InnoDB only features in the future, you should "
+"change this! See <a href=\"%s\">here</a> for a guide that may be helpful "
+"converting the table engines. You may also use the <tt>convert_innodb.sql</"
+"tt> in the <tt>/util</tt> directory of your Friendica installation.<br />"
 msgstr ""
 
-#: mod/contacts.php:718
-msgid "Ignored"
+#: mod/admin.php:444
+msgid ""
+"You are using a MySQL version which does not support all features that "
+"Friendica uses. You should consider switching to MariaDB."
 msgstr ""
 
-#: mod/contacts.php:721
-msgid "Only show ignored contacts"
+#: mod/admin.php:448 mod/admin.php:1352
+msgid "Normal Account"
 msgstr ""
 
-#: mod/contacts.php:727
-msgid "Archived"
+#: mod/admin.php:449 mod/admin.php:1353
+msgid "Soapbox Account"
 msgstr ""
 
-#: mod/contacts.php:730
-msgid "Only show archived contacts"
+#: mod/admin.php:450 mod/admin.php:1354
+msgid "Community/Celebrity Account"
 msgstr ""
 
-#: mod/contacts.php:736
-msgid "Hidden"
+#: mod/admin.php:451 mod/admin.php:1355
+msgid "Automatic Friend Account"
 msgstr ""
 
-#: mod/contacts.php:739
-msgid "Only show hidden contacts"
+#: mod/admin.php:452
+msgid "Blog Account"
 msgstr ""
 
-#: mod/contacts.php:796
-msgid "Search your contacts"
+#: mod/admin.php:453
+msgid "Private Forum"
 msgstr ""
 
-#: mod/contacts.php:804 mod/settings.php:158 mod/settings.php:704
-msgid "Update"
+#: mod/admin.php:479
+msgid "Message queues"
 msgstr ""
 
-#: mod/contacts.php:807 mod/contacts.php:1008
-msgid "Archive"
+#: mod/admin.php:485
+msgid "Summary"
 msgstr ""
 
-#: mod/contacts.php:807 mod/contacts.php:1008
-msgid "Unarchive"
+#: mod/admin.php:488
+msgid "Registered users"
 msgstr ""
 
-#: mod/contacts.php:810
-msgid "Batch Actions"
+#: mod/admin.php:490
+msgid "Pending registrations"
 msgstr ""
 
-#: mod/contacts.php:856
-msgid "View all contacts"
+#: mod/admin.php:491
+msgid "Version"
 msgstr ""
 
-#: mod/contacts.php:863 mod/common.php:134
-msgid "Common Friends"
+#: mod/admin.php:496
+msgid "Active plugins"
 msgstr ""
 
-#: mod/contacts.php:866
-msgid "View all common friends"
+#: mod/admin.php:521
+msgid "Can not parse base url. Must have at least <scheme>://<domain>"
 msgstr ""
 
-#: mod/contacts.php:873
-msgid "Advanced Contact Settings"
+#: mod/admin.php:826
+msgid "RINO2 needs mcrypt php extension to work."
 msgstr ""
 
-#: mod/contacts.php:916
-msgid "Mutual Friendship"
+#: mod/admin.php:834
+msgid "Site settings updated."
 msgstr ""
 
-#: mod/contacts.php:920
-msgid "is a fan of yours"
+#: mod/admin.php:881
+msgid "No community page"
 msgstr ""
 
-#: mod/contacts.php:924
-msgid "you are a fan of"
+#: mod/admin.php:882
+msgid "Public postings from users of this site"
 msgstr ""
 
-#: mod/contacts.php:994
-msgid "Toggle Blocked status"
+#: mod/admin.php:883
+msgid "Global community page"
 msgstr ""
 
-#: mod/contacts.php:1002
-msgid "Toggle Ignored status"
+#: mod/admin.php:888 mod/contacts.php:530
+msgid "Never"
 msgstr ""
 
-#: mod/contacts.php:1010
-msgid "Toggle Archive status"
+#: mod/admin.php:889
+msgid "At post arrival"
 msgstr ""
 
-#: mod/contacts.php:1018
-msgid "Delete contact"
+#: mod/admin.php:897 mod/contacts.php:557
+msgid "Disabled"
 msgstr ""
 
-#: mod/follow.php:19 mod/dfrn_request.php:875
-msgid "Submit Request"
+#: mod/admin.php:899
+msgid "Users, Global Contacts"
 msgstr ""
 
-#: mod/follow.php:30
-msgid "You already added this contact."
+#: mod/admin.php:900
+msgid "Users, Global Contacts/fallback"
 msgstr ""
 
-#: mod/follow.php:39
-msgid "Diaspora support isn't enabled. Contact can't be added."
+#: mod/admin.php:904
+msgid "One month"
 msgstr ""
 
-#: mod/follow.php:46
-msgid "OStatus support is disabled. Contact can't be added."
+#: mod/admin.php:905
+msgid "Three months"
 msgstr ""
 
-#: mod/follow.php:53
-msgid "The network type couldn't be detected. Contact can't be added."
+#: mod/admin.php:906
+msgid "Half a year"
 msgstr ""
 
-#: mod/follow.php:109 mod/dfrn_request.php:861
-msgid "Please answer the following:"
+#: mod/admin.php:907
+msgid "One year"
 msgstr ""
 
-#: mod/follow.php:110 mod/dfrn_request.php:862
-#, php-format
-msgid "Does %s know you?"
+#: mod/admin.php:912
+msgid "Multi user instance"
 msgstr ""
 
-#: mod/follow.php:111 mod/dfrn_request.php:866
-msgid "Add a personal note:"
+#: mod/admin.php:935
+msgid "Closed"
 msgstr ""
 
-#: mod/follow.php:117 mod/dfrn_request.php:872
-msgid "Your Identity Address:"
+#: mod/admin.php:936
+msgid "Requires approval"
 msgstr ""
 
-#: mod/follow.php:180
-msgid "Contact added"
+#: mod/admin.php:937
+msgid "Open"
 msgstr ""
 
-#: mod/apps.php:11
-msgid "Applications"
+#: mod/admin.php:941
+msgid "No SSL policy, links will track page SSL state"
 msgstr ""
 
-#: mod/apps.php:14
-msgid "No installed applications."
+#: mod/admin.php:942
+msgid "Force all links to use SSL"
 msgstr ""
 
-#: mod/suggest.php:27
-msgid "Do you really want to delete this suggestion?"
+#: mod/admin.php:943
+msgid "Self-signed certificate, use SSL for local links only (discouraged)"
 msgstr ""
 
-#: mod/suggest.php:71
-msgid ""
-"No suggestions available. If this is a new site, please try again in 24 "
-"hours."
+#: mod/admin.php:957
+msgid "File upload"
 msgstr ""
 
-#: mod/suggest.php:84 mod/suggest.php:104
-msgid "Ignore/Hide"
+#: mod/admin.php:958
+msgid "Policies"
 msgstr ""
 
-#: mod/p.php:9
-msgid "Not Extended"
+#: mod/admin.php:960
+msgid "Auto Discovered Contact Directory"
 msgstr ""
 
-#: mod/display.php:473
-msgid "Item has been removed."
+#: mod/admin.php:961
+msgid "Performance"
 msgstr ""
 
-#: mod/common.php:86
-msgid "No contacts in common."
+#: mod/admin.php:962
+msgid "Worker"
 msgstr ""
 
-#: mod/newmember.php:6
-msgid "Welcome to Friendica"
+#: mod/admin.php:963
+msgid ""
+"Relocate - WARNING: advanced function. Could make this server unreachable."
 msgstr ""
 
-#: mod/newmember.php:8
-msgid "New Member Checklist"
+#: mod/admin.php:966
+msgid "Site name"
 msgstr ""
 
-#: mod/newmember.php:12
-msgid ""
-"We would like to offer some tips and links to help make your experience "
-"enjoyable. Click any item to visit the relevant page. A link to this page "
-"will be visible from your home page for two weeks after your initial "
-"registration and then will quietly disappear."
+#: mod/admin.php:967
+msgid "Host name"
 msgstr ""
 
-#: mod/newmember.php:14
-msgid "Getting Started"
+#: mod/admin.php:968
+msgid "Sender Email"
 msgstr ""
 
-#: mod/newmember.php:18
-msgid "Friendica Walk-Through"
-msgstr ""
-
-#: mod/newmember.php:18
+#: mod/admin.php:968
 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 ""
-
-#: mod/newmember.php:26
-msgid "Go to Your Settings"
+"The email address your server shall use to send notification emails from."
 msgstr ""
 
-#: 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."
+#: mod/admin.php:969
+msgid "Banner/Logo"
 msgstr ""
 
-#: mod/newmember.php:28
-msgid ""
-"Review the other settings, particularly the privacy settings. An unpublished "
-"directory listing is like having an unlisted phone number. In general, you "
-"should probably publish your listing - unless all of your friends and "
-"potential friends know exactly how to find you."
+#: mod/admin.php:970
+msgid "Shortcut icon"
 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."
+#: mod/admin.php:970
+msgid "Link to an icon that will be used for browsers."
 msgstr ""
 
-#: mod/newmember.php:38
-msgid "Edit Your Profile"
+#: mod/admin.php:971
+msgid "Touch icon"
 msgstr ""
 
-#: 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."
+#: mod/admin.php:971
+msgid "Link to an icon that will be used for tablets and mobiles."
 msgstr ""
 
-#: mod/newmember.php:40
-msgid "Profile Keywords"
+#: mod/admin.php:972
+msgid "Additional Info"
 msgstr ""
 
-#: mod/newmember.php:40
+#: mod/admin.php:972
+#, php-format
 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."
+"For public servers: you can add additional information here that will be "
+"listed at %s/siteinfo."
 msgstr ""
 
-#: mod/newmember.php:44
-msgid "Connecting"
+#: mod/admin.php:973
+msgid "System language"
 msgstr ""
 
-#: mod/newmember.php:51
-msgid "Importing Emails"
+#: mod/admin.php:974
+msgid "System theme"
 msgstr ""
 
-#: mod/newmember.php:51
+#: mod/admin.php:974
 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"
+"Default system theme - may be over-ridden by user profiles - <a href='#' "
+"id='cnftheme'>change theme settings</a>"
 msgstr ""
 
-#: mod/newmember.php:53
-msgid "Go to Your Contacts Page"
+#: mod/admin.php:975
+msgid "Mobile system theme"
 msgstr ""
 
-#: mod/newmember.php:53
-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."
+#: mod/admin.php:975
+msgid "Theme for mobile devices"
 msgstr ""
 
-#: mod/newmember.php:55
-msgid "Go to Your Site's Directory"
+#: mod/admin.php:976
+msgid "SSL link policy"
 msgstr ""
 
-#: mod/newmember.php:55
-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."
+#: mod/admin.php:976
+msgid "Determines whether generated links should be forced to use SSL"
 msgstr ""
 
-#: mod/newmember.php:57
-msgid "Finding New People"
+#: mod/admin.php:977
+msgid "Force SSL"
 msgstr ""
 
-#: mod/newmember.php:57
+#: mod/admin.php:977
 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."
+"Force all Non-SSL requests to SSL - Attention: on some systems it could lead "
+"to endless loops."
 msgstr ""
 
-#: mod/newmember.php:65
-msgid "Group Your Contacts"
+#: mod/admin.php:978
+msgid "Old style 'Share'"
 msgstr ""
 
-#: mod/newmember.php:65
-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."
+#: mod/admin.php:978
+msgid "Deactivates the bbcode element 'share' for repeating items."
 msgstr ""
 
-#: mod/newmember.php:68
-msgid "Why Aren't My Posts Public?"
+#: mod/admin.php:979
+msgid "Hide help entry from navigation menu"
 msgstr ""
 
-#: mod/newmember.php:68
+#: mod/admin.php:979
 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."
+"Hides the menu entry for the Help pages from the navigation menu. You can "
+"still access it calling /help directly."
 msgstr ""
 
-#: mod/newmember.php:73
-msgid "Getting Help"
+#: mod/admin.php:980
+msgid "Single user instance"
 msgstr ""
 
-#: mod/newmember.php:77
-msgid "Go to the Help Section"
+#: mod/admin.php:980
+msgid "Make this instance multi-user or single-user for the named user"
 msgstr ""
 
-#: mod/newmember.php:77
-msgid ""
-"Our <strong>help</strong> pages may be consulted for detail on other program "
-"features and resources."
+#: mod/admin.php:981
+msgid "Maximum image size"
 msgstr ""
 
-#: mod/removeme.php:46 mod/removeme.php:49
-msgid "Remove My Account"
+#: mod/admin.php:981
+msgid ""
+"Maximum size in bytes of uploaded images. Default is 0, which means no "
+"limits."
 msgstr ""
 
-#: mod/removeme.php:47
-msgid ""
-"This will completely remove your account. Once this has been done it is not "
-"recoverable."
+#: mod/admin.php:982
+msgid "Maximum image length"
 msgstr ""
 
-#: mod/removeme.php:48
-msgid "Please enter your password for verification:"
+#: mod/admin.php:982
+msgid ""
+"Maximum length in pixels of the longest side of uploaded images. Default is "
+"-1, which means no limits."
 msgstr ""
 
-#: mod/mood.php:133
-msgid "Mood"
+#: mod/admin.php:983
+msgid "JPEG image quality"
 msgstr ""
 
-#: mod/mood.php:134
-msgid "Set your current mood and tell your friends"
+#: mod/admin.php:983
+msgid ""
+"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is "
+"100, which is full quality."
 msgstr ""
 
-#: mod/editpost.php:17 mod/editpost.php:27
-msgid "Item not found"
+#: mod/admin.php:985
+msgid "Register policy"
 msgstr ""
 
-#: mod/editpost.php:40
-msgid "Edit post"
+#: mod/admin.php:986
+msgid "Maximum Daily Registrations"
 msgstr ""
 
-#: mod/network.php:398
-#, php-format
+#: mod/admin.php:986
 msgid ""
-"Warning: This group contains %s member from a network that doesn't allow non "
-"public messages."
-msgid_plural ""
-"Warning: This group contains %s members from a network that doesn't allow "
-"non public messages."
-msgstr[0] ""
-msgstr[1] ""
+"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/network.php:401
-msgid "Messages in this group won't be send to these receivers."
+#: mod/admin.php:987
+msgid "Register text"
 msgstr ""
 
-#: mod/network.php:529
-msgid "Private messages to this person are at risk of public disclosure."
+#: mod/admin.php:987
+msgid "Will be displayed prominently on the registration page."
 msgstr ""
 
-#: mod/network.php:534
-msgid "Invalid contact."
+#: mod/admin.php:988
+msgid "Accounts abandoned after x days"
 msgstr ""
 
-#: mod/network.php:827
-msgid "Commented Order"
+#: mod/admin.php:988
+msgid ""
+"Will not waste system resources polling external sites for abandonded "
+"accounts. Enter 0 for no time limit."
 msgstr ""
 
-#: mod/network.php:830
-msgid "Sort by Comment Date"
+#: mod/admin.php:989
+msgid "Allowed friend domains"
 msgstr ""
 
-#: mod/network.php:835
-msgid "Posted Order"
+#: mod/admin.php:989
+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/network.php:838
-msgid "Sort by Post Date"
+#: mod/admin.php:990
+msgid "Allowed email domains"
 msgstr ""
 
-#: mod/network.php:849
-msgid "Posts that mention or involve you"
+#: mod/admin.php:990
+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/network.php:857
-msgid "New"
+#: mod/admin.php:991
+msgid "Block public"
 msgstr ""
 
-#: mod/network.php:860
-msgid "Activity Stream - by date"
+#: mod/admin.php:991
+msgid ""
+"Check to block public access to all otherwise public personal pages on this "
+"site unless you are currently logged in."
 msgstr ""
 
-#: mod/network.php:868
-msgid "Shared Links"
+#: mod/admin.php:992
+msgid "Force publish"
 msgstr ""
 
-#: mod/network.php:871
-msgid "Interesting Links"
+#: mod/admin.php:992
+msgid ""
+"Check to force all profiles on this site to be listed in the site directory."
 msgstr ""
 
-#: mod/network.php:879
-msgid "Starred"
+#: mod/admin.php:993
+msgid "Global directory URL"
 msgstr ""
 
-#: mod/network.php:882
-msgid "Favourite Posts"
+#: mod/admin.php:993
+msgid ""
+"URL to the global directory. If this is not set, the global directory is "
+"completely unavailable to the application."
 msgstr ""
 
-#: mod/community.php:27
-msgid "Not available."
+#: mod/admin.php:994
+msgid "Allow threaded items"
 msgstr ""
 
-#: mod/localtime.php:24
-msgid "Time Conversion"
+#: mod/admin.php:994
+msgid "Allow infinite level threading for items on this site."
+msgstr ""
+
+#: mod/admin.php:995
+msgid "Private posts by default for new users"
+msgstr ""
+
+#: mod/admin.php:995
+msgid ""
+"Set default post permissions for all new members to the default privacy "
+"group rather than public."
+msgstr ""
+
+#: mod/admin.php:996
+msgid "Don't include post content in email notifications"
+msgstr ""
+
+#: mod/admin.php:996
+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:997
+msgid "Disallow public access to addons listed in the apps menu."
+msgstr ""
+
+#: mod/admin.php:997
+msgid ""
+"Checking this box will restrict addons listed in the apps menu to members "
+"only."
+msgstr ""
+
+#: mod/admin.php:998
+msgid "Don't embed private images in posts"
+msgstr ""
+
+#: mod/admin.php:998
+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:999
+msgid "Allow Users to set remote_self"
+msgstr ""
+
+#: mod/admin.php:999
+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:1000
+msgid "Block multiple registrations"
+msgstr ""
+
+#: mod/admin.php:1000
+msgid "Disallow users to register additional accounts for use as pages."
+msgstr ""
+
+#: mod/admin.php:1001
+msgid "OpenID support"
+msgstr ""
+
+#: mod/admin.php:1001
+msgid "OpenID support for registration and logins."
+msgstr ""
+
+#: mod/admin.php:1002
+msgid "Fullname check"
+msgstr ""
+
+#: mod/admin.php:1002
+msgid ""
+"Force users to register with a space between firstname and lastname in Full "
+"name, as an antispam measure"
+msgstr ""
+
+#: mod/admin.php:1003
+msgid "UTF-8 Regular expressions"
+msgstr ""
+
+#: mod/admin.php:1003
+msgid "Use PHP UTF8 regular expressions"
+msgstr ""
+
+#: mod/admin.php:1004
+msgid "Community Page Style"
+msgstr ""
+
+#: mod/admin.php:1004
+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:1005
+msgid "Posts per user on community page"
+msgstr ""
+
+#: mod/admin.php:1005
+msgid ""
+"The maximum number of posts per user on the community page. (Not valid for "
+"'Global Community')"
+msgstr ""
+
+#: mod/admin.php:1006
+msgid "Enable OStatus support"
+msgstr ""
+
+#: mod/admin.php:1006
+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:1007
+msgid "OStatus conversation completion interval"
+msgstr ""
+
+#: mod/admin.php:1007
+msgid ""
+"How often shall the poller check for new entries in OStatus conversations? "
+"This can be a very ressource task."
+msgstr ""
+
+#: mod/admin.php:1008
+msgid "Only import OStatus threads from our contacts"
+msgstr ""
+
+#: mod/admin.php:1008
+msgid ""
+"Normally we import every content from our OStatus contacts. With this option "
+"we only store threads that are started by a contact that is known on our "
+"system."
+msgstr ""
+
+#: mod/admin.php:1009
+msgid "OStatus support can only be enabled if threading is enabled."
+msgstr ""
+
+#: mod/admin.php:1011
+msgid ""
+"Diaspora support can't be enabled because Friendica was installed into a sub "
+"directory."
+msgstr ""
+
+#: mod/admin.php:1012
+msgid "Enable Diaspora support"
+msgstr ""
+
+#: mod/admin.php:1012
+msgid "Provide built-in Diaspora network compatibility."
+msgstr ""
+
+#: mod/admin.php:1013
+msgid "Only allow Friendica contacts"
+msgstr ""
+
+#: mod/admin.php:1013
+msgid ""
+"All contacts must use Friendica protocols. All other built-in communication "
+"protocols disabled."
+msgstr ""
+
+#: mod/admin.php:1014
+msgid "Verify SSL"
+msgstr ""
+
+#: mod/admin.php:1014
+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:1015
+msgid "Proxy user"
+msgstr ""
+
+#: mod/admin.php:1016
+msgid "Proxy URL"
+msgstr ""
+
+#: mod/admin.php:1017
+msgid "Network timeout"
+msgstr ""
+
+#: mod/admin.php:1017
+msgid "Value is in seconds. Set to 0 for unlimited (not recommended)."
+msgstr ""
+
+#: mod/admin.php:1018
+msgid "Delivery interval"
+msgstr ""
+
+#: mod/admin.php:1018
+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:1019
+msgid "Poll interval"
+msgstr ""
+
+#: mod/admin.php:1019
+msgid ""
+"Delay background polling processes by this many seconds to reduce system "
+"load. If 0, use delivery interval."
+msgstr ""
+
+#: mod/admin.php:1020
+msgid "Maximum Load Average"
+msgstr ""
+
+#: mod/admin.php:1020
+msgid ""
+"Maximum system load before delivery and poll processes are deferred - "
+"default 50."
+msgstr ""
+
+#: mod/admin.php:1021
+msgid "Maximum Load Average (Frontend)"
+msgstr ""
+
+#: mod/admin.php:1021
+msgid "Maximum system load before the frontend quits service - default 50."
+msgstr ""
+
+#: mod/admin.php:1022
+msgid "Maximum table size for optimization"
+msgstr ""
+
+#: mod/admin.php:1022
+msgid ""
+"Maximum table size (in MB) for the automatic optimization - default 100 MB. "
+"Enter -1 to disable it."
+msgstr ""
+
+#: mod/admin.php:1023
+msgid "Minimum level of fragmentation"
+msgstr ""
+
+#: mod/admin.php:1023
+msgid ""
+"Minimum fragmenation level to start the automatic optimization - default "
+"value is 30%."
+msgstr ""
+
+#: mod/admin.php:1025
+msgid "Periodical check of global contacts"
+msgstr ""
+
+#: mod/admin.php:1025
+msgid ""
+"If enabled, the global contacts are checked periodically for missing or "
+"outdated data and the vitality of the contacts and servers."
+msgstr ""
+
+#: mod/admin.php:1026
+msgid "Days between requery"
+msgstr ""
+
+#: mod/admin.php:1026
+msgid "Number of days after which a server is requeried for his contacts."
+msgstr ""
+
+#: mod/admin.php:1027
+msgid "Discover contacts from other servers"
+msgstr ""
+
+#: mod/admin.php:1027
+msgid ""
+"Periodically query other servers for contacts. You can choose between "
+"'users': the users on the remote system, 'Global Contacts': active contacts "
+"that are known on the system. The fallback is meant for Redmatrix servers "
+"and older friendica servers, where global contacts weren't available. The "
+"fallback increases the server load, so the recommened setting is 'Users, "
+"Global Contacts'."
+msgstr ""
+
+#: mod/admin.php:1028
+msgid "Timeframe for fetching global contacts"
+msgstr ""
+
+#: mod/admin.php:1028
+msgid ""
+"When the discovery is activated, this value defines the timeframe for the "
+"activity of the global contacts that are fetched from other servers."
+msgstr ""
+
+#: mod/admin.php:1029
+msgid "Search the local directory"
+msgstr ""
+
+#: mod/admin.php:1029
+msgid ""
+"Search the local directory instead of the global directory. When searching "
+"locally, every search will be executed on the global directory in the "
+"background. This improves the search results when the search is repeated."
+msgstr ""
+
+#: mod/admin.php:1031
+msgid "Publish server information"
+msgstr ""
+
+#: mod/admin.php:1031
+msgid ""
+"If enabled, general server and usage data will be published. The data "
+"contains the name and version of the server, number of users with public "
+"profiles, number of posts and the activated protocols and connectors. See <a "
+"href='http://the-federation.info/'>the-federation.info</a> for details."
+msgstr ""
+
+#: mod/admin.php:1033
+msgid "Use MySQL full text engine"
+msgstr ""
+
+#: mod/admin.php:1033
+msgid ""
+"Activates the full text engine. Speeds up search - but can only search for "
+"four and more characters."
+msgstr ""
+
+#: mod/admin.php:1034
+msgid "Suppress Language"
+msgstr ""
+
+#: mod/admin.php:1034
+msgid "Suppress language information in meta information about a posting."
+msgstr ""
+
+#: mod/admin.php:1035
+msgid "Suppress Tags"
+msgstr ""
+
+#: mod/admin.php:1035
+msgid "Suppress showing a list of hashtags at the end of the posting."
+msgstr ""
+
+#: mod/admin.php:1036
+msgid "Path to item cache"
+msgstr ""
+
+#: mod/admin.php:1036
+msgid "The item caches buffers generated bbcode and external images."
+msgstr ""
+
+#: mod/admin.php:1037
+msgid "Cache duration in seconds"
+msgstr ""
+
+#: mod/admin.php:1037
+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:1038
+msgid "Maximum numbers of comments per post"
+msgstr ""
+
+#: mod/admin.php:1038
+msgid "How much comments should be shown for each post? Default value is 100."
+msgstr ""
+
+#: mod/admin.php:1039
+msgid "Path for lock file"
+msgstr ""
+
+#: mod/admin.php:1039
+msgid ""
+"The lock file is used to avoid multiple pollers at one time. Only define a "
+"folder here."
+msgstr ""
+
+#: mod/admin.php:1040
+msgid "Temp path"
+msgstr ""
+
+#: mod/admin.php:1040
+msgid ""
+"If you have a restricted system where the webserver can't access the system "
+"temp path, enter another path here."
+msgstr ""
+
+#: mod/admin.php:1041
+msgid "Base path to installation"
+msgstr ""
+
+#: mod/admin.php:1041
+msgid ""
+"If the system cannot detect the correct path to your installation, enter the "
+"correct path here. This setting should only be set if you are using a "
+"restricted system and symbolic links to your webroot."
+msgstr ""
+
+#: mod/admin.php:1042
+msgid "Disable picture proxy"
+msgstr ""
+
+#: mod/admin.php:1042
+msgid ""
+"The picture proxy increases performance and privacy. It shouldn't be used on "
+"systems with very low bandwith."
+msgstr ""
+
+#: mod/admin.php:1043
+msgid "Enable old style pager"
+msgstr ""
+
+#: mod/admin.php:1043
+msgid ""
+"The old style pager has page numbers but slows down massively the page speed."
+msgstr ""
+
+#: mod/admin.php:1044
+msgid "Only search in tags"
+msgstr ""
+
+#: mod/admin.php:1044
+msgid "On large systems the text search can slow down the system extremely."
+msgstr ""
+
+#: mod/admin.php:1046
+msgid "New base url"
+msgstr ""
+
+#: mod/admin.php:1046
+msgid ""
+"Change base url for this server. Sends relocate message to all DFRN contacts "
+"of all users."
+msgstr ""
+
+#: mod/admin.php:1048
+msgid "RINO Encryption"
+msgstr ""
+
+#: mod/admin.php:1048
+msgid "Encryption layer between nodes."
+msgstr ""
+
+#: mod/admin.php:1049
+msgid "Embedly API key"
+msgstr ""
+
+#: mod/admin.php:1049
+msgid ""
+"<a href='http://embed.ly'>Embedly</a> is used to fetch additional data for "
+"web pages. This is an optional parameter."
+msgstr ""
+
+#: mod/admin.php:1051
+msgid "Enable 'worker' background processing"
+msgstr ""
+
+#: mod/admin.php:1051
+msgid ""
+"The worker background processing limits the number of parallel background "
+"jobs to a maximum number and respects the system load."
+msgstr ""
+
+#: mod/admin.php:1052
+msgid "Maximum number of parallel workers"
 msgstr ""
 
-#: mod/localtime.php:26
+#: mod/admin.php:1052
 msgid ""
-"Friendica provides this service for sharing events with other networks and "
-"friends in unknown timezones."
+"On shared hosters set this to 2. On larger systems, values of 10 are great. "
+"Default value is 4."
 msgstr ""
 
-#: mod/localtime.php:30
-#, php-format
-msgid "UTC time: %s"
+#: mod/admin.php:1053
+msgid "Don't use 'proc_open' with the worker"
 msgstr ""
 
-#: mod/localtime.php:33
-#, php-format
-msgid "Current timezone: %s"
+#: mod/admin.php:1053
+msgid ""
+"Enable this if your system doesn't allow the use of 'proc_open'. This can "
+"happen on shared hosters. If this is enabled you should increase the "
+"frequency of poller calls in your crontab."
 msgstr ""
 
-#: mod/localtime.php:36
-#, php-format
-msgid "Converted localtime: %s"
+#: mod/admin.php:1054
+msgid "Enable fastlane"
 msgstr ""
 
-#: mod/localtime.php:41
-msgid "Please select your timezone:"
+#: mod/admin.php:1054
+msgid ""
+"When enabed, the fastlane mechanism starts an additional worker if processes "
+"with higher priority are blocked by processes of lower priority."
 msgstr ""
 
-#: mod/bookmarklet.php:41
-msgid "The post was created"
+#: mod/admin.php:1055
+msgid "Enable frontend worker"
 msgstr ""
 
-#: mod/group.php:29
-msgid "Group created."
+#: mod/admin.php:1055
+msgid ""
+"When enabled the Worker process is triggered when backend access is "
+"performed (e.g. messages being delivered). On smaller sites you might want "
+"to call yourdomain.tld/worker on a regular basis via an external cron job. "
+"You should only enable this option if you cannot utilize cron/scheduled jobs "
+"on your server. The worker background process needs to be activated for this."
 msgstr ""
 
-#: mod/group.php:35
-msgid "Could not create group."
+#: mod/admin.php:1084
+msgid "Update has been marked successful"
 msgstr ""
 
-#: mod/group.php:47 mod/group.php:140
-msgid "Group not found."
+#: mod/admin.php:1092
+#, php-format
+msgid "Database structure update %s was successfully applied."
 msgstr ""
 
-#: mod/group.php:60
-msgid "Group name changed."
+#: mod/admin.php:1095
+#, php-format
+msgid "Executing of database structure update %s failed with error: %s"
 msgstr ""
 
-#: mod/group.php:87
-msgid "Save Group"
+#: mod/admin.php:1107
+#, php-format
+msgid "Executing %s failed with error: %s"
 msgstr ""
 
-#: mod/group.php:93
-msgid "Create a group of contacts/friends."
+#: mod/admin.php:1110
+#, php-format
+msgid "Update %s was successfully applied."
 msgstr ""
 
-#: mod/group.php:113
-msgid "Group removed."
+#: mod/admin.php:1114
+#, php-format
+msgid "Update %s did not return a status. Unknown if it succeeded."
 msgstr ""
 
-#: mod/group.php:115
-msgid "Unable to remove group."
+#: mod/admin.php:1116
+#, php-format
+msgid "There was no additional update function %s that needed to be called."
 msgstr ""
 
-#: mod/group.php:177
-msgid "Group Editor"
+#: mod/admin.php:1135
+msgid "No failed updates."
 msgstr ""
 
-#: mod/group.php:190
-msgid "Members"
+#: mod/admin.php:1136
+msgid "Check database structure"
 msgstr ""
 
-#: mod/dfrn_request.php:101
-msgid "This introduction has already been accepted."
+#: mod/admin.php:1141
+msgid "Failed Updates"
 msgstr ""
 
-#: mod/dfrn_request.php:124 mod/dfrn_request.php:520
-msgid "Profile location is not valid or does not contain profile information."
+#: mod/admin.php:1142
+msgid ""
+"This does not include updates prior to 1139, which did not return a status."
 msgstr ""
 
-#: mod/dfrn_request.php:129 mod/dfrn_request.php:525
-msgid "Warning: profile location has no identifiable owner name."
+#: mod/admin.php:1143
+msgid "Mark success (if update was manually applied)"
 msgstr ""
 
-#: mod/dfrn_request.php:131 mod/dfrn_request.php:527
-msgid "Warning: profile location has no profile photo."
+#: mod/admin.php:1144
+msgid "Attempt to execute this update step automatically"
 msgstr ""
 
-#: mod/dfrn_request.php:134 mod/dfrn_request.php:530
+#: mod/admin.php:1178
 #, php-format
-msgid "%d required parameter was not found at the given location"
-msgid_plural "%d required parameters were not found at the given location"
+msgid ""
+"\n"
+"\t\t\tDear %1$s,\n"
+"\t\t\t\tthe administrator of %2$s has set up an account for you."
+msgstr ""
+
+#: mod/admin.php:1181
+#, 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 ""
+
+#: mod/admin.php:1225
+#, php-format
+msgid "%s user blocked/unblocked"
+msgid_plural "%s users blocked/unblocked"
 msgstr[0] ""
 msgstr[1] ""
 
-#: mod/dfrn_request.php:180
-msgid "Introduction complete."
-msgstr ""
+#: mod/admin.php:1232
+#, php-format
+msgid "%s user deleted"
+msgid_plural "%s users deleted"
+msgstr[0] ""
+msgstr[1] ""
 
-#: mod/dfrn_request.php:222
-msgid "Unrecoverable protocol error."
+#: mod/admin.php:1279
+#, php-format
+msgid "User '%s' deleted"
 msgstr ""
 
-#: mod/dfrn_request.php:250
-msgid "Profile unavailable."
+#: mod/admin.php:1287
+#, php-format
+msgid "User '%s' unblocked"
 msgstr ""
 
-#: mod/dfrn_request.php:277
+#: mod/admin.php:1287
 #, php-format
-msgid "%s has received too many connection requests today."
+msgid "User '%s' blocked"
 msgstr ""
 
-#: mod/dfrn_request.php:278
-msgid "Spam protection measures have been invoked."
+#: mod/admin.php:1396 mod/admin.php:1422
+msgid "Register date"
 msgstr ""
 
-#: mod/dfrn_request.php:279
-msgid "Friends are advised to please try again in 24 hours."
+#: mod/admin.php:1396 mod/admin.php:1422
+msgid "Last login"
 msgstr ""
 
-#: mod/dfrn_request.php:341
-msgid "Invalid locator"
+#: mod/admin.php:1396 mod/admin.php:1422
+msgid "Last item"
 msgstr ""
 
-#: mod/dfrn_request.php:350
-msgid "Invalid email address."
+#: mod/admin.php:1405
+msgid "Add User"
 msgstr ""
 
-#: mod/dfrn_request.php:375
-msgid "This account has not been configured for email. Request failed."
+#: mod/admin.php:1406
+msgid "select all"
 msgstr ""
 
-#: mod/dfrn_request.php:478
-msgid "You have already introduced yourself here."
+#: mod/admin.php:1407
+msgid "User registrations waiting for confirm"
 msgstr ""
 
-#: mod/dfrn_request.php:482
-#, php-format
-msgid "Apparently you are already friends with %s."
+#: mod/admin.php:1408
+msgid "User waiting for permanent deletion"
 msgstr ""
 
-#: mod/dfrn_request.php:503
-msgid "Invalid profile URL."
+#: mod/admin.php:1409
+msgid "Request date"
 msgstr ""
 
-#: mod/dfrn_request.php:604
-msgid "Your introduction has been sent."
+#: mod/admin.php:1410
+msgid "No registrations."
 msgstr ""
 
-#: mod/dfrn_request.php:644
-msgid ""
-"Remote subscription can't be done for your network. Please subscribe "
-"directly on your system."
+#: mod/admin.php:1411
+msgid "Note from the user"
 msgstr ""
 
-#: mod/dfrn_request.php:664
-msgid "Please login to confirm introduction."
+#: mod/admin.php:1413
+msgid "Deny"
 msgstr ""
 
-#: mod/dfrn_request.php:674
-msgid ""
-"Incorrect identity currently logged in. Please login to <strong>this</"
-"strong> profile."
+#: mod/admin.php:1415 mod/contacts.php:605 mod/contacts.php:805
+#: mod/contacts.php:983
+msgid "Block"
 msgstr ""
 
-#: mod/dfrn_request.php:688 mod/dfrn_request.php:705
-msgid "Confirm"
+#: mod/admin.php:1416 mod/contacts.php:605 mod/contacts.php:805
+#: mod/contacts.php:983
+msgid "Unblock"
 msgstr ""
 
-#: mod/dfrn_request.php:700
-msgid "Hide this contact"
+#: mod/admin.php:1417
+msgid "Site admin"
 msgstr ""
 
-#: mod/dfrn_request.php:703
-#, php-format
-msgid "Welcome home %s."
+#: mod/admin.php:1418
+msgid "Account expired"
 msgstr ""
 
-#: mod/dfrn_request.php:704
-#, php-format
-msgid "Please confirm your introduction/connection request to %s."
+#: mod/admin.php:1421
+msgid "New User"
+msgstr ""
+
+#: mod/admin.php:1422
+msgid "Deleted since"
+msgstr ""
+
+#: mod/admin.php:1427
+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/dfrn_request.php:833
+#: mod/admin.php:1428
 msgid ""
-"Please enter your 'Identity Address' from one of the following supported "
-"communications networks:"
+"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/dfrn_request.php:854
-#, php-format
-msgid ""
-"If you are not yet a member of the free social web, <a href=\"%s/siteinfo"
-"\">follow this link to find a public Friendica site and join us today</a>."
+#: mod/admin.php:1438
+msgid "Name of the new user."
 msgstr ""
 
-#: mod/dfrn_request.php:859
-msgid "Friend/Connection Request"
+#: mod/admin.php:1439
+msgid "Nickname"
 msgstr ""
 
-#: mod/dfrn_request.php:860
-msgid ""
-"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, "
-"testuser@identi.ca"
+#: mod/admin.php:1439
+msgid "Nickname of the new user."
 msgstr ""
 
-#: mod/dfrn_request.php:869
-msgid "StatusNet/Federated Social Web"
+#: mod/admin.php:1440
+msgid "Email address of the new user."
 msgstr ""
 
-#: mod/dfrn_request.php:871
+#: mod/admin.php:1483
 #, php-format
-msgid ""
-" - please do not use this form.  Instead, enter %s into your Diaspora search "
-"bar."
+msgid "Plugin %s disabled."
 msgstr ""
 
-#: mod/profile_photo.php:44
-msgid "Image uploaded but image cropping failed."
+#: mod/admin.php:1487
+#, php-format
+msgid "Plugin %s enabled."
 msgstr ""
 
-#: mod/profile_photo.php:77 mod/profile_photo.php:84 mod/profile_photo.php:91
-#: mod/profile_photo.php:314
-#, php-format
-msgid "Image size reduction [%s] failed."
+#: mod/admin.php:1498 mod/admin.php:1734
+msgid "Disable"
 msgstr ""
 
-#: mod/profile_photo.php:124
-msgid ""
-"Shift-reload the page or clear browser cache if the new photo does not "
-"display immediately."
+#: mod/admin.php:1500 mod/admin.php:1736
+msgid "Enable"
 msgstr ""
 
-#: mod/profile_photo.php:134
-msgid "Unable to process image"
+#: mod/admin.php:1523 mod/admin.php:1781
+msgid "Toggle"
 msgstr ""
 
-#: mod/profile_photo.php:248
-msgid "Upload File:"
+#: mod/admin.php:1531 mod/admin.php:1790
+msgid "Author: "
 msgstr ""
 
-#: mod/profile_photo.php:249
-msgid "Select a profile:"
+#: mod/admin.php:1532 mod/admin.php:1791
+msgid "Maintainer: "
 msgstr ""
 
-#: mod/profile_photo.php:251
-msgid "Upload"
+#: mod/admin.php:1584
+msgid "Reload active plugins"
 msgstr ""
 
-#: mod/profile_photo.php:254
-msgid "or"
+#: mod/admin.php:1589
+#, php-format
+msgid ""
+"There are currently no plugins available on your node. You can find the "
+"official plugin repository at %1$s and might find other interesting plugins "
+"in the open plugin registry at %2$s"
 msgstr ""
 
-#: mod/profile_photo.php:254
-msgid "skip this step"
+#: mod/admin.php:1694
+msgid "No themes found."
 msgstr ""
 
-#: mod/profile_photo.php:254
-msgid "select a photo from your photo albums"
+#: mod/admin.php:1772
+msgid "Screenshot"
 msgstr ""
 
-#: mod/profile_photo.php:268
-msgid "Crop Image"
+#: mod/admin.php:1832
+msgid "Reload active themes"
 msgstr ""
 
-#: mod/profile_photo.php:269
-msgid "Please adjust the image cropping for optimum viewing."
+#: mod/admin.php:1837
+#, php-format
+msgid "No themes found on the system. They should be paced in %1$s"
 msgstr ""
 
-#: mod/profile_photo.php:271
-msgid "Done Editing"
+#: mod/admin.php:1838
+msgid "[Experimental]"
 msgstr ""
 
-#: mod/profile_photo.php:305
-msgid "Image uploaded successfully."
+#: mod/admin.php:1839
+msgid "[Unsupported]"
 msgstr ""
 
-#: mod/register.php:93
-msgid ""
-"Registration successful. Please check your email for further instructions."
+#: mod/admin.php:1863
+msgid "Log settings updated."
 msgstr ""
 
-#: mod/register.php:98
-#, 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."
+#: mod/admin.php:1895
+msgid "PHP log currently enabled."
 msgstr ""
 
-#: mod/register.php:105
-msgid "Registration successful."
+#: mod/admin.php:1897
+msgid "PHP log currently disabled."
 msgstr ""
 
-#: mod/register.php:111
-msgid "Your registration can not be processed."
+#: mod/admin.php:1906
+msgid "Clear"
 msgstr ""
 
-#: mod/register.php:160
-msgid "Your registration is pending approval by the site owner."
+#: mod/admin.php:1911
+msgid "Enable Debugging"
 msgstr ""
 
-#: mod/register.php:226
-msgid ""
-"You may (optionally) fill in this form via OpenID by supplying your OpenID "
-"and clicking 'Register'."
+#: mod/admin.php:1912
+msgid "Log file"
 msgstr ""
 
-#: mod/register.php:227
+#: mod/admin.php:1912
 msgid ""
-"If you are not familiar with OpenID, please leave that field blank and fill "
-"in the rest of the items."
+"Must be writable by web server. Relative to your Friendica top-level "
+"directory."
 msgstr ""
 
-#: mod/register.php:228
-msgid "Your OpenID (optional): "
+#: mod/admin.php:1913
+msgid "Log level"
 msgstr ""
 
-#: mod/register.php:242
-msgid "Include your profile in member directory?"
+#: mod/admin.php:1916
+msgid "PHP logging"
 msgstr ""
 
-#: mod/register.php:267
-msgid "Note for the admin"
+#: mod/admin.php:1917
+msgid ""
+"To enable logging of PHP errors and warnings you can add the following to "
+"the .htconfig.php file of your installation. The filename set in the "
+"'error_log' line is relative to the friendica top-level directory and must "
+"be writeable by the web server. The option '1' for 'log_errors' and "
+"'display_errors' is to enable these options, set to '0' to disable them."
 msgstr ""
 
-#: mod/register.php:267
-msgid "Leave a message for the admin, why you want to join this node"
+#: mod/admin.php:2045
+#, php-format
+msgid "Lock feature %s"
 msgstr ""
 
-#: mod/register.php:268
-msgid "Membership on this site is by invitation only."
+#: mod/admin.php:2053
+msgid "Manage Additional Features"
 msgstr ""
 
-#: mod/register.php:269
-msgid "Your invitation ID: "
-msgstr ""
+#: mod/contacts.php:128
+#, php-format
+msgid "%d contact edited."
+msgid_plural "%d contacts edited."
+msgstr[0] ""
+msgstr[1] ""
 
-#: mod/register.php:280
-msgid "Your Full Name (e.g. Joe Smith, real or real-looking): "
+#: mod/contacts.php:159 mod/contacts.php:368
+msgid "Could not access contact record."
 msgstr ""
 
-#: mod/register.php:281
-msgid "Your Email Address: "
+#: mod/contacts.php:173
+msgid "Could not locate selected profile."
 msgstr ""
 
-#: mod/register.php:283 mod/settings.php:1271
-msgid "New Password:"
+#: mod/contacts.php:206
+msgid "Contact updated."
 msgstr ""
 
-#: mod/register.php:283
-msgid "Leave empty for an auto generated password."
+#: mod/contacts.php:208 mod/dfrn_request.php:583
+msgid "Failed to update contact record."
 msgstr ""
 
-#: mod/register.php:284 mod/settings.php:1272
-msgid "Confirm:"
+#: mod/contacts.php:389
+msgid "Contact has been blocked"
 msgstr ""
 
-#: mod/register.php:285
-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>'."
+#: mod/contacts.php:389
+msgid "Contact has been unblocked"
 msgstr ""
 
-#: mod/register.php:286
-msgid "Choose a nickname: "
+#: mod/contacts.php:400
+msgid "Contact has been ignored"
 msgstr ""
 
-#: mod/register.php:296
-msgid "Import your profile to this friendica instance"
+#: mod/contacts.php:400
+msgid "Contact has been unignored"
 msgstr ""
 
-#: mod/settings.php:60
-msgid "Display"
+#: mod/contacts.php:412
+msgid "Contact has been archived"
 msgstr ""
 
-#: mod/settings.php:67 mod/settings.php:886
-msgid "Social Networks"
+#: mod/contacts.php:412
+msgid "Contact has been unarchived"
 msgstr ""
 
-#: mod/settings.php:88
-msgid "Connected apps"
+#: mod/contacts.php:437
+msgid "Drop contact"
 msgstr ""
 
-#: mod/settings.php:102
-msgid "Remove account"
+#: mod/contacts.php:440 mod/contacts.php:801
+msgid "Do you really want to delete this contact?"
 msgstr ""
 
-#: mod/settings.php:155
-msgid "Missing some important data!"
+#: mod/contacts.php:457
+msgid "Contact has been removed."
 msgstr ""
 
-#: mod/settings.php:269
-msgid "Failed to connect with email account using the settings provided."
+#: mod/contacts.php:498
+#, php-format
+msgid "You are mutual friends with %s"
 msgstr ""
 
-#: mod/settings.php:274
-msgid "Email settings updated."
+#: mod/contacts.php:502
+#, php-format
+msgid "You are sharing with %s"
 msgstr ""
 
-#: mod/settings.php:289
-msgid "Features updated"
+#: mod/contacts.php:507
+#, php-format
+msgid "%s is sharing with you"
 msgstr ""
 
-#: mod/settings.php:359
-msgid "Relocate message has been send to your contacts"
+#: mod/contacts.php:527
+msgid "Private communications are not available for this contact."
 msgstr ""
 
-#: mod/settings.php:378
-msgid "Empty passwords are not allowed. Password unchanged."
+#: mod/contacts.php:534
+msgid "(Update was successful)"
 msgstr ""
 
-#: mod/settings.php:386
-msgid "Wrong password."
+#: mod/contacts.php:534
+msgid "(Update was not successful)"
+msgstr ""
+
+#: mod/contacts.php:536 mod/contacts.php:964
+msgid "Suggest friends"
 msgstr ""
 
-#: mod/settings.php:397
-msgid "Password changed."
+#: mod/contacts.php:540
+#, php-format
+msgid "Network type: %s"
 msgstr ""
 
-#: mod/settings.php:399
-msgid "Password update failed. Please try again."
+#: mod/contacts.php:553
+msgid "Communications lost with this contact!"
 msgstr ""
 
-#: mod/settings.php:479
-msgid " Please use a shorter name."
+#: mod/contacts.php:556
+msgid "Fetch further information for feeds"
 msgstr ""
 
-#: mod/settings.php:481
-msgid " Name too short."
+#: mod/contacts.php:557
+msgid "Fetch information"
 msgstr ""
 
-#: mod/settings.php:490
-msgid "Wrong Password"
+#: mod/contacts.php:557
+msgid "Fetch information and keywords"
 msgstr ""
 
-#: mod/settings.php:495
-msgid " Not valid email."
+#: mod/contacts.php:575
+msgid "Contact"
 msgstr ""
 
-#: mod/settings.php:501
-msgid " Cannot change to that email."
+#: mod/contacts.php:578
+msgid "Profile Visibility"
 msgstr ""
 
-#: mod/settings.php:557
-msgid "Private forum has no privacy permissions. Using default privacy group."
+#: mod/contacts.php:579
+#, php-format
+msgid ""
+"Please choose the profile you would like to display to %s when viewing your "
+"profile securely."
 msgstr ""
 
-#: mod/settings.php:561
-msgid "Private forum has no privacy permissions and no default privacy group."
+#: mod/contacts.php:580
+msgid "Contact Information / Notes"
 msgstr ""
 
-#: mod/settings.php:601
-msgid "Settings updated."
+#: mod/contacts.php:581
+msgid "Edit contact notes"
 msgstr ""
 
-#: mod/settings.php:677 mod/settings.php:703 mod/settings.php:739
-msgid "Add application"
+#: mod/contacts.php:587
+msgid "Block/Unblock contact"
 msgstr ""
 
-#: mod/settings.php:681 mod/settings.php:707
-msgid "Consumer Key"
+#: mod/contacts.php:588
+msgid "Ignore contact"
 msgstr ""
 
-#: mod/settings.php:682 mod/settings.php:708
-msgid "Consumer Secret"
+#: mod/contacts.php:589
+msgid "Repair URL settings"
 msgstr ""
 
-#: mod/settings.php:683 mod/settings.php:709
-msgid "Redirect"
+#: mod/contacts.php:590
+msgid "View conversations"
 msgstr ""
 
-#: mod/settings.php:684 mod/settings.php:710
-msgid "Icon url"
+#: mod/contacts.php:596
+msgid "Last update:"
 msgstr ""
 
-#: mod/settings.php:695
-msgid "You can't edit this application."
+#: mod/contacts.php:598
+msgid "Update public posts"
 msgstr ""
 
-#: mod/settings.php:738
-msgid "Connected Apps"
+#: mod/contacts.php:600 mod/contacts.php:974
+msgid "Update now"
 msgstr ""
 
-#: mod/settings.php:742
-msgid "Client key starts with"
+#: mod/contacts.php:606 mod/contacts.php:806 mod/contacts.php:991
+msgid "Unignore"
 msgstr ""
 
-#: mod/settings.php:743
-msgid "No name"
+#: mod/contacts.php:610
+msgid "Currently blocked"
 msgstr ""
 
-#: mod/settings.php:744
-msgid "Remove authorization"
+#: mod/contacts.php:611
+msgid "Currently ignored"
 msgstr ""
 
-#: mod/settings.php:756
-msgid "No Plugin settings configured"
+#: mod/contacts.php:612
+msgid "Currently archived"
 msgstr ""
 
-#: mod/settings.php:764
-msgid "Plugin Settings"
+#: mod/contacts.php:613
+msgid ""
+"Replies/likes to your public posts <strong>may</strong> still be visible"
 msgstr ""
 
-#: mod/settings.php:786
-msgid "Additional Features"
+#: mod/contacts.php:614
+msgid "Notification for new posts"
 msgstr ""
 
-#: mod/settings.php:796 mod/settings.php:800
-msgid "General Social Media Settings"
+#: mod/contacts.php:614
+msgid "Send a notification of every new post of this contact"
 msgstr ""
 
-#: mod/settings.php:806
-msgid "Disable intelligent shortening"
+#: mod/contacts.php:617
+msgid "Blacklisted keywords"
 msgstr ""
 
-#: mod/settings.php:808
+#: mod/contacts.php:617
 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."
+"Comma separated list of keywords that should not be converted to hashtags, "
+"when \"Fetch information and keywords\" is selected"
 msgstr ""
 
-#: mod/settings.php:814
-msgid "Automatically follow any GNU Social (OStatus) followers/mentioners"
+#: mod/contacts.php:635
+msgid "Actions"
 msgstr ""
 
-#: mod/settings.php:816
-msgid ""
-"If you receive a message from an unknown OStatus user, this option decides "
-"what to do. If it is checked, a new contact will be created for every "
-"unknown user."
+#: mod/contacts.php:638
+msgid "Contact Settings"
 msgstr ""
 
-#: mod/settings.php:822
-msgid "Default group for OStatus contacts"
+#: mod/contacts.php:684
+msgid "Suggestions"
 msgstr ""
 
-#: mod/settings.php:828
-msgid "Your legacy GNU Social account"
+#: mod/contacts.php:687
+msgid "Suggest potential friends"
 msgstr ""
 
-#: mod/settings.php:830
-msgid ""
-"If you enter your old GNU Social/Statusnet account name here (in the format "
-"user@domain.tld), your contacts will be added automatically. The field will "
-"be emptied when done."
+#: mod/contacts.php:695
+msgid "Show all contacts"
 msgstr ""
 
-#: mod/settings.php:833
-msgid "Repair OStatus subscriptions"
+#: mod/contacts.php:700
+msgid "Unblocked"
 msgstr ""
 
-#: mod/settings.php:842 mod/settings.php:843
-#, php-format
-msgid "Built-in support for %s connectivity is %s"
+#: mod/contacts.php:703
+msgid "Only show unblocked contacts"
 msgstr ""
 
-#: mod/settings.php:842 mod/settings.php:843
-msgid "enabled"
+#: mod/contacts.php:709
+msgid "Blocked"
 msgstr ""
 
-#: mod/settings.php:842 mod/settings.php:843
-msgid "disabled"
+#: mod/contacts.php:712
+msgid "Only show blocked contacts"
 msgstr ""
 
-#: mod/settings.php:843
-msgid "GNU Social (OStatus)"
+#: mod/contacts.php:718
+msgid "Ignored"
 msgstr ""
 
-#: mod/settings.php:879
-msgid "Email access is disabled on this site."
+#: mod/contacts.php:721
+msgid "Only show ignored contacts"
 msgstr ""
 
-#: mod/settings.php:891
-msgid "Email/Mailbox Setup"
+#: mod/contacts.php:727
+msgid "Archived"
 msgstr ""
 
-#: mod/settings.php:892
-msgid ""
-"If you wish to communicate with email contacts using this service "
-"(optional), please specify how to connect to your mailbox."
+#: mod/contacts.php:730
+msgid "Only show archived contacts"
 msgstr ""
 
-#: mod/settings.php:893
-msgid "Last successful email check:"
+#: mod/contacts.php:736
+msgid "Hidden"
 msgstr ""
 
-#: mod/settings.php:895
-msgid "IMAP server name:"
+#: mod/contacts.php:739
+msgid "Only show hidden contacts"
 msgstr ""
 
-#: mod/settings.php:896
-msgid "IMAP port:"
+#: mod/contacts.php:796
+msgid "Search your contacts"
 msgstr ""
 
-#: mod/settings.php:897
-msgid "Security:"
+#: mod/contacts.php:807 mod/contacts.php:999
+msgid "Archive"
 msgstr ""
 
-#: mod/settings.php:897 mod/settings.php:902
-msgid "None"
+#: mod/contacts.php:807 mod/contacts.php:999
+msgid "Unarchive"
 msgstr ""
 
-#: mod/settings.php:898
-msgid "Email login name:"
+#: mod/contacts.php:810
+msgid "Batch Actions"
 msgstr ""
 
-#: mod/settings.php:899
-msgid "Email password:"
+#: mod/contacts.php:856
+msgid "View all contacts"
 msgstr ""
 
-#: mod/settings.php:900
-msgid "Reply-to address:"
+#: mod/contacts.php:866
+msgid "View all common friends"
 msgstr ""
 
-#: mod/settings.php:901
-msgid "Send public posts to all email contacts:"
+#: mod/contacts.php:873
+msgid "Advanced Contact Settings"
 msgstr ""
 
-#: mod/settings.php:902
-msgid "Action after import:"
+#: mod/contacts.php:907
+msgid "Mutual Friendship"
 msgstr ""
 
-#: mod/settings.php:902
-msgid "Move to folder"
+#: mod/contacts.php:911
+msgid "is a fan of yours"
 msgstr ""
 
-#: mod/settings.php:903
-msgid "Move to folder:"
+#: mod/contacts.php:915
+msgid "you are a fan of"
 msgstr ""
 
-#: mod/settings.php:994
-msgid "Display Settings"
+#: mod/contacts.php:985
+msgid "Toggle Blocked status"
 msgstr ""
 
-#: mod/settings.php:1000 mod/settings.php:1023
-msgid "Display Theme:"
+#: mod/contacts.php:993
+msgid "Toggle Ignored status"
 msgstr ""
 
-#: mod/settings.php:1001
-msgid "Mobile Theme:"
+#: mod/contacts.php:1001
+msgid "Toggle Archive status"
 msgstr ""
 
-#: mod/settings.php:1002
-msgid "Suppress warning of insecure networks"
+#: mod/contacts.php:1009
+msgid "Delete contact"
 msgstr ""
 
-#: mod/settings.php:1002
+#: mod/dfrn_confirm.php:127
 msgid ""
-"Should the system suppress the warning that the current group contains "
-"members of networks that can't receive non public postings."
+"This may occasionally happen if contact was requested by both persons and it "
+"has already been approved."
 msgstr ""
 
-#: mod/settings.php:1003
-msgid "Update browser every xx seconds"
+#: mod/dfrn_confirm.php:246
+msgid "Response from remote site was not understood."
 msgstr ""
 
-#: mod/settings.php:1003
-msgid "Minimum of 10 seconds. Enter -1 to disable it."
+#: mod/dfrn_confirm.php:255 mod/dfrn_confirm.php:260
+msgid "Unexpected response from remote site: "
 msgstr ""
 
-#: mod/settings.php:1004
-msgid "Number of items to display per page:"
+#: mod/dfrn_confirm.php:269
+msgid "Confirmation completed successfully."
 msgstr ""
 
-#: mod/settings.php:1004 mod/settings.php:1005
-msgid "Maximum of 100 items"
+#: mod/dfrn_confirm.php:271 mod/dfrn_confirm.php:285 mod/dfrn_confirm.php:292
+msgid "Remote site reported: "
 msgstr ""
 
-#: mod/settings.php:1005
-msgid "Number of items to display per page when viewed from mobile device:"
+#: mod/dfrn_confirm.php:283
+msgid "Temporary failure. Please wait and try again."
 msgstr ""
 
-#: mod/settings.php:1006
-msgid "Don't show emoticons"
+#: mod/dfrn_confirm.php:290
+msgid "Introduction failed or was revoked."
 msgstr ""
 
-#: mod/settings.php:1007
-msgid "Calendar"
+#: mod/dfrn_confirm.php:419
+msgid "Unable to set contact photo."
 msgstr ""
 
-#: mod/settings.php:1008
-msgid "Beginning of week:"
+#: mod/dfrn_confirm.php:557
+#, php-format
+msgid "No user record found for '%s' "
 msgstr ""
 
-#: mod/settings.php:1009
-msgid "Don't show notices"
+#: mod/dfrn_confirm.php:567
+msgid "Our site encryption key is apparently messed up."
 msgstr ""
 
-#: mod/settings.php:1010
-msgid "Infinite scroll"
+#: mod/dfrn_confirm.php:578
+msgid "Empty site URL was provided or URL could not be decrypted by us."
 msgstr ""
 
-#: mod/settings.php:1011
-msgid "Automatic updates only at the top of the network page"
+#: mod/dfrn_confirm.php:599
+msgid "Contact record was not found for you on our site."
 msgstr ""
 
-#: mod/settings.php:1012
-msgid "Bandwith Saver Mode"
+#: mod/dfrn_confirm.php:613
+#, php-format
+msgid "Site public key not available in contact record for URL %s."
 msgstr ""
 
-#: mod/settings.php:1012
+#: mod/dfrn_confirm.php:633
 msgid ""
-"When enabled, embedded content is not displayed on automatic updates, they "
-"only show on page reload."
+"The ID provided by your system is a duplicate on our system. It should work "
+"if you try again."
 msgstr ""
 
-#: mod/settings.php:1014
-msgid "General Theme Settings"
+#: mod/dfrn_confirm.php:644
+msgid "Unable to set your contact credentials on our system."
 msgstr ""
 
-#: mod/settings.php:1015
-msgid "Custom Theme Settings"
+#: mod/dfrn_confirm.php:703
+msgid "Unable to update your contact profile details on our system"
 msgstr ""
 
-#: mod/settings.php:1016
-msgid "Content Settings"
+#: mod/dfrn_confirm.php:775
+#, php-format
+msgid "%1$s has joined %2$s"
 msgstr ""
 
-#: mod/settings.php:1017 view/theme/frio/config.php:61
-#: view/theme/quattro/config.php:66 view/theme/vier/config.php:109
-#: view/theme/duepuntozero/config.php:61
-msgid "Theme settings"
+#: mod/dfrn_request.php:101
+msgid "This introduction has already been accepted."
 msgstr ""
 
-#: mod/settings.php:1099
-msgid "Account Types"
+#: mod/dfrn_request.php:124 mod/dfrn_request.php:520
+msgid "Profile location is not valid or does not contain profile information."
 msgstr ""
 
-#: mod/settings.php:1100
-msgid "Personal Page Subtypes"
+#: mod/dfrn_request.php:129 mod/dfrn_request.php:525
+msgid "Warning: profile location has no identifiable owner name."
 msgstr ""
 
-#: mod/settings.php:1101
-msgid "Community Forum Subtypes"
+#: mod/dfrn_request.php:131 mod/dfrn_request.php:527
+msgid "Warning: profile location has no profile photo."
 msgstr ""
 
-#: mod/settings.php:1108
-msgid "Personal Page"
-msgstr ""
+#: mod/dfrn_request.php:134 mod/dfrn_request.php:530
+#, php-format
+msgid "%d required parameter was not found at the given location"
+msgid_plural "%d required parameters were not found at the given location"
+msgstr[0] ""
+msgstr[1] ""
 
-#: mod/settings.php:1109
-msgid "This account is a regular personal profile"
+#: mod/dfrn_request.php:180
+msgid "Introduction complete."
 msgstr ""
 
-#: mod/settings.php:1112
-msgid "Organisation Page"
+#: mod/dfrn_request.php:222
+msgid "Unrecoverable protocol error."
 msgstr ""
 
-#: mod/settings.php:1113
-msgid "This account is a profile for an organisation"
+#: mod/dfrn_request.php:250
+msgid "Profile unavailable."
 msgstr ""
 
-#: mod/settings.php:1116
-msgid "News Page"
+#: mod/dfrn_request.php:277
+#, php-format
+msgid "%s has received too many connection requests today."
 msgstr ""
 
-#: mod/settings.php:1117
-msgid "This account is a news account/reflector"
+#: mod/dfrn_request.php:278
+msgid "Spam protection measures have been invoked."
 msgstr ""
 
-#: mod/settings.php:1120
-msgid "Community Forum"
+#: mod/dfrn_request.php:279
+msgid "Friends are advised to please try again in 24 hours."
 msgstr ""
 
-#: mod/settings.php:1121
-msgid ""
-"This account is a community forum where people can discuss with each other"
+#: mod/dfrn_request.php:341
+msgid "Invalid locator"
 msgstr ""
 
-#: mod/settings.php:1124
-msgid "Normal Account Page"
+#: mod/dfrn_request.php:350
+msgid "Invalid email address."
 msgstr ""
 
-#: mod/settings.php:1125
-msgid "This account is a normal personal profile"
+#: mod/dfrn_request.php:375
+msgid "This account has not been configured for email. Request failed."
 msgstr ""
 
-#: mod/settings.php:1128
-msgid "Soapbox Page"
+#: mod/dfrn_request.php:478
+msgid "You have already introduced yourself here."
 msgstr ""
 
-#: mod/settings.php:1129
-msgid "Automatically approve all connection/friend requests as read-only fans"
+#: mod/dfrn_request.php:482
+#, php-format
+msgid "Apparently you are already friends with %s."
 msgstr ""
 
-#: mod/settings.php:1132
-msgid "Public Forum"
+#: mod/dfrn_request.php:503
+msgid "Invalid profile URL."
 msgstr ""
 
-#: mod/settings.php:1133
-msgid "Automatically approve all contact requests"
+#: mod/dfrn_request.php:604
+msgid "Your introduction has been sent."
 msgstr ""
 
-#: mod/settings.php:1136
-msgid "Automatic Friend Page"
+#: mod/dfrn_request.php:644
+msgid ""
+"Remote subscription can't be done for your network. Please subscribe "
+"directly on your system."
 msgstr ""
 
-#: mod/settings.php:1137
-msgid "Automatically approve all connection/friend requests as friends"
+#: mod/dfrn_request.php:664
+msgid "Please login to confirm introduction."
 msgstr ""
 
-#: mod/settings.php:1140
-msgid "Private Forum [Experimental]"
+#: mod/dfrn_request.php:674
+msgid ""
+"Incorrect identity currently logged in. Please login to <strong>this</"
+"strong> profile."
 msgstr ""
 
-#: mod/settings.php:1141
-msgid "Private forum - approved members only"
+#: mod/dfrn_request.php:688 mod/dfrn_request.php:705
+msgid "Confirm"
 msgstr ""
 
-#: mod/settings.php:1153
-msgid "OpenID:"
+#: mod/dfrn_request.php:700
+msgid "Hide this contact"
 msgstr ""
 
-#: mod/settings.php:1153
-msgid "(Optional) Allow this OpenID to login to this account."
+#: mod/dfrn_request.php:703
+#, php-format
+msgid "Welcome home %s."
 msgstr ""
 
-#: mod/settings.php:1163
-msgid "Publish your default profile in your local site directory?"
+#: mod/dfrn_request.php:704
+#, php-format
+msgid "Please confirm your introduction/connection request to %s."
 msgstr ""
 
-#: mod/settings.php:1169
-msgid "Publish your default profile in the global social directory?"
+#: mod/dfrn_request.php:833
+msgid ""
+"Please enter your 'Identity Address' from one of the following supported "
+"communications networks:"
 msgstr ""
 
-#: mod/settings.php:1177
-msgid "Hide your contact/friend list from viewers of your default profile?"
+#: mod/dfrn_request.php:854
+#, php-format
+msgid ""
+"If you are not yet a member of the free social web, <a href=\"%s/siteinfo"
+"\">follow this link to find a public Friendica site and join us today</a>."
 msgstr ""
 
-#: mod/settings.php:1181
-msgid ""
-"If enabled, posting public messages to Diaspora and other networks isn't "
-"possible."
+#: mod/dfrn_request.php:859
+msgid "Friend/Connection Request"
 msgstr ""
 
-#: mod/settings.php:1186
-msgid "Allow friends to post to your profile page?"
+#: mod/dfrn_request.php:860
+msgid ""
+"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, "
+"testuser@identi.ca"
 msgstr ""
 
-#: mod/settings.php:1192
-msgid "Allow friends to tag your posts?"
+#: mod/dfrn_request.php:861 mod/follow.php:109
+msgid "Please answer the following:"
 msgstr ""
 
-#: mod/settings.php:1198
-msgid "Allow us to suggest you as a potential friend to new members?"
+#: mod/dfrn_request.php:862 mod/follow.php:110
+#, php-format
+msgid "Does %s know you?"
 msgstr ""
 
-#: mod/settings.php:1204
-msgid "Permit unknown people to send you private mail?"
+#: mod/dfrn_request.php:866 mod/follow.php:111
+msgid "Add a personal note:"
 msgstr ""
 
-#: mod/settings.php:1212
-msgid "Profile is <strong>not published</strong>."
+#: mod/dfrn_request.php:869
+msgid "StatusNet/Federated Social Web"
 msgstr ""
 
-#: mod/settings.php:1220
+#: mod/dfrn_request.php:871
 #, php-format
-msgid "Your Identity Address is <strong>'%s'</strong> or '%s'."
+msgid ""
+" - please do not use this form.  Instead, enter %s into your Diaspora search "
+"bar."
 msgstr ""
 
-#: mod/settings.php:1227
-msgid "Automatically expire posts after this many days:"
+#: mod/dfrn_request.php:872 mod/follow.php:117
+msgid "Your Identity Address:"
 msgstr ""
 
-#: mod/settings.php:1227
-msgid "If empty, posts will not expire. Expired posts will be deleted"
+#: mod/dfrn_request.php:875 mod/follow.php:19
+msgid "Submit Request"
 msgstr ""
 
-#: mod/settings.php:1228
-msgid "Advanced expiration settings"
+#: mod/follow.php:30
+msgid "You already added this contact."
 msgstr ""
 
-#: mod/settings.php:1229
-msgid "Advanced Expiration"
+#: mod/follow.php:39
+msgid "Diaspora support isn't enabled. Contact can't be added."
 msgstr ""
 
-#: mod/settings.php:1230
-msgid "Expire posts:"
+#: mod/follow.php:46
+msgid "OStatus support is disabled. Contact can't be added."
 msgstr ""
 
-#: mod/settings.php:1231
-msgid "Expire personal notes:"
+#: mod/follow.php:53
+msgid "The network type couldn't be detected. Contact can't be added."
 msgstr ""
 
-#: mod/settings.php:1232
-msgid "Expire starred posts:"
+#: mod/follow.php:180
+msgid "Contact added"
 msgstr ""
 
-#: mod/settings.php:1233
-msgid "Expire photos:"
+#: mod/install.php:139
+msgid "Friendica Communications Server - Setup"
 msgstr ""
 
-#: mod/settings.php:1234
-msgid "Only expire posts by others:"
+#: mod/install.php:145
+msgid "Could not connect to database."
 msgstr ""
 
-#: mod/settings.php:1262
-msgid "Account Settings"
+#: mod/install.php:149
+msgid "Could not create table."
 msgstr ""
 
-#: mod/settings.php:1270
-msgid "Password Settings"
+#: mod/install.php:155
+msgid "Your Friendica site database has been installed."
 msgstr ""
 
-#: mod/settings.php:1272
-msgid "Leave password fields blank unless changing"
+#: mod/install.php:160
+msgid ""
+"You may need to import the file \"database.sql\" manually using phpmyadmin "
+"or mysql."
 msgstr ""
 
-#: mod/settings.php:1273
-msgid "Current Password:"
+#: mod/install.php:161 mod/install.php:230 mod/install.php:607
+msgid "Please see the file \"INSTALL.txt\"."
 msgstr ""
 
-#: mod/settings.php:1273 mod/settings.php:1274
-msgid "Your current password to confirm the changes"
+#: mod/install.php:173
+msgid "Database already in use."
 msgstr ""
 
-#: mod/settings.php:1274
-msgid "Password:"
+#: mod/install.php:227
+msgid "System check"
 msgstr ""
 
-#: mod/settings.php:1278
-msgid "Basic Settings"
+#: mod/install.php:232
+msgid "Check again"
 msgstr ""
 
-#: mod/settings.php:1280
-msgid "Email Address:"
+#: mod/install.php:251
+msgid "Database connection"
 msgstr ""
 
-#: mod/settings.php:1281
-msgid "Your Timezone:"
+#: mod/install.php:252
+msgid ""
+"In order to install Friendica we need to know how to connect to your "
+"database."
 msgstr ""
 
-#: mod/settings.php:1282
-msgid "Your Language:"
+#: mod/install.php:253
+msgid ""
+"Please contact your hosting provider or site administrator if you have "
+"questions about these settings."
 msgstr ""
 
-#: mod/settings.php:1282
+#: mod/install.php:254
 msgid ""
-"Set the language we use to show you friendica interface and to send you "
-"emails"
+"The database you specify below should already exist. If it does not, please "
+"create it before continuing."
 msgstr ""
 
-#: mod/settings.php:1283
-msgid "Default Post Location:"
+#: mod/install.php:258
+msgid "Database Server Name"
 msgstr ""
 
-#: mod/settings.php:1284
-msgid "Use Browser Location:"
+#: mod/install.php:259
+msgid "Database Login Name"
 msgstr ""
 
-#: mod/settings.php:1287
-msgid "Security and Privacy Settings"
+#: mod/install.php:260
+msgid "Database Login Password"
 msgstr ""
 
-#: mod/settings.php:1289
-msgid "Maximum Friend Requests/Day:"
+#: mod/install.php:261
+msgid "Database Name"
 msgstr ""
 
-#: mod/settings.php:1289 mod/settings.php:1319
-msgid "(to prevent spam abuse)"
+#: mod/install.php:262 mod/install.php:303
+msgid "Site administrator email address"
 msgstr ""
 
-#: mod/settings.php:1290
-msgid "Default Post Permissions"
+#: mod/install.php:262 mod/install.php:303
+msgid ""
+"Your account email address must match this in order to use the web admin "
+"panel."
 msgstr ""
 
-#: mod/settings.php:1291
-msgid "(click to open/close)"
+#: mod/install.php:266 mod/install.php:306
+msgid "Please select a default timezone for your website"
 msgstr ""
 
-#: mod/settings.php:1302
-msgid "Default Private Post"
+#: mod/install.php:293
+msgid "Site settings"
 msgstr ""
 
-#: mod/settings.php:1303
-msgid "Default Public Post"
+#: mod/install.php:307
+msgid "System Language:"
 msgstr ""
 
-#: mod/settings.php:1307
-msgid "Default Permissions for New Posts"
+#: mod/install.php:307
+msgid ""
+"Set the default language for your Friendica installation interface and to "
+"send emails."
 msgstr ""
 
-#: mod/settings.php:1319
-msgid "Maximum private messages per day from unknown people:"
+#: mod/install.php:347
+msgid "Could not find a command line version of PHP in the web server PATH."
 msgstr ""
 
-#: mod/settings.php:1322
-msgid "Notification Settings"
+#: mod/install.php:348
+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='https://"
+"github.com/friendica/friendica/blob/master/doc/Install.md#set-up-the-"
+"poller'>'Setup the poller'</a>"
 msgstr ""
 
-#: mod/settings.php:1323
-msgid "By default post a status message when:"
+#: mod/install.php:352
+msgid "PHP executable path"
 msgstr ""
 
-#: mod/settings.php:1324
-msgid "accepting a friend request"
+#: mod/install.php:352
+msgid ""
+"Enter full path to php executable. You can leave this blank to continue the "
+"installation."
 msgstr ""
 
-#: mod/settings.php:1325
-msgid "joining a forum/community"
+#: mod/install.php:357
+msgid "Command line PHP"
 msgstr ""
 
-#: mod/settings.php:1326
-msgid "making an <em>interesting</em> profile change"
+#: mod/install.php:366
+msgid "PHP executable is not the php cli binary (could be cgi-fgci version)"
 msgstr ""
 
-#: mod/settings.php:1327
-msgid "Send a notification email when:"
+#: mod/install.php:367
+msgid "Found PHP version: "
 msgstr ""
 
-#: mod/settings.php:1328
-msgid "You receive an introduction"
+#: mod/install.php:369
+msgid "PHP cli binary"
 msgstr ""
 
-#: mod/settings.php:1329
-msgid "Your introductions are confirmed"
+#: mod/install.php:380
+msgid ""
+"The command line version of PHP on your system does not have "
+"\"register_argc_argv\" enabled."
 msgstr ""
 
-#: mod/settings.php:1330
-msgid "Someone writes on your profile wall"
+#: mod/install.php:381
+msgid "This is required for message delivery to work."
 msgstr ""
 
-#: mod/settings.php:1331
-msgid "Someone writes a followup comment"
+#: mod/install.php:383
+msgid "PHP register_argc_argv"
 msgstr ""
 
-#: mod/settings.php:1332
-msgid "You receive a private message"
+#: mod/install.php:404
+msgid ""
+"Error: the \"openssl_pkey_new\" function on this system is not able to "
+"generate encryption keys"
 msgstr ""
 
-#: mod/settings.php:1333
-msgid "You receive a friend suggestion"
+#: mod/install.php:405
+msgid ""
+"If running under Windows, please see \"http://www.php.net/manual/en/openssl."
+"installation.php\"."
 msgstr ""
 
-#: mod/settings.php:1334
-msgid "You are tagged in a post"
+#: mod/install.php:407
+msgid "Generate encryption keys"
 msgstr ""
 
-#: mod/settings.php:1335
-msgid "You are poked/prodded/etc. in a post"
+#: mod/install.php:414
+msgid "libCurl PHP module"
 msgstr ""
 
-#: mod/settings.php:1337
-msgid "Activate desktop notifications"
+#: mod/install.php:415
+msgid "GD graphics PHP module"
 msgstr ""
 
-#: mod/settings.php:1337
-msgid "Show desktop popup on new notifications"
+#: mod/install.php:416
+msgid "OpenSSL PHP module"
 msgstr ""
 
-#: mod/settings.php:1339
-msgid "Text-only notification emails"
+#: mod/install.php:417
+msgid "mysqli PHP module"
 msgstr ""
 
-#: mod/settings.php:1341
-msgid "Send text only notification emails, without the html part"
+#: mod/install.php:418
+msgid "mb_string PHP module"
 msgstr ""
 
-#: mod/settings.php:1343
-msgid "Advanced Account/Page Type Settings"
+#: mod/install.php:419
+msgid "mcrypt PHP module"
 msgstr ""
 
-#: mod/settings.php:1344
-msgid "Change the behaviour of this account for special situations"
+#: mod/install.php:420
+msgid "XML PHP module"
 msgstr ""
 
-#: mod/settings.php:1347
-msgid "Relocate"
+#: mod/install.php:421
+msgid "iconv module"
 msgstr ""
 
-#: mod/settings.php:1348
-msgid ""
-"If you have moved this profile from another server, and some of your "
-"contacts don't receive your updates, try pushing this button."
+#: mod/install.php:425 mod/install.php:427
+msgid "Apache mod_rewrite module"
 msgstr ""
 
-#: mod/settings.php:1349
-msgid "Resend relocate message to contacts"
+#: mod/install.php:425
+msgid ""
+"Error: Apache webserver mod-rewrite module is required but not installed."
 msgstr ""
 
-#: mod/wallmessage.php:42 mod/wallmessage.php:112
-#, php-format
-msgid "Number of daily wall messages for %s exceeded. Message failed."
+#: mod/install.php:433
+msgid "Error: libCURL PHP module required but not installed."
 msgstr ""
 
-#: mod/wallmessage.php:56 mod/message.php:71
-msgid "No recipient selected."
+#: mod/install.php:437
+msgid ""
+"Error: GD graphics PHP module with JPEG support required but not installed."
 msgstr ""
 
-#: mod/wallmessage.php:59
-msgid "Unable to check your home location."
+#: mod/install.php:441
+msgid "Error: openssl PHP module required but not installed."
 msgstr ""
 
-#: mod/wallmessage.php:62 mod/message.php:78
-msgid "Message could not be sent."
+#: mod/install.php:445
+msgid "Error: mysqli PHP module required but not installed."
 msgstr ""
 
-#: mod/wallmessage.php:65 mod/message.php:81
-msgid "Message collection failure."
+#: mod/install.php:449
+msgid "Error: mb_string PHP module required but not installed."
 msgstr ""
 
-#: mod/wallmessage.php:68 mod/message.php:84
-msgid "Message sent."
+#: mod/install.php:453
+msgid "Error: mcrypt PHP module required but not installed."
 msgstr ""
 
-#: mod/wallmessage.php:86 mod/wallmessage.php:95
-msgid "No recipient."
+#: mod/install.php:457
+msgid "Error: iconv PHP module required but not installed."
 msgstr ""
 
-#: mod/wallmessage.php:142 mod/message.php:341
-msgid "Send Private Message"
+#: mod/install.php:466
+msgid ""
+"If you are using php_cli, please make sure that mcrypt module is enabled in "
+"its config file"
 msgstr ""
 
-#: mod/wallmessage.php:143
-#, php-format
+#: mod/install.php:469
 msgid ""
-"If you wish for %s to respond, please check that the privacy settings on "
-"your site allow private mail from unknown senders."
+"Function mcrypt_create_iv() is not defined. This is needed to enable RINO2 "
+"encryption layer."
 msgstr ""
 
-#: mod/wallmessage.php:144 mod/message.php:342 mod/message.php:536
-msgid "To:"
+#: mod/install.php:471
+msgid "mcrypt_create_iv() function"
 msgstr ""
 
-#: mod/wallmessage.php:145 mod/message.php:347 mod/message.php:538
-msgid "Subject:"
+#: mod/install.php:479
+msgid "Error, XML PHP module required but not installed."
 msgstr ""
 
-#: mod/share.php:38
-msgid "link"
+#: mod/install.php:494
+msgid ""
+"The web installer needs to be able to create a file called \".htconfig.php\" "
+"in the top folder of your web server and it is unable to do so."
 msgstr ""
 
-#: mod/api.php:76 mod/api.php:102
-msgid "Authorize application connection"
+#: mod/install.php:495
+msgid ""
+"This is most often a permission setting, as the web server may not be able "
+"to write files in your folder - even if you can."
+msgstr ""
+
+#: mod/install.php:496
+msgid ""
+"At the end of this procedure, we will give you a text to save in a file "
+"named .htconfig.php in your Friendica top folder."
 msgstr ""
 
-#: mod/api.php:77
-msgid "Return to your app and insert this Securty Code:"
+#: mod/install.php:497
+msgid ""
+"You can alternatively skip this procedure and perform a manual installation. "
+"Please see the file \"INSTALL.txt\" for instructions."
 msgstr ""
 
-#: mod/api.php:89
-msgid "Please login to continue."
+#: mod/install.php:500
+msgid ".htconfig.php is writable"
 msgstr ""
 
-#: mod/api.php:104
+#: mod/install.php:510
 msgid ""
-"Do you want to authorize this application to access your posts and contacts, "
-"and/or create new posts for you?"
+"Friendica uses the Smarty3 template engine to render its web views. Smarty3 "
+"compiles templates to PHP to speed up rendering."
 msgstr ""
 
-#: mod/babel.php:17
-msgid "Source (bbcode) text:"
+#: mod/install.php:511
+msgid ""
+"In order to store these compiled templates, the web server needs to have "
+"write access to the directory view/smarty3/ under the Friendica top level "
+"folder."
 msgstr ""
 
-#: mod/babel.php:23
-msgid "Source (Diaspora) text to convert to BBcode:"
+#: mod/install.php:512
+msgid ""
+"Please ensure that the user that your web server runs as (e.g. www-data) has "
+"write access to this folder."
 msgstr ""
 
-#: mod/babel.php:31
-msgid "Source input: "
+#: mod/install.php:513
+msgid ""
+"Note: as a security measure, you should give the web server write access to "
+"view/smarty3/ only--not the template files (.tpl) that it contains."
 msgstr ""
 
-#: mod/babel.php:35
-msgid "bb2html (raw HTML): "
+#: mod/install.php:516
+msgid "view/smarty3 is writable"
 msgstr ""
 
-#: mod/babel.php:39
-msgid "bb2html: "
+#: mod/install.php:532
+msgid ""
+"Url rewrite in .htaccess is not working. Check your server configuration."
 msgstr ""
 
-#: mod/babel.php:43
-msgid "bb2html2bb: "
+#: mod/install.php:534
+msgid "Url rewrite is working"
 msgstr ""
 
-#: mod/babel.php:47
-msgid "bb2md: "
+#: mod/install.php:552
+msgid "ImageMagick PHP extension is not installed"
 msgstr ""
 
-#: mod/babel.php:51
-msgid "bb2md2html: "
+#: mod/install.php:555
+msgid "ImageMagick PHP extension is installed"
 msgstr ""
 
-#: mod/babel.php:55
-msgid "bb2dia2bb: "
+#: mod/install.php:557
+msgid "ImageMagick supports GIF"
 msgstr ""
 
-#: mod/babel.php:59
-msgid "bb2md2html2bb: "
+#: mod/install.php:566
+msgid ""
+"The database configuration file \".htconfig.php\" could not be written. "
+"Please use the enclosed text to create a configuration file in your web "
+"server root."
 msgstr ""
 
-#: mod/babel.php:69
-msgid "Source input (Diaspora format): "
+#: mod/install.php:605
+msgid "<h1>What next</h1>"
 msgstr ""
 
-#: mod/babel.php:74
-msgid "diaspora2bb: "
+#: mod/install.php:606
+msgid ""
+"IMPORTANT: You will need to [manually] setup a scheduled task for the poller."
 msgstr ""
 
 #: mod/item.php:116
 msgid "Unable to locate original post."
 msgstr ""
 
-#: mod/item.php:340
+#: mod/item.php:341
 msgid "Empty post discarded."
 msgstr ""
 
-#: mod/item.php:898
+#: mod/item.php:902
 msgid "System error. Post not saved."
 msgstr ""
 
-#: mod/item.php:988
+#: mod/item.php:992
 #, php-format
 msgid ""
 "This message was sent to you by %s, a member of the Friendica social network."
 msgstr ""
 
-#: mod/item.php:990
+#: mod/item.php:994
 #, php-format
 msgid "You may visit them online at %s"
 msgstr ""
 
-#: mod/item.php:991
+#: mod/item.php:995
 msgid ""
 "Please contact the sender by replying to this post if you do not wish to "
 "receive these messages."
 msgstr ""
 
-#: mod/item.php:995
+#: mod/item.php:999
 #, php-format
 msgid "%s posted an update."
 msgstr ""
 
-#: mod/ostatus_subscribe.php:14
-msgid "Subscribing to OStatus contacts"
-msgstr ""
-
-#: mod/ostatus_subscribe.php:25
-msgid "No contact provided."
-msgstr ""
-
-#: mod/ostatus_subscribe.php:30
-msgid "Couldn't fetch information for contact."
-msgstr ""
-
-#: mod/ostatus_subscribe.php:38
-msgid "Couldn't fetch friends for contact."
-msgstr ""
-
-#: mod/ostatus_subscribe.php:65
-msgid "success"
-msgstr ""
-
-#: mod/ostatus_subscribe.php:67
-msgid "failed"
-msgstr ""
-
-#: mod/dfrn_poll.php:104 mod/dfrn_poll.php:537
+#: mod/network.php:398
 #, php-format
-msgid "%1$s welcomes %2$s"
-msgstr ""
+msgid ""
+"Warning: This group contains %s member from a network that doesn't allow non "
+"public messages."
+msgid_plural ""
+"Warning: This group contains %s members from a network that doesn't allow "
+"non public messages."
+msgstr[0] ""
+msgstr[1] ""
 
-#: mod/profile.php:179
-msgid "Tips for New Members"
+#: mod/network.php:401
+msgid "Messages in this group won't be send to these receivers."
 msgstr ""
 
-#: mod/message.php:75
-msgid "Unable to locate contact information."
+#: mod/network.php:529
+msgid "Private messages to this person are at risk of public disclosure."
 msgstr ""
 
-#: mod/message.php:215
-msgid "Do you really want to delete this message?"
+#: mod/network.php:534
+msgid "Invalid contact."
 msgstr ""
 
-#: mod/message.php:235
-msgid "Message deleted."
+#: mod/network.php:826
+msgid "Commented Order"
 msgstr ""
 
-#: mod/message.php:266
-msgid "Conversation removed."
+#: mod/network.php:829
+msgid "Sort by Comment Date"
 msgstr ""
 
-#: mod/message.php:383
-msgid "No messages."
+#: mod/network.php:834
+msgid "Posted Order"
 msgstr ""
 
-#: mod/message.php:426
-msgid "Message not available."
+#: mod/network.php:837
+msgid "Sort by Post Date"
 msgstr ""
 
-#: mod/message.php:503
-msgid "Delete message"
+#: mod/network.php:848
+msgid "Posts that mention or involve you"
 msgstr ""
 
-#: mod/message.php:529 mod/message.php:609
-msgid "Delete conversation"
+#: mod/network.php:856
+msgid "New"
 msgstr ""
 
-#: mod/message.php:531
-msgid ""
-"No secure communications available. You <strong>may</strong> be able to "
-"respond from the sender's profile page."
+#: mod/network.php:859
+msgid "Activity Stream - by date"
 msgstr ""
 
-#: mod/message.php:535
-msgid "Send Reply"
+#: mod/network.php:867
+msgid "Shared Links"
 msgstr ""
 
-#: mod/message.php:579
-#, php-format
-msgid "Unknown sender - %s"
+#: mod/network.php:870
+msgid "Interesting Links"
 msgstr ""
 
-#: mod/message.php:581
-#, php-format
-msgid "You and %s"
+#: mod/network.php:878
+msgid "Starred"
 msgstr ""
 
-#: mod/message.php:583
-#, php-format
-msgid "%s and You"
+#: mod/network.php:881
+msgid "Favourite Posts"
 msgstr ""
 
-#: mod/message.php:612
-msgid "D, d M Y - g:i A"
+#: mod/ping.php:261
+msgid "{0} wants to be your friend"
 msgstr ""
 
-#: mod/message.php:615
-#, php-format
-msgid "%d message"
-msgid_plural "%d messages"
-msgstr[0] ""
-msgstr[1] ""
-
-#: mod/manage.php:139
-msgid "Manage Identities and/or Pages"
+#: mod/ping.php:276
+msgid "{0} sent you a message"
 msgstr ""
 
-#: mod/manage.php:140
-msgid ""
-"Toggle between different identities or community/group pages which share "
-"your account details or which you have been granted \"manage\" permissions"
+#: mod/ping.php:291
+msgid "{0} requested registration"
 msgstr ""
 
-#: mod/manage.php:141
-msgid "Select an identity to manage: "
+#: mod/viewcontacts.php:72
+msgid "No contacts."
 msgstr ""
 
 #: object/Item.php:370
@@ -8748,14 +8714,6 @@ msgstr ""
 msgid "Resize to best fit and retain aspect ratio."
 msgstr ""
 
-#: view/theme/frio/theme.php:229
-msgid "Guest"
-msgstr ""
-
-#: view/theme/frio/theme.php:235
-msgid "Visitor"
-msgstr ""
-
 #: view/theme/frio/config.php:42
 msgid "Default"
 msgstr ""
@@ -8796,6 +8754,14 @@ msgstr ""
 msgid "Set the background image"
 msgstr ""
 
+#: view/theme/frio/theme.php:229
+msgid "Guest"
+msgstr ""
+
+#: view/theme/frio/theme.php:235
+msgid "Visitor"
+msgstr ""
+
 #: view/theme/quattro/config.php:67
 msgid "Alignment"
 msgstr ""
@@ -8887,3 +8853,56 @@ msgstr ""
 #: view/theme/duepuntozero/config.php:62
 msgid "Variations"
 msgstr ""
+
+#: boot.php:970
+msgid "Delete this item?"
+msgstr ""
+
+#: boot.php:973
+msgid "show fewer"
+msgstr ""
+
+#: boot.php:1655
+#, php-format
+msgid "Update %s failed. See error logs."
+msgstr ""
+
+#: boot.php:1767
+msgid "Create a New Account"
+msgstr ""
+
+#: boot.php:1796
+msgid "Password: "
+msgstr ""
+
+#: boot.php:1797
+msgid "Remember me"
+msgstr ""
+
+#: boot.php:1800
+msgid "Or login using OpenID: "
+msgstr ""
+
+#: boot.php:1806
+msgid "Forgot your password?"
+msgstr ""
+
+#: boot.php:1809
+msgid "Website Terms of Service"
+msgstr ""
+
+#: boot.php:1810
+msgid "terms of service"
+msgstr ""
+
+#: boot.php:1812
+msgid "Website Privacy Policy"
+msgstr ""
+
+#: boot.php:1813
+msgid "privacy policy"
+msgstr ""
+
+#: index.php:451
+msgid "toggle mobile"
+msgstr ""
index d2a879a6b86c9668c7c2f43c760a4b746f738cb9..dc69f40a8db8d545d1fe118625220a2409753481 100644 (file)
@@ -35,8 +35,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: friendica\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2016-12-06 08:42+0100\n"
-"PO-Revision-Date: 2016-12-08 06:38+0000\n"
+"POT-Creation-Date: 2016-12-19 07:46+0100\n"
+"PO-Revision-Date: 2016-12-19 11:19+0000\n"
 "Last-Translator: Tobias Diekershoff <tobias.diekershoff@gmx.net>\n"
 "Language-Team: German (http://www.transifex.com/Friendica/friendica/language/de/)\n"
 "MIME-Version: 1.0\n"
@@ -45,185 +45,6 @@ msgstr ""
 "Language: de\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
-#: boot.php:970
-msgid "Delete this item?"
-msgstr "Diesen Beitrag löschen?"
-
-#: boot.php:971 mod/content.php:727 mod/content.php:945 mod/photos.php:1589
-#: mod/photos.php:1637 mod/photos.php:1723 object/Item.php:403
-#: object/Item.php:719
-msgid "Comment"
-msgstr "Kommentar"
-
-#: boot.php:972 include/contact_widgets.php:242 include/ForumManager.php:119
-#: include/items.php:2241 mod/content.php:624 object/Item.php:432
-#: view/theme/vier/theme.php:260
-msgid "show more"
-msgstr "mehr anzeigen"
-
-#: boot.php:973
-msgid "show fewer"
-msgstr "weniger anzeigen"
-
-#: boot.php:1655
-#, php-format
-msgid "Update %s failed. See error logs."
-msgstr "Update %s fehlgeschlagen. Bitte Fehlerprotokoll überprüfen."
-
-#: boot.php:1767
-msgid "Create a New Account"
-msgstr "Neues Konto erstellen"
-
-#: boot.php:1768 include/nav.php:109 mod/register.php:289
-msgid "Register"
-msgstr "Registrieren"
-
-#: boot.php:1792 include/nav.php:78 view/theme/frio/theme.php:246
-msgid "Logout"
-msgstr "Abmelden"
-
-#: boot.php:1793 include/nav.php:95 mod/bookmarklet.php:12
-msgid "Login"
-msgstr "Anmeldung"
-
-#: boot.php:1795 mod/lostpass.php:161
-msgid "Nickname or Email: "
-msgstr "Spitzname oder E-Mail:"
-
-#: boot.php:1796
-msgid "Password: "
-msgstr "Passwort: "
-
-#: boot.php:1797
-msgid "Remember me"
-msgstr "Anmeldedaten merken"
-
-#: boot.php:1800
-msgid "Or login using OpenID: "
-msgstr "Oder melde Dich mit Deiner OpenID an: "
-
-#: boot.php:1806
-msgid "Forgot your password?"
-msgstr "Passwort vergessen?"
-
-#: boot.php:1807 mod/lostpass.php:109
-msgid "Password Reset"
-msgstr "Passwort zurücksetzen"
-
-#: boot.php:1809
-msgid "Website Terms of Service"
-msgstr "Website Nutzungsbedingungen"
-
-#: boot.php:1810
-msgid "terms of service"
-msgstr "Nutzungsbedingungen"
-
-#: boot.php:1812
-msgid "Website Privacy Policy"
-msgstr "Website Datenschutzerklärung"
-
-#: boot.php:1813
-msgid "privacy policy"
-msgstr "Datenschutzerklärung"
-
-#: include/datetime.php:57 include/datetime.php:59 mod/profiles.php:705
-msgid "Miscellaneous"
-msgstr "Verschiedenes"
-
-#: include/datetime.php:183 include/identity.php:629
-msgid "Birthday:"
-msgstr "Geburtstag:"
-
-#: include/datetime.php:185 mod/profiles.php:728
-msgid "Age: "
-msgstr "Alter: "
-
-#: include/datetime.php:187
-msgid "YYYY-MM-DD or MM-DD"
-msgstr "YYYY-MM-DD oder MM-DD"
-
-#: include/datetime.php:341
-msgid "never"
-msgstr "nie"
-
-#: include/datetime.php:347
-msgid "less than a second ago"
-msgstr "vor weniger als einer Sekunde"
-
-#: include/datetime.php:350
-msgid "year"
-msgstr "Jahr"
-
-#: include/datetime.php:350
-msgid "years"
-msgstr "Jahre"
-
-#: include/datetime.php:351 include/event.php:480 mod/events.php:389
-#: mod/cal.php:284
-msgid "month"
-msgstr "Monat"
-
-#: include/datetime.php:351
-msgid "months"
-msgstr "Monate"
-
-#: include/datetime.php:352 include/event.php:481 mod/events.php:390
-#: mod/cal.php:285
-msgid "week"
-msgstr "Woche"
-
-#: include/datetime.php:352
-msgid "weeks"
-msgstr "Wochen"
-
-#: include/datetime.php:353 include/event.php:482 mod/events.php:391
-#: mod/cal.php:286
-msgid "day"
-msgstr "Tag"
-
-#: include/datetime.php:353
-msgid "days"
-msgstr "Tage"
-
-#: include/datetime.php:354
-msgid "hour"
-msgstr "Stunde"
-
-#: include/datetime.php:354
-msgid "hours"
-msgstr "Stunden"
-
-#: include/datetime.php:355
-msgid "minute"
-msgstr "Minute"
-
-#: include/datetime.php:355
-msgid "minutes"
-msgstr "Minuten"
-
-#: include/datetime.php:356
-msgid "second"
-msgstr "Sekunde"
-
-#: include/datetime.php:356
-msgid "seconds"
-msgstr "Sekunden"
-
-#: include/datetime.php:365
-#, php-format
-msgid "%1$d %2$s ago"
-msgstr "%1$d %2$s her"
-
-#: include/datetime.php:572
-#, php-format
-msgid "%s's birthday"
-msgstr "%ss Geburtstag"
-
-#: include/datetime.php:573 include/dfrn.php:1109
-#, php-format
-msgid "Happy Birthday %s"
-msgstr "Herzlichen Glückwunsch %s"
-
 #: include/contact_widgets.php:6
 msgid "Add New Contact"
 msgstr "Neuen Kontakt hinzufügen"
@@ -236,8 +57,9 @@ msgstr "Adresse oder Web-Link eingeben"
 msgid "Example: bob@example.com, http://example.com/barbara"
 msgstr "Beispiel: bob@example.com, http://example.com/barbara"
 
-#: include/contact_widgets.php:10 include/identity.php:218 mod/dirfind.php:201
-#: mod/match.php:87 mod/allfriends.php:82 mod/suggest.php:101
+#: include/contact_widgets.php:10 include/identity.php:218
+#: mod/allfriends.php:82 mod/dirfind.php:201 mod/match.php:87
+#: mod/suggest.php:101
 msgid "Connect"
 msgstr "Verbinden"
 
@@ -256,10 +78,9 @@ msgstr "Leute finden"
 msgid "Enter name or interest"
 msgstr "Name oder Interessen eingeben"
 
-#: include/contact_widgets.php:32 include/conversation.php:981
-#: include/Contact.php:361 mod/dirfind.php:204 mod/match.php:72
-#: mod/allfriends.php:66 mod/contacts.php:602 mod/follow.php:103
-#: mod/suggest.php:83
+#: include/contact_widgets.php:32 include/Contact.php:354
+#: include/conversation.php:981 mod/allfriends.php:66 mod/dirfind.php:204
+#: mod/match.php:72 mod/suggest.php:83 mod/contacts.php:602 mod/follow.php:103
 msgid "Connect/Follow"
 msgstr "Verbinden/Folgen"
 
@@ -315,2485 +136,2172 @@ msgid_plural "%d contacts in common"
 msgstr[0] "%d gemeinsamer Kontakt"
 msgstr[1] "%d gemeinsame Kontakte"
 
-#: include/NotificationsManager.php:153
-msgid "System"
-msgstr "System"
-
-#: include/NotificationsManager.php:160 include/nav.php:158 mod/admin.php:411
-#: view/theme/frio/theme.php:256
-msgid "Network"
-msgstr "Netzwerk"
+#: include/contact_widgets.php:242 include/ForumManager.php:119
+#: include/items.php:2245 mod/content.php:624 object/Item.php:432
+#: view/theme/vier/theme.php:260 boot.php:972
+msgid "show more"
+msgstr "mehr anzeigen"
 
-#: include/NotificationsManager.php:167 mod/profiles.php:703
-#: mod/network.php:846
-msgid "Personal"
-msgstr "Persönlich"
+#: include/ForumManager.php:114 include/nav.php:131 include/text.php:1025
+#: view/theme/vier/theme.php:255
+msgid "Forums"
+msgstr "Foren"
 
-#: include/NotificationsManager.php:174 include/nav.php:105
-#: include/nav.php:161
-msgid "Home"
-msgstr "Pinnwand"
+#: include/ForumManager.php:116 view/theme/vier/theme.php:257
+msgid "External link to forum"
+msgstr "Externer Link zum Forum"
 
-#: include/NotificationsManager.php:181 include/nav.php:166
-msgid "Introductions"
-msgstr "Kontaktanfragen"
+#: include/profile_selectors.php:6
+msgid "Male"
+msgstr "Männlich"
 
-#: include/NotificationsManager.php:234 include/NotificationsManager.php:244
-#, php-format
-msgid "%s commented on %s's post"
-msgstr "%s hat %ss Beitrag kommentiert"
+#: include/profile_selectors.php:6
+msgid "Female"
+msgstr "Weiblich"
 
-#: include/NotificationsManager.php:243
-#, php-format
-msgid "%s created a new post"
-msgstr "%s hat einen neuen Beitrag erstellt"
+#: include/profile_selectors.php:6
+msgid "Currently Male"
+msgstr "Momentan männlich"
 
-#: include/NotificationsManager.php:256
-#, php-format
-msgid "%s liked %s's post"
-msgstr "%s mag %ss Beitrag"
+#: include/profile_selectors.php:6
+msgid "Currently Female"
+msgstr "Momentan weiblich"
 
-#: include/NotificationsManager.php:267
-#, php-format
-msgid "%s disliked %s's post"
-msgstr "%s mag %ss Beitrag nicht"
+#: include/profile_selectors.php:6
+msgid "Mostly Male"
+msgstr "Hauptsächlich männlich"
 
-#: include/NotificationsManager.php:278
-#, php-format
-msgid "%s is attending %s's event"
-msgstr "%s nimmt an %s's Event teil"
+#: include/profile_selectors.php:6
+msgid "Mostly Female"
+msgstr "Hauptsächlich weiblich"
 
-#: include/NotificationsManager.php:289
-#, php-format
-msgid "%s is not attending %s's event"
-msgstr "%s nimmt nicht an %s's Event teil"
+#: include/profile_selectors.php:6
+msgid "Transgender"
+msgstr "Transgender"
 
-#: include/NotificationsManager.php:300
-#, php-format
-msgid "%s may attend %s's event"
-msgstr "%s nimmt eventuell an %s's Event teil"
+#: include/profile_selectors.php:6
+msgid "Intersex"
+msgstr "Intersex"
 
-#: include/NotificationsManager.php:315
-#, php-format
-msgid "%s is now friends with %s"
-msgstr "%s ist jetzt mit %s befreundet"
+#: include/profile_selectors.php:6
+msgid "Transsexual"
+msgstr "Transsexuell"
 
-#: include/NotificationsManager.php:748
-msgid "Friend Suggestion"
-msgstr "Kontaktvorschlag"
+#: include/profile_selectors.php:6
+msgid "Hermaphrodite"
+msgstr "Hermaphrodit"
 
-#: include/NotificationsManager.php:781
-msgid "Friend/Connect Request"
-msgstr "Kontakt-/Freundschaftsanfrage"
+#: include/profile_selectors.php:6
+msgid "Neuter"
+msgstr "Neuter"
 
-#: include/NotificationsManager.php:781
-msgid "New Follower"
-msgstr "Neuer Bewunderer"
+#: include/profile_selectors.php:6
+msgid "Non-specific"
+msgstr "Nicht spezifiziert"
 
-#: include/enotify.php:24
-msgid "Friendica Notification"
-msgstr "Friendica-Benachrichtigung"
+#: include/profile_selectors.php:6
+msgid "Other"
+msgstr "Andere"
 
-#: include/enotify.php:27
-msgid "Thank You,"
-msgstr "Danke,"
+#: include/profile_selectors.php:6 include/conversation.php:1487
+msgid "Undecided"
+msgid_plural "Undecided"
+msgstr[0] "Unentschieden"
+msgstr[1] "Unentschieden"
 
-#: include/enotify.php:30
-#, php-format
-msgid "%s Administrator"
-msgstr "der Administrator von %s"
+#: include/profile_selectors.php:23
+msgid "Males"
+msgstr "Männer"
 
-#: include/enotify.php:32
-#, php-format
-msgid "%1$s, %2$s Administrator"
-msgstr "%1$s, %2$s Administrator"
+#: include/profile_selectors.php:23
+msgid "Females"
+msgstr "Frauen"
 
-#: include/enotify.php:43 include/delivery.php:457
-msgid "noreply"
-msgstr "noreply"
+#: include/profile_selectors.php:23
+msgid "Gay"
+msgstr "Schwul"
 
-#: include/enotify.php:70
-#, php-format
-msgid "%s <!item_type!>"
-msgstr "%s <!item_type!>"
+#: include/profile_selectors.php:23
+msgid "Lesbian"
+msgstr "Lesbisch"
 
-#: include/enotify.php:83
-#, php-format
-msgid "[Friendica:Notify] New mail received at %s"
-msgstr "[Friendica-Meldung] Neue Nachricht erhalten von %s"
+#: include/profile_selectors.php:23
+msgid "No Preference"
+msgstr "Keine Vorlieben"
 
-#: include/enotify.php:85
-#, 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/profile_selectors.php:23
+msgid "Bisexual"
+msgstr "Bisexuell"
 
-#: include/enotify.php:86
-#, php-format
-msgid "%1$s sent you %2$s."
-msgstr "%1$s schickte Dir %2$s."
+#: include/profile_selectors.php:23
+msgid "Autosexual"
+msgstr "Autosexual"
 
-#: include/enotify.php:86
-msgid "a private message"
-msgstr "eine private Nachricht"
+#: include/profile_selectors.php:23
+msgid "Abstinent"
+msgstr "Abstinent"
 
-#: include/enotify.php:88
-#, 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/profile_selectors.php:23
+msgid "Virgin"
+msgstr "Jungfrauen"
 
-#: 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/profile_selectors.php:23
+msgid "Deviant"
+msgstr "Deviant"
 
-#: 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/profile_selectors.php:23
+msgid "Fetish"
+msgstr "Fetish"
 
-#: 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/profile_selectors.php:23
+msgid "Oodles"
+msgstr "Oodles"
 
-#: 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/profile_selectors.php:23
+msgid "Nonsexual"
+msgstr "Nonsexual"
 
-#: include/enotify.php:161
-#, php-format
-msgid "%s commented on an item/conversation you have been following."
-msgstr "%s hat einen Beitrag kommentiert, dem Du folgst."
+#: include/profile_selectors.php:42
+msgid "Single"
+msgstr "Single"
 
-#: include/enotify.php:164 include/enotify.php:178 include/enotify.php:192
-#: include/enotify.php:206 include/enotify.php:224 include/enotify.php:238
-#, 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/profile_selectors.php:42
+msgid "Lonely"
+msgstr "Einsam"
 
-#: include/enotify.php:171
-#, php-format
-msgid "[Friendica:Notify] %s posted to your profile wall"
-msgstr "[Friendica-Meldung] %s hat auf Deine Pinnwand geschrieben"
+#: include/profile_selectors.php:42
+msgid "Available"
+msgstr "Verfügbar"
 
-#: include/enotify.php:173
-#, php-format
-msgid "%1$s posted to your profile wall at %2$s"
-msgstr "%1$s schrieb auf %2$s auf Deine Pinnwand"
+#: include/profile_selectors.php:42
+msgid "Unavailable"
+msgstr "Nicht verfügbar"
 
-#: 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/profile_selectors.php:42
+msgid "Has crush"
+msgstr "verknallt"
 
-#: include/enotify.php:185
-#, php-format
-msgid "[Friendica:Notify] %s tagged you"
-msgstr "[Friendica-Meldung] %s hat Dich erwähnt"
+#: include/profile_selectors.php:42
+msgid "Infatuated"
+msgstr "verliebt"
 
-#: include/enotify.php:187
-#, php-format
-msgid "%1$s tagged you at %2$s"
-msgstr "%1$s erwähnte Dich auf %2$s"
+#: include/profile_selectors.php:42
+msgid "Dating"
+msgstr "Dating"
 
-#: include/enotify.php:188
-#, php-format
-msgid "%1$s [url=%2$s]tagged you[/url]."
-msgstr "%1$s [url=%2$s]erwähnte Dich[/url]."
+#: include/profile_selectors.php:42
+msgid "Unfaithful"
+msgstr "Untreu"
 
-#: include/enotify.php:199
-#, php-format
-msgid "[Friendica:Notify] %s shared a new post"
-msgstr "[Friendica Benachrichtigung] %s hat einen Beitrag geteilt"
+#: include/profile_selectors.php:42
+msgid "Sex Addict"
+msgstr "Sexbesessen"
 
-#: include/enotify.php:201
-#, php-format
-msgid "%1$s shared a new post at %2$s"
-msgstr "%1$s hat einen neuen Beitrag auf %2$s geteilt"
+#: include/profile_selectors.php:42 include/user.php:280 include/user.php:284
+msgid "Friends"
+msgstr "Kontakte"
 
-#: include/enotify.php:202
-#, php-format
-msgid "%1$s [url=%2$s]shared a post[/url]."
-msgstr "%1$s [url=%2$s]hat einen Beitrag geteilt[/url]."
+#: include/profile_selectors.php:42
+msgid "Friends/Benefits"
+msgstr "Freunde/Zuwendungen"
 
-#: include/enotify.php:213
-#, php-format
-msgid "[Friendica:Notify] %1$s poked you"
-msgstr "[Friendica-Meldung] %1$s hat Dich angestupst"
+#: include/profile_selectors.php:42
+msgid "Casual"
+msgstr "Casual"
 
-#: include/enotify.php:215
-#, php-format
-msgid "%1$s poked you at %2$s"
-msgstr "%1$s hat Dich auf %2$s angestupst"
+#: include/profile_selectors.php:42
+msgid "Engaged"
+msgstr "Verlobt"
 
-#: include/enotify.php:216
-#, php-format
-msgid "%1$s [url=%2$s]poked you[/url]."
-msgstr "%1$s [url=%2$s]hat Dich angestupst[/url]."
+#: include/profile_selectors.php:42
+msgid "Married"
+msgstr "Verheiratet"
 
-#: include/enotify.php:231
-#, php-format
-msgid "[Friendica:Notify] %s tagged your post"
-msgstr "[Friendica-Meldung] %s hat Deinen Beitrag getaggt"
+#: include/profile_selectors.php:42
+msgid "Imaginarily married"
+msgstr "imaginär verheiratet"
 
-#: include/enotify.php:233
-#, php-format
-msgid "%1$s tagged your post at %2$s"
-msgstr "%1$s erwähnte Deinen Beitrag auf %2$s"
+#: include/profile_selectors.php:42
+msgid "Partners"
+msgstr "Partner"
 
-#: include/enotify.php:234
-#, php-format
-msgid "%1$s tagged [url=%2$s]your post[/url]"
-msgstr "%1$s erwähnte [url=%2$s]Deinen Beitrag[/url]"
+#: include/profile_selectors.php:42
+msgid "Cohabiting"
+msgstr "zusammenlebend"
 
-#: include/enotify.php:245
-msgid "[Friendica:Notify] Introduction received"
-msgstr "[Friendica-Meldung] Kontaktanfrage erhalten"
+#: include/profile_selectors.php:42
+msgid "Common law"
+msgstr "wilde Ehe"
 
-#: include/enotify.php:247
-#, 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/profile_selectors.php:42
+msgid "Happy"
+msgstr "Glücklich"
 
-#: include/enotify.php:248
-#, 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/profile_selectors.php:42
+msgid "Not looking"
+msgstr "Nicht auf der Suche"
 
-#: include/enotify.php:252 include/enotify.php:295
-#, php-format
-msgid "You may visit their profile at %s"
-msgstr "Hier kannst Du das Profil betrachten: %s"
+#: include/profile_selectors.php:42
+msgid "Swinger"
+msgstr "Swinger"
 
-#: include/enotify.php:254
-#, php-format
-msgid "Please visit %s to approve or reject the introduction."
-msgstr "Bitte besuche %s, um die Kontaktanfrage anzunehmen oder abzulehnen."
+#: include/profile_selectors.php:42
+msgid "Betrayed"
+msgstr "Betrogen"
 
-#: include/enotify.php:262
-msgid "[Friendica:Notify] A new person is sharing with you"
-msgstr "[Friendica Benachrichtigung] Eine neue Person teilt mit Dir"
+#: include/profile_selectors.php:42
+msgid "Separated"
+msgstr "Getrennt"
 
-#: include/enotify.php:264 include/enotify.php:265
-#, php-format
-msgid "%1$s is sharing with you at %2$s"
-msgstr "%1$s teilt mit Dir auf %2$s"
+#: include/profile_selectors.php:42
+msgid "Unstable"
+msgstr "Unstabil"
 
-#: include/enotify.php:271
-msgid "[Friendica:Notify] You have a new follower"
-msgstr "[Friendica Benachrichtigung] Du hast einen neuen Kontakt auf "
+#: include/profile_selectors.php:42
+msgid "Divorced"
+msgstr "Geschieden"
 
-#: include/enotify.php:273 include/enotify.php:274
-#, 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/profile_selectors.php:42
+msgid "Imaginarily divorced"
+msgstr "imaginär geschieden"
 
-#: include/enotify.php:285
-msgid "[Friendica:Notify] Friend suggestion received"
-msgstr "[Friendica-Meldung] Kontaktvorschlag erhalten"
+#: include/profile_selectors.php:42
+msgid "Widowed"
+msgstr "Verwitwet"
 
-#: include/enotify.php:287
-#, php-format
-msgid "You've received a friend suggestion from '%1$s' at %2$s"
-msgstr "Du hast einen Kontakt-Vorschlag von '%1$s' auf %2$s erhalten"
+#: include/profile_selectors.php:42
+msgid "Uncertain"
+msgstr "Unsicher"
 
-#: include/enotify.php:288
-#, 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]Kontakt-Vorschlag[/url] %2$s von %3$s erhalten."
+#: include/profile_selectors.php:42
+msgid "It's complicated"
+msgstr "Ist kompliziert"
 
-#: include/enotify.php:293
-msgid "Name:"
-msgstr "Name:"
+#: include/profile_selectors.php:42
+msgid "Don't care"
+msgstr "Ist mir nicht wichtig"
 
-#: include/enotify.php:294
-msgid "Photo:"
-msgstr "Foto:"
+#: include/profile_selectors.php:42
+msgid "Ask me"
+msgstr "Frag mich"
 
-#: include/enotify.php:297
+#: include/dba_pdo.php:72 include/dba.php:56
 #, 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:305 include/enotify.php:319
-msgid "[Friendica:Notify] Connection accepted"
-msgstr "[Friendica-Benachrichtigung] Kontaktanfrage bestätigt"
+msgid "Cannot locate DNS info for database server '%s'"
+msgstr "Kann die DNS Informationen für den Datenbankserver '%s' nicht ermitteln."
 
-#: include/enotify.php:307 include/enotify.php:321
-#, php-format
-msgid "'%1$s' has accepted your connection request at %2$s"
-msgstr "'%1$s' hat Deine Kontaktanfrage auf  %2$s bestätigt"
+#: include/auth.php:45
+msgid "Logged out."
+msgstr "Abgemeldet."
 
-#: include/enotify.php:308 include/enotify.php:322
-#, 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/auth.php:116 include/auth.php:178 mod/openid.php:100
+msgid "Login failed."
+msgstr "Anmeldung fehlgeschlagen."
 
-#: include/enotify.php:312
+#: include/auth.php:132 include/user.php:75
 msgid ""
-"You are now mutual friends and may exchange status updates, photos, and "
-"email without restriction."
-msgstr "Ihr seid nun beidseitige Kontakte und könnt Statusmitteilungen, Bilder und Emails ohne Einschränkungen austauschen."
-
-#: include/enotify.php:314
-#, 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."
+"We encountered a problem while logging in with the OpenID you provided. "
+"Please check the correct spelling of the ID."
+msgstr "Beim Versuch Dich mit der von Dir angegebenen OpenID anzumelden trat ein Problem auf. Bitte überprüfe, dass Du die OpenID richtig geschrieben hast."
 
-#: include/enotify.php:326
-#, 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' 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/auth.php:132 include/user.php:75
+msgid "The error message was:"
+msgstr "Die Fehlermeldung lautete:"
 
-#: include/enotify.php:328
-#, php-format
+#: include/group.php:25
 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. "
+"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 "Eine gelöschte Gruppe mit diesem Namen wurde wiederbelebt. Bestehende Berechtigungseinstellungen <strong>könnten</strong> auf diese Gruppe oder zukünftige Mitglieder angewandt werden. Falls Du dies nicht möchtest, erstelle bitte eine andere Gruppe mit einem anderen Namen."
 
-#: include/enotify.php:330
-#, 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/group.php:209
+msgid "Default privacy group for new contacts"
+msgstr "Voreingestellte Gruppe für neue Kontakte"
 
-#: include/enotify.php:340
-msgid "[Friendica System:Notify] registration request"
-msgstr "[Friendica System:Benachrichtigung] Registrationsanfrage"
+#: include/group.php:242
+msgid "Everybody"
+msgstr "Alle Kontakte"
 
-#: include/enotify.php:342
-#, 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/group.php:265
+msgid "edit"
+msgstr "bearbeiten"
 
-#: include/enotify.php:343
-#, 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/group.php:286 mod/newmember.php:61
+msgid "Groups"
+msgstr "Gruppen"
 
-#: include/enotify.php:347
-#, 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/group.php:288
+msgid "Edit groups"
+msgstr "Gruppen bearbeiten"
 
-#: include/enotify.php:350
-#, php-format
-msgid "Please visit %s to approve or reject the request."
-msgstr "Bitte besuche %s um die Anfrage zu bearbeiten."
+#: include/group.php:290
+msgid "Edit group"
+msgstr "Gruppe bearbeiten"
 
-#: include/plugin.php:526 include/plugin.php:528
-msgid "Click here to upgrade."
-msgstr "Zum Upgraden hier klicken."
+#: include/group.php:291
+msgid "Create a new group"
+msgstr "Neue Gruppe erstellen"
 
-#: include/plugin.php:534
-msgid "This action exceeds the limits set by your subscription plan."
-msgstr "Diese Aktion überschreitet die Obergrenze Deines Abonnements."
+#: include/group.php:292 mod/group.php:94 mod/group.php:178
+msgid "Group Name: "
+msgstr "Gruppenname:"
 
-#: include/plugin.php:539
-msgid "This action is not available under your subscription plan."
-msgstr "Diese Aktion ist in Deinem Abonnement nicht verfügbar."
+#: include/group.php:294
+msgid "Contacts not in any group"
+msgstr "Kontakte in keiner Gruppe"
 
-#: include/ForumManager.php:114 include/text.php:1025 include/nav.php:131
-#: view/theme/vier/theme.php:255
-msgid "Forums"
-msgstr "Foren"
+#: include/group.php:296 mod/network.php:201
+msgid "add"
+msgstr "hinzufügen"
 
-#: include/ForumManager.php:116 view/theme/vier/theme.php:257
-msgid "External link to forum"
-msgstr "Externer Link zum Forum"
+#: include/contact_selectors.php:32
+msgid "Unknown | Not categorised"
+msgstr "Unbekannt | Nicht kategorisiert"
 
-#: include/diaspora.php:1402 include/conversation.php:141 include/like.php:182
-#, php-format
-msgid "%1$s likes %2$s's %3$s"
-msgstr "%1$s mag %2$ss %3$s"
+#: include/contact_selectors.php:33
+msgid "Block immediately"
+msgstr "Sofort blockieren"
 
-#: include/diaspora.php:1406 include/conversation.php:125
-#: include/conversation.php:134 include/conversation.php:261
-#: include/conversation.php:270 include/like.php:163 mod/tagger.php:62
-#: mod/subthread.php:87
-msgid "status"
-msgstr "Status"
+#: include/contact_selectors.php:34
+msgid "Shady, spammer, self-marketer"
+msgstr "Zwielichtig, Spammer, Selbstdarsteller"
 
-#: include/diaspora.php:1958
-msgid "Sharing notification from Diaspora network"
-msgstr "Freigabe-Benachrichtigung von Diaspora"
+#: include/contact_selectors.php:35
+msgid "Known to me, but no opinion"
+msgstr "Ist mir bekannt, hab aber keine Meinung"
 
-#: include/diaspora.php:2864
-msgid "Attachments:"
-msgstr "Anhänge:"
+#: include/contact_selectors.php:36
+msgid "OK, probably harmless"
+msgstr "OK, wahrscheinlich harmlos"
 
-#: include/dfrn.php:1108
-#, php-format
-msgid "%s\\'s birthday"
-msgstr "%ss Geburtstag"
+#: include/contact_selectors.php:37
+msgid "Reputable, has my trust"
+msgstr "Seriös, hat mein Vertrauen"
 
-#: include/uimport.php:94
-msgid "Error decoding account file"
-msgstr "Fehler beim Verarbeiten der Account Datei"
+#: include/contact_selectors.php:56 mod/admin.php:890
+msgid "Frequently"
+msgstr "immer wieder"
 
-#: include/uimport.php:100
-msgid "Error! No version data in file! This is not a Friendica account file?"
-msgstr "Fehler! Keine Versionsdaten in der Datei! Ist das wirklich eine Friendica Account Datei?"
+#: include/contact_selectors.php:57 mod/admin.php:891
+msgid "Hourly"
+msgstr "Stündlich"
 
-#: include/uimport.php:116 include/uimport.php:127
-msgid "Error! Cannot check nickname"
-msgstr "Fehler! Konnte den Nickname nicht überprüfen."
+#: include/contact_selectors.php:58 mod/admin.php:892
+msgid "Twice daily"
+msgstr "Zweimal täglich"
 
-#: include/uimport.php:120 include/uimport.php:131
-#, php-format
-msgid "User '%s' already exists on this server!"
-msgstr "Nutzer '%s' existiert bereits auf diesem Server!"
+#: include/contact_selectors.php:59 mod/admin.php:893
+msgid "Daily"
+msgstr "Täglich"
 
-#: include/uimport.php:153
-msgid "User creation error"
-msgstr "Fehler beim Anlegen des Nutzeraccounts aufgetreten"
+#: include/contact_selectors.php:60
+msgid "Weekly"
+msgstr "Wöchentlich"
 
-#: include/uimport.php:173
-msgid "User profile creation error"
-msgstr "Fehler beim Anlegen des Nutzerkontos"
+#: include/contact_selectors.php:61
+msgid "Monthly"
+msgstr "Monatlich"
 
-#: include/uimport.php:222
-#, php-format
-msgid "%d contact not imported"
-msgid_plural "%d contacts not imported"
-msgstr[0] "%d Kontakt nicht importiert"
-msgstr[1] "%d Kontakte nicht importiert"
+#: include/contact_selectors.php:76 mod/dfrn_request.php:868
+msgid "Friendica"
+msgstr "Friendica"
 
-#: include/uimport.php:292
-msgid "Done. You can now login with your username and password"
-msgstr "Erledigt. Du kannst Dich jetzt mit Deinem Nutzernamen und Passwort anmelden"
+#: include/contact_selectors.php:77
+msgid "OStatus"
+msgstr "OStatus"
 
-#: include/dba.php:56 include/dba_pdo.php:72
-#, php-format
-msgid "Cannot locate DNS info for database server '%s'"
-msgstr "Kann die DNS Informationen für den Datenbankserver '%s' nicht ermitteln."
+#: include/contact_selectors.php:78
+msgid "RSS/Atom"
+msgstr "RSS/Atom"
 
-#: include/event.php:16 include/bb2diaspora.php:148 mod/localtime.php:12
-msgid "l F d, Y \\@ g:i A"
-msgstr "l, d. F Y\\, H:i"
+#: include/contact_selectors.php:79 include/contact_selectors.php:86
+#: mod/admin.php:1396 mod/admin.php:1409 mod/admin.php:1422 mod/admin.php:1440
+msgid "Email"
+msgstr "E-Mail"
 
-#: include/event.php:33 include/event.php:51 include/event.php:487
-#: include/bb2diaspora.php:154
-msgid "Starts:"
-msgstr "Beginnt:"
+#: include/contact_selectors.php:80 mod/settings.php:842
+#: mod/dfrn_request.php:870
+msgid "Diaspora"
+msgstr "Diaspora"
 
-#: include/event.php:36 include/event.php:57 include/event.php:488
-#: include/bb2diaspora.php:162
-msgid "Finishes:"
-msgstr "Endet:"
+#: include/contact_selectors.php:81
+msgid "Facebook"
+msgstr "Facebook"
 
-#: include/event.php:39 include/event.php:63 include/event.php:489
-#: include/identity.php:328 include/bb2diaspora.php:170
-#: mod/notifications.php:232 mod/events.php:494 mod/directory.php:137
-#: mod/contacts.php:628
-msgid "Location:"
-msgstr "Ort:"
+#: include/contact_selectors.php:82
+msgid "Zot!"
+msgstr "Zott"
 
-#: include/event.php:441
-msgid "Sun"
-msgstr "So"
+#: include/contact_selectors.php:83
+msgid "LinkedIn"
+msgstr "LinkedIn"
 
-#: include/event.php:442
-msgid "Mon"
-msgstr "Mo"
+#: include/contact_selectors.php:84
+msgid "XMPP/IM"
+msgstr "XMPP/Chat"
 
-#: include/event.php:443
-msgid "Tue"
-msgstr "Di"
+#: include/contact_selectors.php:85
+msgid "MySpace"
+msgstr "MySpace"
 
-#: include/event.php:444
-msgid "Wed"
-msgstr "Mi"
+#: include/contact_selectors.php:87
+msgid "Google+"
+msgstr "Google+"
 
-#: include/event.php:445
-msgid "Thu"
-msgstr "Do"
+#: include/contact_selectors.php:88
+msgid "pump.io"
+msgstr "pump.io"
 
-#: include/event.php:446
-msgid "Fri"
-msgstr "Fr"
+#: include/contact_selectors.php:89
+msgid "Twitter"
+msgstr "Twitter"
 
-#: include/event.php:447
-msgid "Sat"
-msgstr "Sa"
+#: include/contact_selectors.php:90
+msgid "Diaspora Connector"
+msgstr "Diaspora"
 
-#: include/event.php:448 include/text.php:1130 mod/settings.php:972
-msgid "Sunday"
-msgstr "Sonntag"
+#: include/contact_selectors.php:91
+msgid "GNU Social"
+msgstr "GNU Social"
 
-#: include/event.php:449 include/text.php:1130 mod/settings.php:972
-msgid "Monday"
-msgstr "Montag"
+#: include/contact_selectors.php:92
+msgid "App.net"
+msgstr "App.net"
 
-#: include/event.php:450 include/text.php:1130
-msgid "Tuesday"
-msgstr "Dienstag"
+#: include/contact_selectors.php:103
+msgid "Hubzilla/Redmatrix"
+msgstr "Hubzilla/Redmatrix"
 
-#: include/event.php:451 include/text.php:1130
-msgid "Wednesday"
-msgstr "Mittwoch"
+#: include/acl_selectors.php:327
+msgid "Post to Email"
+msgstr "An E-Mail senden"
 
-#: include/event.php:452 include/text.php:1130
-msgid "Thursday"
-msgstr "Donnerstag"
+#: include/acl_selectors.php:332
+#, php-format
+msgid "Connectors disabled, since \"%s\" is enabled."
+msgstr "Konnektoren sind nicht verfügbar, da \"%s\" aktiv ist."
 
-#: include/event.php:453 include/text.php:1130
-msgid "Friday"
-msgstr "Freitag"
+#: include/acl_selectors.php:333 mod/settings.php:1181
+msgid "Hide your profile details from unknown viewers?"
+msgstr "Profil-Details vor unbekannten Betrachtern verbergen?"
 
-#: include/event.php:454 include/text.php:1130
-msgid "Saturday"
-msgstr "Samstag"
+#: include/acl_selectors.php:338
+msgid "Visible to everybody"
+msgstr "Für jeden sichtbar"
 
-#: include/event.php:455
-msgid "Jan"
-msgstr "Jan"
+#: include/acl_selectors.php:339 view/theme/vier/config.php:103
+msgid "show"
+msgstr "zeigen"
 
-#: include/event.php:456
-msgid "Feb"
-msgstr "Feb"
+#: include/acl_selectors.php:340 view/theme/vier/config.php:103
+msgid "don't show"
+msgstr "nicht zeigen"
 
-#: include/event.php:457
-msgid "Mar"
-msgstr "März"
+#: include/acl_selectors.php:346 mod/editpost.php:133
+msgid "CC: email addresses"
+msgstr "Cc: E-Mail-Addressen"
 
-#: include/event.php:458
-msgid "Apr"
-msgstr "Apr"
+#: include/acl_selectors.php:347 mod/editpost.php:140
+msgid "Example: bob@example.com, mary@example.com"
+msgstr "Z.B.: bob@example.com, mary@example.com"
 
-#: include/event.php:459 include/event.php:471 include/text.php:1134
-msgid "May"
-msgstr "Mai"
+#: include/acl_selectors.php:349 mod/events.php:509 mod/photos.php:1156
+#: mod/photos.php:1535
+msgid "Permissions"
+msgstr "Berechtigungen"
 
-#: include/event.php:460
-msgid "Jun"
-msgstr "Jun"
+#: include/acl_selectors.php:350
+msgid "Close"
+msgstr "Schließen"
 
-#: include/event.php:461
-msgid "Jul"
-msgstr "Juli"
+#: include/like.php:163 include/conversation.php:130
+#: include/conversation.php:266 include/text.php:1804 mod/subthread.php:87
+#: mod/tagger.php:62
+msgid "photo"
+msgstr "Foto"
 
-#: include/event.php:462
-msgid "Aug"
-msgstr "Aug"
+#: include/like.php:163 include/diaspora.php:1406 include/conversation.php:125
+#: include/conversation.php:134 include/conversation.php:261
+#: include/conversation.php:270 mod/subthread.php:87 mod/tagger.php:62
+msgid "status"
+msgstr "Status"
 
-#: include/event.php:463
-msgid "Sept"
-msgstr "Sep"
+#: include/like.php:165 include/conversation.php:122
+#: include/conversation.php:258 include/text.php:1802
+msgid "event"
+msgstr "Event"
 
-#: include/event.php:464
-msgid "Oct"
-msgstr "Okt"
+#: include/like.php:182 include/diaspora.php:1402 include/conversation.php:141
+#, php-format
+msgid "%1$s likes %2$s's %3$s"
+msgstr "%1$s mag %2$ss %3$s"
 
-#: include/event.php:465
-msgid "Nov"
-msgstr "Nov"
+#: include/like.php:184 include/conversation.php:144
+#, php-format
+msgid "%1$s doesn't like %2$s's %3$s"
+msgstr "%1$s mag %2$ss %3$s nicht"
 
-#: include/event.php:466
-msgid "Dec"
-msgstr "Dez"
+#: include/like.php:186
+#, php-format
+msgid "%1$s is attending %2$s's %3$s"
+msgstr "%1$s nimmt an %2$ss %3$s teil."
 
-#: include/event.php:467 include/text.php:1134
-msgid "January"
-msgstr "Januar"
+#: include/like.php:188
+#, php-format
+msgid "%1$s is not attending %2$s's %3$s"
+msgstr "%1$s nimmt nicht an %2$ss %3$s teil."
 
-#: include/event.php:468 include/text.php:1134
-msgid "February"
-msgstr "Februar"
+#: include/like.php:190
+#, php-format
+msgid "%1$s may attend %2$s's %3$s"
+msgstr "%1$s nimmt eventuell an %2$ss %3$s teil."
 
-#: include/event.php:469 include/text.php:1134
-msgid "March"
-msgstr "März"
+#: include/message.php:15 include/message.php:173
+msgid "[no subject]"
+msgstr "[kein Betreff]"
 
-#: include/event.php:470 include/text.php:1134
-msgid "April"
-msgstr "April"
+#: include/message.php:145 include/Photo.php:1040 include/Photo.php:1056
+#: include/Photo.php:1064 include/Photo.php:1089 mod/wall_upload.php:218
+#: mod/wall_upload.php:232 mod/wall_upload.php:239 mod/item.php:478
+msgid "Wall Photos"
+msgstr "Pinnwand-Bilder"
 
-#: include/event.php:472 include/text.php:1134
-msgid "June"
-msgstr "Juni"
+#: include/plugin.php:526 include/plugin.php:528
+msgid "Click here to upgrade."
+msgstr "Zum Upgraden hier klicken."
 
-#: include/event.php:473 include/text.php:1134
-msgid "July"
-msgstr "Juli"
+#: include/plugin.php:534
+msgid "This action exceeds the limits set by your subscription plan."
+msgstr "Diese Aktion überschreitet die Obergrenze Deines Abonnements."
 
-#: include/event.php:474 include/text.php:1134
-msgid "August"
-msgstr "August"
+#: include/plugin.php:539
+msgid "This action is not available under your subscription plan."
+msgstr "Diese Aktion ist in Deinem Abonnement nicht verfügbar."
 
-#: include/event.php:475 include/text.php:1134
-msgid "September"
-msgstr "September"
+#: include/uimport.php:94
+msgid "Error decoding account file"
+msgstr "Fehler beim Verarbeiten der Account Datei"
 
-#: include/event.php:476 include/text.php:1134
-msgid "October"
-msgstr "Oktober"
-
-#: include/event.php:477 include/text.php:1134
-msgid "November"
-msgstr "November"
+#: include/uimport.php:100
+msgid "Error! No version data in file! This is not a Friendica account file?"
+msgstr "Fehler! Keine Versionsdaten in der Datei! Ist das wirklich eine Friendica Account Datei?"
 
-#: include/event.php:478 include/text.php:1134
-msgid "December"
-msgstr "Dezember"
+#: include/uimport.php:116 include/uimport.php:127
+msgid "Error! Cannot check nickname"
+msgstr "Fehler! Konnte den Nickname nicht überprüfen."
 
-#: include/event.php:479 mod/events.php:388 mod/cal.php:283
-msgid "today"
-msgstr "Heute"
+#: include/uimport.php:120 include/uimport.php:131
+#, php-format
+msgid "User '%s' already exists on this server!"
+msgstr "Nutzer '%s' existiert bereits auf diesem Server!"
 
-#: include/event.php:483
-msgid "all-day"
-msgstr "ganztägig"
+#: include/uimport.php:153
+msgid "User creation error"
+msgstr "Fehler beim Anlegen des Nutzeraccounts aufgetreten"
 
-#: include/event.php:485
-msgid "No events to display"
-msgstr "Keine Veranstaltung zum Anzeigen"
+#: include/uimport.php:173
+msgid "User profile creation error"
+msgstr "Fehler beim Anlegen des Nutzerkontos"
 
-#: include/event.php:574
-msgid "l, F j"
-msgstr "l, F j"
+#: include/uimport.php:222
+#, php-format
+msgid "%d contact not imported"
+msgid_plural "%d contacts not imported"
+msgstr[0] "%d Kontakt nicht importiert"
+msgstr[1] "%d Kontakte nicht importiert"
 
-#: include/event.php:593
-msgid "Edit event"
-msgstr "Veranstaltung bearbeiten"
+#: include/uimport.php:292
+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:615 include/text.php:1536 include/text.php:1543
-msgid "link to source"
-msgstr "Link zum Originalbeitrag"
+#: include/datetime.php:57 include/datetime.php:59 mod/profiles.php:705
+msgid "Miscellaneous"
+msgstr "Verschiedenes"
 
-#: include/event.php:850
-msgid "Export"
-msgstr "Exportieren"
+#: include/datetime.php:183 include/identity.php:629
+msgid "Birthday:"
+msgstr "Geburtstag:"
 
-#: include/event.php:851
-msgid "Export calendar as ical"
-msgstr "Kalender als ical exportieren"
+#: include/datetime.php:185 mod/profiles.php:728
+msgid "Age: "
+msgstr "Alter: "
 
-#: include/event.php:852
-msgid "Export calendar as csv"
-msgstr "Kalender als csv exportieren"
+#: include/datetime.php:187
+msgid "YYYY-MM-DD or MM-DD"
+msgstr "YYYY-MM-DD oder MM-DD"
 
-#: include/security.php:22
-msgid "Welcome "
-msgstr "Willkommen "
+#: include/datetime.php:341
+msgid "never"
+msgstr "nie"
 
-#: include/security.php:23
-msgid "Please upload a profile photo."
-msgstr "Bitte lade ein Profilbild hoch."
+#: include/datetime.php:347
+msgid "less than a second ago"
+msgstr "vor weniger als einer Sekunde"
 
-#: include/security.php:26
-msgid "Welcome back "
-msgstr "Willkommen zurück "
+#: include/datetime.php:350
+msgid "year"
+msgstr "Jahr"
 
-#: include/security.php:373
-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/datetime.php:350
+msgid "years"
+msgstr "Jahre"
 
-#: include/profile_selectors.php:6
-msgid "Male"
-msgstr "Männlich"
+#: include/datetime.php:351 include/event.php:480 mod/cal.php:284
+#: mod/events.php:389
+msgid "month"
+msgstr "Monat"
 
-#: include/profile_selectors.php:6
-msgid "Female"
-msgstr "Weiblich"
+#: include/datetime.php:351
+msgid "months"
+msgstr "Monate"
 
-#: include/profile_selectors.php:6
-msgid "Currently Male"
-msgstr "Momentan männlich"
+#: include/datetime.php:352 include/event.php:481 mod/cal.php:285
+#: mod/events.php:390
+msgid "week"
+msgstr "Woche"
 
-#: include/profile_selectors.php:6
-msgid "Currently Female"
-msgstr "Momentan weiblich"
+#: include/datetime.php:352
+msgid "weeks"
+msgstr "Wochen"
 
-#: include/profile_selectors.php:6
-msgid "Mostly Male"
-msgstr "Hauptsächlich männlich"
+#: include/datetime.php:353 include/event.php:482 mod/cal.php:286
+#: mod/events.php:391
+msgid "day"
+msgstr "Tag"
 
-#: include/profile_selectors.php:6
-msgid "Mostly Female"
-msgstr "Hauptsächlich weiblich"
+#: include/datetime.php:353
+msgid "days"
+msgstr "Tage"
 
-#: include/profile_selectors.php:6
-msgid "Transgender"
-msgstr "Transgender"
+#: include/datetime.php:354
+msgid "hour"
+msgstr "Stunde"
 
-#: include/profile_selectors.php:6
-msgid "Intersex"
-msgstr "Intersex"
+#: include/datetime.php:354
+msgid "hours"
+msgstr "Stunden"
 
-#: include/profile_selectors.php:6
-msgid "Transsexual"
-msgstr "Transsexuell"
+#: include/datetime.php:355
+msgid "minute"
+msgstr "Minute"
 
-#: include/profile_selectors.php:6
-msgid "Hermaphrodite"
-msgstr "Hermaphrodit"
+#: include/datetime.php:355
+msgid "minutes"
+msgstr "Minuten"
 
-#: include/profile_selectors.php:6
-msgid "Neuter"
-msgstr "Neuter"
+#: include/datetime.php:356
+msgid "second"
+msgstr "Sekunde"
 
-#: include/profile_selectors.php:6
-msgid "Non-specific"
-msgstr "Nicht spezifiziert"
+#: include/datetime.php:356
+msgid "seconds"
+msgstr "Sekunden"
 
-#: include/profile_selectors.php:6
-msgid "Other"
-msgstr "Andere"
+#: include/datetime.php:365
+#, php-format
+msgid "%1$d %2$s ago"
+msgstr "%1$d %2$s her"
 
-#: include/profile_selectors.php:6 include/conversation.php:1487
-msgid "Undecided"
-msgid_plural "Undecided"
-msgstr[0] "Unentschieden"
-msgstr[1] "Unentschieden"
+#: include/datetime.php:572
+#, php-format
+msgid "%s's birthday"
+msgstr "%ss Geburtstag"
 
-#: include/profile_selectors.php:23
-msgid "Males"
-msgstr "Männer"
+#: include/datetime.php:573 include/dfrn.php:1109
+#, php-format
+msgid "Happy Birthday %s"
+msgstr "Herzlichen Glückwunsch %s"
 
-#: include/profile_selectors.php:23
-msgid "Females"
-msgstr "Frauen"
+#: include/enotify.php:24
+msgid "Friendica Notification"
+msgstr "Friendica-Benachrichtigung"
 
-#: include/profile_selectors.php:23
-msgid "Gay"
-msgstr "Schwul"
+#: include/enotify.php:27
+msgid "Thank You,"
+msgstr "Danke,"
 
-#: include/profile_selectors.php:23
-msgid "Lesbian"
-msgstr "Lesbisch"
+#: include/enotify.php:30
+#, php-format
+msgid "%s Administrator"
+msgstr "der Administrator von %s"
 
-#: include/profile_selectors.php:23
-msgid "No Preference"
-msgstr "Keine Vorlieben"
+#: include/enotify.php:32
+#, php-format
+msgid "%1$s, %2$s Administrator"
+msgstr "%1$s, %2$s Administrator"
 
-#: include/profile_selectors.php:23
-msgid "Bisexual"
-msgstr "Bisexuell"
+#: include/enotify.php:43 include/delivery.php:457
+msgid "noreply"
+msgstr "noreply"
 
-#: include/profile_selectors.php:23
-msgid "Autosexual"
-msgstr "Autosexual"
+#: include/enotify.php:70
+#, php-format
+msgid "%s <!item_type!>"
+msgstr "%s <!item_type!>"
 
-#: include/profile_selectors.php:23
-msgid "Abstinent"
-msgstr "Abstinent"
+#: include/enotify.php:83
+#, php-format
+msgid "[Friendica:Notify] New mail received at %s"
+msgstr "[Friendica-Meldung] Neue Nachricht erhalten von %s"
 
-#: include/profile_selectors.php:23
-msgid "Virgin"
-msgstr "Jungfrauen"
+#: include/enotify.php:85
+#, 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/profile_selectors.php:23
-msgid "Deviant"
-msgstr "Deviant"
+#: include/enotify.php:86
+#, php-format
+msgid "%1$s sent you %2$s."
+msgstr "%1$s schickte Dir %2$s."
 
-#: include/profile_selectors.php:23
-msgid "Fetish"
-msgstr "Fetish"
+#: include/enotify.php:86
+msgid "a private message"
+msgstr "eine private Nachricht"
 
-#: include/profile_selectors.php:23
-msgid "Oodles"
-msgstr "Oodles"
+#: include/enotify.php:88
+#, 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/profile_selectors.php:23
-msgid "Nonsexual"
-msgstr "Nonsexual"
+#: 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/profile_selectors.php:42
-msgid "Single"
-msgstr "Single"
+#: 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/profile_selectors.php:42
-msgid "Lonely"
-msgstr "Einsam"
+#: 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/profile_selectors.php:42
-msgid "Available"
-msgstr "Verfügbar"
+#: 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/profile_selectors.php:42
-msgid "Unavailable"
-msgstr "Nicht verfügbar"
+#: include/enotify.php:161
+#, php-format
+msgid "%s commented on an item/conversation you have been following."
+msgstr "%s hat einen Beitrag kommentiert, dem Du folgst."
 
-#: include/profile_selectors.php:42
-msgid "Has crush"
-msgstr "verknallt"
+#: include/enotify.php:164 include/enotify.php:178 include/enotify.php:192
+#: include/enotify.php:206 include/enotify.php:224 include/enotify.php:238
+#, 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/profile_selectors.php:42
-msgid "Infatuated"
-msgstr "verliebt"
+#: include/enotify.php:171
+#, php-format
+msgid "[Friendica:Notify] %s posted to your profile wall"
+msgstr "[Friendica-Meldung] %s hat auf Deine Pinnwand geschrieben"
 
-#: include/profile_selectors.php:42
-msgid "Dating"
-msgstr "Dating"
+#: include/enotify.php:173
+#, php-format
+msgid "%1$s posted to your profile wall at %2$s"
+msgstr "%1$s schrieb auf %2$s auf Deine Pinnwand"
 
-#: include/profile_selectors.php:42
-msgid "Unfaithful"
-msgstr "Untreu"
+#: 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/profile_selectors.php:42
-msgid "Sex Addict"
-msgstr "Sexbesessen"
+#: include/enotify.php:185
+#, php-format
+msgid "[Friendica:Notify] %s tagged you"
+msgstr "[Friendica-Meldung] %s hat Dich erwähnt"
 
-#: include/profile_selectors.php:42 include/user.php:299 include/user.php:303
-msgid "Friends"
-msgstr "Kontakte"
+#: include/enotify.php:187
+#, php-format
+msgid "%1$s tagged you at %2$s"
+msgstr "%1$s erwähnte Dich auf %2$s"
 
-#: include/profile_selectors.php:42
-msgid "Friends/Benefits"
-msgstr "Freunde/Zuwendungen"
+#: include/enotify.php:188
+#, php-format
+msgid "%1$s [url=%2$s]tagged you[/url]."
+msgstr "%1$s [url=%2$s]erwähnte Dich[/url]."
 
-#: include/profile_selectors.php:42
-msgid "Casual"
-msgstr "Casual"
+#: include/enotify.php:199
+#, php-format
+msgid "[Friendica:Notify] %s shared a new post"
+msgstr "[Friendica Benachrichtigung] %s hat einen Beitrag geteilt"
 
-#: include/profile_selectors.php:42
-msgid "Engaged"
-msgstr "Verlobt"
+#: include/enotify.php:201
+#, php-format
+msgid "%1$s shared a new post at %2$s"
+msgstr "%1$s hat einen neuen Beitrag auf %2$s geteilt"
 
-#: include/profile_selectors.php:42
-msgid "Married"
-msgstr "Verheiratet"
+#: include/enotify.php:202
+#, php-format
+msgid "%1$s [url=%2$s]shared a post[/url]."
+msgstr "%1$s [url=%2$s]hat einen Beitrag geteilt[/url]."
 
-#: include/profile_selectors.php:42
-msgid "Imaginarily married"
-msgstr "imaginär verheiratet"
+#: include/enotify.php:213
+#, php-format
+msgid "[Friendica:Notify] %1$s poked you"
+msgstr "[Friendica-Meldung] %1$s hat Dich angestupst"
 
-#: include/profile_selectors.php:42
-msgid "Partners"
-msgstr "Partner"
+#: include/enotify.php:215
+#, php-format
+msgid "%1$s poked you at %2$s"
+msgstr "%1$s hat Dich auf %2$s angestupst"
 
-#: include/profile_selectors.php:42
-msgid "Cohabiting"
-msgstr "zusammenlebend"
+#: include/enotify.php:216
+#, php-format
+msgid "%1$s [url=%2$s]poked you[/url]."
+msgstr "%1$s [url=%2$s]hat Dich angestupst[/url]."
 
-#: include/profile_selectors.php:42
-msgid "Common law"
-msgstr "wilde Ehe"
+#: include/enotify.php:231
+#, php-format
+msgid "[Friendica:Notify] %s tagged your post"
+msgstr "[Friendica-Meldung] %s hat Deinen Beitrag getaggt"
 
-#: include/profile_selectors.php:42
-msgid "Happy"
-msgstr "Glücklich"
+#: include/enotify.php:233
+#, php-format
+msgid "%1$s tagged your post at %2$s"
+msgstr "%1$s erwähnte Deinen Beitrag auf %2$s"
 
-#: include/profile_selectors.php:42
-msgid "Not looking"
-msgstr "Nicht auf der Suche"
+#: include/enotify.php:234
+#, php-format
+msgid "%1$s tagged [url=%2$s]your post[/url]"
+msgstr "%1$s erwähnte [url=%2$s]Deinen Beitrag[/url]"
 
-#: include/profile_selectors.php:42
-msgid "Swinger"
-msgstr "Swinger"
+#: include/enotify.php:245
+msgid "[Friendica:Notify] Introduction received"
+msgstr "[Friendica-Meldung] Kontaktanfrage erhalten"
 
-#: include/profile_selectors.php:42
-msgid "Betrayed"
-msgstr "Betrogen"
+#: include/enotify.php:247
+#, 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/profile_selectors.php:42
-msgid "Separated"
-msgstr "Getrennt"
+#: include/enotify.php:248
+#, 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/profile_selectors.php:42
-msgid "Unstable"
-msgstr "Unstabil"
+#: include/enotify.php:252 include/enotify.php:295
+#, php-format
+msgid "You may visit their profile at %s"
+msgstr "Hier kannst Du das Profil betrachten: %s"
 
-#: include/profile_selectors.php:42
-msgid "Divorced"
-msgstr "Geschieden"
+#: include/enotify.php:254
+#, php-format
+msgid "Please visit %s to approve or reject the introduction."
+msgstr "Bitte besuche %s, um die Kontaktanfrage anzunehmen oder abzulehnen."
 
-#: include/profile_selectors.php:42
-msgid "Imaginarily divorced"
-msgstr "imaginär geschieden"
+#: include/enotify.php:262
+msgid "[Friendica:Notify] A new person is sharing with you"
+msgstr "[Friendica Benachrichtigung] Eine neue Person teilt mit Dir"
 
-#: include/profile_selectors.php:42
-msgid "Widowed"
-msgstr "Verwitwet"
+#: include/enotify.php:264 include/enotify.php:265
+#, php-format
+msgid "%1$s is sharing with you at %2$s"
+msgstr "%1$s teilt mit Dir auf %2$s"
 
-#: include/profile_selectors.php:42
-msgid "Uncertain"
-msgstr "Unsicher"
+#: include/enotify.php:271
+msgid "[Friendica:Notify] You have a new follower"
+msgstr "[Friendica Benachrichtigung] Du hast einen neuen Kontakt auf "
 
-#: include/profile_selectors.php:42
-msgid "It's complicated"
-msgstr "Ist kompliziert"
+#: include/enotify.php:273 include/enotify.php:274
+#, 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/profile_selectors.php:42
-msgid "Don't care"
-msgstr "Ist mir nicht wichtig"
+#: include/enotify.php:285
+msgid "[Friendica:Notify] Friend suggestion received"
+msgstr "[Friendica-Meldung] Kontaktvorschlag erhalten"
 
-#: include/profile_selectors.php:42
-msgid "Ask me"
-msgstr "Frag mich"
+#: include/enotify.php:287
+#, php-format
+msgid "You've received a friend suggestion from '%1$s' at %2$s"
+msgstr "Du hast einen Kontakt-Vorschlag von '%1$s' auf %2$s erhalten"
 
-#: include/items.php:1571 mod/dfrn_confirm.php:730 mod/dfrn_request.php:746
-msgid "[Name Withheld]"
-msgstr "[Name unterdrückt]"
+#: include/enotify.php:288
+#, 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]Kontakt-Vorschlag[/url] %2$s von %3$s erhalten."
 
-#: include/items.php:1926 mod/viewsrc.php:15 mod/admin.php:234
-#: mod/admin.php:1471 mod/admin.php:1705 mod/display.php:103
-#: mod/display.php:279 mod/display.php:478 mod/notice.php:15
-msgid "Item not found."
-msgstr "Beitrag nicht gefunden."
+#: include/enotify.php:293
+msgid "Name:"
+msgstr "Name:"
 
-#: include/items.php:1965
-msgid "Do you really want to delete this item?"
-msgstr "Möchtest Du wirklich dieses Item löschen?"
+#: include/enotify.php:294
+msgid "Photo:"
+msgstr "Foto:"
 
-#: include/items.php:1967 mod/profiles.php:648 mod/profiles.php:651
-#: mod/profiles.php:677 mod/contacts.php:442 mod/follow.php:110
-#: mod/suggest.php:29 mod/dfrn_request.php:862 mod/register.php:245
-#: mod/settings.php:1163 mod/settings.php:1169 mod/settings.php:1177
-#: mod/settings.php:1181 mod/settings.php:1186 mod/settings.php:1192
-#: mod/settings.php:1198 mod/settings.php:1204 mod/settings.php:1230
-#: mod/settings.php:1231 mod/settings.php:1232 mod/settings.php:1233
-#: mod/settings.php:1234 mod/api.php:105 mod/message.php:217
-msgid "Yes"
-msgstr "Ja"
+#: include/enotify.php:297
+#, php-format
+msgid "Please visit %s to approve or reject the suggestion."
+msgstr "Bitte besuche %s, um den Vorschlag zu akzeptieren oder abzulehnen."
 
-#: include/items.php:1970 include/conversation.php:1283 mod/fbrowser.php:101
-#: mod/fbrowser.php:136 mod/tagrm.php:11 mod/tagrm.php:94 mod/videos.php:128
-#: mod/photos.php:235 mod/photos.php:322 mod/contacts.php:445
-#: mod/follow.php:121 mod/suggest.php:32 mod/editpost.php:148
-#: mod/dfrn_request.php:876 mod/settings.php:679 mod/settings.php:705
-#: mod/message.php:220
-msgid "Cancel"
-msgstr "Abbrechen"
+#: include/enotify.php:305 include/enotify.php:319
+msgid "[Friendica:Notify] Connection accepted"
+msgstr "[Friendica-Benachrichtigung] Kontaktanfrage bestätigt"
 
-#: include/items.php:2130 index.php:401 mod/regmod.php:110 mod/dirfind.php:11
-#: mod/notifications.php:71 mod/dfrn_confirm.php:61 mod/wall_upload.php:77
-#: mod/wall_upload.php:80 mod/fsuggest.php:78 mod/notes.php:22
-#: mod/events.php:190 mod/uimport.php:23 mod/nogroup.php:25 mod/invite.php:15
-#: mod/invite.php:101 mod/viewcontacts.php:45 mod/crepair.php:100
-#: mod/wall_attach.php:67 mod/wall_attach.php:70 mod/allfriends.php:12
-#: mod/cal.php:304 mod/repair_ostatus.php:9 mod/delegate.php:12
-#: mod/profiles.php:166 mod/profiles.php:605 mod/poke.php:150
-#: mod/photos.php:159 mod/photos.php:1072 mod/attach.php:33
-#: mod/contacts.php:350 mod/follow.php:11 mod/follow.php:73 mod/follow.php:155
-#: mod/suggest.php:58 mod/display.php:475 mod/common.php:18 mod/mood.php:114
-#: mod/editpost.php:10 mod/network.php:4 mod/group.php:19
-#: mod/profile_photo.php:19 mod/profile_photo.php:175
-#: mod/profile_photo.php:186 mod/profile_photo.php:199 mod/register.php:42
-#: mod/settings.php:22 mod/settings.php:128 mod/settings.php:665
-#: mod/wallmessage.php:9 mod/wallmessage.php:33 mod/wallmessage.php:79
-#: mod/wallmessage.php:103 mod/api.php:26 mod/api.php:31 mod/item.php:198
-#: mod/item.php:210 mod/ostatus_subscribe.php:9 mod/message.php:46
-#: mod/message.php:182 mod/manage.php:96
-msgid "Permission denied."
-msgstr "Zugriff verweigert."
+#: include/enotify.php:307 include/enotify.php:321
+#, php-format
+msgid "'%1$s' has accepted your connection request at %2$s"
+msgstr "'%1$s' hat Deine Kontaktanfrage auf  %2$s bestätigt"
 
-#: include/items.php:2235
-msgid "Archives"
-msgstr "Archiv"
+#: include/enotify.php:308 include/enotify.php:322
+#, 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/text.php:304
-msgid "newer"
-msgstr "neuer"
+#: include/enotify.php:312
+msgid ""
+"You are now mutual friends and may exchange status updates, photos, and "
+"email without restriction."
+msgstr "Ihr seid nun beidseitige Kontakte und könnt Statusmitteilungen, Bilder und Emails ohne Einschränkungen austauschen."
 
-#: include/text.php:306
-msgid "older"
-msgstr "älter"
+#: include/enotify.php:314
+#, 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/text.php:311
-msgid "prev"
-msgstr "vorige"
+#: include/enotify.php:326
+#, 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' 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/text.php:313
-msgid "first"
-msgstr "erste"
+#: include/enotify.php:328
+#, 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/text.php:345
-msgid "last"
-msgstr "letzte"
+#: include/enotify.php:330
+#, 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/text.php:348
-msgid "next"
-msgstr "nächste"
+#: include/enotify.php:340
+msgid "[Friendica System:Notify] registration request"
+msgstr "[Friendica System:Benachrichtigung] Registrationsanfrage"
 
-#: include/text.php:403
-msgid "Loading more entries..."
-msgstr "lade weitere Einträge..."
+#: include/enotify.php:342
+#, 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/text.php:404
-msgid "The end"
-msgstr "Das Ende"
+#: include/enotify.php:343
+#, 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/text.php:889
-msgid "No contacts"
-msgstr "Keine Kontakte"
+#: include/enotify.php:347
+#, 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/text.php:912
+#: include/enotify.php:350
 #, php-format
-msgid "%d Contact"
-msgid_plural "%d Contacts"
-msgstr[0] "%d Kontakt"
-msgstr[1] "%d Kontakte"
+msgid "Please visit %s to approve or reject the request."
+msgstr "Bitte besuche %s um die Anfrage zu bearbeiten."
 
-#: include/text.php:925
-msgid "View Contacts"
-msgstr "Kontakte anzeigen"
+#: include/event.php:16 include/bb2diaspora.php:152 mod/localtime.php:12
+msgid "l F d, Y \\@ g:i A"
+msgstr "l, d. F Y\\, H:i"
 
-#: include/text.php:1012 include/nav.php:123 mod/search.php:149
-msgid "Search"
-msgstr "Suche"
+#: include/event.php:33 include/event.php:51 include/event.php:487
+#: include/bb2diaspora.php:158
+msgid "Starts:"
+msgstr "Beginnt:"
 
-#: include/text.php:1013 mod/notes.php:61 mod/filer.php:31
-#: mod/editpost.php:109
-msgid "Save"
-msgstr "Speichern"
+#: include/event.php:36 include/event.php:57 include/event.php:488
+#: include/bb2diaspora.php:166
+msgid "Finishes:"
+msgstr "Endet:"
 
-#: include/text.php:1015 include/nav.php:40
-msgid "@name, !forum, #tags, content"
-msgstr "@name, !forum, #tags, content"
+#: include/event.php:39 include/event.php:63 include/event.php:489
+#: include/bb2diaspora.php:174 include/identity.php:328
+#: mod/notifications.php:232 mod/directory.php:137 mod/events.php:494
+#: mod/contacts.php:628
+msgid "Location:"
+msgstr "Ort:"
 
-#: include/text.php:1020 include/nav.php:126
-msgid "Full Text"
-msgstr "Volltext"
+#: include/event.php:441
+msgid "Sun"
+msgstr "So"
 
-#: include/text.php:1021 include/nav.php:127
-msgid "Tags"
-msgstr "Tags"
+#: include/event.php:442
+msgid "Mon"
+msgstr "Mo"
 
-#: include/text.php:1022 include/identity.php:783 include/identity.php:786
-#: include/nav.php:128 include/nav.php:192 mod/viewcontacts.php:116
-#: mod/contacts.php:792 mod/contacts.php:853 view/theme/frio/theme.php:260
-msgid "Contacts"
-msgstr "Kontakte"
+#: include/event.php:443
+msgid "Tue"
+msgstr "Di"
 
-#: include/text.php:1076
-msgid "poke"
-msgstr "anstupsen"
+#: include/event.php:444
+msgid "Wed"
+msgstr "Mi"
 
-#: include/text.php:1076
-msgid "poked"
-msgstr "stupste"
+#: include/event.php:445
+msgid "Thu"
+msgstr "Do"
 
-#: include/text.php:1077
-msgid "ping"
-msgstr "anpingen"
+#: include/event.php:446
+msgid "Fri"
+msgstr "Fr"
 
-#: include/text.php:1077
-msgid "pinged"
-msgstr "pingte"
+#: include/event.php:447
+msgid "Sat"
+msgstr "Sa"
 
-#: include/text.php:1078
-msgid "prod"
-msgstr "knuffen"
+#: include/event.php:448 include/text.php:1130 mod/settings.php:972
+msgid "Sunday"
+msgstr "Sonntag"
 
-#: include/text.php:1078
-msgid "prodded"
-msgstr "knuffte"
+#: include/event.php:449 include/text.php:1130 mod/settings.php:972
+msgid "Monday"
+msgstr "Montag"
 
-#: include/text.php:1079
-msgid "slap"
-msgstr "ohrfeigen"
+#: include/event.php:450 include/text.php:1130
+msgid "Tuesday"
+msgstr "Dienstag"
 
-#: include/text.php:1079
-msgid "slapped"
-msgstr "ohrfeigte"
+#: include/event.php:451 include/text.php:1130
+msgid "Wednesday"
+msgstr "Mittwoch"
 
-#: include/text.php:1080
-msgid "finger"
-msgstr "befummeln"
+#: include/event.php:452 include/text.php:1130
+msgid "Thursday"
+msgstr "Donnerstag"
 
-#: include/text.php:1080
-msgid "fingered"
-msgstr "befummelte"
+#: include/event.php:453 include/text.php:1130
+msgid "Friday"
+msgstr "Freitag"
 
-#: include/text.php:1081
-msgid "rebuff"
-msgstr "eine Abfuhr erteilen"
+#: include/event.php:454 include/text.php:1130
+msgid "Saturday"
+msgstr "Samstag"
 
-#: include/text.php:1081
-msgid "rebuffed"
-msgstr "abfuhrerteilte"
+#: include/event.php:455
+msgid "Jan"
+msgstr "Jan"
 
-#: include/text.php:1095
-msgid "happy"
-msgstr "glücklich"
+#: include/event.php:456
+msgid "Feb"
+msgstr "Feb"
 
-#: include/text.php:1096
-msgid "sad"
-msgstr "traurig"
+#: include/event.php:457
+msgid "Mar"
+msgstr "März"
 
-#: include/text.php:1097
-msgid "mellow"
-msgstr "sanft"
+#: include/event.php:458
+msgid "Apr"
+msgstr "Apr"
 
-#: include/text.php:1098
-msgid "tired"
-msgstr "müde"
+#: include/event.php:459 include/event.php:471 include/text.php:1134
+msgid "May"
+msgstr "Mai"
 
-#: include/text.php:1099
-msgid "perky"
-msgstr "frech"
+#: include/event.php:460
+msgid "Jun"
+msgstr "Jun"
 
-#: include/text.php:1100
-msgid "angry"
-msgstr "sauer"
+#: include/event.php:461
+msgid "Jul"
+msgstr "Juli"
 
-#: include/text.php:1101
-msgid "stupified"
-msgstr "verblüfft"
+#: include/event.php:462
+msgid "Aug"
+msgstr "Aug"
 
-#: include/text.php:1102
-msgid "puzzled"
-msgstr "verwirrt"
+#: include/event.php:463
+msgid "Sept"
+msgstr "Sep"
 
-#: include/text.php:1103
-msgid "interested"
-msgstr "interessiert"
+#: include/event.php:464
+msgid "Oct"
+msgstr "Okt"
 
-#: include/text.php:1104
-msgid "bitter"
-msgstr "verbittert"
+#: include/event.php:465
+msgid "Nov"
+msgstr "Nov"
 
-#: include/text.php:1105
-msgid "cheerful"
-msgstr "fröhlich"
+#: include/event.php:466
+msgid "Dec"
+msgstr "Dez"
 
-#: include/text.php:1106
-msgid "alive"
-msgstr "lebendig"
+#: include/event.php:467 include/text.php:1134
+msgid "January"
+msgstr "Januar"
 
-#: include/text.php:1107
-msgid "annoyed"
-msgstr "verärgert"
+#: include/event.php:468 include/text.php:1134
+msgid "February"
+msgstr "Februar"
 
-#: include/text.php:1108
-msgid "anxious"
-msgstr "unruhig"
+#: include/event.php:469 include/text.php:1134
+msgid "March"
+msgstr "März"
 
-#: include/text.php:1109
-msgid "cranky"
-msgstr "schrullig"
+#: include/event.php:470 include/text.php:1134
+msgid "April"
+msgstr "April"
 
-#: include/text.php:1110
-msgid "disturbed"
-msgstr "verstört"
+#: include/event.php:472 include/text.php:1134
+msgid "June"
+msgstr "Juni"
 
-#: include/text.php:1111
-msgid "frustrated"
-msgstr "frustriert"
+#: include/event.php:473 include/text.php:1134
+msgid "July"
+msgstr "Juli"
 
-#: include/text.php:1112
-msgid "motivated"
-msgstr "motiviert"
+#: include/event.php:474 include/text.php:1134
+msgid "August"
+msgstr "August"
 
-#: include/text.php:1113
-msgid "relaxed"
-msgstr "entspannt"
+#: include/event.php:475 include/text.php:1134
+msgid "September"
+msgstr "September"
 
-#: include/text.php:1114
-msgid "surprised"
-msgstr "überrascht"
+#: include/event.php:476 include/text.php:1134
+msgid "October"
+msgstr "Oktober"
 
-#: include/text.php:1328 mod/videos.php:380
-msgid "View Video"
-msgstr "Video ansehen"
+#: include/event.php:477 include/text.php:1134
+msgid "November"
+msgstr "November"
 
-#: include/text.php:1360
-msgid "bytes"
-msgstr "Byte"
+#: include/event.php:478 include/text.php:1134
+msgid "December"
+msgstr "Dezember"
 
-#: include/text.php:1392 include/text.php:1404
-msgid "Click to open/close"
-msgstr "Zum öffnen/schließen klicken"
+#: include/event.php:479 mod/cal.php:283 mod/events.php:388
+msgid "today"
+msgstr "Heute"
 
-#: include/text.php:1530
-msgid "View on separate page"
-msgstr "Auf separater Seite ansehen"
+#: include/event.php:483
+msgid "all-day"
+msgstr "ganztägig"
 
-#: include/text.php:1531
-msgid "view on separate page"
-msgstr "auf separater Seite ansehen"
+#: include/event.php:485
+msgid "No events to display"
+msgstr "Keine Veranstaltung zum Anzeigen"
 
-#: include/text.php:1806 include/conversation.php:122
-#: include/conversation.php:258 include/like.php:165
-msgid "event"
-msgstr "Event"
+#: include/event.php:574
+msgid "l, F j"
+msgstr "l, F j"
 
-#: include/text.php:1808 include/conversation.php:130
-#: include/conversation.php:266 include/like.php:163 mod/tagger.php:62
-#: mod/subthread.php:87
-msgid "photo"
-msgstr "Foto"
+#: include/event.php:593
+msgid "Edit event"
+msgstr "Veranstaltung bearbeiten"
 
-#: include/text.php:1810
-msgid "activity"
-msgstr "Aktivität"
+#: include/event.php:615 include/text.php:1532 include/text.php:1539
+msgid "link to source"
+msgstr "Link zum Originalbeitrag"
 
-#: include/text.php:1812 mod/content.php:623 object/Item.php:431
-#: object/Item.php:444
-msgid "comment"
-msgid_plural "comments"
-msgstr[0] "Kommentar"
-msgstr[1] "Kommentare"
+#: include/event.php:850
+msgid "Export"
+msgstr "Exportieren"
 
-#: include/text.php:1813
-msgid "post"
-msgstr "Beitrag"
+#: include/event.php:851
+msgid "Export calendar as ical"
+msgstr "Kalender als ical exportieren"
 
-#: include/text.php:1981
-msgid "Item filed"
-msgstr "Beitrag abgelegt"
+#: include/event.php:852
+msgid "Export calendar as csv"
+msgstr "Kalender als csv exportieren"
 
-#: include/conversation.php:144 include/like.php:184
-#, php-format
-msgid "%1$s doesn't like %2$s's %3$s"
-msgstr "%1$s mag %2$ss %3$s nicht"
+#: include/nav.php:35 mod/navigation.php:19
+msgid "Nothing new here"
+msgstr "Keine Neuigkeiten"
 
-#: include/conversation.php:147
-#, php-format
-msgid "%1$s attends %2$s's %3$s"
-msgstr "%1$s nimmt an %2$ss %3$s teil."
+#: include/nav.php:39 mod/navigation.php:23
+msgid "Clear notifications"
+msgstr "Bereinige Benachrichtigungen"
 
-#: include/conversation.php:150
-#, php-format
-msgid "%1$s doesn't attend %2$s's %3$s"
-msgstr "%1$s nimmt nicht an %2$ss %3$s teil."
+#: include/nav.php:40 include/text.php:1015
+msgid "@name, !forum, #tags, content"
+msgstr "@name, !forum, #tags, content"
 
-#: include/conversation.php:153
-#, php-format
-msgid "%1$s attends maybe %2$s's %3$s"
-msgstr "%1$s nimmt eventuell an %2$ss %3$s teil."
+#: include/nav.php:78 view/theme/frio/theme.php:246 boot.php:1792
+msgid "Logout"
+msgstr "Abmelden"
 
-#: include/conversation.php:185 mod/dfrn_confirm.php:477
-#, php-format
-msgid "%1$s is now friends with %2$s"
-msgstr "%1$s ist nun mit %2$s befreundet"
+#: include/nav.php:78 view/theme/frio/theme.php:246
+msgid "End this session"
+msgstr "Diese Sitzung beenden"
 
-#: include/conversation.php:219
-#, php-format
-msgid "%1$s poked %2$s"
-msgstr "%1$s stupste %2$s"
+#: include/nav.php:81 include/identity.php:714 mod/contacts.php:637
+#: mod/contacts.php:833 view/theme/frio/theme.php:249
+msgid "Status"
+msgstr "Status"
 
-#: include/conversation.php:239 mod/mood.php:62
-#, php-format
-msgid "%1$s is currently %2$s"
-msgstr "%1$s ist momentan %2$s"
+#: include/nav.php:81 include/nav.php:161 view/theme/frio/theme.php:249
+msgid "Your posts and conversations"
+msgstr "Deine Beiträge und Unterhaltungen"
 
-#: include/conversation.php:278 mod/tagger.php:95
-#, php-format
-msgid "%1$s tagged %2$s's %3$s with %4$s"
-msgstr "%1$s hat %2$ss %3$s mit %4$s getaggt"
+#: include/nav.php:82 include/identity.php:605 include/identity.php:691
+#: include/identity.php:722 mod/profperm.php:104 mod/newmember.php:32
+#: mod/contacts.php:639 mod/contacts.php:841 view/theme/frio/theme.php:250
+msgid "Profile"
+msgstr "Profil"
 
-#: include/conversation.php:303
-msgid "post/item"
-msgstr "Nachricht/Beitrag"
+#: include/nav.php:82 view/theme/frio/theme.php:250
+msgid "Your profile page"
+msgstr "Deine Profilseite"
 
-#: include/conversation.php:304
-#, php-format
-msgid "%1$s marked %2$s's %3$s as favorite"
-msgstr "%1$s hat %2$s\\s %3$s als Favorit markiert"
+#: include/nav.php:83 include/identity.php:730 mod/fbrowser.php:32
+#: view/theme/frio/theme.php:251
+msgid "Photos"
+msgstr "Bilder"
 
-#: include/conversation.php:585 mod/content.php:372 mod/profiles.php:346
-#: mod/photos.php:1607
-msgid "Likes"
-msgstr "Likes"
+#: include/nav.php:83 view/theme/frio/theme.php:251
+msgid "Your photos"
+msgstr "Deine Fotos"
 
-#: include/conversation.php:585 mod/content.php:372 mod/profiles.php:350
-#: mod/photos.php:1607
-msgid "Dislikes"
-msgstr "Dislikes"
+#: include/nav.php:84 include/identity.php:738 include/identity.php:741
+#: view/theme/frio/theme.php:252
+msgid "Videos"
+msgstr "Videos"
 
-#: include/conversation.php:586 include/conversation.php:1481
-#: mod/content.php:373 mod/photos.php:1608
-msgid "Attending"
-msgid_plural "Attending"
-msgstr[0] "Teilnehmend"
-msgstr[1] "Teilnehmend"
+#: include/nav.php:84 view/theme/frio/theme.php:252
+msgid "Your videos"
+msgstr "Deine Videos"
 
-#: include/conversation.php:586 mod/content.php:373 mod/photos.php:1608
-msgid "Not attending"
-msgstr "Nicht teilnehmend"
+#: include/nav.php:85 include/nav.php:149 include/identity.php:750
+#: include/identity.php:761 mod/cal.php:275 mod/events.php:379
+#: view/theme/frio/theme.php:253 view/theme/frio/theme.php:257
+msgid "Events"
+msgstr "Veranstaltungen"
 
-#: include/conversation.php:586 mod/content.php:373 mod/photos.php:1608
-msgid "Might attend"
-msgstr "Eventuell teilnehmend"
+#: include/nav.php:85 view/theme/frio/theme.php:253
+msgid "Your events"
+msgstr "Deine Ereignisse"
 
-#: include/conversation.php:708 mod/content.php:453 mod/content.php:758
-#: mod/photos.php:1681 object/Item.php:133
-msgid "Select"
-msgstr "Auswählen"
+#: include/nav.php:86
+msgid "Personal notes"
+msgstr "Persönliche Notizen"
 
-#: include/conversation.php:709 mod/admin.php:1414 mod/content.php:454
-#: mod/content.php:759 mod/photos.php:1682 mod/contacts.php:808
-#: mod/contacts.php:1016 mod/group.php:171 mod/settings.php:741
-#: object/Item.php:134
-msgid "Delete"
-msgstr "Löschen"
+#: include/nav.php:86
+msgid "Your personal notes"
+msgstr "Deine persönlichen Notizen"
 
-#: include/conversation.php:753 mod/content.php:487 mod/content.php:910
-#: mod/content.php:911 object/Item.php:367 object/Item.php:368
-#, php-format
-msgid "View %s's profile @ %s"
-msgstr "Das Profil von %s auf %s betrachten."
+#: include/nav.php:95 mod/bookmarklet.php:12 boot.php:1793
+msgid "Login"
+msgstr "Anmeldung"
 
-#: include/conversation.php:765 object/Item.php:355
-msgid "Categories:"
-msgstr "Kategorien:"
+#: include/nav.php:95
+msgid "Sign in"
+msgstr "Anmelden"
 
-#: include/conversation.php:766 object/Item.php:356
-msgid "Filed under:"
-msgstr "Abgelegt unter:"
+#: include/nav.php:105 include/nav.php:161
+#: include/NotificationsManager.php:174
+msgid "Home"
+msgstr "Pinnwand"
 
-#: include/conversation.php:773 mod/content.php:497 mod/content.php:923
-#: object/Item.php:381
-#, php-format
-msgid "%s from %s"
-msgstr "%s von %s"
+#: include/nav.php:105
+msgid "Home Page"
+msgstr "Homepage"
 
-#: include/conversation.php:789 mod/content.php:513
-msgid "View in context"
-msgstr "Im Zusammenhang betrachten"
+#: include/nav.php:109 mod/register.php:289 boot.php:1768
+msgid "Register"
+msgstr "Registrieren"
 
-#: include/conversation.php:791 include/conversation.php:1264
-#: mod/content.php:515 mod/content.php:948 mod/photos.php:1570
-#: mod/editpost.php:124 mod/wallmessage.php:156 mod/message.php:356
-#: mod/message.php:548 object/Item.php:406
-msgid "Please wait"
-msgstr "Bitte warten"
+#: include/nav.php:109
+msgid "Create an account"
+msgstr "Nutzerkonto erstellen"
 
-#: include/conversation.php:870
-msgid "remove"
-msgstr "löschen"
+#: include/nav.php:115 mod/help.php:47 view/theme/vier/theme.php:298
+msgid "Help"
+msgstr "Hilfe"
 
-#: include/conversation.php:874
-msgid "Delete Selected Items"
-msgstr "Lösche die markierten Beiträge"
+#: include/nav.php:115
+msgid "Help and documentation"
+msgstr "Hilfe und Dokumentation"
 
-#: include/conversation.php:966
-msgid "Follow Thread"
-msgstr "Folge der Unterhaltung"
+#: include/nav.php:119
+msgid "Apps"
+msgstr "Apps"
 
-#: include/conversation.php:967 include/Contact.php:404
-msgid "View Status"
-msgstr "Pinnwand anschauen"
+#: include/nav.php:119
+msgid "Addon applications, utilities, games"
+msgstr "Addon Anwendungen, Dienstprogramme, Spiele"
 
-#: include/conversation.php:968 include/conversation.php:984
-#: include/Contact.php:347 include/Contact.php:360 include/Contact.php:405
-#: mod/dirfind.php:203 mod/directory.php:155 mod/match.php:71
-#: mod/allfriends.php:65 mod/suggest.php:82
-msgid "View Profile"
-msgstr "Profil anschauen"
+#: include/nav.php:123 include/text.php:1012 mod/search.php:149
+msgid "Search"
+msgstr "Suche"
 
-#: include/conversation.php:969 include/Contact.php:406
-msgid "View Photos"
-msgstr "Bilder anschauen"
+#: include/nav.php:123
+msgid "Search site content"
+msgstr "Inhalt der Seite durchsuchen"
 
-#: include/conversation.php:970 include/Contact.php:407
-msgid "Network Posts"
-msgstr "Netzwerkbeiträge"
+#: include/nav.php:126 include/text.php:1020
+msgid "Full Text"
+msgstr "Volltext"
 
-#: include/conversation.php:971 include/Contact.php:408
-msgid "View Contact"
-msgstr "Kontakt anzeigen"
+#: include/nav.php:127 include/text.php:1021
+msgid "Tags"
+msgstr "Tags"
 
-#: include/conversation.php:972 include/Contact.php:410
-msgid "Send PM"
-msgstr "Private Nachricht senden"
+#: include/nav.php:128 include/nav.php:192 include/identity.php:783
+#: include/identity.php:786 include/text.php:1022 mod/contacts.php:792
+#: mod/contacts.php:853 mod/viewcontacts.php:116 view/theme/frio/theme.php:260
+msgid "Contacts"
+msgstr "Kontakte"
 
-#: include/conversation.php:976 include/Contact.php:411
-msgid "Poke"
-msgstr "Anstupsen"
+#: include/nav.php:143 include/nav.php:145 mod/community.php:36
+msgid "Community"
+msgstr "Gemeinschaft"
 
-#: include/conversation.php:1097
-#, php-format
-msgid "%s likes this."
-msgstr "%s mag das."
+#: include/nav.php:143
+msgid "Conversations on this site"
+msgstr "Unterhaltungen auf dieser Seite"
 
-#: include/conversation.php:1100
-#, php-format
-msgid "%s doesn't like this."
-msgstr "%s mag das nicht."
+#: include/nav.php:145
+msgid "Conversations on the network"
+msgstr "Unterhaltungen im Netzwerk"
 
-#: include/conversation.php:1103
-#, php-format
-msgid "%s attends."
-msgstr "%s nimmt teil."
+#: include/nav.php:149 include/identity.php:753 include/identity.php:764
+#: view/theme/frio/theme.php:257
+msgid "Events and Calendar"
+msgstr "Ereignisse und Kalender"
 
-#: include/conversation.php:1106
-#, php-format
-msgid "%s doesn't attend."
-msgstr "%s nimmt nicht teil."
+#: include/nav.php:152
+msgid "Directory"
+msgstr "Verzeichnis"
 
-#: include/conversation.php:1109
-#, php-format
-msgid "%s attends maybe."
-msgstr "%s nimmt eventuell teil."
+#: include/nav.php:152
+msgid "People directory"
+msgstr "Nutzerverzeichnis"
 
-#: include/conversation.php:1119
-msgid "and"
-msgstr "und"
+#: include/nav.php:154
+msgid "Information"
+msgstr "Information"
 
-#: include/conversation.php:1125
-#, php-format
-msgid ", and %d other people"
-msgstr " und %d andere"
+#: include/nav.php:154
+msgid "Information about this friendica instance"
+msgstr "Informationen zu dieser Friendica Instanz"
 
-#: include/conversation.php:1134
-#, php-format
-msgid "<span  %1$s>%2$d people</span> like this"
-msgstr "<span  %1$s>%2$d Personen</span> mögen das"
+#: include/nav.php:158 include/NotificationsManager.php:160 mod/admin.php:411
+#: view/theme/frio/theme.php:256
+msgid "Network"
+msgstr "Netzwerk"
 
-#: include/conversation.php:1135
-#, php-format
-msgid "%s like this."
-msgstr "%s mögen das."
+#: include/nav.php:158 view/theme/frio/theme.php:256
+msgid "Conversations from your friends"
+msgstr "Unterhaltungen Deiner Kontakte"
 
-#: include/conversation.php:1138
-#, php-format
-msgid "<span  %1$s>%2$d people</span> don't like this"
-msgstr "<span  %1$s>%2$d Personen</span> mögen das nicht"
+#: include/nav.php:159
+msgid "Network Reset"
+msgstr "Netzwerk zurücksetzen"
 
-#: include/conversation.php:1139
-#, php-format
-msgid "%s don't like this."
-msgstr "%s mögen dies nicht."
+#: include/nav.php:159
+msgid "Load Network page with no filters"
+msgstr "Netzwerk-Seite ohne Filter laden"
 
-#: include/conversation.php:1142
-#, php-format
-msgid "<span  %1$s>%2$d people</span> attend"
-msgstr "<span %1$s>%2$d Personen</span> nehmen teil"
+#: include/nav.php:166 include/NotificationsManager.php:181
+msgid "Introductions"
+msgstr "Kontaktanfragen"
 
-#: include/conversation.php:1143
-#, php-format
-msgid "%s attend."
-msgstr "%s nehmen teil."
+#: include/nav.php:166
+msgid "Friend Requests"
+msgstr "Kontaktanfragen"
 
-#: include/conversation.php:1146
-#, php-format
-msgid "<span  %1$s>%2$d people</span> don't attend"
-msgstr "<span %1$s>%2$d Personen</span> nehmen nicht teil"
+#: include/nav.php:169 mod/notifications.php:96
+msgid "Notifications"
+msgstr "Benachrichtigungen"
 
-#: include/conversation.php:1147
-#, php-format
-msgid "%s don't attend."
-msgstr "%s nehmen nicht teil."
+#: include/nav.php:170
+msgid "See all notifications"
+msgstr "Alle Benachrichtigungen anzeigen"
 
-#: include/conversation.php:1150
-#, php-format
-msgid "<span  %1$s>%2$d people</span> attend maybe"
-msgstr "<span %1$s>%2$d Personen</span> nehmen eventuell teil"
+#: include/nav.php:171 mod/settings.php:902
+msgid "Mark as seen"
+msgstr "Als gelesen markieren"
 
-#: include/conversation.php:1151
-#, php-format
-msgid "%s anttend maybe."
-msgstr "%s  nehmen vielleicht teil."
+#: include/nav.php:171
+msgid "Mark all system notifications seen"
+msgstr "Markiere alle Systembenachrichtigungen als gelesen"
 
-#: include/conversation.php:1190 include/conversation.php:1208
-msgid "Visible to <strong>everybody</strong>"
-msgstr "Für <strong>jedermann</strong> sichtbar"
+#: include/nav.php:175 mod/message.php:190 view/theme/frio/theme.php:258
+msgid "Messages"
+msgstr "Nachrichten"
 
-#: include/conversation.php:1191 include/conversation.php:1209
-#: mod/wallmessage.php:127 mod/wallmessage.php:135 mod/message.php:291
-#: mod/message.php:299 mod/message.php:442 mod/message.php:450
-msgid "Please enter a link URL:"
-msgstr "Bitte gib die URL des Links ein:"
+#: include/nav.php:175 view/theme/frio/theme.php:258
+msgid "Private mail"
+msgstr "Private E-Mail"
 
-#: include/conversation.php:1192 include/conversation.php:1210
-msgid "Please enter a video link/URL:"
-msgstr "Bitte Link/URL zum Video einfügen:"
+#: include/nav.php:176
+msgid "Inbox"
+msgstr "Eingang"
 
-#: include/conversation.php:1193 include/conversation.php:1211
-msgid "Please enter an audio link/URL:"
-msgstr "Bitte Link/URL zum Audio einfügen:"
+#: include/nav.php:177
+msgid "Outbox"
+msgstr "Ausgang"
 
-#: include/conversation.php:1194 include/conversation.php:1212
-msgid "Tag term:"
-msgstr "Tag:"
+#: include/nav.php:178 mod/message.php:16
+msgid "New Message"
+msgstr "Neue Nachricht"
 
-#: include/conversation.php:1195 include/conversation.php:1213
-#: mod/filer.php:30
-msgid "Save to Folder:"
-msgstr "In diesem Ordner speichern:"
+#: include/nav.php:181
+msgid "Manage"
+msgstr "Verwalten"
 
-#: include/conversation.php:1196 include/conversation.php:1214
-msgid "Where are you right now?"
-msgstr "Wo hältst Du Dich jetzt gerade auf?"
+#: include/nav.php:181
+msgid "Manage other pages"
+msgstr "Andere Seiten verwalten"
 
-#: include/conversation.php:1197
-msgid "Delete item(s)?"
-msgstr "Einträge löschen?"
+#: include/nav.php:184 mod/settings.php:81
+msgid "Delegations"
+msgstr "Delegationen"
 
-#: include/conversation.php:1245 mod/photos.php:1569
-msgid "Share"
-msgstr "Teilen"
+#: include/nav.php:184 mod/delegate.php:130
+msgid "Delegate Page Management"
+msgstr "Delegiere das Management für die Seite"
 
-#: include/conversation.php:1246 mod/editpost.php:110 mod/wallmessage.php:154
-#: mod/message.php:354 mod/message.php:545
-msgid "Upload photo"
-msgstr "Foto hochladen"
+#: include/nav.php:186 mod/newmember.php:22 mod/settings.php:111
+#: mod/admin.php:1524 mod/admin.php:1782 view/theme/frio/theme.php:259
+msgid "Settings"
+msgstr "Einstellungen"
 
-#: include/conversation.php:1247 mod/editpost.php:111
-msgid "upload photo"
-msgstr "Bild hochladen"
+#: include/nav.php:186 view/theme/frio/theme.php:259
+msgid "Account settings"
+msgstr "Kontoeinstellungen"
 
-#: include/conversation.php:1248 mod/editpost.php:112
-msgid "Attach file"
-msgstr "Datei anhängen"
+#: include/nav.php:189 include/identity.php:282
+msgid "Profiles"
+msgstr "Profile"
 
-#: include/conversation.php:1249 mod/editpost.php:113
-msgid "attach file"
-msgstr "Datei anhängen"
-
-#: include/conversation.php:1250 mod/editpost.php:114 mod/wallmessage.php:155
-#: mod/message.php:355 mod/message.php:546
-msgid "Insert web link"
-msgstr "Einen Link einfügen"
+#: include/nav.php:189
+msgid "Manage/Edit Profiles"
+msgstr "Profile Verwalten/Editieren"
 
-#: include/conversation.php:1251 mod/editpost.php:115
-msgid "web link"
-msgstr "Weblink"
+#: include/nav.php:192 view/theme/frio/theme.php:260
+msgid "Manage/edit friends and contacts"
+msgstr " Kontakte verwalten/editieren"
 
-#: include/conversation.php:1252 mod/editpost.php:116
-msgid "Insert video link"
-msgstr "Video-Adresse einfügen"
+#: include/nav.php:197 mod/admin.php:186
+msgid "Admin"
+msgstr "Administration"
 
-#: include/conversation.php:1253 mod/editpost.php:117
-msgid "video link"
-msgstr "Video-Link"
+#: include/nav.php:197
+msgid "Site setup and configuration"
+msgstr "Einstellungen der Seite und Konfiguration"
 
-#: include/conversation.php:1254 mod/editpost.php:118
-msgid "Insert audio link"
-msgstr "Audio-Adresse einfügen"
+#: include/nav.php:200
+msgid "Navigation"
+msgstr "Navigation"
 
-#: include/conversation.php:1255 mod/editpost.php:119
-msgid "audio link"
-msgstr "Audio-Link"
+#: include/nav.php:200
+msgid "Site map"
+msgstr "Sitemap"
 
-#: include/conversation.php:1256 mod/editpost.php:120
-msgid "Set your location"
-msgstr "Deinen Standort festlegen"
+#: include/photos.php:53 mod/fbrowser.php:41 mod/fbrowser.php:62
+#: mod/photos.php:180 mod/photos.php:1086 mod/photos.php:1211
+#: mod/photos.php:1232 mod/photos.php:1795 mod/photos.php:1807
+msgid "Contact Photos"
+msgstr "Kontaktbilder"
 
-#: include/conversation.php:1257 mod/editpost.php:121
-msgid "set location"
-msgstr "Ort setzen"
+#: include/security.php:22
+msgid "Welcome "
+msgstr "Willkommen "
 
-#: include/conversation.php:1258 mod/editpost.php:122
-msgid "Clear browser location"
-msgstr "Browser-Standort leeren"
+#: include/security.php:23
+msgid "Please upload a profile photo."
+msgstr "Bitte lade ein Profilbild hoch."
 
-#: include/conversation.php:1259 mod/editpost.php:123
-msgid "clear location"
-msgstr "Ort löschen"
+#: include/security.php:26
+msgid "Welcome back "
+msgstr "Willkommen zurück "
 
-#: include/conversation.php:1261 mod/editpost.php:137
-msgid "Set title"
-msgstr "Titel setzen"
+#: include/security.php:373
+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/conversation.php:1263 mod/editpost.php:139
-msgid "Categories (comma-separated list)"
-msgstr "Kategorien (kommasepariert)"
+#: include/NotificationsManager.php:153
+msgid "System"
+msgstr "System"
 
-#: include/conversation.php:1265 mod/editpost.php:125
-msgid "Permission settings"
-msgstr "Berechtigungseinstellungen"
+#: include/NotificationsManager.php:167 mod/profiles.php:703
+#: mod/network.php:845
+msgid "Personal"
+msgstr "Persönlich"
 
-#: include/conversation.php:1266 mod/editpost.php:154
-msgid "permissions"
-msgstr "Zugriffsrechte"
+#: include/NotificationsManager.php:234 include/NotificationsManager.php:244
+#, php-format
+msgid "%s commented on %s's post"
+msgstr "%s hat %ss Beitrag kommentiert"
 
-#: include/conversation.php:1274 mod/editpost.php:134
-msgid "Public post"
-msgstr "Öffentlicher Beitrag"
+#: include/NotificationsManager.php:243
+#, php-format
+msgid "%s created a new post"
+msgstr "%s hat einen neuen Beitrag erstellt"
 
-#: include/conversation.php:1279 mod/events.php:504 mod/content.php:737
-#: mod/photos.php:1591 mod/photos.php:1639 mod/photos.php:1725
-#: mod/editpost.php:145 object/Item.php:729
-msgid "Preview"
-msgstr "Vorschau"
+#: include/NotificationsManager.php:256
+#, php-format
+msgid "%s liked %s's post"
+msgstr "%s mag %ss Beitrag"
 
-#: include/conversation.php:1289
-msgid "Post to Groups"
-msgstr "Poste an Gruppe"
+#: include/NotificationsManager.php:267
+#, php-format
+msgid "%s disliked %s's post"
+msgstr "%s mag %ss Beitrag nicht"
 
-#: include/conversation.php:1290
-msgid "Post to Contacts"
-msgstr "Poste an Kontakte"
+#: include/NotificationsManager.php:278
+#, php-format
+msgid "%s is attending %s's event"
+msgstr "%s nimmt an %s's Event teil"
 
-#: include/conversation.php:1291
-msgid "Private post"
-msgstr "Privater Beitrag"
+#: include/NotificationsManager.php:289
+#, php-format
+msgid "%s is not attending %s's event"
+msgstr "%s nimmt nicht an %s's Event teil"
 
-#: include/conversation.php:1296 include/identity.php:256 mod/editpost.php:152
-msgid "Message"
-msgstr "Nachricht"
+#: include/NotificationsManager.php:300
+#, php-format
+msgid "%s may attend %s's event"
+msgstr "%s nimmt eventuell an %s's Event teil"
 
-#: include/conversation.php:1297 mod/editpost.php:153
-msgid "Browser"
-msgstr "Browser"
+#: include/NotificationsManager.php:315
+#, php-format
+msgid "%s is now friends with %s"
+msgstr "%s ist jetzt mit %s befreundet"
 
-#: include/conversation.php:1453
-msgid "View all"
-msgstr "Zeige alle"
+#: include/NotificationsManager.php:748
+msgid "Friend Suggestion"
+msgstr "Kontaktvorschlag"
 
-#: include/conversation.php:1475
-msgid "Like"
-msgid_plural "Likes"
-msgstr[0] "mag ich"
-msgstr[1] "Mag ich"
+#: include/NotificationsManager.php:781
+msgid "Friend/Connect Request"
+msgstr "Kontakt-/Freundschaftsanfrage"
 
-#: include/conversation.php:1478
-msgid "Dislike"
-msgid_plural "Dislikes"
-msgstr[0] "mag ich nicht"
-msgstr[1] "Mag ich nicht"
+#: include/NotificationsManager.php:781
+msgid "New Follower"
+msgstr "Neuer Bewunderer"
 
-#: include/conversation.php:1484
-msgid "Not Attending"
-msgid_plural "Not Attending"
-msgstr[0] "Nicht teilnehmend "
-msgstr[1] "Nicht teilnehmend"
+#: include/dbstructure.php:26
+#, php-format
+msgid ""
+"\n"
+"\t\t\tThe friendica developers released update %s recently,\n"
+"\t\t\tbut when I tried to install it, something went terribly wrong.\n"
+"\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n"
+"\t\t\tfriendica developer if you can not help me on your own. My database might be invalid."
+msgstr "\nDie Friendica-Entwickler haben vor kurzem das Update %s veröffentlicht, aber bei der Installation ging etwas schrecklich schief.\n\nDas Problem sollte so schnell wie möglich gelöst werden, aber ich schaffe es nicht alleine. Bitte kontaktiere einen Friendica-Entwickler falls Du mir nicht alleine helfen kannst. Meine Datenbank könnte ungültig sein."
 
-#: include/photos.php:53 mod/fbrowser.php:41 mod/fbrowser.php:62
-#: mod/photos.php:180 mod/photos.php:1086 mod/photos.php:1211
-#: mod/photos.php:1232 mod/photos.php:1795 mod/photos.php:1807
-msgid "Contact Photos"
-msgstr "Kontaktbilder"
+#: include/dbstructure.php:31
+#, php-format
+msgid ""
+"The error message is\n"
+"[pre]%s[/pre]"
+msgstr "Die Fehlermeldung lautet\n[pre]%s[/pre]"
 
-#: include/identity.php:42
-msgid "Requested account is not available."
-msgstr "Das angefragte Profil ist nicht vorhanden."
+#: include/dbstructure.php:183
+msgid "Errors encountered creating database tables."
+msgstr "Fehler aufgetreten während der Erzeugung der Datenbanktabellen."
 
-#: include/identity.php:51 mod/profile.php:21
-msgid "Requested profile is not available."
-msgstr "Das angefragte Profil ist nicht vorhanden."
+#: include/dbstructure.php:260
+msgid "Errors encountered performing database changes."
+msgstr "Es sind Fehler beim Bearbeiten der Datenbank aufgetreten."
 
-#: include/identity.php:95 include/identity.php:311 include/identity.php:688
-msgid "Edit profile"
-msgstr "Profil bearbeiten"
+#: include/delivery.php:446
+msgid "(no subject)"
+msgstr "(kein Betreff)"
 
-#: include/identity.php:251
-msgid "Atom feed"
-msgstr "Atom-Feed"
+#: include/diaspora.php:1958
+msgid "Sharing notification from Diaspora network"
+msgstr "Freigabe-Benachrichtigung von Diaspora"
 
-#: include/identity.php:282 include/nav.php:189
-msgid "Profiles"
-msgstr "Profile"
+#: include/diaspora.php:2864
+msgid "Attachments:"
+msgstr "Anhänge:"
 
-#: include/identity.php:282
-msgid "Manage/edit profiles"
-msgstr "Profile verwalten/editieren"
+#: include/network.php:595
+msgid "view full size"
+msgstr "Volle Größe anzeigen"
 
-#: include/identity.php:287 include/identity.php:313 mod/profiles.php:795
-msgid "Change profile photo"
-msgstr "Profilbild ändern"
+#: include/Contact.php:340 include/Contact.php:353 include/Contact.php:398
+#: include/conversation.php:968 include/conversation.php:984
+#: mod/allfriends.php:65 mod/directory.php:155 mod/dirfind.php:203
+#: mod/match.php:71 mod/suggest.php:82
+msgid "View Profile"
+msgstr "Profil anschauen"
 
-#: include/identity.php:288 mod/profiles.php:796
-msgid "Create New Profile"
-msgstr "Neues Profil anlegen"
+#: include/Contact.php:397 include/conversation.php:967
+msgid "View Status"
+msgstr "Pinnwand anschauen"
 
-#: include/identity.php:298 mod/profiles.php:785
-msgid "Profile Image"
-msgstr "Profilbild"
+#: include/Contact.php:399 include/conversation.php:969
+msgid "View Photos"
+msgstr "Bilder anschauen"
 
-#: include/identity.php:301 mod/profiles.php:787
-msgid "visible to everybody"
-msgstr "sichtbar für jeden"
+#: include/Contact.php:400 include/conversation.php:970
+msgid "Network Posts"
+msgstr "Netzwerkbeiträge"
 
-#: include/identity.php:302 mod/profiles.php:691 mod/profiles.php:788
-msgid "Edit visibility"
-msgstr "Sichtbarkeit bearbeiten"
+#: include/Contact.php:401 include/conversation.php:971
+msgid "View Contact"
+msgstr "Kontakt anzeigen"
 
-#: include/identity.php:330 include/identity.php:616 mod/notifications.php:238
-#: mod/directory.php:139
-msgid "Gender:"
-msgstr "Geschlecht:"
+#: include/Contact.php:402
+msgid "Drop Contact"
+msgstr "Kontakt löschen"
 
-#: include/identity.php:333 include/identity.php:636 mod/directory.php:141
-msgid "Status:"
-msgstr "Status:"
+#: include/Contact.php:403 include/conversation.php:972
+msgid "Send PM"
+msgstr "Private Nachricht senden"
 
-#: include/identity.php:335 include/identity.php:647 mod/directory.php:143
-msgid "Homepage:"
-msgstr "Homepage:"
+#: include/Contact.php:404 include/conversation.php:976
+msgid "Poke"
+msgstr "Anstupsen"
 
-#: include/identity.php:337 include/identity.php:657 mod/notifications.php:234
-#: mod/directory.php:145 mod/contacts.php:632
-msgid "About:"
-msgstr "Über:"
+#: include/Contact.php:775
+msgid "Organisation"
+msgstr "Organisation"
 
-#: include/identity.php:339 mod/contacts.php:630
-msgid "XMPP:"
-msgstr "XMPP:"
+#: include/Contact.php:778
+msgid "News"
+msgstr "Nachrichten"
 
-#: include/identity.php:422 mod/notifications.php:246 mod/contacts.php:50
-msgid "Network:"
-msgstr "Netzwerk:"
+#: include/Contact.php:781
+msgid "Forum"
+msgstr "Forum"
 
-#: include/identity.php:451 include/identity.php:535
-msgid "g A l F d"
-msgstr "l, d. F G \\U\\h\\r"
+#: include/api.php:1018
+#, 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/identity.php:452 include/identity.php:536
-msgid "F d"
-msgstr "d. F"
+#: include/api.php:1038
+#, 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/identity.php:497 include/identity.php:582
-msgid "[today]"
-msgstr "[heute]"
+#: include/api.php:1059
+#, 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/identity.php:509
-msgid "Birthday Reminders"
-msgstr "Geburtstagserinnerungen"
+#: include/bbcode.php:350 include/bbcode.php:1057 include/bbcode.php:1058
+msgid "Image/photo"
+msgstr "Bild/Foto"
 
-#: include/identity.php:510
-msgid "Birthdays this week:"
-msgstr "Geburtstage diese Woche:"
+#: include/bbcode.php:467
+#, 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/identity.php:569
-msgid "[No description]"
-msgstr "[keine Beschreibung]"
+#: include/bbcode.php:1017 include/bbcode.php:1037
+msgid "$1 wrote:"
+msgstr "$1 hat geschrieben:"
 
-#: include/identity.php:593
-msgid "Event Reminders"
-msgstr "Veranstaltungserinnerungen"
+#: include/bbcode.php:1066 include/bbcode.php:1067
+msgid "Encrypted content"
+msgstr "Verschlüsselter Inhalt"
 
-#: include/identity.php:594
-msgid "Events this week:"
-msgstr "Veranstaltungen diese Woche"
+#: include/bbcode.php:1169
+msgid "Invalid source protocol"
+msgstr "Ungültiges Quell-Protokoll"
 
-#: include/identity.php:605 include/identity.php:691 include/identity.php:722
-#: include/nav.php:82 mod/profperm.php:104 mod/contacts.php:639
-#: mod/contacts.php:841 mod/newmember.php:32 view/theme/frio/theme.php:250
-msgid "Profile"
-msgstr "Profil"
+#: include/bbcode.php:1179
+msgid "Invalid link protocol"
+msgstr "Ungültiges Link-Protokoll"
 
-#: include/identity.php:614 mod/settings.php:1279
-msgid "Full Name:"
-msgstr "Kompletter Name:"
+#: include/conversation.php:147
+#, php-format
+msgid "%1$s attends %2$s's %3$s"
+msgstr "%1$s nimmt an %2$ss %3$s teil."
 
-#: include/identity.php:621
-msgid "j F, Y"
-msgstr "j F, Y"
+#: include/conversation.php:150
+#, php-format
+msgid "%1$s doesn't attend %2$s's %3$s"
+msgstr "%1$s nimmt nicht an %2$ss %3$s teil."
 
-#: include/identity.php:622
-msgid "j F"
-msgstr "j F"
+#: include/conversation.php:153
+#, php-format
+msgid "%1$s attends maybe %2$s's %3$s"
+msgstr "%1$s nimmt eventuell an %2$ss %3$s teil."
 
-#: include/identity.php:633
-msgid "Age:"
-msgstr "Alter:"
+#: include/conversation.php:185 mod/dfrn_confirm.php:477
+#, php-format
+msgid "%1$s is now friends with %2$s"
+msgstr "%1$s ist nun mit %2$s befreundet"
 
-#: include/identity.php:642
+#: include/conversation.php:219
 #, php-format
-msgid "for %1$d %2$s"
-msgstr "für %1$d %2$s"
+msgid "%1$s poked %2$s"
+msgstr "%1$s stupste %2$s"
 
-#: include/identity.php:645 mod/profiles.php:710
-msgid "Sexual Preference:"
-msgstr "Sexuelle Vorlieben:"
+#: include/conversation.php:239 mod/mood.php:62
+#, php-format
+msgid "%1$s is currently %2$s"
+msgstr "%1$s ist momentan %2$s"
 
-#: include/identity.php:649 mod/profiles.php:737
-msgid "Hometown:"
-msgstr "Heimatort:"
+#: include/conversation.php:278 mod/tagger.php:95
+#, php-format
+msgid "%1$s tagged %2$s's %3$s with %4$s"
+msgstr "%1$s hat %2$ss %3$s mit %4$s getaggt"
 
-#: include/identity.php:651 mod/notifications.php:236 mod/contacts.php:634
-#: mod/follow.php:134
-msgid "Tags:"
-msgstr "Tags:"
+#: include/conversation.php:303
+msgid "post/item"
+msgstr "Nachricht/Beitrag"
 
-#: include/identity.php:653 mod/profiles.php:738
-msgid "Political Views:"
-msgstr "Politische Ansichten:"
+#: include/conversation.php:304
+#, php-format
+msgid "%1$s marked %2$s's %3$s as favorite"
+msgstr "%1$s hat %2$s\\s %3$s als Favorit markiert"
 
-#: include/identity.php:655
-msgid "Religion:"
-msgstr "Religion:"
+#: include/conversation.php:585 mod/content.php:372 mod/profiles.php:346
+#: mod/photos.php:1607
+msgid "Likes"
+msgstr "Likes"
 
-#: include/identity.php:659
-msgid "Hobbies/Interests:"
-msgstr "Hobbies/Interessen:"
+#: include/conversation.php:585 mod/content.php:372 mod/profiles.php:350
+#: mod/photos.php:1607
+msgid "Dislikes"
+msgstr "Dislikes"
 
-#: include/identity.php:661 mod/profiles.php:742
-msgid "Likes:"
-msgstr "Likes:"
+#: include/conversation.php:586 include/conversation.php:1481
+#: mod/content.php:373 mod/photos.php:1608
+msgid "Attending"
+msgid_plural "Attending"
+msgstr[0] "Teilnehmend"
+msgstr[1] "Teilnehmend"
 
-#: include/identity.php:663 mod/profiles.php:743
-msgid "Dislikes:"
-msgstr "Dislikes:"
+#: include/conversation.php:586 mod/content.php:373 mod/photos.php:1608
+msgid "Not attending"
+msgstr "Nicht teilnehmend"
 
-#: include/identity.php:666
-msgid "Contact information and Social Networks:"
-msgstr "Kontaktinformationen und Soziale Netzwerke:"
+#: include/conversation.php:586 mod/content.php:373 mod/photos.php:1608
+msgid "Might attend"
+msgstr "Eventuell teilnehmend"
 
-#: include/identity.php:668
-msgid "Musical interests:"
-msgstr "Musikalische Interessen:"
+#: include/conversation.php:708 mod/content.php:453 mod/content.php:758
+#: mod/photos.php:1681 object/Item.php:133
+msgid "Select"
+msgstr "Auswählen"
 
-#: include/identity.php:670
-msgid "Books, literature:"
-msgstr "Literatur/Bücher:"
+#: include/conversation.php:709 mod/group.php:171 mod/content.php:454
+#: mod/content.php:759 mod/photos.php:1682 mod/settings.php:741
+#: mod/admin.php:1414 mod/contacts.php:808 mod/contacts.php:1007
+#: object/Item.php:134
+msgid "Delete"
+msgstr "Löschen"
 
-#: include/identity.php:672
-msgid "Television:"
-msgstr "Fernsehen:"
+#: include/conversation.php:753 mod/content.php:487 mod/content.php:910
+#: mod/content.php:911 object/Item.php:367 object/Item.php:368
+#, php-format
+msgid "View %s's profile @ %s"
+msgstr "Das Profil von %s auf %s betrachten."
 
-#: include/identity.php:674
-msgid "Film/dance/culture/entertainment:"
-msgstr "Filme/Tänze/Kultur/Unterhaltung:"
+#: include/conversation.php:765 object/Item.php:355
+msgid "Categories:"
+msgstr "Kategorien:"
 
-#: include/identity.php:676
-msgid "Love/Romance:"
-msgstr "Liebesleben:"
+#: include/conversation.php:766 object/Item.php:356
+msgid "Filed under:"
+msgstr "Abgelegt unter:"
 
-#: include/identity.php:678
-msgid "Work/employment:"
-msgstr "Arbeit/Beschäftigung:"
+#: include/conversation.php:773 mod/content.php:497 mod/content.php:923
+#: object/Item.php:381
+#, php-format
+msgid "%s from %s"
+msgstr "%s von %s"
 
-#: include/identity.php:680
-msgid "School/education:"
-msgstr "Schule/Ausbildung:"
+#: include/conversation.php:789 mod/content.php:513
+msgid "View in context"
+msgstr "Im Zusammenhang betrachten"
 
-#: include/identity.php:684
-msgid "Forums:"
-msgstr "Foren:"
+#: include/conversation.php:791 include/conversation.php:1264
+#: mod/editpost.php:124 mod/wallmessage.php:156 mod/message.php:356
+#: mod/message.php:548 mod/content.php:515 mod/content.php:948
+#: mod/photos.php:1570 object/Item.php:406
+msgid "Please wait"
+msgstr "Bitte warten"
 
-#: include/identity.php:692 mod/events.php:507
-msgid "Basic"
-msgstr "Allgemein"
+#: include/conversation.php:870
+msgid "remove"
+msgstr "löschen"
 
-#: include/identity.php:693 mod/events.php:508 mod/admin.php:959
-#: mod/contacts.php:870
-msgid "Advanced"
-msgstr "Erweitert"
+#: include/conversation.php:874
+msgid "Delete Selected Items"
+msgstr "Lösche die markierten Beiträge"
 
-#: include/identity.php:714 include/nav.php:81 mod/contacts.php:637
-#: mod/contacts.php:833 view/theme/frio/theme.php:249
-msgid "Status"
-msgstr "Status"
+#: include/conversation.php:966
+msgid "Follow Thread"
+msgstr "Folge der Unterhaltung"
 
-#: include/identity.php:717 mod/contacts.php:836 mod/follow.php:143
-msgid "Status Messages and Posts"
-msgstr "Statusnachrichten und Beiträge"
+#: include/conversation.php:1097
+#, php-format
+msgid "%s likes this."
+msgstr "%s mag das."
 
-#: include/identity.php:725 mod/contacts.php:844
-msgid "Profile Details"
-msgstr "Profildetails"
+#: include/conversation.php:1100
+#, php-format
+msgid "%s doesn't like this."
+msgstr "%s mag das nicht."
 
-#: include/identity.php:730 include/nav.php:83 mod/fbrowser.php:32
-#: view/theme/frio/theme.php:251
-msgid "Photos"
-msgstr "Bilder"
+#: include/conversation.php:1103
+#, php-format
+msgid "%s attends."
+msgstr "%s nimmt teil."
 
-#: include/identity.php:733 mod/photos.php:87
-msgid "Photo Albums"
-msgstr "Fotoalben"
+#: include/conversation.php:1106
+#, php-format
+msgid "%s doesn't attend."
+msgstr "%s nimmt nicht teil."
 
-#: include/identity.php:738 include/identity.php:741 include/nav.php:84
-#: view/theme/frio/theme.php:252
-msgid "Videos"
-msgstr "Videos"
+#: include/conversation.php:1109
+#, php-format
+msgid "%s attends maybe."
+msgstr "%s nimmt eventuell teil."
 
-#: include/identity.php:750 include/identity.php:761 include/nav.php:85
-#: include/nav.php:149 mod/events.php:379 mod/cal.php:275
-#: view/theme/frio/theme.php:253 view/theme/frio/theme.php:257
-msgid "Events"
-msgstr "Veranstaltungen"
+#: include/conversation.php:1119
+msgid "and"
+msgstr "und"
 
-#: include/identity.php:753 include/identity.php:764 include/nav.php:149
-#: view/theme/frio/theme.php:257
-msgid "Events and Calendar"
-msgstr "Ereignisse und Kalender"
+#: include/conversation.php:1125
+#, php-format
+msgid ", and %d other people"
+msgstr " und %d andere"
 
-#: include/identity.php:772 mod/notes.php:46
-msgid "Personal Notes"
-msgstr "Persönliche Notizen"
+#: include/conversation.php:1134
+#, php-format
+msgid "<span  %1$s>%2$d people</span> like this"
+msgstr "<span  %1$s>%2$d Personen</span> mögen das"
 
-#: include/identity.php:775
-msgid "Only You Can See This"
-msgstr "Nur Du kannst das sehen"
+#: include/conversation.php:1135
+#, php-format
+msgid "%s like this."
+msgstr "%s mögen das."
 
-#: include/follow.php:77 mod/dfrn_request.php:509
-msgid "Disallowed profile URL."
-msgstr "Nicht erlaubte Profil-URL."
+#: include/conversation.php:1138
+#, php-format
+msgid "<span  %1$s>%2$d people</span> don't like this"
+msgstr "<span  %1$s>%2$d Personen</span> mögen das nicht"
 
-#: include/follow.php:82
-msgid "Connect URL missing."
-msgstr "Connect-URL fehlt"
+#: include/conversation.php:1139
+#, php-format
+msgid "%s don't like this."
+msgstr "%s mögen dies nicht."
 
-#: include/follow.php:109
-msgid ""
-"This site is not configured to allow communications with other networks."
-msgstr "Diese Seite ist so konfiguriert, dass keine Kommunikation mit anderen Netzwerken erfolgen kann."
+#: include/conversation.php:1142
+#, php-format
+msgid "<span  %1$s>%2$d people</span> attend"
+msgstr "<span %1$s>%2$d Personen</span> nehmen teil"
 
-#: include/follow.php:110 include/follow.php:130
-msgid "No compatible communication protocols or feeds were discovered."
-msgstr "Es wurden keine kompatiblen Kommunikationsprotokolle oder Feeds gefunden."
+#: include/conversation.php:1143
+#, php-format
+msgid "%s attend."
+msgstr "%s nehmen teil."
 
-#: include/follow.php:128
-msgid "The profile address specified does not provide adequate information."
-msgstr "Die angegebene Profiladresse liefert unzureichende Informationen."
+#: include/conversation.php:1146
+#, php-format
+msgid "<span  %1$s>%2$d people</span> don't attend"
+msgstr "<span %1$s>%2$d Personen</span> nehmen nicht teil"
 
-#: include/follow.php:132
-msgid "An author or name was not found."
-msgstr "Es wurde kein Autor oder Name gefunden."
+#: include/conversation.php:1147
+#, php-format
+msgid "%s don't attend."
+msgstr "%s nehmen nicht teil."
 
-#: include/follow.php:134
-msgid "No browser URL could be matched to this address."
-msgstr "Zu dieser Adresse konnte keine passende Browser URL gefunden werden."
+#: include/conversation.php:1150
+#, php-format
+msgid "<span  %1$s>%2$d people</span> attend maybe"
+msgstr "<span %1$s>%2$d Personen</span> nehmen eventuell teil"
 
-#: include/follow.php:136
-msgid ""
-"Unable to match @-style Identity Address with a known protocol or email "
-"contact."
-msgstr "Konnte die @-Adresse mit keinem der bekannten Protokolle oder Email-Kontakte abgleichen."
+#: include/conversation.php:1151
+#, php-format
+msgid "%s anttend maybe."
+msgstr "%s  nehmen vielleicht teil."
 
-#: include/follow.php:137
-msgid "Use mailto: in front of address to force email check."
-msgstr "Verwende mailto: vor der Email Adresse, um eine Überprüfung der E-Mail-Adresse zu erzwingen."
+#: include/conversation.php:1190 include/conversation.php:1208
+msgid "Visible to <strong>everybody</strong>"
+msgstr "Für <strong>jedermann</strong> sichtbar"
 
-#: include/follow.php:143
-msgid ""
-"The profile address specified belongs to a network which has been disabled "
-"on this site."
-msgstr "Die Adresse dieses Profils gehört zu einem Netzwerk, mit dem die Kommunikation auf dieser Seite ausgeschaltet wurde."
+#: include/conversation.php:1191 include/conversation.php:1209
+#: mod/wallmessage.php:127 mod/wallmessage.php:135 mod/message.php:291
+#: mod/message.php:299 mod/message.php:442 mod/message.php:450
+msgid "Please enter a link URL:"
+msgstr "Bitte gib die URL des Links ein:"
 
-#: include/follow.php:153
-msgid ""
-"Limited profile. This person will be unable to receive direct/personal "
-"notifications from you."
-msgstr "Eingeschränktes Profil. Diese Person wird keine direkten/privaten Nachrichten von Dir erhalten können."
+#: include/conversation.php:1192 include/conversation.php:1210
+msgid "Please enter a video link/URL:"
+msgstr "Bitte Link/URL zum Video einfügen:"
 
-#: include/follow.php:254
-msgid "Unable to retrieve contact information."
-msgstr "Konnte die Kontaktinformationen nicht empfangen."
+#: include/conversation.php:1193 include/conversation.php:1211
+msgid "Please enter an audio link/URL:"
+msgstr "Bitte Link/URL zum Audio einfügen:"
 
-#: include/follow.php:287
-msgid "following"
-msgstr "folgen"
+#: include/conversation.php:1194 include/conversation.php:1212
+msgid "Tag term:"
+msgstr "Tag:"
 
-#: include/Contact.php:105
-msgid "stopped following"
-msgstr "wird nicht mehr gefolgt"
+#: include/conversation.php:1195 include/conversation.php:1213
+#: mod/filer.php:30
+msgid "Save to Folder:"
+msgstr "In diesem Ordner speichern:"
 
-#: include/Contact.php:409
-msgid "Drop Contact"
-msgstr "Kontakt löschen"
+#: include/conversation.php:1196 include/conversation.php:1214
+msgid "Where are you right now?"
+msgstr "Wo hältst Du Dich jetzt gerade auf?"
 
-#: include/Contact.php:784
-msgid "Organisation"
-msgstr "Organisation"
+#: include/conversation.php:1197
+msgid "Delete item(s)?"
+msgstr "Einträge löschen?"
 
-#: include/Contact.php:787
-msgid "News"
-msgstr "Nachrichten"
+#: include/conversation.php:1245 mod/photos.php:1569
+msgid "Share"
+msgstr "Teilen"
 
-#: include/Contact.php:790
-msgid "Forum"
-msgstr "Forum"
+#: include/conversation.php:1246 mod/editpost.php:110 mod/wallmessage.php:154
+#: mod/message.php:354 mod/message.php:545
+msgid "Upload photo"
+msgstr "Foto hochladen"
 
-#: include/oembed.php:264
-msgid "Embedded content"
-msgstr "Eingebetteter Inhalt"
+#: include/conversation.php:1247 mod/editpost.php:111
+msgid "upload photo"
+msgstr "Bild hochladen"
 
-#: include/oembed.php:272
-msgid "Embedding disabled"
-msgstr "Einbettungen deaktiviert"
+#: include/conversation.php:1248 mod/editpost.php:112
+msgid "Attach file"
+msgstr "Datei anhängen"
 
-#: include/bbcode.php:348 include/bbcode.php:1055 include/bbcode.php:1056
-msgid "Image/photo"
-msgstr "Bild/Foto"
+#: include/conversation.php:1249 mod/editpost.php:113
+msgid "attach file"
+msgstr "Datei anhängen"
 
-#: include/bbcode.php:465
-#, 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/conversation.php:1250 mod/editpost.php:114 mod/wallmessage.php:155
+#: mod/message.php:355 mod/message.php:546
+msgid "Insert web link"
+msgstr "Einen Link einfügen"
 
-#: include/bbcode.php:1015 include/bbcode.php:1035
-msgid "$1 wrote:"
-msgstr "$1 hat geschrieben:"
+#: include/conversation.php:1251 mod/editpost.php:115
+msgid "web link"
+msgstr "Weblink"
 
-#: include/bbcode.php:1064 include/bbcode.php:1065
-msgid "Encrypted content"
-msgstr "Verschlüsselter Inhalt"
+#: include/conversation.php:1252 mod/editpost.php:116
+msgid "Insert video link"
+msgstr "Video-Adresse einfügen"
 
-#: include/contact_selectors.php:32
-msgid "Unknown | Not categorised"
-msgstr "Unbekannt | Nicht kategorisiert"
+#: include/conversation.php:1253 mod/editpost.php:117
+msgid "video link"
+msgstr "Video-Link"
 
-#: include/contact_selectors.php:33
-msgid "Block immediately"
-msgstr "Sofort blockieren"
+#: include/conversation.php:1254 mod/editpost.php:118
+msgid "Insert audio link"
+msgstr "Audio-Adresse einfügen"
 
-#: include/contact_selectors.php:34
-msgid "Shady, spammer, self-marketer"
-msgstr "Zwielichtig, Spammer, Selbstdarsteller"
+#: include/conversation.php:1255 mod/editpost.php:119
+msgid "audio link"
+msgstr "Audio-Link"
 
-#: include/contact_selectors.php:35
-msgid "Known to me, but no opinion"
-msgstr "Ist mir bekannt, hab aber keine Meinung"
+#: include/conversation.php:1256 mod/editpost.php:120
+msgid "Set your location"
+msgstr "Deinen Standort festlegen"
 
-#: include/contact_selectors.php:36
-msgid "OK, probably harmless"
-msgstr "OK, wahrscheinlich harmlos"
+#: include/conversation.php:1257 mod/editpost.php:121
+msgid "set location"
+msgstr "Ort setzen"
 
-#: include/contact_selectors.php:37
-msgid "Reputable, has my trust"
-msgstr "Seriös, hat mein Vertrauen"
+#: include/conversation.php:1258 mod/editpost.php:122
+msgid "Clear browser location"
+msgstr "Browser-Standort leeren"
 
-#: include/contact_selectors.php:56 mod/admin.php:890
-msgid "Frequently"
-msgstr "immer wieder"
+#: include/conversation.php:1259 mod/editpost.php:123
+msgid "clear location"
+msgstr "Ort löschen"
 
-#: include/contact_selectors.php:57 mod/admin.php:891
-msgid "Hourly"
-msgstr "Stündlich"
+#: include/conversation.php:1261 mod/editpost.php:137
+msgid "Set title"
+msgstr "Titel setzen"
 
-#: include/contact_selectors.php:58 mod/admin.php:892
-msgid "Twice daily"
-msgstr "Zweimal täglich"
+#: include/conversation.php:1263 mod/editpost.php:139
+msgid "Categories (comma-separated list)"
+msgstr "Kategorien (kommasepariert)"
 
-#: include/contact_selectors.php:59 mod/admin.php:893
-msgid "Daily"
-msgstr "Täglich"
+#: include/conversation.php:1265 mod/editpost.php:125
+msgid "Permission settings"
+msgstr "Berechtigungseinstellungen"
 
-#: include/contact_selectors.php:60
-msgid "Weekly"
-msgstr "Wöchentlich"
-
-#: include/contact_selectors.php:61
-msgid "Monthly"
-msgstr "Monatlich"
+#: include/conversation.php:1266 mod/editpost.php:154
+msgid "permissions"
+msgstr "Zugriffsrechte"
 
-#: include/contact_selectors.php:76 mod/dfrn_request.php:868
-msgid "Friendica"
-msgstr "Friendica"
+#: include/conversation.php:1274 mod/editpost.php:134
+msgid "Public post"
+msgstr "Öffentlicher Beitrag"
 
-#: include/contact_selectors.php:77
-msgid "OStatus"
-msgstr "OStatus"
+#: include/conversation.php:1279 mod/editpost.php:145 mod/content.php:737
+#: mod/events.php:504 mod/photos.php:1591 mod/photos.php:1639
+#: mod/photos.php:1725 object/Item.php:729
+msgid "Preview"
+msgstr "Vorschau"
 
-#: include/contact_selectors.php:78
-msgid "RSS/Atom"
-msgstr "RSS/Atom"
+#: include/conversation.php:1283 include/items.php:1974 mod/fbrowser.php:101
+#: mod/fbrowser.php:136 mod/tagrm.php:11 mod/tagrm.php:94 mod/editpost.php:148
+#: mod/message.php:220 mod/suggest.php:32 mod/photos.php:235
+#: mod/photos.php:322 mod/settings.php:679 mod/settings.php:705
+#: mod/videos.php:128 mod/contacts.php:445 mod/dfrn_request.php:876
+#: mod/follow.php:121
+msgid "Cancel"
+msgstr "Abbrechen"
 
-#: include/contact_selectors.php:79 include/contact_selectors.php:86
-#: mod/admin.php:1396 mod/admin.php:1409 mod/admin.php:1422 mod/admin.php:1440
-msgid "Email"
-msgstr "E-Mail"
+#: include/conversation.php:1289
+msgid "Post to Groups"
+msgstr "Poste an Gruppe"
 
-#: include/contact_selectors.php:80 mod/dfrn_request.php:870
-#: mod/settings.php:842
-msgid "Diaspora"
-msgstr "Diaspora"
+#: include/conversation.php:1290
+msgid "Post to Contacts"
+msgstr "Poste an Kontakte"
 
-#: include/contact_selectors.php:81
-msgid "Facebook"
-msgstr "Facebook"
+#: include/conversation.php:1291
+msgid "Private post"
+msgstr "Privater Beitrag"
 
-#: include/contact_selectors.php:82
-msgid "Zot!"
-msgstr "Zott"
+#: include/conversation.php:1296 include/identity.php:256 mod/editpost.php:152
+msgid "Message"
+msgstr "Nachricht"
 
-#: include/contact_selectors.php:83
-msgid "LinkedIn"
-msgstr "LinkedIn"
+#: include/conversation.php:1297 mod/editpost.php:153
+msgid "Browser"
+msgstr "Browser"
 
-#: include/contact_selectors.php:84
-msgid "XMPP/IM"
-msgstr "XMPP/Chat"
+#: include/conversation.php:1453
+msgid "View all"
+msgstr "Zeige alle"
 
-#: include/contact_selectors.php:85
-msgid "MySpace"
-msgstr "MySpace"
+#: include/conversation.php:1475
+msgid "Like"
+msgid_plural "Likes"
+msgstr[0] "mag ich"
+msgstr[1] "Mag ich"
 
-#: include/contact_selectors.php:87
-msgid "Google+"
-msgstr "Google+"
+#: include/conversation.php:1478
+msgid "Dislike"
+msgid_plural "Dislikes"
+msgstr[0] "mag ich nicht"
+msgstr[1] "Mag ich nicht"
 
-#: include/contact_selectors.php:88
-msgid "pump.io"
-msgstr "pump.io"
+#: include/conversation.php:1484
+msgid "Not Attending"
+msgid_plural "Not Attending"
+msgstr[0] "Nicht teilnehmend "
+msgstr[1] "Nicht teilnehmend"
 
-#: include/contact_selectors.php:89
-msgid "Twitter"
-msgstr "Twitter"
+#: include/dfrn.php:1108
+#, php-format
+msgid "%s\\'s birthday"
+msgstr "%ss Geburtstag"
 
-#: include/contact_selectors.php:90
-msgid "Diaspora Connector"
-msgstr "Diaspora"
+#: include/features.php:70
+msgid "General Features"
+msgstr "Allgemeine Features"
 
-#: include/contact_selectors.php:91
-msgid "GNU Social"
-msgstr "GNU Social"
+#: include/features.php:72
+msgid "Multiple Profiles"
+msgstr "Mehrere Profile"
 
-#: include/contact_selectors.php:92
-msgid "App.net"
-msgstr "App.net"
+#: include/features.php:72
+msgid "Ability to create multiple profiles"
+msgstr "Möglichkeit mehrere Profile zu erstellen"
 
-#: include/contact_selectors.php:103
-msgid "Hubzilla/Redmatrix"
-msgstr "Hubzilla/Redmatrix"
+#: include/features.php:73
+msgid "Photo Location"
+msgstr "Aufnahmeort"
 
-#: include/dbstructure.php:26
-#, php-format
+#: include/features.php:73
 msgid ""
-"\n"
-"\t\t\tThe friendica developers released update %s recently,\n"
-"\t\t\tbut when I tried to install it, something went terribly wrong.\n"
-"\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n"
-"\t\t\tfriendica developer if you can not help me on your own. My database might be invalid."
-msgstr "\nDie Friendica-Entwickler haben vor kurzem das Update %s veröffentlicht, aber bei der Installation ging etwas schrecklich schief.\n\nDas Problem sollte so schnell wie möglich gelöst werden, aber ich schaffe es nicht alleine. Bitte kontaktiere einen Friendica-Entwickler falls Du mir nicht alleine helfen kannst. Meine Datenbank könnte ungültig sein."
+"Photo metadata is normally stripped. This extracts the location (if present)"
+" prior to stripping metadata and links it to a map."
+msgstr "Die Foto-Metadaten werden ausgelesen. Dadurch kann der Aufnahmeort (wenn vorhanden) in einer Karte angezeigt werden."
 
-#: include/dbstructure.php:31
-#, php-format
-msgid ""
-"The error message is\n"
-"[pre]%s[/pre]"
-msgstr "Die Fehlermeldung lautet\n[pre]%s[/pre]"
+#: include/features.php:74
+msgid "Export Public Calendar"
+msgstr "Öffentlichen Kalender exportieren"
 
-#: include/dbstructure.php:183
-msgid "Errors encountered creating database tables."
-msgstr "Fehler aufgetreten während der Erzeugung der Datenbanktabellen."
+#: include/features.php:74
+msgid "Ability for visitors to download the public calendar"
+msgstr "Möglichkeit für Besucher den öffentlichen Kalender herunter zu laden"
 
-#: include/dbstructure.php:260
-msgid "Errors encountered performing database changes."
-msgstr "Es sind Fehler beim Bearbeiten der Datenbank aufgetreten."
+#: include/features.php:79
+msgid "Post Composition Features"
+msgstr "Beitragserstellung Features"
 
-#: include/auth.php:45
-msgid "Logged out."
-msgstr "Abgemeldet."
+#: include/features.php:80
+msgid "Richtext Editor"
+msgstr "Web-Editor"
 
-#: include/auth.php:116 include/auth.php:178 mod/openid.php:100
-msgid "Login failed."
-msgstr "Anmeldung fehlgeschlagen."
+#: include/features.php:80
+msgid "Enable richtext editor"
+msgstr "Den Web-Editor für neue Beiträge aktivieren"
 
-#: include/auth.php:132 include/user.php:75
-msgid ""
-"We encountered a problem while logging in with the OpenID you provided. "
-"Please check the correct spelling of the ID."
-msgstr "Beim Versuch Dich mit der von Dir angegebenen OpenID anzumelden trat ein Problem auf. Bitte überprüfe, dass Du die OpenID richtig geschrieben hast."
+#: include/features.php:81
+msgid "Post Preview"
+msgstr "Beitragsvorschau"
 
-#: include/auth.php:132 include/user.php:75
-msgid "The error message was:"
-msgstr "Die Fehlermeldung lautete:"
+#: include/features.php:81
+msgid "Allow previewing posts and comments before publishing them"
+msgstr "Die Vorschau von Beiträgen und Kommentaren vor dem absenden erlauben."
 
-#: include/network.php:595
-msgid "view full size"
-msgstr "Volle Größe anzeigen"
+#: include/features.php:82
+msgid "Auto-mention Forums"
+msgstr "Foren automatisch erwähnen"
 
-#: include/group.php:25
+#: include/features.php:82
 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 "Eine gelöschte Gruppe mit diesem Namen wurde wiederbelebt. Bestehende Berechtigungseinstellungen <strong>könnten</strong> auf diese Gruppe oder zukünftige Mitglieder angewandt werden. Falls Du dies nicht möchtest, erstelle bitte eine andere Gruppe mit einem anderen Namen."
-
-#: include/group.php:209
-msgid "Default privacy group for new contacts"
-msgstr "Voreingestellte Gruppe für neue Kontakte"
+"Add/remove mention when a forum page is selected/deselected in ACL window."
+msgstr "Automatisch eine @-Erwähnung eines Forums einfügen/entfehrnen, wenn dieses im ACL Fenster de-/markiert  wurde."
 
-#: include/group.php:242
-msgid "Everybody"
-msgstr "Alle Kontakte"
+#: include/features.php:87
+msgid "Network Sidebar Widgets"
+msgstr "Widgets für Netzwerk und Seitenleiste"
 
-#: include/group.php:265
-msgid "edit"
-msgstr "bearbeiten"
+#: include/features.php:88
+msgid "Search by Date"
+msgstr "Archiv"
 
-#: include/group.php:286 mod/newmember.php:61
-msgid "Groups"
-msgstr "Gruppen"
+#: include/features.php:88
+msgid "Ability to select posts by date ranges"
+msgstr "Möglichkeit die Beiträge nach Datumsbereichen zu sortieren"
 
-#: include/group.php:288
-msgid "Edit groups"
-msgstr "Gruppen bearbeiten"
+#: include/features.php:89 include/features.php:119
+msgid "List Forums"
+msgstr "Zeige Foren"
 
-#: include/group.php:290
-msgid "Edit group"
-msgstr "Gruppe bearbeiten"
+#: include/features.php:89
+msgid "Enable widget to display the forums your are connected with"
+msgstr "Aktiviere Widget, um die Foren mit denen du verbunden bist anzuzeigen"
 
-#: include/group.php:291
-msgid "Create a new group"
-msgstr "Neue Gruppe erstellen"
+#: include/features.php:90
+msgid "Group Filter"
+msgstr "Gruppen Filter"
 
-#: include/group.php:292 mod/group.php:94 mod/group.php:178
-msgid "Group Name: "
-msgstr "Gruppenname:"
+#: include/features.php:90
+msgid "Enable widget to display Network posts only from selected group"
+msgstr "Widget zur Darstellung der Beiträge nach Kontaktgruppen sortiert aktivieren."
 
-#: include/group.php:294
-msgid "Contacts not in any group"
-msgstr "Kontakte in keiner Gruppe"
+#: include/features.php:91
+msgid "Network Filter"
+msgstr "Netzwerk Filter"
 
-#: include/group.php:296 mod/network.php:201
-msgid "add"
-msgstr "hinzufügen"
+#: include/features.php:91
+msgid "Enable widget to display Network posts only from selected network"
+msgstr "Widget zum filtern der Beiträge in Abhängigkeit des Netzwerks aus dem der Ersteller sendet aktivieren."
 
-#: include/Photo.php:1040 include/Photo.php:1056 include/Photo.php:1064
-#: include/Photo.php:1089 include/message.php:145 mod/wall_upload.php:218
-#: mod/wall_upload.php:232 mod/wall_upload.php:239 mod/item.php:477
-msgid "Wall Photos"
-msgstr "Pinnwand-Bilder"
+#: include/features.php:92 mod/search.php:34 mod/network.php:200
+msgid "Saved Searches"
+msgstr "Gespeicherte Suchen"
 
-#: include/delivery.php:446
-msgid "(no subject)"
-msgstr "(kein Betreff)"
-
-#: include/user.php:39 mod/settings.php:373
-msgid "Passwords do not match. Password unchanged."
-msgstr "Die Passwörter stimmen nicht überein. Das Passwort bleibt unverändert."
-
-#: include/user.php:48
-msgid "An invitation is required."
-msgstr "Du benötigst eine Einladung."
-
-#: include/user.php:53
-msgid "Invitation could not be verified."
-msgstr "Die Einladung konnte nicht überprüft werden."
-
-#: include/user.php:61
-msgid "Invalid OpenID url"
-msgstr "Ungültige OpenID URL"
-
-#: include/user.php:82
-msgid "Please enter the required information."
-msgstr "Bitte trage die erforderlichen Informationen ein."
-
-#: include/user.php:96
-msgid "Please use a shorter name."
-msgstr "Bitte verwende einen kürzeren Namen."
-
-#: include/user.php:98
-msgid "Name too short."
-msgstr "Der Name ist zu kurz."
-
-#: include/user.php:113
-msgid "That doesn't appear to be your full (First Last) name."
-msgstr "Das scheint nicht Dein kompletter Name (Vor- und Nachname) zu sein."
-
-#: include/user.php:118
-msgid "Your email domain is not among those allowed on this site."
-msgstr "Die Domain Deiner E-Mail Adresse ist auf dieser Seite nicht erlaubt."
-
-#: include/user.php:121
-msgid "Not a valid email address."
-msgstr "Keine gültige E-Mail-Adresse."
-
-#: include/user.php:134
-msgid "Cannot use that email."
-msgstr "Konnte diese E-Mail-Adresse nicht verwenden."
-
-#: include/user.php:140
-msgid "Your \"nickname\" can only contain \"a-z\", \"0-9\" and \"_\"."
-msgstr "Dein Spitzname darf nur aus Buchstaben und Zahlen (\"a-z\",\"0-9\" und \"_\") bestehen."
-
-#: include/user.php:147 include/user.php:245
-msgid "Nickname is already registered. Please choose another."
-msgstr "Dieser Spitzname ist bereits vergeben. Bitte wähle einen anderen."
-
-#: include/user.php:157
-msgid ""
-"Nickname was once registered here and may not be re-used. Please choose "
-"another."
-msgstr "Dieser Spitzname ist bereits vergeben. Bitte wähle einen anderen."
-
-#: include/user.php:173
-msgid "SERIOUS ERROR: Generation of security keys failed."
-msgstr "FATALER FEHLER: Sicherheitsschlüssel konnten nicht erzeugt werden."
-
-#: include/user.php:231
-msgid "An error occurred during registration. Please try again."
-msgstr "Während der Anmeldung ist ein Fehler aufgetreten. Bitte versuche es noch einmal."
-
-#: include/user.php:256 view/theme/duepuntozero/config.php:44
-msgid "default"
-msgstr "Standard"
-
-#: include/user.php:266
-msgid "An error occurred creating your default profile. Please try again."
-msgstr "Bei der Erstellung des Standardprofils ist ein Fehler aufgetreten. Bitte versuche es noch einmal."
-
-#: include/user.php:345 include/user.php:352 include/user.php:359
-#: mod/photos.php:66 mod/photos.php:180 mod/photos.php:751 mod/photos.php:1211
-#: mod/photos.php:1232 mod/photos.php:1819 mod/profile_photo.php:74
-#: mod/profile_photo.php:81 mod/profile_photo.php:88 mod/profile_photo.php:210
-#: mod/profile_photo.php:302 mod/profile_photo.php:311
-msgid "Profile Photos"
-msgstr "Profilbilder"
-
-#: include/user.php:390
-#, php-format
-msgid ""
-"\n"
-"\t\tDear %1$s,\n"
-"\t\t\tThank you for registering at %2$s. Your account is pending for approval by the administrator.\n"
-"\t"
-msgstr "\nHallo %1$s,\n\ndanke für Deine Registrierung auf %2$s. Dein Account wurde muss noch vom Admin des Knotens geprüft werden."
-
-#: include/user.php:400
-#, php-format
-msgid "Registration at %s"
-msgstr "Registrierung als %s"
-
-#: include/user.php:410
-#, 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 "\nHallo %1$s,\n\ndanke für Deine Registrierung auf %2$s. Dein Account wurde eingerichtet."
-
-#: include/user.php:414
-#, 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 "\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:446 mod/admin.php:1213
-#, php-format
-msgid "Registration details for %s"
-msgstr "Details der Registration von %s"
-
-#: include/api.php:1018
-#, 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:1038
-#, 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:1059
-#, 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/features.php:70
-msgid "General Features"
-msgstr "Allgemeine Features"
-
-#: include/features.php:72
-msgid "Multiple Profiles"
-msgstr "Mehrere Profile"
-
-#: include/features.php:72
-msgid "Ability to create multiple profiles"
-msgstr "Möglichkeit mehrere Profile zu erstellen"
-
-#: include/features.php:73
-msgid "Photo Location"
-msgstr "Aufnahmeort"
-
-#: include/features.php:73
-msgid ""
-"Photo metadata is normally stripped. This extracts the location (if present)"
-" prior to stripping metadata and links it to a map."
-msgstr "Die Foto-Metadaten werden ausgelesen. Dadurch kann der Aufnahmeort (wenn vorhanden) in einer Karte angezeigt werden."
-
-#: include/features.php:74
-msgid "Export Public Calendar"
-msgstr "Öffentlichen Kalender exportieren"
-
-#: include/features.php:74
-msgid "Ability for visitors to download the public calendar"
-msgstr "Möglichkeit für Besucher den öffentlichen Kalender herunter zu laden"
-
-#: include/features.php:79
-msgid "Post Composition Features"
-msgstr "Beitragserstellung Features"
-
-#: include/features.php:80
-msgid "Richtext Editor"
-msgstr "Web-Editor"
-
-#: include/features.php:80
-msgid "Enable richtext editor"
-msgstr "Den Web-Editor für neue Beiträge aktivieren"
-
-#: include/features.php:81
-msgid "Post Preview"
-msgstr "Beitragsvorschau"
-
-#: include/features.php:81
-msgid "Allow previewing posts and comments before publishing them"
-msgstr "Die Vorschau von Beiträgen und Kommentaren vor dem absenden erlauben."
-
-#: include/features.php:82
-msgid "Auto-mention Forums"
-msgstr "Foren automatisch erwähnen"
-
-#: include/features.php:82
-msgid ""
-"Add/remove mention when a forum page is selected/deselected in ACL window."
-msgstr "Automatisch eine @-Erwähnung eines Forums einfügen/entfehrnen, wenn dieses im ACL Fenster de-/markiert  wurde."
-
-#: include/features.php:87
-msgid "Network Sidebar Widgets"
-msgstr "Widgets für Netzwerk und Seitenleiste"
-
-#: include/features.php:88
-msgid "Search by Date"
-msgstr "Archiv"
-
-#: include/features.php:88
-msgid "Ability to select posts by date ranges"
-msgstr "Möglichkeit die Beiträge nach Datumsbereichen zu sortieren"
-
-#: include/features.php:89 include/features.php:119
-msgid "List Forums"
-msgstr "Zeige Foren"
-
-#: include/features.php:89
-msgid "Enable widget to display the forums your are connected with"
-msgstr "Aktiviere Widget, um die Foren mit denen du verbunden bist anzuzeigen"
-
-#: include/features.php:90
-msgid "Group Filter"
-msgstr "Gruppen Filter"
-
-#: include/features.php:90
-msgid "Enable widget to display Network posts only from selected group"
-msgstr "Widget zur Darstellung der Beiträge nach Kontaktgruppen sortiert aktivieren."
-
-#: include/features.php:91
-msgid "Network Filter"
-msgstr "Netzwerk Filter"
-
-#: include/features.php:91
-msgid "Enable widget to display Network posts only from selected network"
-msgstr "Widget zum filtern der Beiträge in Abhängigkeit des Netzwerks aus dem der Ersteller sendet aktivieren."
-
-#: include/features.php:92 mod/search.php:34 mod/network.php:200
-msgid "Saved Searches"
-msgstr "Gespeicherte Suchen"
-
-#: include/features.php:92
-msgid "Save search terms for re-use"
-msgstr "Speichere Suchanfragen für spätere Wiederholung."
+#: include/features.php:92
+msgid "Save search terms for re-use"
+msgstr "Speichere Suchanfragen für spätere Wiederholung."
 
 #: include/features.php:97
 msgid "Network Tabs"
@@ -2895,582 +2403,771 @@ msgstr "Erweiterte Profil-Einstellungen"
 msgid "Show visitors public community forums at the Advanced Profile Page"
 msgstr "Zeige Besuchern öffentliche Gemeinschafts-Foren auf der Erweiterten Profil-Seite"
 
-#: include/nav.php:35 mod/navigation.php:19
-msgid "Nothing new here"
-msgstr "Keine Neuigkeiten"
+#: include/follow.php:81 mod/dfrn_request.php:509
+msgid "Disallowed profile URL."
+msgstr "Nicht erlaubte Profil-URL."
 
-#: include/nav.php:39 mod/navigation.php:23
-msgid "Clear notifications"
-msgstr "Bereinige Benachrichtigungen"
-
-#: include/nav.php:78 view/theme/frio/theme.php:246
-msgid "End this session"
-msgstr "Diese Sitzung beenden"
+#: include/follow.php:86
+msgid "Connect URL missing."
+msgstr "Connect-URL fehlt"
 
-#: include/nav.php:81 include/nav.php:161 view/theme/frio/theme.php:249
-msgid "Your posts and conversations"
-msgstr "Deine Beiträge und Unterhaltungen"
+#: include/follow.php:113
+msgid ""
+"This site is not configured to allow communications with other networks."
+msgstr "Diese Seite ist so konfiguriert, dass keine Kommunikation mit anderen Netzwerken erfolgen kann."
 
-#: include/nav.php:82 view/theme/frio/theme.php:250
-msgid "Your profile page"
-msgstr "Deine Profilseite"
+#: include/follow.php:114 include/follow.php:134
+msgid "No compatible communication protocols or feeds were discovered."
+msgstr "Es wurden keine kompatiblen Kommunikationsprotokolle oder Feeds gefunden."
 
-#: include/nav.php:83 view/theme/frio/theme.php:251
-msgid "Your photos"
-msgstr "Deine Fotos"
+#: include/follow.php:132
+msgid "The profile address specified does not provide adequate information."
+msgstr "Die angegebene Profiladresse liefert unzureichende Informationen."
 
-#: include/nav.php:84 view/theme/frio/theme.php:252
-msgid "Your videos"
-msgstr "Deine Videos"
+#: include/follow.php:136
+msgid "An author or name was not found."
+msgstr "Es wurde kein Autor oder Name gefunden."
 
-#: include/nav.php:85 view/theme/frio/theme.php:253
-msgid "Your events"
-msgstr "Deine Ereignisse"
+#: include/follow.php:138
+msgid "No browser URL could be matched to this address."
+msgstr "Zu dieser Adresse konnte keine passende Browser URL gefunden werden."
 
-#: include/nav.php:86
-msgid "Personal notes"
-msgstr "Persönliche Notizen"
+#: include/follow.php:140
+msgid ""
+"Unable to match @-style Identity Address with a known protocol or email "
+"contact."
+msgstr "Konnte die @-Adresse mit keinem der bekannten Protokolle oder Email-Kontakte abgleichen."
 
-#: include/nav.php:86
-msgid "Your personal notes"
-msgstr "Deine persönlichen Notizen"
+#: include/follow.php:141
+msgid "Use mailto: in front of address to force email check."
+msgstr "Verwende mailto: vor der Email Adresse, um eine Überprüfung der E-Mail-Adresse zu erzwingen."
 
-#: include/nav.php:95
-msgid "Sign in"
-msgstr "Anmelden"
+#: include/follow.php:147
+msgid ""
+"The profile address specified belongs to a network which has been disabled "
+"on this site."
+msgstr "Die Adresse dieses Profils gehört zu einem Netzwerk, mit dem die Kommunikation auf dieser Seite ausgeschaltet wurde."
 
-#: include/nav.php:105
-msgid "Home Page"
-msgstr "Homepage"
+#: include/follow.php:157
+msgid ""
+"Limited profile. This person will be unable to receive direct/personal "
+"notifications from you."
+msgstr "Eingeschränktes Profil. Diese Person wird keine direkten/privaten Nachrichten von Dir erhalten können."
 
-#: include/nav.php:109
-msgid "Create an account"
-msgstr "Nutzerkonto erstellen"
+#: include/follow.php:258
+msgid "Unable to retrieve contact information."
+msgstr "Konnte die Kontaktinformationen nicht empfangen."
 
-#: include/nav.php:115 mod/help.php:47 view/theme/vier/theme.php:298
-msgid "Help"
-msgstr "Hilfe"
+#: include/identity.php:42
+msgid "Requested account is not available."
+msgstr "Das angefragte Profil ist nicht vorhanden."
 
-#: include/nav.php:115
-msgid "Help and documentation"
-msgstr "Hilfe und Dokumentation"
+#: include/identity.php:51 mod/profile.php:21
+msgid "Requested profile is not available."
+msgstr "Das angefragte Profil ist nicht vorhanden."
 
-#: include/nav.php:119
-msgid "Apps"
-msgstr "Apps"
+#: include/identity.php:95 include/identity.php:311 include/identity.php:688
+msgid "Edit profile"
+msgstr "Profil bearbeiten"
 
-#: include/nav.php:119
-msgid "Addon applications, utilities, games"
-msgstr "Addon Anwendungen, Dienstprogramme, Spiele"
+#: include/identity.php:251
+msgid "Atom feed"
+msgstr "Atom-Feed"
 
-#: include/nav.php:123
-msgid "Search site content"
-msgstr "Inhalt der Seite durchsuchen"
+#: include/identity.php:282
+msgid "Manage/edit profiles"
+msgstr "Profile verwalten/editieren"
 
-#: include/nav.php:143 include/nav.php:145 mod/community.php:36
-msgid "Community"
-msgstr "Gemeinschaft"
+#: include/identity.php:287 include/identity.php:313 mod/profiles.php:795
+msgid "Change profile photo"
+msgstr "Profilbild ändern"
 
-#: include/nav.php:143
-msgid "Conversations on this site"
-msgstr "Unterhaltungen auf dieser Seite"
+#: include/identity.php:288 mod/profiles.php:796
+msgid "Create New Profile"
+msgstr "Neues Profil anlegen"
 
-#: include/nav.php:145
-msgid "Conversations on the network"
-msgstr "Unterhaltungen im Netzwerk"
+#: include/identity.php:298 mod/profiles.php:785
+msgid "Profile Image"
+msgstr "Profilbild"
 
-#: include/nav.php:152
-msgid "Directory"
-msgstr "Verzeichnis"
+#: include/identity.php:301 mod/profiles.php:787
+msgid "visible to everybody"
+msgstr "sichtbar für jeden"
 
-#: include/nav.php:152
-msgid "People directory"
-msgstr "Nutzerverzeichnis"
+#: include/identity.php:302 mod/profiles.php:691 mod/profiles.php:788
+msgid "Edit visibility"
+msgstr "Sichtbarkeit bearbeiten"
 
-#: include/nav.php:154
-msgid "Information"
-msgstr "Information"
+#: include/identity.php:330 include/identity.php:616 mod/notifications.php:238
+#: mod/directory.php:139
+msgid "Gender:"
+msgstr "Geschlecht:"
 
-#: include/nav.php:154
-msgid "Information about this friendica instance"
-msgstr "Informationen zu dieser Friendica Instanz"
+#: include/identity.php:333 include/identity.php:636 mod/directory.php:141
+msgid "Status:"
+msgstr "Status:"
 
-#: include/nav.php:158 view/theme/frio/theme.php:256
-msgid "Conversations from your friends"
-msgstr "Unterhaltungen Deiner Kontakte"
+#: include/identity.php:335 include/identity.php:647 mod/directory.php:143
+msgid "Homepage:"
+msgstr "Homepage:"
 
-#: include/nav.php:159
-msgid "Network Reset"
-msgstr "Netzwerk zurücksetzen"
+#: include/identity.php:337 include/identity.php:657 mod/notifications.php:234
+#: mod/directory.php:145 mod/contacts.php:632
+msgid "About:"
+msgstr "Über:"
 
-#: include/nav.php:159
-msgid "Load Network page with no filters"
-msgstr "Netzwerk-Seite ohne Filter laden"
+#: include/identity.php:339 mod/contacts.php:630
+msgid "XMPP:"
+msgstr "XMPP:"
 
-#: include/nav.php:166
-msgid "Friend Requests"
-msgstr "Kontaktanfragen"
+#: include/identity.php:422 mod/notifications.php:246 mod/contacts.php:50
+msgid "Network:"
+msgstr "Netzwerk:"
 
-#: include/nav.php:169 mod/notifications.php:96
-msgid "Notifications"
-msgstr "Benachrichtigungen"
+#: include/identity.php:451 include/identity.php:535
+msgid "g A l F d"
+msgstr "l, d. F G \\U\\h\\r"
 
-#: include/nav.php:170
-msgid "See all notifications"
-msgstr "Alle Benachrichtigungen anzeigen"
+#: include/identity.php:452 include/identity.php:536
+msgid "F d"
+msgstr "d. F"
 
-#: include/nav.php:171 mod/settings.php:902
-msgid "Mark as seen"
-msgstr "Als gelesen markieren"
+#: include/identity.php:497 include/identity.php:582
+msgid "[today]"
+msgstr "[heute]"
 
-#: include/nav.php:171
-msgid "Mark all system notifications seen"
-msgstr "Markiere alle Systembenachrichtigungen als gelesen"
+#: include/identity.php:509
+msgid "Birthday Reminders"
+msgstr "Geburtstagserinnerungen"
 
-#: include/nav.php:175 mod/message.php:190 view/theme/frio/theme.php:258
-msgid "Messages"
-msgstr "Nachrichten"
+#: include/identity.php:510
+msgid "Birthdays this week:"
+msgstr "Geburtstage diese Woche:"
 
-#: include/nav.php:175 view/theme/frio/theme.php:258
-msgid "Private mail"
-msgstr "Private E-Mail"
+#: include/identity.php:569
+msgid "[No description]"
+msgstr "[keine Beschreibung]"
 
-#: include/nav.php:176
-msgid "Inbox"
-msgstr "Eingang"
+#: include/identity.php:593
+msgid "Event Reminders"
+msgstr "Veranstaltungserinnerungen"
 
-#: include/nav.php:177
-msgid "Outbox"
-msgstr "Ausgang"
+#: include/identity.php:594
+msgid "Events this week:"
+msgstr "Veranstaltungen diese Woche"
 
-#: include/nav.php:178 mod/message.php:16
-msgid "New Message"
-msgstr "Neue Nachricht"
+#: include/identity.php:614 mod/settings.php:1279
+msgid "Full Name:"
+msgstr "Kompletter Name:"
 
-#: include/nav.php:181
-msgid "Manage"
-msgstr "Verwalten"
+#: include/identity.php:621
+msgid "j F, Y"
+msgstr "j F, Y"
 
-#: include/nav.php:181
-msgid "Manage other pages"
-msgstr "Andere Seiten verwalten"
+#: include/identity.php:622
+msgid "j F"
+msgstr "j F"
 
-#: include/nav.php:184 mod/settings.php:81
-msgid "Delegations"
-msgstr "Delegationen"
+#: include/identity.php:633
+msgid "Age:"
+msgstr "Alter:"
 
-#: include/nav.php:184 mod/delegate.php:130
-msgid "Delegate Page Management"
-msgstr "Delegiere das Management für die Seite"
+#: include/identity.php:642
+#, php-format
+msgid "for %1$d %2$s"
+msgstr "für %1$d %2$s"
 
-#: include/nav.php:186 mod/admin.php:1524 mod/admin.php:1782
-#: mod/newmember.php:22 mod/settings.php:111 view/theme/frio/theme.php:259
-msgid "Settings"
-msgstr "Einstellungen"
+#: include/identity.php:645 mod/profiles.php:710
+msgid "Sexual Preference:"
+msgstr "Sexuelle Vorlieben:"
 
-#: include/nav.php:186 view/theme/frio/theme.php:259
-msgid "Account settings"
-msgstr "Kontoeinstellungen"
+#: include/identity.php:649 mod/profiles.php:737
+msgid "Hometown:"
+msgstr "Heimatort:"
 
-#: include/nav.php:189
-msgid "Manage/Edit Profiles"
-msgstr "Profile Verwalten/Editieren"
+#: include/identity.php:651 mod/notifications.php:236 mod/contacts.php:634
+#: mod/follow.php:134
+msgid "Tags:"
+msgstr "Tags:"
 
-#: include/nav.php:192 view/theme/frio/theme.php:260
-msgid "Manage/edit friends and contacts"
-msgstr " Kontakte verwalten/editieren"
+#: include/identity.php:653 mod/profiles.php:738
+msgid "Political Views:"
+msgstr "Politische Ansichten:"
 
-#: include/nav.php:197 mod/admin.php:186
-msgid "Admin"
-msgstr "Administration"
+#: include/identity.php:655
+msgid "Religion:"
+msgstr "Religion:"
 
-#: include/nav.php:197
-msgid "Site setup and configuration"
-msgstr "Einstellungen der Seite und Konfiguration"
+#: include/identity.php:659
+msgid "Hobbies/Interests:"
+msgstr "Hobbies/Interessen:"
 
-#: include/nav.php:200
-msgid "Navigation"
-msgstr "Navigation"
+#: include/identity.php:661 mod/profiles.php:742
+msgid "Likes:"
+msgstr "Likes:"
 
-#: include/nav.php:200
-msgid "Site map"
-msgstr "Sitemap"
+#: include/identity.php:663 mod/profiles.php:743
+msgid "Dislikes:"
+msgstr "Dislikes:"
 
-#: include/like.php:186
-#, php-format
-msgid "%1$s is attending %2$s's %3$s"
-msgstr "%1$s nimmt an %2$ss %3$s teil."
+#: include/identity.php:666
+msgid "Contact information and Social Networks:"
+msgstr "Kontaktinformationen und Soziale Netzwerke:"
 
-#: include/like.php:188
-#, php-format
-msgid "%1$s is not attending %2$s's %3$s"
-msgstr "%1$s nimmt nicht an %2$ss %3$s teil."
+#: include/identity.php:668
+msgid "Musical interests:"
+msgstr "Musikalische Interessen:"
 
-#: include/like.php:190
-#, php-format
-msgid "%1$s may attend %2$s's %3$s"
-msgstr "%1$s nimmt eventuell an %2$ss %3$s teil."
+#: include/identity.php:670
+msgid "Books, literature:"
+msgstr "Literatur/Bücher:"
 
-#: include/acl_selectors.php:327
-msgid "Post to Email"
-msgstr "An E-Mail senden"
+#: include/identity.php:672
+msgid "Television:"
+msgstr "Fernsehen:"
 
-#: include/acl_selectors.php:332
-#, php-format
-msgid "Connectors disabled, since \"%s\" is enabled."
-msgstr "Konnektoren sind nicht verfügbar, da \"%s\" aktiv ist."
+#: include/identity.php:674
+msgid "Film/dance/culture/entertainment:"
+msgstr "Filme/Tänze/Kultur/Unterhaltung:"
 
-#: include/acl_selectors.php:333 mod/settings.php:1181
-msgid "Hide your profile details from unknown viewers?"
-msgstr "Profil-Details vor unbekannten Betrachtern verbergen?"
+#: include/identity.php:676
+msgid "Love/Romance:"
+msgstr "Liebesleben:"
 
-#: include/acl_selectors.php:338
-msgid "Visible to everybody"
-msgstr "Für jeden sichtbar"
+#: include/identity.php:678
+msgid "Work/employment:"
+msgstr "Arbeit/Beschäftigung:"
 
-#: include/acl_selectors.php:339 view/theme/vier/config.php:103
-msgid "show"
-msgstr "zeigen"
+#: include/identity.php:680
+msgid "School/education:"
+msgstr "Schule/Ausbildung:"
 
-#: include/acl_selectors.php:340 view/theme/vier/config.php:103
-msgid "don't show"
-msgstr "nicht zeigen"
+#: include/identity.php:684
+msgid "Forums:"
+msgstr "Foren:"
 
-#: include/acl_selectors.php:346 mod/editpost.php:133
-msgid "CC: email addresses"
-msgstr "Cc: E-Mail-Addressen"
+#: include/identity.php:692 mod/events.php:507
+msgid "Basic"
+msgstr "Allgemein"
 
-#: include/acl_selectors.php:347 mod/editpost.php:140
-msgid "Example: bob@example.com, mary@example.com"
-msgstr "Z.B.: bob@example.com, mary@example.com"
+#: include/identity.php:693 mod/events.php:508 mod/admin.php:959
+#: mod/contacts.php:870
+msgid "Advanced"
+msgstr "Erweitert"
 
-#: include/acl_selectors.php:349 mod/events.php:509 mod/photos.php:1156
-#: mod/photos.php:1535
-msgid "Permissions"
-msgstr "Berechtigungen"
+#: include/identity.php:717 mod/contacts.php:836 mod/follow.php:142
+msgid "Status Messages and Posts"
+msgstr "Statusnachrichten und Beiträge"
 
-#: include/acl_selectors.php:350
-msgid "Close"
-msgstr "Schließen"
+#: include/identity.php:725 mod/contacts.php:844
+msgid "Profile Details"
+msgstr "Profildetails"
 
-#: include/message.php:15 include/message.php:173
-msgid "[no subject]"
-msgstr "[kein Betreff]"
+#: include/identity.php:733 mod/photos.php:87
+msgid "Photo Albums"
+msgstr "Fotoalben"
 
-#: index.php:244 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."
+#: include/identity.php:772 mod/notes.php:46
+msgid "Personal Notes"
+msgstr "Persönliche Notizen"
 
-#: index.php:288 mod/help.php:53 mod/p.php:16 mod/p.php:43 mod/p.php:52
-#: mod/fetch.php:12 mod/fetch.php:39 mod/fetch.php:48
-msgid "Not Found"
-msgstr "Nicht gefunden"
+#: include/identity.php:775
+msgid "Only You Can See This"
+msgstr "Nur Du kannst das sehen"
 
-#: index.php:291 mod/help.php:56
-msgid "Page not found."
-msgstr "Seite nicht gefunden."
+#: include/items.php:1575 mod/dfrn_confirm.php:730 mod/dfrn_request.php:746
+msgid "[Name Withheld]"
+msgstr "[Name unterdrückt]"
 
-#: index.php:400 mod/profperm.php:19 mod/group.php:72
-msgid "Permission denied"
-msgstr "Zugriff verweigert"
+#: include/items.php:1930 mod/viewsrc.php:15 mod/notice.php:15
+#: mod/display.php:103 mod/display.php:279 mod/display.php:478
+#: mod/admin.php:234 mod/admin.php:1471 mod/admin.php:1705
+msgid "Item not found."
+msgstr "Beitrag nicht gefunden."
 
-#: index.php:451
-msgid "toggle mobile"
-msgstr "auf/von Mobile Ansicht wechseln"
+#: include/items.php:1969
+msgid "Do you really want to delete this item?"
+msgstr "Möchtest Du wirklich dieses Item löschen?"
 
-#: mod/regmod.php:55
-msgid "Account approved."
-msgstr "Konto freigegeben."
+#: include/items.php:1971 mod/api.php:105 mod/message.php:217
+#: mod/profiles.php:648 mod/profiles.php:651 mod/profiles.php:677
+#: mod/suggest.php:29 mod/register.php:245 mod/settings.php:1163
+#: mod/settings.php:1169 mod/settings.php:1177 mod/settings.php:1181
+#: mod/settings.php:1186 mod/settings.php:1192 mod/settings.php:1198
+#: mod/settings.php:1204 mod/settings.php:1230 mod/settings.php:1231
+#: mod/settings.php:1232 mod/settings.php:1233 mod/settings.php:1234
+#: mod/contacts.php:442 mod/dfrn_request.php:862 mod/follow.php:110
+msgid "Yes"
+msgstr "Ja"
 
-#: mod/regmod.php:92
-#, php-format
-msgid "Registration revoked for %s"
-msgstr "Registrierung für %s wurde zurückgezogen"
+#: include/items.php:2134 mod/notes.php:22 mod/uimport.php:23
+#: mod/nogroup.php:25 mod/invite.php:15 mod/invite.php:101
+#: mod/repair_ostatus.php:9 mod/delegate.php:12 mod/attach.php:33
+#: mod/editpost.php:10 mod/group.php:19 mod/wallmessage.php:9
+#: mod/wallmessage.php:33 mod/wallmessage.php:79 mod/wallmessage.php:103
+#: mod/api.php:26 mod/api.php:31 mod/ostatus_subscribe.php:9
+#: mod/message.php:46 mod/message.php:182 mod/manage.php:96
+#: mod/crepair.php:100 mod/fsuggest.php:78 mod/mood.php:114 mod/poke.php:150
+#: mod/profile_photo.php:19 mod/profile_photo.php:175
+#: mod/profile_photo.php:186 mod/profile_photo.php:199 mod/regmod.php:110
+#: mod/notifications.php:71 mod/profiles.php:166 mod/profiles.php:605
+#: mod/allfriends.php:12 mod/cal.php:304 mod/common.php:18 mod/dirfind.php:11
+#: mod/display.php:475 mod/events.php:190 mod/suggest.php:58
+#: mod/photos.php:159 mod/photos.php:1072 mod/register.php:42
+#: mod/settings.php:22 mod/settings.php:128 mod/settings.php:665
+#: mod/wall_attach.php:67 mod/wall_attach.php:70 mod/wall_upload.php:77
+#: mod/wall_upload.php:80 mod/contacts.php:350 mod/dfrn_confirm.php:61
+#: mod/follow.php:11 mod/follow.php:73 mod/follow.php:155 mod/item.php:199
+#: mod/item.php:211 mod/network.php:4 mod/viewcontacts.php:45 index.php:401
+msgid "Permission denied."
+msgstr "Zugriff verweigert."
 
-#: mod/regmod.php:104
-msgid "Please login."
-msgstr "Bitte melde Dich an."
+#: include/items.php:2239
+msgid "Archives"
+msgstr "Archiv"
 
-#: mod/oexchange.php:25
-msgid "Post successful."
-msgstr "Beitrag erfolgreich veröffentlicht."
+#: include/oembed.php:264
+msgid "Embedded content"
+msgstr "Eingebetteter Inhalt"
 
-#: mod/update_community.php:19 mod/update_notes.php:36
-#: mod/update_display.php:23 mod/update_profile.php:35
-#: mod/update_network.php:27
-msgid "[Embedded content - reload page to view]"
-msgstr "[Eingebetteter Inhalt - Seite neu laden zum Betrachten]"
+#: include/oembed.php:272
+msgid "Embedding disabled"
+msgstr "Einbettungen deaktiviert"
 
-#: mod/dirfind.php:36
+#: include/ostatus.php:1825
 #, php-format
-msgid "People Search - %s"
-msgstr "Personensuche - %s"
+msgid "%s is now following %s."
+msgstr "%s folgt nun %s"
 
-#: mod/dirfind.php:47
-#, php-format
-msgid "Forum Search - %s"
-msgstr "Forensuche - %s"
+#: include/ostatus.php:1826
+msgid "following"
+msgstr "folgen"
 
-#: mod/dirfind.php:240 mod/match.php:107
-msgid "No matches"
-msgstr "Keine Übereinstimmungen"
+#: include/ostatus.php:1829
+#, php-format
+msgid "%s stopped following %s."
+msgstr "%s hat aufgehört %s zu folgen"
 
-#: mod/viewsrc.php:7
-msgid "Access denied."
-msgstr "Zugriff verweigert."
+#: include/ostatus.php:1830
+msgid "stopped following"
+msgstr "wird nicht mehr gefolgt"
 
-#: mod/home.php:35
-#, php-format
-msgid "Welcome to %s"
-msgstr "Willkommen zu %s"
+#: include/text.php:304
+msgid "newer"
+msgstr "neuer"
 
-#: mod/notify.php:60
-msgid "No more system notifications."
-msgstr "Keine weiteren Systembenachrichtigungen."
+#: include/text.php:306
+msgid "older"
+msgstr "älter"
 
-#: mod/notify.php:64 mod/notifications.php:111
-msgid "System Notifications"
-msgstr "Systembenachrichtigungen"
+#: include/text.php:311
+msgid "prev"
+msgstr "vorige"
 
-#: mod/search.php:25 mod/network.php:191
-msgid "Remove term"
-msgstr "Begriff entfernen"
+#: include/text.php:313
+msgid "first"
+msgstr "erste"
 
-#: mod/search.php:93 mod/search.php:99 mod/directory.php:37
-#: mod/viewcontacts.php:35 mod/videos.php:194 mod/photos.php:944
-#: mod/display.php:200 mod/community.php:22 mod/dfrn_request.php:791
-msgid "Public access denied."
-msgstr "Öffentlicher Zugriff verweigert."
+#: include/text.php:345
+msgid "last"
+msgstr "letzte"
 
-#: mod/search.php:100
-msgid "Only logged in users are permitted to perform a search."
-msgstr "Nur eingeloggten Benutzern ist das Suchen gestattet."
+#: include/text.php:348
+msgid "next"
+msgstr "nächste"
 
-#: mod/search.php:124
-msgid "Too Many Requests"
-msgstr "Zu viele Abfragen"
+#: include/text.php:403
+msgid "Loading more entries..."
+msgstr "lade weitere Einträge..."
 
-#: mod/search.php:125
-msgid "Only one search per minute is permitted for not logged in users."
-msgstr "Es ist nur eine Suchanfrage pro Minute für nicht eingeloggte Benutzer gestattet."
+#: include/text.php:404
+msgid "The end"
+msgstr "Das Ende"
 
-#: mod/search.php:224 mod/community.php:66 mod/community.php:75
-msgid "No results."
-msgstr "Keine Ergebnisse."
+#: include/text.php:889
+msgid "No contacts"
+msgstr "Keine Kontakte"
 
-#: mod/search.php:230
+#: include/text.php:912
 #, php-format
-msgid "Items tagged with: %s"
-msgstr "Beiträge die mit %s getaggt sind"
+msgid "%d Contact"
+msgid_plural "%d Contacts"
+msgstr[0] "%d Kontakt"
+msgstr[1] "%d Kontakte"
 
-#: mod/search.php:232 mod/contacts.php:797 mod/network.php:146
-#, php-format
-msgid "Results for: %s"
-msgstr "Ergebnisse für: %s"
+#: include/text.php:925
+msgid "View Contacts"
+msgstr "Kontakte anzeigen"
 
-#: mod/notifications.php:35
-msgid "Invalid request identifier."
-msgstr "Invalid request identifier."
+#: include/text.php:1013 mod/notes.php:61 mod/filer.php:31
+#: mod/editpost.php:109
+msgid "Save"
+msgstr "Speichern"
 
-#: mod/notifications.php:44 mod/notifications.php:180
-#: mod/notifications.php:252
-msgid "Discard"
-msgstr "Verwerfen"
+#: include/text.php:1076
+msgid "poke"
+msgstr "anstupsen"
 
-#: mod/notifications.php:60 mod/notifications.php:179
-#: mod/notifications.php:251 mod/contacts.php:606 mod/contacts.php:806
-#: mod/contacts.php:1000
-msgid "Ignore"
-msgstr "Ignorieren"
+#: include/text.php:1076
+msgid "poked"
+msgstr "stupste"
 
-#: mod/notifications.php:105
-msgid "Network Notifications"
-msgstr "Netzwerk Benachrichtigungen"
+#: include/text.php:1077
+msgid "ping"
+msgstr "anpingen"
 
-#: mod/notifications.php:117
-msgid "Personal Notifications"
-msgstr "Persönliche Benachrichtigungen"
+#: include/text.php:1077
+msgid "pinged"
+msgstr "pingte"
 
-#: mod/notifications.php:123
-msgid "Home Notifications"
-msgstr "Pinnwand Benachrichtigungen"
+#: include/text.php:1078
+msgid "prod"
+msgstr "knuffen"
 
-#: mod/notifications.php:152
-msgid "Show Ignored Requests"
-msgstr "Zeige ignorierte Anfragen"
+#: include/text.php:1078
+msgid "prodded"
+msgstr "knuffte"
 
-#: mod/notifications.php:152
-msgid "Hide Ignored Requests"
-msgstr "Verberge ignorierte Anfragen"
+#: include/text.php:1079
+msgid "slap"
+msgstr "ohrfeigen"
 
-#: mod/notifications.php:164 mod/notifications.php:222
-msgid "Notification type: "
-msgstr "Benachrichtigungstyp: "
+#: include/text.php:1079
+msgid "slapped"
+msgstr "ohrfeigte"
 
-#: mod/notifications.php:167
-#, php-format
-msgid "suggested by %s"
-msgstr "vorgeschlagen von %s"
+#: include/text.php:1080
+msgid "finger"
+msgstr "befummeln"
 
-#: mod/notifications.php:172 mod/notifications.php:239 mod/contacts.php:613
-msgid "Hide this contact from others"
-msgstr "Verbirg diesen Kontakt vor Anderen"
+#: include/text.php:1080
+msgid "fingered"
+msgstr "befummelte"
 
-#: mod/notifications.php:173 mod/notifications.php:240
-msgid "Post a new friend activity"
-msgstr "Neue-Kontakt Nachricht senden"
+#: include/text.php:1081
+msgid "rebuff"
+msgstr "eine Abfuhr erteilen"
 
-#: mod/notifications.php:173 mod/notifications.php:240
-msgid "if applicable"
-msgstr "falls anwendbar"
+#: include/text.php:1081
+msgid "rebuffed"
+msgstr "abfuhrerteilte"
 
-#: mod/notifications.php:176 mod/notifications.php:249 mod/admin.php:1412
-msgid "Approve"
-msgstr "Genehmigen"
+#: include/text.php:1095
+msgid "happy"
+msgstr "glücklich"
 
-#: mod/notifications.php:195
-msgid "Claims to be known to you: "
-msgstr "Behauptet Dich zu kennen: "
+#: include/text.php:1096
+msgid "sad"
+msgstr "traurig"
 
-#: mod/notifications.php:196
-msgid "yes"
-msgstr "ja"
+#: include/text.php:1097
+msgid "mellow"
+msgstr "sanft"
 
-#: mod/notifications.php:196
-msgid "no"
-msgstr "nein"
+#: include/text.php:1098
+msgid "tired"
+msgstr "müde"
 
-#: mod/notifications.php:197
-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 "Soll Deine Beziehung beidseitig sein oder nicht? \"Kontakt\" bedeutet, ihr könnt gegenseitig die Beiträge des Anderen lesen dürft. \"Fan/Verehrer\", dass du das lesen deiner Beiträge erlaubst aber nicht die Beiträge der anderen Seite lesen möchtest. Genehmigen als:"
+#: include/text.php:1099
+msgid "perky"
+msgstr "frech"
 
-#: mod/notifications.php:200
-msgid ""
-"Shall your connection be bidirectional or not? \"Friend\" implies that you "
-"allow to read and you subscribe to their posts. \"Sharer\" means that you "
-"allow to read but you do not want to read theirs. Approve as: "
-msgstr "Soll Deine Beziehung beidseitig sein oder nicht? \"Freund\" bedeutet, ihr gegenseitig die Beiträge des Anderen lesen dürft. \"Teilenden\", das du das lesen deiner Beiträge erlaubst aber nicht die Beiträge der anderen Seite lesen möchtest. Genehmigen als:"
+#: include/text.php:1100
+msgid "angry"
+msgstr "sauer"
 
-#: mod/notifications.php:209
-msgid "Friend"
-msgstr "Kontakt"
+#: include/text.php:1101
+msgid "stupified"
+msgstr "verblüfft"
 
-#: mod/notifications.php:210
-msgid "Sharer"
-msgstr "Teilenden"
+#: include/text.php:1102
+msgid "puzzled"
+msgstr "verwirrt"
 
-#: mod/notifications.php:210
-msgid "Fan/Admirer"
-msgstr "Fan/Verehrer"
+#: include/text.php:1103
+msgid "interested"
+msgstr "interessiert"
 
-#: mod/notifications.php:243 mod/contacts.php:624 mod/follow.php:126
-msgid "Profile URL"
-msgstr "Profil URL"
+#: include/text.php:1104
+msgid "bitter"
+msgstr "verbittert"
 
-#: mod/notifications.php:260
-msgid "No introductions."
-msgstr "Keine Kontaktanfragen."
+#: include/text.php:1105
+msgid "cheerful"
+msgstr "fröhlich"
 
-#: mod/notifications.php:299
-msgid "Show unread"
-msgstr "Ungelesene anzeigen"
+#: include/text.php:1106
+msgid "alive"
+msgstr "lebendig"
 
-#: mod/notifications.php:299
-msgid "Show all"
-msgstr "Alle anzeigen"
+#: include/text.php:1107
+msgid "annoyed"
+msgstr "verärgert"
 
-#: mod/notifications.php:305
-#, php-format
-msgid "No more %s notifications."
-msgstr "Keine weiteren %s Benachrichtigungen"
+#: include/text.php:1108
+msgid "anxious"
+msgstr "unruhig"
 
-#: mod/dfrn_confirm.php:70 mod/profiles.php:19 mod/profiles.php:134
-#: mod/profiles.php:180 mod/profiles.php:617
-msgid "Profile not found."
-msgstr "Profil nicht gefunden."
+#: include/text.php:1109
+msgid "cranky"
+msgstr "schrullig"
 
-#: mod/dfrn_confirm.php:126 mod/fsuggest.php:20 mod/fsuggest.php:92
-#: mod/crepair.php:114
-msgid "Contact not found."
-msgstr "Kontakt nicht gefunden."
+#: include/text.php:1110
+msgid "disturbed"
+msgstr "verstört"
 
-#: mod/dfrn_confirm.php:127
-msgid ""
-"This may occasionally happen if contact was requested by both persons and it"
-" has already been approved."
-msgstr "Das kann passieren, wenn sich zwei Kontakte gegenseitig eingeladen haben und bereits einer angenommen wurde."
+#: include/text.php:1111
+msgid "frustrated"
+msgstr "frustriert"
 
-#: mod/dfrn_confirm.php:246
-msgid "Response from remote site was not understood."
-msgstr "Antwort der Gegenstelle unverständlich."
+#: include/text.php:1112
+msgid "motivated"
+msgstr "motiviert"
 
-#: mod/dfrn_confirm.php:255 mod/dfrn_confirm.php:260
-msgid "Unexpected response from remote site: "
-msgstr "Unerwartete Antwort der Gegenstelle: "
+#: include/text.php:1113
+msgid "relaxed"
+msgstr "entspannt"
 
-#: mod/dfrn_confirm.php:269
-msgid "Confirmation completed successfully."
-msgstr "Bestätigung erfolgreich abgeschlossen."
+#: include/text.php:1114
+msgid "surprised"
+msgstr "überrascht"
 
-#: mod/dfrn_confirm.php:271 mod/dfrn_confirm.php:285 mod/dfrn_confirm.php:292
-msgid "Remote site reported: "
-msgstr "Gegenstelle meldet: "
+#: include/text.php:1324 mod/videos.php:380
+msgid "View Video"
+msgstr "Video ansehen"
 
-#: mod/dfrn_confirm.php:283
-msgid "Temporary failure. Please wait and try again."
-msgstr "Zeitweiser Fehler. Bitte warte einige Momente und versuche es dann noch einmal."
+#: include/text.php:1356
+msgid "bytes"
+msgstr "Byte"
 
-#: mod/dfrn_confirm.php:290
-msgid "Introduction failed or was revoked."
-msgstr "Kontaktanfrage schlug fehl oder wurde zurückgezogen."
+#: include/text.php:1388 include/text.php:1400
+msgid "Click to open/close"
+msgstr "Zum öffnen/schließen klicken"
 
-#: mod/dfrn_confirm.php:419
-msgid "Unable to set contact photo."
-msgstr "Konnte das Bild des Kontakts nicht speichern."
+#: include/text.php:1526
+msgid "View on separate page"
+msgstr "Auf separater Seite ansehen"
 
-#: mod/dfrn_confirm.php:557
-#, php-format
-msgid "No user record found for '%s' "
-msgstr "Für '%s' wurde kein Nutzer gefunden"
+#: include/text.php:1527
+msgid "view on separate page"
+msgstr "auf separater Seite ansehen"
 
-#: mod/dfrn_confirm.php:567
-msgid "Our site encryption key is apparently messed up."
-msgstr "Der Verschlüsselungsschlüssel unserer Seite ist anscheinend nicht in Ordnung."
+#: include/text.php:1806
+msgid "activity"
+msgstr "Aktivität"
 
-#: mod/dfrn_confirm.php:578
-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."
+#: include/text.php:1808 mod/content.php:623 object/Item.php:431
+#: object/Item.php:444
+msgid "comment"
+msgid_plural "comments"
+msgstr[0] "Kommentar"
+msgstr[1] "Kommentare"
 
-#: mod/dfrn_confirm.php:599
-msgid "Contact record was not found for you on our site."
-msgstr "Für diesen Kontakt wurde auf unserer Seite kein Eintrag gefunden."
+#: include/text.php:1809
+msgid "post"
+msgstr "Beitrag"
 
-#: mod/dfrn_confirm.php:613
+#: include/text.php:1977
+msgid "Item filed"
+msgstr "Beitrag abgelegt"
+
+#: include/user.php:39 mod/settings.php:373
+msgid "Passwords do not match. Password unchanged."
+msgstr "Die Passwörter stimmen nicht überein. Das Passwort bleibt unverändert."
+
+#: include/user.php:48
+msgid "An invitation is required."
+msgstr "Du benötigst eine Einladung."
+
+#: include/user.php:53
+msgid "Invitation could not be verified."
+msgstr "Die Einladung konnte nicht überprüft werden."
+
+#: include/user.php:61
+msgid "Invalid OpenID url"
+msgstr "Ungültige OpenID URL"
+
+#: include/user.php:82
+msgid "Please enter the required information."
+msgstr "Bitte trage die erforderlichen Informationen ein."
+
+#: include/user.php:96
+msgid "Please use a shorter name."
+msgstr "Bitte verwende einen kürzeren Namen."
+
+#: include/user.php:98
+msgid "Name too short."
+msgstr "Der Name ist zu kurz."
+
+#: include/user.php:113
+msgid "That doesn't appear to be your full (First Last) name."
+msgstr "Das scheint nicht Dein kompletter Name (Vor- und Nachname) zu sein."
+
+#: include/user.php:118
+msgid "Your email domain is not among those allowed on this site."
+msgstr "Die Domain Deiner E-Mail Adresse ist auf dieser Seite nicht erlaubt."
+
+#: include/user.php:121
+msgid "Not a valid email address."
+msgstr "Keine gültige E-Mail-Adresse."
+
+#: include/user.php:134
+msgid "Cannot use that email."
+msgstr "Konnte diese E-Mail-Adresse nicht verwenden."
+
+#: include/user.php:140
+msgid "Your \"nickname\" can only contain \"a-z\", \"0-9\" and \"_\"."
+msgstr "Dein Spitzname darf nur aus Buchstaben und Zahlen (\"a-z\",\"0-9\" und \"_\") bestehen."
+
+#: include/user.php:147 include/user.php:245
+msgid "Nickname is already registered. Please choose another."
+msgstr "Dieser Spitzname ist bereits vergeben. Bitte wähle einen anderen."
+
+#: include/user.php:157
+msgid ""
+"Nickname was once registered here and may not be re-used. Please choose "
+"another."
+msgstr "Dieser Spitzname ist bereits vergeben. Bitte wähle einen anderen."
+
+#: include/user.php:173
+msgid "SERIOUS ERROR: Generation of security keys failed."
+msgstr "FATALER FEHLER: Sicherheitsschlüssel konnten nicht erzeugt werden."
+
+#: include/user.php:231
+msgid "An error occurred during registration. Please try again."
+msgstr "Während der Anmeldung ist ein Fehler aufgetreten. Bitte versuche es noch einmal."
+
+#: include/user.php:256 view/theme/duepuntozero/config.php:44
+msgid "default"
+msgstr "Standard"
+
+#: include/user.php:266
+msgid "An error occurred creating your default profile. Please try again."
+msgstr "Bei der Erstellung des Standardprofils ist ein Fehler aufgetreten. Bitte versuche es noch einmal."
+
+#: include/user.php:326 include/user.php:333 include/user.php:340
+#: mod/profile_photo.php:74 mod/profile_photo.php:81 mod/profile_photo.php:88
+#: mod/profile_photo.php:210 mod/profile_photo.php:302
+#: mod/profile_photo.php:311 mod/photos.php:66 mod/photos.php:180
+#: mod/photos.php:751 mod/photos.php:1211 mod/photos.php:1232
+#: mod/photos.php:1819
+msgid "Profile Photos"
+msgstr "Profilbilder"
+
+#: include/user.php:414
 #, 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."
+msgid ""
+"\n"
+"\t\tDear %1$s,\n"
+"\t\t\tThank you for registering at %2$s. Your account is pending for approval by the administrator.\n"
+"\t"
+msgstr "\nHallo %1$s,\n\ndanke für Deine Registrierung auf %2$s. Dein Account wurde muss noch vom Admin des Knotens geprüft werden."
 
-#: mod/dfrn_confirm.php:633
+#: include/user.php:424
+#, php-format
+msgid "Registration at %s"
+msgstr "Registrierung als %s"
+
+#: include/user.php:434
+#, php-format
 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."
+"\n"
+"\t\tDear %1$s,\n"
+"\t\t\tThank you for registering at %2$s. Your account has been created.\n"
+"\t"
+msgstr "\nHallo %1$s,\n\ndanke für Deine Registrierung auf %2$s. Dein Account wurde eingerichtet."
 
-#: mod/dfrn_confirm.php:644
-msgid "Unable to set your contact credentials on our system."
-msgstr "Deine Kontaktreferenzen konnten nicht in unserem System gespeichert werden."
+#: include/user.php:438
+#, 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 "\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."
 
-#: mod/dfrn_confirm.php:703
-msgid "Unable to update your contact profile details on our system"
-msgstr "Die Updates für Dein Profil konnten nicht gespeichert werden"
+#: include/user.php:470 mod/admin.php:1213
+#, php-format
+msgid "Registration details for %s"
+msgstr "Details der Registration von %s"
 
-#: mod/dfrn_confirm.php:775
+#: mod/oexchange.php:25
+msgid "Post successful."
+msgstr "Beitrag erfolgreich veröffentlicht."
+
+#: mod/viewsrc.php:7
+msgid "Access denied."
+msgstr "Zugriff verweigert."
+
+#: mod/home.php:35
 #, php-format
-msgid "%1$s has joined %2$s"
-msgstr "%1$s ist %2$s beigetreten"
+msgid "Welcome to %s"
+msgstr "Willkommen zu %s"
+
+#: mod/notify.php:60
+msgid "No more system notifications."
+msgstr "Keine weiteren Systembenachrichtigungen."
+
+#: mod/notify.php:64 mod/notifications.php:111
+msgid "System Notifications"
+msgstr "Systembenachrichtigungen"
+
+#: mod/search.php:25 mod/network.php:191
+msgid "Remove term"
+msgstr "Begriff entfernen"
+
+#: mod/search.php:93 mod/search.php:99 mod/community.php:22
+#: mod/directory.php:37 mod/display.php:200 mod/photos.php:944
+#: mod/videos.php:194 mod/dfrn_request.php:791 mod/viewcontacts.php:35
+msgid "Public access denied."
+msgstr "Öffentlicher Zugriff verweigert."
+
+#: mod/search.php:100
+msgid "Only logged in users are permitted to perform a search."
+msgstr "Nur eingeloggten Benutzern ist das Suchen gestattet."
+
+#: mod/search.php:124
+msgid "Too Many Requests"
+msgstr "Zu viele Abfragen"
+
+#: mod/search.php:125
+msgid "Only one search per minute is permitted for not logged in users."
+msgstr "Es ist nur eine Suchanfrage pro Minute für nicht eingeloggte Benutzer gestattet."
+
+#: mod/search.php:224 mod/community.php:66 mod/community.php:75
+msgid "No results."
+msgstr "Keine Ergebnisse."
+
+#: mod/search.php:230
+#, php-format
+msgid "Items tagged with: %s"
+msgstr "Beiträge die mit %s getaggt sind"
+
+#: mod/search.php:232 mod/contacts.php:797 mod/network.php:146
+#, php-format
+msgid "Results for: %s"
+msgstr "Ergebnisse für: %s"
 
 #: mod/friendica.php:70
 msgid "This is Friendica, version"
@@ -3560,6 +3257,10 @@ msgid ""
 "Password reset failed."
 msgstr "Anfrage konnte nicht verifiziert werden. (Eventuell hast Du bereits eine ähnliche Anfrage gestellt.) Zurücksetzen des Passworts gescheitert."
 
+#: mod/lostpass.php:109 boot.php:1807
+msgid "Password Reset"
+msgstr "Passwort zurücksetzen"
+
 #: mod/lostpass.php:110
 msgid "Your password has been reset as requested."
 msgstr "Dein Passwort wurde wie gewünscht zurückgesetzt."
@@ -3622,6 +3323,10 @@ msgid ""
 "your email for further instructions."
 msgstr "Gib Deine E-Mail-Adresse an und fordere ein neues Passwort an. Es werden Dir dann weitere Informationen per Mail zugesendet."
 
+#: mod/lostpass.php:161 boot.php:1795
+msgid "Nickname or Email: "
+msgstr "Spitzname oder E-Mail:"
+
 #: mod/lostpass.php:162
 msgid "Reset"
 msgstr "Zurücksetzen"
@@ -3634,50 +3339,14 @@ msgstr "Kein Profil"
 msgid "Help:"
 msgstr "Hilfe:"
 
-#: mod/wall_upload.php:20 mod/wall_upload.php:33 mod/wall_upload.php:86
-#: mod/wall_upload.php:122 mod/wall_upload.php:125 mod/wall_attach.php:17
-#: mod/wall_attach.php:25 mod/wall_attach.php:76
-msgid "Invalid request."
-msgstr "Ungültige Anfrage"
-
-#: mod/wall_upload.php:151 mod/photos.php:786 mod/profile_photo.php:150
-#, php-format
-msgid "Image exceeds size limit of %s"
-msgstr "Bildgröße überschreitet das Limit von %s"
-
-#: mod/wall_upload.php:188 mod/photos.php:826 mod/profile_photo.php:159
-msgid "Unable to process image."
-msgstr "Konnte das Bild nicht bearbeiten."
-
-#: mod/wall_upload.php:221 mod/photos.php:853 mod/profile_photo.php:307
-msgid "Image upload failed."
-msgstr "Hochladen des Bildes gescheitert."
-
-#: mod/fsuggest.php:63
-msgid "Friend suggestion sent."
-msgstr "Kontaktvorschlag gesendet."
-
-#: mod/fsuggest.php:97
-msgid "Suggest Friends"
-msgstr "Kontakte vorschlagen"
-
-#: mod/fsuggest.php:99
-#, php-format
-msgid "Suggest a friend for %s"
-msgstr "Schlage %s einen Kontakt vor"
+#: mod/help.php:53 mod/p.php:16 mod/p.php:43 mod/p.php:52 mod/fetch.php:12
+#: mod/fetch.php:39 mod/fetch.php:48 index.php:288
+msgid "Not Found"
+msgstr "Nicht gefunden"
 
-#: mod/fsuggest.php:107 mod/events.php:506 mod/invite.php:140
-#: mod/crepair.php:154 mod/content.php:728 mod/profiles.php:688
-#: mod/poke.php:199 mod/photos.php:1104 mod/photos.php:1226
-#: mod/photos.php:1539 mod/photos.php:1590 mod/photos.php:1638
-#: mod/photos.php:1724 mod/install.php:272 mod/install.php:312
-#: mod/contacts.php:577 mod/mood.php:137 mod/localtime.php:45
-#: mod/message.php:357 mod/message.php:547 mod/manage.php:143
-#: object/Item.php:720 view/theme/frio/config.php:59
-#: view/theme/quattro/config.php:64 view/theme/vier/config.php:107
-#: view/theme/duepuntozero/config.php:59
-msgid "Submit"
-msgstr "Senden"
+#: mod/help.php:56 index.php:291
+msgid "Page not found."
+msgstr "Seite nicht gefunden."
 
 #: mod/lockview.php:31 mod/lockview.php:39
 msgid "Remote privacy information not available."
@@ -3687,102 +3356,14 @@ msgstr "Entfernte Privatsphäreneinstellungen nicht verfügbar."
 msgid "Visible to:"
 msgstr "Sichtbar für:"
 
-#: mod/events.php:95 mod/events.php:97
-msgid "Event can not end before it has started."
-msgstr "Die Veranstaltung kann nicht enden bevor sie beginnt."
-
-#: mod/events.php:104 mod/events.php:106
-msgid "Event title and start time are required."
-msgstr "Der Veranstaltungstitel und die Anfangszeit müssen angegeben werden."
+#: mod/openid.php:24
+msgid "OpenID protocol error. No ID returned."
+msgstr "OpenID Protokollfehler. Keine ID zurückgegeben."
 
-#: mod/events.php:380 mod/cal.php:276
-msgid "View"
-msgstr "Ansehen"
-
-#: mod/events.php:381
-msgid "Create New Event"
-msgstr "Neue Veranstaltung erstellen"
-
-#: mod/events.php:382 mod/cal.php:277
-msgid "Previous"
-msgstr "Vorherige"
-
-#: mod/events.php:383 mod/cal.php:278 mod/install.php:231
-msgid "Next"
-msgstr "Nächste"
-
-#: mod/events.php:392 mod/cal.php:287
-msgid "list"
-msgstr "Liste"
-
-#: mod/events.php:482
-msgid "Event details"
-msgstr "Veranstaltungsdetails"
-
-#: mod/events.php:483
-msgid "Starting date and Title are required."
-msgstr "Anfangszeitpunkt und Titel werden benötigt"
-
-#: mod/events.php:484 mod/events.php:485
-msgid "Event Starts:"
-msgstr "Veranstaltungsbeginn:"
-
-#: mod/events.php:484 mod/events.php:496 mod/profiles.php:716
-msgid "Required"
-msgstr "Benötigt"
-
-#: mod/events.php:486 mod/events.php:502
-msgid "Finish date/time is not known or not relevant"
-msgstr "Enddatum/-zeit ist nicht bekannt oder nicht relevant"
-
-#: mod/events.php:488 mod/events.php:489
-msgid "Event Finishes:"
-msgstr "Veranstaltungsende:"
-
-#: mod/events.php:490 mod/events.php:503
-msgid "Adjust for viewer timezone"
-msgstr "An Zeitzone des Betrachters anpassen"
-
-#: mod/events.php:492
-msgid "Description:"
-msgstr "Beschreibung"
-
-#: mod/events.php:496 mod/events.php:498
-msgid "Title:"
-msgstr "Titel:"
-
-#: mod/events.php:499 mod/events.php:500
-msgid "Share this event"
-msgstr "Veranstaltung teilen"
-
-#: mod/directory.php:197 view/theme/vier/theme.php:201
-msgid "Global Directory"
-msgstr "Weltweites Verzeichnis"
-
-#: mod/directory.php:199
-msgid "Find on this site"
-msgstr "Auf diesem Server suchen"
-
-#: mod/directory.php:201
-msgid "Results for:"
-msgstr "Ergebnisse für:"
-
-#: mod/directory.php:203
-msgid "Site Directory"
-msgstr "Verzeichnis"
-
-#: mod/directory.php:210
-msgid "No entries (some entries may be hidden)."
-msgstr "Keine Einträge (einige Einträge könnten versteckt sein)."
-
-#: mod/openid.php:24
-msgid "OpenID protocol error. No ID returned."
-msgstr "OpenID Protokollfehler. Keine ID zurückgegeben."
-
-#: mod/openid.php:60
-msgid ""
-"Account not found and OpenID registration is not permitted on this site."
-msgstr "Nutzerkonto wurde nicht gefunden und OpenID-Registrierung ist auf diesem Server nicht gestattet."
+#: mod/openid.php:60
+msgid ""
+"Account not found and OpenID registration is not permitted on this site."
+msgstr "Nutzerkonto wurde nicht gefunden und OpenID-Registrierung ist auf diesem Server nicht gestattet."
 
 #: mod/uimport.php:50 mod/register.php:198
 msgid ""
@@ -3825,13 +3406,13 @@ msgid ""
 "select \"Export account\""
 msgstr "Um Deinen Account zu exportieren, rufe \"Einstellungen -> Persönliche Daten exportieren\" auf und wähle \"Account exportieren\""
 
-#: mod/nogroup.php:41 mod/viewcontacts.php:97 mod/contacts.php:586
-#: mod/contacts.php:939
+#: mod/nogroup.php:41 mod/contacts.php:586 mod/contacts.php:930
+#: mod/viewcontacts.php:97
 #, php-format
 msgid "Visit %s's profile [%s]"
 msgstr "Besuche %ss Profil [%s]"
 
-#: mod/nogroup.php:42 mod/contacts.php:940
+#: mod/nogroup.php:42 mod/contacts.php:931
 msgid "Edit contact"
 msgstr "Kontakt bearbeiten"
 
@@ -3839,18 +3420,6 @@ msgstr "Kontakt bearbeiten"
 msgid "Contacts who are not members of a group"
 msgstr "Kontakte, die keiner Gruppe zugewiesen sind"
 
-#: mod/match.php:33
-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:86
-msgid "is interested in:"
-msgstr "ist interessiert an:"
-
-#: mod/match.php:100
-msgid "Profile Match"
-msgstr "Profilübereinstimmungen"
-
 #: mod/uexport.php:29
 msgid "Export account"
 msgstr "Account exportieren"
@@ -3973,13 +3542,25 @@ msgid ""
 "important, please visit http://friendica.com"
 msgstr "Für weitere Informationen über das Friendica Projekt und warum wir es für ein wichtiges Projekt halten, besuche bitte http://friendica.com"
 
+#: mod/invite.php:140 mod/localtime.php:45 mod/message.php:357
+#: mod/message.php:547 mod/manage.php:143 mod/crepair.php:154
+#: mod/content.php:728 mod/fsuggest.php:107 mod/mood.php:137 mod/poke.php:199
+#: mod/profiles.php:688 mod/events.php:506 mod/photos.php:1104
+#: mod/photos.php:1226 mod/photos.php:1539 mod/photos.php:1590
+#: mod/photos.php:1638 mod/photos.php:1724 mod/contacts.php:577
+#: mod/install.php:272 mod/install.php:312 object/Item.php:720
+#: view/theme/frio/config.php:59 view/theme/quattro/config.php:64
+#: view/theme/vier/config.php:107 view/theme/duepuntozero/config.php:59
+msgid "Submit"
+msgstr "Senden"
+
 #: mod/fbrowser.php:133
 msgid "Files"
 msgstr "Dateien"
 
-#: mod/maintenance.php:9
-msgid "System down for maintenance"
-msgstr "System zur Wartung abgeschaltet"
+#: mod/profperm.php:19 mod/group.php:72 index.php:400
+msgid "Permission denied"
+msgstr "Zugriff verweigert"
 
 #: mod/profperm.php:25 mod/profperm.php:56
 msgid "Invalid profile identifier."
@@ -4001,102 +3582,6 @@ msgstr "Sichtbar für"
 msgid "All Contacts (with secure profile access)"
 msgstr "Alle Kontakte (mit gesichertem Profilzugriff)"
 
-#: mod/viewcontacts.php:72
-msgid "No contacts."
-msgstr "Keine Kontakte."
-
-#: mod/crepair.php:87
-msgid "Contact settings applied."
-msgstr "Einstellungen zum Kontakt angewandt."
-
-#: mod/crepair.php:89
-msgid "Contact update failed."
-msgstr "Konnte den Kontakt nicht aktualisieren."
-
-#: mod/crepair.php:120
-msgid ""
-"<strong>WARNING: This is highly advanced</strong> and if you enter incorrect"
-" information your communications with this contact may stop working."
-msgstr "<strong>ACHTUNG: Das sind Experten-Einstellungen!</strong> Wenn Du etwas Falsches eingibst, funktioniert die Kommunikation mit diesem Kontakt evtl. nicht mehr."
-
-#: mod/crepair.php:121
-msgid ""
-"Please use your browser 'Back' button <strong>now</strong> if you are "
-"uncertain what to do on this page."
-msgstr "Bitte nutze den Zurück-Button Deines Browsers <strong>jetzt</strong>, wenn Du Dir unsicher bist, was Du tun willst."
-
-#: mod/crepair.php:134 mod/crepair.php:136
-msgid "No mirroring"
-msgstr "Kein Spiegeln"
-
-#: mod/crepair.php:134
-msgid "Mirror as forwarded posting"
-msgstr "Spiegeln als weitergeleitete Beiträge"
-
-#: mod/crepair.php:134 mod/crepair.php:136
-msgid "Mirror as my own posting"
-msgstr "Spiegeln als meine eigenen Beiträge"
-
-#: mod/crepair.php:150
-msgid "Return to contact editor"
-msgstr "Zurück zum Kontakteditor"
-
-#: mod/crepair.php:152
-msgid "Refetch contact data"
-msgstr "Kontaktdaten neu laden"
-
-#: mod/crepair.php:156
-msgid "Remote Self"
-msgstr "Entfernte Konten"
-
-#: mod/crepair.php:159
-msgid "Mirror postings from this contact"
-msgstr "Spiegle Beiträge dieses Kontakts"
-
-#: mod/crepair.php:161
-msgid ""
-"Mark this contact as remote_self, this will cause friendica to repost new "
-"entries from this contact."
-msgstr "Markiere diesen Kontakt als remote_self (entferntes Konto), dies veranlasst Friendica alle Top-Level Beiträge dieses Kontakts an all Deine Kontakte zu senden."
-
-#: mod/crepair.php:165 mod/admin.php:1396 mod/admin.php:1409
-#: mod/admin.php:1422 mod/admin.php:1438 mod/settings.php:680
-#: mod/settings.php:706
-msgid "Name"
-msgstr "Name"
-
-#: mod/crepair.php:166
-msgid "Account Nickname"
-msgstr "Konto-Spitzname"
-
-#: mod/crepair.php:167
-msgid "@Tagname - overrides Name/Nickname"
-msgstr "@Tagname - überschreibt Name/Spitzname"
-
-#: mod/crepair.php:168
-msgid "Account URL"
-msgstr "Konto-URL"
-
-#: mod/crepair.php:169
-msgid "Friend Request URL"
-msgstr "URL für Kontaktschaftsanfragen"
-
-#: mod/crepair.php:170
-msgid "Friend Confirm URL"
-msgstr "URL für Bestätigungen von Kontaktanfragen"
-
-#: mod/crepair.php:171
-msgid "Notification Endpoint URL"
-msgstr "URL-Endpunkt für Benachrichtigungen"
-
-#: mod/crepair.php:172
-msgid "Poll/Feed URL"
-msgstr "Pull/Feed-URL"
-
-#: mod/crepair.php:173
-msgid "New photo from this URL"
-msgstr "Neues Foto von dieser URL"
-
 #: mod/tagrm.php:41
 msgid "Tag removed"
 msgstr "Tag entfernt"
@@ -4113,1460 +3598,1442 @@ msgstr "Wähle ein Tag zum Entfernen aus: "
 msgid "Remove"
 msgstr "Entfernen"
 
-#: mod/ping.php:261
-msgid "{0} wants to be your friend"
-msgstr "{0} möchte mit Dir in Kontakt treten"
+#: mod/repair_ostatus.php:14
+msgid "Resubscribing to OStatus contacts"
+msgstr "Erneuern der OStatus Abonements"
 
-#: mod/ping.php:276
-msgid "{0} sent you a message"
-msgstr "{0} schickte Dir eine Nachricht"
+#: mod/repair_ostatus.php:30
+msgid "Error"
+msgstr "Fehler"
 
-#: mod/ping.php:291
-msgid "{0} requested registration"
-msgstr "{0} möchte sich registrieren"
+#: mod/repair_ostatus.php:44 mod/ostatus_subscribe.php:51
+msgid "Done"
+msgstr "Erledigt"
 
-#: mod/admin.php:92
-msgid "Theme settings updated."
-msgstr "Themeneinstellungen aktualisiert."
+#: mod/repair_ostatus.php:50 mod/ostatus_subscribe.php:73
+msgid "Keep this window open until done."
+msgstr "Lasse dieses Fenster offen, bis der Vorgang abgeschlossen ist."
 
-#: mod/admin.php:156 mod/admin.php:954
-msgid "Site"
-msgstr "Seite"
+#: mod/delegate.php:101
+msgid "No potential page delegates located."
+msgstr "Keine potentiellen Bevollmächtigten für die Seite gefunden."
 
-#: mod/admin.php:157 mod/admin.php:898 mod/admin.php:1404 mod/admin.php:1420
-msgid "Users"
-msgstr "Nutzer"
+#: mod/delegate.php:132
+msgid ""
+"Delegates are able to manage all aspects of this account/page except for "
+"basic account settings. Please do not delegate your personal account to "
+"anybody that you do not trust completely."
+msgstr "Bevollmächtigte sind in der Lage, alle Aspekte dieses Kontos/dieser Seite zu verwalten, abgesehen von den Grundeinstellungen des Kontos. Bitte gib niemandem eine Bevollmächtigung für Deinen privaten Account, dem Du nicht absolut vertraust!"
 
-#: mod/admin.php:158 mod/admin.php:1522 mod/admin.php:1582 mod/settings.php:74
-msgid "Plugins"
-msgstr "Plugins"
+#: mod/delegate.php:133
+msgid "Existing Page Managers"
+msgstr "Vorhandene Seitenmanager"
 
-#: mod/admin.php:159 mod/admin.php:1780 mod/admin.php:1830
-msgid "Themes"
-msgstr "Themen"
+#: mod/delegate.php:135
+msgid "Existing Page Delegates"
+msgstr "Vorhandene Bevollmächtigte für die Seite"
 
-#: mod/admin.php:160 mod/settings.php:52
-msgid "Additional features"
-msgstr "Zusätzliche Features"
+#: mod/delegate.php:137
+msgid "Potential Delegates"
+msgstr "Potentielle Bevollmächtigte"
 
-#: mod/admin.php:161
-msgid "DB updates"
-msgstr "DB Updates"
+#: mod/delegate.php:140
+msgid "Add"
+msgstr "Hinzufügen"
 
-#: mod/admin.php:162 mod/admin.php:406
-msgid "Inspect Queue"
-msgstr "Warteschlange Inspizieren"
-
-#: mod/admin.php:163 mod/admin.php:372
-msgid "Federation Statistics"
-msgstr "Federation Statistik"
+#: mod/delegate.php:141
+msgid "No entries."
+msgstr "Keine Einträge."
 
-#: mod/admin.php:177 mod/admin.php:188 mod/admin.php:1904
-msgid "Logs"
-msgstr "Protokolle"
+#: mod/credits.php:16
+msgid "Credits"
+msgstr "Credits"
 
-#: mod/admin.php:178 mod/admin.php:1972
-msgid "View Logs"
-msgstr "Protokolle anzeigen"
+#: mod/credits.php:17
+msgid ""
+"Friendica is a community project, that would not be possible without the "
+"help of many people. Here is a list of those who have contributed to the "
+"code or the translation of Friendica. Thank you all!"
+msgstr "Friendica ist ein Gemeinschaftsprojekt, das nicht ohne die Hilfe vieler Personen möglich wäre. Hier ist eine Aufzählung der Personen, die zum Code oder der Übersetzung beigetragen haben. Dank an alle !"
 
-#: mod/admin.php:179
-msgid "probe address"
-msgstr "Adresse untersuchen"
+#: mod/filer.php:30
+msgid "- select -"
+msgstr "- auswählen -"
 
-#: mod/admin.php:180
-msgid "check webfinger"
-msgstr "Webfinger überprüfen"
+#: mod/subthread.php:103
+#, php-format
+msgid "%1$s is following %2$s's %3$s"
+msgstr "%1$s folgt %2$s %3$s"
 
-#: mod/admin.php:187
-msgid "Plugin Features"
-msgstr "Plugin Features"
+#: mod/attach.php:8
+msgid "Item not available."
+msgstr "Beitrag nicht verfügbar."
 
-#: mod/admin.php:189
-msgid "diagnostics"
-msgstr "Diagnose"
+#: mod/attach.php:20
+msgid "Item was not found."
+msgstr "Beitrag konnte nicht gefunden werden."
 
-#: mod/admin.php:190
-msgid "User registrations waiting for confirmation"
-msgstr "Nutzeranmeldungen die auf Bestätigung warten"
+#: mod/apps.php:7 index.php:244
+msgid "You must be logged in to use addons. "
+msgstr "Sie müssen angemeldet sein um Addons benutzen zu können."
 
-#: mod/admin.php:306
-msgid "unknown"
-msgstr "Unbekannt"
+#: mod/apps.php:11
+msgid "Applications"
+msgstr "Anwendungen"
 
-#: mod/admin.php:365
-msgid ""
-"This page offers you some numbers to the known part of the federated social "
-"network your Friendica node is part of. These numbers are not complete but "
-"only reflect the part of the network your node is aware of."
-msgstr "Diese Seite präsentiert einige Zahlen zu dem bekannten Teil des föderalen sozialen Netzwerks, von dem deine Friendica Installation ein Teil ist. Diese Zahlen sind nicht absolut und reflektieren nur den Teil des Netzwerks, den dein Knoten kennt."
+#: mod/apps.php:14
+msgid "No installed applications."
+msgstr "Keine Applikationen installiert."
 
-#: mod/admin.php:366
-msgid ""
-"The <em>Auto Discovered Contact Directory</em> feature is not enabled, it "
-"will improve the data displayed here."
-msgstr "Die Funktion um <em>Automatisch ein Kontaktverzeichnis erstellen</em> ist nicht aktiv. Es wird die hier angezeigten Daten verbessern."
+#: mod/p.php:9
+msgid "Not Extended"
+msgstr "Nicht erweitert."
 
-#: mod/admin.php:371 mod/admin.php:405 mod/admin.php:484 mod/admin.php:953
-#: mod/admin.php:1403 mod/admin.php:1521 mod/admin.php:1581 mod/admin.php:1779
-#: mod/admin.php:1829 mod/admin.php:1903 mod/admin.php:1971
-msgid "Administration"
-msgstr "Administration"
+#: mod/newmember.php:6
+msgid "Welcome to Friendica"
+msgstr "Willkommen bei Friendica"
 
-#: mod/admin.php:378
-#, php-format
-msgid "Currently this node is aware of %d nodes from the following platforms:"
-msgstr "Momentan kennt dieser Knoten %d andere Knoten der folgenden Plattformen:"
+#: mod/newmember.php:8
+msgid "New Member Checklist"
+msgstr "Checkliste für neue Mitglieder"
 
-#: mod/admin.php:408
-msgid "ID"
-msgstr "ID"
+#: mod/newmember.php:12
+msgid ""
+"We would like to offer some tips and links to help make your experience "
+"enjoyable. Click any item to visit the relevant page. A link to this page "
+"will be visible from your home page for two weeks after your initial "
+"registration and then will quietly disappear."
+msgstr "Wir möchten Dir einige Tipps und Links anbieten, die Dir helfen könnten, den Einstieg angenehmer zu machen. Klicke auf ein Element, um die entsprechende Seite zu besuchen. Ein Link zu dieser Seite hier bleibt für Dich an Deiner Pinnwand für zwei Wochen nach dem Registrierungsdatum sichtbar und wird dann verschwinden."
 
-#: mod/admin.php:409
-msgid "Recipient Name"
-msgstr "Empfänger Name"
+#: mod/newmember.php:14
+msgid "Getting Started"
+msgstr "Einstieg"
 
-#: mod/admin.php:410
-msgid "Recipient Profile"
-msgstr "Empfänger Profil"
+#: mod/newmember.php:18
+msgid "Friendica Walk-Through"
+msgstr "Friendica Rundgang"
 
-#: mod/admin.php:412
-msgid "Created"
-msgstr "Erstellt"
+#: 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 "Auf der <em>Quick Start</em> Seite findest Du eine kurze Einleitung in die einzelnen Funktionen Deines Profils und die Netzwerk-Reiter, wo Du interessante Foren findest und neue Kontakte knüpfst."
 
-#: mod/admin.php:413
-msgid "Last Tried"
-msgstr "Zuletzt versucht"
+#: mod/newmember.php:26
+msgid "Go to Your Settings"
+msgstr "Gehe zu deinen Einstellungen"
 
-#: mod/admin.php:414
+#: mod/newmember.php:26
 msgid ""
-"This page lists the content of the queue for outgoing postings. These are "
-"postings the initial delivery failed for. They will be resend later and "
-"eventually deleted if the delivery fails permanently."
-msgstr "Auf dieser Seite werden die in der Warteschlange eingereihten Beiträge aufgelistet. Bei diesen Beiträgen schlug die erste Zustellung fehl. Es wird später wiederholt versucht die Beiträge zuzustellen, bis sie schließlich gelöscht werden."
+"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 "Ändere bitte unter <em>Einstellungen</em> dein Passwort. Außerdem merke dir deine Identifikationsadresse. Diese sieht aus wie eine E-Mail-Adresse und wird benötigt, um Kontakte mit anderen im Friendica Netzwerk zu knüpfen.."
 
-#: mod/admin.php:439
-#, php-format
+#: mod/newmember.php:28
 msgid ""
-"Your DB still runs with MyISAM tables. You should change the engine type to "
-"InnoDB. As Friendica will use InnoDB only features in the future, you should"
-" change this! See <a href=\"%s\">here</a> for a guide that may be helpful "
-"converting the table engines. You may also use the "
-"<tt>convert_innodb.sql</tt> in the <tt>/util</tt> directory of your "
-"Friendica installation.<br />"
-msgstr "Deine DB enthält einige Tabellen die noch auf MyISAM laufen. Du solltest den Engine-Type auf InnoDB umstellen, da Friendica in Zukunft einige InnoDB Features nutzen wird. Eine Anleitung zur Umstellung kannst du <a href=\"%s\">hier</a> finden. Außerdem kannst du das <tt>convert_innodb.sql</tt> Skript verwenden, das du im <tt>/util</tt> Verzeichnis deiner Friendica Installation findest."
+"Review the other settings, particularly the privacy settings. An unpublished"
+" directory listing is like having an unlisted phone number. In general, you "
+"should probably publish your listing - unless all of your friends and "
+"potential friends know exactly how to find you."
+msgstr "Überprüfe die restlichen Einstellungen, insbesondere die Einstellungen zur Privatsphäre. Wenn Du Dein Profil nicht veröffentlichst, ist das als wenn Du Deine Telefonnummer nicht ins Telefonbuch einträgst. Im Allgemeinen solltest Du es veröffentlichen - außer all Deine Kontakte und potentiellen Kontakte wissen genau, wie sie Dich finden können."
 
-#: mod/admin.php:444
-msgid ""
-"You are using a MySQL version which does not support all features that "
-"Friendica uses. You should consider switching to MariaDB."
-msgstr "Du verwendets eine MySQL Version die nicht alle Features unterstützt die Friendica verwendet. Wir empfehlen dir einen Wechsel auf MariaDB, falls dies möglich ist."
+#: mod/newmember.php:36 mod/profile_photo.php:250 mod/profiles.php:707
+msgid "Upload Profile Photo"
+msgstr "Profilbild hochladen"
 
-#: mod/admin.php:448 mod/admin.php:1352
-msgid "Normal Account"
-msgstr "Normales Konto"
+#: mod/newmember.php:36
+msgid ""
+"Upload a profile photo if you have not done so already. Studies have shown "
+"that people with real photos of themselves are ten times more likely to make"
+" friends than people who do not."
+msgstr "Lade ein Profilbild hoch, falls Du es noch nicht getan hast. Studien haben gezeigt, dass es zehnmal wahrscheinlicher ist neue Kontakte zu finden, wenn Du ein Bild von Dir selbst verwendest, als wenn Du dies nicht tust."
 
-#: mod/admin.php:449 mod/admin.php:1353
-msgid "Soapbox Account"
-msgstr "Marktschreier-Konto"
+#: mod/newmember.php:38
+msgid "Edit Your Profile"
+msgstr "Editiere dein Profil"
 
-#: mod/admin.php:450 mod/admin.php:1354
-msgid "Community/Celebrity Account"
-msgstr "Forum/Promi-Konto"
+#: 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 "Editiere Dein <strong>Standard</strong> Profil nach Deinen Vorlieben. Überprüfe die Einstellungen zum Verbergen Deiner Kontaktliste vor unbekannten Betrachtern des Profils."
 
-#: mod/admin.php:451 mod/admin.php:1355
-msgid "Automatic Friend Account"
-msgstr "Automatisches Freundekonto"
+#: mod/newmember.php:40
+msgid "Profile Keywords"
+msgstr "Profil Schlüsselbegriffe"
 
-#: mod/admin.php:452
-msgid "Blog Account"
-msgstr "Blog-Konto"
+#: mod/newmember.php:40
+msgid ""
+"Set some public keywords for your default profile which describe your "
+"interests. We may be able to find other people with similar interests and "
+"suggest friendships."
+msgstr "Trage ein paar öffentliche Stichwörter in Dein Standardprofil ein, die Deine Interessen beschreiben. Eventuell sind wir in der Lage Leute zu finden, die Deine Interessen teilen und können Dir dann Kontakte vorschlagen."
 
-#: mod/admin.php:453
-msgid "Private Forum"
-msgstr "Privates Forum"
+#: mod/newmember.php:44
+msgid "Connecting"
+msgstr "Verbindungen knüpfen"
 
-#: mod/admin.php:479
-msgid "Message queues"
-msgstr "Nachrichten-Warteschlangen"
+#: mod/newmember.php:51
+msgid "Importing Emails"
+msgstr "Emails Importieren"
 
-#: mod/admin.php:485
-msgid "Summary"
-msgstr "Zusammenfassung"
+#: mod/newmember.php:51
+msgid ""
+"Enter your email access information on your Connector Settings page if you "
+"wish to import and interact with friends or mailing lists from your email "
+"INBOX"
+msgstr "Gib Deine E-Mail-Zugangsinformationen auf der Connector-Einstellungsseite ein, falls Du E-Mails aus Deinem Posteingang importieren und mit Kontakten und Mailinglisten interagieren willst."
 
-#: mod/admin.php:488
-msgid "Registered users"
-msgstr "Registrierte Nutzer"
+#: mod/newmember.php:53
+msgid "Go to Your Contacts Page"
+msgstr "Gehe zu deiner Kontakt-Seite"
 
-#: mod/admin.php:490
-msgid "Pending registrations"
-msgstr "Anstehende Anmeldungen"
+#: mod/newmember.php:53
+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 "Die Kontakte-Seite ist die Einstiegsseite, von der aus Du Kontakte verwalten und Dich mit Personen in anderen Netzwerken verbinden kannst. Normalerweise gibst Du dazu einfach ihre Adresse oder die URL der Seite im Kasten <em>Neuen Kontakt hinzufügen</em> ein."
 
-#: mod/admin.php:491
-msgid "Version"
-msgstr "Version"
+#: mod/newmember.php:55
+msgid "Go to Your Site's Directory"
+msgstr "Gehe zum Verzeichnis Deiner Friendica Instanz"
 
-#: mod/admin.php:496
-msgid "Active plugins"
-msgstr "Aktive Plugins"
+#: mod/newmember.php:55
+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 "Über die Verzeichnisseite kannst Du andere Personen auf diesem Server oder anderen verknüpften Seiten finden. Halte nach einem <em>Verbinden</em> oder <em>Folgen</em> Link auf deren Profilseiten Ausschau und gib Deine eigene Profiladresse an, falls Du danach gefragt wirst."
 
-#: mod/admin.php:521
-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/newmember.php:57
+msgid "Finding New People"
+msgstr "Neue Leute kennenlernen"
 
-#: mod/admin.php:826
-msgid "RINO2 needs mcrypt php extension to work."
-msgstr "RINO2 benötigt die PHP Extension mcrypt."
-
-#: mod/admin.php:834
-msgid "Site settings updated."
-msgstr "Seiteneinstellungen aktualisiert."
+#: mod/newmember.php:57
+msgid ""
+"On the side panel of the Contacts page are several tools to find new "
+"friends. We can match people by interest, look up people by name or "
+"interest, and provide suggestions based on network relationships. On a brand"
+" new site, friend suggestions will usually begin to be populated within 24 "
+"hours."
+msgstr "Im seitlichen Bedienfeld der Kontakteseite gibt es diverse Werkzeuge, um neue Personen zu finden. Wir können Menschen mit den gleichen Interessen finden, anhand von Namen oder Interessen suchen oder aber aufgrund vorhandener Kontakte neue Leute vorschlagen.\nAuf einer brandneuen - soeben erstellten - Seite starten die Kontaktvorschläge innerhalb von 24 Stunden."
 
-#: mod/admin.php:862 mod/settings.php:934
-msgid "No special theme for mobile devices"
-msgstr "Kein spezielles Theme für mobile Geräte verwenden."
+#: mod/newmember.php:65
+msgid "Group Your Contacts"
+msgstr "Gruppiere deine Kontakte"
 
-#: mod/admin.php:881
-msgid "No community page"
-msgstr "Keine Gemeinschaftsseite"
+#: mod/newmember.php:65
+msgid ""
+"Once you have made some friends, organize them into private conversation "
+"groups from the sidebar of your Contacts page and then you can interact with"
+" each group privately on your Network page."
+msgstr "Sobald Du einige Kontakte gefunden hast, organisiere sie in Gruppen zur privaten Kommunikation im Seitenmenü der Kontakte-Seite. Du kannst dann mit jeder dieser Gruppen von der Netzwerkseite aus privat interagieren."
 
-#: mod/admin.php:882
-msgid "Public postings from users of this site"
-msgstr "Öffentliche Beiträge von Nutzer_innen dieser Seite"
+#: mod/newmember.php:68
+msgid "Why Aren't My Posts Public?"
+msgstr "Warum sind meine Beiträge nicht öffentlich?"
 
-#: mod/admin.php:883
-msgid "Global community page"
-msgstr "Globale Gemeinschaftsseite"
+#: mod/newmember.php:68
+msgid ""
+"Friendica respects your privacy. By default, your posts will only show up to"
+" people you've added as friends. For more information, see the help section "
+"from the link above."
+msgstr "Friendica respektiert Deine Privatsphäre. Mit der Grundeinstellung werden Deine Beiträge ausschließlich Deinen Kontakten angezeigt. Für weitere Informationen diesbezüglich lies Dir bitte den entsprechenden Abschnitt in der Hilfe unter dem obigen Link durch."
 
-#: mod/admin.php:888 mod/contacts.php:530
-msgid "Never"
-msgstr "Niemals"
+#: mod/newmember.php:73
+msgid "Getting Help"
+msgstr "Hilfe bekommen"
 
-#: mod/admin.php:889
-msgid "At post arrival"
-msgstr "Beim Empfang von Nachrichten"
+#: mod/newmember.php:77
+msgid "Go to the Help Section"
+msgstr "Zum Hilfe Abschnitt gehen"
 
-#: mod/admin.php:897 mod/contacts.php:557
-msgid "Disabled"
-msgstr "Deaktiviert"
+#: mod/newmember.php:77
+msgid ""
+"Our <strong>help</strong> pages may be consulted for detail on other program"
+" features and resources."
+msgstr "Unsere <strong>Hilfe</strong> Seiten können herangezogen werden, um weitere Einzelheiten zu andern Programm Features zu erhalten."
 
-#: mod/admin.php:899
-msgid "Users, Global Contacts"
-msgstr "Nutzer, globale Kontakte"
+#: mod/removeme.php:46 mod/removeme.php:49
+msgid "Remove My Account"
+msgstr "Konto löschen"
 
-#: mod/admin.php:900
-msgid "Users, Global Contacts/fallback"
-msgstr "Nutzer, globale Kontakte / Fallback"
+#: mod/removeme.php:47
+msgid ""
+"This will completely remove your account. Once this has been done it is not "
+"recoverable."
+msgstr "Dein Konto wird endgültig gelöscht. Es gibt keine Möglichkeit, es wiederherzustellen."
 
-#: mod/admin.php:904
-msgid "One month"
-msgstr "ein Monat"
+#: mod/removeme.php:48
+msgid "Please enter your password for verification:"
+msgstr "Bitte gib Dein Passwort zur Verifikation ein:"
 
-#: mod/admin.php:905
-msgid "Three months"
-msgstr "drei Monate"
+#: mod/editpost.php:17 mod/editpost.php:27
+msgid "Item not found"
+msgstr "Beitrag nicht gefunden"
 
-#: mod/admin.php:906
-msgid "Half a year"
-msgstr "ein halbes Jahr"
+#: mod/editpost.php:40
+msgid "Edit post"
+msgstr "Beitrag bearbeiten"
 
-#: mod/admin.php:907
-msgid "One year"
-msgstr "ein Jahr"
+#: mod/localtime.php:24
+msgid "Time Conversion"
+msgstr "Zeitumrechnung"
 
-#: mod/admin.php:912
-msgid "Multi user instance"
-msgstr "Mehrbenutzer Instanz"
+#: mod/localtime.php:26
+msgid ""
+"Friendica provides this service for sharing events with other networks and "
+"friends in unknown timezones."
+msgstr "Friendica bietet diese Funktion an, um das Teilen von Events mit Kontakten zu vereinfachen, deren Zeitzone nicht ermittelt werden kann."
 
-#: mod/admin.php:935
-msgid "Closed"
-msgstr "Geschlossen"
+#: mod/localtime.php:30
+#, php-format
+msgid "UTC time: %s"
+msgstr "UTC Zeit: %s"
 
-#: mod/admin.php:936
-msgid "Requires approval"
-msgstr "Bedarf der Zustimmung"
+#: mod/localtime.php:33
+#, php-format
+msgid "Current timezone: %s"
+msgstr "Aktuelle Zeitzone: %s"
 
-#: mod/admin.php:937
-msgid "Open"
-msgstr "Offen"
+#: mod/localtime.php:36
+#, php-format
+msgid "Converted localtime: %s"
+msgstr "Umgerechnete lokale Zeit: %s"
 
-#: mod/admin.php:941
-msgid "No SSL policy, links will track page SSL state"
-msgstr "Keine SSL Richtlinie, Links werden das verwendete Protokoll beibehalten"
+#: mod/localtime.php:41
+msgid "Please select your timezone:"
+msgstr "Bitte wähle Deine Zeitzone:"
 
-#: mod/admin.php:942
-msgid "Force all links to use SSL"
-msgstr "SSL für alle Links erzwingen"
+#: mod/bookmarklet.php:41
+msgid "The post was created"
+msgstr "Der Beitrag wurde angelegt"
 
-#: mod/admin.php:943
-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/group.php:29
+msgid "Group created."
+msgstr "Gruppe erstellt."
 
-#: mod/admin.php:955 mod/admin.php:1583 mod/admin.php:1831 mod/admin.php:1905
-#: mod/admin.php:2055 mod/settings.php:678 mod/settings.php:788
-#: mod/settings.php:835 mod/settings.php:904 mod/settings.php:996
-#: mod/settings.php:1264
-msgid "Save Settings"
-msgstr "Einstellungen speichern"
+#: mod/group.php:35
+msgid "Could not create group."
+msgstr "Konnte die Gruppe nicht erstellen."
 
-#: mod/admin.php:956 mod/register.php:272
-msgid "Registration"
-msgstr "Registrierung"
+#: mod/group.php:47 mod/group.php:140
+msgid "Group not found."
+msgstr "Gruppe nicht gefunden."
 
-#: mod/admin.php:957
-msgid "File upload"
-msgstr "Datei hochladen"
+#: mod/group.php:60
+msgid "Group name changed."
+msgstr "Gruppenname geändert."
 
-#: mod/admin.php:958
-msgid "Policies"
-msgstr "Regeln"
+#: mod/group.php:87
+msgid "Save Group"
+msgstr "Gruppe speichern"
 
-#: mod/admin.php:960
-msgid "Auto Discovered Contact Directory"
-msgstr "Automatisch ein Kontaktverzeichnis erstellen"
+#: mod/group.php:93
+msgid "Create a group of contacts/friends."
+msgstr "Eine Kontaktgruppe anlegen."
 
-#: mod/admin.php:961
-msgid "Performance"
-msgstr "Performance"
+#: mod/group.php:113
+msgid "Group removed."
+msgstr "Gruppe entfernt."
 
-#: mod/admin.php:962
-msgid "Worker"
-msgstr "Worker"
+#: mod/group.php:115
+msgid "Unable to remove group."
+msgstr "Konnte die Gruppe nicht entfernen."
 
-#: mod/admin.php:963
-msgid ""
-"Relocate - WARNING: advanced function. Could make this server unreachable."
-msgstr "Umsiedeln - WARNUNG: Könnte diesen Server unerreichbar machen."
+#: mod/group.php:177
+msgid "Group Editor"
+msgstr "Gruppeneditor"
 
-#: mod/admin.php:966
-msgid "Site name"
-msgstr "Seitenname"
+#: mod/group.php:190
+msgid "Members"
+msgstr "Mitglieder"
 
-#: mod/admin.php:967
-msgid "Host name"
-msgstr "Host Name"
+#: mod/group.php:192 mod/contacts.php:692
+msgid "All Contacts"
+msgstr "Alle Kontakte"
 
-#: mod/admin.php:968
-msgid "Sender Email"
-msgstr "Absender für Emails"
+#: mod/group.php:193 mod/content.php:130 mod/network.php:496
+msgid "Group is empty"
+msgstr "Gruppe ist leer"
 
-#: mod/admin.php:968
-msgid ""
-"The email address your server shall use to send notification emails from."
-msgstr "Die E-Mail Adresse die dein Server zum Versenden von Benachrichtigungen verwenden soll."
+#: mod/wallmessage.php:42 mod/wallmessage.php:112
+#, php-format
+msgid "Number of daily wall messages for %s exceeded. Message failed."
+msgstr "Maximale Anzahl der täglichen Pinnwand Nachrichten für %s ist überschritten. Zustellung fehlgeschlagen."
 
-#: mod/admin.php:969
-msgid "Banner/Logo"
-msgstr "Banner/Logo"
+#: mod/wallmessage.php:56 mod/message.php:71
+msgid "No recipient selected."
+msgstr "Kein Empfänger gewählt."
 
-#: mod/admin.php:970
-msgid "Shortcut icon"
-msgstr "Shortcut Icon"
+#: mod/wallmessage.php:59
+msgid "Unable to check your home location."
+msgstr "Konnte Deinen Heimatort nicht bestimmen."
 
-#: mod/admin.php:970
-msgid "Link to an icon that will be used for browsers."
-msgstr "Link zu einem Icon, das Browser verwenden werden."
+#: mod/wallmessage.php:62 mod/message.php:78
+msgid "Message could not be sent."
+msgstr "Nachricht konnte nicht gesendet werden."
 
-#: mod/admin.php:971
-msgid "Touch icon"
-msgstr "Touch Icon"
+#: mod/wallmessage.php:65 mod/message.php:81
+msgid "Message collection failure."
+msgstr "Konnte Nachrichten nicht abrufen."
 
-#: mod/admin.php:971
-msgid "Link to an icon that will be used for tablets and mobiles."
-msgstr "Link zu einem Icon das Tablets und Handies verwenden sollen."
+#: mod/wallmessage.php:68 mod/message.php:84
+msgid "Message sent."
+msgstr "Nachricht gesendet."
 
-#: mod/admin.php:972
-msgid "Additional Info"
-msgstr "Zusätzliche Informationen"
+#: mod/wallmessage.php:86 mod/wallmessage.php:95
+msgid "No recipient."
+msgstr "Kein Empfänger."
 
-#: mod/admin.php:972
+#: mod/wallmessage.php:142 mod/message.php:341
+msgid "Send Private Message"
+msgstr "Private Nachricht senden"
+
+#: mod/wallmessage.php:143
 #, php-format
 msgid ""
-"For public servers: you can add additional information here that will be "
-"listed at %s/siteinfo."
-msgstr "Für öffentliche Server kannst Du hier zusätzliche Informationen angeben, die dann auf %s/siteinfo angezeigt werden."
-
-#: mod/admin.php:973
-msgid "System language"
-msgstr "Systemsprache"
-
-#: mod/admin.php:974
-msgid "System theme"
-msgstr "Systemweites Theme"
+"If you wish for %s to respond, please check that the privacy settings on "
+"your site allow private mail from unknown senders."
+msgstr "Wenn Du möchtest, dass %s Dir antworten kann, überprüfe Deine Privatsphären-Einstellungen und erlaube private Nachrichten von unbekannten Absendern."
 
-#: mod/admin.php:974
-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/wallmessage.php:144 mod/message.php:342 mod/message.php:536
+msgid "To:"
+msgstr "An:"
 
-#: mod/admin.php:975
-msgid "Mobile system theme"
-msgstr "Systemweites mobiles Theme"
+#: mod/wallmessage.php:145 mod/message.php:347 mod/message.php:538
+msgid "Subject:"
+msgstr "Betreff:"
 
-#: mod/admin.php:975
-msgid "Theme for mobile devices"
-msgstr "Thema für mobile Geräte"
+#: mod/share.php:38
+msgid "link"
+msgstr "Link"
 
-#: mod/admin.php:976
-msgid "SSL link policy"
-msgstr "Regeln für SSL Links"
+#: mod/api.php:76 mod/api.php:102
+msgid "Authorize application connection"
+msgstr "Verbindung der Applikation autorisieren"
 
-#: mod/admin.php:976
-msgid "Determines whether generated links should be forced to use SSL"
-msgstr "Bestimmt, ob generierte Links SSL verwenden müssen"
+#: mod/api.php:77
+msgid "Return to your app and insert this Securty Code:"
+msgstr "Gehe zu Deiner Anwendung zurück und trage dort folgenden Sicherheitscode ein:"
 
-#: mod/admin.php:977
-msgid "Force SSL"
-msgstr "Erzwinge SSL"
+#: mod/api.php:89
+msgid "Please login to continue."
+msgstr "Bitte melde Dich an um fortzufahren."
 
-#: mod/admin.php:977
+#: mod/api.php:104
 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."
+"Do you want to authorize this application to access your posts and contacts,"
+" and/or create new posts for you?"
+msgstr "Möchtest Du dieser Anwendung den Zugriff auf Deine Beiträge und Kontakte, sowie das Erstellen neuer Beiträge in Deinem Namen gestatten?"
 
-#: mod/admin.php:978
-msgid "Old style 'Share'"
-msgstr "Altes \"Teilen\" Element"
+#: mod/api.php:106 mod/profiles.php:648 mod/profiles.php:652
+#: mod/profiles.php:677 mod/register.php:246 mod/settings.php:1163
+#: mod/settings.php:1169 mod/settings.php:1177 mod/settings.php:1181
+#: mod/settings.php:1186 mod/settings.php:1192 mod/settings.php:1198
+#: mod/settings.php:1204 mod/settings.php:1230 mod/settings.php:1231
+#: mod/settings.php:1232 mod/settings.php:1233 mod/settings.php:1234
+#: mod/dfrn_request.php:862 mod/follow.php:110
+msgid "No"
+msgstr "Nein"
 
-#: mod/admin.php:978
-msgid "Deactivates the bbcode element 'share' for repeating items."
-msgstr "Deaktiviert das BBCode Element \"share\" beim Wiederholen von Beiträgen."
+#: mod/babel.php:17
+msgid "Source (bbcode) text:"
+msgstr "Quelle (bbcode) Text:"
 
-#: mod/admin.php:979
-msgid "Hide help entry from navigation menu"
-msgstr "Verberge den Menüeintrag für die Hilfe im Navigationsmenü"
+#: mod/babel.php:23
+msgid "Source (Diaspora) text to convert to BBcode:"
+msgstr "Eingabe (Diaspora) nach BBCode zu konvertierender Text:"
 
-#: mod/admin.php:979
-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/babel.php:31
+msgid "Source input: "
+msgstr "Originaltext:"
 
-#: mod/admin.php:980
-msgid "Single user instance"
-msgstr "Ein-Nutzer Instanz"
+#: mod/babel.php:35
+msgid "bb2html (raw HTML): "
+msgstr "bb2html (reines HTML): "
 
-#: mod/admin.php:980
-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/babel.php:39
+msgid "bb2html: "
+msgstr "bb2html: "
 
-#: mod/admin.php:981
-msgid "Maximum image size"
-msgstr "Maximale Bildgröße"
+#: mod/babel.php:43
+msgid "bb2html2bb: "
+msgstr "bb2html2bb: "
 
-#: mod/admin.php:981
-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/babel.php:47
+msgid "bb2md: "
+msgstr "bb2md: "
 
-#: mod/admin.php:982
-msgid "Maximum image length"
-msgstr "Maximale Bildlänge"
+#: mod/babel.php:51
+msgid "bb2md2html: "
+msgstr "bb2md2html: "
 
-#: mod/admin.php:982
-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/babel.php:55
+msgid "bb2dia2bb: "
+msgstr "bb2dia2bb: "
 
-#: mod/admin.php:983
-msgid "JPEG image quality"
-msgstr "Qualität des JPEG Bildes"
+#: mod/babel.php:59
+msgid "bb2md2html2bb: "
+msgstr "bb2md2html2bb: "
 
-#: mod/admin.php:983
-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/babel.php:69
+msgid "Source input (Diaspora format): "
+msgstr "Originaltext (Diaspora Format): "
 
-#: mod/admin.php:985
-msgid "Register policy"
-msgstr "Registrierungsmethode"
+#: mod/babel.php:74
+msgid "diaspora2bb: "
+msgstr "diaspora2bb: "
 
-#: mod/admin.php:986
-msgid "Maximum Daily Registrations"
-msgstr "Maximum täglicher Registrierungen"
+#: mod/ostatus_subscribe.php:14
+msgid "Subscribing to OStatus contacts"
+msgstr "OStatus Kontakten folgen"
 
-#: mod/admin.php:986
-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/ostatus_subscribe.php:25
+msgid "No contact provided."
+msgstr "Keine Kontakte gefunden."
 
-#: mod/admin.php:987
-msgid "Register text"
-msgstr "Registrierungstext"
+#: mod/ostatus_subscribe.php:30
+msgid "Couldn't fetch information for contact."
+msgstr "Konnte die Kontaktinformationen nicht einholen."
 
-#: mod/admin.php:987
-msgid "Will be displayed prominently on the registration page."
-msgstr "Wird gut sichtbar auf der Registrierungsseite angezeigt."
+#: mod/ostatus_subscribe.php:38
+msgid "Couldn't fetch friends for contact."
+msgstr "Konnte die Kontaktliste des Kontakts nicht abfragen."
 
-#: mod/admin.php:988
-msgid "Accounts abandoned after x days"
-msgstr "Nutzerkonten gelten nach x Tagen als unbenutzt"
+#: mod/ostatus_subscribe.php:65
+msgid "success"
+msgstr "Erfolg"
 
-#: mod/admin.php:988
-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/ostatus_subscribe.php:67
+msgid "failed"
+msgstr "Fehlgeschlagen"
 
-#: mod/admin.php:989
-msgid "Allowed friend domains"
-msgstr "Erlaubte Domains für Kontakte"
+#: mod/ostatus_subscribe.php:69 mod/content.php:792 object/Item.php:245
+msgid "ignored"
+msgstr "Ignoriert"
 
-#: mod/admin.php:989
-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 Kontakte erlaubt sind, durch Kommas getrennt. Platzhalter werden akzeptiert. Leer lassen, um alle Domains zu erlauben."
+#: mod/dfrn_poll.php:104 mod/dfrn_poll.php:537
+#, php-format
+msgid "%1$s welcomes %2$s"
+msgstr "%1$s heißt %2$s herzlich willkommen"
 
-#: mod/admin.php:990
-msgid "Allowed email domains"
-msgstr "Erlaubte Domains für E-Mails"
+#: mod/message.php:75
+msgid "Unable to locate contact information."
+msgstr "Konnte die Kontaktinformationen nicht finden."
 
-#: mod/admin.php:990
-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/message.php:215
+msgid "Do you really want to delete this message?"
+msgstr "Möchtest Du wirklich diese Nachricht löschen?"
 
-#: mod/admin.php:991
-msgid "Block public"
-msgstr "Öffentlichen Zugriff blockieren"
+#: mod/message.php:235
+msgid "Message deleted."
+msgstr "Nachricht gelöscht."
 
-#: mod/admin.php:991
-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/message.php:266
+msgid "Conversation removed."
+msgstr "Unterhaltung gelöscht."
 
-#: mod/admin.php:992
-msgid "Force publish"
-msgstr "Erzwinge Veröffentlichung"
+#: mod/message.php:383
+msgid "No messages."
+msgstr "Keine Nachrichten."
 
-#: mod/admin.php:992
-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/message.php:426
+msgid "Message not available."
+msgstr "Nachricht nicht verfügbar."
 
-#: mod/admin.php:993
-msgid "Global directory URL"
-msgstr "URL des weltweiten Verzeichnisses"
+#: mod/message.php:503
+msgid "Delete message"
+msgstr "Nachricht löschen"
 
-#: mod/admin.php:993
-msgid ""
-"URL to the global directory. If this is not set, the global directory is "
-"completely unavailable to the application."
-msgstr "URL des weltweiten Verzeichnisses. Wenn diese nicht gesetzt ist, ist das Verzeichnis für die Applikation nicht erreichbar."
-
-#: mod/admin.php:994
-msgid "Allow threaded items"
-msgstr "Erlaube Threads in Diskussionen"
-
-#: mod/admin.php:994
-msgid "Allow infinite level threading for items on this site."
-msgstr "Erlaube ein unendliches Level für Threads auf dieser Seite."
-
-#: mod/admin.php:995
-msgid "Private posts by default for new users"
-msgstr "Private Beiträge als Standard für neue Nutzer"
+#: mod/message.php:529 mod/message.php:609
+msgid "Delete conversation"
+msgstr "Unterhaltung löschen"
 
-#: mod/admin.php:995
+#: mod/message.php:531
 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."
+"No secure communications available. You <strong>may</strong> be able to "
+"respond from the sender's profile page."
+msgstr "Sichere Kommunikation ist nicht verfügbar. <strong>Eventuell</strong> kannst Du auf der Profilseite des Absenders antworten."
 
-#: mod/admin.php:996
-msgid "Don't include post content in email notifications"
-msgstr "Inhalte von Beiträgen nicht in E-Mail-Benachrichtigungen versenden"
+#: mod/message.php:535
+msgid "Send Reply"
+msgstr "Antwort senden"
 
-#: mod/admin.php:996
-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/message.php:579
+#, php-format
+msgid "Unknown sender - %s"
+msgstr "'Unbekannter Absender - %s"
 
-#: mod/admin.php:997
-msgid "Disallow public access to addons listed in the apps menu."
-msgstr "Öffentlichen Zugriff auf Addons im Apps Menü verbieten."
+#: mod/message.php:581
+#, php-format
+msgid "You and %s"
+msgstr "Du und %s"
 
-#: mod/admin.php:997
-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/message.php:583
+#, php-format
+msgid "%s and You"
+msgstr "%s und Du"
 
-#: mod/admin.php:998
-msgid "Don't embed private images in posts"
-msgstr "Private Bilder nicht in Beiträgen einbetten."
+#: mod/message.php:612
+msgid "D, d M Y - g:i A"
+msgstr "D, d. M Y - g:i A"
 
-#: mod/admin.php:998
-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 "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/message.php:615
+#, php-format
+msgid "%d message"
+msgid_plural "%d messages"
+msgstr[0] "%d Nachricht"
+msgstr[1] "%d Nachrichten"
 
-#: mod/admin.php:999
-msgid "Allow Users to set remote_self"
-msgstr "Nutzern erlauben das remote_self Flag zu setzen"
+#: mod/manage.php:139
+msgid "Manage Identities and/or Pages"
+msgstr "Verwalte Identitäten und/oder Seiten"
 
-#: mod/admin.php:999
+#: mod/manage.php:140
 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."
+"Toggle between different identities or community/group pages which share "
+"your account details or which you have been granted \"manage\" permissions"
+msgstr "Zwischen verschiedenen Identitäten oder Gemeinschafts-/Gruppenseiten wechseln, die Deine Kontoinformationen teilen oder zu denen Du „Verwalten“-Befugnisse bekommen hast."
 
-#: mod/admin.php:1000
-msgid "Block multiple registrations"
-msgstr "Unterbinde Mehrfachregistrierung"
+#: mod/manage.php:141
+msgid "Select an identity to manage: "
+msgstr "Wähle eine Identität zum Verwalten aus: "
 
-#: mod/admin.php:1000
-msgid "Disallow users to register additional accounts for use as pages."
-msgstr "Benutzern nicht erlauben, weitere Konten als zusätzliche Profile anzulegen."
+#: mod/crepair.php:87
+msgid "Contact settings applied."
+msgstr "Einstellungen zum Kontakt angewandt."
 
-#: mod/admin.php:1001
-msgid "OpenID support"
-msgstr "OpenID Unterstützung"
+#: mod/crepair.php:89
+msgid "Contact update failed."
+msgstr "Konnte den Kontakt nicht aktualisieren."
 
-#: mod/admin.php:1001
-msgid "OpenID support for registration and logins."
-msgstr "OpenID-Unterstützung für Registrierung und Login."
+#: mod/crepair.php:114 mod/fsuggest.php:20 mod/fsuggest.php:92
+#: mod/dfrn_confirm.php:126
+msgid "Contact not found."
+msgstr "Kontakt nicht gefunden."
 
-#: mod/admin.php:1002
-msgid "Fullname check"
-msgstr "Namen auf Vollständigkeit überprüfen"
+#: mod/crepair.php:120
+msgid ""
+"<strong>WARNING: This is highly advanced</strong> and if you enter incorrect"
+" information your communications with this contact may stop working."
+msgstr "<strong>ACHTUNG: Das sind Experten-Einstellungen!</strong> Wenn Du etwas Falsches eingibst, funktioniert die Kommunikation mit diesem Kontakt evtl. nicht mehr."
 
-#: mod/admin.php:1002
+#: mod/crepair.php:121
 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."
+"Please use your browser 'Back' button <strong>now</strong> if you are "
+"uncertain what to do on this page."
+msgstr "Bitte nutze den Zurück-Button Deines Browsers <strong>jetzt</strong>, wenn Du Dir unsicher bist, was Du tun willst."
 
-#: mod/admin.php:1003
-msgid "UTF-8 Regular expressions"
-msgstr "UTF-8 Reguläre Ausdrücke"
+#: mod/crepair.php:134 mod/crepair.php:136
+msgid "No mirroring"
+msgstr "Kein Spiegeln"
 
-#: mod/admin.php:1003
-msgid "Use PHP UTF8 regular expressions"
-msgstr "PHP UTF8 Ausdrücke verwenden"
+#: mod/crepair.php:134
+msgid "Mirror as forwarded posting"
+msgstr "Spiegeln als weitergeleitete Beiträge"
 
-#: mod/admin.php:1004
-msgid "Community Page Style"
-msgstr "Art der Gemeinschaftsseite"
+#: mod/crepair.php:134 mod/crepair.php:136
+msgid "Mirror as my own posting"
+msgstr "Spiegeln als meine eigenen Beiträge"
 
-#: mod/admin.php:1004
-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/crepair.php:150
+msgid "Return to contact editor"
+msgstr "Zurück zum Kontakteditor"
 
-#: mod/admin.php:1005
-msgid "Posts per user on community page"
-msgstr "Anzahl der Beiträge pro Benutzer auf der Gemeinschaftsseite"
+#: mod/crepair.php:152
+msgid "Refetch contact data"
+msgstr "Kontaktdaten neu laden"
 
-#: mod/admin.php:1005
-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/crepair.php:156
+msgid "Remote Self"
+msgstr "Entfernte Konten"
 
-#: mod/admin.php:1006
-msgid "Enable OStatus support"
-msgstr "OStatus Unterstützung aktivieren"
+#: mod/crepair.php:159
+msgid "Mirror postings from this contact"
+msgstr "Spiegle Beiträge dieses Kontakts"
 
-#: mod/admin.php:1006
+#: mod/crepair.php:161
 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."
+"Mark this contact as remote_self, this will cause friendica to repost new "
+"entries from this contact."
+msgstr "Markiere diesen Kontakt als remote_self (entferntes Konto), dies veranlasst Friendica alle Top-Level Beiträge dieses Kontakts an all Deine Kontakte zu senden."
 
-#: mod/admin.php:1007
-msgid "OStatus conversation completion interval"
-msgstr "Intervall zum Vervollständigen von OStatus Unterhaltungen"
+#: mod/crepair.php:165 mod/settings.php:680 mod/settings.php:706
+#: mod/admin.php:1396 mod/admin.php:1409 mod/admin.php:1422 mod/admin.php:1438
+msgid "Name"
+msgstr "Name"
 
-#: mod/admin.php:1007
-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/crepair.php:166
+msgid "Account Nickname"
+msgstr "Konto-Spitzname"
 
-#: mod/admin.php:1008
-msgid "Only import OStatus threads from our contacts"
-msgstr "Nur OStatus Konversationen unserer Kontakte importieren"
+#: mod/crepair.php:167
+msgid "@Tagname - overrides Name/Nickname"
+msgstr "@Tagname - überschreibt Name/Spitzname"
 
-#: mod/admin.php:1008
-msgid ""
-"Normally we import every content from our OStatus contacts. With this option"
-" we only store threads that are started by a contact that is known on our "
-"system."
-msgstr "Normalerweise werden alle Inhalte von OStatus Kontakten importiert. Mit dieser Option werden nur solche Konversationen gespeichert, die von Kontakten der Nutzer dieses Knotens gestartet wurden."
+#: mod/crepair.php:168
+msgid "Account URL"
+msgstr "Konto-URL"
 
-#: mod/admin.php:1009
-msgid "OStatus support can only be enabled if threading is enabled."
-msgstr "OStatus Unterstützung kann nur aktiviert werden wenn \"Threading\" aktiviert ist. "
+#: mod/crepair.php:169
+msgid "Friend Request URL"
+msgstr "URL für Kontaktschaftsanfragen"
 
-#: mod/admin.php:1011
-msgid ""
-"Diaspora support can't be enabled because Friendica was installed into a sub"
-" directory."
-msgstr "Diaspora Unterstützung kann nicht aktiviert werden da Friendica in ein Unterverzeichnis installiert ist."
+#: mod/crepair.php:170
+msgid "Friend Confirm URL"
+msgstr "URL für Bestätigungen von Kontaktanfragen"
 
-#: mod/admin.php:1012
-msgid "Enable Diaspora support"
-msgstr "Diaspora Unterstützung aktivieren"
+#: mod/crepair.php:171
+msgid "Notification Endpoint URL"
+msgstr "URL-Endpunkt für Benachrichtigungen"
 
-#: mod/admin.php:1012
-msgid "Provide built-in Diaspora network compatibility."
-msgstr "Verwende die eingebaute Diaspora-Verknüpfung."
+#: mod/crepair.php:172
+msgid "Poll/Feed URL"
+msgstr "Pull/Feed-URL"
 
-#: mod/admin.php:1013
-msgid "Only allow Friendica contacts"
-msgstr "Nur Friendica-Kontakte erlauben"
+#: mod/crepair.php:173
+msgid "New photo from this URL"
+msgstr "Neues Foto von dieser URL"
 
-#: mod/admin.php:1013
-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/content.php:119 mod/network.php:469
+msgid "No such group"
+msgstr "Es gibt keine solche Gruppe"
 
-#: mod/admin.php:1014
-msgid "Verify SSL"
-msgstr "SSL Überprüfen"
-
-#: mod/admin.php:1014
-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/content.php:135 mod/network.php:500
+#, php-format
+msgid "Group: %s"
+msgstr "Gruppe: %s"
 
-#: mod/admin.php:1015
-msgid "Proxy user"
-msgstr "Proxy Nutzer"
+#: mod/content.php:325 object/Item.php:95
+msgid "This entry was edited"
+msgstr "Dieser Beitrag wurde bearbeitet."
 
-#: mod/admin.php:1016
-msgid "Proxy URL"
-msgstr "Proxy URL"
+#: mod/content.php:621 object/Item.php:429
+#, php-format
+msgid "%d comment"
+msgid_plural "%d comments"
+msgstr[0] "%d Kommentar"
+msgstr[1] "%d Kommentare"
 
-#: mod/admin.php:1017
-msgid "Network timeout"
-msgstr "Netzwerk Wartezeit"
+#: mod/content.php:638 mod/photos.php:1379 object/Item.php:117
+msgid "Private Message"
+msgstr "Private Nachricht"
 
-#: mod/admin.php:1017
-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/content.php:702 mod/photos.php:1567 object/Item.php:263
+msgid "I like this (toggle)"
+msgstr "Ich mag das (toggle)"
 
-#: mod/admin.php:1018
-msgid "Delivery interval"
-msgstr "Zustellungsintervall"
+#: mod/content.php:702 object/Item.php:263
+msgid "like"
+msgstr "mag ich"
 
-#: mod/admin.php:1018
-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/content.php:703 mod/photos.php:1568 object/Item.php:264
+msgid "I don't like this (toggle)"
+msgstr "Ich mag das nicht (toggle)"
 
-#: mod/admin.php:1019
-msgid "Poll interval"
-msgstr "Abfrageintervall"
+#: mod/content.php:703 object/Item.php:264
+msgid "dislike"
+msgstr "mag ich nicht"
 
-#: mod/admin.php:1019
-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/content.php:705 object/Item.php:266
+msgid "Share this"
+msgstr "Weitersagen"
 
-#: mod/admin.php:1020
-msgid "Maximum Load Average"
-msgstr "Maximum Load Average"
+#: mod/content.php:705 object/Item.php:266
+msgid "share"
+msgstr "Teilen"
 
-#: mod/admin.php:1020
-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/content.php:725 mod/photos.php:1587 mod/photos.php:1635
+#: mod/photos.php:1721 object/Item.php:717
+msgid "This is you"
+msgstr "Das bist Du"
 
-#: mod/admin.php:1021
-msgid "Maximum Load Average (Frontend)"
-msgstr "Maximum Load Average (Frontend)"
+#: mod/content.php:727 mod/content.php:945 mod/photos.php:1589
+#: mod/photos.php:1637 mod/photos.php:1723 object/Item.php:403
+#: object/Item.php:719 boot.php:971
+msgid "Comment"
+msgstr "Kommentar"
 
-#: mod/admin.php:1021
-msgid "Maximum system load before the frontend quits service - default 50."
-msgstr "Maximale Systemlast bevor Vordergrundprozesse pausiert werden - Standard 50."
+#: mod/content.php:729 object/Item.php:721
+msgid "Bold"
+msgstr "Fett"
 
-#: mod/admin.php:1022
-msgid "Maximum table size for optimization"
-msgstr "Maximale Tabellengröße zur Optimierung"
+#: mod/content.php:730 object/Item.php:722
+msgid "Italic"
+msgstr "Kursiv"
 
-#: mod/admin.php:1022
-msgid ""
-"Maximum table size (in MB) for the automatic optimization - default 100 MB. "
-"Enter -1 to disable it."
-msgstr "Maximale Tabellengröße (in MB) für die automatische Optimierung - Standard 100 MB. Gib -1 für Deaktivierung ein."
+#: mod/content.php:731 object/Item.php:723
+msgid "Underline"
+msgstr "Unterstrichen"
 
-#: mod/admin.php:1023
-msgid "Minimum level of fragmentation"
-msgstr "Minimaler Fragmentationsgrad"
+#: mod/content.php:732 object/Item.php:724
+msgid "Quote"
+msgstr "Zitat"
 
-#: mod/admin.php:1023
-msgid ""
-"Minimum fragmenation level to start the automatic optimization - default "
-"value is 30%."
-msgstr "Minimales Fragmentationsgrad von Datenbanktabellen um die automatische Optimierung einzuleiten - Standardwert ist 30%"
+#: mod/content.php:733 object/Item.php:725
+msgid "Code"
+msgstr "Code"
 
-#: mod/admin.php:1025
-msgid "Periodical check of global contacts"
-msgstr "Regelmäßig globale Kontakte überprüfen"
+#: mod/content.php:734 object/Item.php:726
+msgid "Image"
+msgstr "Bild"
 
-#: mod/admin.php:1025
-msgid ""
-"If enabled, the global contacts are checked periodically for missing or "
-"outdated data and the vitality of the contacts and servers."
-msgstr "Wenn diese Option aktiviert ist, werden die globalen Kontakte regelmäßig auf fehlende oder veraltete Daten sowie auf Erreichbarkeit des Kontakts und des Servers überprüft."
+#: mod/content.php:735 object/Item.php:727
+msgid "Link"
+msgstr "Link"
 
-#: mod/admin.php:1026
-msgid "Days between requery"
-msgstr "Tage zwischen erneuten Abfragen"
+#: mod/content.php:736 object/Item.php:728
+msgid "Video"
+msgstr "Video"
 
-#: mod/admin.php:1026
-msgid "Number of days after which a server is requeried for his contacts."
-msgstr "Legt das Abfrageintervall fest, nachdem ein Server erneut nach Kontakten abgefragt werden soll."
+#: mod/content.php:746 mod/settings.php:740 object/Item.php:122
+#: object/Item.php:124
+msgid "Edit"
+msgstr "Bearbeiten"
 
-#: mod/admin.php:1027
-msgid "Discover contacts from other servers"
-msgstr "Neue Kontakte auf anderen Servern entdecken"
+#: mod/content.php:771 object/Item.php:227
+msgid "add star"
+msgstr "markieren"
 
-#: mod/admin.php:1027
-msgid ""
-"Periodically query other servers for contacts. You can choose between "
-"'users': the users on the remote system, 'Global Contacts': active contacts "
-"that are known on the system. The fallback is meant for Redmatrix servers "
-"and older friendica servers, where global contacts weren't available. The "
-"fallback increases the server load, so the recommened setting is 'Users, "
-"Global Contacts'."
-msgstr "Regelmäßig andere Server nach potentiellen Kontakten absuchen. Du kannst zwischen 'Nutzern', den tatsächlichen Nutzern des anderen Systems und 'globalen Kontakten', aktiven Kontakten die auf dem System bekannt sind, wählen. Der Fallback-Mechanismus ist für ältere Friendica und Redmatrix Server gedacht, bei denen globale Kontakte noch nicht verfügbar sind. Durch den Fallbackmodus entsteht auf deinem Server eine wesentlich höhere Last, empfohlen wird der Modus 'Nutzer, globale Kontakte'."
+#: mod/content.php:772 object/Item.php:228
+msgid "remove star"
+msgstr "Markierung entfernen"
 
-#: mod/admin.php:1028
-msgid "Timeframe for fetching global contacts"
-msgstr "Zeitfenster für globale Kontakte"
+#: mod/content.php:773 object/Item.php:229
+msgid "toggle star status"
+msgstr "Markierung umschalten"
 
-#: mod/admin.php:1028
-msgid ""
-"When the discovery is activated, this value defines the timeframe for the "
-"activity of the global contacts that are fetched from other servers."
-msgstr "Wenn die Entdeckung neuer Kontakte aktiv ist, definiert dieses Zeitfenster den Zeitraum in dem globale Kontakte als aktiv gelten und von anderen Servern importiert werden."
+#: mod/content.php:776 object/Item.php:232
+msgid "starred"
+msgstr "markiert"
 
-#: mod/admin.php:1029
-msgid "Search the local directory"
-msgstr "Lokales Verzeichnis durchsuchen"
+#: mod/content.php:777 mod/content.php:798 object/Item.php:252
+msgid "add tag"
+msgstr "Tag hinzufügen"
 
-#: mod/admin.php:1029
-msgid ""
-"Search the local directory instead of the global directory. When searching "
-"locally, every search will be executed on the global directory in the "
-"background. This improves the search results when the search is repeated."
-msgstr "Suche im lokalen Verzeichnis anstelle des globalen Verzeichnisses durchführen. Jede Suche wird im Hintergrund auch im globalen Verzeichnis durchgeführt umd die Suchresultate zu verbessern, wenn diese Suche wiederholt wird."
+#: mod/content.php:787 object/Item.php:240
+msgid "ignore thread"
+msgstr "Thread ignorieren"
 
-#: mod/admin.php:1031
-msgid "Publish server information"
-msgstr "Server Informationen veröffentlichen"
+#: mod/content.php:788 object/Item.php:241
+msgid "unignore thread"
+msgstr "Thread nicht mehr ignorieren"
 
-#: mod/admin.php:1031
-msgid ""
-"If enabled, general server and usage data will be published. The data "
-"contains the name and version of the server, number of users with public "
-"profiles, number of posts and the activated protocols and connectors. See <a"
-" href='http://the-federation.info/'>the-federation.info</a> for details."
-msgstr "Wenn aktiviert, werden allgemeine Informationen über den Server und Nutzungsdaten veröffentlicht. Die Daten beinhalten den Namen sowie die Version des Servers, die Anzahl der Nutzer_innen mit öffentlichen Profilen, die Anzahl der Beiträge sowie aktivierte Protokolle und Connectoren. Für Details bitte <a href='http://the-federation.info/'>the-federation.info</a> aufrufen."
+#: mod/content.php:789 object/Item.php:242
+msgid "toggle ignore status"
+msgstr "Ignoriert-Status ein-/ausschalten"
 
-#: mod/admin.php:1033
-msgid "Use MySQL full text engine"
-msgstr "Nutze MySQL full text engine"
+#: mod/content.php:803 object/Item.php:137
+msgid "save to folder"
+msgstr "In Ordner speichern"
 
-#: mod/admin.php:1033
-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/content.php:848 object/Item.php:201
+msgid "I will attend"
+msgstr "Ich werde teilnehmen"
 
-#: mod/admin.php:1034
-msgid "Suppress Language"
-msgstr "Sprachinformation unterdrücken"
+#: mod/content.php:848 object/Item.php:201
+msgid "I will not attend"
+msgstr "Ich werde nicht teilnehmen"
 
-#: mod/admin.php:1034
-msgid "Suppress language information in meta information about a posting."
-msgstr "Verhindert das Erzeugen der Meta-Information zur Spracherkennung eines Beitrags."
+#: mod/content.php:848 object/Item.php:201
+msgid "I might attend"
+msgstr "Ich werde eventuell teilnehmen"
 
-#: mod/admin.php:1035
-msgid "Suppress Tags"
-msgstr "Tags Unterdrücken"
+#: mod/content.php:912 object/Item.php:369
+msgid "to"
+msgstr "zu"
 
-#: mod/admin.php:1035
-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/content.php:913 object/Item.php:371
+msgid "Wall-to-Wall"
+msgstr "Wall-to-Wall"
 
-#: mod/admin.php:1036
-msgid "Path to item cache"
-msgstr "Pfad zum Eintrag Cache"
+#: mod/content.php:914 object/Item.php:372
+msgid "via Wall-To-Wall:"
+msgstr "via Wall-To-Wall:"
 
-#: mod/admin.php:1036
-msgid "The item caches buffers generated bbcode and external images."
-msgstr "Im Item-Cache werden externe Bilder und geparster BBCode zwischen gespeichert."
+#: mod/fsuggest.php:63
+msgid "Friend suggestion sent."
+msgstr "Kontaktvorschlag gesendet."
 
-#: mod/admin.php:1037
-msgid "Cache duration in seconds"
-msgstr "Cache-Dauer in Sekunden"
+#: mod/fsuggest.php:97
+msgid "Suggest Friends"
+msgstr "Kontakte vorschlagen"
 
-#: mod/admin.php:1037
-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/fsuggest.php:99
+#, php-format
+msgid "Suggest a friend for %s"
+msgstr "Schlage %s einen Kontakt vor"
 
-#: mod/admin.php:1038
-msgid "Maximum numbers of comments per post"
-msgstr "Maximale Anzahl von Kommentaren pro Beitrag"
+#: mod/mood.php:133
+msgid "Mood"
+msgstr "Stimmung"
 
-#: mod/admin.php:1038
-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/mood.php:134
+msgid "Set your current mood and tell your friends"
+msgstr "Wähle Deine aktuelle Stimmung und erzähle sie Deinen Kontakten"
 
-#: mod/admin.php:1039
-msgid "Path for lock file"
-msgstr "Pfad für die Sperrdatei"
+#: mod/poke.php:192
+msgid "Poke/Prod"
+msgstr "Anstupsen"
 
-#: mod/admin.php:1039
-msgid ""
-"The lock file is used to avoid multiple pollers at one time. Only define a "
-"folder here."
-msgstr "Die lock-Datei wird benutzt, damit nicht mehrere poller auf einmal laufen. Definiere hier einen Dateiverzeichnis."
+#: mod/poke.php:193
+msgid "poke, prod or do other things to somebody"
+msgstr "Stupse Leute an oder mache anderes mit ihnen"
 
-#: mod/admin.php:1040
-msgid "Temp path"
-msgstr "Temp Pfad"
+#: mod/poke.php:194
+msgid "Recipient"
+msgstr "Empfänger"
 
-#: mod/admin.php:1040
-msgid ""
-"If you have a restricted system where the webserver can't access the system "
-"temp path, enter another path here."
-msgstr "Solltest du ein eingeschränktes System haben, auf dem der Webserver nicht auf das temp Verzeichnis des Systems zugreifen kann, setze hier einen anderen Pfad."
+#: mod/poke.php:195
+msgid "Choose what you wish to do to recipient"
+msgstr "Was willst Du mit dem Empfänger machen:"
 
-#: mod/admin.php:1041
-msgid "Base path to installation"
-msgstr "Basis-Pfad zur Installation"
+#: mod/poke.php:198
+msgid "Make this post private"
+msgstr "Diesen Beitrag privat machen"
 
-#: mod/admin.php:1041
-msgid ""
-"If the system cannot detect the correct path to your installation, enter the"
-" correct path here. This setting should only be set if you are using a "
-"restricted system and symbolic links to your webroot."
-msgstr "Falls das System nicht den korrekten Pfad zu deiner Installation gefunden hat, gib den richtigen Pfad bitte hier ein. Du solltest hier den Pfad nur auf einem eingeschränkten System angeben müssen, bei dem du mit symbolischen Links auf dein Webverzeichnis verweist."
+#: mod/profile_photo.php:44
+msgid "Image uploaded but image cropping failed."
+msgstr "Bild hochgeladen, aber das Zuschneiden schlug fehl."
 
-#: mod/admin.php:1042
-msgid "Disable picture proxy"
-msgstr "Bilder Proxy deaktivieren"
+#: mod/profile_photo.php:77 mod/profile_photo.php:84 mod/profile_photo.php:91
+#: mod/profile_photo.php:314
+#, php-format
+msgid "Image size reduction [%s] failed."
+msgstr "Verkleinern der Bildgröße von [%s] scheiterte."
 
-#: mod/admin.php:1042
+#: mod/profile_photo.php:124
 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 Leistung und Privatsphäre der Nutzer. Er sollte nicht auf Systemen verwendet werden, die nur über begrenzte Bandbreite verfügen."
+"Shift-reload the page or clear browser cache if the new photo does not "
+"display immediately."
+msgstr "Drücke Umschalt+Neu Laden oder leere den Browser-Cache, falls das neue Foto nicht gleich angezeigt wird."
 
-#: mod/admin.php:1043
-msgid "Enable old style pager"
-msgstr "Den Old-Style Pager aktiviren"
+#: mod/profile_photo.php:134
+msgid "Unable to process image"
+msgstr "Bild konnte nicht verarbeitet werden"
 
-#: mod/admin.php:1043
-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/profile_photo.php:150 mod/photos.php:786 mod/wall_upload.php:151
+#, php-format
+msgid "Image exceeds size limit of %s"
+msgstr "Bildgröße überschreitet das Limit von %s"
 
-#: mod/admin.php:1044
-msgid "Only search in tags"
-msgstr "Nur in Tags suchen"
+#: mod/profile_photo.php:159 mod/photos.php:826 mod/wall_upload.php:188
+msgid "Unable to process image."
+msgstr "Konnte das Bild nicht bearbeiten."
 
-#: mod/admin.php:1044
-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/profile_photo.php:248
+msgid "Upload File:"
+msgstr "Datei hochladen:"
 
-#: mod/admin.php:1046
-msgid "New base url"
-msgstr "Neue Basis-URL"
+#: mod/profile_photo.php:249
+msgid "Select a profile:"
+msgstr "Profil auswählen:"
 
-#: mod/admin.php:1046
-msgid ""
-"Change base url for this server. Sends relocate message to all DFRN contacts"
-" of all users."
-msgstr "Ändert die Basis-URL dieses Servers und sendet eine Umzugsmitteilung an alle DFRN Kontakte deiner Nutzer_innen."
+#: mod/profile_photo.php:251
+msgid "Upload"
+msgstr "Hochladen"
 
-#: mod/admin.php:1048
-msgid "RINO Encryption"
-msgstr "RINO Verschlüsselung"
+#: mod/profile_photo.php:254
+msgid "or"
+msgstr "oder"
 
-#: mod/admin.php:1048
-msgid "Encryption layer between nodes."
-msgstr "Verschlüsselung zwischen Friendica Instanzen"
+#: mod/profile_photo.php:254
+msgid "skip this step"
+msgstr "diesen Schritt überspringen"
 
-#: mod/admin.php:1049
-msgid "Embedly API key"
-msgstr "Embedly  API Schlüssel"
+#: mod/profile_photo.php:254
+msgid "select a photo from your photo albums"
+msgstr "wähle ein Foto aus deinen Fotoalben"
 
-#: mod/admin.php:1049
-msgid ""
-"<a href='http://embed.ly'>Embedly</a> is used to fetch additional data for "
-"web pages. This is an optional parameter."
-msgstr "<a href='http://embed.ly'>Embedly</a> wird verwendet um zusätzliche Informationen von Webseiten zu laden. Dies ist ein optionaler Parameter."
+#: mod/profile_photo.php:268
+msgid "Crop Image"
+msgstr "Bild zurechtschneiden"
 
-#: mod/admin.php:1051
-msgid "Enable 'worker' background processing"
-msgstr "Aktiviere die 'Worker' Hintergrundprozesse"
+#: mod/profile_photo.php:269
+msgid "Please adjust the image cropping for optimum viewing."
+msgstr "Passe bitte den Bildausschnitt an, damit das Bild optimal dargestellt werden kann."
 
-#: mod/admin.php:1051
-msgid ""
-"The worker background processing limits the number of parallel background "
-"jobs to a maximum number and respects the system load."
-msgstr "Der 'background worker' Prozess begrenzt die Zahl der Prozesse, die im Hintergrund parallel laufen und beachtet dabei die Systemlast."
+#: mod/profile_photo.php:271
+msgid "Done Editing"
+msgstr "Bearbeitung abgeschlossen"
 
-#: mod/admin.php:1052
-msgid "Maximum number of parallel workers"
-msgstr "Maximale Anzahl parallel laufender Worker"
+#: mod/profile_photo.php:305
+msgid "Image uploaded successfully."
+msgstr "Bild erfolgreich hochgeladen."
 
-#: mod/admin.php:1052
-msgid ""
-"On shared hosters set this to 2. On larger systems, values of 10 are great. "
-"Default value is 4."
-msgstr "Wenn dein Knoten bei einem Shared Hoster ist, setzte diesen Wert auf 2. Auf größeren Systemen funktioniert ein Wert von 10 recht gut. Standardeinstellung sind 4."
+#: mod/profile_photo.php:307 mod/photos.php:853 mod/wall_upload.php:221
+msgid "Image upload failed."
+msgstr "Hochladen des Bildes gescheitert."
 
-#: mod/admin.php:1053
-msgid "Don't use 'proc_open' with the worker"
-msgstr "'proc_open' nicht mit den Workern verwenden"
+#: mod/regmod.php:55
+msgid "Account approved."
+msgstr "Konto freigegeben."
 
-#: mod/admin.php:1053
-msgid ""
-"Enable this if your system doesn't allow the use of 'proc_open'. This can "
-"happen on shared hosters. If this is enabled you should increase the "
-"frequency of poller calls in your crontab."
-msgstr "Aktiviere diese Option, wenn dein System die Verwendung von 'proc_open' verhindert. Dies könnte auf Shared Hostern der Fall sein. Wenn du diese Option aktivierst, solltest du die Frequenz der poller Aufrufe in deiner crontab erhöhen."
+#: mod/regmod.php:92
+#, php-format
+msgid "Registration revoked for %s"
+msgstr "Registrierung für %s wurde zurückgezogen"
 
-#: mod/admin.php:1054
-msgid "Enable fastlane"
-msgstr "Aktiviere Fastlane"
+#: mod/regmod.php:104
+msgid "Please login."
+msgstr "Bitte melde Dich an."
 
-#: mod/admin.php:1054
-msgid ""
-"When enabed, the fastlane mechanism starts an additional worker if processes"
-" with higher priority are blocked by processes of lower priority."
-msgstr "Wenn aktiviert, wird der Fastlane-Mechanismus einen weiteren Worker-Prozeß starten wenn Prozesse mit höherer Priorität von Prozessen mit niedrigerer Priorität blockiert werden."
+#: mod/notifications.php:35
+msgid "Invalid request identifier."
+msgstr "Invalid request identifier."
 
-#: mod/admin.php:1055
-msgid "Enable frontend worker"
-msgstr "Aktiviere den Frontend Worker"
+#: mod/notifications.php:44 mod/notifications.php:180
+#: mod/notifications.php:252
+msgid "Discard"
+msgstr "Verwerfen"
 
-#: mod/admin.php:1055
-msgid ""
-"When enabled the Worker process is triggered when backend access is "
-"performed (e.g. messages being delivered). On smaller sites you might want "
-"to call yourdomain.tld/worker on a regular basis via an external cron job. "
-"You should only enable this option if you cannot utilize cron/scheduled jobs"
-" on your server. The worker background process needs to be activated for "
-"this."
-msgstr "Ist diese Option aktiv, wird der Worker Prozess durch Aktionen am Frontend gestartet (z.B. wenn Nachrichten zugestellt werden). Auf kleineren Seiten sollte yourdomain.tld/worker regelmäßig, beispielsweise durch einen externen Cron Anbieter, aufgerufen werden. Du solltest dies Option nur dann aktivieren, wenn du keinen Cron Job auf deinem eigenen Server starten kannst. Damit diese Option einen Effekt hat, muss der Worker Prozess aktiviert sein."
+#: mod/notifications.php:60 mod/notifications.php:179
+#: mod/notifications.php:251 mod/contacts.php:606 mod/contacts.php:806
+#: mod/contacts.php:991
+msgid "Ignore"
+msgstr "Ignorieren"
 
-#: mod/admin.php:1084
-msgid "Update has been marked successful"
-msgstr "Update wurde als erfolgreich markiert"
+#: mod/notifications.php:105
+msgid "Network Notifications"
+msgstr "Netzwerk Benachrichtigungen"
 
-#: mod/admin.php:1092
-#, php-format
-msgid "Database structure update %s was successfully applied."
-msgstr "Das Update %s der Struktur der Datenbank wurde erfolgreich angewandt."
+#: mod/notifications.php:117
+msgid "Personal Notifications"
+msgstr "Persönliche Benachrichtigungen"
 
-#: mod/admin.php:1095
-#, 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/notifications.php:123
+msgid "Home Notifications"
+msgstr "Pinnwand Benachrichtigungen"
 
-#: mod/admin.php:1107
-#, php-format
-msgid "Executing %s failed with error: %s"
-msgstr "Die Ausführung von %s schlug fehl. Fehlermeldung: %s"
+#: mod/notifications.php:152
+msgid "Show Ignored Requests"
+msgstr "Zeige ignorierte Anfragen"
 
-#: mod/admin.php:1110
-#, php-format
-msgid "Update %s was successfully applied."
-msgstr "Update %s war erfolgreich."
+#: mod/notifications.php:152
+msgid "Hide Ignored Requests"
+msgstr "Verberge ignorierte Anfragen"
 
-#: mod/admin.php:1114
-#, 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/notifications.php:164 mod/notifications.php:222
+msgid "Notification type: "
+msgstr "Benachrichtigungstyp: "
 
-#: mod/admin.php:1116
+#: mod/notifications.php:167
 #, 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."
+msgid "suggested by %s"
+msgstr "vorgeschlagen von %s"
 
-#: mod/admin.php:1135
-msgid "No failed updates."
-msgstr "Keine fehlgeschlagenen Updates."
+#: mod/notifications.php:172 mod/notifications.php:239 mod/contacts.php:613
+msgid "Hide this contact from others"
+msgstr "Verbirg diesen Kontakt vor Anderen"
 
-#: mod/admin.php:1136
-msgid "Check database structure"
-msgstr "Datenbank Struktur überprüfen"
+#: mod/notifications.php:173 mod/notifications.php:240
+msgid "Post a new friend activity"
+msgstr "Neue-Kontakt Nachricht senden"
 
-#: mod/admin.php:1141
-msgid "Failed Updates"
-msgstr "Fehlgeschlagene Updates"
+#: mod/notifications.php:173 mod/notifications.php:240
+msgid "if applicable"
+msgstr "falls anwendbar"
 
-#: mod/admin.php:1142
-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/notifications.php:176 mod/notifications.php:249 mod/admin.php:1412
+msgid "Approve"
+msgstr "Genehmigen"
 
-#: mod/admin.php:1143
-msgid "Mark success (if update was manually applied)"
-msgstr "Als erfolgreich markieren (falls das Update manuell installiert wurde)"
+#: mod/notifications.php:195
+msgid "Claims to be known to you: "
+msgstr "Behauptet Dich zu kennen: "
 
-#: mod/admin.php:1144
-msgid "Attempt to execute this update step automatically"
-msgstr "Versuchen, diesen Schritt automatisch auszuführen"
+#: mod/notifications.php:196
+msgid "yes"
+msgstr "ja"
 
-#: mod/admin.php:1178
-#, php-format
+#: mod/notifications.php:196
+msgid "no"
+msgstr "nein"
+
+#: mod/notifications.php:197
 msgid ""
-"\n"
-"\t\t\tDear %1$s,\n"
-"\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."
+"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 "Soll Deine Beziehung beidseitig sein oder nicht? \"Kontakt\" bedeutet, ihr könnt gegenseitig die Beiträge des Anderen lesen dürft. \"Fan/Verehrer\", dass du das lesen deiner Beiträge erlaubst aber nicht die Beiträge der anderen Seite lesen möchtest. Genehmigen als:"
 
-#: mod/admin.php:1181
-#, php-format
+#: mod/notifications.php:200
 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 "\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."
+"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 "Soll Deine Beziehung beidseitig sein oder nicht? \"Freund\" bedeutet, ihr gegenseitig die Beiträge des Anderen lesen dürft. \"Teilenden\", das du das lesen deiner Beiträge erlaubst aber nicht die Beiträge der anderen Seite lesen möchtest. Genehmigen als:"
 
-#: mod/admin.php:1225
-#, 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/notifications.php:209
+msgid "Friend"
+msgstr "Kontakt"
 
-#: mod/admin.php:1232
-#, php-format
-msgid "%s user deleted"
-msgid_plural "%s users deleted"
-msgstr[0] "%s Nutzer gelöscht"
-msgstr[1] "%s Nutzer gelöscht"
+#: mod/notifications.php:210
+msgid "Sharer"
+msgstr "Teilenden"
 
-#: mod/admin.php:1279
-#, php-format
-msgid "User '%s' deleted"
-msgstr "Nutzer '%s' gelöscht"
+#: mod/notifications.php:210
+msgid "Fan/Admirer"
+msgstr "Fan/Verehrer"
 
-#: mod/admin.php:1287
-#, php-format
-msgid "User '%s' unblocked"
-msgstr "Nutzer '%s' entsperrt"
+#: mod/notifications.php:243 mod/contacts.php:624 mod/follow.php:126
+msgid "Profile URL"
+msgstr "Profil URL"
 
-#: mod/admin.php:1287
-#, php-format
-msgid "User '%s' blocked"
-msgstr "Nutzer '%s' gesperrt"
+#: mod/notifications.php:260
+msgid "No introductions."
+msgstr "Keine Kontaktanfragen."
 
-#: mod/admin.php:1396 mod/admin.php:1422
-msgid "Register date"
-msgstr "Anmeldedatum"
+#: mod/notifications.php:299
+msgid "Show unread"
+msgstr "Ungelesene anzeigen"
 
-#: mod/admin.php:1396 mod/admin.php:1422
-msgid "Last login"
-msgstr "Letzte Anmeldung"
+#: mod/notifications.php:299
+msgid "Show all"
+msgstr "Alle anzeigen"
 
-#: mod/admin.php:1396 mod/admin.php:1422
-msgid "Last item"
-msgstr "Letzter Beitrag"
+#: mod/notifications.php:305
+#, php-format
+msgid "No more %s notifications."
+msgstr "Keine weiteren %s Benachrichtigungen"
 
-#: mod/admin.php:1396 mod/settings.php:43
-msgid "Account"
-msgstr "Nutzerkonto"
+#: mod/profiles.php:19 mod/profiles.php:134 mod/profiles.php:180
+#: mod/profiles.php:617 mod/dfrn_confirm.php:70
+msgid "Profile not found."
+msgstr "Profil nicht gefunden."
 
-#: mod/admin.php:1405
-msgid "Add User"
-msgstr "Nutzer hinzufügen"
+#: mod/profiles.php:38
+msgid "Profile deleted."
+msgstr "Profil gelöscht."
 
-#: mod/admin.php:1406
-msgid "select all"
-msgstr "Alle auswählen"
+#: mod/profiles.php:56 mod/profiles.php:90
+msgid "Profile-"
+msgstr "Profil-"
 
-#: mod/admin.php:1407
-msgid "User registrations waiting for confirm"
-msgstr "Neuanmeldungen, die auf Deine Bestätigung warten"
+#: mod/profiles.php:75 mod/profiles.php:118
+msgid "New profile created."
+msgstr "Neues Profil angelegt."
 
-#: mod/admin.php:1408
-msgid "User waiting for permanent deletion"
-msgstr "Nutzer wartet auf permanente Löschung"
+#: mod/profiles.php:96
+msgid "Profile unavailable to clone."
+msgstr "Profil nicht zum Duplizieren verfügbar."
 
-#: mod/admin.php:1409
-msgid "Request date"
-msgstr "Anfragedatum"
+#: mod/profiles.php:190
+msgid "Profile Name is required."
+msgstr "Profilname ist erforderlich."
 
-#: mod/admin.php:1410
-msgid "No registrations."
-msgstr "Keine Neuanmeldungen."
+#: mod/profiles.php:338
+msgid "Marital Status"
+msgstr "Familienstand"
 
-#: mod/admin.php:1411
-msgid "Note from the user"
-msgstr "Hinweis vom Nutzer"
+#: mod/profiles.php:342
+msgid "Romantic Partner"
+msgstr "Romanze"
 
-#: mod/admin.php:1413
-msgid "Deny"
-msgstr "Verwehren"
+#: mod/profiles.php:354
+msgid "Work/Employment"
+msgstr "Arbeit / Beschäftigung"
 
-#: mod/admin.php:1415 mod/contacts.php:605 mod/contacts.php:805
-#: mod/contacts.php:992
-msgid "Block"
-msgstr "Sperren"
+#: mod/profiles.php:357
+msgid "Religion"
+msgstr "Religion"
 
-#: mod/admin.php:1416 mod/contacts.php:605 mod/contacts.php:805
-#: mod/contacts.php:992
-msgid "Unblock"
-msgstr "Entsperren"
+#: mod/profiles.php:361
+msgid "Political Views"
+msgstr "Politische Ansichten"
 
-#: mod/admin.php:1417
-msgid "Site admin"
-msgstr "Seitenadministrator"
+#: mod/profiles.php:365
+msgid "Gender"
+msgstr "Geschlecht"
 
-#: mod/admin.php:1418
-msgid "Account expired"
-msgstr "Account ist abgelaufen"
+#: mod/profiles.php:369
+msgid "Sexual Preference"
+msgstr "Sexuelle Vorlieben"
 
-#: mod/admin.php:1421
-msgid "New User"
-msgstr "Neuer Nutzer"
+#: mod/profiles.php:373
+msgid "XMPP"
+msgstr "XMPP"
 
-#: mod/admin.php:1422
-msgid "Deleted since"
-msgstr "Gelöscht seit"
+#: mod/profiles.php:377
+msgid "Homepage"
+msgstr "Webseite"
 
-#: mod/admin.php:1427
-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/profiles.php:381 mod/profiles.php:702
+msgid "Interests"
+msgstr "Interessen"
 
-#: mod/admin.php:1428
-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/profiles.php:385
+msgid "Address"
+msgstr "Adresse"
 
-#: mod/admin.php:1438
-msgid "Name of the new user."
-msgstr "Name des neuen Nutzers"
+#: mod/profiles.php:392 mod/profiles.php:698
+msgid "Location"
+msgstr "Wohnort"
 
-#: mod/admin.php:1439
-msgid "Nickname"
-msgstr "Spitzname"
+#: mod/profiles.php:477
+msgid "Profile updated."
+msgstr "Profil aktualisiert."
 
-#: mod/admin.php:1439
-msgid "Nickname of the new user."
-msgstr "Spitznamen für den neuen Nutzer"
+#: mod/profiles.php:564
+msgid " and "
+msgstr " und "
 
-#: mod/admin.php:1440
-msgid "Email address of the new user."
-msgstr "Email Adresse des neuen Nutzers"
+#: mod/profiles.php:572
+msgid "public profile"
+msgstr "öffentliches Profil"
 
-#: mod/admin.php:1483
+#: mod/profiles.php:575
 #, php-format
-msgid "Plugin %s disabled."
-msgstr "Plugin %s deaktiviert."
+msgid "%1$s changed %2$s to &ldquo;%3$s&rdquo;"
+msgstr "%1$s hat %2$s geändert auf &ldquo;%3$s&rdquo;"
 
-#: mod/admin.php:1487
+#: mod/profiles.php:576
 #, php-format
-msgid "Plugin %s enabled."
-msgstr "Plugin %s aktiviert."
+msgid " - Visit %1$s's %2$s"
+msgstr " – %1$ss %2$s besuchen"
 
-#: mod/admin.php:1498 mod/admin.php:1734
-msgid "Disable"
-msgstr "Ausschalten"
+#: mod/profiles.php:579
+#, php-format
+msgid "%1$s has an updated %2$s, changing %3$s."
+msgstr "%1$s hat folgendes aktualisiert %2$s, verändert wurde %3$s."
 
-#: mod/admin.php:1500 mod/admin.php:1736
-msgid "Enable"
-msgstr "Einschalten"
+#: mod/profiles.php:645
+msgid "Hide contacts and friends:"
+msgstr "Kontakte und Freunde verbergen"
 
-#: mod/admin.php:1523 mod/admin.php:1781
-msgid "Toggle"
-msgstr "Umschalten"
+#: mod/profiles.php:650
+msgid "Hide your contact/friend list from viewers of this profile?"
+msgstr "Liste der Kontakte vor Betrachtern dieses Profils verbergen?"
 
-#: mod/admin.php:1531 mod/admin.php:1790
-msgid "Author: "
-msgstr "Autor:"
+#: mod/profiles.php:674
+msgid "Show more profile fields:"
+msgstr "Zeige mehr Profil-Felder:"
 
-#: mod/admin.php:1532 mod/admin.php:1791
-msgid "Maintainer: "
-msgstr "Betreuer:"
+#: mod/profiles.php:686
+msgid "Profile Actions"
+msgstr "Profilaktionen"
 
-#: mod/admin.php:1584
-msgid "Reload active plugins"
-msgstr "Aktive Plugins neu laden"
+#: mod/profiles.php:687
+msgid "Edit Profile Details"
+msgstr "Profil bearbeiten"
 
-#: mod/admin.php:1589
-#, php-format
-msgid ""
-"There are currently no plugins available on your node. You can find the "
-"official plugin repository at %1$s and might find other interesting plugins "
-"in the open plugin registry at %2$s"
-msgstr "Es sind derzeit keine Plugins auf diesem Knoten verfügbar. Du findest das offizielle Plugin-Repository unter %1$s und weitere eventuell interessante Plugins im offenen Plugins-Verzeichnis auf %2$s."
+#: mod/profiles.php:689
+msgid "Change Profile Photo"
+msgstr "Profilbild ändern"
 
-#: mod/admin.php:1694
-msgid "No themes found."
-msgstr "Keine Themen gefunden."
+#: mod/profiles.php:690
+msgid "View this profile"
+msgstr "Dieses Profil anzeigen"
 
-#: mod/admin.php:1772
-msgid "Screenshot"
-msgstr "Bildschirmfoto"
+#: mod/profiles.php:692
+msgid "Create a new profile using these settings"
+msgstr "Neues Profil anlegen und diese Einstellungen verwenden"
 
-#: mod/admin.php:1832
-msgid "Reload active themes"
-msgstr "Aktives Theme neu laden"
+#: mod/profiles.php:693
+msgid "Clone this profile"
+msgstr "Dieses Profil duplizieren"
 
-#: mod/admin.php:1837
-#, php-format
-msgid "No themes found on the system. They should be paced in %1$s"
-msgstr "Es wurden keine Themes auf dem System gefunden. Diese sollten in %1$s patziert werden."
+#: mod/profiles.php:694
+msgid "Delete this profile"
+msgstr "Dieses Profil löschen"
 
-#: mod/admin.php:1838
-msgid "[Experimental]"
-msgstr "[Experimentell]"
+#: mod/profiles.php:696
+msgid "Basic information"
+msgstr "Grundinformationen"
 
-#: mod/admin.php:1839
-msgid "[Unsupported]"
-msgstr "[Nicht unterstützt]"
+#: mod/profiles.php:697
+msgid "Profile picture"
+msgstr "Profilbild"
 
-#: mod/admin.php:1863
-msgid "Log settings updated."
-msgstr "Protokolleinstellungen aktualisiert."
+#: mod/profiles.php:699
+msgid "Preferences"
+msgstr "Vorlieben"
 
-#: mod/admin.php:1895
-msgid "PHP log currently enabled."
-msgstr "PHP Protokollierung ist derzeit aktiviert."
+#: mod/profiles.php:700
+msgid "Status information"
+msgstr "Status Informationen"
 
-#: mod/admin.php:1897
-msgid "PHP log currently disabled."
-msgstr "PHP Protokollierung ist derzeit nicht aktiviert."
+#: mod/profiles.php:701
+msgid "Additional information"
+msgstr "Zusätzliche Informationen"
 
-#: mod/admin.php:1906
-msgid "Clear"
-msgstr "löschen"
+#: mod/profiles.php:704
+msgid "Relation"
+msgstr "Beziehung"
 
-#: mod/admin.php:1911
-msgid "Enable Debugging"
-msgstr "Protokoll führen"
+#: mod/profiles.php:708
+msgid "Your Gender:"
+msgstr "Dein Geschlecht:"
 
-#: mod/admin.php:1912
-msgid "Log file"
-msgstr "Protokolldatei"
+#: mod/profiles.php:709
+msgid "<span class=\"heart\">&hearts;</span> Marital Status:"
+msgstr "<span class=\"heart\">&hearts;</span> Beziehungsstatus:"
 
-#: mod/admin.php:1912
-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/profiles.php:711
+msgid "Example: fishing photography software"
+msgstr "Beispiel: Fischen Fotografie Software"
 
-#: mod/admin.php:1913
-msgid "Log level"
-msgstr "Protokoll-Level"
+#: mod/profiles.php:716
+msgid "Profile Name:"
+msgstr "Profilname:"
 
-#: mod/admin.php:1916
-msgid "PHP logging"
-msgstr "PHP Protokollieren"
+#: mod/profiles.php:716 mod/events.php:484 mod/events.php:496
+msgid "Required"
+msgstr "Benötigt"
 
-#: mod/admin.php:1917
+#: mod/profiles.php:718
 msgid ""
-"To enable logging of PHP errors and warnings you can add the following to "
-"the .htconfig.php file of your installation. The filename set in the "
-"'error_log' line is relative to the friendica top-level directory and must "
-"be writeable by the web server. The option '1' for 'log_errors' and "
-"'display_errors' is to enable these options, set to '0' to disable them."
-msgstr "Um PHP Warnungen und Fehler zu protokollieren, kannst du die folgenden Zeilen zur .htconfig.php Datei deiner Installation hinzufügen. Den Dateinamen der Log-Datei legst du in der Zeile mit dem 'error_log' fest,  Er ist relativ zum Friendica-Stammverzeichnis und muss schreibbar durch den Webserver sein. Eine \"1\" als Option für die Punkte 'log_errors' und 'display_errors' aktiviert die Funktionen zum Protokollieren bzw. Anzeigen der Fehler, eine \"0\" deaktiviert sie."
+"This is your <strong>public</strong> profile.<br />It <strong>may</strong> "
+"be visible to anybody using the internet."
+msgstr "Dies ist Dein <strong>öffentliches</strong> Profil.<br />Es <strong>könnte</strong> für jeden Nutzer des Internets sichtbar sein."
 
-#: mod/admin.php:2044 mod/admin.php:2045 mod/settings.php:778
-msgid "Off"
-msgstr "Aus"
+#: mod/profiles.php:719
+msgid "Your Full Name:"
+msgstr "Dein kompletter Name:"
 
-#: mod/admin.php:2044 mod/admin.php:2045 mod/settings.php:778
-msgid "On"
-msgstr "An"
+#: mod/profiles.php:720
+msgid "Title/Description:"
+msgstr "Titel/Beschreibung:"
 
-#: mod/admin.php:2045
-#, php-format
-msgid "Lock feature %s"
-msgstr "Feature festlegen: %s"
+#: mod/profiles.php:723
+msgid "Street Address:"
+msgstr "Adresse:"
 
-#: mod/admin.php:2053
-msgid "Manage Additional Features"
-msgstr "Zusätzliche Features Verwalten"
+#: mod/profiles.php:724
+msgid "Locality/City:"
+msgstr "Wohnort:"
 
-#: mod/wall_attach.php:94
-msgid "Sorry, maybe your upload is bigger than the PHP configuration allows"
-msgstr "Entschuldige, die Datei scheint größer zu sein als es die PHP Konfiguration erlaubt."
+#: mod/profiles.php:725
+msgid "Region/State:"
+msgstr "Region/Bundesstaat:"
 
-#: mod/wall_attach.php:94
-msgid "Or - did you try to upload an empty file?"
-msgstr "Oder - hast Du versucht, eine leere Datei hochzuladen?"
+#: mod/profiles.php:726
+msgid "Postal/Zip Code:"
+msgstr "Postleitzahl:"
 
-#: mod/wall_attach.php:105
-#, php-format
-msgid "File exceeds size limit of %s"
-msgstr "Die Datei ist größer als das erlaubte Limit von %s"
+#: mod/profiles.php:727
+msgid "Country:"
+msgstr "Land:"
 
-#: mod/wall_attach.php:156 mod/wall_attach.php:172
-msgid "File upload failed."
-msgstr "Hochladen der Datei fehlgeschlagen."
+#: mod/profiles.php:731
+msgid "Who: (if applicable)"
+msgstr "Wer: (falls anwendbar)"
 
-#: mod/allfriends.php:43
-msgid "No friends to display."
-msgstr "Keine Kontakte zum Anzeigen."
+#: mod/profiles.php:731
+msgid "Examples: cathy123, Cathy Williams, cathy@example.com"
+msgstr "Beispiele: cathy123, Cathy Williams, cathy@example.com"
 
-#: mod/cal.php:149 mod/display.php:328 mod/profile.php:155
+#: mod/profiles.php:732
+msgid "Since [date]:"
+msgstr "Seit [Datum]:"
+
+#: mod/profiles.php:734
+msgid "Tell us about yourself..."
+msgstr "Erzähle uns ein bisschen von Dir …"
+
+#: mod/profiles.php:735
+msgid "XMPP (Jabber) address:"
+msgstr "XMPP (Jabber) Adresse"
+
+#: mod/profiles.php:735
+msgid ""
+"The XMPP address will be propagated to your contacts so that they can follow"
+" you."
+msgstr "Die XMPP Adresse wird an deine Kontakte verteilt werden, so dass sie auch über XMPP mit dir in Kontakt treten können."
+
+#: mod/profiles.php:736
+msgid "Homepage URL:"
+msgstr "Adresse der Homepage:"
+
+#: mod/profiles.php:739
+msgid "Religious Views:"
+msgstr "Religiöse Ansichten:"
+
+#: mod/profiles.php:740
+msgid "Public Keywords:"
+msgstr "Öffentliche Schlüsselwörter:"
+
+#: mod/profiles.php:740
+msgid "(Used for suggesting potential friends, can be seen by others)"
+msgstr "(Wird verwendet, um potentielle Kontakte zu finden, kann von Kontakten eingesehen werden)"
+
+#: mod/profiles.php:741
+msgid "Private Keywords:"
+msgstr "Private Schlüsselwörter:"
+
+#: mod/profiles.php:741
+msgid "(Used for searching profiles, never shown to others)"
+msgstr "(Wird für die Suche nach Profilen verwendet und niemals veröffentlicht)"
+
+#: mod/profiles.php:744
+msgid "Musical interests"
+msgstr "Musikalische Interessen"
+
+#: mod/profiles.php:745
+msgid "Books, literature"
+msgstr "Bücher, Literatur"
+
+#: mod/profiles.php:746
+msgid "Television"
+msgstr "Fernsehen"
+
+#: mod/profiles.php:747
+msgid "Film/dance/culture/entertainment"
+msgstr "Filme/Tänze/Kultur/Unterhaltung"
+
+#: mod/profiles.php:748
+msgid "Hobbies/Interests"
+msgstr "Hobbies/Interessen"
+
+#: mod/profiles.php:749
+msgid "Love/romance"
+msgstr "Liebe/Romantik"
+
+#: mod/profiles.php:750
+msgid "Work/employment"
+msgstr "Arbeit/Anstellung"
+
+#: mod/profiles.php:751
+msgid "School/education"
+msgstr "Schule/Ausbildung"
+
+#: mod/profiles.php:752
+msgid "Contact information and Social Networks"
+msgstr "Kontaktinformationen und Soziale Netzwerke"
+
+#: mod/profiles.php:794
+msgid "Edit/Manage Profiles"
+msgstr "Bearbeite/Verwalte Profile"
+
+#: mod/allfriends.php:43
+msgid "No friends to display."
+msgstr "Keine Kontakte zum Anzeigen."
+
+#: mod/cal.php:149 mod/display.php:328 mod/profile.php:155
 msgid "Access to this profile has been restricted."
 msgstr "Der Zugriff zu diesem Profil wurde eingeschränkt."
 
+#: mod/cal.php:276 mod/events.php:380
+msgid "View"
+msgstr "Ansehen"
+
+#: mod/cal.php:277 mod/events.php:382
+msgid "Previous"
+msgstr "Vorherige"
+
+#: mod/cal.php:278 mod/events.php:383 mod/install.php:231
+msgid "Next"
+msgstr "Nächste"
+
+#: mod/cal.php:287 mod/events.php:392
+msgid "list"
+msgstr "Liste"
+
 #: mod/cal.php:297
 msgid "User not found"
 msgstr "Nutzer nicht gefunden"
@@ -5583,3153 +5050,3652 @@ msgstr "Keine exportierbaren Daten gefunden"
 msgid "calendar"
 msgstr "Kalender"
 
-#: mod/content.php:119 mod/network.php:469
-msgid "No such group"
-msgstr "Es gibt keine solche Gruppe"
+#: mod/common.php:86
+msgid "No contacts in common."
+msgstr "Keine gemeinsamen Kontakte."
 
-#: mod/content.php:130 mod/network.php:496 mod/group.php:193
-msgid "Group is empty"
-msgstr "Gruppe ist leer"
+#: mod/common.php:134 mod/contacts.php:863
+msgid "Common Friends"
+msgstr "Gemeinsame Kontakte"
 
-#: mod/content.php:135 mod/network.php:500
-#, php-format
-msgid "Group: %s"
-msgstr "Gruppe: %s"
+#: mod/community.php:27
+msgid "Not available."
+msgstr "Nicht verfügbar."
 
-#: mod/content.php:325 object/Item.php:95
-msgid "This entry was edited"
-msgstr "Dieser Beitrag wurde bearbeitet."
+#: mod/directory.php:197 view/theme/vier/theme.php:201
+msgid "Global Directory"
+msgstr "Weltweites Verzeichnis"
 
-#: mod/content.php:621 object/Item.php:429
-#, php-format
-msgid "%d comment"
-msgid_plural "%d comments"
-msgstr[0] "%d Kommentar"
-msgstr[1] "%d Kommentare"
+#: mod/directory.php:199
+msgid "Find on this site"
+msgstr "Auf diesem Server suchen"
 
-#: mod/content.php:638 mod/photos.php:1379 object/Item.php:117
-msgid "Private Message"
-msgstr "Private Nachricht"
+#: mod/directory.php:201
+msgid "Results for:"
+msgstr "Ergebnisse für:"
 
-#: mod/content.php:702 mod/photos.php:1567 object/Item.php:263
-msgid "I like this (toggle)"
-msgstr "Ich mag das (toggle)"
+#: mod/directory.php:203
+msgid "Site Directory"
+msgstr "Verzeichnis"
 
-#: mod/content.php:702 object/Item.php:263
-msgid "like"
-msgstr "mag ich"
+#: mod/directory.php:210
+msgid "No entries (some entries may be hidden)."
+msgstr "Keine Einträge (einige Einträge könnten versteckt sein)."
 
-#: mod/content.php:703 mod/photos.php:1568 object/Item.php:264
-msgid "I don't like this (toggle)"
-msgstr "Ich mag das nicht (toggle)"
+#: mod/dirfind.php:36
+#, php-format
+msgid "People Search - %s"
+msgstr "Personensuche - %s"
 
-#: mod/content.php:703 object/Item.php:264
-msgid "dislike"
-msgstr "mag ich nicht"
+#: mod/dirfind.php:47
+#, php-format
+msgid "Forum Search - %s"
+msgstr "Forensuche - %s"
 
-#: mod/content.php:705 object/Item.php:266
-msgid "Share this"
-msgstr "Weitersagen"
+#: mod/dirfind.php:240 mod/match.php:107
+msgid "No matches"
+msgstr "Keine Übereinstimmungen"
 
-#: mod/content.php:705 object/Item.php:266
-msgid "share"
-msgstr "Teilen"
+#: mod/display.php:473
+msgid "Item has been removed."
+msgstr "Eintrag wurde entfernt."
 
-#: mod/content.php:725 mod/photos.php:1587 mod/photos.php:1635
-#: mod/photos.php:1721 object/Item.php:717
-msgid "This is you"
-msgstr "Das bist Du"
+#: mod/events.php:95 mod/events.php:97
+msgid "Event can not end before it has started."
+msgstr "Die Veranstaltung kann nicht enden bevor sie beginnt."
 
-#: mod/content.php:729 object/Item.php:721
-msgid "Bold"
-msgstr "Fett"
+#: mod/events.php:104 mod/events.php:106
+msgid "Event title and start time are required."
+msgstr "Der Veranstaltungstitel und die Anfangszeit müssen angegeben werden."
 
-#: mod/content.php:730 object/Item.php:722
-msgid "Italic"
-msgstr "Kursiv"
+#: mod/events.php:381
+msgid "Create New Event"
+msgstr "Neue Veranstaltung erstellen"
 
-#: mod/content.php:731 object/Item.php:723
-msgid "Underline"
-msgstr "Unterstrichen"
+#: mod/events.php:482
+msgid "Event details"
+msgstr "Veranstaltungsdetails"
 
-#: mod/content.php:732 object/Item.php:724
-msgid "Quote"
-msgstr "Zitat"
+#: mod/events.php:483
+msgid "Starting date and Title are required."
+msgstr "Anfangszeitpunkt und Titel werden benötigt"
 
-#: mod/content.php:733 object/Item.php:725
-msgid "Code"
-msgstr "Code"
+#: mod/events.php:484 mod/events.php:485
+msgid "Event Starts:"
+msgstr "Veranstaltungsbeginn:"
 
-#: mod/content.php:734 object/Item.php:726
-msgid "Image"
-msgstr "Bild"
+#: mod/events.php:486 mod/events.php:502
+msgid "Finish date/time is not known or not relevant"
+msgstr "Enddatum/-zeit ist nicht bekannt oder nicht relevant"
 
-#: mod/content.php:735 object/Item.php:727
-msgid "Link"
-msgstr "Link"
+#: mod/events.php:488 mod/events.php:489
+msgid "Event Finishes:"
+msgstr "Veranstaltungsende:"
 
-#: mod/content.php:736 object/Item.php:728
-msgid "Video"
-msgstr "Video"
+#: mod/events.php:490 mod/events.php:503
+msgid "Adjust for viewer timezone"
+msgstr "An Zeitzone des Betrachters anpassen"
 
-#: mod/content.php:746 mod/settings.php:740 object/Item.php:122
-#: object/Item.php:124
-msgid "Edit"
-msgstr "Bearbeiten"
+#: mod/events.php:492
+msgid "Description:"
+msgstr "Beschreibung"
 
-#: mod/content.php:771 object/Item.php:227
-msgid "add star"
-msgstr "markieren"
+#: mod/events.php:496 mod/events.php:498
+msgid "Title:"
+msgstr "Titel:"
 
-#: mod/content.php:772 object/Item.php:228
-msgid "remove star"
-msgstr "Markierung entfernen"
+#: mod/events.php:499 mod/events.php:500
+msgid "Share this event"
+msgstr "Veranstaltung teilen"
 
-#: mod/content.php:773 object/Item.php:229
-msgid "toggle star status"
-msgstr "Markierung umschalten"
+#: mod/maintenance.php:9
+msgid "System down for maintenance"
+msgstr "System zur Wartung abgeschaltet"
 
-#: mod/content.php:776 object/Item.php:232
-msgid "starred"
-msgstr "markiert"
+#: mod/match.php:33
+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/content.php:777 mod/content.php:798 object/Item.php:252
-msgid "add tag"
-msgstr "Tag hinzufügen"
+#: mod/match.php:86
+msgid "is interested in:"
+msgstr "ist interessiert an:"
 
-#: mod/content.php:787 object/Item.php:240
-msgid "ignore thread"
-msgstr "Thread ignorieren"
+#: mod/match.php:100
+msgid "Profile Match"
+msgstr "Profilübereinstimmungen"
 
-#: mod/content.php:788 object/Item.php:241
-msgid "unignore thread"
-msgstr "Thread nicht mehr ignorieren"
+#: mod/profile.php:179
+msgid "Tips for New Members"
+msgstr "Tipps für neue Nutzer"
 
-#: mod/content.php:789 object/Item.php:242
-msgid "toggle ignore status"
-msgstr "Ignoriert-Status ein-/ausschalten"
+#: mod/suggest.php:27
+msgid "Do you really want to delete this suggestion?"
+msgstr "Möchtest Du wirklich diese Empfehlung löschen?"
 
-#: mod/content.php:792 mod/ostatus_subscribe.php:69 object/Item.php:245
-msgid "ignored"
-msgstr "Ignoriert"
+#: mod/suggest.php:71
+msgid ""
+"No suggestions available. If this is a new site, please try again in 24 "
+"hours."
+msgstr "Keine Vorschläge verfügbar. Falls der Server frisch aufgesetzt wurde, versuche es bitte in 24 Stunden noch einmal."
 
-#: mod/content.php:803 object/Item.php:137
-msgid "save to folder"
-msgstr "In Ordner speichern"
+#: mod/suggest.php:84 mod/suggest.php:104
+msgid "Ignore/Hide"
+msgstr "Ignorieren/Verbergen"
 
-#: mod/content.php:848 object/Item.php:201
-msgid "I will attend"
-msgstr "Ich werde teilnehmen"
+#: mod/update_community.php:19 mod/update_display.php:23
+#: mod/update_network.php:27 mod/update_notes.php:36 mod/update_profile.php:35
+msgid "[Embedded content - reload page to view]"
+msgstr "[Eingebetteter Inhalt - Seite neu laden zum Betrachten]"
 
-#: mod/content.php:848 object/Item.php:201
-msgid "I will not attend"
-msgstr "Ich werde nicht teilnehmen"
+#: mod/photos.php:88 mod/photos.php:1856
+msgid "Recent Photos"
+msgstr "Neueste Fotos"
 
-#: mod/content.php:848 object/Item.php:201
-msgid "I might attend"
-msgstr "Ich werde eventuell teilnehmen"
+#: mod/photos.php:91 mod/photos.php:1283 mod/photos.php:1858
+msgid "Upload New Photos"
+msgstr "Neue Fotos hochladen"
 
-#: mod/content.php:912 object/Item.php:369
-msgid "to"
-msgstr "zu"
+#: mod/photos.php:105 mod/settings.php:36
+msgid "everybody"
+msgstr "jeder"
 
-#: mod/content.php:913 object/Item.php:371
-msgid "Wall-to-Wall"
-msgstr "Wall-to-Wall"
+#: mod/photos.php:169
+msgid "Contact information unavailable"
+msgstr "Kontaktinformationen nicht verfügbar"
 
-#: mod/content.php:914 object/Item.php:372
-msgid "via Wall-To-Wall:"
-msgstr "via Wall-To-Wall:"
+#: mod/photos.php:190
+msgid "Album not found."
+msgstr "Album nicht gefunden."
 
-#: mod/repair_ostatus.php:14
-msgid "Resubscribing to OStatus contacts"
-msgstr "Erneuern der OStatus Abonements"
+#: mod/photos.php:220 mod/photos.php:232 mod/photos.php:1227
+msgid "Delete Album"
+msgstr "Album löschen"
 
-#: mod/repair_ostatus.php:30
-msgid "Error"
-msgstr "Fehler"
+#: mod/photos.php:230
+msgid "Do you really want to delete this photo album and all its photos?"
+msgstr "Möchtest Du wirklich dieses Foto-Album und all seine Foto löschen?"
 
-#: mod/repair_ostatus.php:44 mod/ostatus_subscribe.php:51
-msgid "Done"
-msgstr "Erledigt"
+#: mod/photos.php:308 mod/photos.php:319 mod/photos.php:1540
+msgid "Delete Photo"
+msgstr "Foto löschen"
 
-#: mod/repair_ostatus.php:50 mod/ostatus_subscribe.php:73
-msgid "Keep this window open until done."
-msgstr "Lasse dieses Fenster offen, bis der Vorgang abgeschlossen ist."
+#: mod/photos.php:317
+msgid "Do you really want to delete this photo?"
+msgstr "Möchtest Du wirklich dieses Foto löschen?"
 
-#: mod/delegate.php:101
-msgid "No potential page delegates located."
-msgstr "Keine potentiellen Bevollmächtigten für die Seite gefunden."
+#: mod/photos.php:688
+#, php-format
+msgid "%1$s was tagged in %2$s by %3$s"
+msgstr "%1$s wurde von %3$s in %2$s getaggt"
 
-#: mod/delegate.php:132
-msgid ""
-"Delegates are able to manage all aspects of this account/page except for "
-"basic account settings. Please do not delegate your personal account to "
-"anybody that you do not trust completely."
-msgstr "Bevollmächtigte sind in der Lage, alle Aspekte dieses Kontos/dieser Seite zu verwalten, abgesehen von den Grundeinstellungen des Kontos. Bitte gib niemandem eine Bevollmächtigung für Deinen privaten Account, dem Du nicht absolut vertraust!"
+#: mod/photos.php:688
+msgid "a photo"
+msgstr "einem Foto"
 
-#: mod/delegate.php:133
-msgid "Existing Page Managers"
-msgstr "Vorhandene Seitenmanager"
+#: mod/photos.php:794
+msgid "Image file is empty."
+msgstr "Bilddatei ist leer."
 
-#: mod/delegate.php:135
-msgid "Existing Page Delegates"
-msgstr "Vorhandene Bevollmächtigte für die Seite"
+#: mod/photos.php:954
+msgid "No photos selected"
+msgstr "Keine Bilder ausgewählt"
 
-#: mod/delegate.php:137
-msgid "Potential Delegates"
-msgstr "Potentielle Bevollmächtigte"
+#: mod/photos.php:1054 mod/videos.php:305
+msgid "Access to this item is restricted."
+msgstr "Zugriff zu diesem Eintrag wurde eingeschränkt."
 
-#: mod/delegate.php:140
-msgid "Add"
-msgstr "Hinzufügen"
+#: mod/photos.php:1114
+#, php-format
+msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."
+msgstr "Du verwendest %1$.2f Mbyte von %2$.2f Mbyte des Foto-Speichers."
 
-#: mod/delegate.php:141
-msgid "No entries."
-msgstr "Keine Einträge."
+#: mod/photos.php:1148
+msgid "Upload Photos"
+msgstr "Bilder hochladen"
 
-#: mod/videos.php:120
-msgid "Do you really want to delete this video?"
-msgstr "Möchtest Du dieses Video wirklich löschen?"
+#: mod/photos.php:1152 mod/photos.php:1222
+msgid "New album name: "
+msgstr "Name des neuen Albums: "
 
-#: mod/videos.php:125
-msgid "Delete Video"
-msgstr "Video Löschen"
+#: mod/photos.php:1153
+msgid "or existing album name: "
+msgstr "oder existierender Albumname: "
 
-#: mod/videos.php:204
-msgid "No videos selected"
-msgstr "Keine Videos  ausgewählt"
+#: mod/photos.php:1154
+msgid "Do not show a status post for this upload"
+msgstr "Keine Status-Mitteilung für diesen Beitrag anzeigen"
 
-#: mod/videos.php:305 mod/photos.php:1054
-msgid "Access to this item is restricted."
-msgstr "Zugriff zu diesem Eintrag wurde eingeschränkt."
+#: mod/photos.php:1165 mod/photos.php:1544 mod/settings.php:1300
+msgid "Show to Groups"
+msgstr "Zeige den Gruppen"
 
-#: mod/videos.php:387 mod/photos.php:1847
-msgid "View Album"
-msgstr "Album betrachten"
+#: mod/photos.php:1166 mod/photos.php:1545 mod/settings.php:1301
+msgid "Show to Contacts"
+msgstr "Zeige den Kontakten"
 
-#: mod/videos.php:396
-msgid "Recent Videos"
-msgstr "Neueste Videos"
+#: mod/photos.php:1167
+msgid "Private Photo"
+msgstr "Privates Foto"
 
-#: mod/videos.php:398
-msgid "Upload New Videos"
-msgstr "Neues Video hochladen"
+#: mod/photos.php:1168
+msgid "Public Photo"
+msgstr "Öffentliches Foto"
 
-#: mod/profiles.php:38
-msgid "Profile deleted."
-msgstr "Profil gelöscht."
+#: mod/photos.php:1234
+msgid "Edit Album"
+msgstr "Album bearbeiten"
 
-#: mod/profiles.php:56 mod/profiles.php:90
-msgid "Profile-"
-msgstr "Profil-"
+#: mod/photos.php:1240
+msgid "Show Newest First"
+msgstr "Zeige neueste zuerst"
 
-#: mod/profiles.php:75 mod/profiles.php:118
-msgid "New profile created."
-msgstr "Neues Profil angelegt."
+#: mod/photos.php:1242
+msgid "Show Oldest First"
+msgstr "Zeige älteste zuerst"
 
-#: mod/profiles.php:96
-msgid "Profile unavailable to clone."
-msgstr "Profil nicht zum Duplizieren verfügbar."
+#: mod/photos.php:1269 mod/photos.php:1841
+msgid "View Photo"
+msgstr "Foto betrachten"
 
-#: mod/profiles.php:190
-msgid "Profile Name is required."
-msgstr "Profilname ist erforderlich."
+#: mod/photos.php:1315
+msgid "Permission denied. Access to this item may be restricted."
+msgstr "Zugriff verweigert. Zugriff zu diesem Eintrag könnte eingeschränkt sein."
 
-#: mod/profiles.php:338
-msgid "Marital Status"
-msgstr "Familienstand"
+#: mod/photos.php:1317
+msgid "Photo not available"
+msgstr "Foto nicht verfügbar"
 
-#: mod/profiles.php:342
-msgid "Romantic Partner"
-msgstr "Romanze"
+#: mod/photos.php:1372
+msgid "View photo"
+msgstr "Fotos ansehen"
 
-#: mod/profiles.php:354
-msgid "Work/Employment"
-msgstr "Arbeit / Beschäftigung"
+#: mod/photos.php:1372
+msgid "Edit photo"
+msgstr "Foto bearbeiten"
 
-#: mod/profiles.php:357
-msgid "Religion"
-msgstr "Religion"
+#: mod/photos.php:1373
+msgid "Use as profile photo"
+msgstr "Als Profilbild verwenden"
 
-#: mod/profiles.php:361
-msgid "Political Views"
-msgstr "Politische Ansichten"
+#: mod/photos.php:1398
+msgid "View Full Size"
+msgstr "Betrachte Originalgröße"
 
-#: mod/profiles.php:365
-msgid "Gender"
-msgstr "Geschlecht"
+#: mod/photos.php:1484
+msgid "Tags: "
+msgstr "Tags: "
 
-#: mod/profiles.php:369
-msgid "Sexual Preference"
-msgstr "Sexuelle Vorlieben"
+#: mod/photos.php:1487
+msgid "[Remove any tag]"
+msgstr "[Tag entfernen]"
 
-#: mod/profiles.php:373
-msgid "XMPP"
-msgstr "XMPP"
+#: mod/photos.php:1526
+msgid "New album name"
+msgstr "Name des neuen Albums"
 
-#: mod/profiles.php:377
-msgid "Homepage"
-msgstr "Webseite"
+#: mod/photos.php:1527
+msgid "Caption"
+msgstr "Bildunterschrift"
 
-#: mod/profiles.php:381 mod/profiles.php:702
-msgid "Interests"
-msgstr "Interessen"
+#: mod/photos.php:1528
+msgid "Add a Tag"
+msgstr "Tag hinzufügen"
 
-#: mod/profiles.php:385
-msgid "Address"
-msgstr "Adresse"
+#: mod/photos.php:1528
+msgid ""
+"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
+msgstr "Beispiel: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
 
-#: mod/profiles.php:392 mod/profiles.php:698
-msgid "Location"
-msgstr "Wohnort"
+#: mod/photos.php:1529
+msgid "Do not rotate"
+msgstr "Nicht rotieren"
 
-#: mod/profiles.php:477
-msgid "Profile updated."
-msgstr "Profil aktualisiert."
+#: mod/photos.php:1530
+msgid "Rotate CW (right)"
+msgstr "Drehen US (rechts)"
 
-#: mod/profiles.php:564
-msgid " and "
-msgstr " und "
+#: mod/photos.php:1531
+msgid "Rotate CCW (left)"
+msgstr "Drehen EUS (links)"
 
-#: mod/profiles.php:572
-msgid "public profile"
-msgstr "öffentliches Profil"
+#: mod/photos.php:1546
+msgid "Private photo"
+msgstr "Privates Foto"
 
-#: mod/profiles.php:575
-#, php-format
-msgid "%1$s changed %2$s to &ldquo;%3$s&rdquo;"
-msgstr "%1$s hat %2$s geändert auf &ldquo;%3$s&rdquo;"
+#: mod/photos.php:1547
+msgid "Public photo"
+msgstr "Öffentliches Foto"
 
-#: mod/profiles.php:576
-#, php-format
-msgid " - Visit %1$s's %2$s"
-msgstr " – %1$ss %2$s besuchen"
+#: mod/photos.php:1770
+msgid "Map"
+msgstr "Karte"
 
-#: mod/profiles.php:579
-#, php-format
-msgid "%1$s has an updated %2$s, changing %3$s."
-msgstr "%1$s hat folgendes aktualisiert %2$s, verändert wurde %3$s."
+#: mod/photos.php:1847 mod/videos.php:387
+msgid "View Album"
+msgstr "Album betrachten"
 
-#: mod/profiles.php:645
-msgid "Hide contacts and friends:"
-msgstr "Kontakte und Freunde verbergen"
+#: mod/register.php:93
+msgid ""
+"Registration successful. Please check your email for further instructions."
+msgstr "Registrierung erfolgreich. Eine E-Mail mit weiteren Anweisungen wurde an Dich gesendet."
 
-#: mod/profiles.php:648 mod/profiles.php:652 mod/profiles.php:677
-#: mod/follow.php:110 mod/dfrn_request.php:862 mod/register.php:246
-#: mod/settings.php:1163 mod/settings.php:1169 mod/settings.php:1177
-#: mod/settings.php:1181 mod/settings.php:1186 mod/settings.php:1192
-#: mod/settings.php:1198 mod/settings.php:1204 mod/settings.php:1230
-#: mod/settings.php:1231 mod/settings.php:1232 mod/settings.php:1233
-#: mod/settings.php:1234 mod/api.php:106
-msgid "No"
-msgstr "Nein"
+#: mod/register.php:98
+#, 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 "Versenden der E-Mail fehlgeschlagen. Hier sind Deine Account Details:\n\nLogin: %s\nPasswort: %s\n\nDu kannst das Passwort nach dem Anmelden ändern."
 
-#: mod/profiles.php:650
-msgid "Hide your contact/friend list from viewers of this profile?"
-msgstr "Liste der Kontakte vor Betrachtern dieses Profils verbergen?"
+#: mod/register.php:105
+msgid "Registration successful."
+msgstr "Registrierung erfolgreich."
 
-#: mod/profiles.php:674
-msgid "Show more profile fields:"
-msgstr "Zeige mehr Profil-Felder:"
+#: mod/register.php:111
+msgid "Your registration can not be processed."
+msgstr "Deine Registrierung konnte nicht verarbeitet werden."
 
-#: mod/profiles.php:686
-msgid "Profile Actions"
-msgstr "Profilaktionen"
+#: mod/register.php:160
+msgid "Your registration is pending approval by the site owner."
+msgstr "Deine Registrierung muss noch vom Betreiber der Seite freigegeben werden."
 
-#: mod/profiles.php:687
-msgid "Edit Profile Details"
-msgstr "Profil bearbeiten"
+#: mod/register.php:226
+msgid ""
+"You may (optionally) fill in this form via OpenID by supplying your OpenID "
+"and clicking 'Register'."
+msgstr "Du kannst dieses Formular auch (optional) mit Deiner OpenID ausfüllen, indem Du Deine OpenID angibst und 'Registrieren' klickst."
 
-#: mod/profiles.php:689
-msgid "Change Profile Photo"
-msgstr "Profilbild ändern"
+#: mod/register.php:227
+msgid ""
+"If you are not familiar with OpenID, please leave that field blank and fill "
+"in the rest of the items."
+msgstr "Wenn Du nicht mit OpenID vertraut bist, lass dieses Feld bitte leer und fülle die restlichen Felder aus."
 
-#: mod/profiles.php:690
-msgid "View this profile"
-msgstr "Dieses Profil anzeigen"
+#: mod/register.php:228
+msgid "Your OpenID (optional): "
+msgstr "Deine OpenID (optional): "
 
-#: mod/profiles.php:692
-msgid "Create a new profile using these settings"
-msgstr "Neues Profil anlegen und diese Einstellungen verwenden"
+#: mod/register.php:242
+msgid "Include your profile in member directory?"
+msgstr "Soll Dein Profil im Nutzerverzeichnis angezeigt werden?"
 
-#: mod/profiles.php:693
-msgid "Clone this profile"
-msgstr "Dieses Profil duplizieren"
+#: mod/register.php:267
+msgid "Note for the admin"
+msgstr "Hinweis für den Admin"
 
-#: mod/profiles.php:694
-msgid "Delete this profile"
-msgstr "Dieses Profil löschen"
+#: mod/register.php:267
+msgid "Leave a message for the admin, why you want to join this node"
+msgstr "Hinterlasse eine Nachricht an den Admin, warum du einen Account auf dieser Instanz haben möchtest."
 
-#: mod/profiles.php:696
-msgid "Basic information"
-msgstr "Grundinformationen"
+#: mod/register.php:268
+msgid "Membership on this site is by invitation only."
+msgstr "Mitgliedschaft auf dieser Seite ist nur nach vorheriger Einladung möglich."
 
-#: mod/profiles.php:697
-msgid "Profile picture"
-msgstr "Profilbild"
+#: mod/register.php:269
+msgid "Your invitation ID: "
+msgstr "ID Deiner Einladung: "
 
-#: mod/profiles.php:699
-msgid "Preferences"
-msgstr "Vorlieben"
+#: mod/register.php:272 mod/admin.php:956
+msgid "Registration"
+msgstr "Registrierung"
 
-#: mod/profiles.php:700
-msgid "Status information"
-msgstr "Status Informationen"
+#: mod/register.php:280
+msgid "Your Full Name (e.g. Joe Smith, real or real-looking): "
+msgstr "Dein vollständiger Name (z.B. Hans Mustermann, echt oder echt erscheinend):"
 
-#: mod/profiles.php:701
-msgid "Additional information"
-msgstr "Zusätzliche Informationen"
+#: mod/register.php:281
+msgid "Your Email Address: "
+msgstr "Deine E-Mail-Adresse: "
 
-#: mod/profiles.php:704
-msgid "Relation"
-msgstr "Beziehung"
+#: mod/register.php:283 mod/settings.php:1271
+msgid "New Password:"
+msgstr "Neues Passwort:"
 
-#: mod/profiles.php:707 mod/newmember.php:36 mod/profile_photo.php:250
-msgid "Upload Profile Photo"
-msgstr "Profilbild hochladen"
+#: mod/register.php:283
+msgid "Leave empty for an auto generated password."
+msgstr "Leer lassen um das Passwort automatisch zu generieren."
 
-#: mod/profiles.php:708
-msgid "Your Gender:"
-msgstr "Dein Geschlecht:"
+#: mod/register.php:284 mod/settings.php:1272
+msgid "Confirm:"
+msgstr "Bestätigen:"
 
-#: mod/profiles.php:709
-msgid "<span class=\"heart\">&hearts;</span> Marital Status:"
-msgstr "<span class=\"heart\">&hearts;</span> Beziehungsstatus:"
+#: mod/register.php:285
+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 "Wähle einen Spitznamen für Dein Profil. Dieser muss mit einem Buchstaben beginnen. Die Adresse Deines Profils auf dieser Seite wird '<strong>spitzname@$sitename</strong>' sein."
 
-#: mod/profiles.php:711
-msgid "Example: fishing photography software"
-msgstr "Beispiel: Fischen Fotografie Software"
+#: mod/register.php:286
+msgid "Choose a nickname: "
+msgstr "Spitznamen wählen: "
 
-#: mod/profiles.php:716
-msgid "Profile Name:"
-msgstr "Profilname:"
+#: mod/register.php:296
+msgid "Import your profile to this friendica instance"
+msgstr "Importiere Dein Profil auf diese Friendica Instanz"
 
-#: mod/profiles.php:718
-msgid ""
-"This is your <strong>public</strong> profile.<br />It <strong>may</strong> "
-"be visible to anybody using the internet."
-msgstr "Dies ist Dein <strong>öffentliches</strong> Profil.<br />Es <strong>könnte</strong> für jeden Nutzer des Internets sichtbar sein."
+#: mod/settings.php:43 mod/admin.php:1396
+msgid "Account"
+msgstr "Nutzerkonto"
 
-#: mod/profiles.php:719
-msgid "Your Full Name:"
-msgstr "Dein kompletter Name:"
+#: mod/settings.php:52 mod/admin.php:160
+msgid "Additional features"
+msgstr "Zusätzliche Features"
 
-#: mod/profiles.php:720
-msgid "Title/Description:"
-msgstr "Titel/Beschreibung:"
+#: mod/settings.php:60
+msgid "Display"
+msgstr "Anzeige"
 
-#: mod/profiles.php:723
-msgid "Street Address:"
-msgstr "Adresse:"
+#: mod/settings.php:67 mod/settings.php:886
+msgid "Social Networks"
+msgstr "Soziale Netzwerke"
 
-#: mod/profiles.php:724
-msgid "Locality/City:"
-msgstr "Wohnort:"
+#: mod/settings.php:74 mod/admin.php:158 mod/admin.php:1522 mod/admin.php:1582
+msgid "Plugins"
+msgstr "Plugins"
 
-#: mod/profiles.php:725
-msgid "Region/State:"
-msgstr "Region/Bundesstaat:"
+#: mod/settings.php:88
+msgid "Connected apps"
+msgstr "Verbundene Programme"
 
-#: mod/profiles.php:726
-msgid "Postal/Zip Code:"
-msgstr "Postleitzahl:"
+#: mod/settings.php:102
+msgid "Remove account"
+msgstr "Konto löschen"
 
-#: mod/profiles.php:727
-msgid "Country:"
-msgstr "Land:"
-
-#: mod/profiles.php:731
-msgid "Who: (if applicable)"
-msgstr "Wer: (falls anwendbar)"
+#: mod/settings.php:155
+msgid "Missing some important data!"
+msgstr "Wichtige Daten fehlen!"
 
-#: mod/profiles.php:731
-msgid "Examples: cathy123, Cathy Williams, cathy@example.com"
-msgstr "Beispiele: cathy123, Cathy Williams, cathy@example.com"
+#: mod/settings.php:158 mod/settings.php:704 mod/contacts.php:804
+msgid "Update"
+msgstr "Aktualisierungen"
 
-#: mod/profiles.php:732
-msgid "Since [date]:"
-msgstr "Seit [Datum]:"
+#: mod/settings.php:269
+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/profiles.php:734
-msgid "Tell us about yourself..."
-msgstr "Erzähle uns ein bisschen von Dir …"
+#: mod/settings.php:274
+msgid "Email settings updated."
+msgstr "E-Mail Einstellungen bearbeitet."
 
-#: mod/profiles.php:735
-msgid "XMPP (Jabber) address:"
-msgstr "XMPP (Jabber) Adresse"
+#: mod/settings.php:289
+msgid "Features updated"
+msgstr "Features aktualisiert"
 
-#: mod/profiles.php:735
-msgid ""
-"The XMPP address will be propagated to your contacts so that they can follow"
-" you."
-msgstr "Die XMPP Adresse wird an deine Kontakte verteilt werden, so dass sie auch über XMPP mit dir in Kontakt treten können."
+#: mod/settings.php:359
+msgid "Relocate message has been send to your contacts"
+msgstr "Die Umzugsbenachrichtigung wurde an Deine Kontakte versendet."
 
-#: mod/profiles.php:736
-msgid "Homepage URL:"
-msgstr "Adresse der Homepage:"
+#: mod/settings.php:378
+msgid "Empty passwords are not allowed. Password unchanged."
+msgstr "Leere Passwörter sind nicht erlaubt. Passwort bleibt unverändert."
 
-#: mod/profiles.php:739
-msgid "Religious Views:"
-msgstr "Religiöse Ansichten:"
+#: mod/settings.php:386
+msgid "Wrong password."
+msgstr "Falsches Passwort."
 
-#: mod/profiles.php:740
-msgid "Public Keywords:"
-msgstr "Öffentliche Schlüsselwörter:"
+#: mod/settings.php:397
+msgid "Password changed."
+msgstr "Passwort geändert."
 
-#: mod/profiles.php:740
-msgid "(Used for suggesting potential friends, can be seen by others)"
-msgstr "(Wird verwendet, um potentielle Kontakte zu finden, kann von Kontakten eingesehen werden)"
+#: mod/settings.php:399
+msgid "Password update failed. Please try again."
+msgstr "Aktualisierung des Passworts gescheitert, bitte versuche es noch einmal."
 
-#: mod/profiles.php:741
-msgid "Private Keywords:"
-msgstr "Private Schlüsselwörter:"
+#: mod/settings.php:479
+msgid " Please use a shorter name."
+msgstr " Bitte verwende einen kürzeren Namen."
 
-#: mod/profiles.php:741
-msgid "(Used for searching profiles, never shown to others)"
-msgstr "(Wird für die Suche nach Profilen verwendet und niemals veröffentlicht)"
+#: mod/settings.php:481
+msgid " Name too short."
+msgstr " Name ist zu kurz."
 
-#: mod/profiles.php:744
-msgid "Musical interests"
-msgstr "Musikalische Interessen"
+#: mod/settings.php:490
+msgid "Wrong Password"
+msgstr "Falsches Passwort"
 
-#: mod/profiles.php:745
-msgid "Books, literature"
-msgstr "Bücher, Literatur"
+#: mod/settings.php:495
+msgid " Not valid email."
+msgstr " Keine gültige E-Mail."
 
-#: mod/profiles.php:746
-msgid "Television"
-msgstr "Fernsehen"
+#: mod/settings.php:501
+msgid " Cannot change to that email."
+msgstr "Ändern der E-Mail nicht möglich. "
 
-#: mod/profiles.php:747
-msgid "Film/dance/culture/entertainment"
-msgstr "Filme/Tänze/Kultur/Unterhaltung"
+#: mod/settings.php:557
+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/profiles.php:748
-msgid "Hobbies/Interests"
-msgstr "Hobbies/Interessen"
+#: mod/settings.php:561
+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/profiles.php:749
-msgid "Love/romance"
-msgstr "Liebe/Romantik"
+#: mod/settings.php:601
+msgid "Settings updated."
+msgstr "Einstellungen aktualisiert."
 
-#: mod/profiles.php:750
-msgid "Work/employment"
-msgstr "Arbeit/Anstellung"
+#: mod/settings.php:677 mod/settings.php:703 mod/settings.php:739
+msgid "Add application"
+msgstr "Programm hinzufügen"
 
-#: mod/profiles.php:751
-msgid "School/education"
-msgstr "Schule/Ausbildung"
+#: mod/settings.php:678 mod/settings.php:788 mod/settings.php:835
+#: mod/settings.php:904 mod/settings.php:996 mod/settings.php:1264
+#: mod/admin.php:955 mod/admin.php:1583 mod/admin.php:1831 mod/admin.php:1905
+#: mod/admin.php:2055
+msgid "Save Settings"
+msgstr "Einstellungen speichern"
 
-#: mod/profiles.php:752
-msgid "Contact information and Social Networks"
-msgstr "Kontaktinformationen und Soziale Netzwerke"
+#: mod/settings.php:681 mod/settings.php:707
+msgid "Consumer Key"
+msgstr "Consumer Key"
 
-#: mod/profiles.php:794
-msgid "Edit/Manage Profiles"
-msgstr "Bearbeite/Verwalte Profile"
+#: mod/settings.php:682 mod/settings.php:708
+msgid "Consumer Secret"
+msgstr "Consumer Secret"
 
-#: mod/credits.php:16
-msgid "Credits"
-msgstr "Credits"
+#: mod/settings.php:683 mod/settings.php:709
+msgid "Redirect"
+msgstr "Umleiten"
 
-#: mod/credits.php:17
-msgid ""
-"Friendica is a community project, that would not be possible without the "
-"help of many people. Here is a list of those who have contributed to the "
-"code or the translation of Friendica. Thank you all!"
-msgstr "Friendica ist ein Gemeinschaftsprojekt, das nicht ohne die Hilfe vieler Personen möglich wäre. Hier ist eine Aufzählung der Personen, die zum Code oder der Übersetzung beigetragen haben. Dank an alle !"
+#: mod/settings.php:684 mod/settings.php:710
+msgid "Icon url"
+msgstr "Icon URL"
 
-#: mod/filer.php:30
-msgid "- select -"
-msgstr "- auswählen -"
+#: mod/settings.php:695
+msgid "You can't edit this application."
+msgstr "Du kannst dieses Programm nicht bearbeiten."
 
-#: mod/poke.php:192
-msgid "Poke/Prod"
-msgstr "Anstupsen"
+#: mod/settings.php:738
+msgid "Connected Apps"
+msgstr "Verbundene Programme"
 
-#: mod/poke.php:193
-msgid "poke, prod or do other things to somebody"
-msgstr "Stupse Leute an oder mache anderes mit ihnen"
+#: mod/settings.php:742
+msgid "Client key starts with"
+msgstr "Anwenderschlüssel beginnt mit"
 
-#: mod/poke.php:194
-msgid "Recipient"
-msgstr "Empfänger"
+#: mod/settings.php:743
+msgid "No name"
+msgstr "Kein Name"
 
-#: mod/poke.php:195
-msgid "Choose what you wish to do to recipient"
-msgstr "Was willst Du mit dem Empfänger machen:"
+#: mod/settings.php:744
+msgid "Remove authorization"
+msgstr "Autorisierung entziehen"
 
-#: mod/poke.php:198
-msgid "Make this post private"
-msgstr "Diesen Beitrag privat machen"
+#: mod/settings.php:756
+msgid "No Plugin settings configured"
+msgstr "Keine Plugin-Einstellungen konfiguriert"
 
-#: mod/photos.php:88 mod/photos.php:1856
-msgid "Recent Photos"
-msgstr "Neueste Fotos"
+#: mod/settings.php:764
+msgid "Plugin Settings"
+msgstr "Plugin-Einstellungen"
 
-#: mod/photos.php:91 mod/photos.php:1283 mod/photos.php:1858
-msgid "Upload New Photos"
-msgstr "Neue Fotos hochladen"
+#: mod/settings.php:778 mod/admin.php:2044 mod/admin.php:2045
+msgid "Off"
+msgstr "Aus"
 
-#: mod/photos.php:105 mod/settings.php:36
-msgid "everybody"
-msgstr "jeder"
+#: mod/settings.php:778 mod/admin.php:2044 mod/admin.php:2045
+msgid "On"
+msgstr "An"
 
-#: mod/photos.php:169
-msgid "Contact information unavailable"
-msgstr "Kontaktinformationen nicht verfügbar"
+#: mod/settings.php:786
+msgid "Additional Features"
+msgstr "Zusätzliche Features"
 
-#: mod/photos.php:190
-msgid "Album not found."
-msgstr "Album nicht gefunden."
+#: mod/settings.php:796 mod/settings.php:800
+msgid "General Social Media Settings"
+msgstr "Allgemeine Einstellungen zu Sozialen Medien"
 
-#: mod/photos.php:220 mod/photos.php:232 mod/photos.php:1227
-msgid "Delete Album"
-msgstr "Album löschen"
+#: mod/settings.php:806
+msgid "Disable intelligent shortening"
+msgstr "Intelligentes Link kürzen ausschalten"
 
-#: mod/photos.php:230
-msgid "Do you really want to delete this photo album and all its photos?"
-msgstr "Möchtest Du wirklich dieses Foto-Album und all seine Foto löschen?"
+#: mod/settings.php:808
+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/photos.php:308 mod/photos.php:319 mod/photos.php:1540
-msgid "Delete Photo"
-msgstr "Foto löschen"
+#: mod/settings.php:814
+msgid "Automatically follow any GNU Social (OStatus) followers/mentioners"
+msgstr "Automatisch allen GNU Social (OStatus) Followern/Erwähnern folgen"
 
-#: mod/photos.php:317
-msgid "Do you really want to delete this photo?"
-msgstr "Möchtest Du wirklich dieses Foto löschen?"
+#: mod/settings.php:816
+msgid ""
+"If you receive a message from an unknown OStatus user, this option decides "
+"what to do. If it is checked, a new contact will be created for every "
+"unknown user."
+msgstr "Wenn du eine Nachricht eines unbekannten OStatus Nutzers bekommst, entscheidet diese Option wie diese behandelt werden soll. Ist die Option aktiviert, wird ein neuer Kontakt für den Verfasser erstellt,."
 
-#: mod/photos.php:688
-#, php-format
-msgid "%1$s was tagged in %2$s by %3$s"
-msgstr "%1$s wurde von %3$s in %2$s getaggt"
+#: mod/settings.php:822
+msgid "Default group for OStatus contacts"
+msgstr "Voreingestellte Gruppe für OStatus Kontakte"
 
-#: mod/photos.php:688
-msgid "a photo"
-msgstr "einem Foto"
+#: mod/settings.php:828
+msgid "Your legacy GNU Social account"
+msgstr "Dein alter GNU Social Account"
 
-#: mod/photos.php:794
-msgid "Image file is empty."
-msgstr "Bilddatei ist leer."
+#: mod/settings.php:830
+msgid ""
+"If you enter your old GNU Social/Statusnet account name here (in the format "
+"user@domain.tld), your contacts will be added automatically. The field will "
+"be emptied when done."
+msgstr "Wenn du deinen alten GNU Socual/Statusnet Accountnamen hier angibst (Format name@domain.tld) werden deine Kontakte automatisch hinzugefügt. Dieses Feld wird geleert, wenn die Kontakte hinzugefügt wurden."
 
-#: mod/photos.php:954
-msgid "No photos selected"
-msgstr "Keine Bilder ausgewählt"
+#: mod/settings.php:833
+msgid "Repair OStatus subscriptions"
+msgstr "OStatus Abonnements reparieren"
 
-#: mod/photos.php:1114
+#: mod/settings.php:842 mod/settings.php:843
 #, php-format
-msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."
-msgstr "Du verwendest %1$.2f Mbyte von %2$.2f Mbyte des Foto-Speichers."
+msgid "Built-in support for %s connectivity is %s"
+msgstr "Eingebaute Unterstützung für Verbindungen zu %s ist %s"
 
-#: mod/photos.php:1148
-msgid "Upload Photos"
-msgstr "Bilder hochladen"
+#: mod/settings.php:842 mod/settings.php:843
+msgid "enabled"
+msgstr "eingeschaltet"
 
-#: mod/photos.php:1152 mod/photos.php:1222
-msgid "New album name: "
-msgstr "Name des neuen Albums: "
+#: mod/settings.php:842 mod/settings.php:843
+msgid "disabled"
+msgstr "ausgeschaltet"
 
-#: mod/photos.php:1153
-msgid "or existing album name: "
-msgstr "oder existierender Albumname: "
+#: mod/settings.php:843
+msgid "GNU Social (OStatus)"
+msgstr "GNU Social (OStatus)"
 
-#: mod/photos.php:1154
-msgid "Do not show a status post for this upload"
-msgstr "Keine Status-Mitteilung für diesen Beitrag anzeigen"
+#: mod/settings.php:879
+msgid "Email access is disabled on this site."
+msgstr "Zugriff auf E-Mails für diese Seite deaktiviert."
 
-#: mod/photos.php:1165 mod/photos.php:1544 mod/settings.php:1300
-msgid "Show to Groups"
-msgstr "Zeige den Gruppen"
+#: mod/settings.php:891
+msgid "Email/Mailbox Setup"
+msgstr "E-Mail/Postfach-Einstellungen"
 
-#: mod/photos.php:1166 mod/photos.php:1545 mod/settings.php:1301
-msgid "Show to Contacts"
-msgstr "Zeige den Kontakten"
+#: mod/settings.php:892
+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/photos.php:1167
-msgid "Private Photo"
-msgstr "Privates Foto"
+#: mod/settings.php:893
+msgid "Last successful email check:"
+msgstr "Letzter erfolgreicher E-Mail Check"
 
-#: mod/photos.php:1168
-msgid "Public Photo"
-msgstr "Öffentliches Foto"
+#: mod/settings.php:895
+msgid "IMAP server name:"
+msgstr "IMAP-Server-Name:"
 
-#: mod/photos.php:1234
-msgid "Edit Album"
-msgstr "Album bearbeiten"
+#: mod/settings.php:896
+msgid "IMAP port:"
+msgstr "IMAP-Port:"
 
-#: mod/photos.php:1240
-msgid "Show Newest First"
-msgstr "Zeige neueste zuerst"
+#: mod/settings.php:897
+msgid "Security:"
+msgstr "Sicherheit:"
 
-#: mod/photos.php:1242
-msgid "Show Oldest First"
-msgstr "Zeige älteste zuerst"
+#: mod/settings.php:897 mod/settings.php:902
+msgid "None"
+msgstr "Keine"
 
-#: mod/photos.php:1269 mod/photos.php:1841
-msgid "View Photo"
-msgstr "Foto betrachten"
+#: mod/settings.php:898
+msgid "Email login name:"
+msgstr "E-Mail-Login-Name:"
 
-#: mod/photos.php:1315
-msgid "Permission denied. Access to this item may be restricted."
-msgstr "Zugriff verweigert. Zugriff zu diesem Eintrag könnte eingeschränkt sein."
+#: mod/settings.php:899
+msgid "Email password:"
+msgstr "E-Mail-Passwort:"
 
-#: mod/photos.php:1317
-msgid "Photo not available"
-msgstr "Foto nicht verfügbar"
+#: mod/settings.php:900
+msgid "Reply-to address:"
+msgstr "Reply-to Adresse:"
 
-#: mod/photos.php:1372
-msgid "View photo"
-msgstr "Fotos ansehen"
+#: mod/settings.php:901
+msgid "Send public posts to all email contacts:"
+msgstr "Sende öffentliche Beiträge an alle E-Mail-Kontakte:"
 
-#: mod/photos.php:1372
-msgid "Edit photo"
-msgstr "Foto bearbeiten"
+#: mod/settings.php:902
+msgid "Action after import:"
+msgstr "Aktion nach Import:"
 
-#: mod/photos.php:1373
-msgid "Use as profile photo"
-msgstr "Als Profilbild verwenden"
+#: mod/settings.php:902
+msgid "Move to folder"
+msgstr "In einen Ordner verschieben"
 
-#: mod/photos.php:1398
-msgid "View Full Size"
-msgstr "Betrachte Originalgröße"
+#: mod/settings.php:903
+msgid "Move to folder:"
+msgstr "In diesen Ordner verschieben:"
 
-#: mod/photos.php:1484
-msgid "Tags: "
-msgstr "Tags: "
+#: mod/settings.php:934 mod/admin.php:862
+msgid "No special theme for mobile devices"
+msgstr "Kein spezielles Theme für mobile Geräte verwenden."
 
-#: mod/photos.php:1487
-msgid "[Remove any tag]"
-msgstr "[Tag entfernen]"
+#: mod/settings.php:994
+msgid "Display Settings"
+msgstr "Anzeige-Einstellungen"
 
-#: mod/photos.php:1526
-msgid "New album name"
-msgstr "Name des neuen Albums"
+#: mod/settings.php:1000 mod/settings.php:1023
+msgid "Display Theme:"
+msgstr "Theme:"
 
-#: mod/photos.php:1527
-msgid "Caption"
-msgstr "Bildunterschrift"
+#: mod/settings.php:1001
+msgid "Mobile Theme:"
+msgstr "Mobiles Theme"
 
-#: mod/photos.php:1528
-msgid "Add a Tag"
-msgstr "Tag hinzufügen"
+#: mod/settings.php:1002
+msgid "Suppress warning of insecure networks"
+msgstr "Warnung wegen unsicheren Netzwerken unterdrücken"
 
-#: mod/photos.php:1528
+#: mod/settings.php:1002
 msgid ""
-"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
-msgstr "Beispiel: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
+"Should the system suppress the warning that the current group contains "
+"members of networks that can't receive non public postings."
+msgstr "Soll das System Warnungen unterdrücken, die angezeigt werden weil von dir eingerichtete Kontakt-Gruppen Accounts aus Netzwerken beinhalten, die keine nicht öffentlichen Beiträge empfangen können."
 
-#: mod/photos.php:1529
-msgid "Do not rotate"
-msgstr "Nicht rotieren"
+#: mod/settings.php:1003
+msgid "Update browser every xx seconds"
+msgstr "Browser alle xx Sekunden aktualisieren"
 
-#: mod/photos.php:1530
-msgid "Rotate CW (right)"
-msgstr "Drehen US (rechts)"
+#: mod/settings.php:1003
+msgid "Minimum of 10 seconds. Enter -1 to disable it."
+msgstr "Minimum sind 10 Sekeunden. Gib -1 ein um abzuschalten."
 
-#: mod/photos.php:1531
-msgid "Rotate CCW (left)"
-msgstr "Drehen EUS (links)"
+#: mod/settings.php:1004
+msgid "Number of items to display per page:"
+msgstr "Zahl der Beiträge, die pro Netzwerkseite angezeigt werden sollen: "
 
-#: mod/photos.php:1546
-msgid "Private photo"
-msgstr "Privates Foto"
+#: mod/settings.php:1004 mod/settings.php:1005
+msgid "Maximum of 100 items"
+msgstr "Maximal 100 Beiträge"
 
-#: mod/photos.php:1547
-msgid "Public photo"
-msgstr "Öffentliches Foto"
+#: mod/settings.php:1005
+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/photos.php:1770
-msgid "Map"
-msgstr "Karte"
+#: mod/settings.php:1006
+msgid "Don't show emoticons"
+msgstr "Keine Smilies anzeigen"
 
-#: mod/install.php:139
-msgid "Friendica Communications Server - Setup"
-msgstr "Friendica-Server für soziale Netzwerke – Setup"
+#: mod/settings.php:1007
+msgid "Calendar"
+msgstr "Kalender"
 
-#: mod/install.php:145
-msgid "Could not connect to database."
-msgstr "Verbindung zur Datenbank gescheitert."
+#: mod/settings.php:1008
+msgid "Beginning of week:"
+msgstr "Wochenbeginn:"
 
-#: mod/install.php:149
-msgid "Could not create table."
-msgstr "Tabelle konnte nicht angelegt werden."
+#: mod/settings.php:1009
+msgid "Don't show notices"
+msgstr "Info-Popups nicht anzeigen"
 
-#: mod/install.php:155
-msgid "Your Friendica site database has been installed."
-msgstr "Die Datenbank Deiner Friendicaseite wurde installiert."
+#: mod/settings.php:1010
+msgid "Infinite scroll"
+msgstr "Endloses Scrollen"
 
-#: mod/install.php:160
-msgid ""
-"You may need to import the file \"database.sql\" manually using phpmyadmin "
-"or mysql."
-msgstr "Möglicherweise musst Du die Datei \"database.sql\" manuell mit phpmyadmin oder mysql importieren."
+#: mod/settings.php:1011
+msgid "Automatic updates only at the top of the network page"
+msgstr "Automatische Updates nur, wenn Du oben auf der Netzwerkseite bist."
 
-#: mod/install.php:161 mod/install.php:230 mod/install.php:602
-msgid "Please see the file \"INSTALL.txt\"."
-msgstr "Lies bitte die \"INSTALL.txt\"."
+#: mod/settings.php:1012
+msgid "Bandwith Saver Mode"
+msgstr "Bandbreiten-Spar-Modus"
 
-#: mod/install.php:173
-msgid "Database already in use."
-msgstr "Die Datenbank wird bereits verwendet."
+#: mod/settings.php:1012
+msgid ""
+"When enabled, embedded content is not displayed on automatic updates, they "
+"only show on page reload."
+msgstr "Wenn aktiviert, wird der eingebettete Inhalt nicht automatisch aktualisiert. In diesem Fall Seite bitte neu laden."
 
-#: mod/install.php:227
-msgid "System check"
-msgstr "Systemtest"
+#: mod/settings.php:1014
+msgid "General Theme Settings"
+msgstr "Allgemeine Themeneinstellungen"
 
-#: mod/install.php:232
-msgid "Check again"
-msgstr "Noch einmal testen"
+#: mod/settings.php:1015
+msgid "Custom Theme Settings"
+msgstr "Benutzerdefinierte Theme Einstellungen"
 
-#: mod/install.php:251
-msgid "Database connection"
-msgstr "Datenbankverbindung"
+#: mod/settings.php:1016
+msgid "Content Settings"
+msgstr "Einstellungen zum Inhalt"
 
-#: mod/install.php:252
-msgid ""
-"In order to install Friendica we need to know how to connect to your "
-"database."
-msgstr "Um Friendica installieren zu können, müssen wir wissen, wie wir mit Deiner Datenbank Kontakt aufnehmen können."
+#: mod/settings.php:1017 view/theme/frio/config.php:61
+#: view/theme/quattro/config.php:66 view/theme/vier/config.php:109
+#: view/theme/duepuntozero/config.php:61
+msgid "Theme settings"
+msgstr "Themeneinstellungen"
 
-#: mod/install.php:253
-msgid ""
-"Please contact your hosting provider or site administrator if you have "
-"questions about these settings."
-msgstr "Bitte kontaktiere den Hosting Provider oder den Administrator der Seite, falls Du Fragen zu diesen Einstellungen haben solltest."
+#: mod/settings.php:1099
+msgid "Account Types"
+msgstr "Kontenarten"
 
-#: mod/install.php:254
-msgid ""
-"The database you specify below should already exist. If it does not, please "
-"create it before continuing."
-msgstr "Die Datenbank, die Du unten angibst, sollte bereits existieren. Ist dies noch nicht der Fall, erzeuge sie bitte bevor Du mit der Installation fortfährst."
+#: mod/settings.php:1100
+msgid "Personal Page Subtypes"
+msgstr "Unterarten der persönlichen Seite"
 
-#: mod/install.php:258
-msgid "Database Server Name"
-msgstr "Datenbank-Server"
+#: mod/settings.php:1101
+msgid "Community Forum Subtypes"
+msgstr "Unterarten des Gemeinschaftsforums"
 
-#: mod/install.php:259
-msgid "Database Login Name"
-msgstr "Datenbank-Nutzer"
+#: mod/settings.php:1108
+msgid "Personal Page"
+msgstr "Persönliche Seite"
 
-#: mod/install.php:260
-msgid "Database Login Password"
-msgstr "Datenbank-Passwort"
+#: mod/settings.php:1109
+msgid "This account is a regular personal profile"
+msgstr "Dieses Konto ist ein normales persönliches Profil"
 
-#: mod/install.php:261
-msgid "Database Name"
-msgstr "Datenbank-Name"
+#: mod/settings.php:1112
+msgid "Organisation Page"
+msgstr "Organisationsseite"
 
-#: mod/install.php:262 mod/install.php:303
-msgid "Site administrator email address"
-msgstr "E-Mail-Adresse des Administrators"
+#: mod/settings.php:1113
+msgid "This account is a profile for an organisation"
+msgstr "Diese Konto ist ein Profil für eine Organisation"
 
-#: mod/install.php:262 mod/install.php:303
+#: mod/settings.php:1116
+msgid "News Page"
+msgstr "Nachrichtenseite"
+
+#: mod/settings.php:1117
+msgid "This account is a news account/reflector"
+msgstr "Dieses Konto ist ein News-Konto bzw. -Spiegel"
+
+#: mod/settings.php:1120
+msgid "Community Forum"
+msgstr "Gemeinschaftsforum"
+
+#: mod/settings.php:1121
 msgid ""
-"Your account email address must match this in order to use the web admin "
-"panel."
-msgstr "Die E-Mail-Adresse, die in Deinem Friendica-Account eingetragen ist, muss mit dieser Adresse übereinstimmen, damit Du das Admin-Panel benutzen kannst."
+"This account is a community forum where people can discuss with each other"
+msgstr "Dieses Konto ist ein Gemeinschaftskonto wo sich Leute untereinander austauschen können"
 
-#: mod/install.php:266 mod/install.php:306
-msgid "Please select a default timezone for your website"
-msgstr "Bitte wähle die Standardzeitzone Deiner Webseite"
+#: mod/settings.php:1124
+msgid "Normal Account Page"
+msgstr "Normales Konto"
 
-#: mod/install.php:293
-msgid "Site settings"
-msgstr "Server-Einstellungen"
+#: mod/settings.php:1125
+msgid "This account is a normal personal profile"
+msgstr "Dieses Konto ist ein normales persönliches Profil"
 
-#: mod/install.php:307
-msgid "System Language:"
-msgstr "Systemsprache:"
+#: mod/settings.php:1128
+msgid "Soapbox Page"
+msgstr "Marktschreier-Konto"
 
-#: mod/install.php:307
-msgid ""
-"Set the default language for your Friendica installation interface and to "
-"send emails."
-msgstr "Wähle die Standardsprache für deine Friendica-Installations-Oberfläche und den E-Mail-Versand"
+#: mod/settings.php:1129
+msgid "Automatically approve all connection/friend requests as read-only fans"
+msgstr "Kontaktanfragen werden automatisch als Nurlese-Fans akzeptiert"
 
-#: mod/install.php:347
-msgid "Could not find a command line version of PHP in the web server PATH."
-msgstr "Konnte keine Kommandozeilenversion von PHP im PATH des Servers finden."
+#: mod/settings.php:1132
+msgid "Public Forum"
+msgstr "Öffentliches Forum"
 
-#: mod/install.php:348
-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='https://github.com/friendica/friendica/blob/master/doc/Install.md#set-"
-"up-the-poller'>'Setup the poller'</a>"
-msgstr "Wenn Du keine Kommandozeilen-Version von PHP auf Deinem Server installiert hast, kannst Du keine Hintergrundprozesse via cron starten. Siehe <a href='https://github.com/friendica/friendica/blob/master/doc/Install.md#set-up-the-poller'>'Setup the poller'</a>"
+#: mod/settings.php:1133
+msgid "Automatically approve all contact requests"
+msgstr "Bestätige alle Kontaktanfragen automatisch"
 
-#: mod/install.php:352
-msgid "PHP executable path"
-msgstr "Pfad zu PHP"
+#: mod/settings.php:1136
+msgid "Automatic Friend Page"
+msgstr "Automatische Freunde Seite"
 
-#: mod/install.php:352
-msgid ""
-"Enter full path to php executable. You can leave this blank to continue the "
-"installation."
-msgstr "Gib den kompletten Pfad zur ausführbaren Datei von PHP an. Du kannst dieses Feld auch frei lassen und mit der Installation fortfahren."
+#: mod/settings.php:1137
+msgid "Automatically approve all connection/friend requests as friends"
+msgstr "Kontaktanfragen werden automatisch als Freund akzeptiert"
 
-#: mod/install.php:357
-msgid "Command line PHP"
-msgstr "Kommandozeilen-PHP"
+#: mod/settings.php:1140
+msgid "Private Forum [Experimental]"
+msgstr "Privates Forum [Versuchsstadium]"
 
-#: mod/install.php:366
-msgid "PHP executable is not the php cli binary (could be cgi-fgci version)"
-msgstr "Die ausführbare Datei von PHP stimmt nicht mit der PHP cli Version überein (es könnte sich um die cgi-fgci Version handeln)"
+#: mod/settings.php:1141
+msgid "Private forum - approved members only"
+msgstr "Privates Forum, nur für Mitglieder"
 
-#: mod/install.php:367
-msgid "Found PHP version: "
-msgstr "Gefundene PHP Version:"
+#: mod/settings.php:1153
+msgid "OpenID:"
+msgstr "OpenID:"
 
-#: mod/install.php:369
-msgid "PHP cli binary"
-msgstr "PHP CLI Binary"
+#: mod/settings.php:1153
+msgid "(Optional) Allow this OpenID to login to this account."
+msgstr "(Optional) Erlaube die Anmeldung für dieses Konto mit dieser OpenID."
 
-#: mod/install.php:380
-msgid ""
-"The command line version of PHP on your system does not have "
-"\"register_argc_argv\" enabled."
-msgstr "Die Kommandozeilenversion von PHP auf Deinem System hat \"register_argc_argv\" nicht aktiviert."
+#: mod/settings.php:1163
+msgid "Publish your default profile in your local site directory?"
+msgstr "Darf Dein Standardprofil im Verzeichnis dieses Servers veröffentlicht werden?"
 
-#: mod/install.php:381
-msgid "This is required for message delivery to work."
-msgstr "Dies wird für die Auslieferung von Nachrichten benötigt."
+#: mod/settings.php:1169
+msgid "Publish your default profile in the global social directory?"
+msgstr "Darf Dein Standardprofil im weltweiten Verzeichnis veröffentlicht werden?"
 
-#: mod/install.php:383
-msgid "PHP register_argc_argv"
-msgstr "PHP register_argc_argv"
+#: mod/settings.php:1177
+msgid "Hide your contact/friend list from viewers of your default profile?"
+msgstr "Liste der Kontakte vor Betrachtern des Standardprofils verbergen?"
 
-#: mod/install.php:404
+#: mod/settings.php:1181
 msgid ""
-"Error: the \"openssl_pkey_new\" function on this system is not able to "
-"generate encryption keys"
-msgstr "Fehler: Die Funktion \"openssl_pkey_new\" auf diesem System ist nicht in der Lage, Verschlüsselungsschlüssel zu erzeugen"
+"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/install.php:405
-msgid ""
-"If running under Windows, please see "
-"\"http://www.php.net/manual/en/openssl.installation.php\"."
-msgstr "Wenn der Server unter Windows läuft, schau Dir bitte \"http://www.php.net/manual/en/openssl.installation.php\" an."
+#: mod/settings.php:1186
+msgid "Allow friends to post to your profile page?"
+msgstr "Dürfen Deine Kontakte auf Deine Pinnwand schreiben?"
 
-#: mod/install.php:407
-msgid "Generate encryption keys"
-msgstr "Schlüssel erzeugen"
+#: mod/settings.php:1192
+msgid "Allow friends to tag your posts?"
+msgstr "Dürfen Deine Kontakte Deine Beiträge mit Schlagwörtern versehen?"
 
-#: mod/install.php:414
-msgid "libCurl PHP module"
-msgstr "PHP: libCurl-Modul"
+#: mod/settings.php:1198
+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/install.php:415
-msgid "GD graphics PHP module"
-msgstr "PHP: GD-Grafikmodul"
+#: mod/settings.php:1204
+msgid "Permit unknown people to send you private mail?"
+msgstr "Dürfen Dir Unbekannte private Nachrichten schicken?"
 
-#: mod/install.php:416
-msgid "OpenSSL PHP module"
-msgstr "PHP: OpenSSL-Modul"
+#: mod/settings.php:1212
+msgid "Profile is <strong>not published</strong>."
+msgstr "Profil ist <strong>nicht veröffentlicht</strong>."
 
-#: mod/install.php:417
-msgid "mysqli PHP module"
-msgstr "PHP: mysqli-Modul"
+#: mod/settings.php:1220
+#, php-format
+msgid "Your Identity Address is <strong>'%s'</strong> or '%s'."
+msgstr "Die Adresse deines Profils lautet <strong>'%s'</strong> oder '%s'."
 
-#: mod/install.php:418
-msgid "mb_string PHP module"
-msgstr "PHP: mb_string-Modul"
+#: mod/settings.php:1227
+msgid "Automatically expire posts after this many days:"
+msgstr "Beiträge verfallen automatisch nach dieser Anzahl von Tagen:"
 
-#: mod/install.php:419
-msgid "mcrypt PHP module"
-msgstr "PHP mcrypt Modul"
+#: mod/settings.php:1227
+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/install.php:420
-msgid "XML PHP module"
-msgstr "XML PHP Modul"
+#: mod/settings.php:1228
+msgid "Advanced expiration settings"
+msgstr "Erweiterte Verfallseinstellungen"
 
-#: mod/install.php:421
-msgid "iconv module"
-msgstr "iconv module"
+#: mod/settings.php:1229
+msgid "Advanced Expiration"
+msgstr "Erweitertes Verfallen"
 
-#: mod/install.php:425 mod/install.php:427
-msgid "Apache mod_rewrite module"
-msgstr "Apache mod_rewrite module"
+#: mod/settings.php:1230
+msgid "Expire posts:"
+msgstr "Beiträge verfallen lassen:"
 
-#: mod/install.php:425
-msgid ""
-"Error: Apache webserver mod-rewrite module is required but not installed."
-msgstr "Fehler: Das Apache-Modul mod-rewrite wird benötigt, es ist allerdings nicht installiert."
+#: mod/settings.php:1231
+msgid "Expire personal notes:"
+msgstr "Persönliche Notizen verfallen lassen:"
 
-#: mod/install.php:433
-msgid "Error: libCURL PHP module required but not installed."
-msgstr "Fehler: Das libCURL PHP Modul wird benötigt, ist aber nicht installiert."
+#: mod/settings.php:1232
+msgid "Expire starred posts:"
+msgstr "Markierte Beiträge verfallen lassen:"
 
-#: mod/install.php:437
-msgid ""
-"Error: GD graphics PHP module with JPEG support required but not installed."
-msgstr "Fehler: Das GD-Graphikmodul für PHP mit JPEG-Unterstützung ist nicht installiert."
+#: mod/settings.php:1233
+msgid "Expire photos:"
+msgstr "Fotos verfallen lassen:"
 
-#: mod/install.php:441
-msgid "Error: openssl PHP module required but not installed."
-msgstr "Fehler: Das openssl-Modul von PHP ist nicht installiert."
+#: mod/settings.php:1234
+msgid "Only expire posts by others:"
+msgstr "Nur Beiträge anderer verfallen:"
 
-#: mod/install.php:445
-msgid "Error: mysqli PHP module required but not installed."
-msgstr "Fehler: Das mysqli-Modul von PHP ist nicht installiert."
+#: mod/settings.php:1262
+msgid "Account Settings"
+msgstr "Kontoeinstellungen"
 
-#: mod/install.php:449
-msgid "Error: mb_string PHP module required but not installed."
-msgstr "Fehler: mb_string PHP Module wird benötigt ist aber nicht installiert."
+#: mod/settings.php:1270
+msgid "Password Settings"
+msgstr "Passwort-Einstellungen"
 
-#: mod/install.php:453
-msgid "Error: mcrypt PHP module required but not installed."
-msgstr "Fehler: Das mcrypt Modul von PHP ist nicht installiert"
+#: mod/settings.php:1272
+msgid "Leave password fields blank unless changing"
+msgstr "Lass die Passwort-Felder leer, außer Du willst das Passwort ändern"
 
-#: mod/install.php:457
-msgid "Error: iconv PHP module required but not installed."
-msgstr "Fehler: Das iconv-Modul von PHP ist nicht installiert."
+#: mod/settings.php:1273
+msgid "Current Password:"
+msgstr "Aktuelles Passwort:"
 
-#: mod/install.php:466
-msgid ""
-"If you are using php_cli, please make sure that mcrypt module is enabled in "
-"its config file"
-msgstr "Wenn du das Modul \"php_cli\" benutzt dann versichere dich, daß das mcrypt Modul in seiner Konfigurationsdatei aktiviert ist. "
+#: mod/settings.php:1273 mod/settings.php:1274
+msgid "Your current password to confirm the changes"
+msgstr "Dein aktuelles Passwort um die Änderungen zu bestätigen"
 
-#: mod/install.php:469
-msgid ""
-"Function mcrypt_create_iv() is not defined. This is needed to enable RINO2 "
-"encryption layer."
-msgstr "Die Funktion mcrypt_create_iv() ist nicht festgelegt. Dies ist notwendig um den RINO2-Encryption-Layer zu aktivieren."
+#: mod/settings.php:1274
+msgid "Password:"
+msgstr "Passwort:"
 
-#: mod/install.php:471
-msgid "mcrypt_create_iv() function"
-msgstr "mcrypt_create_iv() function"
+#: mod/settings.php:1278
+msgid "Basic Settings"
+msgstr "Grundeinstellungen"
 
-#: mod/install.php:479
-msgid "Error, XML PHP module required but not installed."
-msgstr "Fehler: XML PHP Modul erforderlich aber nicht installiert."
+#: mod/settings.php:1280
+msgid "Email Address:"
+msgstr "E-Mail-Adresse:"
 
-#: mod/install.php:494
-msgid ""
-"The web installer needs to be able to create a file called \".htconfig.php\""
-" in the top folder of your web server and it is unable to do so."
-msgstr "Der Installationswizard muss in der Lage sein, eine Datei im Stammverzeichnis Deines Webservers anzulegen, ist allerdings derzeit nicht in der Lage, dies zu tun."
+#: mod/settings.php:1281
+msgid "Your Timezone:"
+msgstr "Deine Zeitzone:"
 
-#: mod/install.php:495
-msgid ""
-"This is most often a permission setting, as the web server may not be able "
-"to write files in your folder - even if you can."
-msgstr "In den meisten Fällen ist dies ein Problem mit den Schreibrechten. Der Webserver könnte keine Schreiberlaubnis haben, selbst wenn Du sie hast."
+#: mod/settings.php:1282
+msgid "Your Language:"
+msgstr "Deine Sprache:"
 
-#: mod/install.php:496
+#: mod/settings.php:1282
 msgid ""
-"At the end of this procedure, we will give you a text to save in a file "
-"named .htconfig.php in your Friendica top folder."
-msgstr "Nachdem Du alles ausgefüllt hast, erhältst Du einen Text, den Du in eine Datei namens .htconfig.php in Deinem Friendica-Wurzelverzeichnis kopieren musst."
+"Set the language we use to show you friendica interface and to send you "
+"emails"
+msgstr "Wähle die Sprache, in der wir Dir die Friendica-Oberfläche präsentieren sollen und Dir E-Mail schicken"
 
-#: mod/install.php:497
-msgid ""
-"You can alternatively skip this procedure and perform a manual installation."
-" Please see the file \"INSTALL.txt\" for instructions."
-msgstr "Alternativ kannst Du diesen Schritt aber auch überspringen und die Installation manuell durchführen. Eine Anleitung dazu (Englisch) findest Du in der Datei INSTALL.txt."
+#: mod/settings.php:1283
+msgid "Default Post Location:"
+msgstr "Standardstandort:"
 
-#: mod/install.php:500
-msgid ".htconfig.php is writable"
-msgstr "Schreibrechte auf .htconfig.php"
+#: mod/settings.php:1284
+msgid "Use Browser Location:"
+msgstr "Standort des Browsers verwenden:"
 
-#: mod/install.php:510
-msgid ""
-"Friendica uses the Smarty3 template engine to render its web views. Smarty3 "
-"compiles templates to PHP to speed up rendering."
-msgstr "Friendica nutzt die Smarty3 Template Engine um die Webansichten zu rendern. Smarty3 kompiliert Templates zu PHP um das Rendern zu beschleunigen."
+#: mod/settings.php:1287
+msgid "Security and Privacy Settings"
+msgstr "Sicherheits- und Privatsphäre-Einstellungen"
 
-#: mod/install.php:511
-msgid ""
-"In order to store these compiled templates, the web server needs to have "
-"write access to the directory view/smarty3/ under the Friendica top level "
-"folder."
-msgstr "Um diese kompilierten Templates zu speichern benötigt der Webserver Schreibrechte zum Verzeichnis view/smarty3/ im obersten Ordner von Friendica."
+#: mod/settings.php:1289
+msgid "Maximum Friend Requests/Day:"
+msgstr "Maximale Anzahl vonKontaktanfragen/Tag:"
 
-#: mod/install.php:512
-msgid ""
-"Please ensure that the user that your web server runs as (e.g. www-data) has"
-" write access to this folder."
-msgstr "Bitte stelle sicher, dass der Nutzer unter dem der Webserver läuft (z.B. www-data) Schreibrechte zu diesem Verzeichnis hat."
+#: mod/settings.php:1289 mod/settings.php:1319
+msgid "(to prevent spam abuse)"
+msgstr "(um SPAM zu vermeiden)"
 
-#: mod/install.php:513
-msgid ""
-"Note: as a security measure, you should give the web server write access to "
-"view/smarty3/ only--not the template files (.tpl) that it contains."
-msgstr "Hinweis: aus Sicherheitsgründen solltest Du dem Webserver nur Schreibrechte für view/smarty3/ geben -- Nicht den Templatedateien (.tpl) die sie enthalten."
+#: mod/settings.php:1290
+msgid "Default Post Permissions"
+msgstr "Standard-Zugriffsrechte für Beiträge"
 
-#: mod/install.php:516
-msgid "view/smarty3 is writable"
-msgstr "view/smarty3 ist schreibbar"
+#: mod/settings.php:1291
+msgid "(click to open/close)"
+msgstr "(klicke zum öffnen/schließen)"
 
-#: mod/install.php:532
-msgid ""
-"Url rewrite in .htaccess is not working. Check your server configuration."
-msgstr "Umschreiben der URLs in der .htaccess funktioniert nicht. Überprüfe die Konfiguration des Servers."
+#: mod/settings.php:1302
+msgid "Default Private Post"
+msgstr "Privater Standardbeitrag"
 
-#: mod/install.php:534
-msgid "Url rewrite is working"
-msgstr "URL rewrite funktioniert"
+#: mod/settings.php:1303
+msgid "Default Public Post"
+msgstr "Öffentlicher Standardbeitrag"
 
-#: mod/install.php:551
-msgid "ImageMagick PHP extension is installed"
-msgstr "ImageMagick PHP Erweiterung ist installiert"
+#: mod/settings.php:1307
+msgid "Default Permissions for New Posts"
+msgstr "Standardberechtigungen für neue Beiträge"
 
-#: mod/install.php:553
-msgid "ImageMagick supports GIF"
-msgstr "ImageMagick unterstützt GIF"
+#: mod/settings.php:1319
+msgid "Maximum private messages per day from unknown people:"
+msgstr "Maximale Anzahl privater Nachrichten von Unbekannten pro Tag:"
 
-#: mod/install.php:561
-msgid ""
-"The database configuration file \".htconfig.php\" could not be written. "
-"Please use the enclosed text to create a configuration file in your web "
-"server root."
-msgstr "Die Konfigurationsdatei \".htconfig.php\" konnte nicht angelegt werden. Bitte verwende den angefügten Text, um die Datei im Stammverzeichnis Deiner Friendica-Installation zu erzeugen."
+#: mod/settings.php:1322
+msgid "Notification Settings"
+msgstr "Benachrichtigungseinstellungen"
 
-#: mod/install.php:600
-msgid "<h1>What next</h1>"
-msgstr "<h1>Wie geht es weiter?</h1>"
+#: mod/settings.php:1323
+msgid "By default post a status message when:"
+msgstr "Standardmäßig eine Statusnachricht posten, wenn:"
 
-#: mod/install.php:601
-msgid ""
-"IMPORTANT: You will need to [manually] setup a scheduled task for the "
-"poller."
-msgstr "WICHTIG: Du musst [manuell] einen Cronjob (o.ä.) für den Poller einrichten."
+#: mod/settings.php:1324
+msgid "accepting a friend request"
+msgstr "– Du eine Kontaktanfrage akzeptierst"
 
-#: mod/subthread.php:103
-#, php-format
-msgid "%1$s is following %2$s's %3$s"
-msgstr "%1$s folgt %2$s %3$s"
+#: mod/settings.php:1325
+msgid "joining a forum/community"
+msgstr "– Du einem Forum/einer Gemeinschaftsseite beitrittst"
 
-#: mod/attach.php:8
-msgid "Item not available."
-msgstr "Beitrag nicht verfügbar."
+#: mod/settings.php:1326
+msgid "making an <em>interesting</em> profile change"
+msgstr "– Du eine <em>interessante</em> Änderung an Deinem Profil durchführst"
 
-#: mod/attach.php:20
-msgid "Item was not found."
-msgstr "Beitrag konnte nicht gefunden werden."
+#: mod/settings.php:1327
+msgid "Send a notification email when:"
+msgstr "Benachrichtigungs-E-Mail senden wenn:"
 
-#: mod/contacts.php:128
-#, php-format
-msgid "%d contact edited."
-msgid_plural "%d contacts edited."
-msgstr[0] "%d Kontakt bearbeitet."
-msgstr[1] "%d Kontakte bearbeitet."
+#: mod/settings.php:1328
+msgid "You receive an introduction"
+msgstr "– Du eine Kontaktanfrage erhältst"
 
-#: mod/contacts.php:159 mod/contacts.php:368
-msgid "Could not access contact record."
-msgstr "Konnte nicht auf die Kontaktdaten zugreifen."
+#: mod/settings.php:1329
+msgid "Your introductions are confirmed"
+msgstr "– eine Deiner Kontaktanfragen akzeptiert wurde"
 
-#: mod/contacts.php:173
-msgid "Could not locate selected profile."
-msgstr "Konnte das ausgewählte Profil nicht finden."
+#: mod/settings.php:1330
+msgid "Someone writes on your profile wall"
+msgstr "– jemand etwas auf Deine Pinnwand schreibt"
 
-#: mod/contacts.php:206
-msgid "Contact updated."
-msgstr "Kontakt aktualisiert."
+#: mod/settings.php:1331
+msgid "Someone writes a followup comment"
+msgstr "– jemand auch einen Kommentar verfasst"
 
-#: mod/contacts.php:208 mod/dfrn_request.php:583
-msgid "Failed to update contact record."
-msgstr "Aktualisierung der Kontaktdaten fehlgeschlagen."
+#: mod/settings.php:1332
+msgid "You receive a private message"
+msgstr "– Du eine private Nachricht erhältst"
 
-#: mod/contacts.php:389
-msgid "Contact has been blocked"
-msgstr "Kontakt wurde blockiert"
+#: mod/settings.php:1333
+msgid "You receive a friend suggestion"
+msgstr "– Du eine Empfehlung erhältst"
 
-#: mod/contacts.php:389
-msgid "Contact has been unblocked"
-msgstr "Kontakt wurde wieder freigegeben"
+#: mod/settings.php:1334
+msgid "You are tagged in a post"
+msgstr "– Du in einem Beitrag erwähnt wirst"
 
-#: mod/contacts.php:400
-msgid "Contact has been ignored"
-msgstr "Kontakt wurde ignoriert"
+#: mod/settings.php:1335
+msgid "You are poked/prodded/etc. in a post"
+msgstr "– Du von jemandem angestupst oder sonstwie behandelt wirst"
 
-#: mod/contacts.php:400
-msgid "Contact has been unignored"
-msgstr "Kontakt wird nicht mehr ignoriert"
+#: mod/settings.php:1337
+msgid "Activate desktop notifications"
+msgstr "Desktop Benachrichtigungen einschalten"
 
-#: mod/contacts.php:412
-msgid "Contact has been archived"
-msgstr "Kontakt wurde archiviert"
+#: mod/settings.php:1337
+msgid "Show desktop popup on new notifications"
+msgstr "Desktop Benachrichtigungen einschalten"
 
-#: mod/contacts.php:412
-msgid "Contact has been unarchived"
-msgstr "Kontakt wurde aus dem Archiv geholt"
+#: mod/settings.php:1339
+msgid "Text-only notification emails"
+msgstr "Benachrichtigungs E-Mail als Rein-Text."
 
-#: mod/contacts.php:437
-msgid "Drop contact"
-msgstr "Kontakt löschen"
+#: mod/settings.php:1341
+msgid "Send text only notification emails, without the html part"
+msgstr "Sende Benachrichtigungs E-Mail als Rein-Text - ohne HTML-Teil"
 
-#: mod/contacts.php:440 mod/contacts.php:801
-msgid "Do you really want to delete this contact?"
-msgstr "Möchtest Du wirklich diesen Kontakt löschen?"
+#: mod/settings.php:1343
+msgid "Advanced Account/Page Type Settings"
+msgstr "Erweiterte Konto-/Seitentyp-Einstellungen"
 
-#: mod/contacts.php:457
-msgid "Contact has been removed."
-msgstr "Kontakt wurde entfernt."
+#: mod/settings.php:1344
+msgid "Change the behaviour of this account for special situations"
+msgstr "Verhalten dieses Kontos in bestimmten Situationen:"
 
-#: mod/contacts.php:498
-#, php-format
-msgid "You are mutual friends with %s"
-msgstr "Du hast mit %s eine beidseitige Freundschaft"
+#: mod/settings.php:1347
+msgid "Relocate"
+msgstr "Umziehen"
 
-#: mod/contacts.php:502
-#, php-format
-msgid "You are sharing with %s"
-msgstr "Du teilst mit %s"
+#: mod/settings.php:1348
+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/contacts.php:507
-#, php-format
-msgid "%s is sharing with you"
-msgstr "%s teilt mit Dir"
+#: mod/settings.php:1349
+msgid "Resend relocate message to contacts"
+msgstr "Umzugsbenachrichtigung erneut an Kontakte senden"
 
-#: mod/contacts.php:527
-msgid "Private communications are not available for this contact."
-msgstr "Private Kommunikation ist für diesen Kontakt nicht verfügbar."
+#: mod/videos.php:120
+msgid "Do you really want to delete this video?"
+msgstr "Möchtest Du dieses Video wirklich löschen?"
 
-#: mod/contacts.php:534
-msgid "(Update was successful)"
-msgstr "(Aktualisierung war erfolgreich)"
+#: mod/videos.php:125
+msgid "Delete Video"
+msgstr "Video Löschen"
 
-#: mod/contacts.php:534
-msgid "(Update was not successful)"
-msgstr "(Aktualisierung war nicht erfolgreich)"
+#: mod/videos.php:204
+msgid "No videos selected"
+msgstr "Keine Videos  ausgewählt"
 
-#: mod/contacts.php:536 mod/contacts.php:973
-msgid "Suggest friends"
-msgstr "Kontakte vorschlagen"
+#: mod/videos.php:396
+msgid "Recent Videos"
+msgstr "Neueste Videos"
 
-#: mod/contacts.php:540
-#, php-format
-msgid "Network type: %s"
-msgstr "Netzwerktyp: %s"
+#: mod/videos.php:398
+msgid "Upload New Videos"
+msgstr "Neues Video hochladen"
 
-#: mod/contacts.php:553
-msgid "Communications lost with this contact!"
-msgstr "Verbindungen mit diesem Kontakt verloren!"
+#: mod/wall_attach.php:17 mod/wall_attach.php:25 mod/wall_attach.php:76
+#: mod/wall_upload.php:20 mod/wall_upload.php:33 mod/wall_upload.php:86
+#: mod/wall_upload.php:122 mod/wall_upload.php:125
+msgid "Invalid request."
+msgstr "Ungültige Anfrage"
 
-#: mod/contacts.php:556
-msgid "Fetch further information for feeds"
-msgstr "Weitere Informationen zu Feeds holen"
+#: mod/wall_attach.php:94
+msgid "Sorry, maybe your upload is bigger than the PHP configuration allows"
+msgstr "Entschuldige, die Datei scheint größer zu sein als es die PHP Konfiguration erlaubt."
 
-#: mod/contacts.php:557
-msgid "Fetch information"
-msgstr "Beziehe Information"
+#: mod/wall_attach.php:94
+msgid "Or - did you try to upload an empty file?"
+msgstr "Oder - hast Du versucht, eine leere Datei hochzuladen?"
 
-#: mod/contacts.php:557
-msgid "Fetch information and keywords"
-msgstr "Beziehe Information und Schlüsselworte"
+#: mod/wall_attach.php:105
+#, php-format
+msgid "File exceeds size limit of %s"
+msgstr "Die Datei ist größer als das erlaubte Limit von %s"
 
-#: mod/contacts.php:575
-msgid "Contact"
-msgstr "Kontakt: "
+#: mod/wall_attach.php:156 mod/wall_attach.php:172
+msgid "File upload failed."
+msgstr "Hochladen der Datei fehlgeschlagen."
 
-#: mod/contacts.php:578
-msgid "Profile Visibility"
-msgstr "Profil-Sichtbarkeit"
+#: mod/admin.php:92
+msgid "Theme settings updated."
+msgstr "Themeneinstellungen aktualisiert."
 
-#: mod/contacts.php:579
-#, 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/admin.php:156 mod/admin.php:954
+msgid "Site"
+msgstr "Seite"
 
-#: mod/contacts.php:580
-msgid "Contact Information / Notes"
-msgstr "Kontakt Informationen / Notizen"
+#: mod/admin.php:157 mod/admin.php:898 mod/admin.php:1404 mod/admin.php:1420
+msgid "Users"
+msgstr "Nutzer"
 
-#: mod/contacts.php:581
-msgid "Edit contact notes"
-msgstr "Notizen zum Kontakt bearbeiten"
+#: mod/admin.php:159 mod/admin.php:1780 mod/admin.php:1830
+msgid "Themes"
+msgstr "Themen"
 
-#: mod/contacts.php:587
-msgid "Block/Unblock contact"
-msgstr "Kontakt blockieren/freischalten"
+#: mod/admin.php:161
+msgid "DB updates"
+msgstr "DB Updates"
 
-#: mod/contacts.php:588
-msgid "Ignore contact"
-msgstr "Ignoriere den Kontakt"
+#: mod/admin.php:162 mod/admin.php:406
+msgid "Inspect Queue"
+msgstr "Warteschlange Inspizieren"
 
-#: mod/contacts.php:589
-msgid "Repair URL settings"
-msgstr "URL Einstellungen reparieren"
+#: mod/admin.php:163 mod/admin.php:372
+msgid "Federation Statistics"
+msgstr "Federation Statistik"
 
-#: mod/contacts.php:590
-msgid "View conversations"
-msgstr "Unterhaltungen anzeigen"
+#: mod/admin.php:177 mod/admin.php:188 mod/admin.php:1904
+msgid "Logs"
+msgstr "Protokolle"
 
-#: mod/contacts.php:596
-msgid "Last update:"
-msgstr "Letzte Aktualisierung: "
+#: mod/admin.php:178 mod/admin.php:1972
+msgid "View Logs"
+msgstr "Protokolle anzeigen"
 
-#: mod/contacts.php:598
-msgid "Update public posts"
-msgstr "Öffentliche Beiträge aktualisieren"
+#: mod/admin.php:179
+msgid "probe address"
+msgstr "Adresse untersuchen"
 
-#: mod/contacts.php:600 mod/contacts.php:983
-msgid "Update now"
-msgstr "Jetzt aktualisieren"
+#: mod/admin.php:180
+msgid "check webfinger"
+msgstr "Webfinger überprüfen"
 
-#: mod/contacts.php:606 mod/contacts.php:806 mod/contacts.php:1000
-msgid "Unignore"
-msgstr "Ignorieren aufheben"
+#: mod/admin.php:187
+msgid "Plugin Features"
+msgstr "Plugin Features"
 
-#: mod/contacts.php:610
-msgid "Currently blocked"
-msgstr "Derzeit geblockt"
+#: mod/admin.php:189
+msgid "diagnostics"
+msgstr "Diagnose"
 
-#: mod/contacts.php:611
-msgid "Currently ignored"
-msgstr "Derzeit ignoriert"
+#: mod/admin.php:190
+msgid "User registrations waiting for confirmation"
+msgstr "Nutzeranmeldungen die auf Bestätigung warten"
 
-#: mod/contacts.php:612
-msgid "Currently archived"
-msgstr "Momentan archiviert"
+#: mod/admin.php:306
+msgid "unknown"
+msgstr "Unbekannt"
 
-#: mod/contacts.php:613
+#: mod/admin.php:365
 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"
+"This page offers you some numbers to the known part of the federated social "
+"network your Friendica node is part of. These numbers are not complete but "
+"only reflect the part of the network your node is aware of."
+msgstr "Diese Seite präsentiert einige Zahlen zu dem bekannten Teil des föderalen sozialen Netzwerks, von dem deine Friendica Installation ein Teil ist. Diese Zahlen sind nicht absolut und reflektieren nur den Teil des Netzwerks, den dein Knoten kennt."
 
-#: mod/contacts.php:614
-msgid "Notification for new posts"
-msgstr "Benachrichtigung bei neuen Beiträgen"
+#: mod/admin.php:366
+msgid ""
+"The <em>Auto Discovered Contact Directory</em> feature is not enabled, it "
+"will improve the data displayed here."
+msgstr "Die Funktion um <em>Automatisch ein Kontaktverzeichnis erstellen</em> ist nicht aktiv. Es wird die hier angezeigten Daten verbessern."
 
-#: mod/contacts.php:614
-msgid "Send a notification of every new post of this contact"
-msgstr "Sende eine Benachrichtigung, wann immer dieser Kontakt einen neuen Beitrag schreibt."
+#: mod/admin.php:371 mod/admin.php:405 mod/admin.php:484 mod/admin.php:953
+#: mod/admin.php:1403 mod/admin.php:1521 mod/admin.php:1581 mod/admin.php:1779
+#: mod/admin.php:1829 mod/admin.php:1903 mod/admin.php:1971
+msgid "Administration"
+msgstr "Administration"
 
-#: mod/contacts.php:617
-msgid "Blacklisted keywords"
-msgstr "Blacklistete Schlüsselworte "
+#: mod/admin.php:378
+#, php-format
+msgid "Currently this node is aware of %d nodes from the following platforms:"
+msgstr "Momentan kennt dieser Knoten %d andere Knoten der folgenden Plattformen:"
 
-#: mod/contacts.php:617
-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/admin.php:408
+msgid "ID"
+msgstr "ID"
 
-#: mod/contacts.php:635
-msgid "Actions"
-msgstr "Aktionen"
+#: mod/admin.php:409
+msgid "Recipient Name"
+msgstr "Empfänger Name"
 
-#: mod/contacts.php:638
-msgid "Contact Settings"
-msgstr "Kontakteinstellungen"
+#: mod/admin.php:410
+msgid "Recipient Profile"
+msgstr "Empfänger Profil"
 
-#: mod/contacts.php:684
-msgid "Suggestions"
-msgstr "Kontaktvorschläge"
+#: mod/admin.php:412
+msgid "Created"
+msgstr "Erstellt"
 
-#: mod/contacts.php:687
-msgid "Suggest potential friends"
-msgstr "Kontakte vorschlagen"
+#: mod/admin.php:413
+msgid "Last Tried"
+msgstr "Zuletzt versucht"
 
-#: mod/contacts.php:692 mod/group.php:192
-msgid "All Contacts"
-msgstr "Alle Kontakte"
+#: mod/admin.php:414
+msgid ""
+"This page lists the content of the queue for outgoing postings. These are "
+"postings the initial delivery failed for. They will be resend later and "
+"eventually deleted if the delivery fails permanently."
+msgstr "Auf dieser Seite werden die in der Warteschlange eingereihten Beiträge aufgelistet. Bei diesen Beiträgen schlug die erste Zustellung fehl. Es wird später wiederholt versucht die Beiträge zuzustellen, bis sie schließlich gelöscht werden."
 
-#: mod/contacts.php:695
-msgid "Show all contacts"
-msgstr "Alle Kontakte anzeigen"
+#: mod/admin.php:439
+#, php-format
+msgid ""
+"Your DB still runs with MyISAM tables. You should change the engine type to "
+"InnoDB. As Friendica will use InnoDB only features in the future, you should"
+" change this! See <a href=\"%s\">here</a> for a guide that may be helpful "
+"converting the table engines. You may also use the "
+"<tt>convert_innodb.sql</tt> in the <tt>/util</tt> directory of your "
+"Friendica installation.<br />"
+msgstr "Deine DB enthält einige Tabellen die noch auf MyISAM laufen. Du solltest den Engine-Type auf InnoDB umstellen, da Friendica in Zukunft einige InnoDB Features nutzen wird. Eine Anleitung zur Umstellung kannst du <a href=\"%s\">hier</a> finden. Außerdem kannst du das <tt>convert_innodb.sql</tt> Skript verwenden, das du im <tt>/util</tt> Verzeichnis deiner Friendica Installation findest."
 
-#: mod/contacts.php:700
-msgid "Unblocked"
-msgstr "Ungeblockt"
+#: mod/admin.php:444
+msgid ""
+"You are using a MySQL version which does not support all features that "
+"Friendica uses. You should consider switching to MariaDB."
+msgstr "Du verwendets eine MySQL Version die nicht alle Features unterstützt die Friendica verwendet. Wir empfehlen dir einen Wechsel auf MariaDB, falls dies möglich ist."
 
-#: mod/contacts.php:703
-msgid "Only show unblocked contacts"
-msgstr "Nur nicht-blockierte Kontakte anzeigen"
+#: mod/admin.php:448 mod/admin.php:1352
+msgid "Normal Account"
+msgstr "Normales Konto"
 
-#: mod/contacts.php:709
-msgid "Blocked"
-msgstr "Geblockt"
+#: mod/admin.php:449 mod/admin.php:1353
+msgid "Soapbox Account"
+msgstr "Marktschreier-Konto"
 
-#: mod/contacts.php:712
-msgid "Only show blocked contacts"
-msgstr "Nur blockierte Kontakte anzeigen"
+#: mod/admin.php:450 mod/admin.php:1354
+msgid "Community/Celebrity Account"
+msgstr "Forum/Promi-Konto"
 
-#: mod/contacts.php:718
-msgid "Ignored"
-msgstr "Ignoriert"
+#: mod/admin.php:451 mod/admin.php:1355
+msgid "Automatic Friend Account"
+msgstr "Automatisches Freundekonto"
 
-#: mod/contacts.php:721
-msgid "Only show ignored contacts"
-msgstr "Nur ignorierte Kontakte anzeigen"
+#: mod/admin.php:452
+msgid "Blog Account"
+msgstr "Blog-Konto"
 
-#: mod/contacts.php:727
-msgid "Archived"
-msgstr "Archiviert"
+#: mod/admin.php:453
+msgid "Private Forum"
+msgstr "Privates Forum"
 
-#: mod/contacts.php:730
-msgid "Only show archived contacts"
-msgstr "Nur archivierte Kontakte anzeigen"
+#: mod/admin.php:479
+msgid "Message queues"
+msgstr "Nachrichten-Warteschlangen"
 
-#: mod/contacts.php:736
-msgid "Hidden"
-msgstr "Verborgen"
+#: mod/admin.php:485
+msgid "Summary"
+msgstr "Zusammenfassung"
 
-#: mod/contacts.php:739
-msgid "Only show hidden contacts"
-msgstr "Nur verborgene Kontakte anzeigen"
+#: mod/admin.php:488
+msgid "Registered users"
+msgstr "Registrierte Nutzer"
 
-#: mod/contacts.php:796
-msgid "Search your contacts"
-msgstr "Suche in deinen Kontakten"
+#: mod/admin.php:490
+msgid "Pending registrations"
+msgstr "Anstehende Anmeldungen"
 
-#: mod/contacts.php:804 mod/settings.php:158 mod/settings.php:704
-msgid "Update"
-msgstr "Aktualisierungen"
+#: mod/admin.php:491
+msgid "Version"
+msgstr "Version"
 
-#: mod/contacts.php:807 mod/contacts.php:1008
-msgid "Archive"
-msgstr "Archivieren"
+#: mod/admin.php:496
+msgid "Active plugins"
+msgstr "Aktive Plugins"
 
-#: mod/contacts.php:807 mod/contacts.php:1008
-msgid "Unarchive"
-msgstr "Aus Archiv zurückholen"
+#: mod/admin.php:521
+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/contacts.php:810
-msgid "Batch Actions"
-msgstr "Stapelverarbeitung"
+#: mod/admin.php:826
+msgid "RINO2 needs mcrypt php extension to work."
+msgstr "RINO2 benötigt die PHP Extension mcrypt."
 
-#: mod/contacts.php:856
-msgid "View all contacts"
-msgstr "Alle Kontakte anzeigen"
+#: mod/admin.php:834
+msgid "Site settings updated."
+msgstr "Seiteneinstellungen aktualisiert."
 
-#: mod/contacts.php:863 mod/common.php:134
-msgid "Common Friends"
-msgstr "Gemeinsame Kontakte"
+#: mod/admin.php:881
+msgid "No community page"
+msgstr "Keine Gemeinschaftsseite"
 
-#: mod/contacts.php:866
-msgid "View all common friends"
-msgstr "Alle Kontakte anzeigen"
+#: mod/admin.php:882
+msgid "Public postings from users of this site"
+msgstr "Öffentliche Beiträge von Nutzer_innen dieser Seite"
 
-#: mod/contacts.php:873
-msgid "Advanced Contact Settings"
-msgstr "Fortgeschrittene Kontakteinstellungen"
+#: mod/admin.php:883
+msgid "Global community page"
+msgstr "Globale Gemeinschaftsseite"
 
-#: mod/contacts.php:916
-msgid "Mutual Friendship"
-msgstr "Beidseitige Freundschaft"
+#: mod/admin.php:888 mod/contacts.php:530
+msgid "Never"
+msgstr "Niemals"
 
-#: mod/contacts.php:920
-msgid "is a fan of yours"
-msgstr "ist ein Fan von dir"
+#: mod/admin.php:889
+msgid "At post arrival"
+msgstr "Beim Empfang von Nachrichten"
 
-#: mod/contacts.php:924
-msgid "you are a fan of"
-msgstr "Du bist Fan von"
+#: mod/admin.php:897 mod/contacts.php:557
+msgid "Disabled"
+msgstr "Deaktiviert"
 
-#: mod/contacts.php:994
-msgid "Toggle Blocked status"
-msgstr "Geblockt-Status ein-/ausschalten"
+#: mod/admin.php:899
+msgid "Users, Global Contacts"
+msgstr "Nutzer, globale Kontakte"
 
-#: mod/contacts.php:1002
-msgid "Toggle Ignored status"
-msgstr "Ignoriert-Status ein-/ausschalten"
+#: mod/admin.php:900
+msgid "Users, Global Contacts/fallback"
+msgstr "Nutzer, globale Kontakte / Fallback"
 
-#: mod/contacts.php:1010
-msgid "Toggle Archive status"
-msgstr "Archiviert-Status ein-/ausschalten"
+#: mod/admin.php:904
+msgid "One month"
+msgstr "ein Monat"
 
-#: mod/contacts.php:1018
-msgid "Delete contact"
-msgstr "Lösche den Kontakt"
+#: mod/admin.php:905
+msgid "Three months"
+msgstr "drei Monate"
 
-#: mod/follow.php:19 mod/dfrn_request.php:875
-msgid "Submit Request"
-msgstr "Anfrage abschicken"
+#: mod/admin.php:906
+msgid "Half a year"
+msgstr "ein halbes Jahr"
 
-#: mod/follow.php:30
-msgid "You already added this contact."
-msgstr "Du hast den Kontakt bereits hinzugefügt."
+#: mod/admin.php:907
+msgid "One year"
+msgstr "ein Jahr"
 
-#: mod/follow.php:39
-msgid "Diaspora support isn't enabled. Contact can't be added."
-msgstr "Diaspora Unterstützung ist nicht aktiviert. Der Kontakt kann nicht zugefügt werden."
+#: mod/admin.php:912
+msgid "Multi user instance"
+msgstr "Mehrbenutzer Instanz"
 
-#: mod/follow.php:46
-msgid "OStatus support is disabled. Contact can't be added."
-msgstr "OStatus Unterstützung ist nicht aktiviert. Der Kontakt kann nicht zugefügt werden."
+#: mod/admin.php:935
+msgid "Closed"
+msgstr "Geschlossen"
 
-#: mod/follow.php:53
-msgid "The network type couldn't be detected. Contact can't be added."
-msgstr "Der Netzwerktype wurde nicht erkannt. Der Kontakt kann nicht hinzugefügt werden."
+#: mod/admin.php:936
+msgid "Requires approval"
+msgstr "Bedarf der Zustimmung"
 
-#: mod/follow.php:109 mod/dfrn_request.php:861
-msgid "Please answer the following:"
-msgstr "Bitte beantworte folgendes:"
+#: mod/admin.php:937
+msgid "Open"
+msgstr "Offen"
 
-#: mod/follow.php:110 mod/dfrn_request.php:862
-#, php-format
-msgid "Does %s know you?"
-msgstr "Kennt %s Dich?"
+#: mod/admin.php:941
+msgid "No SSL policy, links will track page SSL state"
+msgstr "Keine SSL Richtlinie, Links werden das verwendete Protokoll beibehalten"
 
-#: mod/follow.php:111 mod/dfrn_request.php:866
-msgid "Add a personal note:"
-msgstr "Eine persönliche Notiz beifügen:"
+#: mod/admin.php:942
+msgid "Force all links to use SSL"
+msgstr "SSL für alle Links erzwingen"
 
-#: mod/follow.php:117 mod/dfrn_request.php:872
-msgid "Your Identity Address:"
-msgstr "Adresse Deines Profils:"
+#: mod/admin.php:943
+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/follow.php:180
-msgid "Contact added"
-msgstr "Kontakt hinzugefügt"
+#: mod/admin.php:957
+msgid "File upload"
+msgstr "Datei hochladen"
 
-#: mod/apps.php:11
-msgid "Applications"
-msgstr "Anwendungen"
+#: mod/admin.php:958
+msgid "Policies"
+msgstr "Regeln"
 
-#: mod/apps.php:14
-msgid "No installed applications."
-msgstr "Keine Applikationen installiert."
+#: mod/admin.php:960
+msgid "Auto Discovered Contact Directory"
+msgstr "Automatisch ein Kontaktverzeichnis erstellen"
 
-#: mod/suggest.php:27
-msgid "Do you really want to delete this suggestion?"
-msgstr "Möchtest Du wirklich diese Empfehlung löschen?"
+#: mod/admin.php:961
+msgid "Performance"
+msgstr "Performance"
 
-#: mod/suggest.php:71
+#: mod/admin.php:962
+msgid "Worker"
+msgstr "Worker"
+
+#: mod/admin.php:963
 msgid ""
-"No suggestions available. If this is a new site, please try again in 24 "
-"hours."
-msgstr "Keine Vorschläge verfügbar. Falls der Server frisch aufgesetzt wurde, versuche es bitte in 24 Stunden noch einmal."
+"Relocate - WARNING: advanced function. Could make this server unreachable."
+msgstr "Umsiedeln - WARNUNG: Könnte diesen Server unerreichbar machen."
 
-#: mod/suggest.php:84 mod/suggest.php:104
-msgid "Ignore/Hide"
-msgstr "Ignorieren/Verbergen"
+#: mod/admin.php:966
+msgid "Site name"
+msgstr "Seitenname"
 
-#: mod/p.php:9
-msgid "Not Extended"
-msgstr "Nicht erweitert."
+#: mod/admin.php:967
+msgid "Host name"
+msgstr "Host Name"
 
-#: mod/display.php:473
-msgid "Item has been removed."
-msgstr "Eintrag wurde entfernt."
+#: mod/admin.php:968
+msgid "Sender Email"
+msgstr "Absender für Emails"
 
-#: mod/common.php:86
-msgid "No contacts in common."
-msgstr "Keine gemeinsamen Kontakte."
+#: mod/admin.php:968
+msgid ""
+"The email address your server shall use to send notification emails from."
+msgstr "Die E-Mail Adresse die dein Server zum Versenden von Benachrichtigungen verwenden soll."
 
-#: mod/newmember.php:6
-msgid "Welcome to Friendica"
-msgstr "Willkommen bei Friendica"
+#: mod/admin.php:969
+msgid "Banner/Logo"
+msgstr "Banner/Logo"
 
-#: mod/newmember.php:8
-msgid "New Member Checklist"
-msgstr "Checkliste für neue Mitglieder"
+#: mod/admin.php:970
+msgid "Shortcut icon"
+msgstr "Shortcut Icon"
 
-#: mod/newmember.php:12
-msgid ""
-"We would like to offer some tips and links to help make your experience "
-"enjoyable. Click any item to visit the relevant page. A link to this page "
-"will be visible from your home page for two weeks after your initial "
-"registration and then will quietly disappear."
-msgstr "Wir möchten Dir einige Tipps und Links anbieten, die Dir helfen könnten, den Einstieg angenehmer zu machen. Klicke auf ein Element, um die entsprechende Seite zu besuchen. Ein Link zu dieser Seite hier bleibt für Dich an Deiner Pinnwand für zwei Wochen nach dem Registrierungsdatum sichtbar und wird dann verschwinden."
+#: mod/admin.php:970
+msgid "Link to an icon that will be used for browsers."
+msgstr "Link zu einem Icon, das Browser verwenden werden."
 
-#: mod/newmember.php:14
-msgid "Getting Started"
-msgstr "Einstieg"
+#: mod/admin.php:971
+msgid "Touch icon"
+msgstr "Touch Icon"
 
-#: mod/newmember.php:18
-msgid "Friendica Walk-Through"
-msgstr "Friendica Rundgang"
+#: mod/admin.php:971
+msgid "Link to an icon that will be used for tablets and mobiles."
+msgstr "Link zu einem Icon das Tablets und Handies verwenden sollen."
 
-#: mod/newmember.php:18
+#: mod/admin.php:972
+msgid "Additional Info"
+msgstr "Zusätzliche Informationen"
+
+#: mod/admin.php:972
+#, php-format
 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 "Auf der <em>Quick Start</em> Seite findest Du eine kurze Einleitung in die einzelnen Funktionen Deines Profils und die Netzwerk-Reiter, wo Du interessante Foren findest und neue Kontakte knüpfst."
+"For public servers: you can add additional information here that will be "
+"listed at %s/siteinfo."
+msgstr "Für öffentliche Server kannst Du hier zusätzliche Informationen angeben, die dann auf %s/siteinfo angezeigt werden."
 
-#: mod/newmember.php:26
-msgid "Go to Your Settings"
-msgstr "Gehe zu deinen Einstellungen"
+#: mod/admin.php:973
+msgid "System language"
+msgstr "Systemsprache"
 
-#: 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 "Ändere bitte unter <em>Einstellungen</em> dein Passwort. Außerdem merke dir deine Identifikationsadresse. Diese sieht aus wie eine E-Mail-Adresse und wird benötigt, um Kontakte mit anderen im Friendica Netzwerk zu knüpfen.."
+#: mod/admin.php:974
+msgid "System theme"
+msgstr "Systemweites Theme"
 
-#: mod/newmember.php:28
+#: mod/admin.php:974
 msgid ""
-"Review the other settings, particularly the privacy settings. An unpublished"
-" directory listing is like having an unlisted phone number. In general, you "
-"should probably publish your listing - unless all of your friends and "
-"potential friends know exactly how to find you."
-msgstr "Überprüfe die restlichen Einstellungen, insbesondere die Einstellungen zur Privatsphäre. Wenn Du Dein Profil nicht veröffentlichst, ist das als wenn Du Deine Telefonnummer nicht ins Telefonbuch einträgst. Im Allgemeinen solltest Du es veröffentlichen - außer all Deine Kontakte und potentiellen Kontakte wissen genau, wie sie Dich finden können."
+"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/newmember.php:36
-msgid ""
-"Upload a profile photo if you have not done so already. Studies have shown "
-"that people with real photos of themselves are ten times more likely to make"
-" friends than people who do not."
-msgstr "Lade ein Profilbild hoch, falls Du es noch nicht getan hast. Studien haben gezeigt, dass es zehnmal wahrscheinlicher ist neue Kontakte zu finden, wenn Du ein Bild von Dir selbst verwendest, als wenn Du dies nicht tust."
+#: mod/admin.php:975
+msgid "Mobile system theme"
+msgstr "Systemweites mobiles Theme"
 
-#: mod/newmember.php:38
-msgid "Edit Your Profile"
-msgstr "Editiere dein Profil"
+#: mod/admin.php:975
+msgid "Theme for mobile devices"
+msgstr "Thema für mobile Geräte"
 
-#: 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 "Editiere Dein <strong>Standard</strong> Profil nach Deinen Vorlieben. Überprüfe die Einstellungen zum Verbergen Deiner Kontaktliste vor unbekannten Betrachtern des Profils."
+#: mod/admin.php:976
+msgid "SSL link policy"
+msgstr "Regeln für SSL Links"
 
-#: mod/newmember.php:40
-msgid "Profile Keywords"
-msgstr "Profil Schlüsselbegriffe"
+#: mod/admin.php:976
+msgid "Determines whether generated links should be forced to use SSL"
+msgstr "Bestimmt, ob generierte Links SSL verwenden müssen"
 
-#: mod/newmember.php:40
+#: mod/admin.php:977
+msgid "Force SSL"
+msgstr "Erzwinge SSL"
+
+#: mod/admin.php:977
 msgid ""
-"Set some public keywords for your default profile which describe your "
-"interests. We may be able to find other people with similar interests and "
-"suggest friendships."
-msgstr "Trage ein paar öffentliche Stichwörter in Dein Standardprofil ein, die Deine Interessen beschreiben. Eventuell sind wir in der Lage Leute zu finden, die Deine Interessen teilen und können Dir dann Kontakte vorschlagen."
+"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/newmember.php:44
-msgid "Connecting"
-msgstr "Verbindungen knüpfen"
+#: mod/admin.php:978
+msgid "Old style 'Share'"
+msgstr "Altes \"Teilen\" Element"
 
-#: mod/newmember.php:51
-msgid "Importing Emails"
-msgstr "Emails Importieren"
+#: mod/admin.php:978
+msgid "Deactivates the bbcode element 'share' for repeating items."
+msgstr "Deaktiviert das BBCode Element \"share\" beim Wiederholen von Beiträgen."
 
-#: mod/newmember.php:51
+#: mod/admin.php:979
+msgid "Hide help entry from navigation menu"
+msgstr "Verberge den Menüeintrag für die Hilfe im Navigationsmenü"
+
+#: mod/admin.php:979
 msgid ""
-"Enter your email access information on your Connector Settings page if you "
-"wish to import and interact with friends or mailing lists from your email "
-"INBOX"
-msgstr "Gib Deine E-Mail-Zugangsinformationen auf der Connector-Einstellungsseite ein, falls Du E-Mails aus Deinem Posteingang importieren und mit Kontakten und Mailinglisten interagieren willst."
+"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/newmember.php:53
-msgid "Go to Your Contacts Page"
-msgstr "Gehe zu deiner Kontakt-Seite"
+#: mod/admin.php:980
+msgid "Single user instance"
+msgstr "Ein-Nutzer Instanz"
 
-#: mod/newmember.php:53
-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 "Die Kontakte-Seite ist die Einstiegsseite, von der aus Du Kontakte verwalten und Dich mit Personen in anderen Netzwerken verbinden kannst. Normalerweise gibst Du dazu einfach ihre Adresse oder die URL der Seite im Kasten <em>Neuen Kontakt hinzufügen</em> ein."
+#: mod/admin.php:980
+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/newmember.php:55
-msgid "Go to Your Site's Directory"
-msgstr "Gehe zum Verzeichnis Deiner Friendica Instanz"
+#: mod/admin.php:981
+msgid "Maximum image size"
+msgstr "Maximale Bildgröße"
 
-#: mod/newmember.php:55
+#: mod/admin.php:981
 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 "Über die Verzeichnisseite kannst Du andere Personen auf diesem Server oder anderen verknüpften Seiten finden. Halte nach einem <em>Verbinden</em> oder <em>Folgen</em> Link auf deren Profilseiten Ausschau und gib Deine eigene Profiladresse an, falls Du danach gefragt wirst."
+"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/newmember.php:57
-msgid "Finding New People"
-msgstr "Neue Leute kennenlernen"
+#: mod/admin.php:982
+msgid "Maximum image length"
+msgstr "Maximale Bildlänge"
 
-#: mod/newmember.php:57
+#: mod/admin.php:982
 msgid ""
-"On the side panel of the Contacts page are several tools to find new "
-"friends. We can match people by interest, look up people by name or "
-"interest, and provide suggestions based on network relationships. On a brand"
-" new site, friend suggestions will usually begin to be populated within 24 "
-"hours."
-msgstr "Im seitlichen Bedienfeld der Kontakteseite gibt es diverse Werkzeuge, um neue Personen zu finden. Wir können Menschen mit den gleichen Interessen finden, anhand von Namen oder Interessen suchen oder aber aufgrund vorhandener Kontakte neue Leute vorschlagen.\nAuf einer brandneuen - soeben erstellten - Seite starten die Kontaktvorschläge innerhalb von 24 Stunden."
+"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/newmember.php:65
-msgid "Group Your Contacts"
-msgstr "Gruppiere deine Kontakte"
+#: mod/admin.php:983
+msgid "JPEG image quality"
+msgstr "Qualität des JPEG Bildes"
 
-#: mod/newmember.php:65
+#: mod/admin.php:983
 msgid ""
-"Once you have made some friends, organize them into private conversation "
-"groups from the sidebar of your Contacts page and then you can interact with"
-" each group privately on your Network page."
-msgstr "Sobald Du einige Kontakte gefunden hast, organisiere sie in Gruppen zur privaten Kommunikation im Seitenmenü der Kontakte-Seite. Du kannst dann mit jeder dieser Gruppen von der Netzwerkseite aus privat interagieren."
+"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/newmember.php:68
-msgid "Why Aren't My Posts Public?"
-msgstr "Warum sind meine Beiträge nicht öffentlich?"
+#: mod/admin.php:985
+msgid "Register policy"
+msgstr "Registrierungsmethode"
 
-#: mod/newmember.php:68
+#: mod/admin.php:986
+msgid "Maximum Daily Registrations"
+msgstr "Maximum täglicher Registrierungen"
+
+#: mod/admin.php:986
 msgid ""
-"Friendica respects your privacy. By default, your posts will only show up to"
-" people you've added as friends. For more information, see the help section "
-"from the link above."
-msgstr "Friendica respektiert Deine Privatsphäre. Mit der Grundeinstellung werden Deine Beiträge ausschließlich Deinen Kontakten angezeigt. Für weitere Informationen diesbezüglich lies Dir bitte den entsprechenden Abschnitt in der Hilfe unter dem obigen Link durch."
+"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/newmember.php:73
-msgid "Getting Help"
-msgstr "Hilfe bekommen"
+#: mod/admin.php:987
+msgid "Register text"
+msgstr "Registrierungstext"
 
-#: mod/newmember.php:77
-msgid "Go to the Help Section"
-msgstr "Zum Hilfe Abschnitt gehen"
+#: mod/admin.php:987
+msgid "Will be displayed prominently on the registration page."
+msgstr "Wird gut sichtbar auf der Registrierungsseite angezeigt."
 
-#: mod/newmember.php:77
+#: mod/admin.php:988
+msgid "Accounts abandoned after x days"
+msgstr "Nutzerkonten gelten nach x Tagen als unbenutzt"
+
+#: mod/admin.php:988
 msgid ""
-"Our <strong>help</strong> pages may be consulted for detail on other program"
-" features and resources."
-msgstr "Unsere <strong>Hilfe</strong> Seiten können herangezogen werden, um weitere Einzelheiten zu andern Programm Features zu erhalten."
+"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/removeme.php:46 mod/removeme.php:49
-msgid "Remove My Account"
-msgstr "Konto löschen"
+#: mod/admin.php:989
+msgid "Allowed friend domains"
+msgstr "Erlaubte Domains für Kontakte"
 
-#: mod/removeme.php:47
+#: mod/admin.php:989
 msgid ""
-"This will completely remove your account. Once this has been done it is not "
-"recoverable."
-msgstr "Dein Konto wird endgültig gelöscht. Es gibt keine Möglichkeit, es wiederherzustellen."
+"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 Kontakte erlaubt sind, durch Kommas getrennt. Platzhalter werden akzeptiert. Leer lassen, um alle Domains zu erlauben."
 
-#: mod/removeme.php:48
-msgid "Please enter your password for verification:"
-msgstr "Bitte gib Dein Passwort zur Verifikation ein:"
+#: mod/admin.php:990
+msgid "Allowed email domains"
+msgstr "Erlaubte Domains für E-Mails"
 
-#: mod/mood.php:133
-msgid "Mood"
-msgstr "Stimmung"
+#: mod/admin.php:990
+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/mood.php:134
-msgid "Set your current mood and tell your friends"
-msgstr "Wähle Deine aktuelle Stimmung und erzähle sie Deinen Kontakten"
+#: mod/admin.php:991
+msgid "Block public"
+msgstr "Öffentlichen Zugriff blockieren"
 
-#: mod/editpost.php:17 mod/editpost.php:27
-msgid "Item not found"
-msgstr "Beitrag nicht gefunden"
+#: mod/admin.php:991
+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/editpost.php:40
-msgid "Edit post"
-msgstr "Beitrag bearbeiten"
+#: mod/admin.php:992
+msgid "Force publish"
+msgstr "Erzwinge Veröffentlichung"
 
-#: mod/network.php:398
-#, php-format
+#: mod/admin.php:992
 msgid ""
-"Warning: This group contains %s member from a network that doesn't allow non"
-" public messages."
-msgid_plural ""
-"Warning: This group contains %s members from a network that doesn't allow "
-"non public messages."
-msgstr[0] "Warnung: Diese Gruppe beinhaltet %s Person aus einem Netzwerk das keine nicht öffentlichen Beiträge empfangen kann."
-msgstr[1] "Warnung: Diese Gruppe beinhaltet %s Personen aus Netzwerken die keine nicht-öffentlichen Beiträge empfangen können."
+"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/network.php:401
-msgid "Messages in this group won't be send to these receivers."
-msgstr "Beiträge in dieser Gruppe werden deshalb nicht an diese Personen zugestellt werden."
+#: mod/admin.php:993
+msgid "Global directory URL"
+msgstr "URL des weltweiten Verzeichnisses"
 
-#: mod/network.php:529
-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/admin.php:993
+msgid ""
+"URL to the global directory. If this is not set, the global directory is "
+"completely unavailable to the application."
+msgstr "URL des weltweiten Verzeichnisses. Wenn diese nicht gesetzt ist, ist das Verzeichnis für die Applikation nicht erreichbar."
 
-#: mod/network.php:534
-msgid "Invalid contact."
-msgstr "Ungültiger Kontakt."
+#: mod/admin.php:994
+msgid "Allow threaded items"
+msgstr "Erlaube Threads in Diskussionen"
 
-#: mod/network.php:827
-msgid "Commented Order"
-msgstr "Neueste Kommentare"
+#: mod/admin.php:994
+msgid "Allow infinite level threading for items on this site."
+msgstr "Erlaube ein unendliches Level für Threads auf dieser Seite."
 
-#: mod/network.php:830
-msgid "Sort by Comment Date"
-msgstr "Nach Kommentardatum sortieren"
+#: mod/admin.php:995
+msgid "Private posts by default for new users"
+msgstr "Private Beiträge als Standard für neue Nutzer"
 
-#: mod/network.php:835
-msgid "Posted Order"
-msgstr "Neueste Beiträge"
+#: mod/admin.php:995
+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/network.php:838
-msgid "Sort by Post Date"
-msgstr "Nach Beitragsdatum sortieren"
+#: mod/admin.php:996
+msgid "Don't include post content in email notifications"
+msgstr "Inhalte von Beiträgen nicht in E-Mail-Benachrichtigungen versenden"
 
-#: mod/network.php:849
-msgid "Posts that mention or involve you"
-msgstr "Beiträge, in denen es um Dich geht"
+#: mod/admin.php:996
+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/network.php:857
-msgid "New"
-msgstr "Neue"
+#: mod/admin.php:997
+msgid "Disallow public access to addons listed in the apps menu."
+msgstr "Öffentlichen Zugriff auf Addons im Apps Menü verbieten."
 
-#: mod/network.php:860
-msgid "Activity Stream - by date"
-msgstr "Aktivitäten-Stream - nach Datum"
+#: mod/admin.php:997
+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/network.php:868
-msgid "Shared Links"
-msgstr "Geteilte Links"
+#: mod/admin.php:998
+msgid "Don't embed private images in posts"
+msgstr "Private Bilder nicht in Beiträgen einbetten."
 
-#: mod/network.php:871
-msgid "Interesting Links"
-msgstr "Interessante Links"
+#: mod/admin.php:998
+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 "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/network.php:879
-msgid "Starred"
-msgstr "Markierte"
+#: mod/admin.php:999
+msgid "Allow Users to set remote_self"
+msgstr "Nutzern erlauben das remote_self Flag zu setzen"
 
-#: mod/network.php:882
-msgid "Favourite Posts"
-msgstr "Favorisierte Beiträge"
+#: mod/admin.php:999
+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/community.php:27
-msgid "Not available."
-msgstr "Nicht verfügbar."
+#: mod/admin.php:1000
+msgid "Block multiple registrations"
+msgstr "Unterbinde Mehrfachregistrierung"
 
-#: mod/localtime.php:24
-msgid "Time Conversion"
-msgstr "Zeitumrechnung"
+#: mod/admin.php:1000
+msgid "Disallow users to register additional accounts for use as pages."
+msgstr "Benutzern nicht erlauben, weitere Konten als zusätzliche Profile anzulegen."
 
-#: mod/localtime.php:26
-msgid ""
-"Friendica provides this service for sharing events with other networks and "
-"friends in unknown timezones."
-msgstr "Friendica bietet diese Funktion an, um das Teilen von Events mit Kontakten zu vereinfachen, deren Zeitzone nicht ermittelt werden kann."
+#: mod/admin.php:1001
+msgid "OpenID support"
+msgstr "OpenID Unterstützung"
 
-#: mod/localtime.php:30
-#, php-format
-msgid "UTC time: %s"
-msgstr "UTC Zeit: %s"
+#: mod/admin.php:1001
+msgid "OpenID support for registration and logins."
+msgstr "OpenID-Unterstützung für Registrierung und Login."
 
-#: mod/localtime.php:33
-#, php-format
-msgid "Current timezone: %s"
-msgstr "Aktuelle Zeitzone: %s"
+#: mod/admin.php:1002
+msgid "Fullname check"
+msgstr "Namen auf Vollständigkeit überprüfen"
 
-#: mod/localtime.php:36
-#, php-format
-msgid "Converted localtime: %s"
-msgstr "Umgerechnete lokale Zeit: %s"
+#: mod/admin.php:1002
+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/localtime.php:41
-msgid "Please select your timezone:"
-msgstr "Bitte wähle Deine Zeitzone:"
+#: mod/admin.php:1003
+msgid "UTF-8 Regular expressions"
+msgstr "UTF-8 Reguläre Ausdrücke"
 
-#: mod/bookmarklet.php:41
-msgid "The post was created"
-msgstr "Der Beitrag wurde angelegt"
+#: mod/admin.php:1003
+msgid "Use PHP UTF8 regular expressions"
+msgstr "PHP UTF8 Ausdrücke verwenden"
 
-#: mod/group.php:29
-msgid "Group created."
-msgstr "Gruppe erstellt."
+#: mod/admin.php:1004
+msgid "Community Page Style"
+msgstr "Art der Gemeinschaftsseite"
+
+#: mod/admin.php:1004
+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:1005
+msgid "Posts per user on community page"
+msgstr "Anzahl der Beiträge pro Benutzer auf der Gemeinschaftsseite"
+
+#: mod/admin.php:1005
+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:1006
+msgid "Enable OStatus support"
+msgstr "OStatus Unterstützung aktivieren"
+
+#: mod/admin.php:1006
+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:1007
+msgid "OStatus conversation completion interval"
+msgstr "Intervall zum Vervollständigen von OStatus Unterhaltungen"
+
+#: mod/admin.php:1007
+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:1008
+msgid "Only import OStatus threads from our contacts"
+msgstr "Nur OStatus Konversationen unserer Kontakte importieren"
+
+#: mod/admin.php:1008
+msgid ""
+"Normally we import every content from our OStatus contacts. With this option"
+" we only store threads that are started by a contact that is known on our "
+"system."
+msgstr "Normalerweise werden alle Inhalte von OStatus Kontakten importiert. Mit dieser Option werden nur solche Konversationen gespeichert, die von Kontakten der Nutzer dieses Knotens gestartet wurden."
+
+#: mod/admin.php:1009
+msgid "OStatus support can only be enabled if threading is enabled."
+msgstr "OStatus Unterstützung kann nur aktiviert werden wenn \"Threading\" aktiviert ist. "
+
+#: mod/admin.php:1011
+msgid ""
+"Diaspora support can't be enabled because Friendica was installed into a sub"
+" directory."
+msgstr "Diaspora Unterstützung kann nicht aktiviert werden da Friendica in ein Unterverzeichnis installiert ist."
+
+#: mod/admin.php:1012
+msgid "Enable Diaspora support"
+msgstr "Diaspora Unterstützung aktivieren"
+
+#: mod/admin.php:1012
+msgid "Provide built-in Diaspora network compatibility."
+msgstr "Verwende die eingebaute Diaspora-Verknüpfung."
+
+#: mod/admin.php:1013
+msgid "Only allow Friendica contacts"
+msgstr "Nur Friendica-Kontakte erlauben"
+
+#: mod/admin.php:1013
+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:1014
+msgid "Verify SSL"
+msgstr "SSL Überprüfen"
+
+#: mod/admin.php:1014
+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:1015
+msgid "Proxy user"
+msgstr "Proxy Nutzer"
+
+#: mod/admin.php:1016
+msgid "Proxy URL"
+msgstr "Proxy URL"
+
+#: mod/admin.php:1017
+msgid "Network timeout"
+msgstr "Netzwerk Wartezeit"
+
+#: mod/admin.php:1017
+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:1018
+msgid "Delivery interval"
+msgstr "Zustellungsintervall"
+
+#: mod/admin.php:1018
+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:1019
+msgid "Poll interval"
+msgstr "Abfrageintervall"
+
+#: mod/admin.php:1019
+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:1020
+msgid "Maximum Load Average"
+msgstr "Maximum Load Average"
+
+#: mod/admin.php:1020
+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:1021
+msgid "Maximum Load Average (Frontend)"
+msgstr "Maximum Load Average (Frontend)"
+
+#: mod/admin.php:1021
+msgid "Maximum system load before the frontend quits service - default 50."
+msgstr "Maximale Systemlast bevor Vordergrundprozesse pausiert werden - Standard 50."
+
+#: mod/admin.php:1022
+msgid "Maximum table size for optimization"
+msgstr "Maximale Tabellengröße zur Optimierung"
+
+#: mod/admin.php:1022
+msgid ""
+"Maximum table size (in MB) for the automatic optimization - default 100 MB. "
+"Enter -1 to disable it."
+msgstr "Maximale Tabellengröße (in MB) für die automatische Optimierung - Standard 100 MB. Gib -1 für Deaktivierung ein."
+
+#: mod/admin.php:1023
+msgid "Minimum level of fragmentation"
+msgstr "Minimaler Fragmentationsgrad"
+
+#: mod/admin.php:1023
+msgid ""
+"Minimum fragmenation level to start the automatic optimization - default "
+"value is 30%."
+msgstr "Minimales Fragmentationsgrad von Datenbanktabellen um die automatische Optimierung einzuleiten - Standardwert ist 30%"
+
+#: mod/admin.php:1025
+msgid "Periodical check of global contacts"
+msgstr "Regelmäßig globale Kontakte überprüfen"
+
+#: mod/admin.php:1025
+msgid ""
+"If enabled, the global contacts are checked periodically for missing or "
+"outdated data and the vitality of the contacts and servers."
+msgstr "Wenn diese Option aktiviert ist, werden die globalen Kontakte regelmäßig auf fehlende oder veraltete Daten sowie auf Erreichbarkeit des Kontakts und des Servers überprüft."
+
+#: mod/admin.php:1026
+msgid "Days between requery"
+msgstr "Tage zwischen erneuten Abfragen"
+
+#: mod/admin.php:1026
+msgid "Number of days after which a server is requeried for his contacts."
+msgstr "Legt das Abfrageintervall fest, nachdem ein Server erneut nach Kontakten abgefragt werden soll."
+
+#: mod/admin.php:1027
+msgid "Discover contacts from other servers"
+msgstr "Neue Kontakte auf anderen Servern entdecken"
+
+#: mod/admin.php:1027
+msgid ""
+"Periodically query other servers for contacts. You can choose between "
+"'users': the users on the remote system, 'Global Contacts': active contacts "
+"that are known on the system. The fallback is meant for Redmatrix servers "
+"and older friendica servers, where global contacts weren't available. The "
+"fallback increases the server load, so the recommened setting is 'Users, "
+"Global Contacts'."
+msgstr "Regelmäßig andere Server nach potentiellen Kontakten absuchen. Du kannst zwischen 'Nutzern', den tatsächlichen Nutzern des anderen Systems und 'globalen Kontakten', aktiven Kontakten die auf dem System bekannt sind, wählen. Der Fallback-Mechanismus ist für ältere Friendica und Redmatrix Server gedacht, bei denen globale Kontakte noch nicht verfügbar sind. Durch den Fallbackmodus entsteht auf deinem Server eine wesentlich höhere Last, empfohlen wird der Modus 'Nutzer, globale Kontakte'."
+
+#: mod/admin.php:1028
+msgid "Timeframe for fetching global contacts"
+msgstr "Zeitfenster für globale Kontakte"
+
+#: mod/admin.php:1028
+msgid ""
+"When the discovery is activated, this value defines the timeframe for the "
+"activity of the global contacts that are fetched from other servers."
+msgstr "Wenn die Entdeckung neuer Kontakte aktiv ist, definiert dieses Zeitfenster den Zeitraum in dem globale Kontakte als aktiv gelten und von anderen Servern importiert werden."
+
+#: mod/admin.php:1029
+msgid "Search the local directory"
+msgstr "Lokales Verzeichnis durchsuchen"
+
+#: mod/admin.php:1029
+msgid ""
+"Search the local directory instead of the global directory. When searching "
+"locally, every search will be executed on the global directory in the "
+"background. This improves the search results when the search is repeated."
+msgstr "Suche im lokalen Verzeichnis anstelle des globalen Verzeichnisses durchführen. Jede Suche wird im Hintergrund auch im globalen Verzeichnis durchgeführt umd die Suchresultate zu verbessern, wenn diese Suche wiederholt wird."
+
+#: mod/admin.php:1031
+msgid "Publish server information"
+msgstr "Server Informationen veröffentlichen"
+
+#: mod/admin.php:1031
+msgid ""
+"If enabled, general server and usage data will be published. The data "
+"contains the name and version of the server, number of users with public "
+"profiles, number of posts and the activated protocols and connectors. See <a"
+" href='http://the-federation.info/'>the-federation.info</a> for details."
+msgstr "Wenn aktiviert, werden allgemeine Informationen über den Server und Nutzungsdaten veröffentlicht. Die Daten beinhalten den Namen sowie die Version des Servers, die Anzahl der Nutzer_innen mit öffentlichen Profilen, die Anzahl der Beiträge sowie aktivierte Protokolle und Connectoren. Für Details bitte <a href='http://the-federation.info/'>the-federation.info</a> aufrufen."
+
+#: mod/admin.php:1033
+msgid "Use MySQL full text engine"
+msgstr "Nutze MySQL full text engine"
+
+#: mod/admin.php:1033
+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:1034
+msgid "Suppress Language"
+msgstr "Sprachinformation unterdrücken"
+
+#: mod/admin.php:1034
+msgid "Suppress language information in meta information about a posting."
+msgstr "Verhindert das Erzeugen der Meta-Information zur Spracherkennung eines Beitrags."
+
+#: mod/admin.php:1035
+msgid "Suppress Tags"
+msgstr "Tags Unterdrücken"
+
+#: mod/admin.php:1035
+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:1036
+msgid "Path to item cache"
+msgstr "Pfad zum Eintrag Cache"
+
+#: mod/admin.php:1036
+msgid "The item caches buffers generated bbcode and external images."
+msgstr "Im Item-Cache werden externe Bilder und geparster BBCode zwischen gespeichert."
+
+#: mod/admin.php:1037
+msgid "Cache duration in seconds"
+msgstr "Cache-Dauer in Sekunden"
+
+#: mod/admin.php:1037
+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:1038
+msgid "Maximum numbers of comments per post"
+msgstr "Maximale Anzahl von Kommentaren pro Beitrag"
+
+#: mod/admin.php:1038
+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:1039
+msgid "Path for lock file"
+msgstr "Pfad für die Sperrdatei"
+
+#: mod/admin.php:1039
+msgid ""
+"The lock file is used to avoid multiple pollers at one time. Only define a "
+"folder here."
+msgstr "Die lock-Datei wird benutzt, damit nicht mehrere poller auf einmal laufen. Definiere hier einen Dateiverzeichnis."
+
+#: mod/admin.php:1040
+msgid "Temp path"
+msgstr "Temp Pfad"
+
+#: mod/admin.php:1040
+msgid ""
+"If you have a restricted system where the webserver can't access the system "
+"temp path, enter another path here."
+msgstr "Solltest du ein eingeschränktes System haben, auf dem der Webserver nicht auf das temp Verzeichnis des Systems zugreifen kann, setze hier einen anderen Pfad."
+
+#: mod/admin.php:1041
+msgid "Base path to installation"
+msgstr "Basis-Pfad zur Installation"
+
+#: mod/admin.php:1041
+msgid ""
+"If the system cannot detect the correct path to your installation, enter the"
+" correct path here. This setting should only be set if you are using a "
+"restricted system and symbolic links to your webroot."
+msgstr "Falls das System nicht den korrekten Pfad zu deiner Installation gefunden hat, gib den richtigen Pfad bitte hier ein. Du solltest hier den Pfad nur auf einem eingeschränkten System angeben müssen, bei dem du mit symbolischen Links auf dein Webverzeichnis verweist."
+
+#: mod/admin.php:1042
+msgid "Disable picture proxy"
+msgstr "Bilder Proxy deaktivieren"
+
+#: mod/admin.php:1042
+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 Leistung und Privatsphäre der Nutzer. Er sollte nicht auf Systemen verwendet werden, die nur über begrenzte Bandbreite verfügen."
+
+#: mod/admin.php:1043
+msgid "Enable old style pager"
+msgstr "Den Old-Style Pager aktiviren"
+
+#: mod/admin.php:1043
+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:1044
+msgid "Only search in tags"
+msgstr "Nur in Tags suchen"
+
+#: mod/admin.php:1044
+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:1046
+msgid "New base url"
+msgstr "Neue Basis-URL"
+
+#: mod/admin.php:1046
+msgid ""
+"Change base url for this server. Sends relocate message to all DFRN contacts"
+" of all users."
+msgstr "Ändert die Basis-URL dieses Servers und sendet eine Umzugsmitteilung an alle DFRN Kontakte deiner Nutzer_innen."
+
+#: mod/admin.php:1048
+msgid "RINO Encryption"
+msgstr "RINO Verschlüsselung"
+
+#: mod/admin.php:1048
+msgid "Encryption layer between nodes."
+msgstr "Verschlüsselung zwischen Friendica Instanzen"
+
+#: mod/admin.php:1049
+msgid "Embedly API key"
+msgstr "Embedly  API Schlüssel"
+
+#: mod/admin.php:1049
+msgid ""
+"<a href='http://embed.ly'>Embedly</a> is used to fetch additional data for "
+"web pages. This is an optional parameter."
+msgstr "<a href='http://embed.ly'>Embedly</a> wird verwendet um zusätzliche Informationen von Webseiten zu laden. Dies ist ein optionaler Parameter."
+
+#: mod/admin.php:1051
+msgid "Enable 'worker' background processing"
+msgstr "Aktiviere die 'Worker' Hintergrundprozesse"
+
+#: mod/admin.php:1051
+msgid ""
+"The worker background processing limits the number of parallel background "
+"jobs to a maximum number and respects the system load."
+msgstr "Der 'background worker' Prozess begrenzt die Zahl der Prozesse, die im Hintergrund parallel laufen und beachtet dabei die Systemlast."
+
+#: mod/admin.php:1052
+msgid "Maximum number of parallel workers"
+msgstr "Maximale Anzahl parallel laufender Worker"
+
+#: mod/admin.php:1052
+msgid ""
+"On shared hosters set this to 2. On larger systems, values of 10 are great. "
+"Default value is 4."
+msgstr "Wenn dein Knoten bei einem Shared Hoster ist, setzte diesen Wert auf 2. Auf größeren Systemen funktioniert ein Wert von 10 recht gut. Standardeinstellung sind 4."
+
+#: mod/admin.php:1053
+msgid "Don't use 'proc_open' with the worker"
+msgstr "'proc_open' nicht mit den Workern verwenden"
+
+#: mod/admin.php:1053
+msgid ""
+"Enable this if your system doesn't allow the use of 'proc_open'. This can "
+"happen on shared hosters. If this is enabled you should increase the "
+"frequency of poller calls in your crontab."
+msgstr "Aktiviere diese Option, wenn dein System die Verwendung von 'proc_open' verhindert. Dies könnte auf Shared Hostern der Fall sein. Wenn du diese Option aktivierst, solltest du die Frequenz der poller Aufrufe in deiner crontab erhöhen."
+
+#: mod/admin.php:1054
+msgid "Enable fastlane"
+msgstr "Aktiviere Fastlane"
+
+#: mod/admin.php:1054
+msgid ""
+"When enabed, the fastlane mechanism starts an additional worker if processes"
+" with higher priority are blocked by processes of lower priority."
+msgstr "Wenn aktiviert, wird der Fastlane-Mechanismus einen weiteren Worker-Prozeß starten wenn Prozesse mit höherer Priorität von Prozessen mit niedrigerer Priorität blockiert werden."
+
+#: mod/admin.php:1055
+msgid "Enable frontend worker"
+msgstr "Aktiviere den Frontend Worker"
+
+#: mod/admin.php:1055
+msgid ""
+"When enabled the Worker process is triggered when backend access is "
+"performed (e.g. messages being delivered). On smaller sites you might want "
+"to call yourdomain.tld/worker on a regular basis via an external cron job. "
+"You should only enable this option if you cannot utilize cron/scheduled jobs"
+" on your server. The worker background process needs to be activated for "
+"this."
+msgstr "Ist diese Option aktiv, wird der Worker Prozess durch Aktionen am Frontend gestartet (z.B. wenn Nachrichten zugestellt werden). Auf kleineren Seiten sollte yourdomain.tld/worker regelmäßig, beispielsweise durch einen externen Cron Anbieter, aufgerufen werden. Du solltest dies Option nur dann aktivieren, wenn du keinen Cron Job auf deinem eigenen Server starten kannst. Damit diese Option einen Effekt hat, muss der Worker Prozess aktiviert sein."
+
+#: mod/admin.php:1084
+msgid "Update has been marked successful"
+msgstr "Update wurde als erfolgreich markiert"
+
+#: mod/admin.php:1092
+#, php-format
+msgid "Database structure update %s was successfully applied."
+msgstr "Das Update %s der Struktur der Datenbank wurde erfolgreich angewandt."
+
+#: mod/admin.php:1095
+#, 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:1107
+#, php-format
+msgid "Executing %s failed with error: %s"
+msgstr "Die Ausführung von %s schlug fehl. Fehlermeldung: %s"
+
+#: mod/admin.php:1110
+#, php-format
+msgid "Update %s was successfully applied."
+msgstr "Update %s war erfolgreich."
+
+#: mod/admin.php:1114
+#, 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/group.php:35
-msgid "Could not create group."
-msgstr "Konnte die Gruppe nicht erstellen."
+#: mod/admin.php:1116
+#, 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/group.php:47 mod/group.php:140
-msgid "Group not found."
-msgstr "Gruppe nicht gefunden."
+#: mod/admin.php:1135
+msgid "No failed updates."
+msgstr "Keine fehlgeschlagenen Updates."
 
-#: mod/group.php:60
-msgid "Group name changed."
-msgstr "Gruppenname geändert."
+#: mod/admin.php:1136
+msgid "Check database structure"
+msgstr "Datenbank Struktur überprüfen"
 
-#: mod/group.php:87
-msgid "Save Group"
-msgstr "Gruppe speichern"
+#: mod/admin.php:1141
+msgid "Failed Updates"
+msgstr "Fehlgeschlagene Updates"
 
-#: mod/group.php:93
-msgid "Create a group of contacts/friends."
-msgstr "Eine Kontaktgruppe anlegen."
+#: mod/admin.php:1142
+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/group.php:113
-msgid "Group removed."
-msgstr "Gruppe entfernt."
+#: mod/admin.php:1143
+msgid "Mark success (if update was manually applied)"
+msgstr "Als erfolgreich markieren (falls das Update manuell installiert wurde)"
 
-#: mod/group.php:115
-msgid "Unable to remove group."
-msgstr "Konnte die Gruppe nicht entfernen."
+#: mod/admin.php:1144
+msgid "Attempt to execute this update step automatically"
+msgstr "Versuchen, diesen Schritt automatisch auszuführen"
 
-#: mod/group.php:177
-msgid "Group Editor"
-msgstr "Gruppeneditor"
+#: mod/admin.php:1178
+#, 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 "\nHallo %1$s,\n\nauf %2$s wurde ein Account für Dich angelegt."
 
-#: mod/group.php:190
-msgid "Members"
-msgstr "Mitglieder"
+#: mod/admin.php:1181
+#, 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 "\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/dfrn_request.php:101
-msgid "This introduction has already been accepted."
-msgstr "Diese Kontaktanfrage wurde bereits akzeptiert."
+#: mod/admin.php:1225
+#, 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/dfrn_request.php:124 mod/dfrn_request.php:520
-msgid "Profile location is not valid or does not contain profile information."
-msgstr "Profiladresse ist ungültig oder stellt keine Profildaten zur Verfügung."
+#: mod/admin.php:1232
+#, php-format
+msgid "%s user deleted"
+msgid_plural "%s users deleted"
+msgstr[0] "%s Nutzer gelöscht"
+msgstr[1] "%s Nutzer gelöscht"
 
-#: mod/dfrn_request.php:129 mod/dfrn_request.php:525
-msgid "Warning: profile location has no identifiable owner name."
-msgstr "Warnung: Es konnte kein Name des Besitzers von der angegebenen Profiladresse gefunden werden."
+#: mod/admin.php:1279
+#, php-format
+msgid "User '%s' deleted"
+msgstr "Nutzer '%s' gelöscht"
 
-#: mod/dfrn_request.php:131 mod/dfrn_request.php:527
-msgid "Warning: profile location has no profile photo."
-msgstr "Warnung: Es gibt kein Profilbild bei der angegebenen Profiladresse."
+#: mod/admin.php:1287
+#, php-format
+msgid "User '%s' unblocked"
+msgstr "Nutzer '%s' entsperrt"
 
-#: mod/dfrn_request.php:134 mod/dfrn_request.php:530
+#: mod/admin.php:1287
 #, php-format
-msgid "%d required parameter was not found at the given location"
-msgid_plural "%d required parameters were not found at the given location"
-msgstr[0] "%d benötigter Parameter wurde an der angegebenen Stelle nicht gefunden"
-msgstr[1] "%d benötigte Parameter wurden an der angegebenen Stelle nicht gefunden"
+msgid "User '%s' blocked"
+msgstr "Nutzer '%s' gesperrt"
 
-#: mod/dfrn_request.php:180
-msgid "Introduction complete."
-msgstr "Kontaktanfrage abgeschlossen."
+#: mod/admin.php:1396 mod/admin.php:1422
+msgid "Register date"
+msgstr "Anmeldedatum"
 
-#: mod/dfrn_request.php:222
-msgid "Unrecoverable protocol error."
-msgstr "Nicht behebbarer Protokollfehler."
+#: mod/admin.php:1396 mod/admin.php:1422
+msgid "Last login"
+msgstr "Letzte Anmeldung"
 
-#: mod/dfrn_request.php:250
-msgid "Profile unavailable."
-msgstr "Profil nicht verfügbar."
+#: mod/admin.php:1396 mod/admin.php:1422
+msgid "Last item"
+msgstr "Letzter Beitrag"
 
-#: mod/dfrn_request.php:277
-#, php-format
-msgid "%s has received too many connection requests today."
-msgstr "%s hat heute zu viele Kontaktanfragen erhalten."
+#: mod/admin.php:1405
+msgid "Add User"
+msgstr "Nutzer hinzufügen"
 
-#: mod/dfrn_request.php:278
-msgid "Spam protection measures have been invoked."
-msgstr "Maßnahmen zum Spamschutz wurden ergriffen."
+#: mod/admin.php:1406
+msgid "select all"
+msgstr "Alle auswählen"
 
-#: mod/dfrn_request.php:279
-msgid "Friends are advised to please try again in 24 hours."
-msgstr "Freunde sind angehalten, es in 24 Stunden erneut zu versuchen."
+#: mod/admin.php:1407
+msgid "User registrations waiting for confirm"
+msgstr "Neuanmeldungen, die auf Deine Bestätigung warten"
 
-#: mod/dfrn_request.php:341
-msgid "Invalid locator"
-msgstr "Ungültiger Locator"
+#: mod/admin.php:1408
+msgid "User waiting for permanent deletion"
+msgstr "Nutzer wartet auf permanente Löschung"
 
-#: mod/dfrn_request.php:350
-msgid "Invalid email address."
-msgstr "Ungültige E-Mail-Adresse."
+#: mod/admin.php:1409
+msgid "Request date"
+msgstr "Anfragedatum"
 
-#: mod/dfrn_request.php:375
-msgid "This account has not been configured for email. Request failed."
-msgstr "Dieses Konto ist nicht für E-Mail konfiguriert. Anfrage fehlgeschlagen."
+#: mod/admin.php:1410
+msgid "No registrations."
+msgstr "Keine Neuanmeldungen."
 
-#: mod/dfrn_request.php:478
-msgid "You have already introduced yourself here."
-msgstr "Du hast Dich hier bereits vorgestellt."
+#: mod/admin.php:1411
+msgid "Note from the user"
+msgstr "Hinweis vom Nutzer"
 
-#: mod/dfrn_request.php:482
-#, php-format
-msgid "Apparently you are already friends with %s."
-msgstr "Es scheint so, als ob Du bereits mit %s in Kontakt stehst."
+#: mod/admin.php:1413
+msgid "Deny"
+msgstr "Verwehren"
 
-#: mod/dfrn_request.php:503
-msgid "Invalid profile URL."
-msgstr "Ungültige Profil-URL."
+#: mod/admin.php:1415 mod/contacts.php:605 mod/contacts.php:805
+#: mod/contacts.php:983
+msgid "Block"
+msgstr "Sperren"
 
-#: mod/dfrn_request.php:604
-msgid "Your introduction has been sent."
-msgstr "Deine Kontaktanfrage wurde gesendet."
+#: mod/admin.php:1416 mod/contacts.php:605 mod/contacts.php:805
+#: mod/contacts.php:983
+msgid "Unblock"
+msgstr "Entsperren"
 
-#: mod/dfrn_request.php:644
-msgid ""
-"Remote subscription can't be done for your network. Please subscribe "
-"directly on your system."
-msgstr "Entferntes abon­nie­ren kann für dein Netzwerk nicht durchgeführt werden. Bitte nutze direkt die Abonnieren-Funktion deines Systems.   "
+#: mod/admin.php:1417
+msgid "Site admin"
+msgstr "Seitenadministrator"
 
-#: mod/dfrn_request.php:664
-msgid "Please login to confirm introduction."
-msgstr "Bitte melde Dich an, um die Kontaktanfrage zu bestätigen."
+#: mod/admin.php:1418
+msgid "Account expired"
+msgstr "Account ist abgelaufen"
 
-#: mod/dfrn_request.php:674
+#: mod/admin.php:1421
+msgid "New User"
+msgstr "Neuer Nutzer"
+
+#: mod/admin.php:1422
+msgid "Deleted since"
+msgstr "Gelöscht seit"
+
+#: mod/admin.php:1427
 msgid ""
-"Incorrect identity currently logged in. Please login to "
-"<strong>this</strong> profile."
-msgstr "Momentan bist Du mit einer anderen Identität angemeldet. Bitte melde Dich mit <strong>diesem</strong> Profil an."
+"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/dfrn_request.php:688 mod/dfrn_request.php:705
-msgid "Confirm"
-msgstr "Bestätigen"
+#: mod/admin.php:1428
+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:1438
+msgid "Name of the new user."
+msgstr "Name des neuen Nutzers"
+
+#: mod/admin.php:1439
+msgid "Nickname"
+msgstr "Spitzname"
+
+#: mod/admin.php:1439
+msgid "Nickname of the new user."
+msgstr "Spitznamen für den neuen Nutzer"
 
-#: mod/dfrn_request.php:700
-msgid "Hide this contact"
-msgstr "Verberge diesen Kontakt"
+#: mod/admin.php:1440
+msgid "Email address of the new user."
+msgstr "Email Adresse des neuen Nutzers"
 
-#: mod/dfrn_request.php:703
+#: mod/admin.php:1483
 #, php-format
-msgid "Welcome home %s."
-msgstr "Willkommen zurück %s."
+msgid "Plugin %s disabled."
+msgstr "Plugin %s deaktiviert."
 
-#: mod/dfrn_request.php:704
+#: mod/admin.php:1487
 #, php-format
-msgid "Please confirm your introduction/connection request to %s."
-msgstr "Bitte bestätige Deine Kontaktanfrage bei %s."
-
-#: mod/dfrn_request.php:833
-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:"
+msgid "Plugin %s enabled."
+msgstr "Plugin %s aktiviert."
 
-#: mod/dfrn_request.php:854
-#, php-format
-msgid ""
-"If you are not yet a member of the free social web, <a "
-"href=\"%s/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=\"%s/siteinfo\">folge diesem Link</a> um einen öffentlichen Friendica-Server zu finden und beizutreten."
+#: mod/admin.php:1498 mod/admin.php:1734
+msgid "Disable"
+msgstr "Ausschalten"
 
-#: mod/dfrn_request.php:859
-msgid "Friend/Connection Request"
-msgstr "Kontaktanfrage"
+#: mod/admin.php:1500 mod/admin.php:1736
+msgid "Enable"
+msgstr "Einschalten"
 
-#: mod/dfrn_request.php:860
-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/admin.php:1523 mod/admin.php:1781
+msgid "Toggle"
+msgstr "Umschalten"
 
-#: mod/dfrn_request.php:869
-msgid "StatusNet/Federated Social Web"
-msgstr "StatusNet/Federated Social Web"
+#: mod/admin.php:1531 mod/admin.php:1790
+msgid "Author: "
+msgstr "Autor:"
 
-#: mod/dfrn_request.php:871
-#, 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/admin.php:1532 mod/admin.php:1791
+msgid "Maintainer: "
+msgstr "Betreuer:"
 
-#: mod/profile_photo.php:44
-msgid "Image uploaded but image cropping failed."
-msgstr "Bild hochgeladen, aber das Zuschneiden schlug fehl."
+#: mod/admin.php:1584
+msgid "Reload active plugins"
+msgstr "Aktive Plugins neu laden"
 
-#: mod/profile_photo.php:77 mod/profile_photo.php:84 mod/profile_photo.php:91
-#: mod/profile_photo.php:314
+#: mod/admin.php:1589
 #, php-format
-msgid "Image size reduction [%s] failed."
-msgstr "Verkleinern der Bildgröße von [%s] scheiterte."
-
-#: mod/profile_photo.php:124
 msgid ""
-"Shift-reload the page or clear browser cache if the new photo does not "
-"display immediately."
-msgstr "Drücke Umschalt+Neu Laden oder leere den Browser-Cache, falls das neue Foto nicht gleich angezeigt wird."
+"There are currently no plugins available on your node. You can find the "
+"official plugin repository at %1$s and might find other interesting plugins "
+"in the open plugin registry at %2$s"
+msgstr "Es sind derzeit keine Plugins auf diesem Knoten verfügbar. Du findest das offizielle Plugin-Repository unter %1$s und weitere eventuell interessante Plugins im offenen Plugins-Verzeichnis auf %2$s."
 
-#: mod/profile_photo.php:134
-msgid "Unable to process image"
-msgstr "Bild konnte nicht verarbeitet werden"
+#: mod/admin.php:1694
+msgid "No themes found."
+msgstr "Keine Themen gefunden."
 
-#: mod/profile_photo.php:248
-msgid "Upload File:"
-msgstr "Datei hochladen:"
+#: mod/admin.php:1772
+msgid "Screenshot"
+msgstr "Bildschirmfoto"
 
-#: mod/profile_photo.php:249
-msgid "Select a profile:"
-msgstr "Profil auswählen:"
+#: mod/admin.php:1832
+msgid "Reload active themes"
+msgstr "Aktives Theme neu laden"
 
-#: mod/profile_photo.php:251
-msgid "Upload"
-msgstr "Hochladen"
+#: mod/admin.php:1837
+#, php-format
+msgid "No themes found on the system. They should be paced in %1$s"
+msgstr "Es wurden keine Themes auf dem System gefunden. Diese sollten in %1$s patziert werden."
 
-#: mod/profile_photo.php:254
-msgid "or"
-msgstr "oder"
+#: mod/admin.php:1838
+msgid "[Experimental]"
+msgstr "[Experimentell]"
 
-#: mod/profile_photo.php:254
-msgid "skip this step"
-msgstr "diesen Schritt überspringen"
+#: mod/admin.php:1839
+msgid "[Unsupported]"
+msgstr "[Nicht unterstützt]"
 
-#: mod/profile_photo.php:254
-msgid "select a photo from your photo albums"
-msgstr "wähle ein Foto aus deinen Fotoalben"
+#: mod/admin.php:1863
+msgid "Log settings updated."
+msgstr "Protokolleinstellungen aktualisiert."
 
-#: mod/profile_photo.php:268
-msgid "Crop Image"
-msgstr "Bild zurechtschneiden"
+#: mod/admin.php:1895
+msgid "PHP log currently enabled."
+msgstr "PHP Protokollierung ist derzeit aktiviert."
 
-#: mod/profile_photo.php:269
-msgid "Please adjust the image cropping for optimum viewing."
-msgstr "Passe bitte den Bildausschnitt an, damit das Bild optimal dargestellt werden kann."
+#: mod/admin.php:1897
+msgid "PHP log currently disabled."
+msgstr "PHP Protokollierung ist derzeit nicht aktiviert."
 
-#: mod/profile_photo.php:271
-msgid "Done Editing"
-msgstr "Bearbeitung abgeschlossen"
+#: mod/admin.php:1906
+msgid "Clear"
+msgstr "löschen"
 
-#: mod/profile_photo.php:305
-msgid "Image uploaded successfully."
-msgstr "Bild erfolgreich hochgeladen."
+#: mod/admin.php:1911
+msgid "Enable Debugging"
+msgstr "Protokoll führen"
 
-#: mod/register.php:93
-msgid ""
-"Registration successful. Please check your email for further instructions."
-msgstr "Registrierung erfolgreich. Eine E-Mail mit weiteren Anweisungen wurde an Dich gesendet."
+#: mod/admin.php:1912
+msgid "Log file"
+msgstr "Protokolldatei"
 
-#: mod/register.php:98
-#, php-format
+#: mod/admin.php:1912
 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 "Versenden der E-Mail fehlgeschlagen. Hier sind Deine Account Details:\n\nLogin: %s\nPasswort: %s\n\nDu kannst das Passwort nach dem Anmelden ändern."
-
-#: mod/register.php:105
-msgid "Registration successful."
-msgstr "Registrierung erfolgreich."
-
-#: mod/register.php:111
-msgid "Your registration can not be processed."
-msgstr "Deine Registrierung konnte nicht verarbeitet werden."
+"Must be writable by web server. Relative to your Friendica top-level "
+"directory."
+msgstr "Webserver muss Schreibrechte besitzen. Abhängig vom Friendica-Installationsverzeichnis."
 
-#: mod/register.php:160
-msgid "Your registration is pending approval by the site owner."
-msgstr "Deine Registrierung muss noch vom Betreiber der Seite freigegeben werden."
+#: mod/admin.php:1913
+msgid "Log level"
+msgstr "Protokoll-Level"
 
-#: mod/register.php:226
-msgid ""
-"You may (optionally) fill in this form via OpenID by supplying your OpenID "
-"and clicking 'Register'."
-msgstr "Du kannst dieses Formular auch (optional) mit Deiner OpenID ausfüllen, indem Du Deine OpenID angibst und 'Registrieren' klickst."
+#: mod/admin.php:1916
+msgid "PHP logging"
+msgstr "PHP Protokollieren"
 
-#: mod/register.php:227
+#: mod/admin.php:1917
 msgid ""
-"If you are not familiar with OpenID, please leave that field blank and fill "
-"in the rest of the items."
-msgstr "Wenn Du nicht mit OpenID vertraut bist, lass dieses Feld bitte leer und fülle die restlichen Felder aus."
-
-#: mod/register.php:228
-msgid "Your OpenID (optional): "
-msgstr "Deine OpenID (optional): "
-
-#: mod/register.php:242
-msgid "Include your profile in member directory?"
-msgstr "Soll Dein Profil im Nutzerverzeichnis angezeigt werden?"
+"To enable logging of PHP errors and warnings you can add the following to "
+"the .htconfig.php file of your installation. The filename set in the "
+"'error_log' line is relative to the friendica top-level directory and must "
+"be writeable by the web server. The option '1' for 'log_errors' and "
+"'display_errors' is to enable these options, set to '0' to disable them."
+msgstr "Um PHP Warnungen und Fehler zu protokollieren, kannst du die folgenden Zeilen zur .htconfig.php Datei deiner Installation hinzufügen. Den Dateinamen der Log-Datei legst du in der Zeile mit dem 'error_log' fest,  Er ist relativ zum Friendica-Stammverzeichnis und muss schreibbar durch den Webserver sein. Eine \"1\" als Option für die Punkte 'log_errors' und 'display_errors' aktiviert die Funktionen zum Protokollieren bzw. Anzeigen der Fehler, eine \"0\" deaktiviert sie."
 
-#: mod/register.php:267
-msgid "Note for the admin"
-msgstr "Hinweis für den Admin"
+#: mod/admin.php:2045
+#, php-format
+msgid "Lock feature %s"
+msgstr "Feature festlegen: %s"
 
-#: mod/register.php:267
-msgid "Leave a message for the admin, why you want to join this node"
-msgstr "Hinterlasse eine Nachricht an den Admin, warum du einen Account auf dieser Instanz haben möchtest."
+#: mod/admin.php:2053
+msgid "Manage Additional Features"
+msgstr "Zusätzliche Features Verwalten"
 
-#: mod/register.php:268
-msgid "Membership on this site is by invitation only."
-msgstr "Mitgliedschaft auf dieser Seite ist nur nach vorheriger Einladung möglich."
+#: mod/contacts.php:128
+#, php-format
+msgid "%d contact edited."
+msgid_plural "%d contacts edited."
+msgstr[0] "%d Kontakt bearbeitet."
+msgstr[1] "%d Kontakte bearbeitet."
 
-#: mod/register.php:269
-msgid "Your invitation ID: "
-msgstr "ID Deiner Einladung: "
+#: mod/contacts.php:159 mod/contacts.php:368
+msgid "Could not access contact record."
+msgstr "Konnte nicht auf die Kontaktdaten zugreifen."
 
-#: mod/register.php:280
-msgid "Your Full Name (e.g. Joe Smith, real or real-looking): "
-msgstr "Dein vollständiger Name (z.B. Hans Mustermann, echt oder echt erscheinend):"
+#: mod/contacts.php:173
+msgid "Could not locate selected profile."
+msgstr "Konnte das ausgewählte Profil nicht finden."
 
-#: mod/register.php:281
-msgid "Your Email Address: "
-msgstr "Deine E-Mail-Adresse: "
+#: mod/contacts.php:206
+msgid "Contact updated."
+msgstr "Kontakt aktualisiert."
 
-#: mod/register.php:283 mod/settings.php:1271
-msgid "New Password:"
-msgstr "Neues Passwort:"
+#: mod/contacts.php:208 mod/dfrn_request.php:583
+msgid "Failed to update contact record."
+msgstr "Aktualisierung der Kontaktdaten fehlgeschlagen."
 
-#: mod/register.php:283
-msgid "Leave empty for an auto generated password."
-msgstr "Leer lassen um das Passwort automatisch zu generieren."
+#: mod/contacts.php:389
+msgid "Contact has been blocked"
+msgstr "Kontakt wurde blockiert"
 
-#: mod/register.php:284 mod/settings.php:1272
-msgid "Confirm:"
-msgstr "Bestätigen:"
+#: mod/contacts.php:389
+msgid "Contact has been unblocked"
+msgstr "Kontakt wurde wieder freigegeben"
 
-#: mod/register.php:285
-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 "Wähle einen Spitznamen für Dein Profil. Dieser muss mit einem Buchstaben beginnen. Die Adresse Deines Profils auf dieser Seite wird '<strong>spitzname@$sitename</strong>' sein."
+#: mod/contacts.php:400
+msgid "Contact has been ignored"
+msgstr "Kontakt wurde ignoriert"
 
-#: mod/register.php:286
-msgid "Choose a nickname: "
-msgstr "Spitznamen wählen: "
+#: mod/contacts.php:400
+msgid "Contact has been unignored"
+msgstr "Kontakt wird nicht mehr ignoriert"
 
-#: mod/register.php:296
-msgid "Import your profile to this friendica instance"
-msgstr "Importiere Dein Profil auf diese Friendica Instanz"
+#: mod/contacts.php:412
+msgid "Contact has been archived"
+msgstr "Kontakt wurde archiviert"
 
-#: mod/settings.php:60
-msgid "Display"
-msgstr "Anzeige"
+#: mod/contacts.php:412
+msgid "Contact has been unarchived"
+msgstr "Kontakt wurde aus dem Archiv geholt"
 
-#: mod/settings.php:67 mod/settings.php:886
-msgid "Social Networks"
-msgstr "Soziale Netzwerke"
+#: mod/contacts.php:437
+msgid "Drop contact"
+msgstr "Kontakt löschen"
 
-#: mod/settings.php:88
-msgid "Connected apps"
-msgstr "Verbundene Programme"
+#: mod/contacts.php:440 mod/contacts.php:801
+msgid "Do you really want to delete this contact?"
+msgstr "Möchtest Du wirklich diesen Kontakt löschen?"
 
-#: mod/settings.php:102
-msgid "Remove account"
-msgstr "Konto löschen"
+#: mod/contacts.php:457
+msgid "Contact has been removed."
+msgstr "Kontakt wurde entfernt."
 
-#: mod/settings.php:155
-msgid "Missing some important data!"
-msgstr "Wichtige Daten fehlen!"
+#: mod/contacts.php:498
+#, php-format
+msgid "You are mutual friends with %s"
+msgstr "Du hast mit %s eine beidseitige Freundschaft"
 
-#: mod/settings.php:269
-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/contacts.php:502
+#, php-format
+msgid "You are sharing with %s"
+msgstr "Du teilst mit %s"
 
-#: mod/settings.php:274
-msgid "Email settings updated."
-msgstr "E-Mail Einstellungen bearbeitet."
+#: mod/contacts.php:507
+#, php-format
+msgid "%s is sharing with you"
+msgstr "%s teilt mit Dir"
 
-#: mod/settings.php:289
-msgid "Features updated"
-msgstr "Features aktualisiert"
+#: mod/contacts.php:527
+msgid "Private communications are not available for this contact."
+msgstr "Private Kommunikation ist für diesen Kontakt nicht verfügbar."
 
-#: mod/settings.php:359
-msgid "Relocate message has been send to your contacts"
-msgstr "Die Umzugsbenachrichtigung wurde an Deine Kontakte versendet."
+#: mod/contacts.php:534
+msgid "(Update was successful)"
+msgstr "(Aktualisierung war erfolgreich)"
 
-#: mod/settings.php:378
-msgid "Empty passwords are not allowed. Password unchanged."
-msgstr "Leere Passwörter sind nicht erlaubt. Passwort bleibt unverändert."
+#: mod/contacts.php:534
+msgid "(Update was not successful)"
+msgstr "(Aktualisierung war nicht erfolgreich)"
 
-#: mod/settings.php:386
-msgid "Wrong password."
-msgstr "Falsches Passwort."
+#: mod/contacts.php:536 mod/contacts.php:964
+msgid "Suggest friends"
+msgstr "Kontakte vorschlagen"
 
-#: mod/settings.php:397
-msgid "Password changed."
-msgstr "Passwort geändert."
+#: mod/contacts.php:540
+#, php-format
+msgid "Network type: %s"
+msgstr "Netzwerktyp: %s"
 
-#: mod/settings.php:399
-msgid "Password update failed. Please try again."
-msgstr "Aktualisierung des Passworts gescheitert, bitte versuche es noch einmal."
+#: mod/contacts.php:553
+msgid "Communications lost with this contact!"
+msgstr "Verbindungen mit diesem Kontakt verloren!"
 
-#: mod/settings.php:479
-msgid " Please use a shorter name."
-msgstr " Bitte verwende einen kürzeren Namen."
+#: mod/contacts.php:556
+msgid "Fetch further information for feeds"
+msgstr "Weitere Informationen zu Feeds holen"
 
-#: mod/settings.php:481
-msgid " Name too short."
-msgstr " Name ist zu kurz."
+#: mod/contacts.php:557
+msgid "Fetch information"
+msgstr "Beziehe Information"
 
-#: mod/settings.php:490
-msgid "Wrong Password"
-msgstr "Falsches Passwort"
+#: mod/contacts.php:557
+msgid "Fetch information and keywords"
+msgstr "Beziehe Information und Schlüsselworte"
 
-#: mod/settings.php:495
-msgid " Not valid email."
-msgstr " Keine gültige E-Mail."
+#: mod/contacts.php:575
+msgid "Contact"
+msgstr "Kontakt: "
 
-#: mod/settings.php:501
-msgid " Cannot change to that email."
-msgstr "Ändern der E-Mail nicht möglich. "
+#: mod/contacts.php:578
+msgid "Profile Visibility"
+msgstr "Profil-Sichtbarkeit"
 
-#: mod/settings.php:557
-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/contacts.php:579
+#, 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/settings.php:561
-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/contacts.php:580
+msgid "Contact Information / Notes"
+msgstr "Kontakt Informationen / Notizen"
 
-#: mod/settings.php:601
-msgid "Settings updated."
-msgstr "Einstellungen aktualisiert."
+#: mod/contacts.php:581
+msgid "Edit contact notes"
+msgstr "Notizen zum Kontakt bearbeiten"
 
-#: mod/settings.php:677 mod/settings.php:703 mod/settings.php:739
-msgid "Add application"
-msgstr "Programm hinzufügen"
+#: mod/contacts.php:587
+msgid "Block/Unblock contact"
+msgstr "Kontakt blockieren/freischalten"
 
-#: mod/settings.php:681 mod/settings.php:707
-msgid "Consumer Key"
-msgstr "Consumer Key"
+#: mod/contacts.php:588
+msgid "Ignore contact"
+msgstr "Ignoriere den Kontakt"
 
-#: mod/settings.php:682 mod/settings.php:708
-msgid "Consumer Secret"
-msgstr "Consumer Secret"
+#: mod/contacts.php:589
+msgid "Repair URL settings"
+msgstr "URL Einstellungen reparieren"
 
-#: mod/settings.php:683 mod/settings.php:709
-msgid "Redirect"
-msgstr "Umleiten"
+#: mod/contacts.php:590
+msgid "View conversations"
+msgstr "Unterhaltungen anzeigen"
 
-#: mod/settings.php:684 mod/settings.php:710
-msgid "Icon url"
-msgstr "Icon URL"
+#: mod/contacts.php:596
+msgid "Last update:"
+msgstr "Letzte Aktualisierung: "
 
-#: mod/settings.php:695
-msgid "You can't edit this application."
-msgstr "Du kannst dieses Programm nicht bearbeiten."
+#: mod/contacts.php:598
+msgid "Update public posts"
+msgstr "Öffentliche Beiträge aktualisieren"
 
-#: mod/settings.php:738
-msgid "Connected Apps"
-msgstr "Verbundene Programme"
+#: mod/contacts.php:600 mod/contacts.php:974
+msgid "Update now"
+msgstr "Jetzt aktualisieren"
 
-#: mod/settings.php:742
-msgid "Client key starts with"
-msgstr "Anwenderschlüssel beginnt mit"
+#: mod/contacts.php:606 mod/contacts.php:806 mod/contacts.php:991
+msgid "Unignore"
+msgstr "Ignorieren aufheben"
 
-#: mod/settings.php:743
-msgid "No name"
-msgstr "Kein Name"
+#: mod/contacts.php:610
+msgid "Currently blocked"
+msgstr "Derzeit geblockt"
 
-#: mod/settings.php:744
-msgid "Remove authorization"
-msgstr "Autorisierung entziehen"
+#: mod/contacts.php:611
+msgid "Currently ignored"
+msgstr "Derzeit ignoriert"
 
-#: mod/settings.php:756
-msgid "No Plugin settings configured"
-msgstr "Keine Plugin-Einstellungen konfiguriert"
+#: mod/contacts.php:612
+msgid "Currently archived"
+msgstr "Momentan archiviert"
 
-#: mod/settings.php:764
-msgid "Plugin Settings"
-msgstr "Plugin-Einstellungen"
+#: mod/contacts.php:613
+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/settings.php:786
-msgid "Additional Features"
-msgstr "Zusätzliche Features"
+#: mod/contacts.php:614
+msgid "Notification for new posts"
+msgstr "Benachrichtigung bei neuen Beiträgen"
 
-#: mod/settings.php:796 mod/settings.php:800
-msgid "General Social Media Settings"
-msgstr "Allgemeine Einstellungen zu Sozialen Medien"
+#: mod/contacts.php:614
+msgid "Send a notification of every new post of this contact"
+msgstr "Sende eine Benachrichtigung, wann immer dieser Kontakt einen neuen Beitrag schreibt."
 
-#: mod/settings.php:806
-msgid "Disable intelligent shortening"
-msgstr "Intelligentes Link kürzen ausschalten"
+#: mod/contacts.php:617
+msgid "Blacklisted keywords"
+msgstr "Blacklistete Schlüsselworte "
 
-#: mod/settings.php:808
+#: mod/contacts.php:617
 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."
+"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/settings.php:814
-msgid "Automatically follow any GNU Social (OStatus) followers/mentioners"
-msgstr "Automatisch allen GNU Social (OStatus) Followern/Erwähnern folgen"
+#: mod/contacts.php:635
+msgid "Actions"
+msgstr "Aktionen"
 
-#: mod/settings.php:816
-msgid ""
-"If you receive a message from an unknown OStatus user, this option decides "
-"what to do. If it is checked, a new contact will be created for every "
-"unknown user."
-msgstr "Wenn du eine Nachricht eines unbekannten OStatus Nutzers bekommst, entscheidet diese Option wie diese behandelt werden soll. Ist die Option aktiviert, wird ein neuer Kontakt für den Verfasser erstellt,."
+#: mod/contacts.php:638
+msgid "Contact Settings"
+msgstr "Kontakteinstellungen"
 
-#: mod/settings.php:822
-msgid "Default group for OStatus contacts"
-msgstr "Voreingestellte Gruppe für OStatus Kontakte"
+#: mod/contacts.php:684
+msgid "Suggestions"
+msgstr "Kontaktvorschläge"
 
-#: mod/settings.php:828
-msgid "Your legacy GNU Social account"
-msgstr "Dein alter GNU Social Account"
+#: mod/contacts.php:687
+msgid "Suggest potential friends"
+msgstr "Kontakte vorschlagen"
 
-#: mod/settings.php:830
-msgid ""
-"If you enter your old GNU Social/Statusnet account name here (in the format "
-"user@domain.tld), your contacts will be added automatically. The field will "
-"be emptied when done."
-msgstr "Wenn du deinen alten GNU Socual/Statusnet Accountnamen hier angibst (Format name@domain.tld) werden deine Kontakte automatisch hinzugefügt. Dieses Feld wird geleert, wenn die Kontakte hinzugefügt wurden."
+#: mod/contacts.php:695
+msgid "Show all contacts"
+msgstr "Alle Kontakte anzeigen"
 
-#: mod/settings.php:833
-msgid "Repair OStatus subscriptions"
-msgstr "OStatus Abonnements reparieren"
+#: mod/contacts.php:700
+msgid "Unblocked"
+msgstr "Ungeblockt"
 
-#: mod/settings.php:842 mod/settings.php:843
-#, php-format
-msgid "Built-in support for %s connectivity is %s"
-msgstr "Eingebaute Unterstützung für Verbindungen zu %s ist %s"
+#: mod/contacts.php:703
+msgid "Only show unblocked contacts"
+msgstr "Nur nicht-blockierte Kontakte anzeigen"
 
-#: mod/settings.php:842 mod/settings.php:843
-msgid "enabled"
-msgstr "eingeschaltet"
+#: mod/contacts.php:709
+msgid "Blocked"
+msgstr "Geblockt"
 
-#: mod/settings.php:842 mod/settings.php:843
-msgid "disabled"
-msgstr "ausgeschaltet"
+#: mod/contacts.php:712
+msgid "Only show blocked contacts"
+msgstr "Nur blockierte Kontakte anzeigen"
 
-#: mod/settings.php:843
-msgid "GNU Social (OStatus)"
-msgstr "GNU Social (OStatus)"
+#: mod/contacts.php:718
+msgid "Ignored"
+msgstr "Ignoriert"
 
-#: mod/settings.php:879
-msgid "Email access is disabled on this site."
-msgstr "Zugriff auf E-Mails für diese Seite deaktiviert."
+#: mod/contacts.php:721
+msgid "Only show ignored contacts"
+msgstr "Nur ignorierte Kontakte anzeigen"
 
-#: mod/settings.php:891
-msgid "Email/Mailbox Setup"
-msgstr "E-Mail/Postfach-Einstellungen"
+#: mod/contacts.php:727
+msgid "Archived"
+msgstr "Archiviert"
 
-#: mod/settings.php:892
-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/contacts.php:730
+msgid "Only show archived contacts"
+msgstr "Nur archivierte Kontakte anzeigen"
 
-#: mod/settings.php:893
-msgid "Last successful email check:"
-msgstr "Letzter erfolgreicher E-Mail Check"
+#: mod/contacts.php:736
+msgid "Hidden"
+msgstr "Verborgen"
 
-#: mod/settings.php:895
-msgid "IMAP server name:"
-msgstr "IMAP-Server-Name:"
+#: mod/contacts.php:739
+msgid "Only show hidden contacts"
+msgstr "Nur verborgene Kontakte anzeigen"
 
-#: mod/settings.php:896
-msgid "IMAP port:"
-msgstr "IMAP-Port:"
+#: mod/contacts.php:796
+msgid "Search your contacts"
+msgstr "Suche in deinen Kontakten"
 
-#: mod/settings.php:897
-msgid "Security:"
-msgstr "Sicherheit:"
+#: mod/contacts.php:807 mod/contacts.php:999
+msgid "Archive"
+msgstr "Archivieren"
 
-#: mod/settings.php:897 mod/settings.php:902
-msgid "None"
-msgstr "Keine"
+#: mod/contacts.php:807 mod/contacts.php:999
+msgid "Unarchive"
+msgstr "Aus Archiv zurückholen"
 
-#: mod/settings.php:898
-msgid "Email login name:"
-msgstr "E-Mail-Login-Name:"
+#: mod/contacts.php:810
+msgid "Batch Actions"
+msgstr "Stapelverarbeitung"
 
-#: mod/settings.php:899
-msgid "Email password:"
-msgstr "E-Mail-Passwort:"
+#: mod/contacts.php:856
+msgid "View all contacts"
+msgstr "Alle Kontakte anzeigen"
 
-#: mod/settings.php:900
-msgid "Reply-to address:"
-msgstr "Reply-to Adresse:"
+#: mod/contacts.php:866
+msgid "View all common friends"
+msgstr "Alle Kontakte anzeigen"
 
-#: mod/settings.php:901
-msgid "Send public posts to all email contacts:"
-msgstr "Sende öffentliche Beiträge an alle E-Mail-Kontakte:"
+#: mod/contacts.php:873
+msgid "Advanced Contact Settings"
+msgstr "Fortgeschrittene Kontakteinstellungen"
 
-#: mod/settings.php:902
-msgid "Action after import:"
-msgstr "Aktion nach Import:"
+#: mod/contacts.php:907
+msgid "Mutual Friendship"
+msgstr "Beidseitige Freundschaft"
 
-#: mod/settings.php:902
-msgid "Move to folder"
-msgstr "In einen Ordner verschieben"
+#: mod/contacts.php:911
+msgid "is a fan of yours"
+msgstr "ist ein Fan von dir"
 
-#: mod/settings.php:903
-msgid "Move to folder:"
-msgstr "In diesen Ordner verschieben:"
+#: mod/contacts.php:915
+msgid "you are a fan of"
+msgstr "Du bist Fan von"
 
-#: mod/settings.php:994
-msgid "Display Settings"
-msgstr "Anzeige-Einstellungen"
+#: mod/contacts.php:985
+msgid "Toggle Blocked status"
+msgstr "Geblockt-Status ein-/ausschalten"
 
-#: mod/settings.php:1000 mod/settings.php:1023
-msgid "Display Theme:"
-msgstr "Theme:"
+#: mod/contacts.php:993
+msgid "Toggle Ignored status"
+msgstr "Ignoriert-Status ein-/ausschalten"
 
-#: mod/settings.php:1001
-msgid "Mobile Theme:"
-msgstr "Mobiles Theme"
+#: mod/contacts.php:1001
+msgid "Toggle Archive status"
+msgstr "Archiviert-Status ein-/ausschalten"
 
-#: mod/settings.php:1002
-msgid "Suppress warning of insecure networks"
-msgstr "Warnung wegen unsicheren Netzwerken unterdrücken"
+#: mod/contacts.php:1009
+msgid "Delete contact"
+msgstr "Lösche den Kontakt"
 
-#: mod/settings.php:1002
+#: mod/dfrn_confirm.php:127
 msgid ""
-"Should the system suppress the warning that the current group contains "
-"members of networks that can't receive non public postings."
-msgstr "Soll das System Warnungen unterdrücken, die angezeigt werden weil von dir eingerichtete Kontakt-Gruppen Accounts aus Netzwerken beinhalten, die keine nicht öffentlichen Beiträge empfangen können."
+"This may occasionally happen if contact was requested by both persons and it"
+" has already been approved."
+msgstr "Das kann passieren, wenn sich zwei Kontakte gegenseitig eingeladen haben und bereits einer angenommen wurde."
 
-#: mod/settings.php:1003
-msgid "Update browser every xx seconds"
-msgstr "Browser alle xx Sekunden aktualisieren"
+#: mod/dfrn_confirm.php:246
+msgid "Response from remote site was not understood."
+msgstr "Antwort der Gegenstelle unverständlich."
 
-#: mod/settings.php:1003
-msgid "Minimum of 10 seconds. Enter -1 to disable it."
-msgstr "Minimum sind 10 Sekeunden. Gib -1 ein um abzuschalten."
+#: mod/dfrn_confirm.php:255 mod/dfrn_confirm.php:260
+msgid "Unexpected response from remote site: "
+msgstr "Unerwartete Antwort der Gegenstelle: "
 
-#: mod/settings.php:1004
-msgid "Number of items to display per page:"
-msgstr "Zahl der Beiträge, die pro Netzwerkseite angezeigt werden sollen: "
+#: mod/dfrn_confirm.php:269
+msgid "Confirmation completed successfully."
+msgstr "Bestätigung erfolgreich abgeschlossen."
 
-#: mod/settings.php:1004 mod/settings.php:1005
-msgid "Maximum of 100 items"
-msgstr "Maximal 100 Beiträge"
+#: mod/dfrn_confirm.php:271 mod/dfrn_confirm.php:285 mod/dfrn_confirm.php:292
+msgid "Remote site reported: "
+msgstr "Gegenstelle meldet: "
 
-#: mod/settings.php:1005
-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/dfrn_confirm.php:283
+msgid "Temporary failure. Please wait and try again."
+msgstr "Zeitweiser Fehler. Bitte warte einige Momente und versuche es dann noch einmal."
 
-#: mod/settings.php:1006
-msgid "Don't show emoticons"
-msgstr "Keine Smilies anzeigen"
+#: mod/dfrn_confirm.php:290
+msgid "Introduction failed or was revoked."
+msgstr "Kontaktanfrage schlug fehl oder wurde zurückgezogen."
 
-#: mod/settings.php:1007
-msgid "Calendar"
-msgstr "Kalender"
+#: mod/dfrn_confirm.php:419
+msgid "Unable to set contact photo."
+msgstr "Konnte das Bild des Kontakts nicht speichern."
 
-#: mod/settings.php:1008
-msgid "Beginning of week:"
-msgstr "Wochenbeginn:"
+#: mod/dfrn_confirm.php:557
+#, php-format
+msgid "No user record found for '%s' "
+msgstr "Für '%s' wurde kein Nutzer gefunden"
 
-#: mod/settings.php:1009
-msgid "Don't show notices"
-msgstr "Info-Popups nicht anzeigen"
+#: mod/dfrn_confirm.php:567
+msgid "Our site encryption key is apparently messed up."
+msgstr "Der Verschlüsselungsschlüssel unserer Seite ist anscheinend nicht in Ordnung."
 
-#: mod/settings.php:1010
-msgid "Infinite scroll"
-msgstr "Endloses Scrollen"
+#: mod/dfrn_confirm.php:578
+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/settings.php:1011
-msgid "Automatic updates only at the top of the network page"
-msgstr "Automatische Updates nur, wenn Du oben auf der Netzwerkseite bist."
+#: mod/dfrn_confirm.php:599
+msgid "Contact record was not found for you on our site."
+msgstr "Für diesen Kontakt wurde auf unserer Seite kein Eintrag gefunden."
 
-#: mod/settings.php:1012
-msgid "Bandwith Saver Mode"
-msgstr "Bandbreiten-Spar-Modus"
+#: mod/dfrn_confirm.php:613
+#, 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/settings.php:1012
+#: mod/dfrn_confirm.php:633
 msgid ""
-"When enabled, embedded content is not displayed on automatic updates, they "
-"only show on page reload."
-msgstr "Wenn aktiviert, wird der eingebettete Inhalt nicht automatisch aktualisiert. In diesem Fall Seite bitte neu laden."
-
-#: mod/settings.php:1014
-msgid "General Theme Settings"
-msgstr "Allgemeine Themeneinstellungen"
+"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/settings.php:1015
-msgid "Custom Theme Settings"
-msgstr "Benutzerdefinierte Theme Einstellungen"
+#: mod/dfrn_confirm.php:644
+msgid "Unable to set your contact credentials on our system."
+msgstr "Deine Kontaktreferenzen konnten nicht in unserem System gespeichert werden."
 
-#: mod/settings.php:1016
-msgid "Content Settings"
-msgstr "Einstellungen zum Inhalt"
+#: mod/dfrn_confirm.php:703
+msgid "Unable to update your contact profile details on our system"
+msgstr "Die Updates für Dein Profil konnten nicht gespeichert werden"
 
-#: mod/settings.php:1017 view/theme/frio/config.php:61
-#: view/theme/quattro/config.php:66 view/theme/vier/config.php:109
-#: view/theme/duepuntozero/config.php:61
-msgid "Theme settings"
-msgstr "Themeneinstellungen"
+#: mod/dfrn_confirm.php:775
+#, php-format
+msgid "%1$s has joined %2$s"
+msgstr "%1$s ist %2$s beigetreten"
 
-#: mod/settings.php:1099
-msgid "Account Types"
-msgstr "Kontenarten"
+#: mod/dfrn_request.php:101
+msgid "This introduction has already been accepted."
+msgstr "Diese Kontaktanfrage wurde bereits akzeptiert."
 
-#: mod/settings.php:1100
-msgid "Personal Page Subtypes"
-msgstr "Unterarten der persönlichen Seite"
+#: mod/dfrn_request.php:124 mod/dfrn_request.php:520
+msgid "Profile location is not valid or does not contain profile information."
+msgstr "Profiladresse ist ungültig oder stellt keine Profildaten zur Verfügung."
 
-#: mod/settings.php:1101
-msgid "Community Forum Subtypes"
-msgstr "Unterarten des Gemeinschaftsforums"
+#: mod/dfrn_request.php:129 mod/dfrn_request.php:525
+msgid "Warning: profile location has no identifiable owner name."
+msgstr "Warnung: Es konnte kein Name des Besitzers von der angegebenen Profiladresse gefunden werden."
 
-#: mod/settings.php:1108
-msgid "Personal Page"
-msgstr "Persönliche Seite"
+#: mod/dfrn_request.php:131 mod/dfrn_request.php:527
+msgid "Warning: profile location has no profile photo."
+msgstr "Warnung: Es gibt kein Profilbild bei der angegebenen Profiladresse."
 
-#: mod/settings.php:1109
-msgid "This account is a regular personal profile"
-msgstr "Dieses Konto ist ein normales persönliches Profil"
+#: mod/dfrn_request.php:134 mod/dfrn_request.php:530
+#, php-format
+msgid "%d required parameter was not found at the given location"
+msgid_plural "%d required parameters were not found at the given location"
+msgstr[0] "%d benötigter Parameter wurde an der angegebenen Stelle nicht gefunden"
+msgstr[1] "%d benötigte Parameter wurden an der angegebenen Stelle nicht gefunden"
 
-#: mod/settings.php:1112
-msgid "Organisation Page"
-msgstr "Organisationsseite"
+#: mod/dfrn_request.php:180
+msgid "Introduction complete."
+msgstr "Kontaktanfrage abgeschlossen."
 
-#: mod/settings.php:1113
-msgid "This account is a profile for an organisation"
-msgstr "Diese Konto ist ein Profil für eine Organisation"
+#: mod/dfrn_request.php:222
+msgid "Unrecoverable protocol error."
+msgstr "Nicht behebbarer Protokollfehler."
 
-#: mod/settings.php:1116
-msgid "News Page"
-msgstr "Nachrichtenseite"
+#: mod/dfrn_request.php:250
+msgid "Profile unavailable."
+msgstr "Profil nicht verfügbar."
 
-#: mod/settings.php:1117
-msgid "This account is a news account/reflector"
-msgstr "Dieses Konto ist ein News-Konto bzw. -Spiegel"
+#: mod/dfrn_request.php:277
+#, php-format
+msgid "%s has received too many connection requests today."
+msgstr "%s hat heute zu viele Kontaktanfragen erhalten."
 
-#: mod/settings.php:1120
-msgid "Community Forum"
-msgstr "Gemeinschaftsforum"
+#: mod/dfrn_request.php:278
+msgid "Spam protection measures have been invoked."
+msgstr "Maßnahmen zum Spamschutz wurden ergriffen."
 
-#: mod/settings.php:1121
-msgid ""
-"This account is a community forum where people can discuss with each other"
-msgstr "Dieses Konto ist ein Gemeinschaftskonto wo sich Leute untereinander austauschen können"
+#: mod/dfrn_request.php:279
+msgid "Friends are advised to please try again in 24 hours."
+msgstr "Freunde sind angehalten, es in 24 Stunden erneut zu versuchen."
 
-#: mod/settings.php:1124
-msgid "Normal Account Page"
-msgstr "Normales Konto"
+#: mod/dfrn_request.php:341
+msgid "Invalid locator"
+msgstr "Ungültiger Locator"
 
-#: mod/settings.php:1125
-msgid "This account is a normal personal profile"
-msgstr "Dieses Konto ist ein normales persönliches Profil"
+#: mod/dfrn_request.php:350
+msgid "Invalid email address."
+msgstr "Ungültige E-Mail-Adresse."
 
-#: mod/settings.php:1128
-msgid "Soapbox Page"
-msgstr "Marktschreier-Konto"
+#: mod/dfrn_request.php:375
+msgid "This account has not been configured for email. Request failed."
+msgstr "Dieses Konto ist nicht für E-Mail konfiguriert. Anfrage fehlgeschlagen."
 
-#: mod/settings.php:1129
-msgid "Automatically approve all connection/friend requests as read-only fans"
-msgstr "Kontaktanfragen werden automatisch als Nurlese-Fans akzeptiert"
+#: mod/dfrn_request.php:478
+msgid "You have already introduced yourself here."
+msgstr "Du hast Dich hier bereits vorgestellt."
 
-#: mod/settings.php:1132
-msgid "Public Forum"
-msgstr "Öffentliches Forum"
+#: mod/dfrn_request.php:482
+#, php-format
+msgid "Apparently you are already friends with %s."
+msgstr "Es scheint so, als ob Du bereits mit %s in Kontakt stehst."
 
-#: mod/settings.php:1133
-msgid "Automatically approve all contact requests"
-msgstr "Bestätige alle Kontaktanfragen automatisch"
+#: mod/dfrn_request.php:503
+msgid "Invalid profile URL."
+msgstr "Ungültige Profil-URL."
 
-#: mod/settings.php:1136
-msgid "Automatic Friend Page"
-msgstr "Automatische Freunde Seite"
+#: mod/dfrn_request.php:604
+msgid "Your introduction has been sent."
+msgstr "Deine Kontaktanfrage wurde gesendet."
 
-#: mod/settings.php:1137
-msgid "Automatically approve all connection/friend requests as friends"
-msgstr "Kontaktanfragen werden automatisch als Freund akzeptiert"
+#: mod/dfrn_request.php:644
+msgid ""
+"Remote subscription can't be done for your network. Please subscribe "
+"directly on your system."
+msgstr "Entferntes abon­nie­ren kann für dein Netzwerk nicht durchgeführt werden. Bitte nutze direkt die Abonnieren-Funktion deines Systems.   "
 
-#: mod/settings.php:1140
-msgid "Private Forum [Experimental]"
-msgstr "Privates Forum [Versuchsstadium]"
+#: mod/dfrn_request.php:664
+msgid "Please login to confirm introduction."
+msgstr "Bitte melde Dich an, um die Kontaktanfrage zu bestätigen."
 
-#: mod/settings.php:1141
-msgid "Private forum - approved members only"
-msgstr "Privates Forum, nur für Mitglieder"
+#: mod/dfrn_request.php:674
+msgid ""
+"Incorrect identity currently logged in. Please login to "
+"<strong>this</strong> profile."
+msgstr "Momentan bist Du mit einer anderen Identität angemeldet. Bitte melde Dich mit <strong>diesem</strong> Profil an."
 
-#: mod/settings.php:1153
-msgid "OpenID:"
-msgstr "OpenID:"
+#: mod/dfrn_request.php:688 mod/dfrn_request.php:705
+msgid "Confirm"
+msgstr "Bestätigen"
 
-#: mod/settings.php:1153
-msgid "(Optional) Allow this OpenID to login to this account."
-msgstr "(Optional) Erlaube die Anmeldung für dieses Konto mit dieser OpenID."
+#: mod/dfrn_request.php:700
+msgid "Hide this contact"
+msgstr "Verberge diesen Kontakt"
 
-#: mod/settings.php:1163
-msgid "Publish your default profile in your local site directory?"
-msgstr "Darf Dein Standardprofil im Verzeichnis dieses Servers veröffentlicht werden?"
+#: mod/dfrn_request.php:703
+#, php-format
+msgid "Welcome home %s."
+msgstr "Willkommen zurück %s."
 
-#: mod/settings.php:1169
-msgid "Publish your default profile in the global social directory?"
-msgstr "Darf Dein Standardprofil im weltweiten Verzeichnis veröffentlicht werden?"
+#: mod/dfrn_request.php:704
+#, php-format
+msgid "Please confirm your introduction/connection request to %s."
+msgstr "Bitte bestätige Deine Kontaktanfrage bei %s."
 
-#: mod/settings.php:1177
-msgid "Hide your contact/friend list from viewers of your default profile?"
-msgstr "Liste der Kontakte vor Betrachtern des Standardprofils verbergen?"
+#: mod/dfrn_request.php:833
+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/settings.php:1181
+#: mod/dfrn_request.php:854
+#, php-format
 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"
+"If you are not yet a member of the free social web, <a "
+"href=\"%s/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=\"%s/siteinfo\">folge diesem Link</a> um einen öffentlichen Friendica-Server zu finden und beizutreten."
 
-#: mod/settings.php:1186
-msgid "Allow friends to post to your profile page?"
-msgstr "Dürfen Deine Kontakte auf Deine Pinnwand schreiben?"
+#: mod/dfrn_request.php:859
+msgid "Friend/Connection Request"
+msgstr "Kontaktanfrage"
 
-#: mod/settings.php:1192
-msgid "Allow friends to tag your posts?"
-msgstr "Dürfen Deine Kontakte Deine Beiträge mit Schlagwörtern versehen?"
+#: mod/dfrn_request.php:860
+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/settings.php:1198
-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/dfrn_request.php:861 mod/follow.php:109
+msgid "Please answer the following:"
+msgstr "Bitte beantworte folgendes:"
 
-#: mod/settings.php:1204
-msgid "Permit unknown people to send you private mail?"
-msgstr "Dürfen Dir Unbekannte private Nachrichten schicken?"
+#: mod/dfrn_request.php:862 mod/follow.php:110
+#, php-format
+msgid "Does %s know you?"
+msgstr "Kennt %s Dich?"
 
-#: mod/settings.php:1212
-msgid "Profile is <strong>not published</strong>."
-msgstr "Profil ist <strong>nicht veröffentlicht</strong>."
+#: mod/dfrn_request.php:866 mod/follow.php:111
+msgid "Add a personal note:"
+msgstr "Eine persönliche Notiz beifügen:"
 
-#: mod/settings.php:1220
-#, php-format
-msgid "Your Identity Address is <strong>'%s'</strong> or '%s'."
-msgstr "Die Adresse deines Profils lautet <strong>'%s'</strong> oder '%s'."
+#: mod/dfrn_request.php:869
+msgid "StatusNet/Federated Social Web"
+msgstr "StatusNet/Federated Social Web"
 
-#: mod/settings.php:1227
-msgid "Automatically expire posts after this many days:"
-msgstr "Beiträge verfallen automatisch nach dieser Anzahl von Tagen:"
+#: mod/dfrn_request.php:871
+#, 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/settings.php:1227
-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/dfrn_request.php:872 mod/follow.php:117
+msgid "Your Identity Address:"
+msgstr "Adresse Deines Profils:"
 
-#: mod/settings.php:1228
-msgid "Advanced expiration settings"
-msgstr "Erweiterte Verfallseinstellungen"
+#: mod/dfrn_request.php:875 mod/follow.php:19
+msgid "Submit Request"
+msgstr "Anfrage abschicken"
 
-#: mod/settings.php:1229
-msgid "Advanced Expiration"
-msgstr "Erweitertes Verfallen"
+#: mod/follow.php:30
+msgid "You already added this contact."
+msgstr "Du hast den Kontakt bereits hinzugefügt."
 
-#: mod/settings.php:1230
-msgid "Expire posts:"
-msgstr "Beiträge verfallen lassen:"
+#: mod/follow.php:39
+msgid "Diaspora support isn't enabled. Contact can't be added."
+msgstr "Diaspora Unterstützung ist nicht aktiviert. Der Kontakt kann nicht zugefügt werden."
 
-#: mod/settings.php:1231
-msgid "Expire personal notes:"
-msgstr "Persönliche Notizen verfallen lassen:"
+#: mod/follow.php:46
+msgid "OStatus support is disabled. Contact can't be added."
+msgstr "OStatus Unterstützung ist nicht aktiviert. Der Kontakt kann nicht zugefügt werden."
 
-#: mod/settings.php:1232
-msgid "Expire starred posts:"
-msgstr "Markierte Beiträge verfallen lassen:"
+#: mod/follow.php:53
+msgid "The network type couldn't be detected. Contact can't be added."
+msgstr "Der Netzwerktype wurde nicht erkannt. Der Kontakt kann nicht hinzugefügt werden."
 
-#: mod/settings.php:1233
-msgid "Expire photos:"
-msgstr "Fotos verfallen lassen:"
+#: mod/follow.php:180
+msgid "Contact added"
+msgstr "Kontakt hinzugefügt"
 
-#: mod/settings.php:1234
-msgid "Only expire posts by others:"
-msgstr "Nur Beiträge anderer verfallen:"
+#: mod/install.php:139
+msgid "Friendica Communications Server - Setup"
+msgstr "Friendica-Server für soziale Netzwerke – Setup"
 
-#: mod/settings.php:1262
-msgid "Account Settings"
-msgstr "Kontoeinstellungen"
+#: mod/install.php:145
+msgid "Could not connect to database."
+msgstr "Verbindung zur Datenbank gescheitert."
 
-#: mod/settings.php:1270
-msgid "Password Settings"
-msgstr "Passwort-Einstellungen"
+#: mod/install.php:149
+msgid "Could not create table."
+msgstr "Tabelle konnte nicht angelegt werden."
 
-#: mod/settings.php:1272
-msgid "Leave password fields blank unless changing"
-msgstr "Lass die Passwort-Felder leer, außer Du willst das Passwort ändern"
+#: mod/install.php:155
+msgid "Your Friendica site database has been installed."
+msgstr "Die Datenbank Deiner Friendicaseite wurde installiert."
 
-#: mod/settings.php:1273
-msgid "Current Password:"
-msgstr "Aktuelles Passwort:"
+#: mod/install.php:160
+msgid ""
+"You may need to import the file \"database.sql\" manually using phpmyadmin "
+"or mysql."
+msgstr "Möglicherweise musst Du die Datei \"database.sql\" manuell mit phpmyadmin oder mysql importieren."
 
-#: mod/settings.php:1273 mod/settings.php:1274
-msgid "Your current password to confirm the changes"
-msgstr "Dein aktuelles Passwort um die Änderungen zu bestätigen"
+#: mod/install.php:161 mod/install.php:230 mod/install.php:607
+msgid "Please see the file \"INSTALL.txt\"."
+msgstr "Lies bitte die \"INSTALL.txt\"."
 
-#: mod/settings.php:1274
-msgid "Password:"
-msgstr "Passwort:"
+#: mod/install.php:173
+msgid "Database already in use."
+msgstr "Die Datenbank wird bereits verwendet."
 
-#: mod/settings.php:1278
-msgid "Basic Settings"
-msgstr "Grundeinstellungen"
+#: mod/install.php:227
+msgid "System check"
+msgstr "Systemtest"
 
-#: mod/settings.php:1280
-msgid "Email Address:"
-msgstr "E-Mail-Adresse:"
+#: mod/install.php:232
+msgid "Check again"
+msgstr "Noch einmal testen"
 
-#: mod/settings.php:1281
-msgid "Your Timezone:"
-msgstr "Deine Zeitzone:"
+#: mod/install.php:251
+msgid "Database connection"
+msgstr "Datenbankverbindung"
 
-#: mod/settings.php:1282
-msgid "Your Language:"
-msgstr "Deine Sprache:"
+#: mod/install.php:252
+msgid ""
+"In order to install Friendica we need to know how to connect to your "
+"database."
+msgstr "Um Friendica installieren zu können, müssen wir wissen, wie wir mit Deiner Datenbank Kontakt aufnehmen können."
 
-#: mod/settings.php:1282
+#: mod/install.php:253
 msgid ""
-"Set the language we use to show you friendica interface and to send you "
-"emails"
-msgstr "Wähle die Sprache, in der wir Dir die Friendica-Oberfläche präsentieren sollen und Dir E-Mail schicken"
+"Please contact your hosting provider or site administrator if you have "
+"questions about these settings."
+msgstr "Bitte kontaktiere den Hosting Provider oder den Administrator der Seite, falls Du Fragen zu diesen Einstellungen haben solltest."
 
-#: mod/settings.php:1283
-msgid "Default Post Location:"
-msgstr "Standardstandort:"
+#: mod/install.php:254
+msgid ""
+"The database you specify below should already exist. If it does not, please "
+"create it before continuing."
+msgstr "Die Datenbank, die Du unten angibst, sollte bereits existieren. Ist dies noch nicht der Fall, erzeuge sie bitte bevor Du mit der Installation fortfährst."
 
-#: mod/settings.php:1284
-msgid "Use Browser Location:"
-msgstr "Standort des Browsers verwenden:"
+#: mod/install.php:258
+msgid "Database Server Name"
+msgstr "Datenbank-Server"
 
-#: mod/settings.php:1287
-msgid "Security and Privacy Settings"
-msgstr "Sicherheits- und Privatsphäre-Einstellungen"
+#: mod/install.php:259
+msgid "Database Login Name"
+msgstr "Datenbank-Nutzer"
 
-#: mod/settings.php:1289
-msgid "Maximum Friend Requests/Day:"
-msgstr "Maximale Anzahl vonKontaktanfragen/Tag:"
+#: mod/install.php:260
+msgid "Database Login Password"
+msgstr "Datenbank-Passwort"
 
-#: mod/settings.php:1289 mod/settings.php:1319
-msgid "(to prevent spam abuse)"
-msgstr "(um SPAM zu vermeiden)"
+#: mod/install.php:261
+msgid "Database Name"
+msgstr "Datenbank-Name"
 
-#: mod/settings.php:1290
-msgid "Default Post Permissions"
-msgstr "Standard-Zugriffsrechte für Beiträge"
+#: mod/install.php:262 mod/install.php:303
+msgid "Site administrator email address"
+msgstr "E-Mail-Adresse des Administrators"
 
-#: mod/settings.php:1291
-msgid "(click to open/close)"
-msgstr "(klicke zum öffnen/schließen)"
+#: mod/install.php:262 mod/install.php:303
+msgid ""
+"Your account email address must match this in order to use the web admin "
+"panel."
+msgstr "Die E-Mail-Adresse, die in Deinem Friendica-Account eingetragen ist, muss mit dieser Adresse übereinstimmen, damit Du das Admin-Panel benutzen kannst."
 
-#: mod/settings.php:1302
-msgid "Default Private Post"
-msgstr "Privater Standardbeitrag"
+#: mod/install.php:266 mod/install.php:306
+msgid "Please select a default timezone for your website"
+msgstr "Bitte wähle die Standardzeitzone Deiner Webseite"
 
-#: mod/settings.php:1303
-msgid "Default Public Post"
-msgstr "Öffentlicher Standardbeitrag"
+#: mod/install.php:293
+msgid "Site settings"
+msgstr "Server-Einstellungen"
 
-#: mod/settings.php:1307
-msgid "Default Permissions for New Posts"
-msgstr "Standardberechtigungen für neue Beiträge"
+#: mod/install.php:307
+msgid "System Language:"
+msgstr "Systemsprache:"
 
-#: mod/settings.php:1319
-msgid "Maximum private messages per day from unknown people:"
-msgstr "Maximale Anzahl privater Nachrichten von Unbekannten pro Tag:"
+#: mod/install.php:307
+msgid ""
+"Set the default language for your Friendica installation interface and to "
+"send emails."
+msgstr "Wähle die Standardsprache für deine Friendica-Installations-Oberfläche und den E-Mail-Versand"
 
-#: mod/settings.php:1322
-msgid "Notification Settings"
-msgstr "Benachrichtigungseinstellungen"
+#: mod/install.php:347
+msgid "Could not find a command line version of PHP in the web server PATH."
+msgstr "Konnte keine Kommandozeilenversion von PHP im PATH des Servers finden."
 
-#: mod/settings.php:1323
-msgid "By default post a status message when:"
-msgstr "Standardmäßig eine Statusnachricht posten, wenn:"
+#: mod/install.php:348
+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='https://github.com/friendica/friendica/blob/master/doc/Install.md#set-"
+"up-the-poller'>'Setup the poller'</a>"
+msgstr "Wenn Du keine Kommandozeilen-Version von PHP auf Deinem Server installiert hast, kannst Du keine Hintergrundprozesse via cron starten. Siehe <a href='https://github.com/friendica/friendica/blob/master/doc/Install.md#set-up-the-poller'>'Setup the poller'</a>"
 
-#: mod/settings.php:1324
-msgid "accepting a friend request"
-msgstr "– Du eine Kontaktanfrage akzeptierst"
+#: mod/install.php:352
+msgid "PHP executable path"
+msgstr "Pfad zu PHP"
 
-#: mod/settings.php:1325
-msgid "joining a forum/community"
-msgstr "– Du einem Forum/einer Gemeinschaftsseite beitrittst"
+#: mod/install.php:352
+msgid ""
+"Enter full path to php executable. You can leave this blank to continue the "
+"installation."
+msgstr "Gib den kompletten Pfad zur ausführbaren Datei von PHP an. Du kannst dieses Feld auch frei lassen und mit der Installation fortfahren."
 
-#: mod/settings.php:1326
-msgid "making an <em>interesting</em> profile change"
-msgstr "– Du eine <em>interessante</em> Änderung an Deinem Profil durchführst"
+#: mod/install.php:357
+msgid "Command line PHP"
+msgstr "Kommandozeilen-PHP"
 
-#: mod/settings.php:1327
-msgid "Send a notification email when:"
-msgstr "Benachrichtigungs-E-Mail senden wenn:"
+#: mod/install.php:366
+msgid "PHP executable is not the php cli binary (could be cgi-fgci version)"
+msgstr "Die ausführbare Datei von PHP stimmt nicht mit der PHP cli Version überein (es könnte sich um die cgi-fgci Version handeln)"
 
-#: mod/settings.php:1328
-msgid "You receive an introduction"
-msgstr "– Du eine Kontaktanfrage erhältst"
+#: mod/install.php:367
+msgid "Found PHP version: "
+msgstr "Gefundene PHP Version:"
 
-#: mod/settings.php:1329
-msgid "Your introductions are confirmed"
-msgstr "– eine Deiner Kontaktanfragen akzeptiert wurde"
+#: mod/install.php:369
+msgid "PHP cli binary"
+msgstr "PHP CLI Binary"
 
-#: mod/settings.php:1330
-msgid "Someone writes on your profile wall"
-msgstr "– jemand etwas auf Deine Pinnwand schreibt"
+#: mod/install.php:380
+msgid ""
+"The command line version of PHP on your system does not have "
+"\"register_argc_argv\" enabled."
+msgstr "Die Kommandozeilenversion von PHP auf Deinem System hat \"register_argc_argv\" nicht aktiviert."
 
-#: mod/settings.php:1331
-msgid "Someone writes a followup comment"
-msgstr "– jemand auch einen Kommentar verfasst"
+#: mod/install.php:381
+msgid "This is required for message delivery to work."
+msgstr "Dies wird für die Auslieferung von Nachrichten benötigt."
 
-#: mod/settings.php:1332
-msgid "You receive a private message"
-msgstr "– Du eine private Nachricht erhältst"
+#: mod/install.php:383
+msgid "PHP register_argc_argv"
+msgstr "PHP register_argc_argv"
 
-#: mod/settings.php:1333
-msgid "You receive a friend suggestion"
-msgstr "– Du eine Empfehlung erhältst"
+#: mod/install.php:404
+msgid ""
+"Error: the \"openssl_pkey_new\" function on this system is not able to "
+"generate encryption keys"
+msgstr "Fehler: Die Funktion \"openssl_pkey_new\" auf diesem System ist nicht in der Lage, Verschlüsselungsschlüssel zu erzeugen"
 
-#: mod/settings.php:1334
-msgid "You are tagged in a post"
-msgstr "– Du in einem Beitrag erwähnt wirst"
+#: mod/install.php:405
+msgid ""
+"If running under Windows, please see "
+"\"http://www.php.net/manual/en/openssl.installation.php\"."
+msgstr "Wenn der Server unter Windows läuft, schau Dir bitte \"http://www.php.net/manual/en/openssl.installation.php\" an."
 
-#: mod/settings.php:1335
-msgid "You are poked/prodded/etc. in a post"
-msgstr "– Du von jemandem angestupst oder sonstwie behandelt wirst"
+#: mod/install.php:407
+msgid "Generate encryption keys"
+msgstr "Schlüssel erzeugen"
 
-#: mod/settings.php:1337
-msgid "Activate desktop notifications"
-msgstr "Desktop Benachrichtigungen einschalten"
+#: mod/install.php:414
+msgid "libCurl PHP module"
+msgstr "PHP: libCurl-Modul"
 
-#: mod/settings.php:1337
-msgid "Show desktop popup on new notifications"
-msgstr "Desktop Benachrichtigungen einschalten"
+#: mod/install.php:415
+msgid "GD graphics PHP module"
+msgstr "PHP: GD-Grafikmodul"
 
-#: mod/settings.php:1339
-msgid "Text-only notification emails"
-msgstr "Benachrichtigungs E-Mail als Rein-Text."
+#: mod/install.php:416
+msgid "OpenSSL PHP module"
+msgstr "PHP: OpenSSL-Modul"
 
-#: mod/settings.php:1341
-msgid "Send text only notification emails, without the html part"
-msgstr "Sende Benachrichtigungs E-Mail als Rein-Text - ohne HTML-Teil"
+#: mod/install.php:417
+msgid "mysqli PHP module"
+msgstr "PHP: mysqli-Modul"
 
-#: mod/settings.php:1343
-msgid "Advanced Account/Page Type Settings"
-msgstr "Erweiterte Konto-/Seitentyp-Einstellungen"
+#: mod/install.php:418
+msgid "mb_string PHP module"
+msgstr "PHP: mb_string-Modul"
 
-#: mod/settings.php:1344
-msgid "Change the behaviour of this account for special situations"
-msgstr "Verhalten dieses Kontos in bestimmten Situationen:"
+#: mod/install.php:419
+msgid "mcrypt PHP module"
+msgstr "PHP mcrypt Modul"
 
-#: mod/settings.php:1347
-msgid "Relocate"
-msgstr "Umziehen"
+#: mod/install.php:420
+msgid "XML PHP module"
+msgstr "XML PHP Modul"
 
-#: mod/settings.php:1348
-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/install.php:421
+msgid "iconv module"
+msgstr "iconv module"
 
-#: mod/settings.php:1349
-msgid "Resend relocate message to contacts"
-msgstr "Umzugsbenachrichtigung erneut an Kontakte senden"
+#: mod/install.php:425 mod/install.php:427
+msgid "Apache mod_rewrite module"
+msgstr "Apache mod_rewrite module"
 
-#: mod/wallmessage.php:42 mod/wallmessage.php:112
-#, php-format
-msgid "Number of daily wall messages for %s exceeded. Message failed."
-msgstr "Maximale Anzahl der täglichen Pinnwand Nachrichten für %s ist überschritten. Zustellung fehlgeschlagen."
+#: mod/install.php:425
+msgid ""
+"Error: Apache webserver mod-rewrite module is required but not installed."
+msgstr "Fehler: Das Apache-Modul mod-rewrite wird benötigt, es ist allerdings nicht installiert."
 
-#: mod/wallmessage.php:56 mod/message.php:71
-msgid "No recipient selected."
-msgstr "Kein Empfänger gewählt."
+#: mod/install.php:433
+msgid "Error: libCURL PHP module required but not installed."
+msgstr "Fehler: Das libCURL PHP Modul wird benötigt, ist aber nicht installiert."
 
-#: mod/wallmessage.php:59
-msgid "Unable to check your home location."
-msgstr "Konnte Deinen Heimatort nicht bestimmen."
+#: mod/install.php:437
+msgid ""
+"Error: GD graphics PHP module with JPEG support required but not installed."
+msgstr "Fehler: Das GD-Graphikmodul für PHP mit JPEG-Unterstützung ist nicht installiert."
 
-#: mod/wallmessage.php:62 mod/message.php:78
-msgid "Message could not be sent."
-msgstr "Nachricht konnte nicht gesendet werden."
+#: mod/install.php:441
+msgid "Error: openssl PHP module required but not installed."
+msgstr "Fehler: Das openssl-Modul von PHP ist nicht installiert."
 
-#: mod/wallmessage.php:65 mod/message.php:81
-msgid "Message collection failure."
-msgstr "Konnte Nachrichten nicht abrufen."
+#: mod/install.php:445
+msgid "Error: mysqli PHP module required but not installed."
+msgstr "Fehler: Das mysqli-Modul von PHP ist nicht installiert."
 
-#: mod/wallmessage.php:68 mod/message.php:84
-msgid "Message sent."
-msgstr "Nachricht gesendet."
+#: mod/install.php:449
+msgid "Error: mb_string PHP module required but not installed."
+msgstr "Fehler: mb_string PHP Module wird benötigt ist aber nicht installiert."
 
-#: mod/wallmessage.php:86 mod/wallmessage.php:95
-msgid "No recipient."
-msgstr "Kein Empfänger."
+#: mod/install.php:453
+msgid "Error: mcrypt PHP module required but not installed."
+msgstr "Fehler: Das mcrypt Modul von PHP ist nicht installiert"
 
-#: mod/wallmessage.php:142 mod/message.php:341
-msgid "Send Private Message"
-msgstr "Private Nachricht senden"
+#: mod/install.php:457
+msgid "Error: iconv PHP module required but not installed."
+msgstr "Fehler: Das iconv-Modul von PHP ist nicht installiert."
 
-#: mod/wallmessage.php:143
-#, php-format
+#: mod/install.php:466
 msgid ""
-"If you wish for %s to respond, please check that the privacy settings on "
-"your site allow private mail from unknown senders."
-msgstr "Wenn Du möchtest, dass %s Dir antworten kann, überprüfe Deine Privatsphären-Einstellungen und erlaube private Nachrichten von unbekannten Absendern."
+"If you are using php_cli, please make sure that mcrypt module is enabled in "
+"its config file"
+msgstr "Wenn du das Modul \"php_cli\" benutzt dann versichere dich, daß das mcrypt Modul in seiner Konfigurationsdatei aktiviert ist. "
 
-#: mod/wallmessage.php:144 mod/message.php:342 mod/message.php:536
-msgid "To:"
-msgstr "An:"
+#: mod/install.php:469
+msgid ""
+"Function mcrypt_create_iv() is not defined. This is needed to enable RINO2 "
+"encryption layer."
+msgstr "Die Funktion mcrypt_create_iv() ist nicht festgelegt. Dies ist notwendig um den RINO2-Encryption-Layer zu aktivieren."
 
-#: mod/wallmessage.php:145 mod/message.php:347 mod/message.php:538
-msgid "Subject:"
-msgstr "Betreff:"
+#: mod/install.php:471
+msgid "mcrypt_create_iv() function"
+msgstr "mcrypt_create_iv() function"
 
-#: mod/share.php:38
-msgid "link"
-msgstr "Link"
+#: mod/install.php:479
+msgid "Error, XML PHP module required but not installed."
+msgstr "Fehler: XML PHP Modul erforderlich aber nicht installiert."
 
-#: mod/api.php:76 mod/api.php:102
-msgid "Authorize application connection"
-msgstr "Verbindung der Applikation autorisieren"
+#: mod/install.php:494
+msgid ""
+"The web installer needs to be able to create a file called \".htconfig.php\""
+" in the top folder of your web server and it is unable to do so."
+msgstr "Der Installationswizard muss in der Lage sein, eine Datei im Stammverzeichnis Deines Webservers anzulegen, ist allerdings derzeit nicht in der Lage, dies zu tun."
 
-#: mod/api.php:77
-msgid "Return to your app and insert this Securty Code:"
-msgstr "Gehe zu Deiner Anwendung zurück und trage dort folgenden Sicherheitscode ein:"
+#: mod/install.php:495
+msgid ""
+"This is most often a permission setting, as the web server may not be able "
+"to write files in your folder - even if you can."
+msgstr "In den meisten Fällen ist dies ein Problem mit den Schreibrechten. Der Webserver könnte keine Schreiberlaubnis haben, selbst wenn Du sie hast."
 
-#: mod/api.php:89
-msgid "Please login to continue."
-msgstr "Bitte melde Dich an um fortzufahren."
+#: mod/install.php:496
+msgid ""
+"At the end of this procedure, we will give you a text to save in a file "
+"named .htconfig.php in your Friendica top folder."
+msgstr "Nachdem Du alles ausgefüllt hast, erhältst Du einen Text, den Du in eine Datei namens .htconfig.php in Deinem Friendica-Wurzelverzeichnis kopieren musst."
 
-#: mod/api.php:104
+#: mod/install.php:497
 msgid ""
-"Do you want to authorize this application to access your posts and contacts,"
-" and/or create new posts for you?"
-msgstr "Möchtest Du dieser Anwendung den Zugriff auf Deine Beiträge und Kontakte, sowie das Erstellen neuer Beiträge in Deinem Namen gestatten?"
+"You can alternatively skip this procedure and perform a manual installation."
+" Please see the file \"INSTALL.txt\" for instructions."
+msgstr "Alternativ kannst Du diesen Schritt aber auch überspringen und die Installation manuell durchführen. Eine Anleitung dazu (Englisch) findest Du in der Datei INSTALL.txt."
 
-#: mod/babel.php:17
-msgid "Source (bbcode) text:"
-msgstr "Quelle (bbcode) Text:"
+#: mod/install.php:500
+msgid ".htconfig.php is writable"
+msgstr "Schreibrechte auf .htconfig.php"
 
-#: mod/babel.php:23
-msgid "Source (Diaspora) text to convert to BBcode:"
-msgstr "Eingabe (Diaspora) nach BBCode zu konvertierender Text:"
+#: mod/install.php:510
+msgid ""
+"Friendica uses the Smarty3 template engine to render its web views. Smarty3 "
+"compiles templates to PHP to speed up rendering."
+msgstr "Friendica nutzt die Smarty3 Template Engine um die Webansichten zu rendern. Smarty3 kompiliert Templates zu PHP um das Rendern zu beschleunigen."
 
-#: mod/babel.php:31
-msgid "Source input: "
-msgstr "Originaltext:"
+#: mod/install.php:511
+msgid ""
+"In order to store these compiled templates, the web server needs to have "
+"write access to the directory view/smarty3/ under the Friendica top level "
+"folder."
+msgstr "Um diese kompilierten Templates zu speichern benötigt der Webserver Schreibrechte zum Verzeichnis view/smarty3/ im obersten Ordner von Friendica."
 
-#: mod/babel.php:35
-msgid "bb2html (raw HTML): "
-msgstr "bb2html (reines HTML): "
+#: mod/install.php:512
+msgid ""
+"Please ensure that the user that your web server runs as (e.g. www-data) has"
+" write access to this folder."
+msgstr "Bitte stelle sicher, dass der Nutzer unter dem der Webserver läuft (z.B. www-data) Schreibrechte zu diesem Verzeichnis hat."
 
-#: mod/babel.php:39
-msgid "bb2html: "
-msgstr "bb2html: "
+#: mod/install.php:513
+msgid ""
+"Note: as a security measure, you should give the web server write access to "
+"view/smarty3/ only--not the template files (.tpl) that it contains."
+msgstr "Hinweis: aus Sicherheitsgründen solltest Du dem Webserver nur Schreibrechte für view/smarty3/ geben -- Nicht den Templatedateien (.tpl) die sie enthalten."
 
-#: mod/babel.php:43
-msgid "bb2html2bb: "
-msgstr "bb2html2bb: "
+#: mod/install.php:516
+msgid "view/smarty3 is writable"
+msgstr "view/smarty3 ist schreibbar"
+
+#: mod/install.php:532
+msgid ""
+"Url rewrite in .htaccess is not working. Check your server configuration."
+msgstr "Umschreiben der URLs in der .htaccess funktioniert nicht. Überprüfe die Konfiguration des Servers."
 
-#: mod/babel.php:47
-msgid "bb2md: "
-msgstr "bb2md: "
+#: mod/install.php:534
+msgid "Url rewrite is working"
+msgstr "URL rewrite funktioniert"
 
-#: mod/babel.php:51
-msgid "bb2md2html: "
-msgstr "bb2md2html: "
+#: mod/install.php:552
+msgid "ImageMagick PHP extension is not installed"
+msgstr "ImageMagicx PHP Erweiterung ist nicht installiert."
 
-#: mod/babel.php:55
-msgid "bb2dia2bb: "
-msgstr "bb2dia2bb: "
+#: mod/install.php:555
+msgid "ImageMagick PHP extension is installed"
+msgstr "ImageMagick PHP Erweiterung ist installiert"
 
-#: mod/babel.php:59
-msgid "bb2md2html2bb: "
-msgstr "bb2md2html2bb: "
+#: mod/install.php:557
+msgid "ImageMagick supports GIF"
+msgstr "ImageMagick unterstützt GIF"
 
-#: mod/babel.php:69
-msgid "Source input (Diaspora format): "
-msgstr "Originaltext (Diaspora Format): "
+#: mod/install.php:566
+msgid ""
+"The database configuration file \".htconfig.php\" could not be written. "
+"Please use the enclosed text to create a configuration file in your web "
+"server root."
+msgstr "Die Konfigurationsdatei \".htconfig.php\" konnte nicht angelegt werden. Bitte verwende den angefügten Text, um die Datei im Stammverzeichnis Deiner Friendica-Installation zu erzeugen."
 
-#: mod/babel.php:74
-msgid "diaspora2bb: "
-msgstr "diaspora2bb: "
+#: mod/install.php:605
+msgid "<h1>What next</h1>"
+msgstr "<h1>Wie geht es weiter?</h1>"
+
+#: mod/install.php:606
+msgid ""
+"IMPORTANT: You will need to [manually] setup a scheduled task for the "
+"poller."
+msgstr "WICHTIG: Du musst [manuell] einen Cronjob (o.ä.) für den Poller einrichten."
 
 #: mod/item.php:116
 msgid "Unable to locate original post."
 msgstr "Konnte den Originalbeitrag nicht finden."
 
-#: mod/item.php:340
+#: mod/item.php:341
 msgid "Empty post discarded."
 msgstr "Leerer Beitrag wurde verworfen."
 
-#: mod/item.php:898
+#: mod/item.php:902
 msgid "System error. Post not saved."
 msgstr "Systemfehler. Beitrag konnte nicht gespeichert werden."
 
-#: mod/item.php:988
+#: mod/item.php:992
 #, php-format
 msgid ""
 "This message was sent to you by %s, a member of the Friendica social "
 "network."
 msgstr "Diese Nachricht wurde dir von %s geschickt, einem Mitglied des Sozialen Netzwerks Friendica."
 
-#: mod/item.php:990
+#: mod/item.php:994
 #, php-format
 msgid "You may visit them online at %s"
 msgstr "Du kannst sie online unter %s besuchen"
 
-#: mod/item.php:991
+#: mod/item.php:995
 msgid ""
 "Please contact the sender by replying to this post if you do not wish to "
 "receive these messages."
 msgstr "Falls Du diese Beiträge nicht erhalten möchtest, kontaktiere bitte den Autor, indem Du auf diese Nachricht antwortest."
 
-#: mod/item.php:995
+#: mod/item.php:999
 #, php-format
 msgid "%s posted an update."
 msgstr "%s hat ein Update veröffentlicht."
 
-#: mod/ostatus_subscribe.php:14
-msgid "Subscribing to OStatus contacts"
-msgstr "OStatus Kontakten folgen"
-
-#: mod/ostatus_subscribe.php:25
-msgid "No contact provided."
-msgstr "Keine Kontakte gefunden."
-
-#: mod/ostatus_subscribe.php:30
-msgid "Couldn't fetch information for contact."
-msgstr "Konnte die Kontaktinformationen nicht einholen."
-
-#: mod/ostatus_subscribe.php:38
-msgid "Couldn't fetch friends for contact."
-msgstr "Konnte die Kontaktliste des Kontakts nicht abfragen."
-
-#: mod/ostatus_subscribe.php:65
-msgid "success"
-msgstr "Erfolg"
-
-#: mod/ostatus_subscribe.php:67
-msgid "failed"
-msgstr "Fehlgeschlagen"
-
-#: mod/dfrn_poll.php:104 mod/dfrn_poll.php:537
+#: mod/network.php:398
 #, php-format
-msgid "%1$s welcomes %2$s"
-msgstr "%1$s heißt %2$s herzlich willkommen"
-
-#: mod/profile.php:179
-msgid "Tips for New Members"
-msgstr "Tipps für neue Nutzer"
+msgid ""
+"Warning: This group contains %s member from a network that doesn't allow non"
+" public messages."
+msgid_plural ""
+"Warning: This group contains %s members from a network that doesn't allow "
+"non public messages."
+msgstr[0] "Warnung: Diese Gruppe beinhaltet %s Person aus einem Netzwerk das keine nicht öffentlichen Beiträge empfangen kann."
+msgstr[1] "Warnung: Diese Gruppe beinhaltet %s Personen aus Netzwerken die keine nicht-öffentlichen Beiträge empfangen können."
 
-#: mod/message.php:75
-msgid "Unable to locate contact information."
-msgstr "Konnte die Kontaktinformationen nicht finden."
+#: mod/network.php:401
+msgid "Messages in this group won't be send to these receivers."
+msgstr "Beiträge in dieser Gruppe werden deshalb nicht an diese Personen zugestellt werden."
 
-#: mod/message.php:215
-msgid "Do you really want to delete this message?"
-msgstr "Möchtest Du wirklich diese Nachricht löschen?"
+#: mod/network.php:529
+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/message.php:235
-msgid "Message deleted."
-msgstr "Nachricht gelöscht."
+#: mod/network.php:534
+msgid "Invalid contact."
+msgstr "Ungültiger Kontakt."
 
-#: mod/message.php:266
-msgid "Conversation removed."
-msgstr "Unterhaltung gelöscht."
+#: mod/network.php:826
+msgid "Commented Order"
+msgstr "Neueste Kommentare"
 
-#: mod/message.php:383
-msgid "No messages."
-msgstr "Keine Nachrichten."
+#: mod/network.php:829
+msgid "Sort by Comment Date"
+msgstr "Nach Kommentardatum sortieren"
 
-#: mod/message.php:426
-msgid "Message not available."
-msgstr "Nachricht nicht verfügbar."
+#: mod/network.php:834
+msgid "Posted Order"
+msgstr "Neueste Beiträge"
 
-#: mod/message.php:503
-msgid "Delete message"
-msgstr "Nachricht löschen"
+#: mod/network.php:837
+msgid "Sort by Post Date"
+msgstr "Nach Beitragsdatum sortieren"
 
-#: mod/message.php:529 mod/message.php:609
-msgid "Delete conversation"
-msgstr "Unterhaltung löschen"
+#: mod/network.php:848
+msgid "Posts that mention or involve you"
+msgstr "Beiträge, in denen es um Dich geht"
 
-#: mod/message.php:531
-msgid ""
-"No secure communications available. You <strong>may</strong> be able to "
-"respond from the sender's profile page."
-msgstr "Sichere Kommunikation ist nicht verfügbar. <strong>Eventuell</strong> kannst Du auf der Profilseite des Absenders antworten."
+#: mod/network.php:856
+msgid "New"
+msgstr "Neue"
 
-#: mod/message.php:535
-msgid "Send Reply"
-msgstr "Antwort senden"
+#: mod/network.php:859
+msgid "Activity Stream - by date"
+msgstr "Aktivitäten-Stream - nach Datum"
 
-#: mod/message.php:579
-#, php-format
-msgid "Unknown sender - %s"
-msgstr "'Unbekannter Absender - %s"
+#: mod/network.php:867
+msgid "Shared Links"
+msgstr "Geteilte Links"
 
-#: mod/message.php:581
-#, php-format
-msgid "You and %s"
-msgstr "Du und %s"
+#: mod/network.php:870
+msgid "Interesting Links"
+msgstr "Interessante Links"
 
-#: mod/message.php:583
-#, php-format
-msgid "%s and You"
-msgstr "%s und Du"
+#: mod/network.php:878
+msgid "Starred"
+msgstr "Markierte"
 
-#: mod/message.php:612
-msgid "D, d M Y - g:i A"
-msgstr "D, d. M Y - g:i A"
+#: mod/network.php:881
+msgid "Favourite Posts"
+msgstr "Favorisierte Beiträge"
 
-#: mod/message.php:615
-#, php-format
-msgid "%d message"
-msgid_plural "%d messages"
-msgstr[0] "%d Nachricht"
-msgstr[1] "%d Nachrichten"
+#: mod/ping.php:261
+msgid "{0} wants to be your friend"
+msgstr "{0} möchte mit Dir in Kontakt treten"
 
-#: mod/manage.php:139
-msgid "Manage Identities and/or Pages"
-msgstr "Verwalte Identitäten und/oder Seiten"
+#: mod/ping.php:276
+msgid "{0} sent you a message"
+msgstr "{0} schickte Dir eine Nachricht"
 
-#: mod/manage.php:140
-msgid ""
-"Toggle between different identities or community/group pages which share "
-"your account details or which you have been granted \"manage\" permissions"
-msgstr "Zwischen verschiedenen Identitäten oder Gemeinschafts-/Gruppenseiten wechseln, die Deine Kontoinformationen teilen oder zu denen Du „Verwalten“-Befugnisse bekommen hast."
+#: mod/ping.php:291
+msgid "{0} requested registration"
+msgstr "{0} möchte sich registrieren"
 
-#: mod/manage.php:141
-msgid "Select an identity to manage: "
-msgstr "Wähle eine Identität zum Verwalten aus: "
+#: mod/viewcontacts.php:72
+msgid "No contacts."
+msgstr "Keine Kontakte."
 
 #: object/Item.php:370
 msgid "via"
@@ -8767,14 +8733,6 @@ msgstr "Größe anpassen - Optimale Größe"
 msgid "Resize to best fit and retain aspect ratio."
 msgstr "Größe anpassen - Optimale Größe und Seitenverhältnisse beibehalten"
 
-#: view/theme/frio/theme.php:229
-msgid "Guest"
-msgstr "Gast"
-
-#: view/theme/frio/theme.php:235
-msgid "Visitor"
-msgstr "Besucher"
-
 #: view/theme/frio/config.php:42
 msgid "Default"
 msgstr "Standard"
@@ -8815,6 +8773,14 @@ msgstr "Transparanz des Hintergrunds von Beiträgem"
 msgid "Set the background image"
 msgstr "Hintergrundbild festlegen"
 
+#: view/theme/frio/theme.php:229
+msgid "Guest"
+msgstr "Gast"
+
+#: view/theme/frio/theme.php:235
+msgid "Visitor"
+msgstr "Besucher"
+
 #: view/theme/quattro/config.php:67
 msgid "Alignment"
 msgstr "Ausrichtung"
@@ -8906,3 +8872,56 @@ msgstr "slackr"
 #: view/theme/duepuntozero/config.php:62
 msgid "Variations"
 msgstr "Variationen"
+
+#: boot.php:970
+msgid "Delete this item?"
+msgstr "Diesen Beitrag löschen?"
+
+#: boot.php:973
+msgid "show fewer"
+msgstr "weniger anzeigen"
+
+#: boot.php:1655
+#, php-format
+msgid "Update %s failed. See error logs."
+msgstr "Update %s fehlgeschlagen. Bitte Fehlerprotokoll überprüfen."
+
+#: boot.php:1767
+msgid "Create a New Account"
+msgstr "Neues Konto erstellen"
+
+#: boot.php:1796
+msgid "Password: "
+msgstr "Passwort: "
+
+#: boot.php:1797
+msgid "Remember me"
+msgstr "Anmeldedaten merken"
+
+#: boot.php:1800
+msgid "Or login using OpenID: "
+msgstr "Oder melde Dich mit Deiner OpenID an: "
+
+#: boot.php:1806
+msgid "Forgot your password?"
+msgstr "Passwort vergessen?"
+
+#: boot.php:1809
+msgid "Website Terms of Service"
+msgstr "Website Nutzungsbedingungen"
+
+#: boot.php:1810
+msgid "terms of service"
+msgstr "Nutzungsbedingungen"
+
+#: boot.php:1812
+msgid "Website Privacy Policy"
+msgstr "Website Datenschutzerklärung"
+
+#: boot.php:1813
+msgid "privacy policy"
+msgstr "Datenschutzerklärung"
+
+#: index.php:451
+msgid "toggle mobile"
+msgstr "auf/von Mobile Ansicht wechseln"
index db6e02d0a402d1834bcac79f4a0deed9d3025478..67af0eb7efd9bc76856a6314a95f64f9da34facf 100644 (file)
@@ -5,48 +5,6 @@ function string_plural_select_de($n){
        return ($n != 1);;
 }}
 ;
-$a->strings["Delete this item?"] = "Diesen Beitrag löschen?";
-$a->strings["Comment"] = "Kommentar";
-$a->strings["show more"] = "mehr anzeigen";
-$a->strings["show fewer"] = "weniger anzeigen";
-$a->strings["Update %s failed. See error logs."] = "Update %s fehlgeschlagen. Bitte Fehlerprotokoll überprüfen.";
-$a->strings["Create a New Account"] = "Neues Konto erstellen";
-$a->strings["Register"] = "Registrieren";
-$a->strings["Logout"] = "Abmelden";
-$a->strings["Login"] = "Anmeldung";
-$a->strings["Nickname or Email: "] = "Spitzname oder E-Mail:";
-$a->strings["Password: "] = "Passwort: ";
-$a->strings["Remember me"] = "Anmeldedaten merken";
-$a->strings["Or login using OpenID: "] = "Oder melde Dich mit Deiner OpenID an: ";
-$a->strings["Forgot your password?"] = "Passwort vergessen?";
-$a->strings["Password Reset"] = "Passwort zurücksetzen";
-$a->strings["Website Terms of Service"] = "Website Nutzungsbedingungen";
-$a->strings["terms of service"] = "Nutzungsbedingungen";
-$a->strings["Website Privacy Policy"] = "Website Datenschutzerklärung";
-$a->strings["privacy policy"] = "Datenschutzerklärung";
-$a->strings["Miscellaneous"] = "Verschiedenes";
-$a->strings["Birthday:"] = "Geburtstag:";
-$a->strings["Age: "] = "Alter: ";
-$a->strings["YYYY-MM-DD or MM-DD"] = "YYYY-MM-DD oder MM-DD";
-$a->strings["never"] = "nie";
-$a->strings["less than a second ago"] = "vor weniger als einer Sekunde";
-$a->strings["year"] = "Jahr";
-$a->strings["years"] = "Jahre";
-$a->strings["month"] = "Monat";
-$a->strings["months"] = "Monate";
-$a->strings["week"] = "Woche";
-$a->strings["weeks"] = "Wochen";
-$a->strings["day"] = "Tag";
-$a->strings["days"] = "Tage";
-$a->strings["hour"] = "Stunde";
-$a->strings["hours"] = "Stunden";
-$a->strings["minute"] = "Minute";
-$a->strings["minutes"] = "Minuten";
-$a->strings["second"] = "Sekunde";
-$a->strings["seconds"] = "Sekunden";
-$a->strings["%1\$d %2\$s ago"] = "%1\$d %2\$s her";
-$a->strings["%s's birthday"] = "%ss Geburtstag";
-$a->strings["Happy Birthday %s"] = "Herzlichen Glückwunsch %s";
 $a->strings["Add New Contact"] = "Neuen Kontakt hinzufügen";
 $a->strings["Enter address or web location"] = "Adresse oder Web-Link eingeben";
 $a->strings["Example: bob@example.com, http://example.com/barbara"] = "Beispiel: bob@example.com, http://example.com/barbara";
@@ -73,22 +31,172 @@ $a->strings["%d contact in common"] = array(
        0 => "%d gemeinsamer Kontakt",
        1 => "%d gemeinsame Kontakte",
 );
-$a->strings["System"] = "System";
-$a->strings["Network"] = "Netzwerk";
-$a->strings["Personal"] = "Persönlich";
-$a->strings["Home"] = "Pinnwand";
-$a->strings["Introductions"] = "Kontaktanfragen";
-$a->strings["%s commented on %s's post"] = "%s hat %ss Beitrag kommentiert";
-$a->strings["%s created a new post"] = "%s hat einen neuen Beitrag erstellt";
-$a->strings["%s liked %s's post"] = "%s mag %ss Beitrag";
-$a->strings["%s disliked %s's post"] = "%s mag %ss Beitrag nicht";
-$a->strings["%s is attending %s's event"] = "%s nimmt an %s's Event teil";
-$a->strings["%s is not attending %s's event"] = "%s nimmt nicht an %s's Event teil";
-$a->strings["%s may attend %s's event"] = "%s nimmt eventuell an %s's Event teil";
-$a->strings["%s is now friends with %s"] = "%s ist jetzt mit %s befreundet";
-$a->strings["Friend Suggestion"] = "Kontaktvorschlag";
-$a->strings["Friend/Connect Request"] = "Kontakt-/Freundschaftsanfrage";
-$a->strings["New Follower"] = "Neuer Bewunderer";
+$a->strings["show more"] = "mehr anzeigen";
+$a->strings["Forums"] = "Foren";
+$a->strings["External link to forum"] = "Externer Link zum Forum";
+$a->strings["Male"] = "Männlich";
+$a->strings["Female"] = "Weiblich";
+$a->strings["Currently Male"] = "Momentan männlich";
+$a->strings["Currently Female"] = "Momentan weiblich";
+$a->strings["Mostly Male"] = "Hauptsächlich männlich";
+$a->strings["Mostly Female"] = "Hauptsächlich weiblich";
+$a->strings["Transgender"] = "Transgender";
+$a->strings["Intersex"] = "Intersex";
+$a->strings["Transsexual"] = "Transsexuell";
+$a->strings["Hermaphrodite"] = "Hermaphrodit";
+$a->strings["Neuter"] = "Neuter";
+$a->strings["Non-specific"] = "Nicht spezifiziert";
+$a->strings["Other"] = "Andere";
+$a->strings["Undecided"] = array(
+       0 => "Unentschieden",
+       1 => "Unentschieden",
+);
+$a->strings["Males"] = "Männer";
+$a->strings["Females"] = "Frauen";
+$a->strings["Gay"] = "Schwul";
+$a->strings["Lesbian"] = "Lesbisch";
+$a->strings["No Preference"] = "Keine Vorlieben";
+$a->strings["Bisexual"] = "Bisexuell";
+$a->strings["Autosexual"] = "Autosexual";
+$a->strings["Abstinent"] = "Abstinent";
+$a->strings["Virgin"] = "Jungfrauen";
+$a->strings["Deviant"] = "Deviant";
+$a->strings["Fetish"] = "Fetish";
+$a->strings["Oodles"] = "Oodles";
+$a->strings["Nonsexual"] = "Nonsexual";
+$a->strings["Single"] = "Single";
+$a->strings["Lonely"] = "Einsam";
+$a->strings["Available"] = "Verfügbar";
+$a->strings["Unavailable"] = "Nicht verfügbar";
+$a->strings["Has crush"] = "verknallt";
+$a->strings["Infatuated"] = "verliebt";
+$a->strings["Dating"] = "Dating";
+$a->strings["Unfaithful"] = "Untreu";
+$a->strings["Sex Addict"] = "Sexbesessen";
+$a->strings["Friends"] = "Kontakte";
+$a->strings["Friends/Benefits"] = "Freunde/Zuwendungen";
+$a->strings["Casual"] = "Casual";
+$a->strings["Engaged"] = "Verlobt";
+$a->strings["Married"] = "Verheiratet";
+$a->strings["Imaginarily married"] = "imaginär verheiratet";
+$a->strings["Partners"] = "Partner";
+$a->strings["Cohabiting"] = "zusammenlebend";
+$a->strings["Common law"] = "wilde Ehe";
+$a->strings["Happy"] = "Glücklich";
+$a->strings["Not looking"] = "Nicht auf der Suche";
+$a->strings["Swinger"] = "Swinger";
+$a->strings["Betrayed"] = "Betrogen";
+$a->strings["Separated"] = "Getrennt";
+$a->strings["Unstable"] = "Unstabil";
+$a->strings["Divorced"] = "Geschieden";
+$a->strings["Imaginarily divorced"] = "imaginär geschieden";
+$a->strings["Widowed"] = "Verwitwet";
+$a->strings["Uncertain"] = "Unsicher";
+$a->strings["It's complicated"] = "Ist kompliziert";
+$a->strings["Don't care"] = "Ist mir nicht wichtig";
+$a->strings["Ask me"] = "Frag mich";
+$a->strings["Cannot locate DNS info for database server '%s'"] = "Kann die DNS Informationen für den Datenbankserver '%s' nicht ermitteln.";
+$a->strings["Logged out."] = "Abgemeldet.";
+$a->strings["Login failed."] = "Anmeldung fehlgeschlagen.";
+$a->strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "Beim Versuch Dich mit der von Dir angegebenen OpenID anzumelden trat ein Problem auf. Bitte überprüfe, dass Du die OpenID richtig geschrieben hast.";
+$a->strings["The error message was:"] = "Die Fehlermeldung lautete:";
+$a->strings["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."] = "Eine gelöschte Gruppe mit diesem Namen wurde wiederbelebt. Bestehende Berechtigungseinstellungen <strong>könnten</strong> auf diese Gruppe oder zukünftige Mitglieder angewandt werden. Falls Du dies nicht möchtest, erstelle bitte eine andere Gruppe mit einem anderen Namen.";
+$a->strings["Default privacy group for new contacts"] = "Voreingestellte Gruppe für neue Kontakte";
+$a->strings["Everybody"] = "Alle Kontakte";
+$a->strings["edit"] = "bearbeiten";
+$a->strings["Groups"] = "Gruppen";
+$a->strings["Edit groups"] = "Gruppen bearbeiten";
+$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["Unknown | Not categorised"] = "Unbekannt | Nicht kategorisiert";
+$a->strings["Block immediately"] = "Sofort blockieren";
+$a->strings["Shady, spammer, self-marketer"] = "Zwielichtig, Spammer, Selbstdarsteller";
+$a->strings["Known to me, but no opinion"] = "Ist mir bekannt, hab aber keine Meinung";
+$a->strings["OK, probably harmless"] = "OK, wahrscheinlich harmlos";
+$a->strings["Reputable, has my trust"] = "Seriös, hat mein Vertrauen";
+$a->strings["Frequently"] = "immer wieder";
+$a->strings["Hourly"] = "Stündlich";
+$a->strings["Twice daily"] = "Zweimal täglich";
+$a->strings["Daily"] = "Täglich";
+$a->strings["Weekly"] = "Wöchentlich";
+$a->strings["Monthly"] = "Monatlich";
+$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!"] = "Zott";
+$a->strings["LinkedIn"] = "LinkedIn";
+$a->strings["XMPP/IM"] = "XMPP/Chat";
+$a->strings["MySpace"] = "MySpace";
+$a->strings["Google+"] = "Google+";
+$a->strings["pump.io"] = "pump.io";
+$a->strings["Twitter"] = "Twitter";
+$a->strings["Diaspora Connector"] = "Diaspora";
+$a->strings["GNU Social"] = "GNU Social";
+$a->strings["App.net"] = "App.net";
+$a->strings["Hubzilla/Redmatrix"] = "Hubzilla/Redmatrix";
+$a->strings["Post to Email"] = "An E-Mail senden";
+$a->strings["Connectors disabled, since \"%s\" is enabled."] = "Konnektoren sind nicht verfügbar, da \"%s\" aktiv ist.";
+$a->strings["Hide your profile details from unknown viewers?"] = "Profil-Details vor unbekannten Betrachtern verbergen?";
+$a->strings["Visible to everybody"] = "Für jeden sichtbar";
+$a->strings["show"] = "zeigen";
+$a->strings["don't show"] = "nicht zeigen";
+$a->strings["CC: email addresses"] = "Cc: E-Mail-Addressen";
+$a->strings["Example: bob@example.com, mary@example.com"] = "Z.B.: bob@example.com, mary@example.com";
+$a->strings["Permissions"] = "Berechtigungen";
+$a->strings["Close"] = "Schließen";
+$a->strings["photo"] = "Foto";
+$a->strings["status"] = "Status";
+$a->strings["event"] = "Event";
+$a->strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s mag %2\$ss %3\$s";
+$a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s mag %2\$ss %3\$s nicht";
+$a->strings["%1\$s is attending %2\$s's %3\$s"] = "%1\$s nimmt an %2\$ss %3\$s teil.";
+$a->strings["%1\$s is not attending %2\$s's %3\$s"] = "%1\$s nimmt nicht an %2\$ss %3\$s teil.";
+$a->strings["%1\$s may attend %2\$s's %3\$s"] = "%1\$s nimmt eventuell an %2\$ss %3\$s teil.";
+$a->strings["[no subject]"] = "[kein Betreff]";
+$a->strings["Wall Photos"] = "Pinnwand-Bilder";
+$a->strings["Click here to upgrade."] = "Zum Upgraden hier klicken.";
+$a->strings["This action exceeds the limits set by your subscription plan."] = "Diese Aktion überschreitet die Obergrenze Deines Abonnements.";
+$a->strings["This action is not available under your subscription plan."] = "Diese Aktion ist in Deinem Abonnement nicht verfügbar.";
+$a->strings["Error decoding account file"] = "Fehler beim Verarbeiten der Account Datei";
+$a->strings["Error! No version data in file! This is not a Friendica account file?"] = "Fehler! Keine Versionsdaten in der Datei! Ist das wirklich eine Friendica Account Datei?";
+$a->strings["Error! Cannot check nickname"] = "Fehler! Konnte den Nickname nicht überprüfen.";
+$a->strings["User '%s' already exists on this server!"] = "Nutzer '%s' existiert bereits auf diesem Server!";
+$a->strings["User creation error"] = "Fehler beim Anlegen des Nutzeraccounts aufgetreten";
+$a->strings["User profile creation error"] = "Fehler beim Anlegen des Nutzerkontos";
+$a->strings["%d contact not imported"] = array(
+       0 => "%d Kontakt nicht importiert",
+       1 => "%d Kontakte nicht importiert",
+);
+$a->strings["Done. You can now login with your username and password"] = "Erledigt. Du kannst Dich jetzt mit Deinem Nutzernamen und Passwort anmelden";
+$a->strings["Miscellaneous"] = "Verschiedenes";
+$a->strings["Birthday:"] = "Geburtstag:";
+$a->strings["Age: "] = "Alter: ";
+$a->strings["YYYY-MM-DD or MM-DD"] = "YYYY-MM-DD oder MM-DD";
+$a->strings["never"] = "nie";
+$a->strings["less than a second ago"] = "vor weniger als einer Sekunde";
+$a->strings["year"] = "Jahr";
+$a->strings["years"] = "Jahre";
+$a->strings["month"] = "Monat";
+$a->strings["months"] = "Monate";
+$a->strings["week"] = "Woche";
+$a->strings["weeks"] = "Wochen";
+$a->strings["day"] = "Tag";
+$a->strings["days"] = "Tage";
+$a->strings["hour"] = "Stunde";
+$a->strings["hours"] = "Stunden";
+$a->strings["minute"] = "Minute";
+$a->strings["minutes"] = "Minuten";
+$a->strings["second"] = "Sekunde";
+$a->strings["seconds"] = "Sekunden";
+$a->strings["%1\$d %2\$s ago"] = "%1\$d %2\$s her";
+$a->strings["%s's birthday"] = "%ss Geburtstag";
+$a->strings["Happy Birthday %s"] = "Herzlichen Glückwunsch %s";
 $a->strings["Friendica Notification"] = "Friendica-Benachrichtigung";
 $a->strings["Thank You,"] = "Danke,";
 $a->strings["%s Administrator"] = "der Administrator von %s";
@@ -149,28 +257,6 @@ $a->strings["You've received a registration request from '%1\$s' at %2\$s"] = "D
 $a->strings["You've received a [url=%1\$s]registration request[/url] from %2\$s."] = "Du hast eine [url=%1\$s]Registrierungsanfrage[/url] von %2\$s erhalten.";
 $a->strings["Full Name:\t%1\$s\\nSite Location:\t%2\$s\\nLogin Name:\t%3\$s (%4\$s)"] = "Kompletter Name:\t%1\$s\\nURL der Seite:\t%2\$s\\nLogin Name:\t%3\$s (%4\$s)";
 $a->strings["Please visit %s to approve or reject the request."] = "Bitte besuche %s um die Anfrage zu bearbeiten.";
-$a->strings["Click here to upgrade."] = "Zum Upgraden hier klicken.";
-$a->strings["This action exceeds the limits set by your subscription plan."] = "Diese Aktion überschreitet die Obergrenze Deines Abonnements.";
-$a->strings["This action is not available under your subscription plan."] = "Diese Aktion ist in Deinem Abonnement nicht verfügbar.";
-$a->strings["Forums"] = "Foren";
-$a->strings["External link to forum"] = "Externer Link zum Forum";
-$a->strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s mag %2\$ss %3\$s";
-$a->strings["status"] = "Status";
-$a->strings["Sharing notification from Diaspora network"] = "Freigabe-Benachrichtigung von Diaspora";
-$a->strings["Attachments:"] = "Anhänge:";
-$a->strings["%s\\'s birthday"] = "%ss Geburtstag";
-$a->strings["Error decoding account file"] = "Fehler beim Verarbeiten der Account Datei";
-$a->strings["Error! No version data in file! This is not a Friendica account file?"] = "Fehler! Keine Versionsdaten in der Datei! Ist das wirklich eine Friendica Account Datei?";
-$a->strings["Error! Cannot check nickname"] = "Fehler! Konnte den Nickname nicht überprüfen.";
-$a->strings["User '%s' already exists on this server!"] = "Nutzer '%s' existiert bereits auf diesem Server!";
-$a->strings["User creation error"] = "Fehler beim Anlegen des Nutzeraccounts aufgetreten";
-$a->strings["User profile creation error"] = "Fehler beim Anlegen des Nutzerkontos";
-$a->strings["%d contact not imported"] = array(
-       0 => "%d Kontakt nicht importiert",
-       1 => "%d Kontakte nicht importiert",
-);
-$a->strings["Done. You can now login with your username and password"] = "Erledigt. Du kannst Dich jetzt mit Deinem Nutzernamen und Passwort anmelden";
-$a->strings["Cannot locate DNS info for database server '%s'"] = "Kann die DNS Informationen für den Datenbankserver '%s' nicht ermitteln.";
 $a->strings["l F d, Y \\@ g:i A"] = "l, d. F Y\\, H:i";
 $a->strings["Starts:"] = "Beginnt:";
 $a->strings["Finishes:"] = "Endet:";
@@ -221,145 +307,120 @@ $a->strings["link to source"] = "Link zum Originalbeitrag";
 $a->strings["Export"] = "Exportieren";
 $a->strings["Export calendar as ical"] = "Kalender als ical exportieren";
 $a->strings["Export calendar as csv"] = "Kalender als csv exportieren";
-$a->strings["Welcome "] = "Willkommen ";
-$a->strings["Please upload a profile photo."] = "Bitte lade ein Profilbild hoch.";
-$a->strings["Welcome back "] = "Willkommen zurück ";
-$a->strings["The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it."] = "Das Sicherheitsmerkmal war nicht korrekt. Das passiert meistens wenn das Formular vor dem Absenden zu lange geöffnet war (länger als 3 Stunden).";
-$a->strings["Male"] = "Männlich";
-$a->strings["Female"] = "Weiblich";
-$a->strings["Currently Male"] = "Momentan männlich";
-$a->strings["Currently Female"] = "Momentan weiblich";
-$a->strings["Mostly Male"] = "Hauptsächlich männlich";
-$a->strings["Mostly Female"] = "Hauptsächlich weiblich";
-$a->strings["Transgender"] = "Transgender";
-$a->strings["Intersex"] = "Intersex";
-$a->strings["Transsexual"] = "Transsexuell";
-$a->strings["Hermaphrodite"] = "Hermaphrodit";
-$a->strings["Neuter"] = "Neuter";
-$a->strings["Non-specific"] = "Nicht spezifiziert";
-$a->strings["Other"] = "Andere";
-$a->strings["Undecided"] = array(
-       0 => "Unentschieden",
-       1 => "Unentschieden",
-);
-$a->strings["Males"] = "Männer";
-$a->strings["Females"] = "Frauen";
-$a->strings["Gay"] = "Schwul";
-$a->strings["Lesbian"] = "Lesbisch";
-$a->strings["No Preference"] = "Keine Vorlieben";
-$a->strings["Bisexual"] = "Bisexuell";
-$a->strings["Autosexual"] = "Autosexual";
-$a->strings["Abstinent"] = "Abstinent";
-$a->strings["Virgin"] = "Jungfrauen";
-$a->strings["Deviant"] = "Deviant";
-$a->strings["Fetish"] = "Fetish";
-$a->strings["Oodles"] = "Oodles";
-$a->strings["Nonsexual"] = "Nonsexual";
-$a->strings["Single"] = "Single";
-$a->strings["Lonely"] = "Einsam";
-$a->strings["Available"] = "Verfügbar";
-$a->strings["Unavailable"] = "Nicht verfügbar";
-$a->strings["Has crush"] = "verknallt";
-$a->strings["Infatuated"] = "verliebt";
-$a->strings["Dating"] = "Dating";
-$a->strings["Unfaithful"] = "Untreu";
-$a->strings["Sex Addict"] = "Sexbesessen";
-$a->strings["Friends"] = "Kontakte";
-$a->strings["Friends/Benefits"] = "Freunde/Zuwendungen";
-$a->strings["Casual"] = "Casual";
-$a->strings["Engaged"] = "Verlobt";
-$a->strings["Married"] = "Verheiratet";
-$a->strings["Imaginarily married"] = "imaginär verheiratet";
-$a->strings["Partners"] = "Partner";
-$a->strings["Cohabiting"] = "zusammenlebend";
-$a->strings["Common law"] = "wilde Ehe";
-$a->strings["Happy"] = "Glücklich";
-$a->strings["Not looking"] = "Nicht auf der Suche";
-$a->strings["Swinger"] = "Swinger";
-$a->strings["Betrayed"] = "Betrogen";
-$a->strings["Separated"] = "Getrennt";
-$a->strings["Unstable"] = "Unstabil";
-$a->strings["Divorced"] = "Geschieden";
-$a->strings["Imaginarily divorced"] = "imaginär geschieden";
-$a->strings["Widowed"] = "Verwitwet";
-$a->strings["Uncertain"] = "Unsicher";
-$a->strings["It's complicated"] = "Ist kompliziert";
-$a->strings["Don't care"] = "Ist mir nicht wichtig";
-$a->strings["Ask me"] = "Frag mich";
-$a->strings["[Name Withheld]"] = "[Name unterdrückt]";
-$a->strings["Item not found."] = "Beitrag nicht gefunden.";
-$a->strings["Do you really want to delete this item?"] = "Möchtest Du wirklich dieses Item löschen?";
-$a->strings["Yes"] = "Ja";
-$a->strings["Cancel"] = "Abbrechen";
-$a->strings["Permission denied."] = "Zugriff verweigert.";
-$a->strings["Archives"] = "Archiv";
-$a->strings["newer"] = "neuer";
-$a->strings["older"] = "älter";
-$a->strings["prev"] = "vorige";
-$a->strings["first"] = "erste";
-$a->strings["last"] = "letzte";
-$a->strings["next"] = "nächste";
-$a->strings["Loading more entries..."] = "lade weitere Einträge...";
-$a->strings["The end"] = "Das Ende";
-$a->strings["No contacts"] = "Keine Kontakte";
-$a->strings["%d Contact"] = array(
-       0 => "%d Kontakt",
-       1 => "%d Kontakte",
-);
-$a->strings["View Contacts"] = "Kontakte anzeigen";
-$a->strings["Search"] = "Suche";
-$a->strings["Save"] = "Speichern";
+$a->strings["Nothing new here"] = "Keine Neuigkeiten";
+$a->strings["Clear notifications"] = "Bereinige Benachrichtigungen";
 $a->strings["@name, !forum, #tags, content"] = "@name, !forum, #tags, content";
+$a->strings["Logout"] = "Abmelden";
+$a->strings["End this session"] = "Diese Sitzung beenden";
+$a->strings["Status"] = "Status";
+$a->strings["Your posts and conversations"] = "Deine Beiträge und Unterhaltungen";
+$a->strings["Profile"] = "Profil";
+$a->strings["Your profile page"] = "Deine Profilseite";
+$a->strings["Photos"] = "Bilder";
+$a->strings["Your photos"] = "Deine Fotos";
+$a->strings["Videos"] = "Videos";
+$a->strings["Your videos"] = "Deine Videos";
+$a->strings["Events"] = "Veranstaltungen";
+$a->strings["Your events"] = "Deine Ereignisse";
+$a->strings["Personal notes"] = "Persönliche Notizen";
+$a->strings["Your personal notes"] = "Deine persönlichen Notizen";
+$a->strings["Login"] = "Anmeldung";
+$a->strings["Sign in"] = "Anmelden";
+$a->strings["Home"] = "Pinnwand";
+$a->strings["Home Page"] = "Homepage";
+$a->strings["Register"] = "Registrieren";
+$a->strings["Create an account"] = "Nutzerkonto erstellen";
+$a->strings["Help"] = "Hilfe";
+$a->strings["Help and documentation"] = "Hilfe und Dokumentation";
+$a->strings["Apps"] = "Apps";
+$a->strings["Addon applications, utilities, games"] = "Addon Anwendungen, Dienstprogramme, Spiele";
+$a->strings["Search"] = "Suche";
+$a->strings["Search site content"] = "Inhalt der Seite durchsuchen";
 $a->strings["Full Text"] = "Volltext";
 $a->strings["Tags"] = "Tags";
 $a->strings["Contacts"] = "Kontakte";
-$a->strings["poke"] = "anstupsen";
-$a->strings["poked"] = "stupste";
-$a->strings["ping"] = "anpingen";
-$a->strings["pinged"] = "pingte";
-$a->strings["prod"] = "knuffen";
-$a->strings["prodded"] = "knuffte";
-$a->strings["slap"] = "ohrfeigen";
-$a->strings["slapped"] = "ohrfeigte";
-$a->strings["finger"] = "befummeln";
-$a->strings["fingered"] = "befummelte";
-$a->strings["rebuff"] = "eine Abfuhr erteilen";
-$a->strings["rebuffed"] = "abfuhrerteilte";
-$a->strings["happy"] = "glücklich";
-$a->strings["sad"] = "traurig";
-$a->strings["mellow"] = "sanft";
-$a->strings["tired"] = "müde";
-$a->strings["perky"] = "frech";
-$a->strings["angry"] = "sauer";
-$a->strings["stupified"] = "verblüfft";
-$a->strings["puzzled"] = "verwirrt";
-$a->strings["interested"] = "interessiert";
-$a->strings["bitter"] = "verbittert";
-$a->strings["cheerful"] = "fröhlich";
-$a->strings["alive"] = "lebendig";
-$a->strings["annoyed"] = "verärgert";
-$a->strings["anxious"] = "unruhig";
-$a->strings["cranky"] = "schrullig";
-$a->strings["disturbed"] = "verstört";
-$a->strings["frustrated"] = "frustriert";
-$a->strings["motivated"] = "motiviert";
-$a->strings["relaxed"] = "entspannt";
-$a->strings["surprised"] = "überrascht";
-$a->strings["View Video"] = "Video ansehen";
-$a->strings["bytes"] = "Byte";
-$a->strings["Click to open/close"] = "Zum öffnen/schließen klicken";
-$a->strings["View on separate page"] = "Auf separater Seite ansehen";
-$a->strings["view on separate page"] = "auf separater Seite ansehen";
-$a->strings["event"] = "Event";
-$a->strings["photo"] = "Foto";
-$a->strings["activity"] = "Aktivität";
-$a->strings["comment"] = array(
-       0 => "Kommentar",
-       1 => "Kommentare",
-);
-$a->strings["post"] = "Beitrag";
-$a->strings["Item filed"] = "Beitrag abgelegt";
-$a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s mag %2\$ss %3\$s nicht";
+$a->strings["Community"] = "Gemeinschaft";
+$a->strings["Conversations on this site"] = "Unterhaltungen auf dieser Seite";
+$a->strings["Conversations on the network"] = "Unterhaltungen im Netzwerk";
+$a->strings["Events and Calendar"] = "Ereignisse und Kalender";
+$a->strings["Directory"] = "Verzeichnis";
+$a->strings["People directory"] = "Nutzerverzeichnis";
+$a->strings["Information"] = "Information";
+$a->strings["Information about this friendica instance"] = "Informationen zu dieser Friendica Instanz";
+$a->strings["Network"] = "Netzwerk";
+$a->strings["Conversations from your friends"] = "Unterhaltungen Deiner Kontakte";
+$a->strings["Network Reset"] = "Netzwerk zurücksetzen";
+$a->strings["Load Network page with no filters"] = "Netzwerk-Seite ohne Filter laden";
+$a->strings["Introductions"] = "Kontaktanfragen";
+$a->strings["Friend Requests"] = "Kontaktanfragen";
+$a->strings["Notifications"] = "Benachrichtigungen";
+$a->strings["See all notifications"] = "Alle Benachrichtigungen anzeigen";
+$a->strings["Mark as seen"] = "Als gelesen markieren";
+$a->strings["Mark all system notifications seen"] = "Markiere alle Systembenachrichtigungen als gelesen";
+$a->strings["Messages"] = "Nachrichten";
+$a->strings["Private mail"] = "Private E-Mail";
+$a->strings["Inbox"] = "Eingang";
+$a->strings["Outbox"] = "Ausgang";
+$a->strings["New Message"] = "Neue Nachricht";
+$a->strings["Manage"] = "Verwalten";
+$a->strings["Manage other pages"] = "Andere Seiten verwalten";
+$a->strings["Delegations"] = "Delegationen";
+$a->strings["Delegate Page Management"] = "Delegiere das Management für die Seite";
+$a->strings["Settings"] = "Einstellungen";
+$a->strings["Account settings"] = "Kontoeinstellungen";
+$a->strings["Profiles"] = "Profile";
+$a->strings["Manage/Edit Profiles"] = "Profile Verwalten/Editieren";
+$a->strings["Manage/edit friends and contacts"] = " Kontakte verwalten/editieren";
+$a->strings["Admin"] = "Administration";
+$a->strings["Site setup and configuration"] = "Einstellungen der Seite und Konfiguration";
+$a->strings["Navigation"] = "Navigation";
+$a->strings["Site map"] = "Sitemap";
+$a->strings["Contact Photos"] = "Kontaktbilder";
+$a->strings["Welcome "] = "Willkommen ";
+$a->strings["Please upload a profile photo."] = "Bitte lade ein Profilbild hoch.";
+$a->strings["Welcome back "] = "Willkommen zurück ";
+$a->strings["The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it."] = "Das Sicherheitsmerkmal war nicht korrekt. Das passiert meistens wenn das Formular vor dem Absenden zu lange geöffnet war (länger als 3 Stunden).";
+$a->strings["System"] = "System";
+$a->strings["Personal"] = "Persönlich";
+$a->strings["%s commented on %s's post"] = "%s hat %ss Beitrag kommentiert";
+$a->strings["%s created a new post"] = "%s hat einen neuen Beitrag erstellt";
+$a->strings["%s liked %s's post"] = "%s mag %ss Beitrag";
+$a->strings["%s disliked %s's post"] = "%s mag %ss Beitrag nicht";
+$a->strings["%s is attending %s's event"] = "%s nimmt an %s's Event teil";
+$a->strings["%s is not attending %s's event"] = "%s nimmt nicht an %s's Event teil";
+$a->strings["%s may attend %s's event"] = "%s nimmt eventuell an %s's Event teil";
+$a->strings["%s is now friends with %s"] = "%s ist jetzt mit %s befreundet";
+$a->strings["Friend Suggestion"] = "Kontaktvorschlag";
+$a->strings["Friend/Connect Request"] = "Kontakt-/Freundschaftsanfrage";
+$a->strings["New Follower"] = "Neuer Bewunderer";
+$a->strings["\n\t\t\tThe friendica developers released update %s recently,\n\t\t\tbut when I tried to install it, something went terribly wrong.\n\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n\t\t\tfriendica developer if you can not help me on your own. My database might be invalid."] = "\nDie Friendica-Entwickler haben vor kurzem das Update %s veröffentlicht, aber bei der Installation ging etwas schrecklich schief.\n\nDas Problem sollte so schnell wie möglich gelöst werden, aber ich schaffe es nicht alleine. Bitte kontaktiere einen Friendica-Entwickler falls Du mir nicht alleine helfen kannst. Meine Datenbank könnte ungültig sein.";
+$a->strings["The error message is\n[pre]%s[/pre]"] = "Die Fehlermeldung lautet\n[pre]%s[/pre]";
+$a->strings["Errors encountered creating database tables."] = "Fehler aufgetreten während der Erzeugung der Datenbanktabellen.";
+$a->strings["Errors encountered performing database changes."] = "Es sind Fehler beim Bearbeiten der Datenbank aufgetreten.";
+$a->strings["(no subject)"] = "(kein Betreff)";
+$a->strings["Sharing notification from Diaspora network"] = "Freigabe-Benachrichtigung von Diaspora";
+$a->strings["Attachments:"] = "Anhänge:";
+$a->strings["view full size"] = "Volle Größe anzeigen";
+$a->strings["View Profile"] = "Profil anschauen";
+$a->strings["View Status"] = "Pinnwand anschauen";
+$a->strings["View Photos"] = "Bilder anschauen";
+$a->strings["Network Posts"] = "Netzwerkbeiträge";
+$a->strings["View Contact"] = "Kontakt anzeigen";
+$a->strings["Drop Contact"] = "Kontakt löschen";
+$a->strings["Send PM"] = "Private Nachricht senden";
+$a->strings["Poke"] = "Anstupsen";
+$a->strings["Organisation"] = "Organisation";
+$a->strings["News"] = "Nachrichten";
+$a->strings["Forum"] = "Forum";
+$a->strings["Daily posting limit of %d posts reached. The post was rejected."] = "Das tägliche Nachrichtenlimit von %d Nachrichten wurde erreicht. Die Nachtricht wurde verworfen.";
+$a->strings["Weekly posting limit of %d posts reached. The post was rejected."] = "Das wöchentliche Nachrichtenlimit von %d Nachrichten wurde erreicht. Die Nachtricht wurde verworfen.";
+$a->strings["Monthly posting limit of %d posts reached. The post was rejected."] = "Das monatliche Nachrichtenlimit von %d Nachrichten wurde erreicht. Die Nachtricht wurde verworfen.";
+$a->strings["Image/photo"] = "Bild/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["$1 wrote:"] = "$1 hat geschrieben:";
+$a->strings["Encrypted content"] = "Verschlüsselter Inhalt";
+$a->strings["Invalid source protocol"] = "Ungültiges Quell-Protokoll";
+$a->strings["Invalid link protocol"] = "Ungültiges Link-Protokoll";
 $a->strings["%1\$s attends %2\$s's %3\$s"] = "%1\$s nimmt an %2\$ss %3\$s teil.";
 $a->strings["%1\$s doesn't attend %2\$s's %3\$s"] = "%1\$s nimmt nicht an %2\$ss %3\$s teil.";
 $a->strings["%1\$s attends maybe %2\$s's %3\$s"] = "%1\$s nimmt eventuell an %2\$ss %3\$s teil.";
@@ -388,13 +449,6 @@ $a->strings["Please wait"] = "Bitte warten";
 $a->strings["remove"] = "löschen";
 $a->strings["Delete Selected Items"] = "Lösche die markierten Beiträge";
 $a->strings["Follow Thread"] = "Folge der Unterhaltung";
-$a->strings["View Status"] = "Pinnwand anschauen";
-$a->strings["View Profile"] = "Profil anschauen";
-$a->strings["View Photos"] = "Bilder anschauen";
-$a->strings["Network Posts"] = "Netzwerkbeiträge";
-$a->strings["View Contact"] = "Kontakt anzeigen";
-$a->strings["Send PM"] = "Private Nachricht senden";
-$a->strings["Poke"] = "Anstupsen";
 $a->strings["%s likes this."] = "%s mag das.";
 $a->strings["%s doesn't like this."] = "%s mag das nicht.";
 $a->strings["%s attends."] = "%s nimmt teil.";
@@ -441,6 +495,7 @@ $a->strings["Permission settings"] = "Berechtigungseinstellungen";
 $a->strings["permissions"] = "Zugriffsrechte";
 $a->strings["Public post"] = "Öffentlicher Beitrag";
 $a->strings["Preview"] = "Vorschau";
+$a->strings["Cancel"] = "Abbrechen";
 $a->strings["Post to Groups"] = "Poste an Gruppe";
 $a->strings["Post to Contacts"] = "Poste an Kontakte";
 $a->strings["Private post"] = "Privater Beitrag";
@@ -459,21 +514,82 @@ $a->strings["Not Attending"] = array(
        0 => "Nicht teilnehmend ",
        1 => "Nicht teilnehmend",
 );
-$a->strings["Contact Photos"] = "Kontaktbilder";
-$a->strings["Requested account is not available."] = "Das angefragte Profil ist nicht vorhanden.";
-$a->strings["Requested profile is not available."] = "Das angefragte Profil ist nicht vorhanden.";
-$a->strings["Edit profile"] = "Profil bearbeiten";
-$a->strings["Atom feed"] = "Atom-Feed";
-$a->strings["Profiles"] = "Profile";
-$a->strings["Manage/edit profiles"] = "Profile verwalten/editieren";
-$a->strings["Change profile photo"] = "Profilbild ändern";
-$a->strings["Create New Profile"] = "Neues Profil anlegen";
-$a->strings["Profile Image"] = "Profilbild";
-$a->strings["visible to everybody"] = "sichtbar für jeden";
-$a->strings["Edit visibility"] = "Sichtbarkeit bearbeiten";
-$a->strings["Gender:"] = "Geschlecht:";
-$a->strings["Status:"] = "Status:";
-$a->strings["Homepage:"] = "Homepage:";
+$a->strings["%s\\'s birthday"] = "%ss Geburtstag";
+$a->strings["General Features"] = "Allgemeine Features";
+$a->strings["Multiple Profiles"] = "Mehrere Profile";
+$a->strings["Ability to create multiple profiles"] = "Möglichkeit mehrere Profile zu erstellen";
+$a->strings["Photo Location"] = "Aufnahmeort";
+$a->strings["Photo metadata is normally stripped. This extracts the location (if present) prior to stripping metadata and links it to a map."] = "Die Foto-Metadaten werden ausgelesen. Dadurch kann der Aufnahmeort (wenn vorhanden) in einer Karte angezeigt werden.";
+$a->strings["Export Public Calendar"] = "Öffentlichen Kalender exportieren";
+$a->strings["Ability for visitors to download the public calendar"] = "Möglichkeit für Besucher den öffentlichen Kalender herunter zu laden";
+$a->strings["Post Composition Features"] = "Beitragserstellung Features";
+$a->strings["Richtext Editor"] = "Web-Editor";
+$a->strings["Enable richtext editor"] = "Den Web-Editor für neue Beiträge aktivieren";
+$a->strings["Post Preview"] = "Beitragsvorschau";
+$a->strings["Allow previewing posts and comments before publishing them"] = "Die Vorschau von Beiträgen und Kommentaren vor dem absenden erlauben.";
+$a->strings["Auto-mention Forums"] = "Foren automatisch erwähnen";
+$a->strings["Add/remove mention when a forum page is selected/deselected in ACL window."] = "Automatisch eine @-Erwähnung eines Forums einfügen/entfehrnen, wenn dieses im ACL Fenster de-/markiert  wurde.";
+$a->strings["Network Sidebar Widgets"] = "Widgets für Netzwerk und Seitenleiste";
+$a->strings["Search by Date"] = "Archiv";
+$a->strings["Ability to select posts by date ranges"] = "Möglichkeit die Beiträge nach Datumsbereichen zu sortieren";
+$a->strings["List Forums"] = "Zeige Foren";
+$a->strings["Enable widget to display the forums your are connected with"] = "Aktiviere Widget, um die Foren mit denen du verbunden bist anzuzeigen";
+$a->strings["Group Filter"] = "Gruppen Filter";
+$a->strings["Enable widget to display Network posts only from selected group"] = "Widget zur Darstellung der Beiträge nach Kontaktgruppen sortiert aktivieren.";
+$a->strings["Network Filter"] = "Netzwerk Filter";
+$a->strings["Enable widget to display Network posts only from selected network"] = "Widget zum filtern der Beiträge in Abhängigkeit des Netzwerks aus dem der Ersteller sendet aktivieren.";
+$a->strings["Saved Searches"] = "Gespeicherte Suchen";
+$a->strings["Save search terms for re-use"] = "Speichere Suchanfragen für spätere Wiederholung.";
+$a->strings["Network Tabs"] = "Netzwerk Reiter";
+$a->strings["Network Personal Tab"] = "Netzwerk-Reiter: Persönlich";
+$a->strings["Enable tab to display only Network posts that you've interacted on"] = "Aktiviert einen Netzwerk-Reiter in dem Nachrichten angezeigt werden mit denen Du interagiert hast";
+$a->strings["Network New Tab"] = "Netzwerk-Reiter: Neue";
+$a->strings["Enable tab to display only new Network posts (from the last 12 hours)"] = "Aktiviert einen Netzwerk-Reiter in dem ausschließlich neue Beiträge (der letzten 12 Stunden) angezeigt werden";
+$a->strings["Network Shared Links Tab"] = "Netzwerk-Reiter: Geteilte Links";
+$a->strings["Enable tab to display only Network posts with links in them"] = "Aktiviert einen Netzwerk-Reiter der ausschließlich Nachrichten mit Links enthält";
+$a->strings["Post/Comment Tools"] = "Werkzeuge für Beiträge und Kommentare";
+$a->strings["Multiple Deletion"] = "Mehrere Beiträge löschen";
+$a->strings["Select and delete multiple posts/comments at once"] = "Mehrere Beiträge/Kommentare markieren und gleichzeitig löschen";
+$a->strings["Edit Sent Posts"] = "Gesendete Beiträge editieren";
+$a->strings["Edit and correct posts and comments after sending"] = "Erlaubt es Beiträge und Kommentare nach dem Senden zu editieren bzw.zu  korrigieren.";
+$a->strings["Tagging"] = "Tagging";
+$a->strings["Ability to tag existing posts"] = "Möglichkeit bereits existierende Beiträge nachträglich mit Tags zu versehen.";
+$a->strings["Post Categories"] = "Beitragskategorien";
+$a->strings["Add categories to your posts"] = "Eigene Beiträge mit Kategorien versehen";
+$a->strings["Ability to file posts under folders"] = "Beiträge in Ordnern speichern aktivieren";
+$a->strings["Dislike Posts"] = "Beiträge 'nicht mögen'";
+$a->strings["Ability to dislike posts/comments"] = "Ermöglicht es Beiträge mit einem Klick 'nicht zu mögen'";
+$a->strings["Star Posts"] = "Beiträge Markieren";
+$a->strings["Ability to mark special posts with a star indicator"] = "Erlaubt es Beiträge mit einem Stern-Indikator zu  markieren";
+$a->strings["Mute Post Notifications"] = "Benachrichtigungen für Beiträge Stumm schalten";
+$a->strings["Ability to mute notifications for a thread"] = "Möglichkeit Benachrichtigungen für einen Thread abbestellen zu können";
+$a->strings["Advanced Profile Settings"] = "Erweiterte Profil-Einstellungen";
+$a->strings["Show visitors public community forums at the Advanced Profile Page"] = "Zeige Besuchern öffentliche Gemeinschafts-Foren auf der Erweiterten Profil-Seite";
+$a->strings["Disallowed profile URL."] = "Nicht erlaubte Profil-URL.";
+$a->strings["Connect URL missing."] = "Connect-URL fehlt";
+$a->strings["This site is not configured to allow communications with other networks."] = "Diese Seite ist so konfiguriert, dass keine Kommunikation mit anderen Netzwerken erfolgen kann.";
+$a->strings["No compatible communication protocols or feeds were discovered."] = "Es wurden keine kompatiblen Kommunikationsprotokolle oder Feeds gefunden.";
+$a->strings["The profile address specified does not provide adequate information."] = "Die angegebene Profiladresse liefert unzureichende Informationen.";
+$a->strings["An author or name was not found."] = "Es wurde kein Autor oder Name gefunden.";
+$a->strings["No browser URL could be matched to this address."] = "Zu dieser Adresse konnte keine passende Browser URL gefunden werden.";
+$a->strings["Unable to match @-style Identity Address with a known protocol or email contact."] = "Konnte die @-Adresse mit keinem der bekannten Protokolle oder Email-Kontakte abgleichen.";
+$a->strings["Use mailto: in front of address to force email check."] = "Verwende mailto: vor der Email Adresse, um eine Überprüfung der E-Mail-Adresse zu erzwingen.";
+$a->strings["The profile address specified belongs to a network which has been disabled on this site."] = "Die Adresse dieses Profils gehört zu einem Netzwerk, mit dem die Kommunikation auf dieser Seite ausgeschaltet wurde.";
+$a->strings["Limited profile. This person will be unable to receive direct/personal notifications from you."] = "Eingeschränktes Profil. Diese Person wird keine direkten/privaten Nachrichten von Dir erhalten können.";
+$a->strings["Unable to retrieve contact information."] = "Konnte die Kontaktinformationen nicht empfangen.";
+$a->strings["Requested account is not available."] = "Das angefragte Profil ist nicht vorhanden.";
+$a->strings["Requested profile is not available."] = "Das angefragte Profil ist nicht vorhanden.";
+$a->strings["Edit profile"] = "Profil bearbeiten";
+$a->strings["Atom feed"] = "Atom-Feed";
+$a->strings["Manage/edit profiles"] = "Profile verwalten/editieren";
+$a->strings["Change profile photo"] = "Profilbild ändern";
+$a->strings["Create New Profile"] = "Neues Profil anlegen";
+$a->strings["Profile Image"] = "Profilbild";
+$a->strings["visible to everybody"] = "sichtbar für jeden";
+$a->strings["Edit visibility"] = "Sichtbarkeit bearbeiten";
+$a->strings["Gender:"] = "Geschlecht:";
+$a->strings["Status:"] = "Status:";
+$a->strings["Homepage:"] = "Homepage:";
 $a->strings["About:"] = "Über:";
 $a->strings["XMPP:"] = "XMPP:";
 $a->strings["Network:"] = "Netzwerk:";
@@ -485,7 +601,6 @@ $a->strings["Birthdays this week:"] = "Geburtstage diese Woche:";
 $a->strings["[No description]"] = "[keine Beschreibung]";
 $a->strings["Event Reminders"] = "Veranstaltungserinnerungen";
 $a->strings["Events this week:"] = "Veranstaltungen diese Woche";
-$a->strings["Profile"] = "Profil";
 $a->strings["Full Name:"] = "Kompletter Name:";
 $a->strings["j F, Y"] = "j F, Y";
 $a->strings["j F"] = "j F";
@@ -510,91 +625,82 @@ $a->strings["School/education:"] = "Schule/Ausbildung:";
 $a->strings["Forums:"] = "Foren:";
 $a->strings["Basic"] = "Allgemein";
 $a->strings["Advanced"] = "Erweitert";
-$a->strings["Status"] = "Status";
 $a->strings["Status Messages and Posts"] = "Statusnachrichten und Beiträge";
 $a->strings["Profile Details"] = "Profildetails";
-$a->strings["Photos"] = "Bilder";
 $a->strings["Photo Albums"] = "Fotoalben";
-$a->strings["Videos"] = "Videos";
-$a->strings["Events"] = "Veranstaltungen";
-$a->strings["Events and Calendar"] = "Ereignisse und Kalender";
 $a->strings["Personal Notes"] = "Persönliche Notizen";
 $a->strings["Only You Can See This"] = "Nur Du kannst das sehen";
-$a->strings["Disallowed profile URL."] = "Nicht erlaubte Profil-URL.";
-$a->strings["Connect URL missing."] = "Connect-URL fehlt";
-$a->strings["This site is not configured to allow communications with other networks."] = "Diese Seite ist so konfiguriert, dass keine Kommunikation mit anderen Netzwerken erfolgen kann.";
-$a->strings["No compatible communication protocols or feeds were discovered."] = "Es wurden keine kompatiblen Kommunikationsprotokolle oder Feeds gefunden.";
-$a->strings["The profile address specified does not provide adequate information."] = "Die angegebene Profiladresse liefert unzureichende Informationen.";
-$a->strings["An author or name was not found."] = "Es wurde kein Autor oder Name gefunden.";
-$a->strings["No browser URL could be matched to this address."] = "Zu dieser Adresse konnte keine passende Browser URL gefunden werden.";
-$a->strings["Unable to match @-style Identity Address with a known protocol or email contact."] = "Konnte die @-Adresse mit keinem der bekannten Protokolle oder Email-Kontakte abgleichen.";
-$a->strings["Use mailto: in front of address to force email check."] = "Verwende mailto: vor der Email Adresse, um eine Überprüfung der E-Mail-Adresse zu erzwingen.";
-$a->strings["The profile address specified belongs to a network which has been disabled on this site."] = "Die Adresse dieses Profils gehört zu einem Netzwerk, mit dem die Kommunikation auf dieser Seite ausgeschaltet wurde.";
-$a->strings["Limited profile. This person will be unable to receive direct/personal notifications from you."] = "Eingeschränktes Profil. Diese Person wird keine direkten/privaten Nachrichten von Dir erhalten können.";
-$a->strings["Unable to retrieve contact information."] = "Konnte die Kontaktinformationen nicht empfangen.";
-$a->strings["following"] = "folgen";
-$a->strings["stopped following"] = "wird nicht mehr gefolgt";
-$a->strings["Drop Contact"] = "Kontakt löschen";
-$a->strings["Organisation"] = "Organisation";
-$a->strings["News"] = "Nachrichten";
-$a->strings["Forum"] = "Forum";
+$a->strings["[Name Withheld]"] = "[Name unterdrückt]";
+$a->strings["Item not found."] = "Beitrag nicht gefunden.";
+$a->strings["Do you really want to delete this item?"] = "Möchtest Du wirklich dieses Item löschen?";
+$a->strings["Yes"] = "Ja";
+$a->strings["Permission denied."] = "Zugriff verweigert.";
+$a->strings["Archives"] = "Archiv";
 $a->strings["Embedded content"] = "Eingebetteter Inhalt";
 $a->strings["Embedding disabled"] = "Einbettungen deaktiviert";
-$a->strings["Image/photo"] = "Bild/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["$1 wrote:"] = "$1 hat geschrieben:";
-$a->strings["Encrypted content"] = "Verschlüsselter Inhalt";
-$a->strings["Unknown | Not categorised"] = "Unbekannt | Nicht kategorisiert";
-$a->strings["Block immediately"] = "Sofort blockieren";
-$a->strings["Shady, spammer, self-marketer"] = "Zwielichtig, Spammer, Selbstdarsteller";
-$a->strings["Known to me, but no opinion"] = "Ist mir bekannt, hab aber keine Meinung";
-$a->strings["OK, probably harmless"] = "OK, wahrscheinlich harmlos";
-$a->strings["Reputable, has my trust"] = "Seriös, hat mein Vertrauen";
-$a->strings["Frequently"] = "immer wieder";
-$a->strings["Hourly"] = "Stündlich";
-$a->strings["Twice daily"] = "Zweimal täglich";
-$a->strings["Daily"] = "Täglich";
-$a->strings["Weekly"] = "Wöchentlich";
-$a->strings["Monthly"] = "Monatlich";
-$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!"] = "Zott";
-$a->strings["LinkedIn"] = "LinkedIn";
-$a->strings["XMPP/IM"] = "XMPP/Chat";
-$a->strings["MySpace"] = "MySpace";
-$a->strings["Google+"] = "Google+";
-$a->strings["pump.io"] = "pump.io";
-$a->strings["Twitter"] = "Twitter";
-$a->strings["Diaspora Connector"] = "Diaspora";
-$a->strings["GNU Social"] = "GNU Social";
-$a->strings["App.net"] = "App.net";
-$a->strings["Hubzilla/Redmatrix"] = "Hubzilla/Redmatrix";
-$a->strings["\n\t\t\tThe friendica developers released update %s recently,\n\t\t\tbut when I tried to install it, something went terribly wrong.\n\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n\t\t\tfriendica developer if you can not help me on your own. My database might be invalid."] = "\nDie Friendica-Entwickler haben vor kurzem das Update %s veröffentlicht, aber bei der Installation ging etwas schrecklich schief.\n\nDas Problem sollte so schnell wie möglich gelöst werden, aber ich schaffe es nicht alleine. Bitte kontaktiere einen Friendica-Entwickler falls Du mir nicht alleine helfen kannst. Meine Datenbank könnte ungültig sein.";
-$a->strings["The error message is\n[pre]%s[/pre]"] = "Die Fehlermeldung lautet\n[pre]%s[/pre]";
-$a->strings["Errors encountered creating database tables."] = "Fehler aufgetreten während der Erzeugung der Datenbanktabellen.";
-$a->strings["Errors encountered performing database changes."] = "Es sind Fehler beim Bearbeiten der Datenbank aufgetreten.";
-$a->strings["Logged out."] = "Abgemeldet.";
-$a->strings["Login failed."] = "Anmeldung fehlgeschlagen.";
-$a->strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "Beim Versuch Dich mit der von Dir angegebenen OpenID anzumelden trat ein Problem auf. Bitte überprüfe, dass Du die OpenID richtig geschrieben hast.";
-$a->strings["The error message was:"] = "Die Fehlermeldung lautete:";
-$a->strings["view full size"] = "Volle Größe anzeigen";
-$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."] = "Eine gelöschte Gruppe mit diesem Namen wurde wiederbelebt. Bestehende Berechtigungseinstellungen <strong>könnten</strong> auf diese Gruppe oder zukünftige Mitglieder angewandt werden. Falls Du dies nicht möchtest, erstelle bitte eine andere Gruppe mit einem anderen Namen.";
-$a->strings["Default privacy group for new contacts"] = "Voreingestellte Gruppe für neue Kontakte";
-$a->strings["Everybody"] = "Alle Kontakte";
-$a->strings["edit"] = "bearbeiten";
-$a->strings["Groups"] = "Gruppen";
-$a->strings["Edit groups"] = "Gruppen bearbeiten";
-$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";
-$a->strings["(no subject)"] = "(kein Betreff)";
+$a->strings["%s is now following %s."] = "%s folgt nun %s";
+$a->strings["following"] = "folgen";
+$a->strings["%s stopped following %s."] = "%s hat aufgehört %s zu folgen";
+$a->strings["stopped following"] = "wird nicht mehr gefolgt";
+$a->strings["newer"] = "neuer";
+$a->strings["older"] = "älter";
+$a->strings["prev"] = "vorige";
+$a->strings["first"] = "erste";
+$a->strings["last"] = "letzte";
+$a->strings["next"] = "nächste";
+$a->strings["Loading more entries..."] = "lade weitere Einträge...";
+$a->strings["The end"] = "Das Ende";
+$a->strings["No contacts"] = "Keine Kontakte";
+$a->strings["%d Contact"] = array(
+       0 => "%d Kontakt",
+       1 => "%d Kontakte",
+);
+$a->strings["View Contacts"] = "Kontakte anzeigen";
+$a->strings["Save"] = "Speichern";
+$a->strings["poke"] = "anstupsen";
+$a->strings["poked"] = "stupste";
+$a->strings["ping"] = "anpingen";
+$a->strings["pinged"] = "pingte";
+$a->strings["prod"] = "knuffen";
+$a->strings["prodded"] = "knuffte";
+$a->strings["slap"] = "ohrfeigen";
+$a->strings["slapped"] = "ohrfeigte";
+$a->strings["finger"] = "befummeln";
+$a->strings["fingered"] = "befummelte";
+$a->strings["rebuff"] = "eine Abfuhr erteilen";
+$a->strings["rebuffed"] = "abfuhrerteilte";
+$a->strings["happy"] = "glücklich";
+$a->strings["sad"] = "traurig";
+$a->strings["mellow"] = "sanft";
+$a->strings["tired"] = "müde";
+$a->strings["perky"] = "frech";
+$a->strings["angry"] = "sauer";
+$a->strings["stupified"] = "verblüfft";
+$a->strings["puzzled"] = "verwirrt";
+$a->strings["interested"] = "interessiert";
+$a->strings["bitter"] = "verbittert";
+$a->strings["cheerful"] = "fröhlich";
+$a->strings["alive"] = "lebendig";
+$a->strings["annoyed"] = "verärgert";
+$a->strings["anxious"] = "unruhig";
+$a->strings["cranky"] = "schrullig";
+$a->strings["disturbed"] = "verstört";
+$a->strings["frustrated"] = "frustriert";
+$a->strings["motivated"] = "motiviert";
+$a->strings["relaxed"] = "entspannt";
+$a->strings["surprised"] = "überrascht";
+$a->strings["View Video"] = "Video ansehen";
+$a->strings["bytes"] = "Byte";
+$a->strings["Click to open/close"] = "Zum öffnen/schließen klicken";
+$a->strings["View on separate page"] = "Auf separater Seite ansehen";
+$a->strings["view on separate page"] = "auf separater Seite ansehen";
+$a->strings["activity"] = "Aktivität";
+$a->strings["comment"] = array(
+       0 => "Kommentar",
+       1 => "Kommentare",
+);
+$a->strings["post"] = "Beitrag";
+$a->strings["Item filed"] = "Beitrag abgelegt";
 $a->strings["Passwords do not match. Password unchanged."] = "Die Passwörter stimmen nicht überein. Das Passwort bleibt unverändert.";
 $a->strings["An invitation is required."] = "Du benötigst eine Einladung.";
 $a->strings["Invitation could not be verified."] = "Die Einladung konnte nicht überprüft werden.";
@@ -619,136 +725,7 @@ $a->strings["Registration at %s"] = "Registrierung als %s";
 $a->strings["\n\t\tDear %1\$s,\n\t\t\tThank you for registering at %2\$s. Your account has been created.\n\t"] = "\nHallo %1\$s,\n\ndanke für Deine Registrierung auf %2\$s. Dein Account wurde eingerichtet.";
 $a->strings["\n\t\tThe login details are as follows:\n\t\t\tSite Location:\t%3\$s\n\t\t\tLogin Name:\t%1\$s\n\t\t\tPassword:\t%5\$s\n\n\t\tYou may change your password from your account \"Settings\" page after logging\n\t\tin.\n\n\t\tPlease take a few moments to review the other account settings on that page.\n\n\t\tYou may also wish to add some basic information to your default profile\n\t\t(on the \"Profiles\" page) so that other people can easily find you.\n\n\t\tWe recommend setting your full name, adding a profile photo,\n\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n\t\tperhaps what country you live in; if you do not wish to be more specific\n\t\tthan that.\n\n\t\tWe fully respect your right to privacy, and none of these items are necessary.\n\t\tIf you are new and do not know anybody here, they may help\n\t\tyou to make some new and interesting friends.\n\n\n\t\tThank you and welcome to %2\$s."] = "\nDie Anmelde-Details sind die folgenden:\n\tAdresse der Seite:\t%3\$s\n\tBenutzernamename:\t%1\$s\n\tPasswort:\t%5\$s\n\nDu kannst Dein Passwort unter \"Einstellungen\" ändern, sobald Du Dich\nangemeldet hast.\n\nBitte nimm Dir ein paar Minuten um die anderen Einstellungen auf dieser\nSeite zu kontrollieren.\n\nEventuell magst Du ja auch einige Informationen über Dich in Deinem\nProfil veröffentlichen, damit andere Leute Dich einfacher finden können.\nBearbeite hierfür einfach Dein Standard-Profil (über die Profil-Seite).\n\nWir empfehlen Dir, Deinen kompletten Namen anzugeben und ein zu Dir\npassendes Profilbild zu wählen, damit Dich alte Bekannte wieder finden.\nAußerdem ist es nützlich, wenn Du auf Deinem Profil Schlüsselwörter\nangibst. Das erleichtert es, Leute zu finden, die Deine Interessen teilen.\n\nWir respektieren Deine Privatsphäre - keine dieser Angaben ist nötig.\nWenn Du neu im Netzwerk bist und noch niemanden kennst, dann können sie\nallerdings dabei helfen, neue und interessante Kontakte zu knüpfen.\n\nDanke für Deine Aufmerksamkeit und willkommen auf %2\$s.";
 $a->strings["Registration details for %s"] = "Details der Registration von %s";
-$a->strings["Daily posting limit of %d posts reached. The post was rejected."] = "Das tägliche Nachrichtenlimit von %d Nachrichten wurde erreicht. Die Nachtricht wurde verworfen.";
-$a->strings["Weekly posting limit of %d posts reached. The post was rejected."] = "Das wöchentliche Nachrichtenlimit von %d Nachrichten wurde erreicht. Die Nachtricht wurde verworfen.";
-$a->strings["Monthly posting limit of %d posts reached. The post was rejected."] = "Das monatliche Nachrichtenlimit von %d Nachrichten wurde erreicht. Die Nachtricht wurde verworfen.";
-$a->strings["General Features"] = "Allgemeine Features";
-$a->strings["Multiple Profiles"] = "Mehrere Profile";
-$a->strings["Ability to create multiple profiles"] = "Möglichkeit mehrere Profile zu erstellen";
-$a->strings["Photo Location"] = "Aufnahmeort";
-$a->strings["Photo metadata is normally stripped. This extracts the location (if present) prior to stripping metadata and links it to a map."] = "Die Foto-Metadaten werden ausgelesen. Dadurch kann der Aufnahmeort (wenn vorhanden) in einer Karte angezeigt werden.";
-$a->strings["Export Public Calendar"] = "Öffentlichen Kalender exportieren";
-$a->strings["Ability for visitors to download the public calendar"] = "Möglichkeit für Besucher den öffentlichen Kalender herunter zu laden";
-$a->strings["Post Composition Features"] = "Beitragserstellung Features";
-$a->strings["Richtext Editor"] = "Web-Editor";
-$a->strings["Enable richtext editor"] = "Den Web-Editor für neue Beiträge aktivieren";
-$a->strings["Post Preview"] = "Beitragsvorschau";
-$a->strings["Allow previewing posts and comments before publishing them"] = "Die Vorschau von Beiträgen und Kommentaren vor dem absenden erlauben.";
-$a->strings["Auto-mention Forums"] = "Foren automatisch erwähnen";
-$a->strings["Add/remove mention when a forum page is selected/deselected in ACL window."] = "Automatisch eine @-Erwähnung eines Forums einfügen/entfehrnen, wenn dieses im ACL Fenster de-/markiert  wurde.";
-$a->strings["Network Sidebar Widgets"] = "Widgets für Netzwerk und Seitenleiste";
-$a->strings["Search by Date"] = "Archiv";
-$a->strings["Ability to select posts by date ranges"] = "Möglichkeit die Beiträge nach Datumsbereichen zu sortieren";
-$a->strings["List Forums"] = "Zeige Foren";
-$a->strings["Enable widget to display the forums your are connected with"] = "Aktiviere Widget, um die Foren mit denen du verbunden bist anzuzeigen";
-$a->strings["Group Filter"] = "Gruppen Filter";
-$a->strings["Enable widget to display Network posts only from selected group"] = "Widget zur Darstellung der Beiträge nach Kontaktgruppen sortiert aktivieren.";
-$a->strings["Network Filter"] = "Netzwerk Filter";
-$a->strings["Enable widget to display Network posts only from selected network"] = "Widget zum filtern der Beiträge in Abhängigkeit des Netzwerks aus dem der Ersteller sendet aktivieren.";
-$a->strings["Saved Searches"] = "Gespeicherte Suchen";
-$a->strings["Save search terms for re-use"] = "Speichere Suchanfragen für spätere Wiederholung.";
-$a->strings["Network Tabs"] = "Netzwerk Reiter";
-$a->strings["Network Personal Tab"] = "Netzwerk-Reiter: Persönlich";
-$a->strings["Enable tab to display only Network posts that you've interacted on"] = "Aktiviert einen Netzwerk-Reiter in dem Nachrichten angezeigt werden mit denen Du interagiert hast";
-$a->strings["Network New Tab"] = "Netzwerk-Reiter: Neue";
-$a->strings["Enable tab to display only new Network posts (from the last 12 hours)"] = "Aktiviert einen Netzwerk-Reiter in dem ausschließlich neue Beiträge (der letzten 12 Stunden) angezeigt werden";
-$a->strings["Network Shared Links Tab"] = "Netzwerk-Reiter: Geteilte Links";
-$a->strings["Enable tab to display only Network posts with links in them"] = "Aktiviert einen Netzwerk-Reiter der ausschließlich Nachrichten mit Links enthält";
-$a->strings["Post/Comment Tools"] = "Werkzeuge für Beiträge und Kommentare";
-$a->strings["Multiple Deletion"] = "Mehrere Beiträge löschen";
-$a->strings["Select and delete multiple posts/comments at once"] = "Mehrere Beiträge/Kommentare markieren und gleichzeitig löschen";
-$a->strings["Edit Sent Posts"] = "Gesendete Beiträge editieren";
-$a->strings["Edit and correct posts and comments after sending"] = "Erlaubt es Beiträge und Kommentare nach dem Senden zu editieren bzw.zu  korrigieren.";
-$a->strings["Tagging"] = "Tagging";
-$a->strings["Ability to tag existing posts"] = "Möglichkeit bereits existierende Beiträge nachträglich mit Tags zu versehen.";
-$a->strings["Post Categories"] = "Beitragskategorien";
-$a->strings["Add categories to your posts"] = "Eigene Beiträge mit Kategorien versehen";
-$a->strings["Ability to file posts under folders"] = "Beiträge in Ordnern speichern aktivieren";
-$a->strings["Dislike Posts"] = "Beiträge 'nicht mögen'";
-$a->strings["Ability to dislike posts/comments"] = "Ermöglicht es Beiträge mit einem Klick 'nicht zu mögen'";
-$a->strings["Star Posts"] = "Beiträge Markieren";
-$a->strings["Ability to mark special posts with a star indicator"] = "Erlaubt es Beiträge mit einem Stern-Indikator zu  markieren";
-$a->strings["Mute Post Notifications"] = "Benachrichtigungen für Beiträge Stumm schalten";
-$a->strings["Ability to mute notifications for a thread"] = "Möglichkeit Benachrichtigungen für einen Thread abbestellen zu können";
-$a->strings["Advanced Profile Settings"] = "Erweiterte Profil-Einstellungen";
-$a->strings["Show visitors public community forums at the Advanced Profile Page"] = "Zeige Besuchern öffentliche Gemeinschafts-Foren auf der Erweiterten Profil-Seite";
-$a->strings["Nothing new here"] = "Keine Neuigkeiten";
-$a->strings["Clear notifications"] = "Bereinige Benachrichtigungen";
-$a->strings["End this session"] = "Diese Sitzung beenden";
-$a->strings["Your posts and conversations"] = "Deine Beiträge und Unterhaltungen";
-$a->strings["Your profile page"] = "Deine Profilseite";
-$a->strings["Your photos"] = "Deine Fotos";
-$a->strings["Your videos"] = "Deine Videos";
-$a->strings["Your events"] = "Deine Ereignisse";
-$a->strings["Personal notes"] = "Persönliche Notizen";
-$a->strings["Your personal notes"] = "Deine persönlichen Notizen";
-$a->strings["Sign in"] = "Anmelden";
-$a->strings["Home Page"] = "Homepage";
-$a->strings["Create an account"] = "Nutzerkonto erstellen";
-$a->strings["Help"] = "Hilfe";
-$a->strings["Help and documentation"] = "Hilfe und Dokumentation";
-$a->strings["Apps"] = "Apps";
-$a->strings["Addon applications, utilities, games"] = "Addon Anwendungen, Dienstprogramme, Spiele";
-$a->strings["Search site content"] = "Inhalt der Seite durchsuchen";
-$a->strings["Community"] = "Gemeinschaft";
-$a->strings["Conversations on this site"] = "Unterhaltungen auf dieser Seite";
-$a->strings["Conversations on the network"] = "Unterhaltungen im Netzwerk";
-$a->strings["Directory"] = "Verzeichnis";
-$a->strings["People directory"] = "Nutzerverzeichnis";
-$a->strings["Information"] = "Information";
-$a->strings["Information about this friendica instance"] = "Informationen zu dieser Friendica Instanz";
-$a->strings["Conversations from your friends"] = "Unterhaltungen Deiner Kontakte";
-$a->strings["Network Reset"] = "Netzwerk zurücksetzen";
-$a->strings["Load Network page with no filters"] = "Netzwerk-Seite ohne Filter laden";
-$a->strings["Friend Requests"] = "Kontaktanfragen";
-$a->strings["Notifications"] = "Benachrichtigungen";
-$a->strings["See all notifications"] = "Alle Benachrichtigungen anzeigen";
-$a->strings["Mark as seen"] = "Als gelesen markieren";
-$a->strings["Mark all system notifications seen"] = "Markiere alle Systembenachrichtigungen als gelesen";
-$a->strings["Messages"] = "Nachrichten";
-$a->strings["Private mail"] = "Private E-Mail";
-$a->strings["Inbox"] = "Eingang";
-$a->strings["Outbox"] = "Ausgang";
-$a->strings["New Message"] = "Neue Nachricht";
-$a->strings["Manage"] = "Verwalten";
-$a->strings["Manage other pages"] = "Andere Seiten verwalten";
-$a->strings["Delegations"] = "Delegationen";
-$a->strings["Delegate Page Management"] = "Delegiere das Management für die Seite";
-$a->strings["Settings"] = "Einstellungen";
-$a->strings["Account settings"] = "Kontoeinstellungen";
-$a->strings["Manage/Edit Profiles"] = "Profile Verwalten/Editieren";
-$a->strings["Manage/edit friends and contacts"] = " Kontakte verwalten/editieren";
-$a->strings["Admin"] = "Administration";
-$a->strings["Site setup and configuration"] = "Einstellungen der Seite und Konfiguration";
-$a->strings["Navigation"] = "Navigation";
-$a->strings["Site map"] = "Sitemap";
-$a->strings["%1\$s is attending %2\$s's %3\$s"] = "%1\$s nimmt an %2\$ss %3\$s teil.";
-$a->strings["%1\$s is not attending %2\$s's %3\$s"] = "%1\$s nimmt nicht an %2\$ss %3\$s teil.";
-$a->strings["%1\$s may attend %2\$s's %3\$s"] = "%1\$s nimmt eventuell an %2\$ss %3\$s teil.";
-$a->strings["Post to Email"] = "An E-Mail senden";
-$a->strings["Connectors disabled, since \"%s\" is enabled."] = "Konnektoren sind nicht verfügbar, da \"%s\" aktiv ist.";
-$a->strings["Hide your profile details from unknown viewers?"] = "Profil-Details vor unbekannten Betrachtern verbergen?";
-$a->strings["Visible to everybody"] = "Für jeden sichtbar";
-$a->strings["show"] = "zeigen";
-$a->strings["don't show"] = "nicht zeigen";
-$a->strings["CC: email addresses"] = "Cc: E-Mail-Addressen";
-$a->strings["Example: bob@example.com, mary@example.com"] = "Z.B.: bob@example.com, mary@example.com";
-$a->strings["Permissions"] = "Berechtigungen";
-$a->strings["Close"] = "Schließen";
-$a->strings["[no subject]"] = "[kein Betreff]";
-$a->strings["You must be logged in to use addons. "] = "Sie müssen angemeldet sein um Addons benutzen zu können.";
-$a->strings["Not Found"] = "Nicht gefunden";
-$a->strings["Page not found."] = "Seite nicht gefunden.";
-$a->strings["Permission denied"] = "Zugriff verweigert";
-$a->strings["toggle mobile"] = "auf/von Mobile Ansicht wechseln";
-$a->strings["Account approved."] = "Konto freigegeben.";
-$a->strings["Registration revoked for %s"] = "Registrierung für %s wurde zurückgezogen";
-$a->strings["Please login."] = "Bitte melde Dich an.";
 $a->strings["Post successful."] = "Beitrag erfolgreich veröffentlicht.";
-$a->strings["[Embedded content - reload page to view]"] = "[Eingebetteter Inhalt - Seite neu laden zum Betrachten]";
-$a->strings["People Search - %s"] = "Personensuche - %s";
-$a->strings["Forum Search - %s"] = "Forensuche - %s";
-$a->strings["No matches"] = "Keine Übereinstimmungen";
 $a->strings["Access denied."] = "Zugriff verweigert.";
 $a->strings["Welcome to %s"] = "Willkommen zu %s";
 $a->strings["No more system notifications."] = "Keine weiteren Systembenachrichtigungen.";
@@ -761,52 +738,6 @@ $a->strings["Only one search per minute is permitted for not logged in users."]
 $a->strings["No results."] = "Keine Ergebnisse.";
 $a->strings["Items tagged with: %s"] = "Beiträge die mit %s getaggt sind";
 $a->strings["Results for: %s"] = "Ergebnisse für: %s";
-$a->strings["Invalid request identifier."] = "Invalid request identifier.";
-$a->strings["Discard"] = "Verwerfen";
-$a->strings["Ignore"] = "Ignorieren";
-$a->strings["Network Notifications"] = "Netzwerk Benachrichtigungen";
-$a->strings["Personal Notifications"] = "Persönliche Benachrichtigungen";
-$a->strings["Home Notifications"] = "Pinnwand Benachrichtigungen";
-$a->strings["Show Ignored Requests"] = "Zeige ignorierte Anfragen";
-$a->strings["Hide Ignored Requests"] = "Verberge ignorierte Anfragen";
-$a->strings["Notification type: "] = "Benachrichtigungstyp: ";
-$a->strings["suggested by %s"] = "vorgeschlagen von %s";
-$a->strings["Hide this contact from others"] = "Verbirg diesen Kontakt vor Anderen";
-$a->strings["Post a new friend activity"] = "Neue-Kontakt Nachricht senden";
-$a->strings["if applicable"] = "falls anwendbar";
-$a->strings["Approve"] = "Genehmigen";
-$a->strings["Claims to be known to you: "] = "Behauptet Dich zu kennen: ";
-$a->strings["yes"] = "ja";
-$a->strings["no"] = "nein";
-$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: "] = "Soll Deine Beziehung beidseitig sein oder nicht? \"Kontakt\" bedeutet, ihr könnt gegenseitig die Beiträge des Anderen lesen dürft. \"Fan/Verehrer\", dass du das lesen deiner Beiträge erlaubst aber nicht die Beiträge der anderen Seite lesen möchtest. Genehmigen als:";
-$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: "] = "Soll Deine Beziehung beidseitig sein oder nicht? \"Freund\" bedeutet, ihr gegenseitig die Beiträge des Anderen lesen dürft. \"Teilenden\", das du das lesen deiner Beiträge erlaubst aber nicht die Beiträge der anderen Seite lesen möchtest. Genehmigen als:";
-$a->strings["Friend"] = "Kontakt";
-$a->strings["Sharer"] = "Teilenden";
-$a->strings["Fan/Admirer"] = "Fan/Verehrer";
-$a->strings["Profile URL"] = "Profil URL";
-$a->strings["No introductions."] = "Keine Kontaktanfragen.";
-$a->strings["Show unread"] = "Ungelesene anzeigen";
-$a->strings["Show all"] = "Alle anzeigen";
-$a->strings["No more %s notifications."] = "Keine weiteren %s Benachrichtigungen";
-$a->strings["Profile not found."] = "Profil nicht gefunden.";
-$a->strings["Contact not found."] = "Kontakt nicht gefunden.";
-$a->strings["This may occasionally happen if contact was requested by both persons and it has already been approved."] = "Das kann passieren, wenn sich zwei Kontakte gegenseitig eingeladen haben und bereits einer angenommen wurde.";
-$a->strings["Response from remote site was not understood."] = "Antwort der Gegenstelle unverständlich.";
-$a->strings["Unexpected response from remote site: "] = "Unerwartete Antwort der Gegenstelle: ";
-$a->strings["Confirmation completed successfully."] = "Bestätigung erfolgreich abgeschlossen.";
-$a->strings["Remote site reported: "] = "Gegenstelle meldet: ";
-$a->strings["Temporary failure. Please wait and try again."] = "Zeitweiser Fehler. Bitte warte einige Momente und versuche es dann noch einmal.";
-$a->strings["Introduction failed or was revoked."] = "Kontaktanfrage schlug fehl oder wurde zurückgezogen.";
-$a->strings["Unable to set contact photo."] = "Konnte das Bild des Kontakts nicht speichern.";
-$a->strings["No user record found for '%s' "] = "Für '%s' wurde kein Nutzer gefunden";
-$a->strings["Our site encryption key is apparently messed up."] = "Der Verschlüsselungsschlüssel unserer Seite ist anscheinend nicht in Ordnung.";
-$a->strings["Empty site URL was provided or URL could not be decrypted by us."] = "Leere URL für die Seite erhalten oder die URL konnte nicht entschlüsselt werden.";
-$a->strings["Contact record was not found for you on our site."] = "Für diesen Kontakt wurde auf unserer Seite kein Eintrag gefunden.";
-$a->strings["Site public key not available in contact record for URL %s."] = "Die Kontaktdaten für URL %s enthalten keinen Public Key für den Server.";
-$a->strings["The ID provided by your system is a duplicate on our system. It should work if you try again."] = "Die ID, die uns Dein System angeboten hat, ist hier bereits vergeben. Bitte versuche es noch einmal.";
-$a->strings["Unable to set your contact credentials on our system."] = "Deine Kontaktreferenzen konnten nicht in unserem System gespeichert werden.";
-$a->strings["Unable to update your contact profile details on our system"] = "Die Updates für Dein Profil konnten nicht gespeichert werden";
-$a->strings["%1\$s has joined %2\$s"] = "%1\$s ist %2\$s beigetreten";
 $a->strings["This is Friendica, version"] = "Dies ist Friendica, Version";
 $a->strings["running at web location"] = "die unter folgender Webadresse zu finden ist";
 $a->strings["Please visit <a href=\"http://friendica.com\">Friendica.com</a> to learn more about the Friendica project."] = "Bitte besuche <a href=\"http://friendica.com\">Friendica.com</a>, um mehr über das Friendica Projekt zu erfahren.";
@@ -821,6 +752,7 @@ $a->strings["\n\t\tDear %1\$s,\n\t\t\tA request was recently received at \"%2\$s
 $a->strings["\n\t\tFollow this link to verify your identity:\n\n\t\t%1\$s\n\n\t\tYou will then receive a follow-up message containing the new password.\n\t\tYou may change that password from your account settings page after logging in.\n\n\t\tThe login details are as follows:\n\n\t\tSite Location:\t%2\$s\n\t\tLogin Name:\t%3\$s"] = "\nUm Deine Identität zu verifizieren, folge bitte dem folgenden Link:\n\n%1\$s\n\nDu wirst eine weitere E-Mail mit Deinem neuen Passwort erhalten. Sobald Du Dich\nangemeldet hast, kannst Du Dein Passwort in den Einstellungen ändern.\n\nDie Anmeldedetails sind die folgenden:\n\nAdresse der Seite:\t%2\$s\nBenutzername:\t%3\$s";
 $a->strings["Password reset requested at %s"] = "Anfrage zum Zurücksetzen des Passworts auf %s erhalten";
 $a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "Anfrage konnte nicht verifiziert werden. (Eventuell hast Du bereits eine ähnliche Anfrage gestellt.) Zurücksetzen des Passworts gescheitert.";
+$a->strings["Password Reset"] = "Passwort zurücksetzen";
 $a->strings["Your password has been reset as requested."] = "Dein Passwort wurde wie gewünscht zurückgesetzt.";
 $a->strings["Your new password is"] = "Dein neues Passwort lautet";
 $a->strings["Save or copy your new password - and then"] = "Speichere oder kopiere Dein neues Passwort - und dann";
@@ -831,41 +763,14 @@ $a->strings["\n\t\t\t\tYour login details are as follows:\n\n\t\t\t\tSite Locati
 $a->strings["Your password has been changed at %s"] = "Auf %s wurde Dein Passwort geändert";
 $a->strings["Forgot your Password?"] = "Hast Du Dein Passwort vergessen?";
 $a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Gib Deine E-Mail-Adresse an und fordere ein neues Passwort an. Es werden Dir dann weitere Informationen per Mail zugesendet.";
+$a->strings["Nickname or Email: "] = "Spitzname oder E-Mail:";
 $a->strings["Reset"] = "Zurücksetzen";
 $a->strings["No profile"] = "Kein Profil";
 $a->strings["Help:"] = "Hilfe:";
-$a->strings["Invalid request."] = "Ungültige Anfrage";
-$a->strings["Image exceeds size limit of %s"] = "Bildgröße überschreitet das Limit von %s";
-$a->strings["Unable to process image."] = "Konnte das Bild nicht bearbeiten.";
-$a->strings["Image upload failed."] = "Hochladen des Bildes gescheitert.";
-$a->strings["Friend suggestion sent."] = "Kontaktvorschlag gesendet.";
-$a->strings["Suggest Friends"] = "Kontakte vorschlagen";
-$a->strings["Suggest a friend for %s"] = "Schlage %s einen Kontakt vor";
-$a->strings["Submit"] = "Senden";
+$a->strings["Not Found"] = "Nicht gefunden";
+$a->strings["Page not found."] = "Seite nicht gefunden.";
 $a->strings["Remote privacy information not available."] = "Entfernte Privatsphäreneinstellungen nicht verfügbar.";
 $a->strings["Visible to:"] = "Sichtbar für:";
-$a->strings["Event can not end before it has started."] = "Die Veranstaltung kann nicht enden bevor sie beginnt.";
-$a->strings["Event title and start time are required."] = "Der Veranstaltungstitel und die Anfangszeit müssen angegeben werden.";
-$a->strings["View"] = "Ansehen";
-$a->strings["Create New Event"] = "Neue Veranstaltung erstellen";
-$a->strings["Previous"] = "Vorherige";
-$a->strings["Next"] = "Nächste";
-$a->strings["list"] = "Liste";
-$a->strings["Event details"] = "Veranstaltungsdetails";
-$a->strings["Starting date and Title are required."] = "Anfangszeitpunkt und Titel werden benötigt";
-$a->strings["Event Starts:"] = "Veranstaltungsbeginn:";
-$a->strings["Required"] = "Benötigt";
-$a->strings["Finish date/time is not known or not relevant"] = "Enddatum/-zeit ist nicht bekannt oder nicht relevant";
-$a->strings["Event Finishes:"] = "Veranstaltungsende:";
-$a->strings["Adjust for viewer timezone"] = "An Zeitzone des Betrachters anpassen";
-$a->strings["Description:"] = "Beschreibung";
-$a->strings["Title:"] = "Titel:";
-$a->strings["Share this event"] = "Veranstaltung teilen";
-$a->strings["Global Directory"] = "Weltweites Verzeichnis";
-$a->strings["Find on this site"] = "Auf diesem Server suchen";
-$a->strings["Results for:"] = "Ergebnisse für:";
-$a->strings["Site Directory"] = "Verzeichnis";
-$a->strings["No entries (some entries may be hidden)."] = "Keine Einträge (einige Einträge könnten versteckt sein).";
 $a->strings["OpenID protocol error. No ID returned."] = "OpenID Protokollfehler. Keine ID zurückgegeben.";
 $a->strings["Account not found and OpenID registration is not permitted on this site."] = "Nutzerkonto wurde nicht gefunden und OpenID-Registrierung ist auf diesem Server nicht gestattet.";
 $a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Die maximale Anzahl täglicher Registrierungen auf dieser Seite wurde überschritten. Bitte versuche es morgen noch einmal.";
@@ -879,9 +784,6 @@ $a->strings["To export your account, go to \"Settings->Export your personal data
 $a->strings["Visit %s's profile [%s]"] = "Besuche %ss Profil [%s]";
 $a->strings["Edit contact"] = "Kontakt bearbeiten";
 $a->strings["Contacts who are not members of a group"] = "Kontakte, die keiner Gruppe zugewiesen sind";
-$a->strings["No keywords to match. Please add keywords to your default profile."] = "Keine Schlüsselwörter zum Abgleichen gefunden. Bitte füge einige Schlüsselwörter zu Deinem Standardprofil hinzu.";
-$a->strings["is interested in:"] = "ist interessiert an:";
-$a->strings["Profile Match"] = "Profilübereinstimmungen";
 $a->strings["Export account"] = "Account exportieren";
 $a->strings["Export your account info and contacts. Use this to make a backup of your account and/or to move it to another server."] = "Exportiere Deine Accountinformationen und Kontakte. Verwende dies um ein Backup Deines Accounts anzulegen und/oder damit auf einen anderen Server umzuziehen.";
 $a->strings["Export all"] = "Alles exportieren";
@@ -908,722 +810,39 @@ $a->strings["You are cordially invited to join me and other close friends on Fri
 $a->strings["You will need to supply this invitation code: \$invite_code"] = "Du benötigst den folgenden Einladungscode: \$invite_code";
 $a->strings["Once you have registered, please connect with me via my profile page at:"] = "Sobald Du registriert bist, kontaktiere mich bitte auf meiner Profilseite:";
 $a->strings["For more information about the Friendica project and why we feel it is important, please visit http://friendica.com"] = "Für weitere Informationen über das Friendica Projekt und warum wir es für ein wichtiges Projekt halten, besuche bitte http://friendica.com";
+$a->strings["Submit"] = "Senden";
 $a->strings["Files"] = "Dateien";
-$a->strings["System down for maintenance"] = "System zur Wartung abgeschaltet";
+$a->strings["Permission denied"] = "Zugriff verweigert";
 $a->strings["Invalid profile identifier."] = "Ungültiger Profil-Bezeichner.";
 $a->strings["Profile Visibility Editor"] = "Editor für die Profil-Sichtbarkeit";
 $a->strings["Click on a contact to add or remove."] = "Klicke einen Kontakt an, um ihn hinzuzufügen oder zu entfernen";
 $a->strings["Visible To"] = "Sichtbar für";
 $a->strings["All Contacts (with secure profile access)"] = "Alle Kontakte (mit gesichertem Profilzugriff)";
-$a->strings["No contacts."] = "Keine Kontakte.";
-$a->strings["Contact settings applied."] = "Einstellungen zum Kontakt angewandt.";
-$a->strings["Contact update failed."] = "Konnte den Kontakt nicht aktualisieren.";
-$a->strings["<strong>WARNING: This is highly advanced</strong> and if you enter incorrect information your communications with this contact may stop working."] = "<strong>ACHTUNG: Das sind Experten-Einstellungen!</strong> Wenn Du etwas Falsches eingibst, funktioniert die Kommunikation mit diesem Kontakt evtl. nicht mehr.";
-$a->strings["Please use your browser 'Back' button <strong>now</strong> if you are uncertain what to do on this page."] = "Bitte nutze den Zurück-Button Deines Browsers <strong>jetzt</strong>, wenn Du Dir unsicher bist, was Du tun willst.";
-$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["Return to contact editor"] = "Zurück zum Kontakteditor";
-$a->strings["Refetch contact data"] = "Kontaktdaten neu laden";
-$a->strings["Remote Self"] = "Entfernte Konten";
-$a->strings["Mirror postings from this contact"] = "Spiegle Beiträge dieses Kontakts";
-$a->strings["Mark this contact as remote_self, this will cause friendica to repost new entries from this contact."] = "Markiere diesen Kontakt als remote_self (entferntes Konto), dies veranlasst Friendica alle Top-Level Beiträge dieses Kontakts an all Deine Kontakte zu senden.";
-$a->strings["Name"] = "Name";
-$a->strings["Account Nickname"] = "Konto-Spitzname";
-$a->strings["@Tagname - overrides Name/Nickname"] = "@Tagname - überschreibt Name/Spitzname";
-$a->strings["Account URL"] = "Konto-URL";
-$a->strings["Friend Request URL"] = "URL für Kontaktschaftsanfragen";
-$a->strings["Friend Confirm URL"] = "URL für Bestätigungen von Kontaktanfragen";
-$a->strings["Notification Endpoint URL"] = "URL-Endpunkt für Benachrichtigungen";
-$a->strings["Poll/Feed URL"] = "Pull/Feed-URL";
-$a->strings["New photo from this URL"] = "Neues Foto von dieser URL";
 $a->strings["Tag removed"] = "Tag entfernt";
 $a->strings["Remove Item Tag"] = "Gegenstands-Tag entfernen";
 $a->strings["Select a tag to remove: "] = "Wähle ein Tag zum Entfernen aus: ";
 $a->strings["Remove"] = "Entfernen";
-$a->strings["{0} wants to be your friend"] = "{0} möchte mit Dir in Kontakt treten";
-$a->strings["{0} sent you a message"] = "{0} schickte Dir eine Nachricht";
-$a->strings["{0} requested registration"] = "{0} möchte sich registrieren";
-$a->strings["Theme settings updated."] = "Themeneinstellungen aktualisiert.";
-$a->strings["Site"] = "Seite";
-$a->strings["Users"] = "Nutzer";
-$a->strings["Plugins"] = "Plugins";
-$a->strings["Themes"] = "Themen";
-$a->strings["Additional features"] = "Zusätzliche Features";
-$a->strings["DB updates"] = "DB Updates";
-$a->strings["Inspect Queue"] = "Warteschlange Inspizieren";
-$a->strings["Federation Statistics"] = "Federation Statistik";
-$a->strings["Logs"] = "Protokolle";
-$a->strings["View Logs"] = "Protokolle anzeigen";
-$a->strings["probe address"] = "Adresse untersuchen";
-$a->strings["check webfinger"] = "Webfinger überprüfen";
-$a->strings["Plugin Features"] = "Plugin Features";
-$a->strings["diagnostics"] = "Diagnose";
-$a->strings["User registrations waiting for confirmation"] = "Nutzeranmeldungen die auf Bestätigung warten";
-$a->strings["unknown"] = "Unbekannt";
-$a->strings["This page offers you some numbers to the known part of the federated social network your Friendica node is part of. These numbers are not complete but only reflect the part of the network your node is aware of."] = "Diese Seite präsentiert einige Zahlen zu dem bekannten Teil des föderalen sozialen Netzwerks, von dem deine Friendica Installation ein Teil ist. Diese Zahlen sind nicht absolut und reflektieren nur den Teil des Netzwerks, den dein Knoten kennt.";
-$a->strings["The <em>Auto Discovered Contact Directory</em> feature is not enabled, it will improve the data displayed here."] = "Die Funktion um <em>Automatisch ein Kontaktverzeichnis erstellen</em> ist nicht aktiv. Es wird die hier angezeigten Daten verbessern.";
-$a->strings["Administration"] = "Administration";
-$a->strings["Currently this node is aware of %d nodes from the following platforms:"] = "Momentan kennt dieser Knoten %d andere Knoten der folgenden Plattformen:";
-$a->strings["ID"] = "ID";
-$a->strings["Recipient Name"] = "Empfänger Name";
-$a->strings["Recipient Profile"] = "Empfänger Profil";
-$a->strings["Created"] = "Erstellt";
-$a->strings["Last Tried"] = "Zuletzt versucht";
-$a->strings["This page lists the content of the queue for outgoing postings. These are postings the initial delivery failed for. They will be resend later and eventually deleted if the delivery fails permanently."] = "Auf dieser Seite werden die in der Warteschlange eingereihten Beiträge aufgelistet. Bei diesen Beiträgen schlug die erste Zustellung fehl. Es wird später wiederholt versucht die Beiträge zuzustellen, bis sie schließlich gelöscht werden.";
-$a->strings["Your DB still runs with MyISAM tables. You should change the engine type to InnoDB. As Friendica will use InnoDB only features in the future, you should change this! See <a href=\"%s\">here</a> for a guide that may be helpful converting the table engines. You may also use the <tt>convert_innodb.sql</tt> in the <tt>/util</tt> directory of your Friendica installation.<br />"] = "Deine DB enthält einige Tabellen die noch auf MyISAM laufen. Du solltest den Engine-Type auf InnoDB umstellen, da Friendica in Zukunft einige InnoDB Features nutzen wird. Eine Anleitung zur Umstellung kannst du <a href=\"%s\">hier</a> finden. Außerdem kannst du das <tt>convert_innodb.sql</tt> Skript verwenden, das du im <tt>/util</tt> Verzeichnis deiner Friendica Installation findest.";
-$a->strings["You are using a MySQL version which does not support all features that Friendica uses. You should consider switching to MariaDB."] = "Du verwendets eine MySQL Version die nicht alle Features unterstützt die Friendica verwendet. Wir empfehlen dir einen Wechsel auf MariaDB, falls dies möglich ist.";
-$a->strings["Normal Account"] = "Normales Konto";
-$a->strings["Soapbox Account"] = "Marktschreier-Konto";
-$a->strings["Community/Celebrity Account"] = "Forum/Promi-Konto";
-$a->strings["Automatic Friend Account"] = "Automatisches Freundekonto";
-$a->strings["Blog Account"] = "Blog-Konto";
-$a->strings["Private Forum"] = "Privates Forum";
-$a->strings["Message queues"] = "Nachrichten-Warteschlangen";
-$a->strings["Summary"] = "Zusammenfassung";
-$a->strings["Registered users"] = "Registrierte Nutzer";
-$a->strings["Pending registrations"] = "Anstehende Anmeldungen";
-$a->strings["Version"] = "Version";
-$a->strings["Active plugins"] = "Aktive Plugins";
-$a->strings["Can not parse base url. Must have at least <scheme>://<domain>"] = "Die Basis-URL konnte nicht analysiert werden. Sie muss mindestens aus <protokoll>://<domain> bestehen";
-$a->strings["RINO2 needs mcrypt php extension to work."] = "RINO2 benötigt die PHP Extension mcrypt.";
-$a->strings["Site settings updated."] = "Seiteneinstellungen aktualisiert.";
-$a->strings["No special theme for mobile devices"] = "Kein spezielles Theme für mobile Geräte verwenden.";
-$a->strings["No community page"] = "Keine Gemeinschaftsseite";
-$a->strings["Public postings from users of this site"] = "Öffentliche Beiträge von Nutzer_innen dieser Seite";
-$a->strings["Global community page"] = "Globale Gemeinschaftsseite";
-$a->strings["Never"] = "Niemals";
-$a->strings["At post arrival"] = "Beim Empfang von Nachrichten";
-$a->strings["Disabled"] = "Deaktiviert";
-$a->strings["Users, Global Contacts"] = "Nutzer, globale Kontakte";
-$a->strings["Users, Global Contacts/fallback"] = "Nutzer, globale Kontakte / Fallback";
-$a->strings["One month"] = "ein Monat";
-$a->strings["Three months"] = "drei Monate";
-$a->strings["Half a year"] = "ein halbes Jahr";
-$a->strings["One year"] = "ein Jahr";
-$a->strings["Multi user instance"] = "Mehrbenutzer Instanz";
-$a->strings["Closed"] = "Geschlossen";
-$a->strings["Requires approval"] = "Bedarf der Zustimmung";
-$a->strings["Open"] = "Offen";
-$a->strings["No SSL policy, links will track page SSL state"] = "Keine SSL Richtlinie, Links werden das verwendete Protokoll beibehalten";
-$a->strings["Force all links to use SSL"] = "SSL für alle Links erzwingen";
-$a->strings["Self-signed certificate, use SSL for local links only (discouraged)"] = "Selbst-unterzeichnetes Zertifikat, SSL nur für lokale Links verwenden (nicht empfohlen)";
-$a->strings["Save Settings"] = "Einstellungen speichern";
-$a->strings["Registration"] = "Registrierung";
-$a->strings["File upload"] = "Datei hochladen";
-$a->strings["Policies"] = "Regeln";
-$a->strings["Auto Discovered Contact Directory"] = "Automatisch ein Kontaktverzeichnis erstellen";
-$a->strings["Performance"] = "Performance";
-$a->strings["Worker"] = "Worker";
-$a->strings["Relocate - WARNING: advanced function. Could make this server unreachable."] = "Umsiedeln - WARNUNG: Könnte diesen Server unerreichbar machen.";
-$a->strings["Site name"] = "Seitenname";
-$a->strings["Host name"] = "Host Name";
-$a->strings["Sender Email"] = "Absender für Emails";
-$a->strings["The email address your server shall use to send notification emails from."] = "Die E-Mail Adresse die dein Server zum Versenden von Benachrichtigungen verwenden soll.";
-$a->strings["Banner/Logo"] = "Banner/Logo";
-$a->strings["Shortcut icon"] = "Shortcut Icon";
-$a->strings["Link to an icon that will be used for browsers."] = "Link zu einem Icon, das Browser verwenden werden.";
-$a->strings["Touch icon"] = "Touch Icon";
-$a->strings["Link to an icon that will be used for tablets and mobiles."] = "Link zu einem Icon das Tablets und Handies verwenden sollen.";
-$a->strings["Additional Info"] = "Zusätzliche Informationen";
-$a->strings["For public servers: you can add additional information here that will be listed at %s/siteinfo."] = "Für öffentliche Server kannst Du hier zusätzliche Informationen angeben, die dann auf %s/siteinfo angezeigt werden.";
-$a->strings["System language"] = "Systemsprache";
-$a->strings["System theme"] = "Systemweites Theme";
-$a->strings["Default system theme - may be over-ridden by user profiles - <a href='#' id='cnftheme'>change theme settings</a>"] = "Vorgabe für das System-Theme - kann von Benutzerprofilen überschrieben werden - <a href='#' id='cnftheme'>Theme-Einstellungen ändern</a>";
-$a->strings["Mobile system theme"] = "Systemweites mobiles Theme";
-$a->strings["Theme for mobile devices"] = "Thema für mobile Geräte";
-$a->strings["SSL link policy"] = "Regeln für SSL Links";
-$a->strings["Determines whether generated links should be forced to use SSL"] = "Bestimmt, ob generierte Links SSL verwenden müssen";
-$a->strings["Force SSL"] = "Erzwinge SSL";
-$a->strings["Force all Non-SSL requests to SSL - Attention: on some systems it could lead to endless loops."] = "Erzinge alle Nicht-SSL Anfragen auf SSL - Achtung: auf manchen Systemen verursacht dies eine Endlosschleife.";
-$a->strings["Old style 'Share'"] = "Altes \"Teilen\" Element";
-$a->strings["Deactivates the bbcode element 'share' for repeating items."] = "Deaktiviert das BBCode Element \"share\" beim Wiederholen von Beiträgen.";
-$a->strings["Hide help entry from navigation menu"] = "Verberge den Menüeintrag für die Hilfe im Navigationsmenü";
-$a->strings["Hides the menu entry for the Help pages from the navigation menu. You can still access it calling /help directly."] = "Verbirgt den Menüeintrag für die Hilfe-Seiten im Navigationsmenü. Die Seiten können weiterhin über /help aufgerufen werden.";
-$a->strings["Single user instance"] = "Ein-Nutzer Instanz";
-$a->strings["Make this instance multi-user or single-user for the named user"] = "Regelt ob es sich bei dieser Instanz um eine ein Personen Installation oder eine Installation mit mehr als einem Nutzer handelt.";
-$a->strings["Maximum image size"] = "Maximale Bildgröße";
-$a->strings["Maximum size in bytes of uploaded images. Default is 0, which means no limits."] = "Maximale Uploadgröße von Bildern in Bytes. Standard ist 0, d.h. ohne Limit.";
-$a->strings["Maximum image length"] = "Maximale Bildlänge";
-$a->strings["Maximum length in pixels of the longest side of uploaded images. Default is -1, which means no limits."] = "Maximale Länge in Pixeln der längsten Seite eines hoch geladenen Bildes. Grundeinstellung ist -1 was keine Einschränkung bedeutet.";
-$a->strings["JPEG image quality"] = "Qualität des JPEG Bildes";
-$a->strings["Uploaded JPEGS will be saved at this quality setting [0-100]. Default is 100, which is full quality."] = "Hoch geladene JPEG Bilder werden mit dieser Qualität [0-100] gespeichert. Grundeinstellung ist 100, kein Qualitätsverlust.";
-$a->strings["Register policy"] = "Registrierungsmethode";
-$a->strings["Maximum Daily Registrations"] = "Maximum täglicher Registrierungen";
-$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."] = "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.";
-$a->strings["Register text"] = "Registrierungstext";
-$a->strings["Will be displayed prominently on the registration page."] = "Wird gut sichtbar auf der Registrierungsseite angezeigt.";
-$a->strings["Accounts abandoned after x days"] = "Nutzerkonten gelten nach x Tagen als unbenutzt";
-$a->strings["Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit."] = "Verschwende keine System-Ressourcen auf das Pollen externer Seiten, wenn Konten nicht mehr benutzt werden. 0 eingeben für kein Limit.";
-$a->strings["Allowed friend domains"] = "Erlaubte Domains für Kontakte";
-$a->strings["Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains"] = "Liste der Domains, die für Kontakte erlaubt sind, durch Kommas getrennt. Platzhalter werden akzeptiert. Leer lassen, um alle Domains zu erlauben.";
-$a->strings["Allowed email domains"] = "Erlaubte Domains für E-Mails";
-$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"] = "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.";
-$a->strings["Block public"] = "Öffentlichen Zugriff blockieren";
-$a->strings["Check to block public access to all otherwise public personal pages on this site unless you are currently logged in."] = "Klicken, um öffentlichen Zugriff auf sonst öffentliche Profile zu blockieren, wenn man nicht eingeloggt ist.";
-$a->strings["Force publish"] = "Erzwinge Veröffentlichung";
-$a->strings["Check to force all profiles on this site to be listed in the site directory."] = "Klicken, um Anzeige aller Profile dieses Servers im Verzeichnis zu erzwingen.";
-$a->strings["Global directory URL"] = "URL des weltweiten Verzeichnisses";
-$a->strings["URL to the global directory. If this is not set, the global directory is completely unavailable to the application."] = "URL des weltweiten Verzeichnisses. Wenn diese nicht gesetzt ist, ist das Verzeichnis für die Applikation nicht erreichbar.";
-$a->strings["Allow threaded items"] = "Erlaube Threads in Diskussionen";
-$a->strings["Allow infinite level threading for items on this site."] = "Erlaube ein unendliches Level für Threads auf dieser Seite.";
-$a->strings["Private posts by default for new users"] = "Private Beiträge als Standard für neue Nutzer";
-$a->strings["Set default post permissions for all new members to the default privacy group rather than public."] = "Die Standard-Zugriffsrechte für neue Nutzer werden so gesetzt, dass als Voreinstellung in die private Gruppe gepostet wird anstelle von öffentlichen Beiträgen.";
-$a->strings["Don't include post content in email notifications"] = "Inhalte von Beiträgen nicht in E-Mail-Benachrichtigungen versenden";
-$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."] = "Inhalte von Beiträgen/Kommentaren/privaten Nachrichten/usw., zum Datenschutz nicht in E-Mail-Benachrichtigungen einbinden.";
-$a->strings["Disallow public access to addons listed in the apps menu."] = "Öffentlichen Zugriff auf Addons im Apps Menü verbieten.";
-$a->strings["Checking this box will restrict addons listed in the apps menu to members only."] = "Wenn ausgewählt werden die im Apps Menü aufgeführten Addons nur angemeldeten Nutzern der Seite zur Verfügung gestellt.";
-$a->strings["Don't embed private images in posts"] = "Private Bilder nicht in Beiträgen einbetten.";
-$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."] = "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.";
-$a->strings["Allow Users to set remote_self"] = "Nutzern erlauben das remote_self Flag zu setzen";
-$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."] = "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.";
-$a->strings["Block multiple registrations"] = "Unterbinde Mehrfachregistrierung";
-$a->strings["Disallow users to register additional accounts for use as pages."] = "Benutzern nicht erlauben, weitere Konten als zusätzliche Profile anzulegen.";
-$a->strings["OpenID support"] = "OpenID Unterstützung";
-$a->strings["OpenID support for registration and logins."] = "OpenID-Unterstützung für Registrierung und Login.";
-$a->strings["Fullname check"] = "Namen auf Vollständigkeit überprüfen";
-$a->strings["Force users to register with a space between firstname and lastname in Full name, as an antispam measure"] = "Leerzeichen zwischen Vor- und Nachname im vollständigen Namen erzwingen, um SPAM zu vermeiden.";
-$a->strings["UTF-8 Regular expressions"] = "UTF-8 Reguläre Ausdrücke";
-$a->strings["Use PHP UTF8 regular expressions"] = "PHP UTF8 Ausdrücke verwenden";
-$a->strings["Community Page Style"] = "Art der Gemeinschaftsseite";
-$a->strings["Type of community page to show. 'Global community' shows every public posting from an open distributed network that arrived on this server."] = "Welche Art der Gemeinschaftsseite soll verwendet werden? Globale Gemeinschaftsseite zeigt alle öffentlichen Beiträge eines offenen dezentralen Netzwerks an die auf diesem Server eintreffen.";
-$a->strings["Posts per user on community page"] = "Anzahl der Beiträge pro Benutzer auf der Gemeinschaftsseite";
-$a->strings["The maximum number of posts per user on the community page. (Not valid for 'Global Community')"] = "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.";
-$a->strings["Enable OStatus support"] = "OStatus Unterstützung aktivieren";
-$a->strings["Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All communications in OStatus are public, so privacy warnings will be occasionally displayed."] = "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.";
-$a->strings["OStatus conversation completion interval"] = "Intervall zum Vervollständigen von OStatus Unterhaltungen";
-$a->strings["How often shall the poller check for new entries in OStatus conversations? This can be a very ressource task."] = "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.";
-$a->strings["Only import OStatus threads from our contacts"] = "Nur OStatus Konversationen unserer Kontakte importieren";
-$a->strings["Normally we import every content from our OStatus contacts. With this option we only store threads that are started by a contact that is known on our system."] = "Normalerweise werden alle Inhalte von OStatus Kontakten importiert. Mit dieser Option werden nur solche Konversationen gespeichert, die von Kontakten der Nutzer dieses Knotens gestartet wurden.";
-$a->strings["OStatus support can only be enabled if threading is enabled."] = "OStatus Unterstützung kann nur aktiviert werden wenn \"Threading\" aktiviert ist. ";
-$a->strings["Diaspora support can't be enabled because Friendica was installed into a sub directory."] = "Diaspora Unterstützung kann nicht aktiviert werden da Friendica in ein Unterverzeichnis installiert ist.";
-$a->strings["Enable Diaspora support"] = "Diaspora Unterstützung aktivieren";
-$a->strings["Provide built-in Diaspora network compatibility."] = "Verwende die eingebaute Diaspora-Verknüpfung.";
-$a->strings["Only allow Friendica contacts"] = "Nur Friendica-Kontakte erlauben";
-$a->strings["All contacts must use Friendica protocols. All other built-in communication protocols disabled."] = "Alle Kontakte müssen das Friendica Protokoll nutzen. Alle anderen Kommunikationsprotokolle werden deaktiviert.";
-$a->strings["Verify SSL"] = "SSL Überprüfen";
-$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."] = "Wenn gewollt, kann man hier eine strenge Zertifikatkontrolle einstellen. Das bedeutet, dass man zu keinen Seiten mit selbst unterzeichnetem SSL eine Verbindung herstellen kann.";
-$a->strings["Proxy user"] = "Proxy Nutzer";
-$a->strings["Proxy URL"] = "Proxy URL";
-$a->strings["Network timeout"] = "Netzwerk Wartezeit";
-$a->strings["Value is in seconds. Set to 0 for unlimited (not recommended)."] = "Der Wert ist in Sekunden. Setze 0 für unbegrenzt (nicht empfohlen).";
-$a->strings["Delivery interval"] = "Zustellungsintervall";
-$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."] = "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.";
-$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["Maximum table size for optimization"] = "Maximale Tabellengröße zur Optimierung";
-$a->strings["Maximum table size (in MB) for the automatic optimization - default 100 MB. Enter -1 to disable it."] = "Maximale Tabellengröße (in MB) für die automatische Optimierung - Standard 100 MB. Gib -1 für Deaktivierung ein.";
-$a->strings["Minimum level of fragmentation"] = "Minimaler Fragmentationsgrad";
-$a->strings["Minimum fragmenation level to start the automatic optimization - default value is 30%."] = "Minimales Fragmentationsgrad von Datenbanktabellen um die automatische Optimierung einzuleiten - Standardwert ist 30%";
-$a->strings["Periodical check of global contacts"] = "Regelmäßig globale Kontakte überprüfen";
-$a->strings["If enabled, the global contacts are checked periodically for missing or outdated data and the vitality of the contacts and servers."] = "Wenn diese Option aktiviert ist, werden die globalen Kontakte regelmäßig auf fehlende oder veraltete Daten sowie auf Erreichbarkeit des Kontakts und des Servers überprüft.";
-$a->strings["Days between requery"] = "Tage zwischen erneuten Abfragen";
-$a->strings["Number of days after which a server is requeried for his contacts."] = "Legt das Abfrageintervall fest, nachdem ein Server erneut nach Kontakten abgefragt werden soll.";
-$a->strings["Discover contacts from other servers"] = "Neue Kontakte auf anderen Servern entdecken";
-$a->strings["Periodically query other servers for contacts. You can choose between 'users': the users on the remote system, 'Global Contacts': active contacts that are known on the system. The fallback is meant for Redmatrix servers and older friendica servers, where global contacts weren't available. The fallback increases the server load, so the recommened setting is 'Users, Global Contacts'."] = "Regelmäßig andere Server nach potentiellen Kontakten absuchen. Du kannst zwischen 'Nutzern', den tatsächlichen Nutzern des anderen Systems und 'globalen Kontakten', aktiven Kontakten die auf dem System bekannt sind, wählen. Der Fallback-Mechanismus ist für ältere Friendica und Redmatrix Server gedacht, bei denen globale Kontakte noch nicht verfügbar sind. Durch den Fallbackmodus entsteht auf deinem Server eine wesentlich höhere Last, empfohlen wird der Modus 'Nutzer, globale Kontakte'.";
-$a->strings["Timeframe for fetching global contacts"] = "Zeitfenster für globale Kontakte";
-$a->strings["When the discovery is activated, this value defines the timeframe for the activity of the global contacts that are fetched from other servers."] = "Wenn die Entdeckung neuer Kontakte aktiv ist, definiert dieses Zeitfenster den Zeitraum in dem globale Kontakte als aktiv gelten und von anderen Servern importiert werden.";
-$a->strings["Search the local directory"] = "Lokales Verzeichnis durchsuchen";
-$a->strings["Search the local directory instead of the global directory. When searching locally, every search will be executed on the global directory in the background. This improves the search results when the search is repeated."] = "Suche im lokalen Verzeichnis anstelle des globalen Verzeichnisses durchführen. Jede Suche wird im Hintergrund auch im globalen Verzeichnis durchgeführt umd die Suchresultate zu verbessern, wenn diese Suche wiederholt wird.";
-$a->strings["Publish server information"] = "Server Informationen veröffentlichen";
-$a->strings["If enabled, general server and usage data will be published. The data contains the name and version of the server, number of users with public profiles, number of posts and the activated protocols and connectors. See <a href='http://the-federation.info/'>the-federation.info</a> for details."] = "Wenn aktiviert, werden allgemeine Informationen über den Server und Nutzungsdaten veröffentlicht. Die Daten beinhalten den Namen sowie die Version des Servers, die Anzahl der Nutzer_innen mit öffentlichen Profilen, die Anzahl der Beiträge sowie aktivierte Protokolle und Connectoren. Für Details bitte <a href='http://the-federation.info/'>the-federation.info</a> aufrufen.";
-$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";
-$a->strings["Suppress language information in meta information about a posting."] = "Verhindert das Erzeugen der Meta-Information zur Spracherkennung eines Beitrags.";
-$a->strings["Suppress Tags"] = "Tags Unterdrücken";
-$a->strings["Suppress showing a list of hashtags at the end of the posting."] = "Unterdrückt die Anzeige von Tags am Ende eines Beitrags.";
-$a->strings["Path to item cache"] = "Pfad zum Eintrag Cache";
-$a->strings["The item caches buffers generated bbcode and external images."] = "Im Item-Cache werden externe Bilder und geparster BBCode zwischen gespeichert.";
-$a->strings["Cache duration in seconds"] = "Cache-Dauer in Sekunden";
-$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."] = "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.";
-$a->strings["Maximum numbers of comments per post"] = "Maximale Anzahl von Kommentaren pro Beitrag";
-$a->strings["How much comments should be shown for each post? Default value is 100."] = "Wie viele Kommentare sollen pro Beitrag angezeigt werden? Standardwert sind 100.";
-$a->strings["Path for lock file"] = "Pfad für die Sperrdatei";
-$a->strings["The lock file is used to avoid multiple pollers at one time. Only define a folder here."] = "Die lock-Datei wird benutzt, damit nicht mehrere poller auf einmal laufen. Definiere hier einen Dateiverzeichnis.";
-$a->strings["Temp path"] = "Temp Pfad";
-$a->strings["If you have a restricted system where the webserver can't access the system temp path, enter another path here."] = "Solltest du ein eingeschränktes System haben, auf dem der Webserver nicht auf das temp Verzeichnis des Systems zugreifen kann, setze hier einen anderen Pfad.";
-$a->strings["Base path to installation"] = "Basis-Pfad zur Installation";
-$a->strings["If the system cannot detect the correct path to your installation, enter the correct path here. This setting should only be set if you are using a restricted system and symbolic links to your webroot."] = "Falls das System nicht den korrekten Pfad zu deiner Installation gefunden hat, gib den richtigen Pfad bitte hier ein. Du solltest hier den Pfad nur auf einem eingeschränkten System angeben müssen, bei dem du mit symbolischen Links auf dein Webverzeichnis verweist.";
-$a->strings["Disable picture proxy"] = "Bilder Proxy deaktivieren";
-$a->strings["The picture proxy increases performance and privacy. It shouldn't be used on systems with very low bandwith."] = "Der Proxy für Bilder verbessert die Leistung und Privatsphäre der Nutzer. Er sollte nicht auf Systemen verwendet werden, die nur über begrenzte Bandbreite verfügen.";
-$a->strings["Enable old style pager"] = "Den Old-Style Pager aktiviren";
-$a->strings["The old style pager has page numbers but slows down massively the page speed."] = "Der Old-Style Pager zeigt Seitennummern an, verlangsamt aber auch drastisch das Laden einer Seite.";
-$a->strings["Only search in tags"] = "Nur in Tags suchen";
-$a->strings["On large systems the text search can slow down the system extremely."] = "Auf großen Knoten kann die Volltext-Suche das System ausbremsen.";
-$a->strings["New base url"] = "Neue Basis-URL";
-$a->strings["Change base url for this server. Sends relocate message to all DFRN contacts of all users."] = "Ändert die Basis-URL dieses Servers und sendet eine Umzugsmitteilung an alle DFRN Kontakte deiner Nutzer_innen.";
-$a->strings["RINO Encryption"] = "RINO Verschlüsselung";
-$a->strings["Encryption layer between nodes."] = "Verschlüsselung zwischen Friendica Instanzen";
-$a->strings["Embedly API key"] = "Embedly  API Schlüssel";
-$a->strings["<a href='http://embed.ly'>Embedly</a> is used to fetch additional data for web pages. This is an optional parameter."] = "<a href='http://embed.ly'>Embedly</a> wird verwendet um zusätzliche Informationen von Webseiten zu laden. Dies ist ein optionaler Parameter.";
-$a->strings["Enable 'worker' background processing"] = "Aktiviere die 'Worker' Hintergrundprozesse";
-$a->strings["The worker background processing limits the number of parallel background jobs to a maximum number and respects the system load."] = "Der 'background worker' Prozess begrenzt die Zahl der Prozesse, die im Hintergrund parallel laufen und beachtet dabei die Systemlast.";
-$a->strings["Maximum number of parallel workers"] = "Maximale Anzahl parallel laufender Worker";
-$a->strings["On shared hosters set this to 2. On larger systems, values of 10 are great. Default value is 4."] = "Wenn dein Knoten bei einem Shared Hoster ist, setzte diesen Wert auf 2. Auf größeren Systemen funktioniert ein Wert von 10 recht gut. Standardeinstellung sind 4.";
-$a->strings["Don't use 'proc_open' with the worker"] = "'proc_open' nicht mit den Workern verwenden";
-$a->strings["Enable this if your system doesn't allow the use of 'proc_open'. This can happen on shared hosters. If this is enabled you should increase the frequency of poller calls in your crontab."] = "Aktiviere diese Option, wenn dein System die Verwendung von 'proc_open' verhindert. Dies könnte auf Shared Hostern der Fall sein. Wenn du diese Option aktivierst, solltest du die Frequenz der poller Aufrufe in deiner crontab erhöhen.";
-$a->strings["Enable fastlane"] = "Aktiviere Fastlane";
-$a->strings["When enabed, the fastlane mechanism starts an additional worker if processes with higher priority are blocked by processes of lower priority."] = "Wenn aktiviert, wird der Fastlane-Mechanismus einen weiteren Worker-Prozeß starten wenn Prozesse mit höherer Priorität von Prozessen mit niedrigerer Priorität blockiert werden.";
-$a->strings["Enable frontend worker"] = "Aktiviere den Frontend Worker";
-$a->strings["When enabled the Worker process is triggered when backend access is performed (e.g. messages being delivered). On smaller sites you might want to call yourdomain.tld/worker on a regular basis via an external cron job. You should only enable this option if you cannot utilize cron/scheduled jobs on your server. The worker background process needs to be activated for this."] = "Ist diese Option aktiv, wird der Worker Prozess durch Aktionen am Frontend gestartet (z.B. wenn Nachrichten zugestellt werden). Auf kleineren Seiten sollte yourdomain.tld/worker regelmäßig, beispielsweise durch einen externen Cron Anbieter, aufgerufen werden. Du solltest dies Option nur dann aktivieren, wenn du keinen Cron Job auf deinem eigenen Server starten kannst. Damit diese Option einen Effekt hat, muss der Worker Prozess aktiviert sein.";
-$a->strings["Update has been marked successful"] = "Update wurde als erfolgreich markiert";
-$a->strings["Database structure update %s was successfully applied."] = "Das Update %s der Struktur der Datenbank wurde erfolgreich angewandt.";
-$a->strings["Executing of database structure update %s failed with error: %s"] = "Das Update %s der Struktur der Datenbank schlug mit folgender Fehlermeldung fehl: %s";
-$a->strings["Executing %s failed with error: %s"] = "Die Ausführung von %s schlug fehl. Fehlermeldung: %s";
-$a->strings["Update %s was successfully applied."] = "Update %s war erfolgreich.";
-$a->strings["Update %s did not return a status. Unknown if it succeeded."] = "Update %s hat keinen Status zurückgegeben. Unbekannter Status.";
-$a->strings["There was no additional update function %s that needed to be called."] = "Es gab keine weitere Update-Funktion, die von %s ausgeführt werden musste.";
-$a->strings["No failed updates."] = "Keine fehlgeschlagenen Updates.";
-$a->strings["Check database structure"] = "Datenbank Struktur überprüfen";
-$a->strings["Failed Updates"] = "Fehlgeschlagene Updates";
-$a->strings["This does not include updates prior to 1139, which did not return a status."] = "Ohne Updates vor 1139, da diese keinen Status zurückgegeben haben.";
-$a->strings["Mark success (if update was manually applied)"] = "Als erfolgreich markieren (falls das Update manuell installiert wurde)";
-$a->strings["Attempt to execute this update step automatically"] = "Versuchen, diesen Schritt automatisch auszuführen";
-$a->strings["\n\t\t\tDear %1\$s,\n\t\t\t\tthe administrator of %2\$s has set up an account for you."] = "\nHallo %1\$s,\n\nauf %2\$s wurde ein Account für Dich angelegt.";
-$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."] = "\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.";
-$a->strings["%s user blocked/unblocked"] = array(
-       0 => "%s Benutzer geblockt/freigegeben",
-       1 => "%s Benutzer geblockt/freigegeben",
-);
-$a->strings["%s user deleted"] = array(
-       0 => "%s Nutzer gelöscht",
-       1 => "%s Nutzer gelöscht",
-);
-$a->strings["User '%s' deleted"] = "Nutzer '%s' gelöscht";
-$a->strings["User '%s' unblocked"] = "Nutzer '%s' entsperrt";
-$a->strings["User '%s' blocked"] = "Nutzer '%s' gesperrt";
-$a->strings["Register date"] = "Anmeldedatum";
-$a->strings["Last login"] = "Letzte Anmeldung";
-$a->strings["Last item"] = "Letzter Beitrag";
-$a->strings["Account"] = "Nutzerkonto";
-$a->strings["Add User"] = "Nutzer hinzufügen";
-$a->strings["select all"] = "Alle auswählen";
-$a->strings["User registrations waiting for confirm"] = "Neuanmeldungen, die auf Deine Bestätigung warten";
-$a->strings["User waiting for permanent deletion"] = "Nutzer wartet auf permanente Löschung";
-$a->strings["Request date"] = "Anfragedatum";
-$a->strings["No registrations."] = "Keine Neuanmeldungen.";
-$a->strings["Note from the user"] = "Hinweis vom Nutzer";
-$a->strings["Deny"] = "Verwehren";
-$a->strings["Block"] = "Sperren";
-$a->strings["Unblock"] = "Entsperren";
-$a->strings["Site admin"] = "Seitenadministrator";
-$a->strings["Account expired"] = "Account ist abgelaufen";
-$a->strings["New User"] = "Neuer Nutzer";
-$a->strings["Deleted since"] = "Gelöscht seit";
-$a->strings["Selected users will be deleted!\\n\\nEverything these users had posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "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?";
-$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?"] = "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?";
-$a->strings["Name of the new user."] = "Name des neuen Nutzers";
-$a->strings["Nickname"] = "Spitzname";
-$a->strings["Nickname of the new user."] = "Spitznamen für den neuen Nutzer";
-$a->strings["Email address of the new user."] = "Email Adresse des neuen Nutzers";
-$a->strings["Plugin %s disabled."] = "Plugin %s deaktiviert.";
-$a->strings["Plugin %s enabled."] = "Plugin %s aktiviert.";
-$a->strings["Disable"] = "Ausschalten";
-$a->strings["Enable"] = "Einschalten";
-$a->strings["Toggle"] = "Umschalten";
-$a->strings["Author: "] = "Autor:";
-$a->strings["Maintainer: "] = "Betreuer:";
-$a->strings["Reload active plugins"] = "Aktive Plugins neu laden";
-$a->strings["There are currently no plugins available on your node. You can find the official plugin repository at %1\$s and might find other interesting plugins in the open plugin registry at %2\$s"] = "Es sind derzeit keine Plugins auf diesem Knoten verfügbar. Du findest das offizielle Plugin-Repository unter %1\$s und weitere eventuell interessante Plugins im offenen Plugins-Verzeichnis auf %2\$s.";
-$a->strings["No themes found."] = "Keine Themen gefunden.";
-$a->strings["Screenshot"] = "Bildschirmfoto";
-$a->strings["Reload active themes"] = "Aktives Theme neu laden";
-$a->strings["No themes found on the system. They should be paced in %1\$s"] = "Es wurden keine Themes auf dem System gefunden. Diese sollten in %1\$s patziert werden.";
-$a->strings["[Experimental]"] = "[Experimentell]";
-$a->strings["[Unsupported]"] = "[Nicht unterstützt]";
-$a->strings["Log settings updated."] = "Protokolleinstellungen aktualisiert.";
-$a->strings["PHP log currently enabled."] = "PHP Protokollierung ist derzeit aktiviert.";
-$a->strings["PHP log currently disabled."] = "PHP Protokollierung ist derzeit nicht aktiviert.";
-$a->strings["Clear"] = "löschen";
-$a->strings["Enable Debugging"] = "Protokoll führen";
-$a->strings["Log file"] = "Protokolldatei";
-$a->strings["Must be writable by web server. Relative to your Friendica top-level directory."] = "Webserver muss Schreibrechte besitzen. Abhängig vom Friendica-Installationsverzeichnis.";
-$a->strings["Log level"] = "Protokoll-Level";
-$a->strings["PHP logging"] = "PHP Protokollieren";
-$a->strings["To enable logging of PHP errors and warnings you can add the following to the .htconfig.php file of your installation. The filename set in the 'error_log' line is relative to the friendica top-level directory and must be writeable by the web server. The option '1' for 'log_errors' and 'display_errors' is to enable these options, set to '0' to disable them."] = "Um PHP Warnungen und Fehler zu protokollieren, kannst du die folgenden Zeilen zur .htconfig.php Datei deiner Installation hinzufügen. Den Dateinamen der Log-Datei legst du in der Zeile mit dem 'error_log' fest,  Er ist relativ zum Friendica-Stammverzeichnis und muss schreibbar durch den Webserver sein. Eine \"1\" als Option für die Punkte 'log_errors' und 'display_errors' aktiviert die Funktionen zum Protokollieren bzw. Anzeigen der Fehler, eine \"0\" deaktiviert sie.";
-$a->strings["Off"] = "Aus";
-$a->strings["On"] = "An";
-$a->strings["Lock feature %s"] = "Feature festlegen: %s";
-$a->strings["Manage Additional Features"] = "Zusätzliche Features Verwalten";
-$a->strings["Sorry, maybe your upload is bigger than the PHP configuration allows"] = "Entschuldige, die Datei scheint größer zu sein als es die PHP Konfiguration erlaubt.";
-$a->strings["Or - did you try to upload an empty file?"] = "Oder - hast Du versucht, eine leere Datei hochzuladen?";
-$a->strings["File exceeds size limit of %s"] = "Die Datei ist größer als das erlaubte Limit von %s";
-$a->strings["File upload failed."] = "Hochladen der Datei fehlgeschlagen.";
-$a->strings["No friends to display."] = "Keine Kontakte zum Anzeigen.";
-$a->strings["Access to this profile has been restricted."] = "Der Zugriff zu diesem Profil wurde eingeschränkt.";
-$a->strings["User not found"] = "Nutzer nicht gefunden";
-$a->strings["This calendar format is not supported"] = "Dieses Kalenderformat wird nicht unterstützt.";
-$a->strings["No exportable data found"] = "Keine exportierbaren Daten gefunden";
-$a->strings["calendar"] = "Kalender";
-$a->strings["No such group"] = "Es gibt keine solche Gruppe";
-$a->strings["Group is empty"] = "Gruppe ist leer";
-$a->strings["Group: %s"] = "Gruppe: %s";
-$a->strings["This entry was edited"] = "Dieser Beitrag wurde bearbeitet.";
-$a->strings["%d comment"] = array(
-       0 => "%d Kommentar",
-       1 => "%d Kommentare",
-);
-$a->strings["Private Message"] = "Private Nachricht";
-$a->strings["I like this (toggle)"] = "Ich mag das (toggle)";
-$a->strings["like"] = "mag ich";
-$a->strings["I don't like this (toggle)"] = "Ich mag das nicht (toggle)";
-$a->strings["dislike"] = "mag ich nicht";
-$a->strings["Share this"] = "Weitersagen";
-$a->strings["share"] = "Teilen";
-$a->strings["This is you"] = "Das bist Du";
-$a->strings["Bold"] = "Fett";
-$a->strings["Italic"] = "Kursiv";
-$a->strings["Underline"] = "Unterstrichen";
-$a->strings["Quote"] = "Zitat";
-$a->strings["Code"] = "Code";
-$a->strings["Image"] = "Bild";
-$a->strings["Link"] = "Link";
-$a->strings["Video"] = "Video";
-$a->strings["Edit"] = "Bearbeiten";
-$a->strings["add star"] = "markieren";
-$a->strings["remove star"] = "Markierung entfernen";
-$a->strings["toggle star status"] = "Markierung umschalten";
-$a->strings["starred"] = "markiert";
-$a->strings["add tag"] = "Tag hinzufügen";
-$a->strings["ignore thread"] = "Thread ignorieren";
-$a->strings["unignore thread"] = "Thread nicht mehr ignorieren";
-$a->strings["toggle ignore status"] = "Ignoriert-Status ein-/ausschalten";
-$a->strings["ignored"] = "Ignoriert";
-$a->strings["save to folder"] = "In Ordner speichern";
-$a->strings["I will attend"] = "Ich werde teilnehmen";
-$a->strings["I will not attend"] = "Ich werde nicht teilnehmen";
-$a->strings["I might attend"] = "Ich werde eventuell teilnehmen";
-$a->strings["to"] = "zu";
-$a->strings["Wall-to-Wall"] = "Wall-to-Wall";
-$a->strings["via Wall-To-Wall:"] = "via Wall-To-Wall:";
-$a->strings["Resubscribing to OStatus contacts"] = "Erneuern der OStatus Abonements";
-$a->strings["Error"] = "Fehler";
-$a->strings["Done"] = "Erledigt";
-$a->strings["Keep this window open until done."] = "Lasse dieses Fenster offen, bis der Vorgang abgeschlossen ist.";
-$a->strings["No potential page delegates located."] = "Keine potentiellen Bevollmächtigten für die Seite gefunden.";
-$a->strings["Delegates are able to manage all aspects of this account/page except for basic account settings. Please do not delegate your personal account to anybody that you do not trust completely."] = "Bevollmächtigte sind in der Lage, alle Aspekte dieses Kontos/dieser Seite zu verwalten, abgesehen von den Grundeinstellungen des Kontos. Bitte gib niemandem eine Bevollmächtigung für Deinen privaten Account, dem Du nicht absolut vertraust!";
-$a->strings["Existing Page Managers"] = "Vorhandene Seitenmanager";
-$a->strings["Existing Page Delegates"] = "Vorhandene Bevollmächtigte für die Seite";
-$a->strings["Potential Delegates"] = "Potentielle Bevollmächtigte";
-$a->strings["Add"] = "Hinzufügen";
-$a->strings["No entries."] = "Keine Einträge.";
-$a->strings["Do you really want to delete this video?"] = "Möchtest Du dieses Video wirklich löschen?";
-$a->strings["Delete Video"] = "Video Löschen";
-$a->strings["No videos selected"] = "Keine Videos  ausgewählt";
-$a->strings["Access to this item is restricted."] = "Zugriff zu diesem Eintrag wurde eingeschränkt.";
-$a->strings["View Album"] = "Album betrachten";
-$a->strings["Recent Videos"] = "Neueste Videos";
-$a->strings["Upload New Videos"] = "Neues Video hochladen";
-$a->strings["Profile deleted."] = "Profil gelöscht.";
-$a->strings["Profile-"] = "Profil-";
-$a->strings["New profile created."] = "Neues Profil angelegt.";
-$a->strings["Profile unavailable to clone."] = "Profil nicht zum Duplizieren verfügbar.";
-$a->strings["Profile Name is required."] = "Profilname ist erforderlich.";
-$a->strings["Marital Status"] = "Familienstand";
-$a->strings["Romantic Partner"] = "Romanze";
-$a->strings["Work/Employment"] = "Arbeit / Beschäftigung";
-$a->strings["Religion"] = "Religion";
-$a->strings["Political Views"] = "Politische Ansichten";
-$a->strings["Gender"] = "Geschlecht";
-$a->strings["Sexual Preference"] = "Sexuelle Vorlieben";
-$a->strings["XMPP"] = "XMPP";
-$a->strings["Homepage"] = "Webseite";
-$a->strings["Interests"] = "Interessen";
-$a->strings["Address"] = "Adresse";
-$a->strings["Location"] = "Wohnort";
-$a->strings["Profile updated."] = "Profil aktualisiert.";
-$a->strings[" and "] = " und ";
-$a->strings["public profile"] = "öffentliches Profil";
-$a->strings["%1\$s changed %2\$s to &ldquo;%3\$s&rdquo;"] = "%1\$s hat %2\$s geändert auf &ldquo;%3\$s&rdquo;";
-$a->strings[" - Visit %1\$s's %2\$s"] = " – %1\$ss %2\$s besuchen";
-$a->strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s hat folgendes aktualisiert %2\$s, verändert wurde %3\$s.";
-$a->strings["Hide contacts and friends:"] = "Kontakte und Freunde verbergen";
-$a->strings["No"] = "Nein";
-$a->strings["Hide your contact/friend list from viewers of this profile?"] = "Liste der Kontakte vor Betrachtern dieses Profils verbergen?";
-$a->strings["Show more profile fields:"] = "Zeige mehr Profil-Felder:";
-$a->strings["Profile Actions"] = "Profilaktionen";
-$a->strings["Edit Profile Details"] = "Profil bearbeiten";
-$a->strings["Change Profile Photo"] = "Profilbild ändern";
-$a->strings["View this profile"] = "Dieses Profil anzeigen";
-$a->strings["Create a new profile using these settings"] = "Neues Profil anlegen und diese Einstellungen verwenden";
-$a->strings["Clone this profile"] = "Dieses Profil duplizieren";
-$a->strings["Delete this profile"] = "Dieses Profil löschen";
-$a->strings["Basic information"] = "Grundinformationen";
-$a->strings["Profile picture"] = "Profilbild";
-$a->strings["Preferences"] = "Vorlieben";
-$a->strings["Status information"] = "Status Informationen";
-$a->strings["Additional information"] = "Zusätzliche Informationen";
-$a->strings["Relation"] = "Beziehung";
-$a->strings["Upload Profile Photo"] = "Profilbild hochladen";
-$a->strings["Your Gender:"] = "Dein Geschlecht:";
-$a->strings["<span class=\"heart\">&hearts;</span> Marital Status:"] = "<span class=\"heart\">&hearts;</span> Beziehungsstatus:";
-$a->strings["Example: fishing photography software"] = "Beispiel: Fischen Fotografie Software";
-$a->strings["Profile Name:"] = "Profilname:";
-$a->strings["This is your <strong>public</strong> profile.<br />It <strong>may</strong> be visible to anybody using the internet."] = "Dies ist Dein <strong>öffentliches</strong> Profil.<br />Es <strong>könnte</strong> für jeden Nutzer des Internets sichtbar sein.";
-$a->strings["Your Full Name:"] = "Dein kompletter Name:";
-$a->strings["Title/Description:"] = "Titel/Beschreibung:";
-$a->strings["Street Address:"] = "Adresse:";
-$a->strings["Locality/City:"] = "Wohnort:";
-$a->strings["Region/State:"] = "Region/Bundesstaat:";
-$a->strings["Postal/Zip Code:"] = "Postleitzahl:";
-$a->strings["Country:"] = "Land:";
-$a->strings["Who: (if applicable)"] = "Wer: (falls anwendbar)";
-$a->strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Beispiele: cathy123, Cathy Williams, cathy@example.com";
-$a->strings["Since [date]:"] = "Seit [Datum]:";
-$a->strings["Tell us about yourself..."] = "Erzähle uns ein bisschen von Dir …";
-$a->strings["XMPP (Jabber) address:"] = "XMPP (Jabber) Adresse";
-$a->strings["The XMPP address will be propagated to your contacts so that they can follow you."] = "Die XMPP Adresse wird an deine Kontakte verteilt werden, so dass sie auch über XMPP mit dir in Kontakt treten können.";
-$a->strings["Homepage URL:"] = "Adresse der Homepage:";
-$a->strings["Religious Views:"] = "Religiöse Ansichten:";
-$a->strings["Public Keywords:"] = "Öffentliche Schlüsselwörter:";
-$a->strings["(Used for suggesting potential friends, can be seen by others)"] = "(Wird verwendet, um potentielle Kontakte zu finden, kann von Kontakten eingesehen werden)";
-$a->strings["Private Keywords:"] = "Private Schlüsselwörter:";
-$a->strings["(Used for searching profiles, never shown to others)"] = "(Wird für die Suche nach Profilen verwendet und niemals veröffentlicht)";
-$a->strings["Musical interests"] = "Musikalische Interessen";
-$a->strings["Books, literature"] = "Bücher, Literatur";
-$a->strings["Television"] = "Fernsehen";
-$a->strings["Film/dance/culture/entertainment"] = "Filme/Tänze/Kultur/Unterhaltung";
-$a->strings["Hobbies/Interests"] = "Hobbies/Interessen";
-$a->strings["Love/romance"] = "Liebe/Romantik";
-$a->strings["Work/employment"] = "Arbeit/Anstellung";
-$a->strings["School/education"] = "Schule/Ausbildung";
-$a->strings["Contact information and Social Networks"] = "Kontaktinformationen und Soziale Netzwerke";
-$a->strings["Edit/Manage Profiles"] = "Bearbeite/Verwalte Profile";
-$a->strings["Credits"] = "Credits";
-$a->strings["Friendica is a community project, that would not be possible without the help of many people. Here is a list of those who have contributed to the code or the translation of Friendica. Thank you all!"] = "Friendica ist ein Gemeinschaftsprojekt, das nicht ohne die Hilfe vieler Personen möglich wäre. Hier ist eine Aufzählung der Personen, die zum Code oder der Übersetzung beigetragen haben. Dank an alle !";
-$a->strings["- select -"] = "- auswählen -";
-$a->strings["Poke/Prod"] = "Anstupsen";
-$a->strings["poke, prod or do other things to somebody"] = "Stupse Leute an oder mache anderes mit ihnen";
-$a->strings["Recipient"] = "Empfänger";
-$a->strings["Choose what you wish to do to recipient"] = "Was willst Du mit dem Empfänger machen:";
-$a->strings["Make this post private"] = "Diesen Beitrag privat machen";
-$a->strings["Recent Photos"] = "Neueste Fotos";
-$a->strings["Upload New Photos"] = "Neue Fotos hochladen";
-$a->strings["everybody"] = "jeder";
-$a->strings["Contact information unavailable"] = "Kontaktinformationen nicht verfügbar";
-$a->strings["Album not found."] = "Album nicht gefunden.";
-$a->strings["Delete Album"] = "Album löschen";
-$a->strings["Do you really want to delete this photo album and all its photos?"] = "Möchtest Du wirklich dieses Foto-Album und all seine Foto löschen?";
-$a->strings["Delete Photo"] = "Foto löschen";
-$a->strings["Do you really want to delete this photo?"] = "Möchtest Du wirklich dieses Foto löschen?";
-$a->strings["%1\$s was tagged in %2\$s by %3\$s"] = "%1\$s wurde von %3\$s in %2\$s getaggt";
-$a->strings["a photo"] = "einem Foto";
-$a->strings["Image file is empty."] = "Bilddatei ist leer.";
-$a->strings["No photos selected"] = "Keine Bilder ausgewählt";
-$a->strings["You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."] = "Du verwendest %1$.2f Mbyte von %2$.2f Mbyte des Foto-Speichers.";
-$a->strings["Upload Photos"] = "Bilder hochladen";
-$a->strings["New album name: "] = "Name des neuen Albums: ";
-$a->strings["or existing album name: "] = "oder existierender Albumname: ";
-$a->strings["Do not show a status post for this upload"] = "Keine Status-Mitteilung für diesen Beitrag anzeigen";
-$a->strings["Show to Groups"] = "Zeige den Gruppen";
-$a->strings["Show to Contacts"] = "Zeige den Kontakten";
-$a->strings["Private Photo"] = "Privates Foto";
-$a->strings["Public Photo"] = "Öffentliches Foto";
-$a->strings["Edit Album"] = "Album bearbeiten";
-$a->strings["Show Newest First"] = "Zeige neueste zuerst";
-$a->strings["Show Oldest First"] = "Zeige älteste zuerst";
-$a->strings["View Photo"] = "Foto betrachten";
-$a->strings["Permission denied. Access to this item may be restricted."] = "Zugriff verweigert. Zugriff zu diesem Eintrag könnte eingeschränkt sein.";
-$a->strings["Photo not available"] = "Foto nicht verfügbar";
-$a->strings["View photo"] = "Fotos ansehen";
-$a->strings["Edit photo"] = "Foto bearbeiten";
-$a->strings["Use as profile photo"] = "Als Profilbild verwenden";
-$a->strings["View Full Size"] = "Betrachte Originalgröße";
-$a->strings["Tags: "] = "Tags: ";
-$a->strings["[Remove any tag]"] = "[Tag entfernen]";
-$a->strings["New album name"] = "Name des neuen Albums";
-$a->strings["Caption"] = "Bildunterschrift";
-$a->strings["Add a Tag"] = "Tag hinzufügen";
-$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"] = "Beispiel: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping";
-$a->strings["Do not rotate"] = "Nicht rotieren";
-$a->strings["Rotate CW (right)"] = "Drehen US (rechts)";
-$a->strings["Rotate CCW (left)"] = "Drehen EUS (links)";
-$a->strings["Private photo"] = "Privates Foto";
-$a->strings["Public photo"] = "Öffentliches Foto";
-$a->strings["Map"] = "Karte";
-$a->strings["Friendica Communications Server - Setup"] = "Friendica-Server für soziale Netzwerke – Setup";
-$a->strings["Could not connect to database."] = "Verbindung zur Datenbank gescheitert.";
-$a->strings["Could not create table."] = "Tabelle konnte nicht angelegt werden.";
-$a->strings["Your Friendica site database has been installed."] = "Die Datenbank Deiner Friendicaseite wurde installiert.";
-$a->strings["You may need to import the file \"database.sql\" manually using phpmyadmin or mysql."] = "Möglicherweise musst Du die Datei \"database.sql\" manuell mit phpmyadmin oder mysql importieren.";
-$a->strings["Please see the file \"INSTALL.txt\"."] = "Lies bitte die \"INSTALL.txt\".";
-$a->strings["Database already in use."] = "Die Datenbank wird bereits verwendet.";
-$a->strings["System check"] = "Systemtest";
-$a->strings["Check again"] = "Noch einmal testen";
-$a->strings["Database connection"] = "Datenbankverbindung";
-$a->strings["In order to install Friendica we need to know how to connect to your database."] = "Um Friendica installieren zu können, müssen wir wissen, wie wir mit Deiner Datenbank Kontakt aufnehmen können.";
-$a->strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Bitte kontaktiere den Hosting Provider oder den Administrator der Seite, falls Du Fragen zu diesen Einstellungen haben solltest.";
-$a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "Die Datenbank, die Du unten angibst, sollte bereits existieren. Ist dies noch nicht der Fall, erzeuge sie bitte bevor Du mit der Installation fortfährst.";
-$a->strings["Database Server Name"] = "Datenbank-Server";
-$a->strings["Database Login Name"] = "Datenbank-Nutzer";
-$a->strings["Database Login Password"] = "Datenbank-Passwort";
-$a->strings["Database Name"] = "Datenbank-Name";
-$a->strings["Site administrator email address"] = "E-Mail-Adresse des Administrators";
-$a->strings["Your account email address must match this in order to use the web admin panel."] = "Die E-Mail-Adresse, die in Deinem Friendica-Account eingetragen ist, muss mit dieser Adresse übereinstimmen, damit Du das Admin-Panel benutzen kannst.";
-$a->strings["Please select a default timezone for your website"] = "Bitte wähle die Standardzeitzone Deiner Webseite";
-$a->strings["Site settings"] = "Server-Einstellungen";
-$a->strings["System Language:"] = "Systemsprache:";
-$a->strings["Set the default language for your Friendica installation interface and to send emails."] = "Wähle die Standardsprache für deine Friendica-Installations-Oberfläche und den E-Mail-Versand";
-$a->strings["Could not find a command line version of PHP in the web server PATH."] = "Konnte keine Kommandozeilenversion von PHP im PATH des Servers finden.";
-$a->strings["If you don't have a command line version of PHP installed on server, you will not be able to run background polling via cron. See <a href='https://github.com/friendica/friendica/blob/master/doc/Install.md#set-up-the-poller'>'Setup the poller'</a>"] = "Wenn Du keine Kommandozeilen-Version von PHP auf Deinem Server installiert hast, kannst Du keine Hintergrundprozesse via cron starten. Siehe <a href='https://github.com/friendica/friendica/blob/master/doc/Install.md#set-up-the-poller'>'Setup the poller'</a>";
-$a->strings["PHP executable path"] = "Pfad zu PHP";
-$a->strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "Gib den kompletten Pfad zur ausführbaren Datei von PHP an. Du kannst dieses Feld auch frei lassen und mit der Installation fortfahren.";
-$a->strings["Command line PHP"] = "Kommandozeilen-PHP";
-$a->strings["PHP executable is not the php cli binary (could be cgi-fgci version)"] = "Die ausführbare Datei von PHP stimmt nicht mit der PHP cli Version überein (es könnte sich um die cgi-fgci Version handeln)";
-$a->strings["Found PHP version: "] = "Gefundene PHP Version:";
-$a->strings["PHP cli binary"] = "PHP CLI Binary";
-$a->strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "Die Kommandozeilenversion von PHP auf Deinem System hat \"register_argc_argv\" nicht aktiviert.";
-$a->strings["This is required for message delivery to work."] = "Dies wird für die Auslieferung von Nachrichten benötigt.";
-$a->strings["PHP register_argc_argv"] = "PHP register_argc_argv";
-$a->strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = "Fehler: Die Funktion \"openssl_pkey_new\" auf diesem System ist nicht in der Lage, Verschlüsselungsschlüssel zu erzeugen";
-$a->strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "Wenn der Server unter Windows läuft, schau Dir bitte \"http://www.php.net/manual/en/openssl.installation.php\" an.";
-$a->strings["Generate encryption keys"] = "Schlüssel erzeugen";
-$a->strings["libCurl PHP module"] = "PHP: libCurl-Modul";
-$a->strings["GD graphics PHP module"] = "PHP: GD-Grafikmodul";
-$a->strings["OpenSSL PHP module"] = "PHP: OpenSSL-Modul";
-$a->strings["mysqli PHP module"] = "PHP: mysqli-Modul";
-$a->strings["mb_string PHP module"] = "PHP: mb_string-Modul";
-$a->strings["mcrypt PHP module"] = "PHP mcrypt Modul";
-$a->strings["XML PHP module"] = "XML PHP Modul";
-$a->strings["iconv module"] = "iconv module";
-$a->strings["Apache mod_rewrite module"] = "Apache mod_rewrite module";
-$a->strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Fehler: Das Apache-Modul mod-rewrite wird benötigt, es ist allerdings nicht installiert.";
-$a->strings["Error: libCURL PHP module required but not installed."] = "Fehler: Das libCURL PHP Modul wird benötigt, ist aber nicht installiert.";
-$a->strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Fehler: Das GD-Graphikmodul für PHP mit JPEG-Unterstützung ist nicht installiert.";
-$a->strings["Error: openssl PHP module required but not installed."] = "Fehler: Das openssl-Modul von PHP ist nicht installiert.";
-$a->strings["Error: mysqli PHP module required but not installed."] = "Fehler: Das mysqli-Modul von PHP ist nicht installiert.";
-$a->strings["Error: mb_string PHP module required but not installed."] = "Fehler: mb_string PHP Module wird benötigt ist aber nicht installiert.";
-$a->strings["Error: mcrypt PHP module required but not installed."] = "Fehler: Das mcrypt Modul von PHP ist nicht installiert";
-$a->strings["Error: iconv PHP module required but not installed."] = "Fehler: Das iconv-Modul von PHP ist nicht installiert.";
-$a->strings["If you are using php_cli, please make sure that mcrypt module is enabled in its config file"] = "Wenn du das Modul \"php_cli\" benutzt dann versichere dich, daß das mcrypt Modul in seiner Konfigurationsdatei aktiviert ist. ";
-$a->strings["Function mcrypt_create_iv() is not defined. This is needed to enable RINO2 encryption layer."] = "Die Funktion mcrypt_create_iv() ist nicht festgelegt. Dies ist notwendig um den RINO2-Encryption-Layer zu aktivieren.";
-$a->strings["mcrypt_create_iv() function"] = "mcrypt_create_iv() function";
-$a->strings["Error, XML PHP module required but not installed."] = "Fehler: XML PHP Modul erforderlich aber nicht installiert.";
-$a->strings["The web installer needs to be able to create a file called \".htconfig.php\" in the top folder of your web server and it is unable to do so."] = "Der Installationswizard muss in der Lage sein, eine Datei im Stammverzeichnis Deines Webservers anzulegen, ist allerdings derzeit nicht in der Lage, dies zu tun.";
-$a->strings["This is most often a permission setting, as the web server may not be able to write files in your folder - even if you can."] = "In den meisten Fällen ist dies ein Problem mit den Schreibrechten. Der Webserver könnte keine Schreiberlaubnis haben, selbst wenn Du sie hast.";
-$a->strings["At the end of this procedure, we will give you a text to save in a file named .htconfig.php in your Friendica top folder."] = "Nachdem Du alles ausgefüllt hast, erhältst Du einen Text, den Du in eine Datei namens .htconfig.php in Deinem Friendica-Wurzelverzeichnis kopieren musst.";
-$a->strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"INSTALL.txt\" for instructions."] = "Alternativ kannst Du diesen Schritt aber auch überspringen und die Installation manuell durchführen. Eine Anleitung dazu (Englisch) findest Du in der Datei INSTALL.txt.";
-$a->strings[".htconfig.php is writable"] = "Schreibrechte auf .htconfig.php";
-$a->strings["Friendica uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "Friendica nutzt die Smarty3 Template Engine um die Webansichten zu rendern. Smarty3 kompiliert Templates zu PHP um das Rendern zu beschleunigen.";
-$a->strings["In order to store these compiled templates, the web server needs to have write access to the directory view/smarty3/ under the Friendica top level folder."] = "Um diese kompilierten Templates zu speichern benötigt der Webserver Schreibrechte zum Verzeichnis view/smarty3/ im obersten Ordner von Friendica.";
-$a->strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "Bitte stelle sicher, dass der Nutzer unter dem der Webserver läuft (z.B. www-data) Schreibrechte zu diesem Verzeichnis hat.";
-$a->strings["Note: as a security measure, you should give the web server write access to view/smarty3/ only--not the template files (.tpl) that it contains."] = "Hinweis: aus Sicherheitsgründen solltest Du dem Webserver nur Schreibrechte für view/smarty3/ geben -- Nicht den Templatedateien (.tpl) die sie enthalten.";
-$a->strings["view/smarty3 is writable"] = "view/smarty3 ist schreibbar";
-$a->strings["Url rewrite in .htaccess is not working. Check your server configuration."] = "Umschreiben der URLs in der .htaccess funktioniert nicht. Überprüfe die Konfiguration des Servers.";
-$a->strings["Url rewrite is working"] = "URL rewrite funktioniert";
-$a->strings["ImageMagick PHP extension is installed"] = "ImageMagick PHP Erweiterung ist installiert";
-$a->strings["ImageMagick supports GIF"] = "ImageMagick unterstützt GIF";
-$a->strings["The database configuration file \".htconfig.php\" could not be written. Please use the enclosed text to create a configuration file in your web server root."] = "Die Konfigurationsdatei \".htconfig.php\" konnte nicht angelegt werden. Bitte verwende den angefügten Text, um die Datei im Stammverzeichnis Deiner Friendica-Installation zu erzeugen.";
-$a->strings["<h1>What next</h1>"] = "<h1>Wie geht es weiter?</h1>";
-$a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "WICHTIG: Du musst [manuell] einen Cronjob (o.ä.) für den Poller einrichten.";
+$a->strings["Resubscribing to OStatus contacts"] = "Erneuern der OStatus Abonements";
+$a->strings["Error"] = "Fehler";
+$a->strings["Done"] = "Erledigt";
+$a->strings["Keep this window open until done."] = "Lasse dieses Fenster offen, bis der Vorgang abgeschlossen ist.";
+$a->strings["No potential page delegates located."] = "Keine potentiellen Bevollmächtigten für die Seite gefunden.";
+$a->strings["Delegates are able to manage all aspects of this account/page except for basic account settings. Please do not delegate your personal account to anybody that you do not trust completely."] = "Bevollmächtigte sind in der Lage, alle Aspekte dieses Kontos/dieser Seite zu verwalten, abgesehen von den Grundeinstellungen des Kontos. Bitte gib niemandem eine Bevollmächtigung für Deinen privaten Account, dem Du nicht absolut vertraust!";
+$a->strings["Existing Page Managers"] = "Vorhandene Seitenmanager";
+$a->strings["Existing Page Delegates"] = "Vorhandene Bevollmächtigte für die Seite";
+$a->strings["Potential Delegates"] = "Potentielle Bevollmächtigte";
+$a->strings["Add"] = "Hinzufügen";
+$a->strings["No entries."] = "Keine Einträge.";
+$a->strings["Credits"] = "Credits";
+$a->strings["Friendica is a community project, that would not be possible without the help of many people. Here is a list of those who have contributed to the code or the translation of Friendica. Thank you all!"] = "Friendica ist ein Gemeinschaftsprojekt, das nicht ohne die Hilfe vieler Personen möglich wäre. Hier ist eine Aufzählung der Personen, die zum Code oder der Übersetzung beigetragen haben. Dank an alle !";
+$a->strings["- select -"] = "- auswählen -";
 $a->strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s folgt %2\$s %3\$s";
 $a->strings["Item not available."] = "Beitrag nicht verfügbar.";
 $a->strings["Item was not found."] = "Beitrag konnte nicht gefunden werden.";
-$a->strings["%d contact edited."] = array(
-       0 => "%d Kontakt bearbeitet.",
-       1 => "%d Kontakte bearbeitet.",
-);
-$a->strings["Could not access contact record."] = "Konnte nicht auf die Kontaktdaten zugreifen.";
-$a->strings["Could not locate selected profile."] = "Konnte das ausgewählte Profil nicht finden.";
-$a->strings["Contact updated."] = "Kontakt aktualisiert.";
-$a->strings["Failed to update contact record."] = "Aktualisierung der Kontaktdaten fehlgeschlagen.";
-$a->strings["Contact has been blocked"] = "Kontakt wurde blockiert";
-$a->strings["Contact has been unblocked"] = "Kontakt wurde wieder freigegeben";
-$a->strings["Contact has been ignored"] = "Kontakt wurde ignoriert";
-$a->strings["Contact has been unignored"] = "Kontakt wird nicht mehr ignoriert";
-$a->strings["Contact has been archived"] = "Kontakt wurde archiviert";
-$a->strings["Contact has been unarchived"] = "Kontakt wurde aus dem Archiv geholt";
-$a->strings["Drop contact"] = "Kontakt löschen";
-$a->strings["Do you really want to delete this contact?"] = "Möchtest Du wirklich diesen Kontakt löschen?";
-$a->strings["Contact has been removed."] = "Kontakt wurde entfernt.";
-$a->strings["You are mutual friends with %s"] = "Du hast mit %s eine beidseitige Freundschaft";
-$a->strings["You are sharing with %s"] = "Du teilst mit %s";
-$a->strings["%s is sharing with you"] = "%s teilt mit Dir";
-$a->strings["Private communications are not available for this contact."] = "Private Kommunikation ist für diesen Kontakt nicht verfügbar.";
-$a->strings["(Update was successful)"] = "(Aktualisierung war erfolgreich)";
-$a->strings["(Update was not successful)"] = "(Aktualisierung war nicht erfolgreich)";
-$a->strings["Suggest friends"] = "Kontakte vorschlagen";
-$a->strings["Network type: %s"] = "Netzwerktyp: %s";
-$a->strings["Communications lost with this contact!"] = "Verbindungen mit diesem Kontakt verloren!";
-$a->strings["Fetch further information for feeds"] = "Weitere Informationen zu Feeds holen";
-$a->strings["Fetch information"] = "Beziehe Information";
-$a->strings["Fetch information and keywords"] = "Beziehe Information und Schlüsselworte";
-$a->strings["Contact"] = "Kontakt: ";
-$a->strings["Profile Visibility"] = "Profil-Sichtbarkeit";
-$a->strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Bitte wähle eines Deiner Profile das angezeigt werden soll, wenn %s Dein Profil aufruft.";
-$a->strings["Contact Information / Notes"] = "Kontakt Informationen / Notizen";
-$a->strings["Edit contact notes"] = "Notizen zum Kontakt bearbeiten";
-$a->strings["Block/Unblock contact"] = "Kontakt blockieren/freischalten";
-$a->strings["Ignore contact"] = "Ignoriere den Kontakt";
-$a->strings["Repair URL settings"] = "URL Einstellungen reparieren";
-$a->strings["View conversations"] = "Unterhaltungen anzeigen";
-$a->strings["Last update:"] = "Letzte Aktualisierung: ";
-$a->strings["Update public posts"] = "Öffentliche Beiträge aktualisieren";
-$a->strings["Update now"] = "Jetzt aktualisieren";
-$a->strings["Unignore"] = "Ignorieren aufheben";
-$a->strings["Currently blocked"] = "Derzeit geblockt";
-$a->strings["Currently ignored"] = "Derzeit ignoriert";
-$a->strings["Currently archived"] = "Momentan archiviert";
-$a->strings["Replies/likes to your public posts <strong>may</strong> still be visible"] = "Antworten/Likes auf deine öffentlichen Beiträge <strong>könnten</strong> weiterhin sichtbar sein";
-$a->strings["Notification for new posts"] = "Benachrichtigung bei neuen Beiträgen";
-$a->strings["Send a notification of every new post of this contact"] = "Sende eine Benachrichtigung, wann immer dieser Kontakt einen neuen Beitrag schreibt.";
-$a->strings["Blacklisted keywords"] = "Blacklistete Schlüsselworte ";
-$a->strings["Comma separated list of keywords that should not be converted to hashtags, when \"Fetch information and keywords\" is selected"] = "Komma-Separierte Liste mit Schlüsselworten, die nicht in Hashtags konvertiert werden, wenn \"Beziehe Information und Schlüsselworte\" aktiviert wurde";
-$a->strings["Actions"] = "Aktionen";
-$a->strings["Contact Settings"] = "Kontakteinstellungen";
-$a->strings["Suggestions"] = "Kontaktvorschläge";
-$a->strings["Suggest potential friends"] = "Kontakte vorschlagen";
-$a->strings["All Contacts"] = "Alle Kontakte";
-$a->strings["Show all contacts"] = "Alle Kontakte anzeigen";
-$a->strings["Unblocked"] = "Ungeblockt";
-$a->strings["Only show unblocked contacts"] = "Nur nicht-blockierte Kontakte anzeigen";
-$a->strings["Blocked"] = "Geblockt";
-$a->strings["Only show blocked contacts"] = "Nur blockierte Kontakte anzeigen";
-$a->strings["Ignored"] = "Ignoriert";
-$a->strings["Only show ignored contacts"] = "Nur ignorierte Kontakte anzeigen";
-$a->strings["Archived"] = "Archiviert";
-$a->strings["Only show archived contacts"] = "Nur archivierte Kontakte anzeigen";
-$a->strings["Hidden"] = "Verborgen";
-$a->strings["Only show hidden contacts"] = "Nur verborgene Kontakte anzeigen";
-$a->strings["Search your contacts"] = "Suche in deinen Kontakten";
-$a->strings["Update"] = "Aktualisierungen";
-$a->strings["Archive"] = "Archivieren";
-$a->strings["Unarchive"] = "Aus Archiv zurückholen";
-$a->strings["Batch Actions"] = "Stapelverarbeitung";
-$a->strings["View all contacts"] = "Alle Kontakte anzeigen";
-$a->strings["Common Friends"] = "Gemeinsame Kontakte";
-$a->strings["View all common friends"] = "Alle Kontakte anzeigen";
-$a->strings["Advanced Contact Settings"] = "Fortgeschrittene Kontakteinstellungen";
-$a->strings["Mutual Friendship"] = "Beidseitige Freundschaft";
-$a->strings["is a fan of yours"] = "ist ein Fan von dir";
-$a->strings["you are a fan of"] = "Du bist Fan von";
-$a->strings["Toggle Blocked status"] = "Geblockt-Status ein-/ausschalten";
-$a->strings["Toggle Ignored status"] = "Ignoriert-Status ein-/ausschalten";
-$a->strings["Toggle Archive status"] = "Archiviert-Status ein-/ausschalten";
-$a->strings["Delete contact"] = "Lösche den Kontakt";
-$a->strings["Submit Request"] = "Anfrage abschicken";
-$a->strings["You already added this contact."] = "Du hast den Kontakt bereits hinzugefügt.";
-$a->strings["Diaspora support isn't enabled. Contact can't be added."] = "Diaspora Unterstützung ist nicht aktiviert. Der Kontakt kann nicht zugefügt werden.";
-$a->strings["OStatus support is disabled. Contact can't be added."] = "OStatus Unterstützung ist nicht aktiviert. Der Kontakt kann nicht zugefügt werden.";
-$a->strings["The network type couldn't be detected. Contact can't be added."] = "Der Netzwerktype wurde nicht erkannt. Der Kontakt kann nicht hinzugefügt werden.";
-$a->strings["Please answer the following:"] = "Bitte beantworte folgendes:";
-$a->strings["Does %s know you?"] = "Kennt %s Dich?";
-$a->strings["Add a personal note:"] = "Eine persönliche Notiz beifügen:";
-$a->strings["Your Identity Address:"] = "Adresse Deines Profils:";
-$a->strings["Contact added"] = "Kontakt hinzugefügt";
+$a->strings["You must be logged in to use addons. "] = "Sie müssen angemeldet sein um Addons benutzen zu können.";
 $a->strings["Applications"] = "Anwendungen";
 $a->strings["No installed applications."] = "Keine Applikationen installiert.";
-$a->strings["Do you really want to delete this suggestion?"] = "Möchtest Du wirklich diese Empfehlung löschen?";
-$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Keine Vorschläge verfügbar. Falls der Server frisch aufgesetzt wurde, versuche es bitte in 24 Stunden noch einmal.";
-$a->strings["Ignore/Hide"] = "Ignorieren/Verbergen";
 $a->strings["Not Extended"] = "Nicht erweitert.";
-$a->strings["Item has been removed."] = "Eintrag wurde entfernt.";
-$a->strings["No contacts in common."] = "Keine gemeinsamen Kontakte.";
 $a->strings["Welcome to Friendica"] = "Willkommen bei Friendica";
 $a->strings["New Member Checklist"] = "Checkliste für neue Mitglieder";
 $a->strings["We would like to offer some tips and links to help make your experience enjoyable. Click any item to visit the relevant page. A link to this page will be visible from your home page for two weeks after your initial registration and then will quietly disappear."] = "Wir möchten Dir einige Tipps und Links anbieten, die Dir helfen könnten, den Einstieg angenehmer zu machen. Klicke auf ein Element, um die entsprechende Seite zu besuchen. Ein Link zu dieser Seite hier bleibt für Dich an Deiner Pinnwand für zwei Wochen nach dem Registrierungsdatum sichtbar und wird dann verschwinden.";
@@ -1633,6 +852,7 @@ $a->strings["On your <em>Quick Start</em> page - find a brief introduction to yo
 $a->strings["Go to Your Settings"] = "Gehe zu deinen Einstellungen";
 $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."] = "Ändere bitte unter <em>Einstellungen</em> dein Passwort. Außerdem merke dir deine Identifikationsadresse. Diese sieht aus wie eine E-Mail-Adresse und wird benötigt, um Kontakte mit anderen im Friendica Netzwerk zu knüpfen..";
 $a->strings["Review the other settings, particularly the privacy settings. An unpublished directory listing is like having an unlisted phone number. In general, you should probably publish your listing - unless all of your friends and potential friends know exactly how to find you."] = "Überprüfe die restlichen Einstellungen, insbesondere die Einstellungen zur Privatsphäre. Wenn Du Dein Profil nicht veröffentlichst, ist das als wenn Du Deine Telefonnummer nicht ins Telefonbuch einträgst. Im Allgemeinen solltest Du es veröffentlichen - außer all Deine Kontakte und potentiellen Kontakte wissen genau, wie sie Dich finden können.";
+$a->strings["Upload Profile Photo"] = "Profilbild hochladen";
 $a->strings["Upload a profile photo if you have not done so already. Studies have shown that people with real photos of themselves are ten times more likely to make friends than people who do not."] = "Lade ein Profilbild hoch, falls Du es noch nicht getan hast. Studien haben gezeigt, dass es zehnmal wahrscheinlicher ist neue Kontakte zu finden, wenn Du ein Bild von Dir selbst verwendest, als wenn Du dies nicht tust.";
 $a->strings["Edit Your Profile"] = "Editiere dein Profil";
 $a->strings["Edit your <strong>default</strong> profile to your liking. Review the settings for hiding your list of friends and hiding the profile from unknown visitors."] = "Editiere Dein <strong>Standard</strong> Profil nach Deinen Vorlieben. Überprüfe die Einstellungen zum Verbergen Deiner Kontaktliste vor unbekannten Betrachtern des Profils.";
@@ -1657,94 +877,368 @@ $a->strings["Our <strong>help</strong> pages may be consulted for detail on othe
 $a->strings["Remove My Account"] = "Konto löschen";
 $a->strings["This will completely remove your account. Once this has been done it is not recoverable."] = "Dein Konto wird endgültig gelöscht. Es gibt keine Möglichkeit, es wiederherzustellen.";
 $a->strings["Please enter your password for verification:"] = "Bitte gib Dein Passwort zur Verifikation ein:";
+$a->strings["Item not found"] = "Beitrag nicht gefunden";
+$a->strings["Edit post"] = "Beitrag bearbeiten";
+$a->strings["Time Conversion"] = "Zeitumrechnung";
+$a->strings["Friendica provides this service for sharing events with other networks and friends in unknown timezones."] = "Friendica bietet diese Funktion an, um das Teilen von Events mit Kontakten zu vereinfachen, deren Zeitzone nicht ermittelt werden kann.";
+$a->strings["UTC time: %s"] = "UTC Zeit: %s";
+$a->strings["Current timezone: %s"] = "Aktuelle Zeitzone: %s";
+$a->strings["Converted localtime: %s"] = "Umgerechnete lokale Zeit: %s";
+$a->strings["Please select your timezone:"] = "Bitte wähle Deine Zeitzone:";
+$a->strings["The post was created"] = "Der Beitrag wurde angelegt";
+$a->strings["Group created."] = "Gruppe erstellt.";
+$a->strings["Could not create group."] = "Konnte die Gruppe nicht erstellen.";
+$a->strings["Group not found."] = "Gruppe nicht gefunden.";
+$a->strings["Group name changed."] = "Gruppenname geändert.";
+$a->strings["Save Group"] = "Gruppe speichern";
+$a->strings["Create a group of contacts/friends."] = "Eine Kontaktgruppe anlegen.";
+$a->strings["Group removed."] = "Gruppe entfernt.";
+$a->strings["Unable to remove group."] = "Konnte die Gruppe nicht entfernen.";
+$a->strings["Group Editor"] = "Gruppeneditor";
+$a->strings["Members"] = "Mitglieder";
+$a->strings["All Contacts"] = "Alle Kontakte";
+$a->strings["Group is empty"] = "Gruppe ist leer";
+$a->strings["Number of daily wall messages for %s exceeded. Message failed."] = "Maximale Anzahl der täglichen Pinnwand Nachrichten für %s ist überschritten. Zustellung fehlgeschlagen.";
+$a->strings["No recipient selected."] = "Kein Empfänger gewählt.";
+$a->strings["Unable to check your home location."] = "Konnte Deinen Heimatort nicht bestimmen.";
+$a->strings["Message could not be sent."] = "Nachricht konnte nicht gesendet werden.";
+$a->strings["Message collection failure."] = "Konnte Nachrichten nicht abrufen.";
+$a->strings["Message sent."] = "Nachricht gesendet.";
+$a->strings["No recipient."] = "Kein Empfänger.";
+$a->strings["Send Private Message"] = "Private Nachricht senden";
+$a->strings["If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders."] = "Wenn Du möchtest, dass %s Dir antworten kann, überprüfe Deine Privatsphären-Einstellungen und erlaube private Nachrichten von unbekannten Absendern.";
+$a->strings["To:"] = "An:";
+$a->strings["Subject:"] = "Betreff:";
+$a->strings["link"] = "Link";
+$a->strings["Authorize application connection"] = "Verbindung der Applikation autorisieren";
+$a->strings["Return to your app and insert this Securty Code:"] = "Gehe zu Deiner Anwendung zurück und trage dort folgenden Sicherheitscode ein:";
+$a->strings["Please login to continue."] = "Bitte melde Dich an um fortzufahren.";
+$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Möchtest Du dieser Anwendung den Zugriff auf Deine Beiträge und Kontakte, sowie das Erstellen neuer Beiträge in Deinem Namen gestatten?";
+$a->strings["No"] = "Nein";
+$a->strings["Source (bbcode) text:"] = "Quelle (bbcode) Text:";
+$a->strings["Source (Diaspora) text to convert to BBcode:"] = "Eingabe (Diaspora) nach BBCode zu konvertierender Text:";
+$a->strings["Source input: "] = "Originaltext:";
+$a->strings["bb2html (raw HTML): "] = "bb2html (reines HTML): ";
+$a->strings["bb2html: "] = "bb2html: ";
+$a->strings["bb2html2bb: "] = "bb2html2bb: ";
+$a->strings["bb2md: "] = "bb2md: ";
+$a->strings["bb2md2html: "] = "bb2md2html: ";
+$a->strings["bb2dia2bb: "] = "bb2dia2bb: ";
+$a->strings["bb2md2html2bb: "] = "bb2md2html2bb: ";
+$a->strings["Source input (Diaspora format): "] = "Originaltext (Diaspora Format): ";
+$a->strings["diaspora2bb: "] = "diaspora2bb: ";
+$a->strings["Subscribing to OStatus contacts"] = "OStatus Kontakten folgen";
+$a->strings["No contact provided."] = "Keine Kontakte gefunden.";
+$a->strings["Couldn't fetch information for contact."] = "Konnte die Kontaktinformationen nicht einholen.";
+$a->strings["Couldn't fetch friends for contact."] = "Konnte die Kontaktliste des Kontakts nicht abfragen.";
+$a->strings["success"] = "Erfolg";
+$a->strings["failed"] = "Fehlgeschlagen";
+$a->strings["ignored"] = "Ignoriert";
+$a->strings["%1\$s welcomes %2\$s"] = "%1\$s heißt %2\$s herzlich willkommen";
+$a->strings["Unable to locate contact information."] = "Konnte die Kontaktinformationen nicht finden.";
+$a->strings["Do you really want to delete this message?"] = "Möchtest Du wirklich diese Nachricht löschen?";
+$a->strings["Message deleted."] = "Nachricht gelöscht.";
+$a->strings["Conversation removed."] = "Unterhaltung gelöscht.";
+$a->strings["No messages."] = "Keine Nachrichten.";
+$a->strings["Message not available."] = "Nachricht nicht verfügbar.";
+$a->strings["Delete message"] = "Nachricht löschen";
+$a->strings["Delete conversation"] = "Unterhaltung löschen";
+$a->strings["No secure communications available. You <strong>may</strong> be able to respond from the sender's profile page."] = "Sichere Kommunikation ist nicht verfügbar. <strong>Eventuell</strong> kannst Du auf der Profilseite des Absenders antworten.";
+$a->strings["Send Reply"] = "Antwort senden";
+$a->strings["Unknown sender - %s"] = "'Unbekannter Absender - %s";
+$a->strings["You and %s"] = "Du und %s";
+$a->strings["%s and You"] = "%s und Du";
+$a->strings["D, d M Y - g:i A"] = "D, d. M Y - g:i A";
+$a->strings["%d message"] = array(
+       0 => "%d Nachricht",
+       1 => "%d Nachrichten",
+);
+$a->strings["Manage Identities and/or Pages"] = "Verwalte Identitäten und/oder Seiten";
+$a->strings["Toggle between different identities or community/group pages which share your account details or which you have been granted \"manage\" permissions"] = "Zwischen verschiedenen Identitäten oder Gemeinschafts-/Gruppenseiten wechseln, die Deine Kontoinformationen teilen oder zu denen Du „Verwalten“-Befugnisse bekommen hast.";
+$a->strings["Select an identity to manage: "] = "Wähle eine Identität zum Verwalten aus: ";
+$a->strings["Contact settings applied."] = "Einstellungen zum Kontakt angewandt.";
+$a->strings["Contact update failed."] = "Konnte den Kontakt nicht aktualisieren.";
+$a->strings["Contact not found."] = "Kontakt nicht gefunden.";
+$a->strings["<strong>WARNING: This is highly advanced</strong> and if you enter incorrect information your communications with this contact may stop working."] = "<strong>ACHTUNG: Das sind Experten-Einstellungen!</strong> Wenn Du etwas Falsches eingibst, funktioniert die Kommunikation mit diesem Kontakt evtl. nicht mehr.";
+$a->strings["Please use your browser 'Back' button <strong>now</strong> if you are uncertain what to do on this page."] = "Bitte nutze den Zurück-Button Deines Browsers <strong>jetzt</strong>, wenn Du Dir unsicher bist, was Du tun willst.";
+$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["Return to contact editor"] = "Zurück zum Kontakteditor";
+$a->strings["Refetch contact data"] = "Kontaktdaten neu laden";
+$a->strings["Remote Self"] = "Entfernte Konten";
+$a->strings["Mirror postings from this contact"] = "Spiegle Beiträge dieses Kontakts";
+$a->strings["Mark this contact as remote_self, this will cause friendica to repost new entries from this contact."] = "Markiere diesen Kontakt als remote_self (entferntes Konto), dies veranlasst Friendica alle Top-Level Beiträge dieses Kontakts an all Deine Kontakte zu senden.";
+$a->strings["Name"] = "Name";
+$a->strings["Account Nickname"] = "Konto-Spitzname";
+$a->strings["@Tagname - overrides Name/Nickname"] = "@Tagname - überschreibt Name/Spitzname";
+$a->strings["Account URL"] = "Konto-URL";
+$a->strings["Friend Request URL"] = "URL für Kontaktschaftsanfragen";
+$a->strings["Friend Confirm URL"] = "URL für Bestätigungen von Kontaktanfragen";
+$a->strings["Notification Endpoint URL"] = "URL-Endpunkt für Benachrichtigungen";
+$a->strings["Poll/Feed URL"] = "Pull/Feed-URL";
+$a->strings["New photo from this URL"] = "Neues Foto von dieser URL";
+$a->strings["No such group"] = "Es gibt keine solche Gruppe";
+$a->strings["Group: %s"] = "Gruppe: %s";
+$a->strings["This entry was edited"] = "Dieser Beitrag wurde bearbeitet.";
+$a->strings["%d comment"] = array(
+       0 => "%d Kommentar",
+       1 => "%d Kommentare",
+);
+$a->strings["Private Message"] = "Private Nachricht";
+$a->strings["I like this (toggle)"] = "Ich mag das (toggle)";
+$a->strings["like"] = "mag ich";
+$a->strings["I don't like this (toggle)"] = "Ich mag das nicht (toggle)";
+$a->strings["dislike"] = "mag ich nicht";
+$a->strings["Share this"] = "Weitersagen";
+$a->strings["share"] = "Teilen";
+$a->strings["This is you"] = "Das bist Du";
+$a->strings["Comment"] = "Kommentar";
+$a->strings["Bold"] = "Fett";
+$a->strings["Italic"] = "Kursiv";
+$a->strings["Underline"] = "Unterstrichen";
+$a->strings["Quote"] = "Zitat";
+$a->strings["Code"] = "Code";
+$a->strings["Image"] = "Bild";
+$a->strings["Link"] = "Link";
+$a->strings["Video"] = "Video";
+$a->strings["Edit"] = "Bearbeiten";
+$a->strings["add star"] = "markieren";
+$a->strings["remove star"] = "Markierung entfernen";
+$a->strings["toggle star status"] = "Markierung umschalten";
+$a->strings["starred"] = "markiert";
+$a->strings["add tag"] = "Tag hinzufügen";
+$a->strings["ignore thread"] = "Thread ignorieren";
+$a->strings["unignore thread"] = "Thread nicht mehr ignorieren";
+$a->strings["toggle ignore status"] = "Ignoriert-Status ein-/ausschalten";
+$a->strings["save to folder"] = "In Ordner speichern";
+$a->strings["I will attend"] = "Ich werde teilnehmen";
+$a->strings["I will not attend"] = "Ich werde nicht teilnehmen";
+$a->strings["I might attend"] = "Ich werde eventuell teilnehmen";
+$a->strings["to"] = "zu";
+$a->strings["Wall-to-Wall"] = "Wall-to-Wall";
+$a->strings["via Wall-To-Wall:"] = "via Wall-To-Wall:";
+$a->strings["Friend suggestion sent."] = "Kontaktvorschlag gesendet.";
+$a->strings["Suggest Friends"] = "Kontakte vorschlagen";
+$a->strings["Suggest a friend for %s"] = "Schlage %s einen Kontakt vor";
 $a->strings["Mood"] = "Stimmung";
 $a->strings["Set your current mood and tell your friends"] = "Wähle Deine aktuelle Stimmung und erzähle sie Deinen Kontakten";
-$a->strings["Item not found"] = "Beitrag nicht gefunden";
-$a->strings["Edit post"] = "Beitrag bearbeiten";
-$a->strings["Warning: This group contains %s member from a network that doesn't allow non public messages."] = array(
-       0 => "Warnung: Diese Gruppe beinhaltet %s Person aus einem Netzwerk das keine nicht öffentlichen Beiträge empfangen kann.",
-       1 => "Warnung: Diese Gruppe beinhaltet %s Personen aus Netzwerken die keine nicht-öffentlichen Beiträge empfangen können.",
-);
-$a->strings["Messages in this group won't be send to these receivers."] = "Beiträge in dieser Gruppe werden deshalb nicht an diese Personen zugestellt werden.";
-$a->strings["Private messages to this person are at risk of public disclosure."] = "Private Nachrichten an diese Person könnten an die Öffentlichkeit gelangen.";
-$a->strings["Invalid contact."] = "Ungültiger Kontakt.";
-$a->strings["Commented Order"] = "Neueste Kommentare";
-$a->strings["Sort by Comment Date"] = "Nach Kommentardatum sortieren";
-$a->strings["Posted Order"] = "Neueste Beiträge";
-$a->strings["Sort by Post Date"] = "Nach Beitragsdatum sortieren";
-$a->strings["Posts that mention or involve you"] = "Beiträge, in denen es um Dich geht";
-$a->strings["New"] = "Neue";
-$a->strings["Activity Stream - by date"] = "Aktivitäten-Stream - nach Datum";
-$a->strings["Shared Links"] = "Geteilte Links";
-$a->strings["Interesting Links"] = "Interessante Links";
-$a->strings["Starred"] = "Markierte";
-$a->strings["Favourite Posts"] = "Favorisierte Beiträge";
+$a->strings["Poke/Prod"] = "Anstupsen";
+$a->strings["poke, prod or do other things to somebody"] = "Stupse Leute an oder mache anderes mit ihnen";
+$a->strings["Recipient"] = "Empfänger";
+$a->strings["Choose what you wish to do to recipient"] = "Was willst Du mit dem Empfänger machen:";
+$a->strings["Make this post private"] = "Diesen Beitrag privat machen";
+$a->strings["Image uploaded but image cropping failed."] = "Bild hochgeladen, aber das Zuschneiden schlug fehl.";
+$a->strings["Image size reduction [%s] failed."] = "Verkleinern der Bildgröße von [%s] scheiterte.";
+$a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Drücke Umschalt+Neu Laden oder leere den Browser-Cache, falls das neue Foto nicht gleich angezeigt wird.";
+$a->strings["Unable to process image"] = "Bild konnte nicht verarbeitet werden";
+$a->strings["Image exceeds size limit of %s"] = "Bildgröße überschreitet das Limit von %s";
+$a->strings["Unable to process image."] = "Konnte das Bild nicht bearbeiten.";
+$a->strings["Upload File:"] = "Datei hochladen:";
+$a->strings["Select a profile:"] = "Profil auswählen:";
+$a->strings["Upload"] = "Hochladen";
+$a->strings["or"] = "oder";
+$a->strings["skip this step"] = "diesen Schritt überspringen";
+$a->strings["select a photo from your photo albums"] = "wähle ein Foto aus deinen Fotoalben";
+$a->strings["Crop Image"] = "Bild zurechtschneiden";
+$a->strings["Please adjust the image cropping for optimum viewing."] = "Passe bitte den Bildausschnitt an, damit das Bild optimal dargestellt werden kann.";
+$a->strings["Done Editing"] = "Bearbeitung abgeschlossen";
+$a->strings["Image uploaded successfully."] = "Bild erfolgreich hochgeladen.";
+$a->strings["Image upload failed."] = "Hochladen des Bildes gescheitert.";
+$a->strings["Account approved."] = "Konto freigegeben.";
+$a->strings["Registration revoked for %s"] = "Registrierung für %s wurde zurückgezogen";
+$a->strings["Please login."] = "Bitte melde Dich an.";
+$a->strings["Invalid request identifier."] = "Invalid request identifier.";
+$a->strings["Discard"] = "Verwerfen";
+$a->strings["Ignore"] = "Ignorieren";
+$a->strings["Network Notifications"] = "Netzwerk Benachrichtigungen";
+$a->strings["Personal Notifications"] = "Persönliche Benachrichtigungen";
+$a->strings["Home Notifications"] = "Pinnwand Benachrichtigungen";
+$a->strings["Show Ignored Requests"] = "Zeige ignorierte Anfragen";
+$a->strings["Hide Ignored Requests"] = "Verberge ignorierte Anfragen";
+$a->strings["Notification type: "] = "Benachrichtigungstyp: ";
+$a->strings["suggested by %s"] = "vorgeschlagen von %s";
+$a->strings["Hide this contact from others"] = "Verbirg diesen Kontakt vor Anderen";
+$a->strings["Post a new friend activity"] = "Neue-Kontakt Nachricht senden";
+$a->strings["if applicable"] = "falls anwendbar";
+$a->strings["Approve"] = "Genehmigen";
+$a->strings["Claims to be known to you: "] = "Behauptet Dich zu kennen: ";
+$a->strings["yes"] = "ja";
+$a->strings["no"] = "nein";
+$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: "] = "Soll Deine Beziehung beidseitig sein oder nicht? \"Kontakt\" bedeutet, ihr könnt gegenseitig die Beiträge des Anderen lesen dürft. \"Fan/Verehrer\", dass du das lesen deiner Beiträge erlaubst aber nicht die Beiträge der anderen Seite lesen möchtest. Genehmigen als:";
+$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: "] = "Soll Deine Beziehung beidseitig sein oder nicht? \"Freund\" bedeutet, ihr gegenseitig die Beiträge des Anderen lesen dürft. \"Teilenden\", das du das lesen deiner Beiträge erlaubst aber nicht die Beiträge der anderen Seite lesen möchtest. Genehmigen als:";
+$a->strings["Friend"] = "Kontakt";
+$a->strings["Sharer"] = "Teilenden";
+$a->strings["Fan/Admirer"] = "Fan/Verehrer";
+$a->strings["Profile URL"] = "Profil URL";
+$a->strings["No introductions."] = "Keine Kontaktanfragen.";
+$a->strings["Show unread"] = "Ungelesene anzeigen";
+$a->strings["Show all"] = "Alle anzeigen";
+$a->strings["No more %s notifications."] = "Keine weiteren %s Benachrichtigungen";
+$a->strings["Profile not found."] = "Profil nicht gefunden.";
+$a->strings["Profile deleted."] = "Profil gelöscht.";
+$a->strings["Profile-"] = "Profil-";
+$a->strings["New profile created."] = "Neues Profil angelegt.";
+$a->strings["Profile unavailable to clone."] = "Profil nicht zum Duplizieren verfügbar.";
+$a->strings["Profile Name is required."] = "Profilname ist erforderlich.";
+$a->strings["Marital Status"] = "Familienstand";
+$a->strings["Romantic Partner"] = "Romanze";
+$a->strings["Work/Employment"] = "Arbeit / Beschäftigung";
+$a->strings["Religion"] = "Religion";
+$a->strings["Political Views"] = "Politische Ansichten";
+$a->strings["Gender"] = "Geschlecht";
+$a->strings["Sexual Preference"] = "Sexuelle Vorlieben";
+$a->strings["XMPP"] = "XMPP";
+$a->strings["Homepage"] = "Webseite";
+$a->strings["Interests"] = "Interessen";
+$a->strings["Address"] = "Adresse";
+$a->strings["Location"] = "Wohnort";
+$a->strings["Profile updated."] = "Profil aktualisiert.";
+$a->strings[" and "] = " und ";
+$a->strings["public profile"] = "öffentliches Profil";
+$a->strings["%1\$s changed %2\$s to &ldquo;%3\$s&rdquo;"] = "%1\$s hat %2\$s geändert auf &ldquo;%3\$s&rdquo;";
+$a->strings[" - Visit %1\$s's %2\$s"] = " – %1\$ss %2\$s besuchen";
+$a->strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s hat folgendes aktualisiert %2\$s, verändert wurde %3\$s.";
+$a->strings["Hide contacts and friends:"] = "Kontakte und Freunde verbergen";
+$a->strings["Hide your contact/friend list from viewers of this profile?"] = "Liste der Kontakte vor Betrachtern dieses Profils verbergen?";
+$a->strings["Show more profile fields:"] = "Zeige mehr Profil-Felder:";
+$a->strings["Profile Actions"] = "Profilaktionen";
+$a->strings["Edit Profile Details"] = "Profil bearbeiten";
+$a->strings["Change Profile Photo"] = "Profilbild ändern";
+$a->strings["View this profile"] = "Dieses Profil anzeigen";
+$a->strings["Create a new profile using these settings"] = "Neues Profil anlegen und diese Einstellungen verwenden";
+$a->strings["Clone this profile"] = "Dieses Profil duplizieren";
+$a->strings["Delete this profile"] = "Dieses Profil löschen";
+$a->strings["Basic information"] = "Grundinformationen";
+$a->strings["Profile picture"] = "Profilbild";
+$a->strings["Preferences"] = "Vorlieben";
+$a->strings["Status information"] = "Status Informationen";
+$a->strings["Additional information"] = "Zusätzliche Informationen";
+$a->strings["Relation"] = "Beziehung";
+$a->strings["Your Gender:"] = "Dein Geschlecht:";
+$a->strings["<span class=\"heart\">&hearts;</span> Marital Status:"] = "<span class=\"heart\">&hearts;</span> Beziehungsstatus:";
+$a->strings["Example: fishing photography software"] = "Beispiel: Fischen Fotografie Software";
+$a->strings["Profile Name:"] = "Profilname:";
+$a->strings["Required"] = "Benötigt";
+$a->strings["This is your <strong>public</strong> profile.<br />It <strong>may</strong> be visible to anybody using the internet."] = "Dies ist Dein <strong>öffentliches</strong> Profil.<br />Es <strong>könnte</strong> für jeden Nutzer des Internets sichtbar sein.";
+$a->strings["Your Full Name:"] = "Dein kompletter Name:";
+$a->strings["Title/Description:"] = "Titel/Beschreibung:";
+$a->strings["Street Address:"] = "Adresse:";
+$a->strings["Locality/City:"] = "Wohnort:";
+$a->strings["Region/State:"] = "Region/Bundesstaat:";
+$a->strings["Postal/Zip Code:"] = "Postleitzahl:";
+$a->strings["Country:"] = "Land:";
+$a->strings["Who: (if applicable)"] = "Wer: (falls anwendbar)";
+$a->strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Beispiele: cathy123, Cathy Williams, cathy@example.com";
+$a->strings["Since [date]:"] = "Seit [Datum]:";
+$a->strings["Tell us about yourself..."] = "Erzähle uns ein bisschen von Dir …";
+$a->strings["XMPP (Jabber) address:"] = "XMPP (Jabber) Adresse";
+$a->strings["The XMPP address will be propagated to your contacts so that they can follow you."] = "Die XMPP Adresse wird an deine Kontakte verteilt werden, so dass sie auch über XMPP mit dir in Kontakt treten können.";
+$a->strings["Homepage URL:"] = "Adresse der Homepage:";
+$a->strings["Religious Views:"] = "Religiöse Ansichten:";
+$a->strings["Public Keywords:"] = "Öffentliche Schlüsselwörter:";
+$a->strings["(Used for suggesting potential friends, can be seen by others)"] = "(Wird verwendet, um potentielle Kontakte zu finden, kann von Kontakten eingesehen werden)";
+$a->strings["Private Keywords:"] = "Private Schlüsselwörter:";
+$a->strings["(Used for searching profiles, never shown to others)"] = "(Wird für die Suche nach Profilen verwendet und niemals veröffentlicht)";
+$a->strings["Musical interests"] = "Musikalische Interessen";
+$a->strings["Books, literature"] = "Bücher, Literatur";
+$a->strings["Television"] = "Fernsehen";
+$a->strings["Film/dance/culture/entertainment"] = "Filme/Tänze/Kultur/Unterhaltung";
+$a->strings["Hobbies/Interests"] = "Hobbies/Interessen";
+$a->strings["Love/romance"] = "Liebe/Romantik";
+$a->strings["Work/employment"] = "Arbeit/Anstellung";
+$a->strings["School/education"] = "Schule/Ausbildung";
+$a->strings["Contact information and Social Networks"] = "Kontaktinformationen und Soziale Netzwerke";
+$a->strings["Edit/Manage Profiles"] = "Bearbeite/Verwalte Profile";
+$a->strings["No friends to display."] = "Keine Kontakte zum Anzeigen.";
+$a->strings["Access to this profile has been restricted."] = "Der Zugriff zu diesem Profil wurde eingeschränkt.";
+$a->strings["View"] = "Ansehen";
+$a->strings["Previous"] = "Vorherige";
+$a->strings["Next"] = "Nächste";
+$a->strings["list"] = "Liste";
+$a->strings["User not found"] = "Nutzer nicht gefunden";
+$a->strings["This calendar format is not supported"] = "Dieses Kalenderformat wird nicht unterstützt.";
+$a->strings["No exportable data found"] = "Keine exportierbaren Daten gefunden";
+$a->strings["calendar"] = "Kalender";
+$a->strings["No contacts in common."] = "Keine gemeinsamen Kontakte.";
+$a->strings["Common Friends"] = "Gemeinsame Kontakte";
 $a->strings["Not available."] = "Nicht verfügbar.";
-$a->strings["Time Conversion"] = "Zeitumrechnung";
-$a->strings["Friendica provides this service for sharing events with other networks and friends in unknown timezones."] = "Friendica bietet diese Funktion an, um das Teilen von Events mit Kontakten zu vereinfachen, deren Zeitzone nicht ermittelt werden kann.";
-$a->strings["UTC time: %s"] = "UTC Zeit: %s";
-$a->strings["Current timezone: %s"] = "Aktuelle Zeitzone: %s";
-$a->strings["Converted localtime: %s"] = "Umgerechnete lokale Zeit: %s";
-$a->strings["Please select your timezone:"] = "Bitte wähle Deine Zeitzone:";
-$a->strings["The post was created"] = "Der Beitrag wurde angelegt";
-$a->strings["Group created."] = "Gruppe erstellt.";
-$a->strings["Could not create group."] = "Konnte die Gruppe nicht erstellen.";
-$a->strings["Group not found."] = "Gruppe nicht gefunden.";
-$a->strings["Group name changed."] = "Gruppenname geändert.";
-$a->strings["Save Group"] = "Gruppe speichern";
-$a->strings["Create a group of contacts/friends."] = "Eine Kontaktgruppe anlegen.";
-$a->strings["Group removed."] = "Gruppe entfernt.";
-$a->strings["Unable to remove group."] = "Konnte die Gruppe nicht entfernen.";
-$a->strings["Group Editor"] = "Gruppeneditor";
-$a->strings["Members"] = "Mitglieder";
-$a->strings["This introduction has already been accepted."] = "Diese Kontaktanfrage wurde bereits akzeptiert.";
-$a->strings["Profile location is not valid or does not contain profile information."] = "Profiladresse ist ungültig oder stellt keine Profildaten zur Verfügung.";
-$a->strings["Warning: profile location has no identifiable owner name."] = "Warnung: Es konnte kein Name des Besitzers von der angegebenen Profiladresse gefunden werden.";
-$a->strings["Warning: profile location has no profile photo."] = "Warnung: Es gibt kein Profilbild bei der angegebenen Profiladresse.";
-$a->strings["%d required parameter was not found at the given location"] = array(
-       0 => "%d benötigter Parameter wurde an der angegebenen Stelle nicht gefunden",
-       1 => "%d benötigte Parameter wurden an der angegebenen Stelle nicht gefunden",
-);
-$a->strings["Introduction complete."] = "Kontaktanfrage abgeschlossen.";
-$a->strings["Unrecoverable protocol error."] = "Nicht behebbarer Protokollfehler.";
-$a->strings["Profile unavailable."] = "Profil nicht verfügbar.";
-$a->strings["%s has received too many connection requests today."] = "%s hat heute zu viele Kontaktanfragen erhalten.";
-$a->strings["Spam protection measures have been invoked."] = "Maßnahmen zum Spamschutz wurden ergriffen.";
-$a->strings["Friends are advised to please try again in 24 hours."] = "Freunde sind angehalten, es in 24 Stunden erneut zu versuchen.";
-$a->strings["Invalid locator"] = "Ungültiger Locator";
-$a->strings["Invalid email address."] = "Ungültige E-Mail-Adresse.";
-$a->strings["This account has not been configured for email. Request failed."] = "Dieses Konto ist nicht für E-Mail konfiguriert. Anfrage fehlgeschlagen.";
-$a->strings["You have already introduced yourself here."] = "Du hast Dich hier bereits vorgestellt.";
-$a->strings["Apparently you are already friends with %s."] = "Es scheint so, als ob Du bereits mit %s in Kontakt stehst.";
-$a->strings["Invalid profile URL."] = "Ungültige Profil-URL.";
-$a->strings["Your introduction has been sent."] = "Deine Kontaktanfrage wurde gesendet.";
-$a->strings["Remote subscription can't be done for your network. Please subscribe directly on your system."] = "Entferntes abon­nie­ren kann für dein Netzwerk nicht durchgeführt werden. Bitte nutze direkt die Abonnieren-Funktion deines Systems.   ";
-$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.";
-$a->strings["Please enter your 'Identity Address' from one of the following supported communications networks:"] = "Bitte gib die Adresse Deines Profils in einem der unterstützten sozialen Netzwerke an:";
-$a->strings["If you are not yet a member of the free social web, <a href=\"%s/siteinfo\">follow this link to find a public Friendica site and join us today</a>."] = "Wenn du noch kein Mitglied dieses freien sozialen Netzwerks bist, <a href=\"%s/siteinfo\">folge diesem Link</a> um einen öffentlichen Friendica-Server zu finden und beizutreten.";
-$a->strings["Friend/Connection Request"] = "Kontaktanfrage";
-$a->strings["Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"] = "Beispiele: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca";
-$a->strings["StatusNet/Federated Social Web"] = "StatusNet/Federated Social Web";
-$a->strings[" - please do not use this form.  Instead, enter %s into your Diaspora search bar."] = " - bitte verwende dieses Formular nicht. Stattdessen suche nach %s in Deiner Diaspora Suchleiste.";
-$a->strings["Image uploaded but image cropping failed."] = "Bild hochgeladen, aber das Zuschneiden schlug fehl.";
-$a->strings["Image size reduction [%s] failed."] = "Verkleinern der Bildgröße von [%s] scheiterte.";
-$a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Drücke Umschalt+Neu Laden oder leere den Browser-Cache, falls das neue Foto nicht gleich angezeigt wird.";
-$a->strings["Unable to process image"] = "Bild konnte nicht verarbeitet werden";
-$a->strings["Upload File:"] = "Datei hochladen:";
-$a->strings["Select a profile:"] = "Profil auswählen:";
-$a->strings["Upload"] = "Hochladen";
-$a->strings["or"] = "oder";
-$a->strings["skip this step"] = "diesen Schritt überspringen";
-$a->strings["select a photo from your photo albums"] = "wähle ein Foto aus deinen Fotoalben";
-$a->strings["Crop Image"] = "Bild zurechtschneiden";
-$a->strings["Please adjust the image cropping for optimum viewing."] = "Passe bitte den Bildausschnitt an, damit das Bild optimal dargestellt werden kann.";
-$a->strings["Done Editing"] = "Bearbeitung abgeschlossen";
-$a->strings["Image uploaded successfully."] = "Bild erfolgreich hochgeladen.";
+$a->strings["Global Directory"] = "Weltweites Verzeichnis";
+$a->strings["Find on this site"] = "Auf diesem Server suchen";
+$a->strings["Results for:"] = "Ergebnisse für:";
+$a->strings["Site Directory"] = "Verzeichnis";
+$a->strings["No entries (some entries may be hidden)."] = "Keine Einträge (einige Einträge könnten versteckt sein).";
+$a->strings["People Search - %s"] = "Personensuche - %s";
+$a->strings["Forum Search - %s"] = "Forensuche - %s";
+$a->strings["No matches"] = "Keine Übereinstimmungen";
+$a->strings["Item has been removed."] = "Eintrag wurde entfernt.";
+$a->strings["Event can not end before it has started."] = "Die Veranstaltung kann nicht enden bevor sie beginnt.";
+$a->strings["Event title and start time are required."] = "Der Veranstaltungstitel und die Anfangszeit müssen angegeben werden.";
+$a->strings["Create New Event"] = "Neue Veranstaltung erstellen";
+$a->strings["Event details"] = "Veranstaltungsdetails";
+$a->strings["Starting date and Title are required."] = "Anfangszeitpunkt und Titel werden benötigt";
+$a->strings["Event Starts:"] = "Veranstaltungsbeginn:";
+$a->strings["Finish date/time is not known or not relevant"] = "Enddatum/-zeit ist nicht bekannt oder nicht relevant";
+$a->strings["Event Finishes:"] = "Veranstaltungsende:";
+$a->strings["Adjust for viewer timezone"] = "An Zeitzone des Betrachters anpassen";
+$a->strings["Description:"] = "Beschreibung";
+$a->strings["Title:"] = "Titel:";
+$a->strings["Share this event"] = "Veranstaltung teilen";
+$a->strings["System down for maintenance"] = "System zur Wartung abgeschaltet";
+$a->strings["No keywords to match. Please add keywords to your default profile."] = "Keine Schlüsselwörter zum Abgleichen gefunden. Bitte füge einige Schlüsselwörter zu Deinem Standardprofil hinzu.";
+$a->strings["is interested in:"] = "ist interessiert an:";
+$a->strings["Profile Match"] = "Profilübereinstimmungen";
+$a->strings["Tips for New Members"] = "Tipps für neue Nutzer";
+$a->strings["Do you really want to delete this suggestion?"] = "Möchtest Du wirklich diese Empfehlung löschen?";
+$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Keine Vorschläge verfügbar. Falls der Server frisch aufgesetzt wurde, versuche es bitte in 24 Stunden noch einmal.";
+$a->strings["Ignore/Hide"] = "Ignorieren/Verbergen";
+$a->strings["[Embedded content - reload page to view]"] = "[Eingebetteter Inhalt - Seite neu laden zum Betrachten]";
+$a->strings["Recent Photos"] = "Neueste Fotos";
+$a->strings["Upload New Photos"] = "Neue Fotos hochladen";
+$a->strings["everybody"] = "jeder";
+$a->strings["Contact information unavailable"] = "Kontaktinformationen nicht verfügbar";
+$a->strings["Album not found."] = "Album nicht gefunden.";
+$a->strings["Delete Album"] = "Album löschen";
+$a->strings["Do you really want to delete this photo album and all its photos?"] = "Möchtest Du wirklich dieses Foto-Album und all seine Foto löschen?";
+$a->strings["Delete Photo"] = "Foto löschen";
+$a->strings["Do you really want to delete this photo?"] = "Möchtest Du wirklich dieses Foto löschen?";
+$a->strings["%1\$s was tagged in %2\$s by %3\$s"] = "%1\$s wurde von %3\$s in %2\$s getaggt";
+$a->strings["a photo"] = "einem Foto";
+$a->strings["Image file is empty."] = "Bilddatei ist leer.";
+$a->strings["No photos selected"] = "Keine Bilder ausgewählt";
+$a->strings["Access to this item is restricted."] = "Zugriff zu diesem Eintrag wurde eingeschränkt.";
+$a->strings["You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."] = "Du verwendest %1$.2f Mbyte von %2$.2f Mbyte des Foto-Speichers.";
+$a->strings["Upload Photos"] = "Bilder hochladen";
+$a->strings["New album name: "] = "Name des neuen Albums: ";
+$a->strings["or existing album name: "] = "oder existierender Albumname: ";
+$a->strings["Do not show a status post for this upload"] = "Keine Status-Mitteilung für diesen Beitrag anzeigen";
+$a->strings["Show to Groups"] = "Zeige den Gruppen";
+$a->strings["Show to Contacts"] = "Zeige den Kontakten";
+$a->strings["Private Photo"] = "Privates Foto";
+$a->strings["Public Photo"] = "Öffentliches Foto";
+$a->strings["Edit Album"] = "Album bearbeiten";
+$a->strings["Show Newest First"] = "Zeige neueste zuerst";
+$a->strings["Show Oldest First"] = "Zeige älteste zuerst";
+$a->strings["View Photo"] = "Foto betrachten";
+$a->strings["Permission denied. Access to this item may be restricted."] = "Zugriff verweigert. Zugriff zu diesem Eintrag könnte eingeschränkt sein.";
+$a->strings["Photo not available"] = "Foto nicht verfügbar";
+$a->strings["View photo"] = "Fotos ansehen";
+$a->strings["Edit photo"] = "Foto bearbeiten";
+$a->strings["Use as profile photo"] = "Als Profilbild verwenden";
+$a->strings["View Full Size"] = "Betrachte Originalgröße";
+$a->strings["Tags: "] = "Tags: ";
+$a->strings["[Remove any tag]"] = "[Tag entfernen]";
+$a->strings["New album name"] = "Name des neuen Albums";
+$a->strings["Caption"] = "Bildunterschrift";
+$a->strings["Add a Tag"] = "Tag hinzufügen";
+$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"] = "Beispiel: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping";
+$a->strings["Do not rotate"] = "Nicht rotieren";
+$a->strings["Rotate CW (right)"] = "Drehen US (rechts)";
+$a->strings["Rotate CCW (left)"] = "Drehen EUS (links)";
+$a->strings["Private photo"] = "Privates Foto";
+$a->strings["Public photo"] = "Öffentliches Foto";
+$a->strings["Map"] = "Karte";
+$a->strings["View Album"] = "Album betrachten";
 $a->strings["Registration successful. Please check your email for further instructions."] = "Registrierung erfolgreich. Eine E-Mail mit weiteren Anweisungen wurde an Dich gesendet.";
 $a->strings["Failed to send email message. Here your accout details:<br> login: %s<br> password: %s<br><br>You can change your password after login."] = "Versenden der E-Mail fehlgeschlagen. Hier sind Deine Account Details:\n\nLogin: %s\nPasswort: %s\n\nDu kannst das Passwort nach dem Anmelden ändern.";
 $a->strings["Registration successful."] = "Registrierung erfolgreich.";
@@ -1758,6 +1252,7 @@ $a->strings["Note for the admin"] = "Hinweis für den Admin";
 $a->strings["Leave a message for the admin, why you want to join this node"] = "Hinterlasse eine Nachricht an den Admin, warum du einen Account auf dieser Instanz haben möchtest.";
 $a->strings["Membership on this site is by invitation only."] = "Mitgliedschaft auf dieser Seite ist nur nach vorheriger Einladung möglich.";
 $a->strings["Your invitation ID: "] = "ID Deiner Einladung: ";
+$a->strings["Registration"] = "Registrierung";
 $a->strings["Your Full Name (e.g. Joe Smith, real or real-looking): "] = "Dein vollständiger Name (z.B. Hans Mustermann, echt oder echt erscheinend):";
 $a->strings["Your Email Address: "] = "Deine E-Mail-Adresse: ";
 $a->strings["New Password:"] = "Neues Passwort:";
@@ -1766,11 +1261,15 @@ $a->strings["Confirm:"] = "Bestätigen:";
 $a->strings["Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be '<strong>nickname@\$sitename</strong>'."] = "Wähle einen Spitznamen für Dein Profil. Dieser muss mit einem Buchstaben beginnen. Die Adresse Deines Profils auf dieser Seite wird '<strong>spitzname@\$sitename</strong>' sein.";
 $a->strings["Choose a nickname: "] = "Spitznamen wählen: ";
 $a->strings["Import your profile to this friendica instance"] = "Importiere Dein Profil auf diese Friendica Instanz";
+$a->strings["Account"] = "Nutzerkonto";
+$a->strings["Additional features"] = "Zusätzliche Features";
 $a->strings["Display"] = "Anzeige";
 $a->strings["Social Networks"] = "Soziale Netzwerke";
+$a->strings["Plugins"] = "Plugins";
 $a->strings["Connected apps"] = "Verbundene Programme";
 $a->strings["Remove account"] = "Konto löschen";
 $a->strings["Missing some important data!"] = "Wichtige Daten fehlen!";
+$a->strings["Update"] = "Aktualisierungen";
 $a->strings["Failed to connect with email account using the settings provided."] = "Verbindung zum E-Mail-Konto mit den angegebenen Einstellungen nicht möglich.";
 $a->strings["Email settings updated."] = "E-Mail Einstellungen bearbeitet.";
 $a->strings["Features updated"] = "Features aktualisiert";
@@ -1788,6 +1287,7 @@ $a->strings["Private forum has no privacy permissions. Using default privacy gro
 $a->strings["Private forum has no privacy permissions and no default privacy group."] = "Für das private Forum sind keine Zugriffsrechte eingestellt, und es gibt keine voreingestellte Gruppe für neue Kontakte.";
 $a->strings["Settings updated."] = "Einstellungen aktualisiert.";
 $a->strings["Add application"] = "Programm hinzufügen";
+$a->strings["Save Settings"] = "Einstellungen speichern";
 $a->strings["Consumer Key"] = "Consumer Key";
 $a->strings["Consumer Secret"] = "Consumer Secret";
 $a->strings["Redirect"] = "Umleiten";
@@ -1799,6 +1299,8 @@ $a->strings["No name"] = "Kein Name";
 $a->strings["Remove authorization"] = "Autorisierung entziehen";
 $a->strings["No Plugin settings configured"] = "Keine Plugin-Einstellungen konfiguriert";
 $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";
@@ -1828,6 +1330,7 @@ $a->strings["Send public posts to all email contacts:"] = "Sende öffentliche Be
 $a->strings["Action after import:"] = "Aktion nach Import:";
 $a->strings["Move to folder"] = "In einen Ordner verschieben";
 $a->strings["Move to folder:"] = "In diesen Ordner verschieben:";
+$a->strings["No special theme for mobile devices"] = "Kein spezielles Theme für mobile Geräte verwenden.";
 $a->strings["Display Settings"] = "Anzeige-Einstellungen";
 $a->strings["Display Theme:"] = "Theme:";
 $a->strings["Mobile Theme:"] = "Mobiles Theme";
@@ -1937,34 +1440,530 @@ $a->strings["Change the behaviour of this account for special situations"] = "Ve
 $a->strings["Relocate"] = "Umziehen";
 $a->strings["If you have moved this profile from another server, and some of your contacts don't receive your updates, try pushing this button."] = "Wenn Du Dein Profil von einem anderen Server umgezogen hast und einige Deiner Kontakte Deine Beiträge nicht erhalten, verwende diesen Button.";
 $a->strings["Resend relocate message to contacts"] = "Umzugsbenachrichtigung erneut an Kontakte senden";
-$a->strings["Number of daily wall messages for %s exceeded. Message failed."] = "Maximale Anzahl der täglichen Pinnwand Nachrichten für %s ist überschritten. Zustellung fehlgeschlagen.";
-$a->strings["No recipient selected."] = "Kein Empfänger gewählt.";
-$a->strings["Unable to check your home location."] = "Konnte Deinen Heimatort nicht bestimmen.";
-$a->strings["Message could not be sent."] = "Nachricht konnte nicht gesendet werden.";
-$a->strings["Message collection failure."] = "Konnte Nachrichten nicht abrufen.";
-$a->strings["Message sent."] = "Nachricht gesendet.";
-$a->strings["No recipient."] = "Kein Empfänger.";
-$a->strings["Send Private Message"] = "Private Nachricht senden";
-$a->strings["If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders."] = "Wenn Du möchtest, dass %s Dir antworten kann, überprüfe Deine Privatsphären-Einstellungen und erlaube private Nachrichten von unbekannten Absendern.";
-$a->strings["To:"] = "An:";
-$a->strings["Subject:"] = "Betreff:";
-$a->strings["link"] = "Link";
-$a->strings["Authorize application connection"] = "Verbindung der Applikation autorisieren";
-$a->strings["Return to your app and insert this Securty Code:"] = "Gehe zu Deiner Anwendung zurück und trage dort folgenden Sicherheitscode ein:";
-$a->strings["Please login to continue."] = "Bitte melde Dich an um fortzufahren.";
-$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Möchtest Du dieser Anwendung den Zugriff auf Deine Beiträge und Kontakte, sowie das Erstellen neuer Beiträge in Deinem Namen gestatten?";
-$a->strings["Source (bbcode) text:"] = "Quelle (bbcode) Text:";
-$a->strings["Source (Diaspora) text to convert to BBcode:"] = "Eingabe (Diaspora) nach BBCode zu konvertierender Text:";
-$a->strings["Source input: "] = "Originaltext:";
-$a->strings["bb2html (raw HTML): "] = "bb2html (reines HTML): ";
-$a->strings["bb2html: "] = "bb2html: ";
-$a->strings["bb2html2bb: "] = "bb2html2bb: ";
-$a->strings["bb2md: "] = "bb2md: ";
-$a->strings["bb2md2html: "] = "bb2md2html: ";
-$a->strings["bb2dia2bb: "] = "bb2dia2bb: ";
-$a->strings["bb2md2html2bb: "] = "bb2md2html2bb: ";
-$a->strings["Source input (Diaspora format): "] = "Originaltext (Diaspora Format): ";
-$a->strings["diaspora2bb: "] = "diaspora2bb: ";
+$a->strings["Do you really want to delete this video?"] = "Möchtest Du dieses Video wirklich löschen?";
+$a->strings["Delete Video"] = "Video Löschen";
+$a->strings["No videos selected"] = "Keine Videos  ausgewählt";
+$a->strings["Recent Videos"] = "Neueste Videos";
+$a->strings["Upload New Videos"] = "Neues Video hochladen";
+$a->strings["Invalid request."] = "Ungültige Anfrage";
+$a->strings["Sorry, maybe your upload is bigger than the PHP configuration allows"] = "Entschuldige, die Datei scheint größer zu sein als es die PHP Konfiguration erlaubt.";
+$a->strings["Or - did you try to upload an empty file?"] = "Oder - hast Du versucht, eine leere Datei hochzuladen?";
+$a->strings["File exceeds size limit of %s"] = "Die Datei ist größer als das erlaubte Limit von %s";
+$a->strings["File upload failed."] = "Hochladen der Datei fehlgeschlagen.";
+$a->strings["Theme settings updated."] = "Themeneinstellungen aktualisiert.";
+$a->strings["Site"] = "Seite";
+$a->strings["Users"] = "Nutzer";
+$a->strings["Themes"] = "Themen";
+$a->strings["DB updates"] = "DB Updates";
+$a->strings["Inspect Queue"] = "Warteschlange Inspizieren";
+$a->strings["Federation Statistics"] = "Federation Statistik";
+$a->strings["Logs"] = "Protokolle";
+$a->strings["View Logs"] = "Protokolle anzeigen";
+$a->strings["probe address"] = "Adresse untersuchen";
+$a->strings["check webfinger"] = "Webfinger überprüfen";
+$a->strings["Plugin Features"] = "Plugin Features";
+$a->strings["diagnostics"] = "Diagnose";
+$a->strings["User registrations waiting for confirmation"] = "Nutzeranmeldungen die auf Bestätigung warten";
+$a->strings["unknown"] = "Unbekannt";
+$a->strings["This page offers you some numbers to the known part of the federated social network your Friendica node is part of. These numbers are not complete but only reflect the part of the network your node is aware of."] = "Diese Seite präsentiert einige Zahlen zu dem bekannten Teil des föderalen sozialen Netzwerks, von dem deine Friendica Installation ein Teil ist. Diese Zahlen sind nicht absolut und reflektieren nur den Teil des Netzwerks, den dein Knoten kennt.";
+$a->strings["The <em>Auto Discovered Contact Directory</em> feature is not enabled, it will improve the data displayed here."] = "Die Funktion um <em>Automatisch ein Kontaktverzeichnis erstellen</em> ist nicht aktiv. Es wird die hier angezeigten Daten verbessern.";
+$a->strings["Administration"] = "Administration";
+$a->strings["Currently this node is aware of %d nodes from the following platforms:"] = "Momentan kennt dieser Knoten %d andere Knoten der folgenden Plattformen:";
+$a->strings["ID"] = "ID";
+$a->strings["Recipient Name"] = "Empfänger Name";
+$a->strings["Recipient Profile"] = "Empfänger Profil";
+$a->strings["Created"] = "Erstellt";
+$a->strings["Last Tried"] = "Zuletzt versucht";
+$a->strings["This page lists the content of the queue for outgoing postings. These are postings the initial delivery failed for. They will be resend later and eventually deleted if the delivery fails permanently."] = "Auf dieser Seite werden die in der Warteschlange eingereihten Beiträge aufgelistet. Bei diesen Beiträgen schlug die erste Zustellung fehl. Es wird später wiederholt versucht die Beiträge zuzustellen, bis sie schließlich gelöscht werden.";
+$a->strings["Your DB still runs with MyISAM tables. You should change the engine type to InnoDB. As Friendica will use InnoDB only features in the future, you should change this! See <a href=\"%s\">here</a> for a guide that may be helpful converting the table engines. You may also use the <tt>convert_innodb.sql</tt> in the <tt>/util</tt> directory of your Friendica installation.<br />"] = "Deine DB enthält einige Tabellen die noch auf MyISAM laufen. Du solltest den Engine-Type auf InnoDB umstellen, da Friendica in Zukunft einige InnoDB Features nutzen wird. Eine Anleitung zur Umstellung kannst du <a href=\"%s\">hier</a> finden. Außerdem kannst du das <tt>convert_innodb.sql</tt> Skript verwenden, das du im <tt>/util</tt> Verzeichnis deiner Friendica Installation findest.";
+$a->strings["You are using a MySQL version which does not support all features that Friendica uses. You should consider switching to MariaDB."] = "Du verwendets eine MySQL Version die nicht alle Features unterstützt die Friendica verwendet. Wir empfehlen dir einen Wechsel auf MariaDB, falls dies möglich ist.";
+$a->strings["Normal Account"] = "Normales Konto";
+$a->strings["Soapbox Account"] = "Marktschreier-Konto";
+$a->strings["Community/Celebrity Account"] = "Forum/Promi-Konto";
+$a->strings["Automatic Friend Account"] = "Automatisches Freundekonto";
+$a->strings["Blog Account"] = "Blog-Konto";
+$a->strings["Private Forum"] = "Privates Forum";
+$a->strings["Message queues"] = "Nachrichten-Warteschlangen";
+$a->strings["Summary"] = "Zusammenfassung";
+$a->strings["Registered users"] = "Registrierte Nutzer";
+$a->strings["Pending registrations"] = "Anstehende Anmeldungen";
+$a->strings["Version"] = "Version";
+$a->strings["Active plugins"] = "Aktive Plugins";
+$a->strings["Can not parse base url. Must have at least <scheme>://<domain>"] = "Die Basis-URL konnte nicht analysiert werden. Sie muss mindestens aus <protokoll>://<domain> bestehen";
+$a->strings["RINO2 needs mcrypt php extension to work."] = "RINO2 benötigt die PHP Extension mcrypt.";
+$a->strings["Site settings updated."] = "Seiteneinstellungen aktualisiert.";
+$a->strings["No community page"] = "Keine Gemeinschaftsseite";
+$a->strings["Public postings from users of this site"] = "Öffentliche Beiträge von Nutzer_innen dieser Seite";
+$a->strings["Global community page"] = "Globale Gemeinschaftsseite";
+$a->strings["Never"] = "Niemals";
+$a->strings["At post arrival"] = "Beim Empfang von Nachrichten";
+$a->strings["Disabled"] = "Deaktiviert";
+$a->strings["Users, Global Contacts"] = "Nutzer, globale Kontakte";
+$a->strings["Users, Global Contacts/fallback"] = "Nutzer, globale Kontakte / Fallback";
+$a->strings["One month"] = "ein Monat";
+$a->strings["Three months"] = "drei Monate";
+$a->strings["Half a year"] = "ein halbes Jahr";
+$a->strings["One year"] = "ein Jahr";
+$a->strings["Multi user instance"] = "Mehrbenutzer Instanz";
+$a->strings["Closed"] = "Geschlossen";
+$a->strings["Requires approval"] = "Bedarf der Zustimmung";
+$a->strings["Open"] = "Offen";
+$a->strings["No SSL policy, links will track page SSL state"] = "Keine SSL Richtlinie, Links werden das verwendete Protokoll beibehalten";
+$a->strings["Force all links to use SSL"] = "SSL für alle Links erzwingen";
+$a->strings["Self-signed certificate, use SSL for local links only (discouraged)"] = "Selbst-unterzeichnetes Zertifikat, SSL nur für lokale Links verwenden (nicht empfohlen)";
+$a->strings["File upload"] = "Datei hochladen";
+$a->strings["Policies"] = "Regeln";
+$a->strings["Auto Discovered Contact Directory"] = "Automatisch ein Kontaktverzeichnis erstellen";
+$a->strings["Performance"] = "Performance";
+$a->strings["Worker"] = "Worker";
+$a->strings["Relocate - WARNING: advanced function. Could make this server unreachable."] = "Umsiedeln - WARNUNG: Könnte diesen Server unerreichbar machen.";
+$a->strings["Site name"] = "Seitenname";
+$a->strings["Host name"] = "Host Name";
+$a->strings["Sender Email"] = "Absender für Emails";
+$a->strings["The email address your server shall use to send notification emails from."] = "Die E-Mail Adresse die dein Server zum Versenden von Benachrichtigungen verwenden soll.";
+$a->strings["Banner/Logo"] = "Banner/Logo";
+$a->strings["Shortcut icon"] = "Shortcut Icon";
+$a->strings["Link to an icon that will be used for browsers."] = "Link zu einem Icon, das Browser verwenden werden.";
+$a->strings["Touch icon"] = "Touch Icon";
+$a->strings["Link to an icon that will be used for tablets and mobiles."] = "Link zu einem Icon das Tablets und Handies verwenden sollen.";
+$a->strings["Additional Info"] = "Zusätzliche Informationen";
+$a->strings["For public servers: you can add additional information here that will be listed at %s/siteinfo."] = "Für öffentliche Server kannst Du hier zusätzliche Informationen angeben, die dann auf %s/siteinfo angezeigt werden.";
+$a->strings["System language"] = "Systemsprache";
+$a->strings["System theme"] = "Systemweites Theme";
+$a->strings["Default system theme - may be over-ridden by user profiles - <a href='#' id='cnftheme'>change theme settings</a>"] = "Vorgabe für das System-Theme - kann von Benutzerprofilen überschrieben werden - <a href='#' id='cnftheme'>Theme-Einstellungen ändern</a>";
+$a->strings["Mobile system theme"] = "Systemweites mobiles Theme";
+$a->strings["Theme for mobile devices"] = "Thema für mobile Geräte";
+$a->strings["SSL link policy"] = "Regeln für SSL Links";
+$a->strings["Determines whether generated links should be forced to use SSL"] = "Bestimmt, ob generierte Links SSL verwenden müssen";
+$a->strings["Force SSL"] = "Erzwinge SSL";
+$a->strings["Force all Non-SSL requests to SSL - Attention: on some systems it could lead to endless loops."] = "Erzinge alle Nicht-SSL Anfragen auf SSL - Achtung: auf manchen Systemen verursacht dies eine Endlosschleife.";
+$a->strings["Old style 'Share'"] = "Altes \"Teilen\" Element";
+$a->strings["Deactivates the bbcode element 'share' for repeating items."] = "Deaktiviert das BBCode Element \"share\" beim Wiederholen von Beiträgen.";
+$a->strings["Hide help entry from navigation menu"] = "Verberge den Menüeintrag für die Hilfe im Navigationsmenü";
+$a->strings["Hides the menu entry for the Help pages from the navigation menu. You can still access it calling /help directly."] = "Verbirgt den Menüeintrag für die Hilfe-Seiten im Navigationsmenü. Die Seiten können weiterhin über /help aufgerufen werden.";
+$a->strings["Single user instance"] = "Ein-Nutzer Instanz";
+$a->strings["Make this instance multi-user or single-user for the named user"] = "Regelt ob es sich bei dieser Instanz um eine ein Personen Installation oder eine Installation mit mehr als einem Nutzer handelt.";
+$a->strings["Maximum image size"] = "Maximale Bildgröße";
+$a->strings["Maximum size in bytes of uploaded images. Default is 0, which means no limits."] = "Maximale Uploadgröße von Bildern in Bytes. Standard ist 0, d.h. ohne Limit.";
+$a->strings["Maximum image length"] = "Maximale Bildlänge";
+$a->strings["Maximum length in pixels of the longest side of uploaded images. Default is -1, which means no limits."] = "Maximale Länge in Pixeln der längsten Seite eines hoch geladenen Bildes. Grundeinstellung ist -1 was keine Einschränkung bedeutet.";
+$a->strings["JPEG image quality"] = "Qualität des JPEG Bildes";
+$a->strings["Uploaded JPEGS will be saved at this quality setting [0-100]. Default is 100, which is full quality."] = "Hoch geladene JPEG Bilder werden mit dieser Qualität [0-100] gespeichert. Grundeinstellung ist 100, kein Qualitätsverlust.";
+$a->strings["Register policy"] = "Registrierungsmethode";
+$a->strings["Maximum Daily Registrations"] = "Maximum täglicher Registrierungen";
+$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."] = "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.";
+$a->strings["Register text"] = "Registrierungstext";
+$a->strings["Will be displayed prominently on the registration page."] = "Wird gut sichtbar auf der Registrierungsseite angezeigt.";
+$a->strings["Accounts abandoned after x days"] = "Nutzerkonten gelten nach x Tagen als unbenutzt";
+$a->strings["Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit."] = "Verschwende keine System-Ressourcen auf das Pollen externer Seiten, wenn Konten nicht mehr benutzt werden. 0 eingeben für kein Limit.";
+$a->strings["Allowed friend domains"] = "Erlaubte Domains für Kontakte";
+$a->strings["Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains"] = "Liste der Domains, die für Kontakte erlaubt sind, durch Kommas getrennt. Platzhalter werden akzeptiert. Leer lassen, um alle Domains zu erlauben.";
+$a->strings["Allowed email domains"] = "Erlaubte Domains für E-Mails";
+$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"] = "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.";
+$a->strings["Block public"] = "Öffentlichen Zugriff blockieren";
+$a->strings["Check to block public access to all otherwise public personal pages on this site unless you are currently logged in."] = "Klicken, um öffentlichen Zugriff auf sonst öffentliche Profile zu blockieren, wenn man nicht eingeloggt ist.";
+$a->strings["Force publish"] = "Erzwinge Veröffentlichung";
+$a->strings["Check to force all profiles on this site to be listed in the site directory."] = "Klicken, um Anzeige aller Profile dieses Servers im Verzeichnis zu erzwingen.";
+$a->strings["Global directory URL"] = "URL des weltweiten Verzeichnisses";
+$a->strings["URL to the global directory. If this is not set, the global directory is completely unavailable to the application."] = "URL des weltweiten Verzeichnisses. Wenn diese nicht gesetzt ist, ist das Verzeichnis für die Applikation nicht erreichbar.";
+$a->strings["Allow threaded items"] = "Erlaube Threads in Diskussionen";
+$a->strings["Allow infinite level threading for items on this site."] = "Erlaube ein unendliches Level für Threads auf dieser Seite.";
+$a->strings["Private posts by default for new users"] = "Private Beiträge als Standard für neue Nutzer";
+$a->strings["Set default post permissions for all new members to the default privacy group rather than public."] = "Die Standard-Zugriffsrechte für neue Nutzer werden so gesetzt, dass als Voreinstellung in die private Gruppe gepostet wird anstelle von öffentlichen Beiträgen.";
+$a->strings["Don't include post content in email notifications"] = "Inhalte von Beiträgen nicht in E-Mail-Benachrichtigungen versenden";
+$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."] = "Inhalte von Beiträgen/Kommentaren/privaten Nachrichten/usw., zum Datenschutz nicht in E-Mail-Benachrichtigungen einbinden.";
+$a->strings["Disallow public access to addons listed in the apps menu."] = "Öffentlichen Zugriff auf Addons im Apps Menü verbieten.";
+$a->strings["Checking this box will restrict addons listed in the apps menu to members only."] = "Wenn ausgewählt werden die im Apps Menü aufgeführten Addons nur angemeldeten Nutzern der Seite zur Verfügung gestellt.";
+$a->strings["Don't embed private images in posts"] = "Private Bilder nicht in Beiträgen einbetten.";
+$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."] = "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.";
+$a->strings["Allow Users to set remote_self"] = "Nutzern erlauben das remote_self Flag zu setzen";
+$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."] = "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.";
+$a->strings["Block multiple registrations"] = "Unterbinde Mehrfachregistrierung";
+$a->strings["Disallow users to register additional accounts for use as pages."] = "Benutzern nicht erlauben, weitere Konten als zusätzliche Profile anzulegen.";
+$a->strings["OpenID support"] = "OpenID Unterstützung";
+$a->strings["OpenID support for registration and logins."] = "OpenID-Unterstützung für Registrierung und Login.";
+$a->strings["Fullname check"] = "Namen auf Vollständigkeit überprüfen";
+$a->strings["Force users to register with a space between firstname and lastname in Full name, as an antispam measure"] = "Leerzeichen zwischen Vor- und Nachname im vollständigen Namen erzwingen, um SPAM zu vermeiden.";
+$a->strings["UTF-8 Regular expressions"] = "UTF-8 Reguläre Ausdrücke";
+$a->strings["Use PHP UTF8 regular expressions"] = "PHP UTF8 Ausdrücke verwenden";
+$a->strings["Community Page Style"] = "Art der Gemeinschaftsseite";
+$a->strings["Type of community page to show. 'Global community' shows every public posting from an open distributed network that arrived on this server."] = "Welche Art der Gemeinschaftsseite soll verwendet werden? Globale Gemeinschaftsseite zeigt alle öffentlichen Beiträge eines offenen dezentralen Netzwerks an die auf diesem Server eintreffen.";
+$a->strings["Posts per user on community page"] = "Anzahl der Beiträge pro Benutzer auf der Gemeinschaftsseite";
+$a->strings["The maximum number of posts per user on the community page. (Not valid for 'Global Community')"] = "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.";
+$a->strings["Enable OStatus support"] = "OStatus Unterstützung aktivieren";
+$a->strings["Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All communications in OStatus are public, so privacy warnings will be occasionally displayed."] = "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.";
+$a->strings["OStatus conversation completion interval"] = "Intervall zum Vervollständigen von OStatus Unterhaltungen";
+$a->strings["How often shall the poller check for new entries in OStatus conversations? This can be a very ressource task."] = "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.";
+$a->strings["Only import OStatus threads from our contacts"] = "Nur OStatus Konversationen unserer Kontakte importieren";
+$a->strings["Normally we import every content from our OStatus contacts. With this option we only store threads that are started by a contact that is known on our system."] = "Normalerweise werden alle Inhalte von OStatus Kontakten importiert. Mit dieser Option werden nur solche Konversationen gespeichert, die von Kontakten der Nutzer dieses Knotens gestartet wurden.";
+$a->strings["OStatus support can only be enabled if threading is enabled."] = "OStatus Unterstützung kann nur aktiviert werden wenn \"Threading\" aktiviert ist. ";
+$a->strings["Diaspora support can't be enabled because Friendica was installed into a sub directory."] = "Diaspora Unterstützung kann nicht aktiviert werden da Friendica in ein Unterverzeichnis installiert ist.";
+$a->strings["Enable Diaspora support"] = "Diaspora Unterstützung aktivieren";
+$a->strings["Provide built-in Diaspora network compatibility."] = "Verwende die eingebaute Diaspora-Verknüpfung.";
+$a->strings["Only allow Friendica contacts"] = "Nur Friendica-Kontakte erlauben";
+$a->strings["All contacts must use Friendica protocols. All other built-in communication protocols disabled."] = "Alle Kontakte müssen das Friendica Protokoll nutzen. Alle anderen Kommunikationsprotokolle werden deaktiviert.";
+$a->strings["Verify SSL"] = "SSL Überprüfen";
+$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."] = "Wenn gewollt, kann man hier eine strenge Zertifikatkontrolle einstellen. Das bedeutet, dass man zu keinen Seiten mit selbst unterzeichnetem SSL eine Verbindung herstellen kann.";
+$a->strings["Proxy user"] = "Proxy Nutzer";
+$a->strings["Proxy URL"] = "Proxy URL";
+$a->strings["Network timeout"] = "Netzwerk Wartezeit";
+$a->strings["Value is in seconds. Set to 0 for unlimited (not recommended)."] = "Der Wert ist in Sekunden. Setze 0 für unbegrenzt (nicht empfohlen).";
+$a->strings["Delivery interval"] = "Zustellungsintervall";
+$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."] = "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.";
+$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["Maximum table size for optimization"] = "Maximale Tabellengröße zur Optimierung";
+$a->strings["Maximum table size (in MB) for the automatic optimization - default 100 MB. Enter -1 to disable it."] = "Maximale Tabellengröße (in MB) für die automatische Optimierung - Standard 100 MB. Gib -1 für Deaktivierung ein.";
+$a->strings["Minimum level of fragmentation"] = "Minimaler Fragmentationsgrad";
+$a->strings["Minimum fragmenation level to start the automatic optimization - default value is 30%."] = "Minimales Fragmentationsgrad von Datenbanktabellen um die automatische Optimierung einzuleiten - Standardwert ist 30%";
+$a->strings["Periodical check of global contacts"] = "Regelmäßig globale Kontakte überprüfen";
+$a->strings["If enabled, the global contacts are checked periodically for missing or outdated data and the vitality of the contacts and servers."] = "Wenn diese Option aktiviert ist, werden die globalen Kontakte regelmäßig auf fehlende oder veraltete Daten sowie auf Erreichbarkeit des Kontakts und des Servers überprüft.";
+$a->strings["Days between requery"] = "Tage zwischen erneuten Abfragen";
+$a->strings["Number of days after which a server is requeried for his contacts."] = "Legt das Abfrageintervall fest, nachdem ein Server erneut nach Kontakten abgefragt werden soll.";
+$a->strings["Discover contacts from other servers"] = "Neue Kontakte auf anderen Servern entdecken";
+$a->strings["Periodically query other servers for contacts. You can choose between 'users': the users on the remote system, 'Global Contacts': active contacts that are known on the system. The fallback is meant for Redmatrix servers and older friendica servers, where global contacts weren't available. The fallback increases the server load, so the recommened setting is 'Users, Global Contacts'."] = "Regelmäßig andere Server nach potentiellen Kontakten absuchen. Du kannst zwischen 'Nutzern', den tatsächlichen Nutzern des anderen Systems und 'globalen Kontakten', aktiven Kontakten die auf dem System bekannt sind, wählen. Der Fallback-Mechanismus ist für ältere Friendica und Redmatrix Server gedacht, bei denen globale Kontakte noch nicht verfügbar sind. Durch den Fallbackmodus entsteht auf deinem Server eine wesentlich höhere Last, empfohlen wird der Modus 'Nutzer, globale Kontakte'.";
+$a->strings["Timeframe for fetching global contacts"] = "Zeitfenster für globale Kontakte";
+$a->strings["When the discovery is activated, this value defines the timeframe for the activity of the global contacts that are fetched from other servers."] = "Wenn die Entdeckung neuer Kontakte aktiv ist, definiert dieses Zeitfenster den Zeitraum in dem globale Kontakte als aktiv gelten und von anderen Servern importiert werden.";
+$a->strings["Search the local directory"] = "Lokales Verzeichnis durchsuchen";
+$a->strings["Search the local directory instead of the global directory. When searching locally, every search will be executed on the global directory in the background. This improves the search results when the search is repeated."] = "Suche im lokalen Verzeichnis anstelle des globalen Verzeichnisses durchführen. Jede Suche wird im Hintergrund auch im globalen Verzeichnis durchgeführt umd die Suchresultate zu verbessern, wenn diese Suche wiederholt wird.";
+$a->strings["Publish server information"] = "Server Informationen veröffentlichen";
+$a->strings["If enabled, general server and usage data will be published. The data contains the name and version of the server, number of users with public profiles, number of posts and the activated protocols and connectors. See <a href='http://the-federation.info/'>the-federation.info</a> for details."] = "Wenn aktiviert, werden allgemeine Informationen über den Server und Nutzungsdaten veröffentlicht. Die Daten beinhalten den Namen sowie die Version des Servers, die Anzahl der Nutzer_innen mit öffentlichen Profilen, die Anzahl der Beiträge sowie aktivierte Protokolle und Connectoren. Für Details bitte <a href='http://the-federation.info/'>the-federation.info</a> aufrufen.";
+$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";
+$a->strings["Suppress language information in meta information about a posting."] = "Verhindert das Erzeugen der Meta-Information zur Spracherkennung eines Beitrags.";
+$a->strings["Suppress Tags"] = "Tags Unterdrücken";
+$a->strings["Suppress showing a list of hashtags at the end of the posting."] = "Unterdrückt die Anzeige von Tags am Ende eines Beitrags.";
+$a->strings["Path to item cache"] = "Pfad zum Eintrag Cache";
+$a->strings["The item caches buffers generated bbcode and external images."] = "Im Item-Cache werden externe Bilder und geparster BBCode zwischen gespeichert.";
+$a->strings["Cache duration in seconds"] = "Cache-Dauer in Sekunden";
+$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."] = "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.";
+$a->strings["Maximum numbers of comments per post"] = "Maximale Anzahl von Kommentaren pro Beitrag";
+$a->strings["How much comments should be shown for each post? Default value is 100."] = "Wie viele Kommentare sollen pro Beitrag angezeigt werden? Standardwert sind 100.";
+$a->strings["Path for lock file"] = "Pfad für die Sperrdatei";
+$a->strings["The lock file is used to avoid multiple pollers at one time. Only define a folder here."] = "Die lock-Datei wird benutzt, damit nicht mehrere poller auf einmal laufen. Definiere hier einen Dateiverzeichnis.";
+$a->strings["Temp path"] = "Temp Pfad";
+$a->strings["If you have a restricted system where the webserver can't access the system temp path, enter another path here."] = "Solltest du ein eingeschränktes System haben, auf dem der Webserver nicht auf das temp Verzeichnis des Systems zugreifen kann, setze hier einen anderen Pfad.";
+$a->strings["Base path to installation"] = "Basis-Pfad zur Installation";
+$a->strings["If the system cannot detect the correct path to your installation, enter the correct path here. This setting should only be set if you are using a restricted system and symbolic links to your webroot."] = "Falls das System nicht den korrekten Pfad zu deiner Installation gefunden hat, gib den richtigen Pfad bitte hier ein. Du solltest hier den Pfad nur auf einem eingeschränkten System angeben müssen, bei dem du mit symbolischen Links auf dein Webverzeichnis verweist.";
+$a->strings["Disable picture proxy"] = "Bilder Proxy deaktivieren";
+$a->strings["The picture proxy increases performance and privacy. It shouldn't be used on systems with very low bandwith."] = "Der Proxy für Bilder verbessert die Leistung und Privatsphäre der Nutzer. Er sollte nicht auf Systemen verwendet werden, die nur über begrenzte Bandbreite verfügen.";
+$a->strings["Enable old style pager"] = "Den Old-Style Pager aktiviren";
+$a->strings["The old style pager has page numbers but slows down massively the page speed."] = "Der Old-Style Pager zeigt Seitennummern an, verlangsamt aber auch drastisch das Laden einer Seite.";
+$a->strings["Only search in tags"] = "Nur in Tags suchen";
+$a->strings["On large systems the text search can slow down the system extremely."] = "Auf großen Knoten kann die Volltext-Suche das System ausbremsen.";
+$a->strings["New base url"] = "Neue Basis-URL";
+$a->strings["Change base url for this server. Sends relocate message to all DFRN contacts of all users."] = "Ändert die Basis-URL dieses Servers und sendet eine Umzugsmitteilung an alle DFRN Kontakte deiner Nutzer_innen.";
+$a->strings["RINO Encryption"] = "RINO Verschlüsselung";
+$a->strings["Encryption layer between nodes."] = "Verschlüsselung zwischen Friendica Instanzen";
+$a->strings["Embedly API key"] = "Embedly  API Schlüssel";
+$a->strings["<a href='http://embed.ly'>Embedly</a> is used to fetch additional data for web pages. This is an optional parameter."] = "<a href='http://embed.ly'>Embedly</a> wird verwendet um zusätzliche Informationen von Webseiten zu laden. Dies ist ein optionaler Parameter.";
+$a->strings["Enable 'worker' background processing"] = "Aktiviere die 'Worker' Hintergrundprozesse";
+$a->strings["The worker background processing limits the number of parallel background jobs to a maximum number and respects the system load."] = "Der 'background worker' Prozess begrenzt die Zahl der Prozesse, die im Hintergrund parallel laufen und beachtet dabei die Systemlast.";
+$a->strings["Maximum number of parallel workers"] = "Maximale Anzahl parallel laufender Worker";
+$a->strings["On shared hosters set this to 2. On larger systems, values of 10 are great. Default value is 4."] = "Wenn dein Knoten bei einem Shared Hoster ist, setzte diesen Wert auf 2. Auf größeren Systemen funktioniert ein Wert von 10 recht gut. Standardeinstellung sind 4.";
+$a->strings["Don't use 'proc_open' with the worker"] = "'proc_open' nicht mit den Workern verwenden";
+$a->strings["Enable this if your system doesn't allow the use of 'proc_open'. This can happen on shared hosters. If this is enabled you should increase the frequency of poller calls in your crontab."] = "Aktiviere diese Option, wenn dein System die Verwendung von 'proc_open' verhindert. Dies könnte auf Shared Hostern der Fall sein. Wenn du diese Option aktivierst, solltest du die Frequenz der poller Aufrufe in deiner crontab erhöhen.";
+$a->strings["Enable fastlane"] = "Aktiviere Fastlane";
+$a->strings["When enabed, the fastlane mechanism starts an additional worker if processes with higher priority are blocked by processes of lower priority."] = "Wenn aktiviert, wird der Fastlane-Mechanismus einen weiteren Worker-Prozeß starten wenn Prozesse mit höherer Priorität von Prozessen mit niedrigerer Priorität blockiert werden.";
+$a->strings["Enable frontend worker"] = "Aktiviere den Frontend Worker";
+$a->strings["When enabled the Worker process is triggered when backend access is performed (e.g. messages being delivered). On smaller sites you might want to call yourdomain.tld/worker on a regular basis via an external cron job. You should only enable this option if you cannot utilize cron/scheduled jobs on your server. The worker background process needs to be activated for this."] = "Ist diese Option aktiv, wird der Worker Prozess durch Aktionen am Frontend gestartet (z.B. wenn Nachrichten zugestellt werden). Auf kleineren Seiten sollte yourdomain.tld/worker regelmäßig, beispielsweise durch einen externen Cron Anbieter, aufgerufen werden. Du solltest dies Option nur dann aktivieren, wenn du keinen Cron Job auf deinem eigenen Server starten kannst. Damit diese Option einen Effekt hat, muss der Worker Prozess aktiviert sein.";
+$a->strings["Update has been marked successful"] = "Update wurde als erfolgreich markiert";
+$a->strings["Database structure update %s was successfully applied."] = "Das Update %s der Struktur der Datenbank wurde erfolgreich angewandt.";
+$a->strings["Executing of database structure update %s failed with error: %s"] = "Das Update %s der Struktur der Datenbank schlug mit folgender Fehlermeldung fehl: %s";
+$a->strings["Executing %s failed with error: %s"] = "Die Ausführung von %s schlug fehl. Fehlermeldung: %s";
+$a->strings["Update %s was successfully applied."] = "Update %s war erfolgreich.";
+$a->strings["Update %s did not return a status. Unknown if it succeeded."] = "Update %s hat keinen Status zurückgegeben. Unbekannter Status.";
+$a->strings["There was no additional update function %s that needed to be called."] = "Es gab keine weitere Update-Funktion, die von %s ausgeführt werden musste.";
+$a->strings["No failed updates."] = "Keine fehlgeschlagenen Updates.";
+$a->strings["Check database structure"] = "Datenbank Struktur überprüfen";
+$a->strings["Failed Updates"] = "Fehlgeschlagene Updates";
+$a->strings["This does not include updates prior to 1139, which did not return a status."] = "Ohne Updates vor 1139, da diese keinen Status zurückgegeben haben.";
+$a->strings["Mark success (if update was manually applied)"] = "Als erfolgreich markieren (falls das Update manuell installiert wurde)";
+$a->strings["Attempt to execute this update step automatically"] = "Versuchen, diesen Schritt automatisch auszuführen";
+$a->strings["\n\t\t\tDear %1\$s,\n\t\t\t\tthe administrator of %2\$s has set up an account for you."] = "\nHallo %1\$s,\n\nauf %2\$s wurde ein Account für Dich angelegt.";
+$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."] = "\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.";
+$a->strings["%s user blocked/unblocked"] = array(
+       0 => "%s Benutzer geblockt/freigegeben",
+       1 => "%s Benutzer geblockt/freigegeben",
+);
+$a->strings["%s user deleted"] = array(
+       0 => "%s Nutzer gelöscht",
+       1 => "%s Nutzer gelöscht",
+);
+$a->strings["User '%s' deleted"] = "Nutzer '%s' gelöscht";
+$a->strings["User '%s' unblocked"] = "Nutzer '%s' entsperrt";
+$a->strings["User '%s' blocked"] = "Nutzer '%s' gesperrt";
+$a->strings["Register date"] = "Anmeldedatum";
+$a->strings["Last login"] = "Letzte Anmeldung";
+$a->strings["Last item"] = "Letzter Beitrag";
+$a->strings["Add User"] = "Nutzer hinzufügen";
+$a->strings["select all"] = "Alle auswählen";
+$a->strings["User registrations waiting for confirm"] = "Neuanmeldungen, die auf Deine Bestätigung warten";
+$a->strings["User waiting for permanent deletion"] = "Nutzer wartet auf permanente Löschung";
+$a->strings["Request date"] = "Anfragedatum";
+$a->strings["No registrations."] = "Keine Neuanmeldungen.";
+$a->strings["Note from the user"] = "Hinweis vom Nutzer";
+$a->strings["Deny"] = "Verwehren";
+$a->strings["Block"] = "Sperren";
+$a->strings["Unblock"] = "Entsperren";
+$a->strings["Site admin"] = "Seitenadministrator";
+$a->strings["Account expired"] = "Account ist abgelaufen";
+$a->strings["New User"] = "Neuer Nutzer";
+$a->strings["Deleted since"] = "Gelöscht seit";
+$a->strings["Selected users will be deleted!\\n\\nEverything these users had posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "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?";
+$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?"] = "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?";
+$a->strings["Name of the new user."] = "Name des neuen Nutzers";
+$a->strings["Nickname"] = "Spitzname";
+$a->strings["Nickname of the new user."] = "Spitznamen für den neuen Nutzer";
+$a->strings["Email address of the new user."] = "Email Adresse des neuen Nutzers";
+$a->strings["Plugin %s disabled."] = "Plugin %s deaktiviert.";
+$a->strings["Plugin %s enabled."] = "Plugin %s aktiviert.";
+$a->strings["Disable"] = "Ausschalten";
+$a->strings["Enable"] = "Einschalten";
+$a->strings["Toggle"] = "Umschalten";
+$a->strings["Author: "] = "Autor:";
+$a->strings["Maintainer: "] = "Betreuer:";
+$a->strings["Reload active plugins"] = "Aktive Plugins neu laden";
+$a->strings["There are currently no plugins available on your node. You can find the official plugin repository at %1\$s and might find other interesting plugins in the open plugin registry at %2\$s"] = "Es sind derzeit keine Plugins auf diesem Knoten verfügbar. Du findest das offizielle Plugin-Repository unter %1\$s und weitere eventuell interessante Plugins im offenen Plugins-Verzeichnis auf %2\$s.";
+$a->strings["No themes found."] = "Keine Themen gefunden.";
+$a->strings["Screenshot"] = "Bildschirmfoto";
+$a->strings["Reload active themes"] = "Aktives Theme neu laden";
+$a->strings["No themes found on the system. They should be paced in %1\$s"] = "Es wurden keine Themes auf dem System gefunden. Diese sollten in %1\$s patziert werden.";
+$a->strings["[Experimental]"] = "[Experimentell]";
+$a->strings["[Unsupported]"] = "[Nicht unterstützt]";
+$a->strings["Log settings updated."] = "Protokolleinstellungen aktualisiert.";
+$a->strings["PHP log currently enabled."] = "PHP Protokollierung ist derzeit aktiviert.";
+$a->strings["PHP log currently disabled."] = "PHP Protokollierung ist derzeit nicht aktiviert.";
+$a->strings["Clear"] = "löschen";
+$a->strings["Enable Debugging"] = "Protokoll führen";
+$a->strings["Log file"] = "Protokolldatei";
+$a->strings["Must be writable by web server. Relative to your Friendica top-level directory."] = "Webserver muss Schreibrechte besitzen. Abhängig vom Friendica-Installationsverzeichnis.";
+$a->strings["Log level"] = "Protokoll-Level";
+$a->strings["PHP logging"] = "PHP Protokollieren";
+$a->strings["To enable logging of PHP errors and warnings you can add the following to the .htconfig.php file of your installation. The filename set in the 'error_log' line is relative to the friendica top-level directory and must be writeable by the web server. The option '1' for 'log_errors' and 'display_errors' is to enable these options, set to '0' to disable them."] = "Um PHP Warnungen und Fehler zu protokollieren, kannst du die folgenden Zeilen zur .htconfig.php Datei deiner Installation hinzufügen. Den Dateinamen der Log-Datei legst du in der Zeile mit dem 'error_log' fest,  Er ist relativ zum Friendica-Stammverzeichnis und muss schreibbar durch den Webserver sein. Eine \"1\" als Option für die Punkte 'log_errors' und 'display_errors' aktiviert die Funktionen zum Protokollieren bzw. Anzeigen der Fehler, eine \"0\" deaktiviert sie.";
+$a->strings["Lock feature %s"] = "Feature festlegen: %s";
+$a->strings["Manage Additional Features"] = "Zusätzliche Features Verwalten";
+$a->strings["%d contact edited."] = array(
+       0 => "%d Kontakt bearbeitet.",
+       1 => "%d Kontakte bearbeitet.",
+);
+$a->strings["Could not access contact record."] = "Konnte nicht auf die Kontaktdaten zugreifen.";
+$a->strings["Could not locate selected profile."] = "Konnte das ausgewählte Profil nicht finden.";
+$a->strings["Contact updated."] = "Kontakt aktualisiert.";
+$a->strings["Failed to update contact record."] = "Aktualisierung der Kontaktdaten fehlgeschlagen.";
+$a->strings["Contact has been blocked"] = "Kontakt wurde blockiert";
+$a->strings["Contact has been unblocked"] = "Kontakt wurde wieder freigegeben";
+$a->strings["Contact has been ignored"] = "Kontakt wurde ignoriert";
+$a->strings["Contact has been unignored"] = "Kontakt wird nicht mehr ignoriert";
+$a->strings["Contact has been archived"] = "Kontakt wurde archiviert";
+$a->strings["Contact has been unarchived"] = "Kontakt wurde aus dem Archiv geholt";
+$a->strings["Drop contact"] = "Kontakt löschen";
+$a->strings["Do you really want to delete this contact?"] = "Möchtest Du wirklich diesen Kontakt löschen?";
+$a->strings["Contact has been removed."] = "Kontakt wurde entfernt.";
+$a->strings["You are mutual friends with %s"] = "Du hast mit %s eine beidseitige Freundschaft";
+$a->strings["You are sharing with %s"] = "Du teilst mit %s";
+$a->strings["%s is sharing with you"] = "%s teilt mit Dir";
+$a->strings["Private communications are not available for this contact."] = "Private Kommunikation ist für diesen Kontakt nicht verfügbar.";
+$a->strings["(Update was successful)"] = "(Aktualisierung war erfolgreich)";
+$a->strings["(Update was not successful)"] = "(Aktualisierung war nicht erfolgreich)";
+$a->strings["Suggest friends"] = "Kontakte vorschlagen";
+$a->strings["Network type: %s"] = "Netzwerktyp: %s";
+$a->strings["Communications lost with this contact!"] = "Verbindungen mit diesem Kontakt verloren!";
+$a->strings["Fetch further information for feeds"] = "Weitere Informationen zu Feeds holen";
+$a->strings["Fetch information"] = "Beziehe Information";
+$a->strings["Fetch information and keywords"] = "Beziehe Information und Schlüsselworte";
+$a->strings["Contact"] = "Kontakt: ";
+$a->strings["Profile Visibility"] = "Profil-Sichtbarkeit";
+$a->strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Bitte wähle eines Deiner Profile das angezeigt werden soll, wenn %s Dein Profil aufruft.";
+$a->strings["Contact Information / Notes"] = "Kontakt Informationen / Notizen";
+$a->strings["Edit contact notes"] = "Notizen zum Kontakt bearbeiten";
+$a->strings["Block/Unblock contact"] = "Kontakt blockieren/freischalten";
+$a->strings["Ignore contact"] = "Ignoriere den Kontakt";
+$a->strings["Repair URL settings"] = "URL Einstellungen reparieren";
+$a->strings["View conversations"] = "Unterhaltungen anzeigen";
+$a->strings["Last update:"] = "Letzte Aktualisierung: ";
+$a->strings["Update public posts"] = "Öffentliche Beiträge aktualisieren";
+$a->strings["Update now"] = "Jetzt aktualisieren";
+$a->strings["Unignore"] = "Ignorieren aufheben";
+$a->strings["Currently blocked"] = "Derzeit geblockt";
+$a->strings["Currently ignored"] = "Derzeit ignoriert";
+$a->strings["Currently archived"] = "Momentan archiviert";
+$a->strings["Replies/likes to your public posts <strong>may</strong> still be visible"] = "Antworten/Likes auf deine öffentlichen Beiträge <strong>könnten</strong> weiterhin sichtbar sein";
+$a->strings["Notification for new posts"] = "Benachrichtigung bei neuen Beiträgen";
+$a->strings["Send a notification of every new post of this contact"] = "Sende eine Benachrichtigung, wann immer dieser Kontakt einen neuen Beitrag schreibt.";
+$a->strings["Blacklisted keywords"] = "Blacklistete Schlüsselworte ";
+$a->strings["Comma separated list of keywords that should not be converted to hashtags, when \"Fetch information and keywords\" is selected"] = "Komma-Separierte Liste mit Schlüsselworten, die nicht in Hashtags konvertiert werden, wenn \"Beziehe Information und Schlüsselworte\" aktiviert wurde";
+$a->strings["Actions"] = "Aktionen";
+$a->strings["Contact Settings"] = "Kontakteinstellungen";
+$a->strings["Suggestions"] = "Kontaktvorschläge";
+$a->strings["Suggest potential friends"] = "Kontakte vorschlagen";
+$a->strings["Show all contacts"] = "Alle Kontakte anzeigen";
+$a->strings["Unblocked"] = "Ungeblockt";
+$a->strings["Only show unblocked contacts"] = "Nur nicht-blockierte Kontakte anzeigen";
+$a->strings["Blocked"] = "Geblockt";
+$a->strings["Only show blocked contacts"] = "Nur blockierte Kontakte anzeigen";
+$a->strings["Ignored"] = "Ignoriert";
+$a->strings["Only show ignored contacts"] = "Nur ignorierte Kontakte anzeigen";
+$a->strings["Archived"] = "Archiviert";
+$a->strings["Only show archived contacts"] = "Nur archivierte Kontakte anzeigen";
+$a->strings["Hidden"] = "Verborgen";
+$a->strings["Only show hidden contacts"] = "Nur verborgene Kontakte anzeigen";
+$a->strings["Search your contacts"] = "Suche in deinen Kontakten";
+$a->strings["Archive"] = "Archivieren";
+$a->strings["Unarchive"] = "Aus Archiv zurückholen";
+$a->strings["Batch Actions"] = "Stapelverarbeitung";
+$a->strings["View all contacts"] = "Alle Kontakte anzeigen";
+$a->strings["View all common friends"] = "Alle Kontakte anzeigen";
+$a->strings["Advanced Contact Settings"] = "Fortgeschrittene Kontakteinstellungen";
+$a->strings["Mutual Friendship"] = "Beidseitige Freundschaft";
+$a->strings["is a fan of yours"] = "ist ein Fan von dir";
+$a->strings["you are a fan of"] = "Du bist Fan von";
+$a->strings["Toggle Blocked status"] = "Geblockt-Status ein-/ausschalten";
+$a->strings["Toggle Ignored status"] = "Ignoriert-Status ein-/ausschalten";
+$a->strings["Toggle Archive status"] = "Archiviert-Status ein-/ausschalten";
+$a->strings["Delete contact"] = "Lösche den Kontakt";
+$a->strings["This may occasionally happen if contact was requested by both persons and it has already been approved."] = "Das kann passieren, wenn sich zwei Kontakte gegenseitig eingeladen haben und bereits einer angenommen wurde.";
+$a->strings["Response from remote site was not understood."] = "Antwort der Gegenstelle unverständlich.";
+$a->strings["Unexpected response from remote site: "] = "Unerwartete Antwort der Gegenstelle: ";
+$a->strings["Confirmation completed successfully."] = "Bestätigung erfolgreich abgeschlossen.";
+$a->strings["Remote site reported: "] = "Gegenstelle meldet: ";
+$a->strings["Temporary failure. Please wait and try again."] = "Zeitweiser Fehler. Bitte warte einige Momente und versuche es dann noch einmal.";
+$a->strings["Introduction failed or was revoked."] = "Kontaktanfrage schlug fehl oder wurde zurückgezogen.";
+$a->strings["Unable to set contact photo."] = "Konnte das Bild des Kontakts nicht speichern.";
+$a->strings["No user record found for '%s' "] = "Für '%s' wurde kein Nutzer gefunden";
+$a->strings["Our site encryption key is apparently messed up."] = "Der Verschlüsselungsschlüssel unserer Seite ist anscheinend nicht in Ordnung.";
+$a->strings["Empty site URL was provided or URL could not be decrypted by us."] = "Leere URL für die Seite erhalten oder die URL konnte nicht entschlüsselt werden.";
+$a->strings["Contact record was not found for you on our site."] = "Für diesen Kontakt wurde auf unserer Seite kein Eintrag gefunden.";
+$a->strings["Site public key not available in contact record for URL %s."] = "Die Kontaktdaten für URL %s enthalten keinen Public Key für den Server.";
+$a->strings["The ID provided by your system is a duplicate on our system. It should work if you try again."] = "Die ID, die uns Dein System angeboten hat, ist hier bereits vergeben. Bitte versuche es noch einmal.";
+$a->strings["Unable to set your contact credentials on our system."] = "Deine Kontaktreferenzen konnten nicht in unserem System gespeichert werden.";
+$a->strings["Unable to update your contact profile details on our system"] = "Die Updates für Dein Profil konnten nicht gespeichert werden";
+$a->strings["%1\$s has joined %2\$s"] = "%1\$s ist %2\$s beigetreten";
+$a->strings["This introduction has already been accepted."] = "Diese Kontaktanfrage wurde bereits akzeptiert.";
+$a->strings["Profile location is not valid or does not contain profile information."] = "Profiladresse ist ungültig oder stellt keine Profildaten zur Verfügung.";
+$a->strings["Warning: profile location has no identifiable owner name."] = "Warnung: Es konnte kein Name des Besitzers von der angegebenen Profiladresse gefunden werden.";
+$a->strings["Warning: profile location has no profile photo."] = "Warnung: Es gibt kein Profilbild bei der angegebenen Profiladresse.";
+$a->strings["%d required parameter was not found at the given location"] = array(
+       0 => "%d benötigter Parameter wurde an der angegebenen Stelle nicht gefunden",
+       1 => "%d benötigte Parameter wurden an der angegebenen Stelle nicht gefunden",
+);
+$a->strings["Introduction complete."] = "Kontaktanfrage abgeschlossen.";
+$a->strings["Unrecoverable protocol error."] = "Nicht behebbarer Protokollfehler.";
+$a->strings["Profile unavailable."] = "Profil nicht verfügbar.";
+$a->strings["%s has received too many connection requests today."] = "%s hat heute zu viele Kontaktanfragen erhalten.";
+$a->strings["Spam protection measures have been invoked."] = "Maßnahmen zum Spamschutz wurden ergriffen.";
+$a->strings["Friends are advised to please try again in 24 hours."] = "Freunde sind angehalten, es in 24 Stunden erneut zu versuchen.";
+$a->strings["Invalid locator"] = "Ungültiger Locator";
+$a->strings["Invalid email address."] = "Ungültige E-Mail-Adresse.";
+$a->strings["This account has not been configured for email. Request failed."] = "Dieses Konto ist nicht für E-Mail konfiguriert. Anfrage fehlgeschlagen.";
+$a->strings["You have already introduced yourself here."] = "Du hast Dich hier bereits vorgestellt.";
+$a->strings["Apparently you are already friends with %s."] = "Es scheint so, als ob Du bereits mit %s in Kontakt stehst.";
+$a->strings["Invalid profile URL."] = "Ungültige Profil-URL.";
+$a->strings["Your introduction has been sent."] = "Deine Kontaktanfrage wurde gesendet.";
+$a->strings["Remote subscription can't be done for your network. Please subscribe directly on your system."] = "Entferntes abon­nie­ren kann für dein Netzwerk nicht durchgeführt werden. Bitte nutze direkt die Abonnieren-Funktion deines Systems.   ";
+$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.";
+$a->strings["Please enter your 'Identity Address' from one of the following supported communications networks:"] = "Bitte gib die Adresse Deines Profils in einem der unterstützten sozialen Netzwerke an:";
+$a->strings["If you are not yet a member of the free social web, <a href=\"%s/siteinfo\">follow this link to find a public Friendica site and join us today</a>."] = "Wenn du noch kein Mitglied dieses freien sozialen Netzwerks bist, <a href=\"%s/siteinfo\">folge diesem Link</a> um einen öffentlichen Friendica-Server zu finden und beizutreten.";
+$a->strings["Friend/Connection Request"] = "Kontaktanfrage";
+$a->strings["Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"] = "Beispiele: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca";
+$a->strings["Please answer the following:"] = "Bitte beantworte folgendes:";
+$a->strings["Does %s know you?"] = "Kennt %s Dich?";
+$a->strings["Add a personal note:"] = "Eine persönliche Notiz beifügen:";
+$a->strings["StatusNet/Federated Social Web"] = "StatusNet/Federated Social Web";
+$a->strings[" - please do not use this form.  Instead, enter %s into your Diaspora search bar."] = " - bitte verwende dieses Formular nicht. Stattdessen suche nach %s in Deiner Diaspora Suchleiste.";
+$a->strings["Your Identity Address:"] = "Adresse Deines Profils:";
+$a->strings["Submit Request"] = "Anfrage abschicken";
+$a->strings["You already added this contact."] = "Du hast den Kontakt bereits hinzugefügt.";
+$a->strings["Diaspora support isn't enabled. Contact can't be added."] = "Diaspora Unterstützung ist nicht aktiviert. Der Kontakt kann nicht zugefügt werden.";
+$a->strings["OStatus support is disabled. Contact can't be added."] = "OStatus Unterstützung ist nicht aktiviert. Der Kontakt kann nicht zugefügt werden.";
+$a->strings["The network type couldn't be detected. Contact can't be added."] = "Der Netzwerktype wurde nicht erkannt. Der Kontakt kann nicht hinzugefügt werden.";
+$a->strings["Contact added"] = "Kontakt hinzugefügt";
+$a->strings["Friendica Communications Server - Setup"] = "Friendica-Server für soziale Netzwerke – Setup";
+$a->strings["Could not connect to database."] = "Verbindung zur Datenbank gescheitert.";
+$a->strings["Could not create table."] = "Tabelle konnte nicht angelegt werden.";
+$a->strings["Your Friendica site database has been installed."] = "Die Datenbank Deiner Friendicaseite wurde installiert.";
+$a->strings["You may need to import the file \"database.sql\" manually using phpmyadmin or mysql."] = "Möglicherweise musst Du die Datei \"database.sql\" manuell mit phpmyadmin oder mysql importieren.";
+$a->strings["Please see the file \"INSTALL.txt\"."] = "Lies bitte die \"INSTALL.txt\".";
+$a->strings["Database already in use."] = "Die Datenbank wird bereits verwendet.";
+$a->strings["System check"] = "Systemtest";
+$a->strings["Check again"] = "Noch einmal testen";
+$a->strings["Database connection"] = "Datenbankverbindung";
+$a->strings["In order to install Friendica we need to know how to connect to your database."] = "Um Friendica installieren zu können, müssen wir wissen, wie wir mit Deiner Datenbank Kontakt aufnehmen können.";
+$a->strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Bitte kontaktiere den Hosting Provider oder den Administrator der Seite, falls Du Fragen zu diesen Einstellungen haben solltest.";
+$a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "Die Datenbank, die Du unten angibst, sollte bereits existieren. Ist dies noch nicht der Fall, erzeuge sie bitte bevor Du mit der Installation fortfährst.";
+$a->strings["Database Server Name"] = "Datenbank-Server";
+$a->strings["Database Login Name"] = "Datenbank-Nutzer";
+$a->strings["Database Login Password"] = "Datenbank-Passwort";
+$a->strings["Database Name"] = "Datenbank-Name";
+$a->strings["Site administrator email address"] = "E-Mail-Adresse des Administrators";
+$a->strings["Your account email address must match this in order to use the web admin panel."] = "Die E-Mail-Adresse, die in Deinem Friendica-Account eingetragen ist, muss mit dieser Adresse übereinstimmen, damit Du das Admin-Panel benutzen kannst.";
+$a->strings["Please select a default timezone for your website"] = "Bitte wähle die Standardzeitzone Deiner Webseite";
+$a->strings["Site settings"] = "Server-Einstellungen";
+$a->strings["System Language:"] = "Systemsprache:";
+$a->strings["Set the default language for your Friendica installation interface and to send emails."] = "Wähle die Standardsprache für deine Friendica-Installations-Oberfläche und den E-Mail-Versand";
+$a->strings["Could not find a command line version of PHP in the web server PATH."] = "Konnte keine Kommandozeilenversion von PHP im PATH des Servers finden.";
+$a->strings["If you don't have a command line version of PHP installed on server, you will not be able to run background polling via cron. See <a href='https://github.com/friendica/friendica/blob/master/doc/Install.md#set-up-the-poller'>'Setup the poller'</a>"] = "Wenn Du keine Kommandozeilen-Version von PHP auf Deinem Server installiert hast, kannst Du keine Hintergrundprozesse via cron starten. Siehe <a href='https://github.com/friendica/friendica/blob/master/doc/Install.md#set-up-the-poller'>'Setup the poller'</a>";
+$a->strings["PHP executable path"] = "Pfad zu PHP";
+$a->strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "Gib den kompletten Pfad zur ausführbaren Datei von PHP an. Du kannst dieses Feld auch frei lassen und mit der Installation fortfahren.";
+$a->strings["Command line PHP"] = "Kommandozeilen-PHP";
+$a->strings["PHP executable is not the php cli binary (could be cgi-fgci version)"] = "Die ausführbare Datei von PHP stimmt nicht mit der PHP cli Version überein (es könnte sich um die cgi-fgci Version handeln)";
+$a->strings["Found PHP version: "] = "Gefundene PHP Version:";
+$a->strings["PHP cli binary"] = "PHP CLI Binary";
+$a->strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "Die Kommandozeilenversion von PHP auf Deinem System hat \"register_argc_argv\" nicht aktiviert.";
+$a->strings["This is required for message delivery to work."] = "Dies wird für die Auslieferung von Nachrichten benötigt.";
+$a->strings["PHP register_argc_argv"] = "PHP register_argc_argv";
+$a->strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = "Fehler: Die Funktion \"openssl_pkey_new\" auf diesem System ist nicht in der Lage, Verschlüsselungsschlüssel zu erzeugen";
+$a->strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "Wenn der Server unter Windows läuft, schau Dir bitte \"http://www.php.net/manual/en/openssl.installation.php\" an.";
+$a->strings["Generate encryption keys"] = "Schlüssel erzeugen";
+$a->strings["libCurl PHP module"] = "PHP: libCurl-Modul";
+$a->strings["GD graphics PHP module"] = "PHP: GD-Grafikmodul";
+$a->strings["OpenSSL PHP module"] = "PHP: OpenSSL-Modul";
+$a->strings["mysqli PHP module"] = "PHP: mysqli-Modul";
+$a->strings["mb_string PHP module"] = "PHP: mb_string-Modul";
+$a->strings["mcrypt PHP module"] = "PHP mcrypt Modul";
+$a->strings["XML PHP module"] = "XML PHP Modul";
+$a->strings["iconv module"] = "iconv module";
+$a->strings["Apache mod_rewrite module"] = "Apache mod_rewrite module";
+$a->strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Fehler: Das Apache-Modul mod-rewrite wird benötigt, es ist allerdings nicht installiert.";
+$a->strings["Error: libCURL PHP module required but not installed."] = "Fehler: Das libCURL PHP Modul wird benötigt, ist aber nicht installiert.";
+$a->strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Fehler: Das GD-Graphikmodul für PHP mit JPEG-Unterstützung ist nicht installiert.";
+$a->strings["Error: openssl PHP module required but not installed."] = "Fehler: Das openssl-Modul von PHP ist nicht installiert.";
+$a->strings["Error: mysqli PHP module required but not installed."] = "Fehler: Das mysqli-Modul von PHP ist nicht installiert.";
+$a->strings["Error: mb_string PHP module required but not installed."] = "Fehler: mb_string PHP Module wird benötigt ist aber nicht installiert.";
+$a->strings["Error: mcrypt PHP module required but not installed."] = "Fehler: Das mcrypt Modul von PHP ist nicht installiert";
+$a->strings["Error: iconv PHP module required but not installed."] = "Fehler: Das iconv-Modul von PHP ist nicht installiert.";
+$a->strings["If you are using php_cli, please make sure that mcrypt module is enabled in its config file"] = "Wenn du das Modul \"php_cli\" benutzt dann versichere dich, daß das mcrypt Modul in seiner Konfigurationsdatei aktiviert ist. ";
+$a->strings["Function mcrypt_create_iv() is not defined. This is needed to enable RINO2 encryption layer."] = "Die Funktion mcrypt_create_iv() ist nicht festgelegt. Dies ist notwendig um den RINO2-Encryption-Layer zu aktivieren.";
+$a->strings["mcrypt_create_iv() function"] = "mcrypt_create_iv() function";
+$a->strings["Error, XML PHP module required but not installed."] = "Fehler: XML PHP Modul erforderlich aber nicht installiert.";
+$a->strings["The web installer needs to be able to create a file called \".htconfig.php\" in the top folder of your web server and it is unable to do so."] = "Der Installationswizard muss in der Lage sein, eine Datei im Stammverzeichnis Deines Webservers anzulegen, ist allerdings derzeit nicht in der Lage, dies zu tun.";
+$a->strings["This is most often a permission setting, as the web server may not be able to write files in your folder - even if you can."] = "In den meisten Fällen ist dies ein Problem mit den Schreibrechten. Der Webserver könnte keine Schreiberlaubnis haben, selbst wenn Du sie hast.";
+$a->strings["At the end of this procedure, we will give you a text to save in a file named .htconfig.php in your Friendica top folder."] = "Nachdem Du alles ausgefüllt hast, erhältst Du einen Text, den Du in eine Datei namens .htconfig.php in Deinem Friendica-Wurzelverzeichnis kopieren musst.";
+$a->strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"INSTALL.txt\" for instructions."] = "Alternativ kannst Du diesen Schritt aber auch überspringen und die Installation manuell durchführen. Eine Anleitung dazu (Englisch) findest Du in der Datei INSTALL.txt.";
+$a->strings[".htconfig.php is writable"] = "Schreibrechte auf .htconfig.php";
+$a->strings["Friendica uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "Friendica nutzt die Smarty3 Template Engine um die Webansichten zu rendern. Smarty3 kompiliert Templates zu PHP um das Rendern zu beschleunigen.";
+$a->strings["In order to store these compiled templates, the web server needs to have write access to the directory view/smarty3/ under the Friendica top level folder."] = "Um diese kompilierten Templates zu speichern benötigt der Webserver Schreibrechte zum Verzeichnis view/smarty3/ im obersten Ordner von Friendica.";
+$a->strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "Bitte stelle sicher, dass der Nutzer unter dem der Webserver läuft (z.B. www-data) Schreibrechte zu diesem Verzeichnis hat.";
+$a->strings["Note: as a security measure, you should give the web server write access to view/smarty3/ only--not the template files (.tpl) that it contains."] = "Hinweis: aus Sicherheitsgründen solltest Du dem Webserver nur Schreibrechte für view/smarty3/ geben -- Nicht den Templatedateien (.tpl) die sie enthalten.";
+$a->strings["view/smarty3 is writable"] = "view/smarty3 ist schreibbar";
+$a->strings["Url rewrite in .htaccess is not working. Check your server configuration."] = "Umschreiben der URLs in der .htaccess funktioniert nicht. Überprüfe die Konfiguration des Servers.";
+$a->strings["Url rewrite is working"] = "URL rewrite funktioniert";
+$a->strings["ImageMagick PHP extension is not installed"] = "ImageMagicx PHP Erweiterung ist nicht installiert.";
+$a->strings["ImageMagick PHP extension is installed"] = "ImageMagick PHP Erweiterung ist installiert";
+$a->strings["ImageMagick supports GIF"] = "ImageMagick unterstützt GIF";
+$a->strings["The database configuration file \".htconfig.php\" could not be written. Please use the enclosed text to create a configuration file in your web server root."] = "Die Konfigurationsdatei \".htconfig.php\" konnte nicht angelegt werden. Bitte verwende den angefügten Text, um die Datei im Stammverzeichnis Deiner Friendica-Installation zu erzeugen.";
+$a->strings["<h1>What next</h1>"] = "<h1>Wie geht es weiter?</h1>";
+$a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "WICHTIG: Du musst [manuell] einen Cronjob (o.ä.) für den Poller einrichten.";
 $a->strings["Unable to locate original post."] = "Konnte den Originalbeitrag nicht finden.";
 $a->strings["Empty post discarded."] = "Leerer Beitrag wurde verworfen.";
 $a->strings["System error. Post not saved."] = "Systemfehler. Beitrag konnte nicht gespeichert werden.";
@@ -1972,35 +1971,28 @@ $a->strings["This message was sent to you by %s, a member of the Friendica socia
 $a->strings["You may visit them online at %s"] = "Du kannst sie online unter %s besuchen";
 $a->strings["Please contact the sender by replying to this post if you do not wish to receive these messages."] = "Falls Du diese Beiträge nicht erhalten möchtest, kontaktiere bitte den Autor, indem Du auf diese Nachricht antwortest.";
 $a->strings["%s posted an update."] = "%s hat ein Update veröffentlicht.";
-$a->strings["Subscribing to OStatus contacts"] = "OStatus Kontakten folgen";
-$a->strings["No contact provided."] = "Keine Kontakte gefunden.";
-$a->strings["Couldn't fetch information for contact."] = "Konnte die Kontaktinformationen nicht einholen.";
-$a->strings["Couldn't fetch friends for contact."] = "Konnte die Kontaktliste des Kontakts nicht abfragen.";
-$a->strings["success"] = "Erfolg";
-$a->strings["failed"] = "Fehlgeschlagen";
-$a->strings["%1\$s welcomes %2\$s"] = "%1\$s heißt %2\$s herzlich willkommen";
-$a->strings["Tips for New Members"] = "Tipps für neue Nutzer";
-$a->strings["Unable to locate contact information."] = "Konnte die Kontaktinformationen nicht finden.";
-$a->strings["Do you really want to delete this message?"] = "Möchtest Du wirklich diese Nachricht löschen?";
-$a->strings["Message deleted."] = "Nachricht gelöscht.";
-$a->strings["Conversation removed."] = "Unterhaltung gelöscht.";
-$a->strings["No messages."] = "Keine Nachrichten.";
-$a->strings["Message not available."] = "Nachricht nicht verfügbar.";
-$a->strings["Delete message"] = "Nachricht löschen";
-$a->strings["Delete conversation"] = "Unterhaltung löschen";
-$a->strings["No secure communications available. You <strong>may</strong> be able to respond from the sender's profile page."] = "Sichere Kommunikation ist nicht verfügbar. <strong>Eventuell</strong> kannst Du auf der Profilseite des Absenders antworten.";
-$a->strings["Send Reply"] = "Antwort senden";
-$a->strings["Unknown sender - %s"] = "'Unbekannter Absender - %s";
-$a->strings["You and %s"] = "Du und %s";
-$a->strings["%s and You"] = "%s und Du";
-$a->strings["D, d M Y - g:i A"] = "D, d. M Y - g:i A";
-$a->strings["%d message"] = array(
-       0 => "%d Nachricht",
-       1 => "%d Nachrichten",
+$a->strings["Warning: This group contains %s member from a network that doesn't allow non public messages."] = array(
+       0 => "Warnung: Diese Gruppe beinhaltet %s Person aus einem Netzwerk das keine nicht öffentlichen Beiträge empfangen kann.",
+       1 => "Warnung: Diese Gruppe beinhaltet %s Personen aus Netzwerken die keine nicht-öffentlichen Beiträge empfangen können.",
 );
-$a->strings["Manage Identities and/or Pages"] = "Verwalte Identitäten und/oder Seiten";
-$a->strings["Toggle between different identities or community/group pages which share your account details or which you have been granted \"manage\" permissions"] = "Zwischen verschiedenen Identitäten oder Gemeinschafts-/Gruppenseiten wechseln, die Deine Kontoinformationen teilen oder zu denen Du „Verwalten“-Befugnisse bekommen hast.";
-$a->strings["Select an identity to manage: "] = "Wähle eine Identität zum Verwalten aus: ";
+$a->strings["Messages in this group won't be send to these receivers."] = "Beiträge in dieser Gruppe werden deshalb nicht an diese Personen zugestellt werden.";
+$a->strings["Private messages to this person are at risk of public disclosure."] = "Private Nachrichten an diese Person könnten an die Öffentlichkeit gelangen.";
+$a->strings["Invalid contact."] = "Ungültiger Kontakt.";
+$a->strings["Commented Order"] = "Neueste Kommentare";
+$a->strings["Sort by Comment Date"] = "Nach Kommentardatum sortieren";
+$a->strings["Posted Order"] = "Neueste Beiträge";
+$a->strings["Sort by Post Date"] = "Nach Beitragsdatum sortieren";
+$a->strings["Posts that mention or involve you"] = "Beiträge, in denen es um Dich geht";
+$a->strings["New"] = "Neue";
+$a->strings["Activity Stream - by date"] = "Aktivitäten-Stream - nach Datum";
+$a->strings["Shared Links"] = "Geteilte Links";
+$a->strings["Interesting Links"] = "Interessante Links";
+$a->strings["Starred"] = "Markierte";
+$a->strings["Favourite Posts"] = "Favorisierte Beiträge";
+$a->strings["{0} wants to be your friend"] = "{0} möchte mit Dir in Kontakt treten";
+$a->strings["{0} sent you a message"] = "{0} schickte Dir eine Nachricht";
+$a->strings["{0} requested registration"] = "{0} möchte sich registrieren";
+$a->strings["No contacts."] = "Keine Kontakte.";
 $a->strings["via"] = "via";
 $a->strings["Repeat the image"] = "Bild wiederholen";
 $a->strings["Will repeat your image to fill the background."] = "Wiederholt das Bild um den Hintergrund auszufüllen.";
@@ -2010,8 +2002,6 @@ $a->strings["Resize fill and-clip"] = "Größe anpassen - Ausfüllen und abschne
 $a->strings["Resize to fill and retain aspect ratio."] = "Größe anpassen: Ausfüllen und Seitenverhältnis beibehalten";
 $a->strings["Resize best fit"] = "Größe anpassen - Optimale Größe";
 $a->strings["Resize to best fit and retain aspect ratio."] = "Größe anpassen - Optimale Größe und Seitenverhältnisse beibehalten";
-$a->strings["Guest"] = "Gast";
-$a->strings["Visitor"] = "Besucher";
 $a->strings["Default"] = "Standard";
 $a->strings["Note: "] = "Hinweis:";
 $a->strings["Check image permissions if all users are allowed to visit the image"] = "Überprüfe, dass alle Benutzer die Berechtigung haben dieses Bild anzusehen";
@@ -2022,6 +2012,8 @@ $a->strings["Link color"] = "Linkfarbe";
 $a->strings["Set the background color"] = "Hintergrundfarbe festlegen";
 $a->strings["Content background transparency"] = "Transparanz des Hintergrunds von Beiträgem";
 $a->strings["Set the background image"] = "Hintergrundbild festlegen";
+$a->strings["Guest"] = "Gast";
+$a->strings["Visitor"] = "Besucher";
 $a->strings["Alignment"] = "Ausrichtung";
 $a->strings["Left"] = "Links";
 $a->strings["Center"] = "Mitte";
@@ -2045,3 +2037,16 @@ $a->strings["darkzero"] = "darkzero";
 $a->strings["comix"] = "comix";
 $a->strings["slackr"] = "slackr";
 $a->strings["Variations"] = "Variationen";
+$a->strings["Delete this item?"] = "Diesen Beitrag löschen?";
+$a->strings["show fewer"] = "weniger anzeigen";
+$a->strings["Update %s failed. See error logs."] = "Update %s fehlgeschlagen. Bitte Fehlerprotokoll überprüfen.";
+$a->strings["Create a New Account"] = "Neues Konto erstellen";
+$a->strings["Password: "] = "Passwort: ";
+$a->strings["Remember me"] = "Anmeldedaten merken";
+$a->strings["Or login using OpenID: "] = "Oder melde Dich mit Deiner OpenID an: ";
+$a->strings["Forgot your password?"] = "Passwort vergessen?";
+$a->strings["Website Terms of Service"] = "Website Nutzungsbedingungen";
+$a->strings["terms of service"] = "Nutzungsbedingungen";
+$a->strings["Website Privacy Policy"] = "Website Datenschutzerklärung";
+$a->strings["privacy policy"] = "Datenschutzerklärung";
+$a->strings["toggle mobile"] = "auf/von Mobile Ansicht wechseln";
diff --git a/view/templates/follow_slap.tpl b/view/templates/follow_slap.tpl
deleted file mode 100644 (file)
index b0e1cba..0000000
+++ /dev/null
@@ -1,26 +0,0 @@
-
-       <entry>
-               <author>
-                       <name>{{$name}}</name>
-                       <uri>{{$profile_page}}</uri>
-                       <link rel="photo"  type="image/jpeg" media:width="80" media:height="80" href="{{$thumb}}" />
-                       <link rel="avatar" type="image/jpeg" media:width="80" media:height="80" href="{{$thumb}}" />
-               </author>
-
-               <id>{{$item_id}}</id>
-               <title>{{$title}}</title>
-               <published>{{$published}}</published>
-               <content type="{{$type}}" >{{$content}}</content>
-
-               <as:actor>
-               <as:object-type>http://activitystrea.ms/schema/1.0/person</as:object-type>
-               <id>{{$profile_page}}</id>
-               <title></title>
-               <link rel="avatar" type="image/jpeg" media:width="175" media:height="175" href="{{$photo}}"/>
-               <link rel="avatar" type="image/jpeg" media:width="80" media:height="80" href="{{$thumb}}"/>
-               <poco:preferredUsername>{{$nick}}</poco:preferredUsername>
-               <poco:displayName>{{$name}}</poco:displayName>
-               </as:actor>
-               <as:verb>{{$verb}}</as:verb>
-               {{$ostat_follow}}
-       </entry>
index 085d4d941f42e8db269d9cf73fae14a54d17a3c8..279edd64eced18f25f8f2d26b1b93908247bf4a6 100644 (file)
@@ -221,7 +221,7 @@ function frio_remote_nav($a,&$nav) {
                // user info
                $r = q("SELECT `micro` FROM `contact` WHERE `uid` = %d AND `self` = 1", intval($a->user['uid']));
                
-               $r[0]['photo'] = (count($r) ? $a->remove_baseurl($r[0]['micro']) : "images/person-48.jpg");
+               $r[0]['photo'] = (dbm::is_result($r) ? $a->remove_baseurl($r[0]['micro']) : "images/person-48.jpg");
                $r[0]['name'] = $a->user['username'];
 
        } elseif(!local_user() && remote_user()) {
@@ -235,9 +235,9 @@ function frio_remote_nav($a,&$nav) {
                $nav['remote'] = t("Visitor");
        }
 
-       if(count($r)){
+       if (dbm::is_result($r)){
                        $nav['userinfo'] = array(
-                               'icon' => (count($r) ? $r[0]['photo'] : "images/person-48.jpg"),
+                               'icon' => (dbm::is_result($r) ? $r[0]['photo'] : "images/person-48.jpg"),
                                'name' => $r[0]['name'],
                        );
                }
@@ -299,7 +299,7 @@ function frio_acl_lookup($a, &$results) {
                $r = q("SELECT COUNT(*) AS `total` FROM `contact`
                        WHERE `uid` = %d AND `self` = 0 AND `pending` = 0 $sql_extra $sql_extra2 ",
                        intval($_SESSION['uid']));
-               if(count($r)) {
+               if (dbm::is_result($r)) {
                        $total = $r[0]["total"];
                }
 
@@ -311,7 +311,7 @@ function frio_acl_lookup($a, &$results) {
 
                $contacts = array();
 
-               if(count($r)) {
+               if (dbm::is_result($r)) {
                        foreach($r as $rr) {
                                $contacts[] = _contact_detail_for_template($rr);
                        }
index 67bab16a1958b22e3e9112ddd8eefddabebfaabf..cbb850c130afadabf98f70ff17455936bc2abee1 100644 (file)
@@ -24,69 +24,69 @@ img {
 }
 
 #pending-update {
-  float:right;
-  color: #ffffff;
-  font-weight: bold;
-  background-color: #FF0000;
-  padding: 0em 0.3em;
+       float:right;
+       color: #ffffff;
+       font-weight: bold;
+       background-color: #FF0000;
+       padding: 0em 0.3em;
 }
 
 .admin.linklist {
-  border: 0px;
-  padding: 0px;
-  list-style: none;
-  margin-top: 0px;
+       border: 0px;
+       padding: 0px;
+       list-style: none;
+       margin-top: 0px;
 }
 
 .admin.link {
-  list-style-position: inside;
-  font-size: 1em;
-/*  padding-left: 5px;
-    margin: 5px; */
+       list-style-position: inside;
+       font-size: 1em;
+/*        padding-left: 5px;
+       margin: 5px; */
 }
 
 #adminpage dl {
-  clear: left;
-  margin-bottom: 2px;
-  padding-bottom: 2px;
-  border-bottom: 1px solid black;
+       clear: left;
+       margin-bottom: 2px;
+       padding-bottom: 2px;
+       border-bottom: 1px solid black;
 }
 
 #adminpage dt {
-  width: 200px;
-  float: left;
-  font-weight: bold;
+       width: 200px;
+       float: left;
+       font-weight: bold;
 }
 
 #adminpage dd {
-  margin-left: 200px;
+       margin-left: 200px;
 }
 #adminpage h3 {
-  border-bottom: 1px solid #898989;
-  margin-bottom: 5px;
-  margin-top: 10px;
+       border-bottom: 1px solid #898989;
+       margin-bottom: 5px;
+       margin-top: 10px;
 }
 
 #adminpage .submit {
-  clear:left;
+       clear:left;
 }
 
 #adminpage #pluginslist {
-  margin: 0px; padding: 0px;
+       margin: 0px; padding: 0px;
 }
 
 #adminpage .plugin {
-  list-style: none;
-  display: block;
-  /* border: 1px solid #888888; */
-  padding: 1em;
-  margin-bottom: 5px;
-  clear: left;
+       list-style: none;
+       display: block;
+       /* border: 1px solid #888888; */
+       padding: 1em;
+       margin-bottom: 5px;
+       clear: left;
 }
 
 #adminpage .toggleplugin {
-  float:left;
-  margin-right: 1em;
+       float:left;
+       margin-right: 1em;
 }
 
 #adminpage table {width:100%; border-bottom: 1px solid #000000; margin: 5px 0px;}
index 925ac76a1fe2284b4798a34268ceb95e7189b314..50b292f6b7941342ffea3780874af73979fce248 100644 (file)
@@ -147,7 +147,7 @@ function vier_community_info() {
                $r = suggestion_query(local_user(), 0, 9);
 
                $tpl = get_markup_template('ch_directory_item.tpl');
-               if(count($r)) {
+               if (dbm::is_result($r)) {
 
                        $aside['$comunity_profiles_title'] = t('Community Profiles');
                        $aside['$comunity_profiles_items'] = array();
@@ -170,13 +170,14 @@ function vier_community_info() {
                $publish = (get_config('system','publish_all') ? '' : " AND `publish` = 1 ");
                $order = " ORDER BY `register_date` DESC ";
 
+               $tpl = get_markup_template('ch_directory_item.tpl');
+
                $r = q("SELECT `profile`.*, `profile`.`uid` AS `profile_uid`, `user`.`nickname`
                                FROM `profile` LEFT JOIN `user` ON `user`.`uid` = `profile`.`uid`
                                WHERE `is-default` = 1 $publish AND `user`.`blocked` = 0 $order LIMIT %d , %d ",
                                0, 9);
 
-               $tpl = get_markup_template('ch_directory_item.tpl');
-               if(count($r)) {
+               if (dbm::is_result($r)) {
 
                        $aside['$lastusers_title'] = t('Last users');
                        $aside['$lastusers_items'] = array();
@@ -367,7 +368,7 @@ function vier_community_info() {
 
                $tpl = get_markup_template('ch_connectors.tpl');
 
-               if(count($r)) {
+               if (dbm::is_result($r)) {
 
                        $con_services = array();
                        $con_services['title'] = Array("", t('Connect Services'), "", "");