From 6ebfbc59931b6b83411e5c53c235c6017e4e3f99 Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Fri, 15 Jul 2016 15:37:51 +0200 Subject: [PATCH 01/23] API: Use a generic function to create the XML --- include/api.php | 67 ++++++++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 66 insertions(+), 1 deletion(-) diff --git a/include/api.php b/include/api.php index c86a3cbe4b..7a9d91f157 100644 --- a/include/api.php +++ b/include/api.php @@ -25,6 +25,7 @@ require_once('include/like.php'); require_once('include/NotificationsManager.php'); require_once('include/plaintext.php'); + require_once('include/xml.php'); define('API_METHOD_ANY','*'); @@ -286,8 +287,12 @@ switch($type){ case "xml": - $r = mb_convert_encoding($r, "UTF-8",mb_detect_encoding($r)); header ("Content-Type: text/xml"); + + if (substr($r, 0, 5) == "'."\n".$r; break; case "json": @@ -707,6 +712,63 @@ return $res; } + + function api_walk_recursive(array &$array, callable $callback) { + + $new_array = array(); + + foreach ($array as $k => $v) { + if (is_array($v)) { + if ($callback($v, $k)) + $new_array[$k] = api_walk_recursive($v, $callback); + } else { + if ($callback($v, $k)) + $new_array[$k] = $v; + } + } + $array = $new_array; + + return $array; + } + + function api_reformat_xml(&$item, &$key) { + if (is_bool($item)) + $item = ($item ? "true" : "false"); + + if (substr($key, 0, 10) == "statusnet_") + $key = "statusnet:".substr($key, 10); + elseif (substr($key, 0, 10) == "friendica_") + $key = "friendica:".substr($key, 10); + elseif (in_array($key, array("like", "dislike", "attendyes", "attendno", "attendmaybe"))) + $key = "friendica:".$key; + + return ($key != "attachments"); + } + + function api_create_xml($data, $templatename) { + $data2 = array_pop($data); + $key = key($data2); + + if (is_array($data2)) + api_walk_recursive($data2, "api_reformat_xml"); + + if ($key == "0") { + $data4 = array(); + $i = 1; + foreach ($data2 AS $item) + $data4[$i++.":status"] = $item; + $data3 = array("statuses" => $data4); + } else + $data3 = array($templatename => $data2); + + $namespaces = array("statusnet" => "http://status.net/schema/api/1/", + "friendica" => "http://friendi.ca/schema/api/1/"); + + $ret = xml::from_array($data3, $xml, false, $namespaces); + + return $ret; + } + /** * load api $templatename for $type and replace $data array */ @@ -718,6 +780,9 @@ case "atom": case "rss": case "xml": + //$ret = api_create_xml($data, $templatename); + //break; + $data = array_xmlify($data); if ($templatename==="") { $ret = api_array_to_xml($data); From bc2c565060086db1ed4e8b26841a916b7843cffa Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Sat, 16 Jul 2016 12:32:08 +0200 Subject: [PATCH 02/23] Work in progress: API XML output without templates --- include/api.php | 164 ++++++++++++++++++------------------------------ include/xml.php | 7 ++- 2 files changed, 65 insertions(+), 106 deletions(-) diff --git a/include/api.php b/include/api.php index 3f6216c173..9b1d198351 100644 --- a/include/api.php +++ b/include/api.php @@ -257,7 +257,6 @@ if (strpos($a->query_string, ".json")>0) $type="json"; if (strpos($a->query_string, ".rss")>0) $type="rss"; if (strpos($a->query_string, ".atom")>0) $type="atom"; - if (strpos($a->query_string, ".as")>0) $type="as"; try { foreach ($API as $p=>$info){ if (strpos($a->query_string, $p)===0){ @@ -311,12 +310,6 @@ header ("Content-Type: application/atom+xml"); return ''."\n".$r; break; - case "as": - //header ("Content-Type: application/json"); - //foreach($r as $rr) - // return json_encode($rr); - return json_encode($r); - break; } } @@ -717,6 +710,14 @@ } + /** + * @brief walks recursively through an array with the possibility to change value and key + * + * @param array $array The array to walk through + * @param string $callback The callback function + * + * @return array the transformed array + */ function api_walk_recursive(array &$array, callable $callback) { $new_array = array(); @@ -735,6 +736,14 @@ return $array; } + /** + * @brief Callback function to transform the array in an array that can be transformed in a XML file + * + * @param variant $item Array item value + * @param string $key Array key + * + * @return boolean Should the array item be deleted? + */ function api_reformat_xml(&$item, &$key) { if (is_bool($item)) $item = ($item ? "true" : "false"); @@ -746,28 +755,60 @@ elseif (in_array($key, array("like", "dislike", "attendyes", "attendno", "attendmaybe"))) $key = "friendica:".$key; - return ($key != "attachments"); + return (!in_array($key, array("attachments", "friendica:activities", "coordinates"))); } + /** + * @brief Creates the XML from a JSON style array + * + * @param array $data JSON style array + * @param string $template Name of the root element + * + * @return boolean string The XML data + */ function api_create_xml($data, $templatename) { + $data2 = array_pop($data); $key = key($data2); + $namespaces = array("statusnet" => "http://status.net/schema/api/1/", + "friendica" => "http://friendi.ca/schema/api/1/"); + + if ($templatename == "test") { + $namespaces = array(); + $templatename = "ok"; + } + + if ($templatename == "ratelimit") { + $namespaces = array(); + $templatename = "hash"; + } + if (is_array($data2)) api_walk_recursive($data2, "api_reformat_xml"); if ($key == "0") { $data4 = array(); $i = 1; + + if ($templatename == "friends") { + $childname = "user"; + $parentname = "users"; + } elseif ($templatename == "direct_messages") { + $childname = "direct_message"; + $parentname = "direct-messages"; + } else { + $childname = "status"; + $parentname = "statuses"; + } + foreach ($data2 AS $item) - $data4[$i++.":status"] = $item; - $data3 = array("statuses" => $data4); + $data4[$i++.":".$childname] = $item; + + $data3 = array($parentname => $data4); } else $data3 = array($templatename => $data2); - $namespaces = array("statusnet" => "http://status.net/schema/api/1/", - "friendica" => "http://friendi.ca/schema/api/1/"); - $ret = xml::from_array($data3, $xml, false, $namespaces); return $ret; @@ -784,8 +825,8 @@ case "atom": case "rss": case "xml": - //$ret = api_create_xml($data, $templatename); - //break; + $ret = api_create_xml($data, $templatename); + break; $data = array_xmlify($data); if ($templatename==="") { @@ -1415,12 +1456,6 @@ case "rss": $data = api_rss_extra($a, $data, $user_info); break; - case "as": - $as = api_format_as($a, $ret, $user_info); - $as['title'] = $a->config['sitename']." Home Timeline"; - $as['link']['url'] = $a->get_baseurl()."/".$user_info["screen_name"]."/all"; - return($as); - break; } return api_apply_template("timeline", $type, $data); @@ -1483,12 +1518,6 @@ case "rss": $data = api_rss_extra($a, $data, $user_info); break; - case "as": - $as = api_format_as($a, $ret, $user_info); - $as['title'] = $a->config['sitename']." Public Timeline"; - $as['link']['url'] = $a->get_baseurl()."/"; - return($as); - break; } return api_apply_template("timeline", $type, $data); @@ -1797,12 +1826,6 @@ case "rss": $data = api_rss_extra($a, $data, $user_info); break; - case "as": - $as = api_format_as($a, $ret, $user_info); - $as["title"] = $a->config['sitename']." Mentions"; - $as['link']['url'] = $a->get_baseurl()."/"; - return($as); - break; } return api_apply_template("timeline", $type, $data); @@ -1846,12 +1869,12 @@ `contact`.`name`, `contact`.`photo`, `contact`.`url`, `contact`.`rel`, `contact`.`network`, `contact`.`thumb`, `contact`.`dfrn-id`, `contact`.`self`, `contact`.`id` AS `cid` - FROM `item`, `contact` + FROM `item` + INNER JOIN `contact` ON `contact`.`id` = `item`.`contact-id` AND `contact`.`uid` = `item`.`uid` + AND NOT `contact`.`blocked` AND NOT `contact`.`pending` WHERE `item`.`uid` = %d AND `verb` = '%s' AND `item`.`contact-id` = %d - AND `item`.`visible` = 1 and `item`.`moderated` = 0 AND `item`.`deleted` = 0 - AND `contact`.`id` = `item`.`contact-id` - AND `contact`.`blocked` = 0 AND `contact`.`pending` = 0 + AND `item`.`visible` AND NOT `item`.`moderated` AND NOT `item`.`deleted` $sql_extra AND `item`.`id`>%d ORDER BY `item`.`id` DESC LIMIT %d ,%d ", @@ -2003,73 +2026,6 @@ } api_register_func('api/favorites','api_favorites', true); - - - - function api_format_as($a, $ret, $user_info) { - $as = array(); - $as['title'] = $a->config['sitename']." Public Timeline"; - $items = array(); - foreach ($ret as $item) { - $singleitem["actor"]["displayName"] = $item["user"]["name"]; - $singleitem["actor"]["id"] = $item["user"]["contact_url"]; - $avatar[0]["url"] = $item["user"]["profile_image_url"]; - $avatar[0]["rel"] = "avatar"; - $avatar[0]["type"] = ""; - $avatar[0]["width"] = 96; - $avatar[0]["height"] = 96; - $avatar[1]["url"] = $item["user"]["profile_image_url"]; - $avatar[1]["rel"] = "avatar"; - $avatar[1]["type"] = ""; - $avatar[1]["width"] = 48; - $avatar[1]["height"] = 48; - $avatar[2]["url"] = $item["user"]["profile_image_url"]; - $avatar[2]["rel"] = "avatar"; - $avatar[2]["type"] = ""; - $avatar[2]["width"] = 24; - $avatar[2]["height"] = 24; - $singleitem["actor"]["avatarLinks"] = $avatar; - - $singleitem["actor"]["image"]["url"] = $item["user"]["profile_image_url"]; - $singleitem["actor"]["image"]["rel"] = "avatar"; - $singleitem["actor"]["image"]["type"] = ""; - $singleitem["actor"]["image"]["width"] = 96; - $singleitem["actor"]["image"]["height"] = 96; - $singleitem["actor"]["type"] = "person"; - $singleitem["actor"]["url"] = $item["person"]["contact_url"]; - $singleitem["actor"]["statusnet:profile_info"]["local_id"] = $item["user"]["id"]; - $singleitem["actor"]["statusnet:profile_info"]["following"] = $item["user"]["following"] ? "true" : "false"; - $singleitem["actor"]["statusnet:profile_info"]["blocking"] = "false"; - $singleitem["actor"]["contact"]["preferredUsername"] = $item["user"]["screen_name"]; - $singleitem["actor"]["contact"]["displayName"] = $item["user"]["name"]; - $singleitem["actor"]["contact"]["addresses"] = ""; - - $singleitem["body"] = $item["text"]; - $singleitem["object"]["displayName"] = $item["text"]; - $singleitem["object"]["id"] = $item["url"]; - $singleitem["object"]["type"] = "note"; - $singleitem["object"]["url"] = $item["url"]; - //$singleitem["context"] =; - $singleitem["postedTime"] = date("c", strtotime($item["published"])); - $singleitem["provider"]["objectType"] = "service"; - $singleitem["provider"]["displayName"] = "Test"; - $singleitem["provider"]["url"] = "http://test.tld"; - $singleitem["title"] = $item["text"]; - $singleitem["verb"] = "post"; - $singleitem["statusnet:notice_info"]["local_id"] = $item["id"]; - $singleitem["statusnet:notice_info"]["source"] = $item["source"]; - $singleitem["statusnet:notice_info"]["favorite"] = "false"; - $singleitem["statusnet:notice_info"]["repeated"] = "false"; - //$singleitem["original"] = $item; - $items[] = $singleitem; - } - $as['items'] = $items; - $as['link']['url'] = $a->get_baseurl()."/".$user_info["screen_name"]."/all"; - $as['link']['rel'] = "alternate"; - $as['link']['type'] = "text/html"; - return($as); - } - function api_format_messages($item, $recipient, $sender) { // standard meta information $ret=Array( diff --git a/include/xml.php b/include/xml.php index ed2f49fb7f..f32639e3e4 100644 --- a/include/xml.php +++ b/include/xml.php @@ -27,8 +27,11 @@ class xml { foreach ($namespaces AS $nskey => $nsvalue) $key .= " xmlns".($nskey == "" ? "":":").$nskey.'="'.$nsvalue.'"'; - $root = new SimpleXMLElement("<".$key."/>"); - self::from_array($value, $root, $remove_header, $namespaces, false); + if (is_array($value)) { + $root = new SimpleXMLElement("<".$key."/>"); + self::from_array($value, $root, $remove_header, $namespaces, false); + } else + $root = new SimpleXMLElement("<".$key.">".xmlify($value).""); $dom = dom_import_simplexml($root)->ownerDocument; $dom->formatOutput = true; From d7f093cb2e45c81b9501220520634605ccab3526 Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Sun, 17 Jul 2016 19:42:30 +0200 Subject: [PATCH 03/23] Enhanced XML creation, and so on. --- include/api.php | 203 ++++++++++++++++++++++-------------------------- include/xml.php | 11 ++- 2 files changed, 103 insertions(+), 111 deletions(-) diff --git a/include/api.php b/include/api.php index 9b1d198351..ddc5813d50 100644 --- a/include/api.php +++ b/include/api.php @@ -766,23 +766,18 @@ * * @return boolean string The XML data */ - function api_create_xml($data, $templatename) { + function api_create_xml($data, $root_element) { + $childname = key($data); $data2 = array_pop($data); $key = key($data2); $namespaces = array("statusnet" => "http://status.net/schema/api/1/", "friendica" => "http://friendi.ca/schema/api/1/"); - if ($templatename == "test") { + /// @todo Auto detection of needed namespaces + if (in_array($root_element, array("ok", "hash", "config", "version", "ids", "notes", "photos"))) $namespaces = array(); - $templatename = "ok"; - } - - if ($templatename == "ratelimit") { - $namespaces = array(); - $templatename = "hash"; - } if (is_array($data2)) api_walk_recursive($data2, "api_reformat_xml"); @@ -791,26 +786,14 @@ $data4 = array(); $i = 1; - if ($templatename == "friends") { - $childname = "user"; - $parentname = "users"; - } elseif ($templatename == "direct_messages") { - $childname = "direct_message"; - $parentname = "direct-messages"; - } else { - $childname = "status"; - $parentname = "statuses"; - } - foreach ($data2 AS $item) $data4[$i++.":".$childname] = $item; - $data3 = array($parentname => $data4); - } else - $data3 = array($templatename => $data2); + $data2 = $data4; + } + $data3 = array($root_element => $data2); $ret = xml::from_array($data3, $xml, false, $namespaces); - return $ret; } @@ -887,7 +870,7 @@ unset($user_info["uid"]); unset($user_info["self"]); - return api_apply_template("user", $type, array('$user' => $user_info)); + return api_apply_template("user", $type, array('user' => $user_info)); } api_register_func('api/account/verify_credentials','api_account_verify_credentials', true); @@ -1244,7 +1227,7 @@ if ($type == "raw") return($status_info); - return api_apply_template("status", $type, array('$status' => $status_info)); + return api_apply_template("statuses", $type, array('status' => $status_info)); } @@ -1341,7 +1324,7 @@ unset($user_info["uid"]); unset($user_info["self"]); - return api_apply_template("user", $type, array('$user' => $user_info)); + return api_apply_template("user", $type, array('user' => $user_info)); } api_register_func('api/users/show','api_users_show'); @@ -1361,7 +1344,7 @@ foreach ($r AS $user) { $user_info = api_get_user($a, $user["id"]); //echo print_r($user_info, true)."\n"; - $userdata = api_apply_template("user", $type, array('user' => $user_info)); + $userdata = api_apply_template("user", $type, array('users' => $user_info)); $userlist[] = $userdata["user"]; } $userlist = array("users" => $userlist); @@ -1450,7 +1433,7 @@ $r = q("UPDATE `item` SET `unseen` = 0 WHERE `unseen` AND `id` IN (%s)", $idlist); } - $data = array('$statuses' => $ret); + $data = array('status' => $ret); switch($type){ case "atom": case "rss": @@ -1458,7 +1441,7 @@ break; } - return api_apply_template("timeline", $type, $data); + return api_apply_template("statuses", $type, $data); } api_register_func('api/statuses/home_timeline','api_statuses_home_timeline', true); api_register_func('api/statuses/friends_timeline','api_statuses_home_timeline', true); @@ -1512,7 +1495,7 @@ $ret = api_format_items($r,$user_info); - $data = array('$statuses' => $ret); + $data = array('status' => $ret); switch($type){ case "atom": case "rss": @@ -1520,7 +1503,7 @@ break; } - return api_apply_template("timeline", $type, $data); + return api_apply_template("statuses", $type, $data); } api_register_func('api/statuses/public_timeline','api_statuses_public_timeline', true); @@ -1573,15 +1556,10 @@ $ret = api_format_items($r,$user_info); if ($conversation) { - $data = array('$statuses' => $ret); - return api_apply_template("timeline", $type, $data); + $data = array('status' => $ret); + return api_apply_template("statuses", $type, $data); } else { - $data = array('$status' => $ret[0]); - /*switch($type){ - case "atom": - case "rss": - $data = api_rss_extra($a, $data, $user_info); - }*/ + $data = array('status' => $ret[0]); return api_apply_template("status", $type, $data); } } @@ -1652,8 +1630,8 @@ $ret = api_format_items($r,$user_info); - $data = array('$statuses' => $ret); - return api_apply_template("timeline", $type, $data); + $data = array('status' => $ret); + return api_apply_template("statuses", $type, $data); } api_register_func('api/conversation/show','api_conversation_show', true); api_register_func('api/statusnet/conversation','api_conversation_show', true); @@ -1820,7 +1798,7 @@ $ret = api_format_items($r,$user_info); - $data = array('$statuses' => $ret); + $data = array('status' => $ret); switch($type){ case "atom": case "rss": @@ -1828,7 +1806,7 @@ break; } - return api_apply_template("timeline", $type, $data); + return api_apply_template("statuses", $type, $data); } api_register_func('api/statuses/mentions','api_statuses_mentions', true); api_register_func('api/statuses/replies','api_statuses_mentions', true); @@ -1887,14 +1865,14 @@ $ret = api_format_items($r,$user_info, true); - $data = array('$statuses' => $ret); + $data = array('status' => $ret); switch($type){ case "atom": case "rss": $data = api_rss_extra($a, $data, $user_info); } - return api_apply_template("timeline", $type, $data); + return api_apply_template("statuses", $type, $data); } api_register_func('api/statuses/user_timeline','api_statuses_user_timeline', true); @@ -1951,7 +1929,7 @@ $rets = api_format_items($item,$user_info); $ret = $rets[0]; - $data = array('$status' => $ret); + $data = array('status' => $ret); switch($type){ case "atom": case "rss": @@ -2015,14 +1993,14 @@ } - $data = array('$statuses' => $ret); + $data = array('status' => $ret); switch($type){ case "atom": case "rss": $data = api_rss_extra($a, $data, $user_info); } - return api_apply_template("timeline", $type, $data); + return api_apply_template("statuses", $type, $data); } api_register_func('api/favorites','api_favorites', true); @@ -2510,16 +2488,27 @@ function api_account_rate_limit_status(&$a,$type) { - $hash = array( - 'reset_time_in_seconds' => strtotime('now + 1 hour'), - 'remaining_hits' => (string) 150, - 'hourly_limit' => (string) 150, - 'reset_time' => api_date(datetime_convert('UTC','UTC','now + 1 hour',ATOM_TIME)), - ); - if ($type == "xml") - $hash['resettime_in_seconds'] = $hash['reset_time_in_seconds']; - return api_apply_template('ratelimit', $type, array('$hash' => $hash)); + if ($type == "json") + $hash = array( + 'reset_time_in_seconds' => strtotime('now + 1 hour'), + 'remaining_hits' => (string) 150, + 'hourly_limit' => (string) 150, + 'reset_time' => api_date(datetime_convert('UTC','UTC','now + 1 hour',ATOM_TIME)), + ); + else + $hash = array( + 'remaining-hits' => (string) 150, + '@attributes' => array("type" => "integer"), + 'hourly-limit' => (string) 150, + '@attributes2' => array("type" => "integer"), + 'reset-time' => datetime_convert('UTC','UTC','now + 1 hour',ATOM_TIME), + '@attributes3' => array("type" => "datetime"), + 'reset_time_in_seconds' => strtotime('now + 1 hour'), + '@attributes4' => array("type" => "integer"), + ); + + return api_apply_template('hash', $type, array('hash' => $hash)); } api_register_func('api/account/rate_limit_status','api_account_rate_limit_status',true); @@ -2529,19 +2518,19 @@ else $ok = "ok"; - return api_apply_template('test', $type, array("$ok" => $ok)); + return api_apply_template('ok', $type, array("ok" => $ok)); } api_register_func('api/help/test','api_help_test',false); function api_lists(&$a,$type) { $ret = array(); - return array($ret); + return api_apply_template('lists', $type, array("lists_list" => $ret)); } api_register_func('api/lists','api_lists',true); function api_lists_list(&$a,$type) { $ret = array(); - return array($ret); + return api_apply_template('lists', $type, array("lists_list" => $ret)); } api_register_func('api/lists/list','api_lists_list',true); @@ -2589,18 +2578,18 @@ $ret[] = $user; } - return array('$users' => $ret); + return array('user' => $ret); } function api_statuses_friends(&$a, $type){ $data = api_statuses_f($a,$type,"friends"); if ($data===false) return false; - return api_apply_template("friends", $type, $data); + return api_apply_template("users", $type, $data); } function api_statuses_followers(&$a, $type){ $data = api_statuses_f($a,$type,"followers"); if ($data===false) return false; - return api_apply_template("friends", $type, $data); + return api_apply_template("users", $type, $data); } api_register_func('api/statuses/friends','api_statuses_friends',true); api_register_func('api/statuses/followers','api_statuses_followers',true); @@ -2638,7 +2627,7 @@ ), ); - return api_apply_template('config', $type, array('$config' => $config)); + return api_apply_template('config', $type, array('config' => $config)); } api_register_func('api/statusnet/config','api_statusnet_config',false); @@ -2647,16 +2636,7 @@ // liar $fake_statusnet_version = "0.9.7"; - if($type === 'xml') { - header("Content-type: application/xml"); - echo '' . "\r\n" . ''.$fake_statusnet_version.'' . "\r\n"; - killme(); - } - elseif($type === 'json') { - header("Content-type: application/json"); - echo '"'.$fake_statusnet_version.'"'; - killme(); - } + return api_apply_template('version', $type, array('version' => $fake_statusnet_version)); } api_register_func('api/statusnet/version','api_statusnet_version',false); @@ -2682,36 +2662,24 @@ intval(api_user()) ); - if(is_array($r)) { + if(!dbm::is_result($r)) + return; - if($type === 'xml') { - header("Content-type: application/xml"); - echo '' . "\r\n" . '' . "\r\n"; - foreach($r as $rr) - echo '' . $rr['id'] . '' . "\r\n"; - echo '' . "\r\n"; - killme(); - } - elseif($type === 'json') { - $ret = array(); - header("Content-type: application/json"); - foreach($r as $rr) - if ($stringify_ids) - $ret[] = $rr['id']; - else - $ret[] = intval($rr['id']); + $ids = array(); + foreach($r as $rr) + if ($stringify_ids) + $ids[] = $rr['id']; + else + $ids[] = intval($rr['id']); - echo json_encode($ret); - killme(); - } - } + return api_apply_template("ids", $type, array('id' => $ids)); } function api_friends_ids(&$a,$type) { - api_ff_ids($a,$type,'friends'); + return api_ff_ids($a,$type,'friends'); } function api_followers_ids(&$a,$type) { - api_ff_ids($a,$type,'followers'); + return api_ff_ids($a,$type,'followers'); } api_register_func('api/friends/ids','api_friends_ids',true); api_register_func('api/followers/ids','api_followers_ids',true); @@ -2764,7 +2732,7 @@ $ret = array("error"=>$id); } - $data = Array('$messages'=>$ret); + $data = Array('direct_message'=>$ret); switch($type){ case "atom": @@ -2772,7 +2740,7 @@ $data = api_rss_extra($a, $data, $user_info); } - return api_apply_template("direct_messages", $type, $data); + return api_apply_template("direct-messages", $type, $data); } api_register_func('api/direct_messages/new','api_direct_messages_new',true, API_METHOD_POST); @@ -2852,14 +2820,14 @@ } - $data = array('$messages' => $ret); + $data = array('direct_message' => $ret); switch($type){ case "atom": case "rss": $data = api_rss_extra($a, $data, $user_info); } - return api_apply_template("direct_messages", $type, $data); + return api_apply_template("direct-messages", $type, $data); } @@ -2918,7 +2886,7 @@ 'image/png' => 'png', 'image/gif' => 'gif' ); - $data = array('photos'=>array()); + $data = array('photo'=>array()); if($r) { foreach($r as $rr) { $photo = array(); @@ -2926,11 +2894,17 @@ $photo['album'] = $rr['album']; $photo['filename'] = $rr['filename']; $photo['type'] = $rr['type']; - $photo['thumb'] = $a->get_baseurl()."/photo/".$rr['resource-id']."-".$rr['scale'].".".$typetoext[$rr['type']]; - $data['photos'][] = $photo; + $thumb = $a->get_baseurl()."/photo/".$rr['resource-id']."-".$rr['scale'].".".$typetoext[$rr['type']]; + + if ($type == "json") { + $photo['thumb'] = $thumb; + $data['photo'][] = $photo; + } else { + $data['photo'][] = array("@attributes" => $photo, "1" => $thumb); + } } } - return api_apply_template("photos_list", $type, $data); + return api_apply_template("photos", $type, $data); } function api_fr_photo_detail(&$a,$type) { @@ -3323,7 +3297,7 @@ } $grps[] = array('name' => $rr['name'], 'gid' => $rr['id'], 'user' => $users); } - return api_apply_template("group_show", $type, array('$groups' => $grps)); + return api_apply_template("group_show", $type, array('groups' => $grps)); } api_register_func('api/friendica/group_show', 'api_friendica_group_show', true); @@ -3364,7 +3338,7 @@ if ($ret) { // return success $success = array('success' => $ret, 'gid' => $gid, 'name' => $name, 'status' => 'deleted', 'wrong users' => array()); - return api_apply_template("group_delete", $type, array('$result' => $success)); + return api_apply_template("group_delete", $type, array('result' => $success)); } else throw new BadRequestException('other API error'); @@ -3536,7 +3510,16 @@ $nm = new NotificationsManager(); $notes = $nm->getAll(array(), "+seen -date", 50); - return api_apply_template("", $type, array('$notes' => $notes)); + + if ($type == "xml") { + $xmlnotes = array(); + foreach ($notes AS $note) + $xmlnotes[] = array("@attributes" => $note); + + $notes = $xmlnotes; + } + + return api_apply_template("notes", $type, array('note' => $notes)); } /** @@ -3569,7 +3552,7 @@ // we found the item, return it to the user $user_info = api_get_user($a); $ret = api_format_items($r,$user_info); - $data = array('$statuses' => $ret); + $data = array('statuses' => $ret); return api_apply_template("timeline", $type, $data); } // the item can't be found, but we set the note as seen, so we count this as a success diff --git a/include/xml.php b/include/xml.php index f32639e3e4..133c2b319a 100644 --- a/include/xml.php +++ b/include/xml.php @@ -47,6 +47,15 @@ class xml { } foreach($array as $key => $value) { + if (!isset($element) AND isset($xml)) + $element = $xml; + + if (is_integer($key)) { + if (isset($element)) + $element[0] = $value; + continue; + } + if (substr($key, 0, 11) == "@attributes") { if (!isset($element) OR !is_array($value)) continue; @@ -58,7 +67,7 @@ class xml { else $namespace = NULL; - $element->addAttribute ($attr_key, $attr_value, $namespace); + $element->addAttribute($attr_key, $attr_value, $namespace); } continue; From 838f97671541fc0e3c570f94f8392d618e92e485 Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Sun, 17 Jul 2016 23:59:35 +0200 Subject: [PATCH 04/23] Some more improvements to xml.php, code cleanup --- include/api.php | 308 ++++++++++++++------------- include/xml.php | 4 + view/templates/api_timeline_atom.tpl | 91 -------- 3 files changed, 161 insertions(+), 242 deletions(-) delete mode 100644 view/templates/api_timeline_atom.tpl diff --git a/include/api.php b/include/api.php index ddc5813d50..4796228f9d 100644 --- a/include/api.php +++ b/include/api.php @@ -287,12 +287,7 @@ switch($type){ case "xml": header ("Content-Type: text/xml"); - - if (substr($r, 0, 5) == "'."\n".$r; + return $r; break; case "json": header ("Content-Type: application/json"); @@ -332,27 +327,29 @@ function api_error(&$a, $type, $e) { $error = ($e->getMessage()!==""?$e->getMessage():$e->httpdesc); # TODO: https://dev.twitter.com/overview/api/response-codes - $xmlstr = "{$error}{$e->httpcode} {$e->httpdesc}{$a->query_string}"; + + $error = array("error" => $error, + "code" => $e->httpcode." ".$e->httpdesc, + "request" => $a->query_string); + + $ret = api_format_data('status', $type, array('status' => $error)); + switch($type){ case "xml": header ("Content-Type: text/xml"); - return ''."\n".$xmlstr; + return $ret; break; case "json": header ("Content-Type: application/json"); - return json_encode(array( - 'error' => $error, - 'request' => $a->query_string, - 'code' => $e->httpcode." ".$e->httpdesc - )); + return json_encode($ret); break; case "rss": header ("Content-Type: application/rss+xml"); - return ''."\n".$xmlstr; + return $ret; break; case "atom": header ("Content-Type: application/atom+xml"); - return ''."\n".$xmlstr; + return $ret; break; } } @@ -679,37 +676,6 @@ return (array($status_user, $owner_user)); } - - /** - * @brief transform $data array in xml without a template - * - * @param array $data - * @return string xml string - */ - function api_array_to_xml($data, $ename="") { - $attrs=""; - $childs=""; - if (count($data)==1 && !is_array($data[array_keys($data)[0]])) { - $ename = array_keys($data)[0]; - $ename = trim($ename,'$'); - $v = $data[$ename]; - return "<$ename>$v"; - } - foreach($data as $k=>$v) { - $k=trim($k,'$'); - if (!is_array($v)) { - $attrs .= sprintf('%s="%s" ', $k, $v); - } else { - if (is_numeric($k)) $k=trim($ename,'s'); - $childs.=api_array_to_xml($v, $k); - } - } - $res = $childs; - if ($ename!="") $res = "<$ename $attrs>$res"; - return $res; - } - - /** * @brief walks recursively through an array with the possibility to change value and key * @@ -752,28 +718,29 @@ $key = "statusnet:".substr($key, 10); elseif (substr($key, 0, 10) == "friendica_") $key = "friendica:".substr($key, 10); - elseif (in_array($key, array("like", "dislike", "attendyes", "attendno", "attendmaybe"))) - $key = "friendica:".$key; + //else + // $key = "default:".$key; - return (!in_array($key, array("attachments", "friendica:activities", "coordinates"))); + return true; } /** * @brief Creates the XML from a JSON style array * * @param array $data JSON style array - * @param string $template Name of the root element + * @param string $root_element Name of the root element * - * @return boolean string The XML data + * @return string The XML data */ function api_create_xml($data, $root_element) { - $childname = key($data); $data2 = array_pop($data); $key = key($data2); - $namespaces = array("statusnet" => "http://status.net/schema/api/1/", - "friendica" => "http://friendi.ca/schema/api/1/"); + $namespaces = array("" => "http://api.twitter.com", + "statusnet" => "http://status.net/schema/api/1/", + "friendica" => "http://friendi.ca/schema/api/1/", + "georss" => "http://www.georss.org/georss"); /// @todo Auto detection of needed namespaces if (in_array($root_element, array("ok", "hash", "config", "version", "ids", "notes", "photos"))) @@ -798,9 +765,15 @@ } /** - * load api $templatename for $type and replace $data array + * @brief Formats the data according to the data type + * + * @param string $root_element Name of the root element + * @param string $type Return type (atom, rss, xml, json) + * @param array $data JSON style array + * + * @return (string|object) XML data or JSON data */ - function api_apply_template($templatename, $type, $data){ + function api_format_data($root_element, $type, $data){ $a = get_app(); @@ -808,21 +781,7 @@ case "atom": case "rss": case "xml": - $ret = api_create_xml($data, $templatename); - break; - - $data = array_xmlify($data); - if ($templatename==="") { - $ret = api_array_to_xml($data); - } else { - $tpl = get_markup_template("api_".$templatename."_".$type.".tpl"); - if(! $tpl) { - header ("Content-Type: text/xml"); - echo ''."\n".'not implemented'; - killme(); - } - $ret = replace_macros($tpl, $data); - } + $ret = api_create_xml($data, $root_element); break; case "json": $ret = $data; @@ -870,7 +829,7 @@ unset($user_info["uid"]); unset($user_info["self"]); - return api_apply_template("user", $type, array('user' => $user_info)); + return api_format_data("user", $type, array('user' => $user_info)); } api_register_func('api/account/verify_credentials','api_account_verify_credentials', true); @@ -1178,6 +1137,11 @@ $converted = api_convert_item($lastwall); + if ($type == "xml") + $geo = "georss:point"; + else + $geo = "geo"; + $status_info = array( 'created_at' => api_date($lastwall['created']), 'id' => intval($lastwall['id']), @@ -1191,7 +1155,7 @@ 'in_reply_to_user_id_str' => $in_reply_to_user_id_str, 'in_reply_to_screen_name' => $in_reply_to_screen_name, 'user' => $user_info, - 'geo' => NULL, + $geo => NULL, 'coordinates' => "", 'place' => "", 'contributors' => "", @@ -1227,7 +1191,7 @@ if ($type == "raw") return($status_info); - return api_apply_template("statuses", $type, array('status' => $status_info)); + return api_format_data("statuses", $type, array('status' => $status_info)); } @@ -1289,6 +1253,11 @@ $converted = api_convert_item($lastwall); + if ($type == "xml") + $geo = "georss:point"; + else + $geo = "geo"; + $user_info['status'] = array( 'text' => $converted["text"], 'truncated' => false, @@ -1301,7 +1270,7 @@ 'in_reply_to_user_id' => $in_reply_to_user_id, 'in_reply_to_user_id_str' => $in_reply_to_user_id_str, 'in_reply_to_screen_name' => $in_reply_to_screen_name, - 'geo' => NULL, + $geo => NULL, 'favorited' => $lastwall['starred'] ? true : false, 'statusnet_html' => $converted["html"], 'statusnet_conversation_id' => $lastwall['parent'], @@ -1324,7 +1293,7 @@ unset($user_info["uid"]); unset($user_info["self"]); - return api_apply_template("user", $type, array('user' => $user_info)); + return api_format_data("user", $type, array('user' => $user_info)); } api_register_func('api/users/show','api_users_show'); @@ -1341,11 +1310,14 @@ $r = q("SELECT `id` FROM `gcontact` WHERE `nick`='%s'", dbesc($_GET["q"])); if (count($r)) { + $k = 0; foreach ($r AS $user) { - $user_info = api_get_user($a, $user["id"]); - //echo print_r($user_info, true)."\n"; - $userdata = api_apply_template("user", $type, array('users' => $user_info)); - $userlist[] = $userdata["user"]; + $user_info = api_get_user($a, $user["id"], "json"); + + if ($type == "xml") + $userlist[$k++.":user"] = $user_info; + else + $userlist[] = $user_info; } $userlist = array("users" => $userlist); } else { @@ -1354,7 +1326,7 @@ } else { throw new BadRequestException("User not found."); } - return ($userlist); + return api_format_data("users", $type, $userlist); } api_register_func('api/users/search','api_users_search'); @@ -1417,7 +1389,7 @@ intval($start), intval($count) ); - $ret = api_format_items($r,$user_info); + $ret = api_format_items($r,$user_info, false, $type); // Set all posts from the query above to seen $idarray = array(); @@ -1441,7 +1413,7 @@ break; } - return api_apply_template("statuses", $type, $data); + return api_format_data("statuses", $type, $data); } api_register_func('api/statuses/home_timeline','api_statuses_home_timeline', true); api_register_func('api/statuses/friends_timeline','api_statuses_home_timeline', true); @@ -1492,7 +1464,7 @@ intval($start), intval($count)); - $ret = api_format_items($r,$user_info); + $ret = api_format_items($r,$user_info, false, $type); $data = array('status' => $ret); @@ -1503,7 +1475,7 @@ break; } - return api_apply_template("statuses", $type, $data); + return api_format_data("statuses", $type, $data); } api_register_func('api/statuses/public_timeline','api_statuses_public_timeline', true); @@ -1553,14 +1525,14 @@ throw new BadRequestException("There is no status with this id."); } - $ret = api_format_items($r,$user_info); + $ret = api_format_items($r,$user_info, false, $type); if ($conversation) { $data = array('status' => $ret); - return api_apply_template("statuses", $type, $data); + return api_format_data("statuses", $type, $data); } else { $data = array('status' => $ret[0]); - return api_apply_template("status", $type, $data); + return api_format_data("status", $type, $data); } } api_register_func('api/statuses/show','api_statuses_show', true); @@ -1628,10 +1600,10 @@ if (!$r) throw new BadRequestException("There is no conversation with this id."); - $ret = api_format_items($r,$user_info); + $ret = api_format_items($r,$user_info, false, $type); $data = array('status' => $ret); - return api_apply_template("statuses", $type, $data); + return api_format_data("statuses", $type, $data); } api_register_func('api/conversation/show','api_conversation_show', true); api_register_func('api/statusnet/conversation','api_conversation_show', true); @@ -1795,7 +1767,7 @@ intval($start), intval($count) ); - $ret = api_format_items($r,$user_info); + $ret = api_format_items($r,$user_info, false, $type); $data = array('status' => $ret); @@ -1806,7 +1778,7 @@ break; } - return api_apply_template("statuses", $type, $data); + return api_format_data("statuses", $type, $data); } api_register_func('api/statuses/mentions','api_statuses_mentions', true); api_register_func('api/statuses/replies','api_statuses_mentions', true); @@ -1863,7 +1835,7 @@ intval($start), intval($count) ); - $ret = api_format_items($r,$user_info, true); + $ret = api_format_items($r,$user_info, true, $type); $data = array('status' => $ret); switch($type){ @@ -1872,7 +1844,7 @@ $data = api_rss_extra($a, $data, $user_info); } - return api_apply_template("statuses", $type, $data); + return api_format_data("statuses", $type, $data); } api_register_func('api/statuses/user_timeline','api_statuses_user_timeline', true); @@ -1926,7 +1898,7 @@ $user_info = api_get_user($a); - $rets = api_format_items($item,$user_info); + $rets = api_format_items($item,$user_info, false, $type); $ret = $rets[0]; $data = array('status' => $ret); @@ -1936,7 +1908,7 @@ $data = api_rss_extra($a, $data, $user_info); } - return api_apply_template("status", $type, $data); + return api_format_data("status", $type, $data); } api_register_func('api/favorites/create', 'api_favorites_create_destroy', true, API_METHOD_POST); api_register_func('api/favorites/destroy', 'api_favorites_create_destroy', true, API_METHOD_DELETE); @@ -1989,7 +1961,7 @@ intval($start), intval($count) ); - $ret = api_format_items($r,$user_info); + $ret = api_format_items($r,$user_info, false, $type); } @@ -2000,7 +1972,7 @@ $data = api_rss_extra($a, $data, $user_info); } - return api_apply_template("statuses", $type, $data); + return api_format_data("statuses", $type, $data); } api_register_func('api/favorites','api_favorites', true); @@ -2319,7 +2291,7 @@ * likes => int count * dislikes => int count */ - function api_format_items_activities(&$item) { + function api_format_items_activities(&$item, $type = "json") { $activities = array( 'like' => array(), 'dislike' => array(), @@ -2335,6 +2307,14 @@ builtin_activity_puller($i, $activities); } + if ($type == "xml") { + $xml_activities = array(); + foreach ($activities as $k => $v) + $xml_activities["friendica:".$k] = $v; + + $activities = $xml_activities; + } + $res = array(); $uri = $item['uri']."-l"; foreach($activities as $k => $v) { @@ -2351,7 +2331,7 @@ * @param array $user_info * @param bool $filter_user filter items by $user_info */ - function api_format_items($r,$user_info, $filter_user = false) { + function api_format_items($r,$user_info, $filter_user = false, $type = "json") { $a = get_app(); $ret = Array(); @@ -2405,6 +2385,11 @@ $converted = api_convert_item($item); + if ($type == "xml") + $geo = "georss:point"; + else + $geo = "geo"; + $status = array( 'text' => $converted["text"], 'truncated' => False, @@ -2417,14 +2402,14 @@ 'in_reply_to_user_id' => $in_reply_to_user_id, 'in_reply_to_user_id_str' => $in_reply_to_user_id_str, 'in_reply_to_screen_name' => $in_reply_to_screen_name, - 'geo' => NULL, + $geo => NULL, 'favorited' => $item['starred'] ? true : false, 'user' => $status_user , 'friendica_owner' => $owner_user, //'entities' => NULL, 'statusnet_html' => $converted["html"], 'statusnet_conversation_id' => $item['parent'], - 'friendica_activities' => api_format_items_activities($item), + 'friendica_activities' => api_format_items_activities($item, $type), ); if (count($converted["attachments"]) > 0) @@ -2462,7 +2447,7 @@ $retweeted_status['text'] = $rt_converted["text"]; $retweeted_status['statusnet_html'] = $rt_converted["html"]; - $retweeted_status['friendica_activities'] = api_format_items_activities($retweeted_item); + $retweeted_status['friendica_activities'] = api_format_items_activities($retweeted_item, $type); $retweeted_status['created_at'] = api_date($retweeted_item['created']); $status['retweeted_status'] = $retweeted_status; } @@ -2475,12 +2460,14 @@ if ($item["coord"] != "") { $coords = explode(' ',$item["coord"]); if (count($coords) == 2) { - $status["geo"] = array('type' => 'Point', - 'coordinates' => array((float) $coords[0], - (float) $coords[1])); + if ($type == "json") + $status["geo"] = array('type' => 'Point', + 'coordinates' => array((float) $coords[0], + (float) $coords[1])); + else // Not sure if this is the official format - if someone founds a documentation we can check + $status["georss:point"] = $item["coord"]; } } - $ret[] = $status; }; return $ret; @@ -2489,14 +2476,7 @@ function api_account_rate_limit_status(&$a,$type) { - if ($type == "json") - $hash = array( - 'reset_time_in_seconds' => strtotime('now + 1 hour'), - 'remaining_hits' => (string) 150, - 'hourly_limit' => (string) 150, - 'reset_time' => api_date(datetime_convert('UTC','UTC','now + 1 hour',ATOM_TIME)), - ); - else + if ($type == "xml") $hash = array( 'remaining-hits' => (string) 150, '@attributes' => array("type" => "integer"), @@ -2507,8 +2487,15 @@ 'reset_time_in_seconds' => strtotime('now + 1 hour'), '@attributes4' => array("type" => "integer"), ); + else + $hash = array( + 'reset_time_in_seconds' => strtotime('now + 1 hour'), + 'remaining_hits' => (string) 150, + 'hourly_limit' => (string) 150, + 'reset_time' => api_date(datetime_convert('UTC','UTC','now + 1 hour',ATOM_TIME)), + ); - return api_apply_template('hash', $type, array('hash' => $hash)); + return api_format_data('hash', $type, array('hash' => $hash)); } api_register_func('api/account/rate_limit_status','api_account_rate_limit_status',true); @@ -2518,19 +2505,19 @@ else $ok = "ok"; - return api_apply_template('ok', $type, array("ok" => $ok)); + return api_format_data('ok', $type, array("ok" => $ok)); } api_register_func('api/help/test','api_help_test',false); function api_lists(&$a,$type) { $ret = array(); - return api_apply_template('lists', $type, array("lists_list" => $ret)); + return api_format_data('lists', $type, array("lists_list" => $ret)); } api_register_func('api/lists','api_lists',true); function api_lists_list(&$a,$type) { $ret = array(); - return api_apply_template('lists', $type, array("lists_list" => $ret)); + return api_format_data('lists', $type, array("lists_list" => $ret)); } api_register_func('api/lists/list','api_lists_list',true); @@ -2584,12 +2571,12 @@ function api_statuses_friends(&$a, $type){ $data = api_statuses_f($a,$type,"friends"); if ($data===false) return false; - return api_apply_template("users", $type, $data); + return api_format_data("users", $type, $data); } function api_statuses_followers(&$a, $type){ $data = api_statuses_f($a,$type,"followers"); if ($data===false) return false; - return api_apply_template("users", $type, $data); + return api_format_data("users", $type, $data); } api_register_func('api/statuses/friends','api_statuses_friends',true); api_register_func('api/statuses/followers','api_statuses_followers',true); @@ -2627,7 +2614,7 @@ ), ); - return api_apply_template('config', $type, array('config' => $config)); + return api_format_data('config', $type, array('config' => $config)); } api_register_func('api/statusnet/config','api_statusnet_config',false); @@ -2636,12 +2623,12 @@ // liar $fake_statusnet_version = "0.9.7"; - return api_apply_template('version', $type, array('version' => $fake_statusnet_version)); + return api_format_data('version', $type, array('version' => $fake_statusnet_version)); } api_register_func('api/statusnet/version','api_statusnet_version',false); /** - * @todo use api_apply_template() to return data + * @todo use api_format_data() to return data */ function api_ff_ids(&$a,$type,$qtype) { if(! api_user()) throw new ForbiddenException(); @@ -2672,7 +2659,7 @@ else $ids[] = intval($rr['id']); - return api_apply_template("ids", $type, array('id' => $ids)); + return api_format_data("ids", $type, array('id' => $ids)); } function api_friends_ids(&$a,$type) { @@ -2740,7 +2727,7 @@ $data = api_rss_extra($a, $data, $user_info); } - return api_apply_template("direct-messages", $type, $data); + return api_format_data("direct-messages", $type, $data); } api_register_func('api/direct_messages/new','api_direct_messages_new',true, API_METHOD_POST); @@ -2827,7 +2814,7 @@ $data = api_rss_extra($a, $data, $user_info); } - return api_apply_template("direct-messages", $type, $data); + return api_format_data("direct-messages", $type, $data); } @@ -2896,15 +2883,15 @@ $photo['type'] = $rr['type']; $thumb = $a->get_baseurl()."/photo/".$rr['resource-id']."-".$rr['scale'].".".$typetoext[$rr['type']]; - if ($type == "json") { + if ($type == "xml") + $data['photo'][] = array("@attributes" => $photo, "1" => $thumb); + else { $photo['thumb'] = $thumb; $data['photo'][] = $photo; - } else { - $data['photo'][] = array("@attributes" => $photo, "1" => $thumb); } } } - return api_apply_template("photos", $type, $data); + return api_format_data("photos", $type, $data); } function api_fr_photo_detail(&$a,$type) { @@ -2932,16 +2919,24 @@ if ($r) { $data = array('photo' => $r[0]); + $data['photo']['id'] = $data['photo']['resource-id']; if ($scale !== false) { $data['photo']['data'] = base64_encode($data['photo']['data']); } else { unset($data['photo']['datasize']); //needed only with scale param } - $data['photo']['link'] = array(); - for($k=intval($data['photo']['minscale']); $k<=intval($data['photo']['maxscale']); $k++) { - $data['photo']['link'][$k] = $a->get_baseurl()."/photo/".$data['photo']['resource-id']."-".$k.".".$typetoext[$data['photo']['type']]; + if ($type == "xml") { + $data['photo']['links'] = array(); + for ($k=intval($data['photo']['minscale']); $k<=intval($data['photo']['maxscale']); $k++) + $data['photo']['links'][$k.":link"]["@attributes"] = array("type" => $data['photo']['type'], + "scale" => $k, + "href" => $a->get_baseurl()."/photo/".$data['photo']['resource-id']."-".$k.".".$typetoext[$data['photo']['type']]); + } else { + $data['photo']['link'] = array(); + for ($k=intval($data['photo']['minscale']); $k<=intval($data['photo']['maxscale']); $k++) { + $data['photo']['link'][$k] = $a->get_baseurl()."/photo/".$data['photo']['resource-id']."-".$k.".".$typetoext[$data['photo']['type']]; + } } - $data['photo']['id'] = $data['photo']['resource-id']; unset($data['photo']['resource-id']); unset($data['photo']['minscale']); unset($data['photo']['maxscale']); @@ -2950,7 +2945,7 @@ throw new NotFoundException(); } - return api_apply_template("photo_detail", $type, $data); + return api_format_data("photo_detail", $type, $data); } api_register_func('api/friendica/photos/list', 'api_fr_photos_list', true); @@ -3291,13 +3286,24 @@ foreach ($r as $rr) { $members = group_get_members($rr['id']); $users = array(); - foreach ($members as $member) { - $user = api_get_user($a, $member['nurl']); - $users[] = $user; + + if ($type == "xml") { + $user_element = "users"; + $k = 0; + foreach ($members as $member) { + $user = api_get_user($a, $member['nurl']); + $users[$k++.":user"] = $user; + } + } else { + $user_element = "user"; + foreach ($members as $member) { + $user = api_get_user($a, $member['nurl']); + $users[] = $user; + } } - $grps[] = array('name' => $rr['name'], 'gid' => $rr['id'], 'user' => $users); + $grps[] = array('name' => $rr['name'], 'gid' => $rr['id'], $user_element => $users); } - return api_apply_template("group_show", $type, array('groups' => $grps)); + return api_format_data("groups", $type, array('group' => $grps)); } api_register_func('api/friendica/group_show', 'api_friendica_group_show', true); @@ -3338,7 +3344,7 @@ if ($ret) { // return success $success = array('success' => $ret, 'gid' => $gid, 'name' => $name, 'status' => 'deleted', 'wrong users' => array()); - return api_apply_template("group_delete", $type, array('result' => $success)); + return api_format_data("group_delete", $type, array('result' => $success)); } else throw new BadRequestException('other API error'); @@ -3404,7 +3410,7 @@ // return success message incl. missing users in array $status = ($erroraddinguser ? "missing user" : ($reactivate_group ? "reactivated" : "ok")); $success = array('success' => true, 'gid' => $gid, 'name' => $name, 'status' => $status, 'wrong users' => $errorusers); - return api_apply_template("group_create", $type, array('result' => $success)); + return api_format_data("group_create", $type, array('result' => $success)); } api_register_func('api/friendica/group_create', 'api_friendica_group_create', true, API_METHOD_POST); @@ -3461,7 +3467,7 @@ // return success message incl. missing users in array $status = ($erroraddinguser ? "missing user" : "ok"); $success = array('success' => true, 'gid' => $gid, 'name' => $name, 'status' => $status, 'wrong users' => $errorusers); - return api_apply_template("group_update", $type, array('result' => $success)); + return api_format_data("group_update", $type, array('result' => $success)); } api_register_func('api/friendica/group_update', 'api_friendica_group_update', true, API_METHOD_POST); @@ -3476,11 +3482,11 @@ $res = do_like($id, $verb); if ($res) { - if ($type == 'xml') + if ($type == "xml") $ok = "true"; else $ok = "ok"; - return api_apply_template('test', $type, array('ok' => $ok)); + return api_format_data('ok', $type, array('ok' => $ok)); } else { throw new BadRequestException('Error adding activity'); } @@ -3519,7 +3525,7 @@ $notes = $xmlnotes; } - return api_apply_template("notes", $type, array('note' => $notes)); + return api_format_data("notes", $type, array('note' => $notes)); } /** @@ -3551,13 +3557,13 @@ if ($r!==false) { // we found the item, return it to the user $user_info = api_get_user($a); - $ret = api_format_items($r,$user_info); - $data = array('statuses' => $ret); - return api_apply_template("timeline", $type, $data); + $ret = api_format_items($r,$user_info, false, $type); + $data = array('status' => $ret); + return api_format_data("status", $type, $data); } // the item can't be found, but we set the note as seen, so we count this as a success } - return api_apply_template('', $type, array('status' => "success")); + return api_format_data('result', $type, array('result' => "success")); } api_register_func('api/friendica/notification/seen', 'api_friendica_notification_seen', true, API_METHOD_POST); diff --git a/include/xml.php b/include/xml.php index 133c2b319a..d2a0f7655b 100644 --- a/include/xml.php +++ b/include/xml.php @@ -64,6 +64,8 @@ class xml { $element_parts = explode(":", $attr_key); if ((count($element_parts) > 1) AND isset($namespaces[$element_parts[0]])) $namespace = $namespaces[$element_parts[0]]; + elseif (isset($namespaces[""])) + $namespace = $namespaces[""]; else $namespace = NULL; @@ -76,6 +78,8 @@ class xml { $element_parts = explode(":", $key); if ((count($element_parts) > 1) AND isset($namespaces[$element_parts[0]])) $namespace = $namespaces[$element_parts[0]]; + elseif (isset($namespaces[""])) + $namespace = $namespaces[""]; else $namespace = NULL; diff --git a/view/templates/api_timeline_atom.tpl b/view/templates/api_timeline_atom.tpl deleted file mode 100644 index d11b4a3ce3..0000000000 --- a/view/templates/api_timeline_atom.tpl +++ /dev/null @@ -1,91 +0,0 @@ - - - StatusNet - {{$rss.self}} - Friendica - Friendica API feed - {{$rss.logo}} - {{$rss.atom_updated}} - - - - - - http://activitystrea.ms/schema/1.0/person - {{$user.url}} - {{$user.name}} - - - - - - - {{$user.screen_name}} - {{$user.name}} - - homepage - {{$user.url}} - true - - - - - - - http://activitystrea.ms/schema/1.0/person - {{$user.contact_url}} - {{$user.name}} - - - - - - {{$user.screen_name}} - {{$user.name}} - - homepage - {{$user.url}} - true - - - - - - {{foreach $statuses as $status}} - - {{$status.objecttype}} - {{$status.message_id}} - {{$status.text}} - {{$status.statusnet_html}} - - {{$status.verb}} - {{$status.published}} - {{$status.updated}} - - - - - - - - http://activitystrea.ms/schema/1.0/person - {{$status.user.url}} - {{$status.user.name}} - - - - - {{$status.user.screen_name}} - {{$status.user.name}} - - - homepage - {{$status.user.url}} - true - - - - - - {{/foreach}} - From 4f07dfb35ae954908e7c0d82c76ed78d96db8e03 Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Mon, 18 Jul 2016 15:25:42 +0200 Subject: [PATCH 05/23] Optimized queries --- include/api.php | 58 ++++++++++++++++++++++++++----------------------- include/xml.php | 2 -- 2 files changed, 31 insertions(+), 29 deletions(-) diff --git a/include/api.php b/include/api.php index 4796228f9d..ff2d083cc8 100644 --- a/include/api.php +++ b/include/api.php @@ -536,7 +536,7 @@ 'notifications' => false, 'statusnet_profile_url' => $r[0]["url"], 'uid' => 0, - 'cid' => 0, + 'cid' => get_contact($r[0]["url"], api_user()), 'self' => 0, 'network' => $r[0]["network"], ); @@ -1208,10 +1208,10 @@ $user_info = api_get_user($a); $lastwall = q("SELECT `item`.* - FROM `item`, `contact` + FROM `item` + INNER JOIN `contact` ON `contact`.`id`=`item`.`contact-id` AND `contact`.`uid` = `item`.`uid` WHERE `item`.`uid` = %d AND `verb` = '%s' AND `item`.`contact-id` = %d AND ((`item`.`author-link` IN ('%s', '%s')) OR (`item`.`owner-link` IN ('%s', '%s'))) - AND `contact`.`id`=`item`.`contact-id` AND `type`!='activity' AND `item`.`allow_cid`='' AND `item`.`allow_gid`='' AND `item`.`deny_cid`='' AND `item`.`deny_gid`='' ORDER BY `created` DESC @@ -1224,6 +1224,7 @@ dbesc($user_info['url']), dbesc(normalise_link($user_info['url'])) ); + if (count($lastwall)>0){ $lastwall = $lastwall[0]; @@ -1371,15 +1372,15 @@ if ($conversation_id > 0) $sql_extra .= ' AND `item`.`parent` = '.intval($conversation_id); - $r = q("SELECT STRAIGHT_JOIN `item`.*, `item`.`id` AS `item_id`, `item`.`network` AS `item_network`, + $r = q("SELECT `item`.*, `item`.`id` AS `item_id`, `item`.`network` AS `item_network`, `contact`.`name`, `contact`.`photo`, `contact`.`url`, `contact`.`rel`, `contact`.`network`, `contact`.`thumb`, `contact`.`dfrn-id`, `contact`.`self`, `contact`.`id` AS `cid` - FROM `item`, `contact` + FROM `item` + STRAIGHT_JOIN `contact` ON `contact`.`id` = `item`.`contact-id` AND `contact`.`uid` = `item`.`uid` + AND NOT `contact`.`blocked` AND NOT `contact`.`pending` WHERE `item`.`uid` = %d AND `verb` = '%s' - AND `item`.`visible` = 1 and `item`.`moderated` = 0 AND `item`.`deleted` = 0 - AND `contact`.`id` = `item`.`contact-id` - AND `contact`.`blocked` = 0 AND `contact`.`pending` = 0 + AND `item`.`visible` AND NOT `item`.`moderated` AND NOT `item`.`deleted` $sql_extra AND `item`.`id`>%d ORDER BY `item`.`id` DESC LIMIT %d ,%d ", @@ -1449,13 +1450,15 @@ `contact`.`network`, `contact`.`thumb`, `contact`.`self`, `contact`.`writable`, `contact`.`id` AS `cid`, `user`.`nickname`, `user`.`hidewall` - FROM `item` STRAIGHT_JOIN `contact` ON `contact`.`id` = `item`.`contact-id` + FROM `item` + STRAIGHT_JOIN `contact` ON `contact`.`id` = `item`.`contact-id` AND `contact`.`uid` = `item`.`uid` + AND NOT `contact`.`blocked` AND NOT `contact`.`pending` STRAIGHT_JOIN `user` ON `user`.`uid` = `item`.`uid` - WHERE `verb` = '%s' AND `item`.`visible` = 1 AND `item`.`deleted` = 0 and `item`.`moderated` = 0 + AND NOT `user`.`hidewall` + WHERE `verb` = '%s' AND `item`.`visible` AND NOT `item`.`deleted` AND NOT `item`.`moderated` AND `item`.`allow_cid` = '' AND `item`.`allow_gid` = '' AND `item`.`deny_cid` = '' AND `item`.`deny_gid` = '' - AND `item`.`private` = 0 AND `item`.`wall` = 1 AND `user`.`hidewall` = 0 - AND `contact`.`blocked` = 0 AND `contact`.`pending` = 0 + AND NOT `item`.`private` AND `item`.`wall` $sql_extra AND `item`.`id`>%d ORDER BY `item`.`id` DESC LIMIT %d, %d ", @@ -1511,10 +1514,11 @@ `contact`.`name`, `contact`.`photo`, `contact`.`url`, `contact`.`rel`, `contact`.`network`, `contact`.`thumb`, `contact`.`dfrn-id`, `contact`.`self`, `contact`.`id` AS `cid` - FROM `item`, `contact` - WHERE `item`.`visible` = 1 and `item`.`moderated` = 0 AND `item`.`deleted` = 0 - AND `contact`.`id` = `item`.`contact-id` AND `item`.`uid` = %d AND `item`.`verb` = '%s' - AND `contact`.`blocked` = 0 AND `contact`.`pending` = 0 + FROM `item` + INNER JOIN `contact` ON `contact`.`id` = `item`.`contact-id` AND `contact`.`uid` = `item`.`uid` + AND NOT `contact`.`blocked` AND NOT `contact`.`pending` + WHERE `item`.`visible` AND NOT `item`.`moderated` AND NOT `item`.`deleted` + AND `item`.`uid` = %d AND `item`.`verb` = '%s' $sql_extra", intval(api_user()), dbesc(ACTIVITY_POST), @@ -1584,11 +1588,11 @@ `contact`.`network`, `contact`.`thumb`, `contact`.`dfrn-id`, `contact`.`self`, `contact`.`id` AS `cid` FROM `item` - INNER JOIN `contact` ON `contact`.`id` = `item`.`contact-id` + STRAIGHT_JOIN `contact` ON `contact`.`id` = `item`.`contact-id` AND `contact`.`uid` = `item`.`uid` + AND NOT `contact`.`blocked` AND NOT `contact`.`pending` WHERE `item`.`parent` = %d AND `item`.`visible` AND NOT `item`.`moderated` AND NOT `item`.`deleted` AND `item`.`uid` = %d AND `item`.`verb` = '%s' - AND NOT `contact`.`blocked` AND NOT `contact`.`pending` AND `item`.`id`>%d $sql_extra ORDER BY `item`.`id` DESC LIMIT %d ,%d", intval($id), intval(api_user()), @@ -1635,10 +1639,10 @@ `contact`.`name`, `contact`.`photo` as `reply_photo`, `contact`.`url` as `reply_url`, `contact`.`rel`, `contact`.`network`, `contact`.`thumb`, `contact`.`dfrn-id`, `contact`.`self`, `contact`.`id` AS `cid` - FROM `item`, `contact` - WHERE `item`.`visible` = 1 and `item`.`moderated` = 0 AND `item`.`deleted` = 0 - AND `contact`.`id` = `item`.`contact-id` - AND `contact`.`blocked` = 0 AND `contact`.`pending` = 0 + FROM `item` + INNER JOIN `contact` ON `contact`.`id` = `item`.`contact-id` AND `contact`.`uid` = `item`.`uid` + AND NOT `contact`.`blocked` AND NOT `contact`.`pending` + WHERE `item`.`visible` AND NOT `item`.`moderated` AND NOT `item`.`deleted` AND NOT `item`.`private` AND `item`.`allow_cid` = '' AND `item`.`allow`.`gid` = '' AND `item`.`deny_cid` = '' AND `item`.`deny_gid` = '' $sql_extra @@ -1748,12 +1752,12 @@ `contact`.`name`, `contact`.`photo`, `contact`.`url`, `contact`.`rel`, `contact`.`network`, `contact`.`thumb`, `contact`.`dfrn-id`, `contact`.`self`, `contact`.`id` AS `cid` - FROM `item` FORCE INDEX (`uid_id`), `contact` + FROM `item` FORCE INDEX (`uid_id`) + STRAIGHT_JOIN `contact` ON `contact`.`id` = `item`.`contact-id` AND `contact`.`uid` = `item`.`uid` + AND NOT `contact`.`blocked` AND NOT `contact`.`pending` WHERE `item`.`uid` = %d AND `verb` = '%s' AND NOT (`item`.`author-link` IN ('https://%s', 'http://%s')) AND `item`.`visible` AND NOT `item`.`moderated` AND NOT `item`.`deleted` - AND `contact`.`id` = `item`.`contact-id` - AND NOT `contact`.`blocked` AND NOT `contact`.`pending` AND `item`.`parent` IN (SELECT `iid` FROM `thread` WHERE `uid` = %d AND `mention` AND !`ignored`) $sql_extra AND `item`.`id`>%d @@ -1819,8 +1823,8 @@ `contact`.`name`, `contact`.`photo`, `contact`.`url`, `contact`.`rel`, `contact`.`network`, `contact`.`thumb`, `contact`.`dfrn-id`, `contact`.`self`, `contact`.`id` AS `cid` - FROM `item` - INNER JOIN `contact` ON `contact`.`id` = `item`.`contact-id` AND `contact`.`uid` = `item`.`uid` + FROM `item` FORCE INDEX (`uid_contactid_id`) + STRAIGHT_JOIN `contact` ON `contact`.`id` = `item`.`contact-id` AND `contact`.`uid` = `item`.`uid` AND NOT `contact`.`blocked` AND NOT `contact`.`pending` WHERE `item`.`uid` = %d AND `verb` = '%s' AND `item`.`contact-id` = %d diff --git a/include/xml.php b/include/xml.php index d2a0f7655b..a60d0671d3 100644 --- a/include/xml.php +++ b/include/xml.php @@ -64,8 +64,6 @@ class xml { $element_parts = explode(":", $attr_key); if ((count($element_parts) > 1) AND isset($namespaces[$element_parts[0]])) $namespace = $namespaces[$element_parts[0]]; - elseif (isset($namespaces[""])) - $namespace = $namespaces[""]; else $namespace = NULL; From 8bf7db06dbd76f63af4ac9f0c84a32ceb20b8119 Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Tue, 19 Jul 2016 08:43:57 +0200 Subject: [PATCH 06/23] New indexes for the API --- boot.php | 2 +- database.sql | 5 +++-- include/Contact.php | 4 ++-- include/api.php | 21 +++++++++++++-------- include/dbstructure.php | 3 ++- include/ostatus.php | 2 +- mod/content.php | 2 +- update.php | 2 +- 8 files changed, 24 insertions(+), 17 deletions(-) diff --git a/boot.php b/boot.php index 298010dd0d..8a92835e68 100644 --- a/boot.php +++ b/boot.php @@ -38,7 +38,7 @@ define ( 'FRIENDICA_PLATFORM', 'Friendica'); define ( 'FRIENDICA_CODENAME', 'Asparagus'); define ( 'FRIENDICA_VERSION', '3.5-dev' ); define ( 'DFRN_PROTOCOL_VERSION', '2.23' ); -define ( 'DB_UPDATE_VERSION', 1199 ); +define ( 'DB_UPDATE_VERSION', 1200 ); /** * @brief Constant with a HTML line break. diff --git a/database.sql b/database.sql index 2b55a896f8..b27f69c40e 100644 --- a/database.sql +++ b/database.sql @@ -1,6 +1,6 @@ -- ------------------------------------------ -- Friendica 3.5-dev (Asparagus) --- DB_UPDATE_VERSION 1199 +-- DB_UPDATE_VERSION 1200 -- ------------------------------------------ @@ -522,6 +522,7 @@ CREATE TABLE IF NOT EXISTS `item` ( INDEX `uid_title` (`uid`,`title`), INDEX `uid_thrparent` (`uid`,`thr-parent`), INDEX `uid_parenturi` (`uid`,`parent-uri`), + INDEX `uid_contactid_id` (`uid`,`contact-id`,`id`), INDEX `uid_contactid_created` (`uid`,`contact-id`,`created`), INDEX `gcontactid_uid_created` (`gcontact-id`,`uid`,`created`), INDEX `authorid_created` (`author-id`,`created`), @@ -532,7 +533,7 @@ CREATE TABLE IF NOT EXISTS `item` ( INDEX `uid_wall_created` (`uid`,`wall`,`created`), INDEX `resource-id` (`resource-id`), INDEX `uid_type` (`uid`,`type`), - INDEX `uid_starred` (`uid`,`starred`), + INDEX `uid_starred_id` (`uid`,`starred`,`id`), INDEX `contactid_allowcid_allowpid_denycid_denygid` (`contact-id`,`allow_cid`(10),`allow_gid`(10),`deny_cid`(10),`deny_gid`(10)), INDEX `uid_wall_parent_created` (`uid`,`wall`,`parent`,`created`), INDEX `uid_type_changed` (`uid`,`type`,`changed`), diff --git a/include/Contact.php b/include/Contact.php index 10005d3e3c..9d69a81a4e 100644 --- a/include/Contact.php +++ b/include/Contact.php @@ -631,11 +631,11 @@ function posts_from_contact($a, $contact_id) { $r = q("SELECT `item`.`uri`, `item`.*, `item`.`id` AS `item_id`, `author-name` AS `name`, `owner-avatar` AS `photo`, `owner-link` AS `url`, `owner-avatar` AS `thumb` - FROM `item` FORCE INDEX (`uid_contactid_created`) + FROM `item` FORCE INDEX (`uid_contactid_id`) WHERE `item`.`uid` = %d AND `contact-id` = %d AND `author-link` IN ('%s', '%s') AND NOT `deleted` AND NOT `moderated` AND `visible` - ORDER BY `item`.`created` DESC LIMIT %d, %d", + ORDER BY `item`.`id` DESC LIMIT %d, %d", intval(local_user()), intval($contact_id), dbesc(str_replace("https://", "http://", $contact["url"])), diff --git a/include/api.php b/include/api.php index ff2d083cc8..af0fa60084 100644 --- a/include/api.php +++ b/include/api.php @@ -202,8 +202,8 @@ else { // process normal login request - $r = q("SELECT * FROM `user` WHERE ( `email` = '%s' OR `nickname` = '%s' ) - AND `password` = '%s' AND `blocked` = 0 AND `account_expired` = 0 AND `account_removed` = 0 AND `verified` = 1 LIMIT 1", + $r = q("SELECT * FROM `user` WHERE (`email` = '%s' OR `nickname` = '%s') + AND `password` = '%s' AND NOT `blocked` AND NOT `account_expired` AND NOT `account_removed` AND `verified` LIMIT 1", dbesc(trim($user)), dbesc(trim($user)), dbesc($encrypted) @@ -220,7 +220,9 @@ throw new UnauthorizedException("This API requires login"); } - authenticate_success($record); $_SESSION["allow_api"] = true; + authenticate_success($record); + + $_SESSION["allow_api"] = true; call_hooks('logged_in', $a->user); @@ -476,7 +478,7 @@ return False; } else { $user = $_SESSION['uid']; - $extra_query = "AND `contact`.`uid` = %d AND `contact`.`self` = 1 "; + $extra_query = "AND `contact`.`uid` = %d AND `contact`.`self` "; } } @@ -548,6 +550,10 @@ } if($uinfo[0]['self']) { + + if ($uinfo[0]['network'] == "") + $uinfo[0]['network'] = NETWORK_DFRN; + $usr = q("select * from user where uid = %d limit 1", intval(api_user()) ); @@ -1090,7 +1096,7 @@ AND ((`item`.`author-link` IN ('%s', '%s')) OR (`item`.`owner-link` IN ('%s', '%s'))) AND `i`.`id` = `item`.`parent` AND `item`.`type`!='activity' $privacy_sql - ORDER BY `item`.`created` DESC + ORDER BY `item`.`id` DESC LIMIT 1", intval($user_info['cid']), intval(api_user()), @@ -1206,7 +1212,6 @@ */ function api_users_show(&$a, $type){ $user_info = api_get_user($a); - $lastwall = q("SELECT `item`.* FROM `item` INNER JOIN `contact` ON `contact`.`id`=`item`.`contact-id` AND `contact`.`uid` = `item`.`uid` @@ -1214,7 +1219,7 @@ AND ((`item`.`author-link` IN ('%s', '%s')) OR (`item`.`owner-link` IN ('%s', '%s'))) AND `type`!='activity' AND `item`.`allow_cid`='' AND `item`.`allow_gid`='' AND `item`.`deny_cid`='' AND `item`.`deny_gid`='' - ORDER BY `created` DESC + ORDER BY `id` DESC LIMIT 1", intval(api_user()), dbesc(ACTIVITY_POST), @@ -1506,7 +1511,7 @@ $sql_extra = ''; if ($conversation) - $sql_extra .= " AND `item`.`parent` = %d ORDER BY `received` ASC "; + $sql_extra .= " AND `item`.`parent` = %d ORDER BY `id` ASC "; else $sql_extra .= " AND `item`.`id` = %d"; diff --git a/include/dbstructure.php b/include/dbstructure.php index 10e1e0e625..bd35d0974a 100644 --- a/include/dbstructure.php +++ b/include/dbstructure.php @@ -858,6 +858,7 @@ function db_definition() { "uid_title" => array("uid","title"), "uid_thrparent" => array("uid","thr-parent"), "uid_parenturi" => array("uid","parent-uri"), + "uid_contactid_id" => array("uid","contact-id","id"), "uid_contactid_created" => array("uid","contact-id","created"), "gcontactid_uid_created" => array("gcontact-id","uid","created"), "authorid_created" => array("author-id","created"), @@ -868,7 +869,7 @@ function db_definition() { "uid_wall_created" => array("uid","wall","created"), "resource-id" => array("resource-id"), "uid_type" => array("uid","type"), - "uid_starred" => array("uid","starred"), + "uid_starred_id" => array("uid","starred", "id"), "contactid_allowcid_allowpid_denycid_denygid" => array("contact-id","allow_cid(10)","allow_gid(10)","deny_cid(10)","deny_gid(10)"), "uid_wall_parent_created" => array("uid","wall","parent","created"), "uid_type_changed" => array("uid","type","changed"), diff --git a/include/ostatus.php b/include/ostatus.php index 7ac26846d2..ec53141dc7 100644 --- a/include/ostatus.php +++ b/include/ostatus.php @@ -1971,7 +1971,7 @@ class ostatus { OR (`item`.`network` = '%s' AND ((`thread`.`network` IN ('%s', '%s')) OR (`thritem`.`network` IN ('%s', '%s')))) AND `thread`.`mention`) AND ((`item`.`owner-link` IN ('%s', '%s') AND (`item`.`parent` = `item`.`id`)) OR (`item`.`author-link` IN ('%s', '%s'))) - ORDER BY `item`.`received` DESC + ORDER BY `item`.`id` DESC LIMIT 0, 300", intval($owner["uid"]), dbesc($check_date), dbesc(NETWORK_DFRN), //dbesc(NETWORK_OSTATUS), dbesc(NETWORK_OSTATUS), diff --git a/mod/content.php b/mod/content.php index 54d499d401..c4b1f2f68f 100644 --- a/mod/content.php +++ b/mod/content.php @@ -224,7 +224,7 @@ function content_content(&$a, $update = 0) { $simple_update AND `contact`.`blocked` = 0 AND `contact`.`pending` = 0 $sql_extra $sql_nets - ORDER BY `item`.`received` DESC $pager_sql ", + ORDER BY `item`.`id` DESC $pager_sql ", intval($_SESSION['uid']) ); diff --git a/update.php b/update.php index 41f238e913..8a8d93b1b9 100644 --- a/update.php +++ b/update.php @@ -1,6 +1,6 @@ Date: Tue, 19 Jul 2016 08:46:41 +0200 Subject: [PATCH 07/23] Removed (now) unused templates --- view/templates/api_config_xml.tpl | 67 ------------------------ view/templates/api_friends_xml.tpl | 6 --- view/templates/api_photo_detail_xml.tpl | 21 -------- view/templates/api_photos_list_xml.tpl | 5 -- view/templates/api_ratelimit_xml.tpl | 7 --- view/templates/api_single_status_xml.tpl | 25 --------- view/templates/api_status_xml.tpl | 8 --- view/templates/api_test_xml.tpl | 2 - view/templates/api_timeline_rss.tpl | 27 ---------- view/templates/api_timeline_xml.tpl | 10 ---- view/templates/api_user_xml.tpl | 47 ----------------- 11 files changed, 225 deletions(-) delete mode 100644 view/templates/api_config_xml.tpl delete mode 100644 view/templates/api_friends_xml.tpl delete mode 100644 view/templates/api_photo_detail_xml.tpl delete mode 100644 view/templates/api_photos_list_xml.tpl delete mode 100644 view/templates/api_ratelimit_xml.tpl delete mode 100644 view/templates/api_single_status_xml.tpl delete mode 100644 view/templates/api_status_xml.tpl delete mode 100644 view/templates/api_test_xml.tpl delete mode 100644 view/templates/api_timeline_rss.tpl delete mode 100644 view/templates/api_timeline_xml.tpl delete mode 100644 view/templates/api_user_xml.tpl diff --git a/view/templates/api_config_xml.tpl b/view/templates/api_config_xml.tpl deleted file mode 100644 index 3673e2a10e..0000000000 --- a/view/templates/api_config_xml.tpl +++ /dev/null @@ -1,67 +0,0 @@ - - - - {{$config.site.name}} - {{$config.site.server}} - default - - {{$config.site.logo}} - - true - en - {{$config.site.email}} - - - UTC - {{$config.site.closed}} - - false - {{$config.site.private}} - {{$config.site.textlimit}} - {{$config.site.ssl}} - {{$config.site.sslserver}} - 30 - - - - cc - - http://creativecommons.org/licenses/by/3.0/ - Creative Commons Attribution 3.0 - http://i.creativecommons.org/l/by/3.0/80x15.png - - - - - - - - - - - - - - - - - false - 20 - 600 - - - - false - INVALID SERVER - 5222 - update - - - StatusNet - - - - false - 0 - - diff --git a/view/templates/api_friends_xml.tpl b/view/templates/api_friends_xml.tpl deleted file mode 100644 index 4c9f7e6287..0000000000 --- a/view/templates/api_friends_xml.tpl +++ /dev/null @@ -1,6 +0,0 @@ -{{* used in include/api.php 'api_statuses_friends' and 'api_statuses_followers' *}} - - {{foreach $users as $u}} - {{include file="api_user_xml.tpl" user=$u}} - {{/foreach}} - diff --git a/view/templates/api_photo_detail_xml.tpl b/view/templates/api_photo_detail_xml.tpl deleted file mode 100644 index 0b0602901b..0000000000 --- a/view/templates/api_photo_detail_xml.tpl +++ /dev/null @@ -1,21 +0,0 @@ - - - {{$photo.id}} - {{$photo.created}} - {{$photo.edited}} - {{$photo.title}} - {{$photo.desc}} - {{$photo.album}} - {{$photo.filename}} - {{$photo.type}} - {{$photo.height}} - {{$photo.width}} - {{$photo.datasize}} - 1 - {{foreach $photo.link as $scale => $url}} - - {{/foreach}} - {{if $photo.data}} - {{$photo.data}} - {{/if}} - diff --git a/view/templates/api_photos_list_xml.tpl b/view/templates/api_photos_list_xml.tpl deleted file mode 100644 index 1478e02056..0000000000 --- a/view/templates/api_photos_list_xml.tpl +++ /dev/null @@ -1,5 +0,0 @@ - - -{{foreach $photos as $photo}} - {{$photo.thumb}} -{{/foreach}} diff --git a/view/templates/api_ratelimit_xml.tpl b/view/templates/api_ratelimit_xml.tpl deleted file mode 100644 index 5c3986bb92..0000000000 --- a/view/templates/api_ratelimit_xml.tpl +++ /dev/null @@ -1,7 +0,0 @@ - - - {{$hash.remaining_hits}} - {{$hash.hourly_limit}} - {{$hash.reset_time}} - {{$hash.resettime_in_seconds}} - diff --git a/view/templates/api_single_status_xml.tpl b/view/templates/api_single_status_xml.tpl deleted file mode 100644 index 88c56f935b..0000000000 --- a/view/templates/api_single_status_xml.tpl +++ /dev/null @@ -1,25 +0,0 @@ -{{* shared structure for statuses. includers must define root element *}} - {{$status.text}} - {{$status.truncated}} - {{$status.created_at}} - {{$status.in_reply_to_status_id}} - {{$status.source}} - {{$status.id}} - {{$status.in_reply_to_user_id}} - {{$status.in_reply_to_screen_name}} - {{$status.geo}} - {{$status.favorited}} - {{include file="api_user_xml.tpl" user=$status.user}} - {{include file="api_user_xml.tpl" user=$status.friendica_owner}} - {{$status.statusnet_html}} - {{$status.statusnet_conversation_id}} - {{$status.url}} - {{$status.coordinates}} - {{$status.place}} - {{$status.contributors}} - {{if $status.retweeted_status}}{{include file="api_single_status_xml.tpl" status=$status.retweeted_status}}{{/if}} - - {{foreach $status.friendica_activities as $k=>$v}} - {{$v|count}} - {{/foreach}} - \ No newline at end of file diff --git a/view/templates/api_status_xml.tpl b/view/templates/api_status_xml.tpl deleted file mode 100644 index a382810ff4..0000000000 --- a/view/templates/api_status_xml.tpl +++ /dev/null @@ -1,8 +0,0 @@ -{{* used in api.php to return a single status *}} - - {{if $status}} - {{include file="api_single_status_xml.tpl" status=$status}} - {{/if}} - diff --git a/view/templates/api_test_xml.tpl b/view/templates/api_test_xml.tpl deleted file mode 100644 index ad648fc041..0000000000 --- a/view/templates/api_test_xml.tpl +++ /dev/null @@ -1,2 +0,0 @@ - -{{$ok}} diff --git a/view/templates/api_timeline_rss.tpl b/view/templates/api_timeline_rss.tpl deleted file mode 100644 index 7b08ecd4c8..0000000000 --- a/view/templates/api_timeline_rss.tpl +++ /dev/null @@ -1,27 +0,0 @@ - - - - Friendica - {{$rss.alternate}} - - Friendica timeline - {{$rss.language}} - 40 - - {{$user.link}} - {{$user.name}}'s items - {{$user.profile_image_url}} - - -{{foreach $statuses as $status}} - - {{$status.user.name}}: {{$status.text}} - {{$status.text}} - {{$status.created_at}} - {{$status.url}} - {{$status.url}} - {{$status.source}} - -{{/foreach}} - - diff --git a/view/templates/api_timeline_xml.tpl b/view/templates/api_timeline_xml.tpl deleted file mode 100644 index 01b71c0bcc..0000000000 --- a/view/templates/api_timeline_xml.tpl +++ /dev/null @@ -1,10 +0,0 @@ - - -{{foreach $statuses as $status}} - - {{include file="api_single_status_xml.tpl" status=$status}} - -{{/foreach}} - diff --git a/view/templates/api_user_xml.tpl b/view/templates/api_user_xml.tpl deleted file mode 100644 index 698c5436dd..0000000000 --- a/view/templates/api_user_xml.tpl +++ /dev/null @@ -1,47 +0,0 @@ -{{* includer template MUST provide root element *}} - - {{$user.id}} - {{$user.name}} - {{$user.screen_name}} - {{$user.location}} - {{$user.description}} - {{$user.profile_image_url}} - {{$user.url}} - {{$user.protected}} - {{$user.followers_count}} - {{$user.friends_count}} - {{$user.created_at}} - {{$user.favourites_count}} - {{$user.utc_offset}} - {{$user.time_zone}} - {{$user.statuses_count}} - {{$user.following}} - {{$user.profile_background_color}} - {{$user.profile_text_color}} - {{$user.profile_link_color}} - {{$user.profile_sidebar_fill_color}} - {{$user.profile_sidebar_border_color}} - {{$user.profile_background_image_url}} - {{$user.profile_background_tile}} - {{$user.profile_use_background_image}} - {{$user.notifications}} - {{$user.geo_enabled}} - {{$user.verified}} - {{$user.lang}} - {{$user.contributors_enabled}} - {{if $user.status}} - {{$user.status.created_at}} - {{$user.status.id}} - {{$user.status.text}} - {{$user.status.source}} - {{$user.status.truncated}} - {{$user.status.in_reply_to_status_id}} - {{$user.status.in_reply_to_user_id}} - {{$user.status.favorited}} - {{$user.status.in_reply_to_screen_name}} - {{$user.status.geo}} - {{$user.status.coordinates}} - {{$user.status.place}} - {{$user.status.contributors}} - {{/if}} - From 747dc934f73643933fb46a720dd0570069eaf36a Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Sun, 24 Jul 2016 13:53:26 +0200 Subject: [PATCH 08/23] Avoid warning because $a isn't called by reference --- include/api.php | 258 ++++++++++++++++++++++++++++++++---------------- 1 file changed, 171 insertions(+), 87 deletions(-) diff --git a/include/api.php b/include/api.php index af0fa60084..14d11f6695 100644 --- a/include/api.php +++ b/include/api.php @@ -92,7 +92,7 @@ * * Register a function to be the endpont for defined API path. * - * @param string $path API URL path, relative to $a->get_baseurl() + * @param string $path API URL path, relative to App::get_baseurl() * @param string $func Function name to call on path request * @param bool $auth API need logged user * @param string $method @@ -276,7 +276,7 @@ logger('API parameters: ' . print_r($_REQUEST,true)); $stamp = microtime(true); - $r = call_user_func($info['func'], $a, $type); + $r = call_user_func($info['func'], $type); $duration = (float)(microtime(true)-$stamp); logger("API call duration: ".round($duration, 2)."\t".$a->query_string, LOGGER_DEBUG); @@ -314,19 +314,21 @@ throw new NotImplementedException(); } catch (HTTPException $e) { header("HTTP/1.1 {$e->httpcode} {$e->httpdesc}"); - return api_error($a, $type, $e); + return api_error($type, $e); } } /** * @brief Format API error string * - * @param Api $a * @param string $type Return type (xml, json, rss, as) * @param HTTPException $error Error object * @return strin error message formatted as $type */ - function api_error(&$a, $type, $e) { + function api_error($type, $e) { + + $a = get_app(); + $error = ($e->getMessage()!==""?$e->getMessage():$e->httpdesc); # TODO: https://dev.twitter.com/overview/api/response-codes @@ -369,12 +371,12 @@ $arr['$user'] = $user_info; $arr['$rss'] = array( 'alternate' => $user_info['url'], - 'self' => $a->get_baseurl(). "/". $a->query_string, - 'base' => $a->get_baseurl(), + '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' => $a->get_baseurl()."/images/friendica-32.png", + 'logo' => App::get_baseurl()."/images/friendica-32.png", ); return $arr; @@ -642,7 +644,7 @@ 'verified' => true, 'statusnet_blocking' => false, 'notifications' => false, - //'statusnet_profile_url' => $a->get_baseurl()."/contacts/".$uinfo[0]['cid'], + //'statusnet_profile_url' => App::get_baseurl()."/contacts/".$uinfo[0]['cid'], 'statusnet_profile_url' => $uinfo[0]['url'], 'uid' => intval($uinfo[0]['uid']), 'cid' => intval($uinfo[0]['cid']), @@ -806,7 +808,10 @@ * returns a 401 status code and an error message if not. * http://developer.twitter.com/doc/get/account/verify_credentials */ - function api_account_verify_credentials(&$a, $type){ + function api_account_verify_credentials($type){ + + $a = get_app(); + if (api_user()===false) throw new ForbiddenException(); unset($_REQUEST["user_id"]); @@ -824,7 +829,7 @@ // - Adding last status if (!$skip_status) { - $user_info["status"] = api_status_show($a,"raw"); + $user_info["status"] = api_status_show("raw"); if (!count($user_info["status"])) unset($user_info["status"]); else @@ -855,7 +860,10 @@ } /*Waitman Gobble Mod*/ - function api_statuses_mediap(&$a, $type) { + function api_statuses_mediap($type) { + + $a = get_app(); + if (api_user()===false) { logger('api_statuses_update: no user'); throw new ForbiddenException(); @@ -888,13 +896,16 @@ item_post($a); // this should output the last post (the one we just posted). - return api_status_show($a,$type); + return api_status_show($type); } api_register_func('api/statuses/mediap','api_statuses_mediap', true, API_METHOD_POST); /*Waitman Gobble Mod*/ - function api_statuses_update(&$a, $type) { + function api_statuses_update($type) { + + $a = get_app(); + if (api_user()===false) { logger('api_statuses_update: no user'); throw new ForbiddenException(); @@ -959,7 +970,7 @@ if ($posts_day > $throttle_day) { logger('Daily posting limit reached for user '.api_user(), LOGGER_DEBUG); - #die(api_error($a, $type, sprintf(t("Daily posting limit of %d posts reached. The post was rejected."), $throttle_day))); + #die(api_error($type, sprintf(t("Daily posting limit of %d posts reached. The post was rejected."), $throttle_day))); throw new TooManyRequestsException(sprintf(t("Daily posting limit of %d posts reached. The post was rejected."), $throttle_day)); } } @@ -979,7 +990,7 @@ if ($posts_week > $throttle_week) { logger('Weekly posting limit reached for user '.api_user(), LOGGER_DEBUG); - #die(api_error($a, $type, sprintf(t("Weekly posting limit of %d posts reached. The post was rejected."), $throttle_week))); + #die(api_error($type, sprintf(t("Weekly posting limit of %d posts reached. The post was rejected."), $throttle_week))); throw new TooManyRequestsException(sprintf(t("Weekly posting limit of %d posts reached. The post was rejected."), $throttle_week)); } @@ -1000,7 +1011,7 @@ if ($posts_month > $throttle_month) { logger('Monthly posting limit reached for user '.api_user(), LOGGER_DEBUG); - #die(api_error($a, $type, sprintf(t("Monthly posting limit of %d posts reached. The post was rejected."), $throttle_month))); + #die(api_error($type, sprintf(t("Monthly posting limit of %d posts reached. The post was rejected."), $throttle_month))); throw new TooManyRequestsException(sprintf(t("Monthly posting limit of %d posts reached. The post was rejected."), $throttle_month)); } } @@ -1023,8 +1034,8 @@ if ($r) { $phototypes = Photo::supportedTypes(); $ext = $phototypes[$r[0]['type']]; - $_REQUEST['body'] .= "\n\n".'[url='.$a->get_baseurl().'/photos/'.$r[0]['nickname'].'/image/'.$r[0]['resource-id'].']'; - $_REQUEST['body'] .= '[img]'.$a->get_baseurl()."/photo/".$r[0]['resource-id']."-".$r[0]['scale'].".".$ext."[/img][/url]"; + $_REQUEST['body'] .= "\n\n".'[url='.App::get_baseurl().'/photos/'.$r[0]['nickname'].'/image/'.$r[0]['resource-id'].']'; + $_REQUEST['body'] .= '[img]'.App::get_baseurl()."/photo/".$r[0]['resource-id']."-".$r[0]['scale'].".".$ext."[/img][/url]"; } } @@ -1040,13 +1051,16 @@ item_post($a); // this should output the last post (the one we just posted). - return api_status_show($a,$type); + return api_status_show($type); } api_register_func('api/statuses/update','api_statuses_update', true, API_METHOD_POST); api_register_func('api/statuses/update_with_media','api_statuses_update', true, API_METHOD_POST); - function api_media_upload(&$a, $type) { + function api_media_upload($type) { + + $a = get_app(); + if (api_user()===false) { logger('no user'); throw new ForbiddenException(); @@ -1079,7 +1093,10 @@ } api_register_func('api/media/upload','api_media_upload', true, API_METHOD_POST); - function api_status_show(&$a, $type){ + function api_status_show($type){ + + $a = get_app(); + $user_info = api_get_user($a); logger('api_status_show: user_info: '.print_r($user_info, true), LOGGER_DEBUG); @@ -1210,7 +1227,10 @@ * The author's most recent status will be returned inline. * http://developer.twitter.com/doc/get/users/show */ - function api_users_show(&$a, $type){ + function api_users_show($type){ + + $a = get_app(); + $user_info = api_get_user($a); $lastwall = q("SELECT `item`.* FROM `item` @@ -1305,7 +1325,10 @@ api_register_func('api/users/show','api_users_show'); - function api_users_search(&$a, $type) { + function api_users_search($type) { + + $a = get_app(); + $page = (x($_REQUEST,'page')?$_REQUEST['page']-1:0); $userlist = array(); @@ -1344,7 +1367,10 @@ * TODO: Optional parameters * TODO: Add reply info */ - function api_statuses_home_timeline(&$a, $type){ + function api_statuses_home_timeline($type){ + + $a = get_app(); + if (api_user()===false) throw new ForbiddenException(); unset($_REQUEST["user_id"]); @@ -1424,7 +1450,10 @@ api_register_func('api/statuses/home_timeline','api_statuses_home_timeline', true); api_register_func('api/statuses/friends_timeline','api_statuses_home_timeline', true); - function api_statuses_public_timeline(&$a, $type){ + function api_statuses_public_timeline($type){ + + $a = get_app(); + if (api_user()===false) throw new ForbiddenException(); $user_info = api_get_user($a); @@ -1490,7 +1519,10 @@ /** * */ - function api_statuses_show(&$a, $type){ + function api_statuses_show($type){ + + $a = get_app(); + if (api_user()===false) throw new ForbiddenException(); $user_info = api_get_user($a); @@ -1550,7 +1582,10 @@ /** * */ - function api_conversation_show(&$a, $type){ + function api_conversation_show($type){ + + $a = get_app(); + if (api_user()===false) throw new ForbiddenException(); $user_info = api_get_user($a); @@ -1621,9 +1656,11 @@ /** * */ - function api_statuses_repeat(&$a, $type){ + function api_statuses_repeat($type){ global $called_api; + $a = get_app(); + if (api_user()===false) throw new ForbiddenException(); $user_info = api_get_user($a); @@ -1683,14 +1720,17 @@ // this should output the last post (the one we just posted). $called_api = null; - return(api_status_show($a,$type)); + return(api_status_show($type)); } api_register_func('api/statuses/retweet','api_statuses_repeat', true, API_METHOD_POST); /** * */ - function api_statuses_destroy(&$a, $type){ + function api_statuses_destroy($type){ + + $a = get_app(); + if (api_user()===false) throw new ForbiddenException(); $user_info = api_get_user($a); @@ -1707,7 +1747,7 @@ logger('API: api_statuses_destroy: '.$id); - $ret = api_statuses_show($a, $type); + $ret = api_statuses_show($type); drop_item($id, false); @@ -1720,7 +1760,10 @@ * http://developer.twitter.com/doc/get/statuses/mentions * */ - function api_statuses_mentions(&$a, $type){ + function api_statuses_mentions($type){ + + $a = get_app(); + if (api_user()===false) throw new ForbiddenException(); unset($_REQUEST["user_id"]); @@ -1744,7 +1787,7 @@ $start = $page*$count; // Ugly code - should be changed - $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(array('www.','.'),array('','\\.'),$myurl); $myurl = str_replace('www.','',$myurl); @@ -1793,7 +1836,10 @@ api_register_func('api/statuses/replies','api_statuses_mentions', true); - function api_statuses_user_timeline(&$a, $type){ + function api_statuses_user_timeline($type){ + + $a = get_app(); + if (api_user()===false) throw new ForbiddenException(); $user_info = api_get_user($a); @@ -1864,7 +1910,10 @@ * * api v1 : https://web.archive.org/web/20131019055350/https://dev.twitter.com/docs/api/1/post/favorites/create/%3Aid */ - function api_favorites_create_destroy(&$a, $type){ + function api_favorites_create_destroy($type){ + + $a = get_app(); + if (api_user()===false) throw new ForbiddenException(); // for versioned api. @@ -1907,7 +1956,7 @@ $user_info = api_get_user($a); - $rets = api_format_items($item,$user_info, false, $type); + $rets = api_format_items($item, $user_info, false, $type); $ret = $rets[0]; $data = array('status' => $ret); @@ -1922,9 +1971,11 @@ api_register_func('api/favorites/create', 'api_favorites_create_destroy', true, API_METHOD_POST); api_register_func('api/favorites/destroy', 'api_favorites_create_destroy', true, API_METHOD_DELETE); - function api_favorites(&$a, $type){ + function api_favorites($type){ global $called_api; + $a = get_app(); + if (api_user()===false) throw new ForbiddenException(); $called_api= array(); @@ -2255,11 +2306,10 @@ return($entities); } function api_format_items_embeded_images(&$item, $text){ - $a = get_app(); $text = preg_replace_callback( "|data:image/([^;]+)[^=]+=*|m", - function($match) use ($a, $item) { - return $a->get_baseurl()."/display/".$item['guid']; + function($match) use ($item) { + return App::get_baseurl()."/display/".$item['guid']; }, $text); return $text; @@ -2343,6 +2393,7 @@ function api_format_items($r,$user_info, $filter_user = false, $type = "json") { $a = get_app(); + $ret = Array(); foreach($r as $item) { @@ -2483,7 +2534,7 @@ } - function api_account_rate_limit_status(&$a,$type) { + function api_account_rate_limit_status($type) { if ($type == "xml") $hash = array( @@ -2508,7 +2559,7 @@ } api_register_func('api/account/rate_limit_status','api_account_rate_limit_status',true); - function api_help_test(&$a,$type) { + function api_help_test($type) { if ($type == 'xml') $ok = "true"; else @@ -2518,13 +2569,13 @@ } api_register_func('api/help/test','api_help_test',false); - function api_lists(&$a,$type) { + function api_lists($type) { $ret = array(); return api_format_data('lists', $type, array("lists_list" => $ret)); } api_register_func('api/lists','api_lists',true); - function api_lists_list(&$a,$type) { + function api_lists_list($type) { $ret = array(); return api_format_data('lists', $type, array("lists_list" => $ret)); } @@ -2535,7 +2586,10 @@ * This function is deprecated by Twitter * returns: json, xml **/ - function api_statuses_f(&$a, $type, $qtype) { + function api_statuses_f($type, $qtype) { + + $a = get_app(); + if (api_user()===false) throw new ForbiddenException(); $user_info = api_get_user($a); @@ -2577,13 +2631,13 @@ return array('user' => $ret); } - function api_statuses_friends(&$a, $type){ - $data = api_statuses_f($a,$type,"friends"); + function api_statuses_friends($type){ + $data = api_statuses_f($type, "friends"); if ($data===false) return false; return api_format_data("users", $type, $data); } - function api_statuses_followers(&$a, $type){ - $data = api_statuses_f($a,$type,"followers"); + function api_statuses_followers($type){ + $data = api_statuses_f($type, "followers"); if ($data===false) return false; return api_format_data("users", $type, $data); } @@ -2595,10 +2649,13 @@ - function api_statusnet_config(&$a,$type) { + function api_statusnet_config($type) { + + $a = get_app(); + $name = $a->config['sitename']; $server = $a->get_hostname(); - $logo = $a->get_baseurl() . '/images/friendica-64.png'; + $logo = App::get_baseurl() . '/images/friendica-64.png'; $email = $a->config['admin_email']; $closed = (($a->config['register_policy'] == REGISTER_CLOSED) ? 'true' : 'false'); $private = (($a->config['system']['block_public']) ? 'true' : 'false'); @@ -2606,7 +2663,7 @@ if($a->config['api_import_size']) $texlimit = string($a->config['api_import_size']); $ssl = (($a->config['system']['have_ssl']) ? 'true' : 'false'); - $sslserver = (($ssl === 'true') ? str_replace('http:','https:',$a->get_baseurl()) : ''); + $sslserver = (($ssl === 'true') ? str_replace('http:','https:',App::get_baseurl()) : ''); $config = array( 'site' => array('name' => $name,'server' => $server, 'theme' => 'default', 'path' => '', @@ -2628,7 +2685,7 @@ } api_register_func('api/statusnet/config','api_statusnet_config',false); - function api_statusnet_version(&$a,$type) { + function api_statusnet_version($type) { // liar $fake_statusnet_version = "0.9.7"; @@ -2639,7 +2696,10 @@ /** * @todo use api_format_data() to return data */ - function api_ff_ids(&$a,$type,$qtype) { + function api_ff_ids($type,$qtype) { + + $a = get_app(); + if(! api_user()) throw new ForbiddenException(); $user_info = api_get_user($a); @@ -2671,17 +2731,20 @@ return api_format_data("ids", $type, array('id' => $ids)); } - function api_friends_ids(&$a,$type) { - return api_ff_ids($a,$type,'friends'); + function api_friends_ids($type) { + return api_ff_ids($type,'friends'); } - function api_followers_ids(&$a,$type) { - return api_ff_ids($a,$type,'followers'); + function api_followers_ids($type) { + return api_ff_ids($type,'followers'); } api_register_func('api/friends/ids','api_friends_ids',true); api_register_func('api/followers/ids','api_followers_ids',true); - function api_direct_messages_new(&$a, $type) { + function api_direct_messages_new($type) { + + $a = get_app(); + if (api_user()===false) throw new ForbiddenException(); if (!x($_POST, "text") OR (!x($_POST,"screen_name") AND !x($_POST,"user_id"))) return; @@ -2741,7 +2804,10 @@ } api_register_func('api/direct_messages/new','api_direct_messages_new',true, API_METHOD_POST); - function api_direct_messages_box(&$a, $type, $box) { + function api_direct_messages_box($type, $box) { + + $a = get_app(); + if (api_user()===false) throw new ForbiddenException(); // params @@ -2763,7 +2829,6 @@ unset($_GET["screen_name"]); $user_info = api_get_user($a); - //$profile_url = $a->get_baseurl() . '/profile/' . $a->user['nickname']; $profile_url = $user_info["url"]; @@ -2827,17 +2892,17 @@ } - function api_direct_messages_sentbox(&$a, $type){ - return api_direct_messages_box($a, $type, "sentbox"); + function api_direct_messages_sentbox($type){ + return api_direct_messages_box($type, "sentbox"); } - function api_direct_messages_inbox(&$a, $type){ - return api_direct_messages_box($a, $type, "inbox"); + function api_direct_messages_inbox($type){ + return api_direct_messages_box($type, "inbox"); } - function api_direct_messages_all(&$a, $type){ - return api_direct_messages_box($a, $type, "all"); + function api_direct_messages_all($type){ + return api_direct_messages_box($type, "all"); } - function api_direct_messages_conversation(&$a, $type){ - return api_direct_messages_box($a, $type, "conversation"); + function api_direct_messages_conversation($type){ + return api_direct_messages_box($type, "conversation"); } api_register_func('api/direct_messages/conversation','api_direct_messages_conversation',true); api_register_func('api/direct_messages/all','api_direct_messages_all',true); @@ -2846,7 +2911,7 @@ - function api_oauth_request_token(&$a, $type){ + function api_oauth_request_token($type){ try{ $oauth = new FKOAuth1(); $r = $oauth->fetch_request_token(OAuthRequest::from_request()); @@ -2856,7 +2921,7 @@ echo $r; killme(); } - function api_oauth_access_token(&$a, $type){ + function api_oauth_access_token($type){ try{ $oauth = new FKOAuth1(); $r = $oauth->fetch_access_token(OAuthRequest::from_request()); @@ -2871,7 +2936,7 @@ api_register_func('api/oauth/access_token', 'api_oauth_access_token', false); - function api_fr_photos_list(&$a,$type) { + function api_fr_photos_list($type) { if (api_user()===false) throw new ForbiddenException(); $r = q("select `resource-id`, max(scale) as scale, album, filename, type from photo where uid = %d and album != 'Contact Photos' group by `resource-id`", @@ -2890,7 +2955,7 @@ $photo['album'] = $rr['album']; $photo['filename'] = $rr['filename']; $photo['type'] = $rr['type']; - $thumb = $a->get_baseurl()."/photo/".$rr['resource-id']."-".$rr['scale'].".".$typetoext[$rr['type']]; + $thumb = App::get_baseurl()."/photo/".$rr['resource-id']."-".$rr['scale'].".".$typetoext[$rr['type']]; if ($type == "xml") $data['photo'][] = array("@attributes" => $photo, "1" => $thumb); @@ -2903,7 +2968,7 @@ return api_format_data("photos", $type, $data); } - function api_fr_photo_detail(&$a,$type) { + function api_fr_photo_detail($type) { if (api_user()===false) throw new ForbiddenException(); if(!x($_REQUEST,'photo_id')) throw new BadRequestException("No photo id."); @@ -2939,11 +3004,11 @@ for ($k=intval($data['photo']['minscale']); $k<=intval($data['photo']['maxscale']); $k++) $data['photo']['links'][$k.":link"]["@attributes"] = array("type" => $data['photo']['type'], "scale" => $k, - "href" => $a->get_baseurl()."/photo/".$data['photo']['resource-id']."-".$k.".".$typetoext[$data['photo']['type']]); + "href" => App::get_baseurl()."/photo/".$data['photo']['resource-id']."-".$k.".".$typetoext[$data['photo']['type']]); } else { $data['photo']['link'] = array(); for ($k=intval($data['photo']['minscale']); $k<=intval($data['photo']['maxscale']); $k++) { - $data['photo']['link'][$k] = $a->get_baseurl()."/photo/".$data['photo']['resource-id']."-".$k.".".$typetoext[$data['photo']['type']]; + $data['photo']['link'][$k] = App::get_baseurl()."/photo/".$data['photo']['resource-id']."-".$k.".".$typetoext[$data['photo']['type']]; } } unset($data['photo']['resource-id']); @@ -2973,7 +3038,7 @@ * c_url: url of remote contact to auth to * url: string, url to redirect after auth */ - function api_friendica_remoteauth(&$a) { + function api_friendica_remoteauth() { $url = ((x($_GET,'url')) ? $_GET['url'] : ''); $c_url = ((x($_GET,'c_url')) ? $_GET['c_url'] : ''); @@ -3270,7 +3335,10 @@ } // return all or a specified group of the user with the containing contacts - function api_friendica_group_show(&$a, $type) { + function api_friendica_group_show($type) { + + $a = get_app(); + if (api_user()===false) throw new ForbiddenException(); // params @@ -3318,7 +3386,10 @@ // delete the specified group of the user - function api_friendica_group_delete(&$a, $type) { + function api_friendica_group_delete($type) { + + $a = get_app(); + if (api_user()===false) throw new ForbiddenException(); // params @@ -3362,7 +3433,10 @@ // create the specified group with the posted array of contacts - function api_friendica_group_create(&$a, $type) { + function api_friendica_group_create($type) { + + $a = get_app(); + if (api_user()===false) throw new ForbiddenException(); // params @@ -3425,7 +3499,10 @@ // update the specified group with the posted array of contacts - function api_friendica_group_update(&$a, $type) { + function api_friendica_group_update($type) { + + $a = get_app(); + if (api_user()===false) throw new ForbiddenException(); // params @@ -3481,7 +3558,10 @@ api_register_func('api/friendica/group_update', 'api_friendica_group_update', true, API_METHOD_POST); - function api_friendica_activity(&$a, $type) { + function api_friendica_activity($type) { + + $a = get_app(); + if (api_user()===false) throw new ForbiddenException(); $verb = strtolower($a->argv[3]); $verb = preg_replace("|\..*$|", "", $verb); @@ -3515,11 +3595,13 @@ /** * @brief Returns notifications * - * @param App $a * @param string $type Known types are 'atom', 'rss', 'xml' and 'json' * @return string */ - function api_friendica_notification(&$a, $type) { + function api_friendica_notification($type) { + + $a = get_app(); + if (api_user()===false) throw new ForbiddenException(); if ($a->argc!==3) throw new BadRequestException("Invalid argument count"); $nm = new NotificationsManager(); @@ -3542,11 +3624,13 @@ * * POST request with 'id' param as notification id * - * @param App $a * @param string $type Known types are 'atom', 'rss', 'xml' and 'json' * @return string */ - function api_friendica_notification_seen(&$a, $type){ + function api_friendica_notification_seen($type){ + + $a = get_app(); + if (api_user()===false) throw new ForbiddenException(); if ($a->argc!==4) throw new BadRequestException("Invalid argument count"); From 694637f9c3c47d57464d4a21fd7c1f8b174400b1 Mon Sep 17 00:00:00 2001 From: rabuzarus <> Date: Tue, 26 Jul 2016 10:36:34 +0200 Subject: [PATCH 09/23] frio: provide confirm modal --- mod/contacts.php | 3 ++- view/templates/contact_drop_confirm.tpl | 2 +- view/theme/frio/css/style.css | 8 ++++++++ view/theme/frio/templates/confirm.tpl | 14 ++++++++++++++ view/theme/frio/templates/contact_drop_confirm.tpl | 9 +++++++++ view/theme/frio/templates/contact_template.tpl | 2 +- 6 files changed, 35 insertions(+), 3 deletions(-) create mode 100644 view/theme/frio/templates/confirm.tpl create mode 100644 view/theme/frio/templates/contact_drop_confirm.tpl diff --git a/mod/contacts.php b/mod/contacts.php index 4eb435fc75..1fb48daf36 100644 --- a/mod/contacts.php +++ b/mod/contacts.php @@ -434,7 +434,8 @@ function contacts_content(&$a) { $a->page['aside'] = ''; return replace_macros(get_markup_template('contact_drop_confirm.tpl'), array( - '$contact' => _contact_detail_for_template($orig_record[0]), + '$header' => t('Drop contact'), + '$contact' => _contact_detail_for_template($orig_record[0]), '$method' => 'get', '$message' => t('Do you really want to delete this contact?'), '$extra_inputs' => $inputs, diff --git a/view/templates/contact_drop_confirm.tpl b/view/templates/contact_drop_confirm.tpl index 9b9a359714..48b61832d4 100644 --- a/view/templates/contact_drop_confirm.tpl +++ b/view/templates/contact_drop_confirm.tpl @@ -1,4 +1,4 @@ -

{{"Drop contact"|t}}

+

{{$header}}

{{include file="contact_template.tpl" no_contacts_checkbox=True}} diff --git a/view/theme/frio/css/style.css b/view/theme/frio/css/style.css index c7cf213724..30b2221e3b 100644 --- a/view/theme/frio/css/style.css +++ b/view/theme/frio/css/style.css @@ -1908,6 +1908,14 @@ ul li:hover .contact-wrapper a.contact-action-link:hover { #directory-search-wrapper{ padding: 10px 0; } +#contact-drop-confirm .contact-actions, +#contact-drop-confirm .contact-photo-overlay, +#contact-drop-confirm .contact-photo-menu { + display: none; +} +#contact-drop-confirm #confirm-form { + margin-top: 20px; +} /* directory page */ #directory-search-heading { diff --git a/view/theme/frio/templates/confirm.tpl b/view/theme/frio/templates/confirm.tpl new file mode 100644 index 0000000000..d0de608319 --- /dev/null +++ b/view/theme/frio/templates/confirm.tpl @@ -0,0 +1,14 @@ + +
+ +
{{$message}}
+ {{foreach $extra_inputs as $input}} + + {{/foreach}} + +
+ + +
+ +
diff --git a/view/theme/frio/templates/contact_drop_confirm.tpl b/view/theme/frio/templates/contact_drop_confirm.tpl new file mode 100644 index 0000000000..d665fefed0 --- /dev/null +++ b/view/theme/frio/templates/contact_drop_confirm.tpl @@ -0,0 +1,9 @@ +
+

{{$header}}

+ + {{include file="contact_template.tpl" no_contacts_checkbox=True}} + + {{include file="confirm.tpl"}} + +
+
diff --git a/view/theme/frio/templates/contact_template.tpl b/view/theme/frio/templates/contact_template.tpl index 37217c62ff..264e5a4c61 100644 --- a/view/theme/frio/templates/contact_template.tpl +++ b/view/theme/frio/templates/contact_template.tpl @@ -52,7 +52,7 @@ {{if $contact.photo_menu.poke}}{{/if}} {{if $contact.photo_menu.network}}{{/if}} {{if $contact.photo_menu.edit}}{{/if}} - {{if $contact.photo_menu.drop}}{{/if}} + {{if $contact.photo_menu.drop}}{{/if}} {{if $contact.photo_menu.follow}}{{/if}} {{if $contact.photo_menu.hide}}{{/if}} From 3e8da763baf1cae556baff287af5bcff2efc270b Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Tue, 26 Jul 2016 11:18:38 +0200 Subject: [PATCH 10/23] =?UTF-8?q?IS=20update=20to=20the=20translations=20T?= =?UTF-8?q?HX=20Sveinn=20=C3=AD=20Felli?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- view/is/messages.po | 15757 ++++++++++++++++++++++-------------------- view/is/strings.php | 3577 +++++----- 2 files changed, 10236 insertions(+), 9098 deletions(-) diff --git a/view/is/messages.po b/view/is/messages.po index e2af09ec9c..39c0b853ad 100644 --- a/view/is/messages.po +++ b/view/is/messages.po @@ -11,5690 +11,2321 @@ # peturisfeld , 2012 # peturisfeld , 2012 # sella , 2012 -# Sveinn í Felli , 2014 +# Sveinn í Felli , 2014,2016 msgid "" msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-02-09 08:57+0100\n" -"PO-Revision-Date: 2015-02-09 09:46+0000\n" -"Last-Translator: fabrixxm \n" -"Language-Team: Icelandic (http://www.transifex.com/projects/p/friendica/language/is/)\n" +"POT-Creation-Date: 2016-07-08 19:22+0200\n" +"PO-Revision-Date: 2016-07-25 09:10+0000\n" +"Last-Translator: Sveinn í Felli \n" +"Language-Team: Icelandic (http://www.transifex.com/Friendica/friendica/language/is/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: is\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Plural-Forms: nplurals=2; plural=(n % 10 != 1 || n % 100 == 11);\n" -#: ../../mod/contacts.php:108 +#: boot.php:887 +msgid "Delete this item?" +msgstr "Eyða þessu atriði?" + +#: boot.php:888 mod/content.php:727 mod/content.php:945 mod/photos.php:1616 +#: mod/photos.php:1664 mod/photos.php:1752 object/Item.php:403 +#: object/Item.php:719 +msgid "Comment" +msgstr "Athugasemd" + +#: boot.php:889 include/contact_widgets.php:242 include/ForumManager.php:119 +#: include/items.php:2122 mod/content.php:624 object/Item.php:432 +#: view/theme/vier/theme.php:260 +msgid "show more" +msgstr "birta meira" + +#: boot.php:890 +msgid "show fewer" +msgstr "birta minna" + +#: boot.php:1483 #, php-format -msgid "%d contact edited." -msgid_plural "%d contacts edited" -msgstr[0] "" -msgstr[1] "" +msgid "Update %s failed. See error logs." +msgstr "Uppfærsla á %s mistókst. Skoðaðu villuannál." -#: ../../mod/contacts.php:139 ../../mod/contacts.php:272 -msgid "Could not access contact record." -msgstr "Tókst ekki að ná í uppl. um tengilið" +#: boot.php:1595 +msgid "Create a New Account" +msgstr "Stofna nýjan notanda" -#: ../../mod/contacts.php:153 -msgid "Could not locate selected profile." -msgstr "Tókst ekki að staðsetja valinn forsíðu" +#: boot.php:1596 include/nav.php:111 mod/register.php:280 +msgid "Register" +msgstr "Nýskrá" -#: ../../mod/contacts.php:186 -msgid "Contact updated." -msgstr "Tengiliður uppfærður" +#: boot.php:1620 include/nav.php:75 view/theme/frio/theme.php:243 +msgid "Logout" +msgstr "Útskrá" -#: ../../mod/contacts.php:188 ../../mod/dfrn_request.php:576 -msgid "Failed to update contact record." -msgstr "Ekki tókst að uppfæra tengiliðs skrá." +#: boot.php:1621 include/nav.php:94 mod/bookmarklet.php:12 +msgid "Login" +msgstr "Innskrá" -#: ../../mod/contacts.php:254 ../../mod/manage.php:96 -#: ../../mod/display.php:499 ../../mod/profile_photo.php:19 -#: ../../mod/profile_photo.php:169 ../../mod/profile_photo.php:180 -#: ../../mod/profile_photo.php:193 ../../mod/follow.php:9 -#: ../../mod/item.php:168 ../../mod/item.php:184 ../../mod/group.php:19 -#: ../../mod/dfrn_confirm.php:55 ../../mod/fsuggest.php:78 -#: ../../mod/wall_upload.php:66 ../../mod/viewcontacts.php:24 -#: ../../mod/notifications.php:66 ../../mod/message.php:38 -#: ../../mod/message.php:174 ../../mod/crepair.php:119 -#: ../../mod/nogroup.php:25 ../../mod/network.php:4 ../../mod/allfriends.php:9 -#: ../../mod/events.php:140 ../../mod/install.php:151 -#: ../../mod/wallmessage.php:9 ../../mod/wallmessage.php:33 -#: ../../mod/wallmessage.php:79 ../../mod/wallmessage.php:103 -#: ../../mod/wall_attach.php:55 ../../mod/settings.php:102 -#: ../../mod/settings.php:596 ../../mod/settings.php:601 -#: ../../mod/register.php:42 ../../mod/delegate.php:12 ../../mod/mood.php:114 -#: ../../mod/suggest.php:58 ../../mod/profiles.php:165 -#: ../../mod/profiles.php:618 ../../mod/editpost.php:10 ../../mod/api.php:26 -#: ../../mod/api.php:31 ../../mod/notes.php:20 ../../mod/poke.php:135 -#: ../../mod/invite.php:15 ../../mod/invite.php:101 ../../mod/photos.php:134 -#: ../../mod/photos.php:1050 ../../mod/regmod.php:110 ../../mod/uimport.php:23 -#: ../../mod/attach.php:33 ../../include/items.php:4712 ../../index.php:369 -msgid "Permission denied." -msgstr "Heimild ekki veitt." +#: boot.php:1623 mod/lostpass.php:161 +msgid "Nickname or Email: " +msgstr "Gælunafn eða póstfang: " -#: ../../mod/contacts.php:287 -msgid "Contact has been blocked" -msgstr "Lokað á tengilið" +#: boot.php:1624 +msgid "Password: " +msgstr "Aðgangsorð: " -#: ../../mod/contacts.php:287 -msgid "Contact has been unblocked" -msgstr "Opnað á tengilið" +#: boot.php:1625 +msgid "Remember me" +msgstr "Muna eftir mér" -#: ../../mod/contacts.php:298 -msgid "Contact has been ignored" -msgstr "Tengiliður hunsaður" +#: boot.php:1628 +msgid "Or login using OpenID: " +msgstr "Eða auðkenna með OpenID: " -#: ../../mod/contacts.php:298 -msgid "Contact has been unignored" -msgstr "Tengiliður afhunsaður" +#: boot.php:1634 +msgid "Forgot your password?" +msgstr "Gleymt lykilorð?" -#: ../../mod/contacts.php:310 -msgid "Contact has been archived" -msgstr "Tengiliður settur í geymslu" +#: boot.php:1635 mod/lostpass.php:109 +msgid "Password Reset" +msgstr "Endurstilling aðgangsorðs" -#: ../../mod/contacts.php:310 -msgid "Contact has been unarchived" -msgstr "Tengiliður tekinn úr geymslu" +#: boot.php:1637 +msgid "Website Terms of Service" +msgstr "Þjónustuskilmálar vefsvæðis" -#: ../../mod/contacts.php:335 ../../mod/contacts.php:711 -msgid "Do you really want to delete this contact?" -msgstr "Viltu í alvörunni eyða þessum tengilið?" +#: boot.php:1638 +msgid "terms of service" +msgstr "þjónustuskilmálar" -#: ../../mod/contacts.php:337 ../../mod/message.php:209 -#: ../../mod/settings.php:1010 ../../mod/settings.php:1016 -#: ../../mod/settings.php:1024 ../../mod/settings.php:1028 -#: ../../mod/settings.php:1033 ../../mod/settings.php:1039 -#: ../../mod/settings.php:1045 ../../mod/settings.php:1051 -#: ../../mod/settings.php:1081 ../../mod/settings.php:1082 -#: ../../mod/settings.php:1083 ../../mod/settings.php:1084 -#: ../../mod/settings.php:1085 ../../mod/dfrn_request.php:830 -#: ../../mod/register.php:233 ../../mod/suggest.php:29 -#: ../../mod/profiles.php:661 ../../mod/profiles.php:664 ../../mod/api.php:105 -#: ../../include/items.php:4557 -msgid "Yes" -msgstr "Já" +#: boot.php:1640 +msgid "Website Privacy Policy" +msgstr "Persónuverndarstefna" -#: ../../mod/contacts.php:340 ../../mod/tagrm.php:11 ../../mod/tagrm.php:94 -#: ../../mod/message.php:212 ../../mod/fbrowser.php:81 -#: ../../mod/fbrowser.php:116 ../../mod/settings.php:615 -#: ../../mod/settings.php:641 ../../mod/dfrn_request.php:844 -#: ../../mod/suggest.php:32 ../../mod/editpost.php:148 -#: ../../mod/photos.php:203 ../../mod/photos.php:292 -#: ../../include/conversation.php:1129 ../../include/items.php:4560 -msgid "Cancel" -msgstr "Hætta við" +#: boot.php:1641 +msgid "privacy policy" +msgstr "persónuverndarstefna" -#: ../../mod/contacts.php:352 -msgid "Contact has been removed." -msgstr "Tengiliður fjarlægður" +#: include/datetime.php:57 include/datetime.php:59 mod/profiles.php:698 +msgid "Miscellaneous" +msgstr "Ýmislegt" -#: ../../mod/contacts.php:390 -#, php-format -msgid "You are mutual friends with %s" -msgstr "Þú ert gagnkvæmur vinur %s" +#: include/datetime.php:183 include/identity.php:627 +msgid "Birthday:" +msgstr "Afmælisdagur:" -#: ../../mod/contacts.php:394 -#, php-format -msgid "You are sharing with %s" -msgstr "Þú ert að deila með %s" +#: include/datetime.php:185 mod/profiles.php:721 +msgid "Age: " +msgstr "Aldur: " -#: ../../mod/contacts.php:399 -#, php-format -msgid "%s is sharing with you" -msgstr "%s er að deila með þér" +#: include/datetime.php:187 +msgid "YYYY-MM-DD or MM-DD" +msgstr "ÁÁÁÁ-MM-DD eða MM-DD" -#: ../../mod/contacts.php:416 -msgid "Private communications are not available for this contact." -msgstr "Einkasamtal ekki í boði fyrir þennan" - -#: ../../mod/contacts.php:419 ../../mod/admin.php:569 -msgid "Never" +#: include/datetime.php:341 +msgid "never" msgstr "aldrei" -#: ../../mod/contacts.php:423 -msgid "(Update was successful)" -msgstr "(uppfærsla tókst)" +#: include/datetime.php:347 +msgid "less than a second ago" +msgstr "fyrir minna en sekúndu" -#: ../../mod/contacts.php:423 -msgid "(Update was not successful)" -msgstr "(uppfærsla tókst ekki)" +#: include/datetime.php:357 +msgid "year" +msgstr "ár" -#: ../../mod/contacts.php:425 -msgid "Suggest friends" -msgstr "Stinga uppá vinum" +#: include/datetime.php:357 +msgid "years" +msgstr "ár" -#: ../../mod/contacts.php:429 +#: include/datetime.php:358 include/event.php:480 mod/events.php:389 +#: mod/cal.php:287 +msgid "month" +msgstr "mánuður" + +#: include/datetime.php:358 +msgid "months" +msgstr "mánuðir" + +#: include/datetime.php:359 include/event.php:481 mod/events.php:390 +#: mod/cal.php:288 +msgid "week" +msgstr "vika" + +#: include/datetime.php:359 +msgid "weeks" +msgstr "vikur" + +#: include/datetime.php:360 include/event.php:482 mod/events.php:391 +#: mod/cal.php:289 +msgid "day" +msgstr "dagur" + +#: include/datetime.php:360 +msgid "days" +msgstr "dagar" + +#: include/datetime.php:361 +msgid "hour" +msgstr "klukkustund" + +#: include/datetime.php:361 +msgid "hours" +msgstr "klukkustundir" + +#: include/datetime.php:362 +msgid "minute" +msgstr "mínúta" + +#: include/datetime.php:362 +msgid "minutes" +msgstr "mínútur" + +#: include/datetime.php:363 +msgid "second" +msgstr "sekúnda" + +#: include/datetime.php:363 +msgid "seconds" +msgstr "sekúndur" + +#: include/datetime.php:372 #, php-format -msgid "Network type: %s" -msgstr "Net tegund: %s" +msgid "%1$d %2$s ago" +msgstr "Fyrir %1$d %2$s síðan" -#: ../../mod/contacts.php:432 ../../include/contact_widgets.php:200 +#: include/datetime.php:578 +#, php-format +msgid "%s's birthday" +msgstr "Afmælisdagur %s" + +#: include/datetime.php:579 include/dfrn.php:1111 +#, php-format +msgid "Happy Birthday %s" +msgstr "Til hamingju með afmælið %s" + +#: include/contact_widgets.php:6 +msgid "Add New Contact" +msgstr "Bæta við tengilið" + +#: include/contact_widgets.php:7 +msgid "Enter address or web location" +msgstr "Settu inn slóð" + +#: include/contact_widgets.php:8 +msgid "Example: bob@example.com, http://example.com/barbara" +msgstr "Dæmi: gudmundur@simnet.is, http://simnet.is/gudmundur" + +#: include/contact_widgets.php:10 include/identity.php:212 mod/dirfind.php:201 +#: mod/match.php:87 mod/allfriends.php:82 mod/suggest.php:101 +msgid "Connect" +msgstr "Tengjast" + +#: include/contact_widgets.php:24 +#, php-format +msgid "%d invitation available" +msgid_plural "%d invitations available" +msgstr[0] "%d boðskort í boði" +msgstr[1] "%d boðskort í boði" + +#: include/contact_widgets.php:30 +msgid "Find People" +msgstr "Finna fólk" + +#: include/contact_widgets.php:31 +msgid "Enter name or interest" +msgstr "Settu inn nafn eða áhugamál" + +#: include/contact_widgets.php:32 include/conversation.php:978 +#: include/Contact.php:324 mod/dirfind.php:204 mod/match.php:72 +#: mod/allfriends.php:66 mod/contacts.php:600 mod/follow.php:103 +#: mod/suggest.php:83 +msgid "Connect/Follow" +msgstr "Tengjast/fylgja" + +#: include/contact_widgets.php:33 +msgid "Examples: Robert Morgenstein, Fishing" +msgstr "Dæmi: Jón Jónsson, Veiði" + +#: include/contact_widgets.php:34 mod/directory.php:212 mod/contacts.php:791 +msgid "Find" +msgstr "Finna" + +#: include/contact_widgets.php:35 mod/suggest.php:114 +#: view/theme/vier/theme.php:203 view/theme/diabook/theme.php:527 +msgid "Friend Suggestions" +msgstr "Vina uppástungur" + +#: include/contact_widgets.php:36 view/theme/vier/theme.php:202 +#: view/theme/diabook/theme.php:526 +msgid "Similar Interests" +msgstr "Svipuð áhugamál" + +#: include/contact_widgets.php:37 +msgid "Random Profile" +msgstr "" + +#: include/contact_widgets.php:38 view/theme/vier/theme.php:204 +#: view/theme/diabook/theme.php:528 +msgid "Invite Friends" +msgstr "Bjóða vinum aðgang" + +#: include/contact_widgets.php:108 +msgid "Networks" +msgstr "Net" + +#: include/contact_widgets.php:111 +msgid "All Networks" +msgstr "Öll net" + +#: include/contact_widgets.php:141 include/features.php:103 +msgid "Saved Folders" +msgstr "Vistaðar möppur" + +#: include/contact_widgets.php:144 include/contact_widgets.php:176 +msgid "Everything" +msgstr "Allt" + +#: include/contact_widgets.php:173 +msgid "Categories" +msgstr "Flokkar" + +#: include/contact_widgets.php:237 #, php-format msgid "%d contact in common" msgid_plural "%d contacts in common" msgstr[0] "%d tengiliður sameiginlegur" msgstr[1] "%d tengiliðir sameiginlegir" -#: ../../mod/contacts.php:437 -msgid "View all contacts" -msgstr "Skoða alla tengiliði" +#: include/enotify.php:24 +msgid "Friendica Notification" +msgstr "Friendica tilkynning" -#: ../../mod/contacts.php:442 ../../mod/contacts.php:501 -#: ../../mod/contacts.php:714 ../../mod/admin.php:1009 -msgid "Unblock" -msgstr "Afbanna" +#: include/enotify.php:27 +msgid "Thank You," +msgstr "Takk fyrir," -#: ../../mod/contacts.php:442 ../../mod/contacts.php:501 -#: ../../mod/contacts.php:714 ../../mod/admin.php:1008 -msgid "Block" -msgstr "Banna" +#: include/enotify.php:30 +#, php-format +msgid "%s Administrator" +msgstr "Kerfisstjóri %s" -#: ../../mod/contacts.php:445 -msgid "Toggle Blocked status" +#: include/enotify.php:32 +#, php-format +msgid "%1$s, %2$s Administrator" +msgstr "%1$s, %2$s kerfisstjóri" + +#: include/enotify.php:43 include/delivery.php:450 +msgid "noreply" +msgstr "ekki svara" + +#: include/enotify.php:70 +#, php-format +msgid "%s " +msgstr "%s " + +#: include/enotify.php:83 +#, php-format +msgid "[Friendica:Notify] New mail received at %s" msgstr "" -#: ../../mod/contacts.php:448 ../../mod/contacts.php:502 -#: ../../mod/contacts.php:715 -msgid "Unignore" -msgstr "Byrja að fylgjast með á ný" - -#: ../../mod/contacts.php:448 ../../mod/contacts.php:502 -#: ../../mod/contacts.php:715 ../../mod/notifications.php:51 -#: ../../mod/notifications.php:164 ../../mod/notifications.php:210 -msgid "Ignore" -msgstr "Hunsa" - -#: ../../mod/contacts.php:451 -msgid "Toggle Ignored status" +#: include/enotify.php:85 +#, php-format +msgid "%1$s sent you a new private message at %2$s." msgstr "" -#: ../../mod/contacts.php:455 ../../mod/contacts.php:716 -msgid "Unarchive" -msgstr "Taka úr geymslu" +#: include/enotify.php:86 +#, php-format +msgid "%1$s sent you %2$s." +msgstr "%1$s sendi þér %2$s." -#: ../../mod/contacts.php:455 ../../mod/contacts.php:716 -msgid "Archive" -msgstr "Setja í geymslu" +#: include/enotify.php:86 +msgid "a private message" +msgstr "einkaskilaboð" -#: ../../mod/contacts.php:458 -msgid "Toggle Archive status" +#: include/enotify.php:88 +#, php-format +msgid "Please visit %s to view and/or reply to your private messages." +msgstr "Farðu á %s til að skoða og/eða svara einkaskilaboðunum þínum." + +#: include/enotify.php:134 +#, php-format +msgid "%1$s commented on [url=%2$s]a %3$s[/url]" msgstr "" -#: ../../mod/contacts.php:461 -msgid "Repair" -msgstr "Gera við " - -#: ../../mod/contacts.php:464 -msgid "Advanced Contact Settings" +#: include/enotify.php:141 +#, php-format +msgid "%1$s commented on [url=%2$s]%3$s's %4$s[/url]" msgstr "" -#: ../../mod/contacts.php:470 -msgid "Communications lost with this contact!" +#: include/enotify.php:149 +#, php-format +msgid "%1$s commented on [url=%2$s]your %3$s[/url]" msgstr "" -#: ../../mod/contacts.php:473 -msgid "Contact Editor" -msgstr "Stilling tengiliðar" +#: include/enotify.php:159 +#, php-format +msgid "[Friendica:Notify] Comment to conversation #%1$d by %2$s" +msgstr "" -#: ../../mod/contacts.php:475 ../../mod/manage.php:110 -#: ../../mod/fsuggest.php:107 ../../mod/message.php:335 -#: ../../mod/message.php:564 ../../mod/crepair.php:186 -#: ../../mod/events.php:478 ../../mod/content.php:710 -#: ../../mod/install.php:248 ../../mod/install.php:286 ../../mod/mood.php:137 -#: ../../mod/profiles.php:686 ../../mod/localtime.php:45 -#: ../../mod/poke.php:199 ../../mod/invite.php:140 ../../mod/photos.php:1084 -#: ../../mod/photos.php:1203 ../../mod/photos.php:1514 -#: ../../mod/photos.php:1565 ../../mod/photos.php:1609 -#: ../../mod/photos.php:1697 ../../object/Item.php:678 -#: ../../view/theme/cleanzero/config.php:80 -#: ../../view/theme/dispy/config.php:70 ../../view/theme/quattro/config.php:64 -#: ../../view/theme/diabook/config.php:148 -#: ../../view/theme/diabook/theme.php:633 ../../view/theme/vier/config.php:53 -#: ../../view/theme/duepuntozero/config.php:59 -msgid "Submit" -msgstr "Senda inn" +#: include/enotify.php:161 +#, php-format +msgid "%s commented on an item/conversation you have been following." +msgstr "%s skrifaði athugasemd á færslu/samtal sem þú ert að fylgja." -#: ../../mod/contacts.php:476 -msgid "Profile Visibility" -msgstr "Forsíðu sjáanleiki" +#: 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 "Farðu á %s til að skoða og/eða svara samtali." -#: ../../mod/contacts.php:477 +#: include/enotify.php:171 +#, php-format +msgid "[Friendica:Notify] %s posted to your profile wall" +msgstr "" + +#: include/enotify.php:173 +#, php-format +msgid "%1$s posted to your profile wall at %2$s" +msgstr "" + +#: include/enotify.php:174 +#, php-format +msgid "%1$s posted to [url=%2$s]your wall[/url]" +msgstr "" + +#: include/enotify.php:185 +#, php-format +msgid "[Friendica:Notify] %s tagged you" +msgstr "" + +#: include/enotify.php:187 +#, php-format +msgid "%1$s tagged you at %2$s" +msgstr "" + +#: include/enotify.php:188 +#, php-format +msgid "%1$s [url=%2$s]tagged you[/url]." +msgstr "" + +#: include/enotify.php:199 +#, php-format +msgid "[Friendica:Notify] %s shared a new post" +msgstr "" + +#: include/enotify.php:201 +#, php-format +msgid "%1$s shared a new post at %2$s" +msgstr "" + +#: include/enotify.php:202 +#, php-format +msgid "%1$s [url=%2$s]shared a post[/url]." +msgstr "" + +#: include/enotify.php:213 +#, php-format +msgid "[Friendica:Notify] %1$s poked you" +msgstr "[Friendica:Notify] %1$s potaði í þig" + +#: include/enotify.php:215 +#, php-format +msgid "%1$s poked you at %2$s" +msgstr "%1$s potaði í þig %2$s" + +#: include/enotify.php:216 +#, php-format +msgid "%1$s [url=%2$s]poked you[/url]." +msgstr "" + +#: include/enotify.php:231 +#, php-format +msgid "[Friendica:Notify] %s tagged your post" +msgstr "" + +#: include/enotify.php:233 +#, php-format +msgid "%1$s tagged your post at %2$s" +msgstr "" + +#: include/enotify.php:234 +#, php-format +msgid "%1$s tagged [url=%2$s]your post[/url]" +msgstr "" + +#: include/enotify.php:245 +msgid "[Friendica:Notify] Introduction received" +msgstr "" + +#: include/enotify.php:247 +#, php-format +msgid "You've received an introduction from '%1$s' at %2$s" +msgstr "" + +#: include/enotify.php:248 +#, php-format +msgid "You've received [url=%1$s]an introduction[/url] from %2$s." +msgstr "" + +#: include/enotify.php:252 include/enotify.php:295 +#, php-format +msgid "You may visit their profile at %s" +msgstr "Þú getur heimsótt síðuna þeirra á %s" + +#: include/enotify.php:254 +#, php-format +msgid "Please visit %s to approve or reject the introduction." +msgstr "Farðu á %s til að samþykkja eða hunsa þessa kynningu." + +#: include/enotify.php:262 +msgid "[Friendica:Notify] A new person is sharing with you" +msgstr "" + +#: include/enotify.php:264 include/enotify.php:265 +#, php-format +msgid "%1$s is sharing with you at %2$s" +msgstr "" + +#: include/enotify.php:271 +msgid "[Friendica:Notify] You have a new follower" +msgstr "" + +#: include/enotify.php:273 include/enotify.php:274 +#, php-format +msgid "You have a new follower at %2$s : %1$s" +msgstr "" + +#: include/enotify.php:285 +msgid "[Friendica:Notify] Friend suggestion received" +msgstr "" + +#: include/enotify.php:287 +#, php-format +msgid "You've received a friend suggestion from '%1$s' at %2$s" +msgstr "" + +#: include/enotify.php:288 #, php-format msgid "" -"Please choose the profile you would like to display to %s when viewing your " -"profile securely." -msgstr "Veldu forsíðu sem á að birtast %s þegar hann skoðaður með öruggum hætti" +"You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s." +msgstr "" -#: ../../mod/contacts.php:478 -msgid "Contact Information / Notes" -msgstr "Uppl. um tengilið / minnisatriði" +#: include/enotify.php:293 +msgid "Name:" +msgstr "Nafn:" -#: ../../mod/contacts.php:479 -msgid "Edit contact notes" -msgstr "Breyta minnispunktum tengiliðs " +#: include/enotify.php:294 +msgid "Photo:" +msgstr "Mynd:" -#: ../../mod/contacts.php:484 ../../mod/contacts.php:679 -#: ../../mod/viewcontacts.php:64 ../../mod/nogroup.php:40 +#: include/enotify.php:297 #, php-format -msgid "Visit %s's profile [%s]" -msgstr "Heimsækja forsíðu %s [%s]" +msgid "Please visit %s to approve or reject the suggestion." +msgstr "Farðu á %s til að samþykkja eða hunsa þessa uppástungu." -#: ../../mod/contacts.php:485 -msgid "Block/Unblock contact" -msgstr "útiloka/opna á tengilið" +#: include/enotify.php:305 include/enotify.php:319 +msgid "[Friendica:Notify] Connection accepted" +msgstr "[Friendica:Notify] Tenging samþykkt" -#: ../../mod/contacts.php:486 -msgid "Ignore contact" -msgstr "Hunsa tengilið" - -#: ../../mod/contacts.php:487 -msgid "Repair URL settings" -msgstr "Gera við slóð stillingar" - -#: ../../mod/contacts.php:488 -msgid "View conversations" -msgstr "Skoða samtöl" - -#: ../../mod/contacts.php:490 -msgid "Delete contact" -msgstr "Eyða tengilið" - -#: ../../mod/contacts.php:494 -msgid "Last update:" -msgstr "Síðasta uppfærsla:" - -#: ../../mod/contacts.php:496 -msgid "Update public posts" -msgstr "Uppfæra opinberar færslur" - -#: ../../mod/contacts.php:498 ../../mod/admin.php:1503 -msgid "Update now" -msgstr "Uppfæra núna" - -#: ../../mod/contacts.php:505 -msgid "Currently blocked" -msgstr "Útilokaður sem stendur" - -#: ../../mod/contacts.php:506 -msgid "Currently ignored" -msgstr "Hunsaður sem stendur" - -#: ../../mod/contacts.php:507 -msgid "Currently archived" -msgstr "Í geymslu" - -#: ../../mod/contacts.php:508 ../../mod/notifications.php:157 -#: ../../mod/notifications.php:204 -msgid "Hide this contact from others" -msgstr "Gera þennan notanda ósýnilegan öðrum" - -#: ../../mod/contacts.php:508 -msgid "" -"Replies/likes to your public posts may still be visible" -msgstr "Svör/\"likar við\" á þínar opinberar færslur geta mögulega verið sýnileg öðrum" - -#: ../../mod/contacts.php:509 -msgid "Notification for new posts" -msgstr "" - -#: ../../mod/contacts.php:509 -msgid "Send a notification of every new post of this contact" -msgstr "" - -#: ../../mod/contacts.php:510 -msgid "Fetch further information for feeds" -msgstr "" - -#: ../../mod/contacts.php:511 -msgid "Disabled" -msgstr "" - -#: ../../mod/contacts.php:511 -msgid "Fetch information" -msgstr "" - -#: ../../mod/contacts.php:511 -msgid "Fetch information and keywords" -msgstr "" - -#: ../../mod/contacts.php:513 -msgid "Blacklisted keywords" -msgstr "" - -#: ../../mod/contacts.php:513 -msgid "" -"Comma separated list of keywords that should not be converted to hashtags, " -"when \"Fetch information and keywords\" is selected" -msgstr "" - -#: ../../mod/contacts.php:564 -msgid "Suggestions" -msgstr "Uppástungur" - -#: ../../mod/contacts.php:567 -msgid "Suggest potential friends" -msgstr "" - -#: ../../mod/contacts.php:570 ../../mod/group.php:194 -msgid "All Contacts" -msgstr "Allir tengiliðir" - -#: ../../mod/contacts.php:573 -msgid "Show all contacts" -msgstr "Sýna alla tengiliði" - -#: ../../mod/contacts.php:576 -msgid "Unblocked" -msgstr "Afhunsað" - -#: ../../mod/contacts.php:579 -msgid "Only show unblocked contacts" -msgstr "" - -#: ../../mod/contacts.php:583 -msgid "Blocked" -msgstr "Banna" - -#: ../../mod/contacts.php:586 -msgid "Only show blocked contacts" -msgstr "" - -#: ../../mod/contacts.php:590 -msgid "Ignored" -msgstr "Hunsa" - -#: ../../mod/contacts.php:593 -msgid "Only show ignored contacts" -msgstr "" - -#: ../../mod/contacts.php:597 -msgid "Archived" -msgstr "Í geymslu" - -#: ../../mod/contacts.php:600 -msgid "Only show archived contacts" -msgstr "Aðeins sýna geymda tengiliði" - -#: ../../mod/contacts.php:604 -msgid "Hidden" -msgstr "Falinn" - -#: ../../mod/contacts.php:607 -msgid "Only show hidden contacts" -msgstr "Aðeins sýna falda tengiliði" - -#: ../../mod/contacts.php:655 -msgid "Mutual Friendship" -msgstr "Sameiginlegur vinskapur" - -#: ../../mod/contacts.php:659 -msgid "is a fan of yours" -msgstr "er aðdáandi þinn" - -#: ../../mod/contacts.php:663 -msgid "you are a fan of" -msgstr "þú er aðdáandi" - -#: ../../mod/contacts.php:680 ../../mod/nogroup.php:41 -msgid "Edit contact" -msgstr "Breyta tengilið" - -#: ../../mod/contacts.php:702 ../../include/nav.php:177 -#: ../../view/theme/diabook/theme.php:125 -msgid "Contacts" -msgstr "Tengiliðir" - -#: ../../mod/contacts.php:706 -msgid "Search your contacts" -msgstr "Leita í þínum vinum" - -#: ../../mod/contacts.php:707 ../../mod/directory.php:61 -msgid "Finding: " -msgstr "Niðurstöður:" - -#: ../../mod/contacts.php:708 ../../mod/directory.php:63 -#: ../../include/contact_widgets.php:34 -msgid "Find" -msgstr "Finna" - -#: ../../mod/contacts.php:713 ../../mod/settings.php:132 -#: ../../mod/settings.php:640 -msgid "Update" -msgstr "Uppfæra" - -#: ../../mod/contacts.php:717 ../../mod/group.php:171 ../../mod/admin.php:1007 -#: ../../mod/content.php:438 ../../mod/content.php:741 -#: ../../mod/settings.php:677 ../../mod/photos.php:1654 -#: ../../object/Item.php:130 ../../include/conversation.php:614 -msgid "Delete" -msgstr "Eyða" - -#: ../../mod/hcard.php:10 -msgid "No profile" -msgstr "Engin forsíða" - -#: ../../mod/manage.php:106 -msgid "Manage Identities and/or Pages" -msgstr "Sýsla með notendur og/eða síður" - -#: ../../mod/manage.php:107 -msgid "" -"Toggle between different identities or community/group pages which share " -"your account details or which you have been granted \"manage\" permissions" -msgstr "Skipta á milli auðkenna eða hópa- / stjörnunotanda sem deila þínum aðgangs upplýsingum eða þér verið úthlutað \"umsýslu\" réttindum." - -#: ../../mod/manage.php:108 -msgid "Select an identity to manage: " -msgstr "Veldu notanda til að sýsla með:" - -#: ../../mod/oexchange.php:25 -msgid "Post successful." -msgstr "Melding tókst." - -#: ../../mod/profperm.php:19 ../../mod/group.php:72 ../../index.php:368 -msgid "Permission denied" -msgstr "Bannaður aðgangur" - -#: ../../mod/profperm.php:25 ../../mod/profperm.php:55 -msgid "Invalid profile identifier." -msgstr "Ógilt tengiliða auðkenni" - -#: ../../mod/profperm.php:101 -msgid "Profile Visibility Editor" -msgstr "Sýsla með sjáanleika forsíðu" - -#: ../../mod/profperm.php:103 ../../mod/newmember.php:32 ../../boot.php:2119 -#: ../../include/profile_advanced.php:7 ../../include/profile_advanced.php:87 -#: ../../include/nav.php:77 ../../view/theme/diabook/theme.php:124 -msgid "Profile" -msgstr "Forsíða" - -#: ../../mod/profperm.php:105 ../../mod/group.php:224 -msgid "Click on a contact to add or remove." -msgstr "Ýttu á tengili til að bæta við hóp eða taka úr hóp." - -#: ../../mod/profperm.php:114 -msgid "Visible To" -msgstr "Sjáanlegur hverjum" - -#: ../../mod/profperm.php:130 -msgid "All Contacts (with secure profile access)" -msgstr "Allir tengiliðir (með öruggann aðgang að forsíðu)" - -#: ../../mod/display.php:82 ../../mod/display.php:284 -#: ../../mod/display.php:503 ../../mod/viewsrc.php:15 ../../mod/admin.php:169 -#: ../../mod/admin.php:1052 ../../mod/admin.php:1265 ../../mod/notice.php:15 -#: ../../include/items.php:4516 -msgid "Item not found." -msgstr "Atriði fannst ekki." - -#: ../../mod/display.php:212 ../../mod/videos.php:115 -#: ../../mod/viewcontacts.php:19 ../../mod/community.php:18 -#: ../../mod/dfrn_request.php:762 ../../mod/search.php:89 -#: ../../mod/directory.php:33 ../../mod/photos.php:920 -msgid "Public access denied." -msgstr "Alemennings aðgangur ekki veittur." - -#: ../../mod/display.php:332 ../../mod/profile.php:155 -msgid "Access to this profile has been restricted." -msgstr "Aðgangur að þessari forsíðu hefur verið heftur." - -#: ../../mod/display.php:496 -msgid "Item has been removed." -msgstr "Atriði hefur verið fjarlægt." - -#: ../../mod/newmember.php:6 -msgid "Welcome to Friendica" -msgstr "Velkomin(n) á Friendica" - -#: ../../mod/newmember.php:8 -msgid "New Member Checklist" -msgstr "Nýr notandi verklisti" - -#: ../../mod/newmember.php:12 -msgid "" -"We would like to offer some tips and links to help make your experience " -"enjoyable. Click any item to visit the relevant page. A link to this page " -"will be visible from your home page for two weeks after your initial " -"registration and then will quietly disappear." -msgstr "" - -#: ../../mod/newmember.php:14 -msgid "Getting Started" -msgstr "" - -#: ../../mod/newmember.php:18 -msgid "Friendica Walk-Through" -msgstr "" - -#: ../../mod/newmember.php:18 -msgid "" -"On your Quick Start page - find a brief introduction to your " -"profile and network tabs, make some new connections, and find some groups to" -" join." -msgstr "" - -#: ../../mod/newmember.php:22 ../../mod/admin.php:1104 -#: ../../mod/admin.php:1325 ../../mod/settings.php:85 -#: ../../include/nav.php:172 ../../view/theme/diabook/theme.php:544 -#: ../../view/theme/diabook/theme.php:648 -msgid "Settings" -msgstr "Stillingar" - -#: ../../mod/newmember.php:26 -msgid "Go to Your Settings" -msgstr "" - -#: ../../mod/newmember.php:26 -msgid "" -"On your Settings page - change your initial password. Also make a " -"note of your Identity Address. This looks just like an email address - and " -"will be useful in making friends on the free social web." -msgstr "" - -#: ../../mod/newmember.php:28 -msgid "" -"Review the other settings, particularly the privacy settings. An unpublished" -" directory listing is like having an unlisted phone number. In general, you " -"should probably publish your listing - unless all of your friends and " -"potential friends know exactly how to find you." -msgstr "Yfirfarðu aðrar stillingar, sérstaklega næðis stillingar. Óútgefin forsíða er einsog óskráð símanúmer. Sem þýðir að líklega viltu gefa út forsíðuna þína - nema allir vinir þínir og tilvonandi vinir vita nákvæmlega hvernig á að finna þig." - -#: ../../mod/newmember.php:36 ../../mod/profile_photo.php:244 -#: ../../mod/profiles.php:699 -msgid "Upload Profile Photo" -msgstr "Hlaða upp forsíðu mynd" - -#: ../../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 "Að hlaða upp forsíðu mynd ef þú hefur ekki þegar gert það. Rannsóknir sýna að fólk sem hefur alvöru mynd af sér er tíu sinnum líklegra til að eignast vini en fólk sem ekki hefur mynd." - -#: ../../mod/newmember.php:38 -msgid "Edit Your Profile" -msgstr "" - -#: ../../mod/newmember.php:38 -msgid "" -"Edit your default profile to your liking. Review the " -"settings for hiding your list of friends and hiding the profile from unknown" -" visitors." -msgstr "Breyttu sjálfgefnu forsíðunni einsog þú villt. Yfirfarðu stillingu til að fela vinalista á forsíðu og stillingu til að fela forsíðu fyrir ókunnum." - -#: ../../mod/newmember.php:40 -msgid "Profile Keywords" -msgstr "" - -#: ../../mod/newmember.php:40 -msgid "" -"Set some public keywords for your default profile which describe your " -"interests. We may be able to find other people with similar interests and " -"suggest friendships." -msgstr "Bættu við leitarorðum í sjálfgefnu forsíðuna þína sem lýsa þínum áhugamálum. Þá er hægt að fólk með svipuð áhugamál og stinga uppá vinskap." - -#: ../../mod/newmember.php:44 -msgid "Connecting" -msgstr "Tengist" - -#: ../../mod/newmember.php:49 ../../mod/newmember.php:51 -#: ../../include/contact_selectors.php:81 -msgid "Facebook" -msgstr "Facebook" - -#: ../../mod/newmember.php:49 -msgid "" -"Authorise the Facebook Connector if you currently have a Facebook account " -"and we will (optionally) import all your Facebook friends and conversations." -msgstr "Gefðu aðgang að Facebook tengingunni ef þú þegar hefur Facebook aðgang og þá er hægt (valfrjálst) að nálgast alla vini og samtöl á Facebook." - -#: ../../mod/newmember.php:51 -msgid "" -"If this is your own personal server, installing the Facebook addon " -"may ease your transition to the free social web." -msgstr "" - -#: ../../mod/newmember.php:56 -msgid "Importing Emails" -msgstr "" - -#: ../../mod/newmember.php:56 -msgid "" -"Enter your email access information on your Connector Settings page if you " -"wish to import and interact with friends or mailing lists from your email " -"INBOX" -msgstr "Fylltu út póstfangs tengi upplýsingar í Tengla stillinga síðuna ef þú villt sækja tölvupóst og eiga samskipti við vini eða póstlista úr tölvupóst innhólfinu þínu" - -#: ../../mod/newmember.php:58 -msgid "Go to Your Contacts Page" -msgstr "" - -#: ../../mod/newmember.php:58 -msgid "" -"Your Contacts page is your gateway to managing friendships and connecting " -"with friends on other networks. Typically you enter their address or site " -"URL in the Add New Contact dialog." -msgstr "Tengiliða síðan er gáttin þín til að sýsla með vina sambönd og tengjast við vini á öðrum netum. Oftast setur þú vistfangi eða slóð þeirra í Bæta við tengilið gluggan." - -#: ../../mod/newmember.php:60 -msgid "Go to Your Site's Directory" -msgstr "" - -#: ../../mod/newmember.php:60 -msgid "" -"The Directory page lets you find other people in this network or other " -"federated sites. Look for a Connect or Follow link on " -"their profile page. Provide your own Identity Address if requested." -msgstr "Tengiliðalistinn er góð leit til að finna fólk á samfélagsnetinu eða öðrum sambandsnetum. Leitaðu að Connect eða Follow hlekk á forsíðunni þeirra. Mögulega þarf að gefa upp þína auðkenna slóð." - -#: ../../mod/newmember.php:62 -msgid "Finding New People" -msgstr "" - -#: ../../mod/newmember.php:62 -msgid "" -"On the side panel of the Contacts page are several tools to find new " -"friends. We can match people by interest, look up people by name or " -"interest, and provide suggestions based on network relationships. On a brand" -" new site, friend suggestions will usually begin to be populated within 24 " -"hours." -msgstr "" - -#: ../../mod/newmember.php:66 ../../include/group.php:270 -msgid "Groups" -msgstr "Hópar" - -#: ../../mod/newmember.php:70 -msgid "Group Your Contacts" -msgstr "" - -#: ../../mod/newmember.php:70 -msgid "" -"Once you have made some friends, organize them into private conversation " -"groups from the sidebar of your Contacts page and then you can interact with" -" each group privately on your Network page." -msgstr "Eftir að þú hefur eignast nokkra vini, þá er best að flokka þá niður í hópa á hliðar slánni á Tengiliðasíðunni. Eftir það getur þú haft samskipti við hvern hóp fyrir sig á Samfélagssíðunni." - -#: ../../mod/newmember.php:73 -msgid "Why Aren't My Posts Public?" -msgstr "" - -#: ../../mod/newmember.php:73 -msgid "" -"Friendica respects your privacy. By default, your posts will only show up to" -" people you've added as friends. For more information, see the help section " -"from the link above." -msgstr "" - -#: ../../mod/newmember.php:78 -msgid "Getting Help" -msgstr "" - -#: ../../mod/newmember.php:82 -msgid "Go to the Help Section" -msgstr "" - -#: ../../mod/newmember.php:82 -msgid "" -"Our help pages may be consulted for detail on other program" -" features and resources." -msgstr "Hægt er að styðjast við Hjálp síðuna til að fá leiðbeiningar um aðra eiginleika." - -#: ../../mod/openid.php:24 -msgid "OpenID protocol error. No ID returned." -msgstr "" - -#: ../../mod/openid.php:53 -msgid "" -"Account not found and OpenID registration is not permitted on this site." -msgstr "" - -#: ../../mod/openid.php:93 ../../include/auth.php:112 -#: ../../include/auth.php:175 -msgid "Login failed." -msgstr "Innskráning mistókst." - -#: ../../mod/profile_photo.php:44 -msgid "Image uploaded but image cropping failed." -msgstr "Tókst að hala upp mynd en afskurður tókst ekki." - -#: ../../mod/profile_photo.php:74 ../../mod/profile_photo.php:81 -#: ../../mod/profile_photo.php:88 ../../mod/profile_photo.php:204 -#: ../../mod/profile_photo.php:296 ../../mod/profile_photo.php:305 -#: ../../mod/photos.php:155 ../../mod/photos.php:731 ../../mod/photos.php:1187 -#: ../../mod/photos.php:1210 ../../include/user.php:335 -#: ../../include/user.php:342 ../../include/user.php:349 -#: ../../view/theme/diabook/theme.php:500 -msgid "Profile Photos" -msgstr "Forsíðu myndir" - -#: ../../mod/profile_photo.php:77 ../../mod/profile_photo.php:84 -#: ../../mod/profile_photo.php:91 ../../mod/profile_photo.php:308 +#: include/enotify.php:307 include/enotify.php:321 #, php-format -msgid "Image size reduction [%s] failed." -msgstr "Myndar minnkun [%s] tókst ekki." - -#: ../../mod/profile_photo.php:118 -msgid "" -"Shift-reload the page or clear browser cache if the new photo does not " -"display immediately." -msgstr "Ýta þarf á " - -#: ../../mod/profile_photo.php:128 -msgid "Unable to process image" -msgstr "Ekki tókst að vinna mynd" - -#: ../../mod/profile_photo.php:144 ../../mod/wall_upload.php:122 -#, php-format -msgid "Image exceeds size limit of %d" -msgstr "Mynd stærri en takmörkunin %d" - -#: ../../mod/profile_photo.php:153 ../../mod/wall_upload.php:144 -#: ../../mod/photos.php:807 -msgid "Unable to process image." -msgstr "Ekki mögulegt afgreiða mynd" - -#: ../../mod/profile_photo.php:242 -msgid "Upload File:" -msgstr "Hlaða upp skrá:" - -#: ../../mod/profile_photo.php:243 -msgid "Select a profile:" +msgid "'%1$s' has accepted your connection request at %2$s" msgstr "" -#: ../../mod/profile_photo.php:245 -msgid "Upload" -msgstr "Hlaða upp" +#: include/enotify.php:308 include/enotify.php:322 +#, php-format +msgid "%2$s has accepted your [url=%1$s]connection request[/url]." +msgstr "" -#: ../../mod/profile_photo.php:248 ../../mod/settings.php:1062 -msgid "or" -msgstr "eða" +#: include/enotify.php:312 +msgid "" +"You are now mutual friends and may exchange status updates, photos, and " +"email without restriction." +msgstr "" -#: ../../mod/profile_photo.php:248 -msgid "skip this step" -msgstr "sleppa þessu skrefi" +#: include/enotify.php:314 +#, php-format +msgid "Please visit %s if you wish to make any changes to this relationship." +msgstr "" -#: ../../mod/profile_photo.php:248 -msgid "select a photo from your photo albums" -msgstr "velja mynd í myndabókum" +#: 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 "" -#: ../../mod/profile_photo.php:262 -msgid "Crop Image" -msgstr "Skera af mynd" +#: 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 "" -#: ../../mod/profile_photo.php:263 -msgid "Please adjust the image cropping for optimum viewing." -msgstr "Stilltu afskurð fyrir besta birtingu." +#: include/enotify.php:330 +#, php-format +msgid "Please visit %s if you wish to make any changes to this relationship." +msgstr "" -#: ../../mod/profile_photo.php:265 -msgid "Done Editing" -msgstr "Breyting kláruð" +#: include/enotify.php:340 +msgid "[Friendica System:Notify] registration request" +msgstr "[Friendica System:Notify] beiðni um skráningu" -#: ../../mod/profile_photo.php:299 -msgid "Image uploaded successfully." -msgstr "Upphölun á mynd tóks." +#: include/enotify.php:342 +#, php-format +msgid "You've received a registration request from '%1$s' at %2$s" +msgstr "" -#: ../../mod/profile_photo.php:301 ../../mod/wall_upload.php:172 -#: ../../mod/photos.php:834 -msgid "Image upload failed." -msgstr "Ekki hægt að hlaða upp mynd." +#: include/enotify.php:343 +#, php-format +msgid "You've received a [url=%1$s]registration request[/url] from %2$s." +msgstr "" -#: ../../mod/subthread.php:87 ../../mod/tagger.php:62 ../../mod/like.php:149 -#: ../../include/conversation.php:126 ../../include/conversation.php:254 -#: ../../include/text.php:1968 ../../include/diaspora.php:2087 -#: ../../view/theme/diabook/theme.php:471 -msgid "photo" -msgstr "mynd" +#: 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 "" -#: ../../mod/subthread.php:87 ../../mod/tagger.php:62 ../../mod/like.php:149 -#: ../../mod/like.php:319 ../../include/conversation.php:121 -#: ../../include/conversation.php:130 ../../include/conversation.php:249 -#: ../../include/conversation.php:258 ../../include/diaspora.php:2087 -#: ../../view/theme/diabook/theme.php:466 -#: ../../view/theme/diabook/theme.php:475 +#: include/enotify.php:350 +#, php-format +msgid "Please visit %s to approve or reject the request." +msgstr "Farðu á %s til að samþykkja eða hunsa þessa beiðni." + +#: include/plugin.php:522 include/plugin.php:524 +msgid "Click here to upgrade." +msgstr "Smelltu hér til að uppfæra." + +#: include/plugin.php:530 +msgid "This action exceeds the limits set by your subscription plan." +msgstr "" + +#: include/plugin.php:535 +msgid "This action is not available under your subscription plan." +msgstr "" + +#: include/ForumManager.php:114 include/text.php:998 include/nav.php:130 +#: view/theme/vier/theme.php:255 +msgid "Forums" +msgstr "Spjallsvæði" + +#: include/ForumManager.php:116 view/theme/vier/theme.php:257 +msgid "External link to forum" +msgstr "Ytri tengill á spjallsvæði" + +#: include/diaspora.php:1379 include/conversation.php:141 include/like.php:182 +#: view/theme/diabook/theme.php:480 +#, php-format +msgid "%1$s likes %2$s's %3$s" +msgstr "%1$s líkar við %3$s hjá %2$s " + +#: include/diaspora.php:1383 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 view/theme/diabook/theme.php:466 +#: view/theme/diabook/theme.php:475 msgid "status" msgstr "staða" -#: ../../mod/subthread.php:103 +#: include/diaspora.php:1909 +msgid "Sharing notification from Diaspora network" +msgstr "Tilkynning um að einhver deildi atriði á Diaspora netinu" + +#: include/diaspora.php:2801 +msgid "Attachments:" +msgstr "Viðhengi:" + +#: include/dfrn.php:1110 #, php-format -msgid "%1$s is following %2$s's %3$s" +msgid "%s\\'s birthday" +msgstr "Afmælisdagur %s" + +#: include/uimport.php:94 +msgid "Error decoding account file" msgstr "" -#: ../../mod/tagrm.php:41 -msgid "Tag removed" -msgstr "Merki fjarlægt" - -#: ../../mod/tagrm.php:79 -msgid "Remove Item Tag" -msgstr "Fjarlægja merki " - -#: ../../mod/tagrm.php:81 -msgid "Select a tag to remove: " -msgstr "Veldu merki til að fjarlægja:" - -#: ../../mod/tagrm.php:93 ../../mod/delegate.php:139 -msgid "Remove" -msgstr "Fjarlægja" - -#: ../../mod/filer.php:30 ../../include/conversation.php:1006 -#: ../../include/conversation.php:1024 -msgid "Save to Folder:" +#: include/uimport.php:100 +msgid "Error! No version data in file! This is not a Friendica account file?" msgstr "" -#: ../../mod/filer.php:30 -msgid "- select -" +#: include/uimport.php:116 include/uimport.php:127 +msgid "Error! Cannot check nickname" msgstr "" -#: ../../mod/filer.php:31 ../../mod/editpost.php:109 ../../mod/notes.php:63 -#: ../../include/text.php:956 -msgid "Save" -msgstr "Vista" - -#: ../../mod/follow.php:27 -msgid "Contact added" -msgstr "Tengilið bætt við" - -#: ../../mod/item.php:113 -msgid "Unable to locate original post." -msgstr "Ekki tókst að finna upphaflega færslu." - -#: ../../mod/item.php:345 -msgid "Empty post discarded." -msgstr "Tóm færsla eytt." - -#: ../../mod/item.php:484 ../../mod/wall_upload.php:169 -#: ../../mod/wall_upload.php:178 ../../mod/wall_upload.php:185 -#: ../../include/Photo.php:916 ../../include/Photo.php:931 -#: ../../include/Photo.php:938 ../../include/Photo.php:960 -#: ../../include/message.php:144 -msgid "Wall Photos" -msgstr "Veggmyndir" - -#: ../../mod/item.php:938 -msgid "System error. Post not saved." -msgstr "Kerfisvilla. Færsla ekki vistuð." - -#: ../../mod/item.php:964 +#: include/uimport.php:120 include/uimport.php:131 #, php-format -msgid "" -"This message was sent to you by %s, a member of the Friendica social " -"network." -msgstr "Skilaboðið sendi %s, notandi á Friendica samfélagsnetinu." - -#: ../../mod/item.php:966 -#, php-format -msgid "You may visit them online at %s" -msgstr "Þú getur heimsótt þau á netinu á %s" - -#: ../../mod/item.php:967 -msgid "" -"Please contact the sender by replying to this post if you do not wish to " -"receive these messages." -msgstr "Hafðu samband við sendanda með því að svara á þessari færslu ef þú villt ekki fá þessi skilaboð." - -#: ../../mod/item.php:971 -#, php-format -msgid "%s posted an update." -msgstr "%s hefur sent uppfærslu." - -#: ../../mod/group.php:29 -msgid "Group created." -msgstr "Hópur stofnaður" - -#: ../../mod/group.php:35 -msgid "Could not create group." -msgstr "Gat ekki stofnað hóp." - -#: ../../mod/group.php:47 ../../mod/group.php:140 -msgid "Group not found." -msgstr "Hópur fannst ekki." - -#: ../../mod/group.php:60 -msgid "Group name changed." -msgstr "Hópur endurskýrður." - -#: ../../mod/group.php:87 -msgid "Save Group" +msgid "User '%s' already exists on this server!" msgstr "" -#: ../../mod/group.php:93 -msgid "Create a group of contacts/friends." -msgstr "Stofna hóp af tengiliðum/vinum" - -#: ../../mod/group.php:94 ../../mod/group.php:180 -msgid "Group Name: " -msgstr "Nafn hóps:" - -#: ../../mod/group.php:113 -msgid "Group removed." -msgstr "Hópi eytt." - -#: ../../mod/group.php:115 -msgid "Unable to remove group." -msgstr "Ekki tókst að eyða hóp." - -#: ../../mod/group.php:179 -msgid "Group Editor" -msgstr "Hópa sýslari" - -#: ../../mod/group.php:192 -msgid "Members" -msgstr "Aðilar" - -#: ../../mod/apps.php:7 ../../index.php:212 -msgid "You must be logged in to use addons. " +#: include/uimport.php:153 +msgid "User creation error" msgstr "" -#: ../../mod/apps.php:11 -msgid "Applications" -msgstr "Forrit" - -#: ../../mod/apps.php:14 -msgid "No installed applications." -msgstr "Engin uppsett forrit" - -#: ../../mod/dfrn_confirm.php:64 ../../mod/profiles.php:18 -#: ../../mod/profiles.php:133 ../../mod/profiles.php:179 -#: ../../mod/profiles.php:630 -msgid "Profile not found." -msgstr "Forsíða fannst ekki." - -#: ../../mod/dfrn_confirm.php:120 ../../mod/fsuggest.php:20 -#: ../../mod/fsuggest.php:92 ../../mod/crepair.php:133 -msgid "Contact not found." -msgstr "Tengiliður fannst ekki." - -#: ../../mod/dfrn_confirm.php:121 -msgid "" -"This may occasionally happen if contact was requested by both persons and it" -" has already been approved." +#: include/uimport.php:173 +msgid "User profile creation error" msgstr "" -#: ../../mod/dfrn_confirm.php:240 -msgid "Response from remote site was not understood." -msgstr "Ekki tókst að skilja svar frá ytri vef." - -#: ../../mod/dfrn_confirm.php:249 ../../mod/dfrn_confirm.php:254 -msgid "Unexpected response from remote site: " -msgstr "Óskiljanlegt svar frá ytri vef:" - -#: ../../mod/dfrn_confirm.php:263 -msgid "Confirmation completed successfully." -msgstr "Staðfesting kláraði eðlilega." - -#: ../../mod/dfrn_confirm.php:265 ../../mod/dfrn_confirm.php:279 -#: ../../mod/dfrn_confirm.php:286 -msgid "Remote site reported: " -msgstr "Ytri vefur svaraði:" - -#: ../../mod/dfrn_confirm.php:277 -msgid "Temporary failure. Please wait and try again." -msgstr "Tímabundin villa. Vinsamlegast bíddu og reyndur aftur síðar." - -#: ../../mod/dfrn_confirm.php:284 -msgid "Introduction failed or was revoked." -msgstr "Kynning mistókst eða var afturkölluð." - -#: ../../mod/dfrn_confirm.php:429 -msgid "Unable to set contact photo." -msgstr "Ekki tókst að setja tengiliðamynd." - -#: ../../mod/dfrn_confirm.php:486 ../../include/conversation.php:172 -#: ../../include/diaspora.php:620 +#: include/uimport.php:222 #, php-format -msgid "%1$s is now friends with %2$s" -msgstr "Núna er %1$s vinur %2$s" - -#: ../../mod/dfrn_confirm.php:571 -#, php-format -msgid "No user record found for '%s' " -msgstr "Enginn notanda færsla fannst fyrir '%s'" - -#: ../../mod/dfrn_confirm.php:581 -msgid "Our site encryption key is apparently messed up." -msgstr "Dulkóðunnar lykill síðunnar okker er í döðlu." - -#: ../../mod/dfrn_confirm.php:592 -msgid "Empty site URL was provided or URL could not be decrypted by us." -msgstr "Tómt slóð var uppgefin eða ekki okkur tókst ekki að afkóða slóð." - -#: ../../mod/dfrn_confirm.php:613 -msgid "Contact record was not found for you on our site." -msgstr "Tengiliðafærslan þín fannst ekki á þjóninum okkar." - -#: ../../mod/dfrn_confirm.php:627 -#, php-format -msgid "Site public key not available in contact record for URL %s." -msgstr "Opinber lykill er ekki til í tengiliðafærslu fyrir slóð %s." - -#: ../../mod/dfrn_confirm.php:647 -msgid "" -"The ID provided by your system is a duplicate on our system. It should work " -"if you try again." -msgstr "Skilríkið sem þjónninn þinn gaf upp er þegar afritað á okkar þjón. Þetta ætti að virka ef þú bara reynir aftur." - -#: ../../mod/dfrn_confirm.php:658 -msgid "Unable to set your contact credentials on our system." -msgstr "Ekki tókst að setja tengiliða skilríkið þitt upp á þjóninum okkar." - -#: ../../mod/dfrn_confirm.php:725 -msgid "Unable to update your contact profile details on our system" -msgstr "Ekki tókst að uppfæra tengiliða skilríkis upplýsingarnar á okkar þjón" - -#: ../../mod/dfrn_confirm.php:752 ../../mod/dfrn_request.php:717 -#: ../../include/items.php:4008 -msgid "[Name Withheld]" -msgstr "[Nafn ekki sýnt]" - -#: ../../mod/dfrn_confirm.php:797 -#, php-format -msgid "%1$s has joined %2$s" -msgstr "%1$s hefur gengið til liðs við %2$s" - -#: ../../mod/profile.php:21 ../../boot.php:1458 -msgid "Requested profile is not available." -msgstr "Umbeðinn forsíða ekki til." - -#: ../../mod/profile.php:180 -msgid "Tips for New Members" -msgstr "Ábendingar fyrir nýja notendur" - -#: ../../mod/videos.php:125 -msgid "No videos selected" -msgstr "" - -#: ../../mod/videos.php:226 ../../mod/photos.php:1031 -msgid "Access to this item is restricted." -msgstr "Aðgangur að þessum hlut hefur verið heftur" - -#: ../../mod/videos.php:301 ../../include/text.php:1405 -msgid "View Video" -msgstr "" - -#: ../../mod/videos.php:308 ../../mod/photos.php:1808 -msgid "View Album" -msgstr "Skoða myndabók" - -#: ../../mod/videos.php:317 -msgid "Recent Videos" -msgstr "" - -#: ../../mod/videos.php:319 -msgid "Upload New Videos" -msgstr "" - -#: ../../mod/tagger.php:95 ../../include/conversation.php:266 -#, php-format -msgid "%1$s tagged %2$s's %3$s with %4$s" -msgstr "%1$s merkti %2$s's %3$s með %4$s" - -#: ../../mod/fsuggest.php:63 -msgid "Friend suggestion sent." -msgstr "Vina tillaga send" - -#: ../../mod/fsuggest.php:97 -msgid "Suggest Friends" -msgstr "Stinga uppá vinum" - -#: ../../mod/fsuggest.php:99 -#, php-format -msgid "Suggest a friend for %s" -msgstr "Stinga uppá vin fyrir %s" - -#: ../../mod/lostpass.php:19 -msgid "No valid account found." -msgstr "Engin gildur aðgangur fannst." - -#: ../../mod/lostpass.php:35 -msgid "Password reset request issued. Check your email." -msgstr "Breyta lykilorði. Opnaðu tölvupóstinn þinn." - -#: ../../mod/lostpass.php:42 -#, php-format -msgid "" -"\n" -"\t\tDear %1$s,\n" -"\t\t\tA request was recently received at \"%2$s\" to reset your account\n" -"\t\tpassword. In order to confirm this request, please select the verification link\n" -"\t\tbelow or paste it into your web browser address bar.\n" -"\n" -"\t\tIf you did NOT request this change, please DO NOT follow the link\n" -"\t\tprovided and ignore and/or delete this email.\n" -"\n" -"\t\tYour password will not be changed unless we can verify that you\n" -"\t\tissued this request." -msgstr "" - -#: ../../mod/lostpass.php:53 -#, php-format -msgid "" -"\n" -"\t\tFollow this link to verify your identity:\n" -"\n" -"\t\t%1$s\n" -"\n" -"\t\tYou will then receive a follow-up message containing the new password.\n" -"\t\tYou may change that password from your account settings page after logging in.\n" -"\n" -"\t\tThe login details are as follows:\n" -"\n" -"\t\tSite Location:\t%2$s\n" -"\t\tLogin Name:\t%3$s" -msgstr "" - -#: ../../mod/lostpass.php:72 -#, php-format -msgid "Password reset requested at %s" -msgstr "Endurstilling aðgangsorðs umbeðin %s" - -#: ../../mod/lostpass.php:92 -msgid "" -"Request could not be verified. (You may have previously submitted it.) " -"Password reset failed." -msgstr "Beiðni gat ekki verið sannreynd. (Það getur verið að þú hafir þegar sent hana.) Endurstilling á aðgangsorði tókst ekki." - -#: ../../mod/lostpass.php:109 ../../boot.php:1280 -msgid "Password Reset" -msgstr "Endurstilling Aðgangsorðs" - -#: ../../mod/lostpass.php:110 -msgid "Your password has been reset as requested." -msgstr "Aðgangsorðið þitt hefur verið endurstilt." - -#: ../../mod/lostpass.php:111 -msgid "Your new password is" -msgstr "Nýja aðgangsorð þitt er " - -#: ../../mod/lostpass.php:112 -msgid "Save or copy your new password - and then" -msgstr "Vistaðu eða afritaðu nýja aðgangsorðið og" - -#: ../../mod/lostpass.php:113 -msgid "click here to login" -msgstr "smelltu hér til að skrá þig inn" - -#: ../../mod/lostpass.php:114 -msgid "" -"Your password may be changed from the Settings page after " -"successful login." -msgstr "Þú getur breytt aðgangsorðinu þínu á Stillingar síðunni eftir að þú hefur skráð þig inn." - -#: ../../mod/lostpass.php:125 -#, php-format -msgid "" -"\n" -"\t\t\t\tDear %1$s,\n" -"\t\t\t\t\tYour password has been changed as requested. Please retain this\n" -"\t\t\t\tinformation for your records (or change your password immediately to\n" -"\t\t\t\tsomething that you will remember).\n" -"\t\t\t" -msgstr "" - -#: ../../mod/lostpass.php:131 -#, php-format -msgid "" -"\n" -"\t\t\t\tYour login details are as follows:\n" -"\n" -"\t\t\t\tSite Location:\t%1$s\n" -"\t\t\t\tLogin Name:\t%2$s\n" -"\t\t\t\tPassword:\t%3$s\n" -"\n" -"\t\t\t\tYou may change that password from your account settings page after logging in.\n" -"\t\t\t" -msgstr "" - -#: ../../mod/lostpass.php:147 -#, php-format -msgid "Your password has been changed at %s" -msgstr "Aðgangsorðinu þínu var breytt í %s" - -#: ../../mod/lostpass.php:159 -msgid "Forgot your Password?" -msgstr "Gleymdir þú lykilorði þínu?" - -#: ../../mod/lostpass.php:160 -msgid "" -"Enter your email address and submit to have your password reset. Then check " -"your email for further instructions." -msgstr "Sláðu inn tölvupóstfangið þitt til að endurstilla aðgangsorðið og fá leiðbeiningar sendar með tölvupósti." - -#: ../../mod/lostpass.php:161 -msgid "Nickname or Email: " -msgstr "Gælunafn eða póstfang:" - -#: ../../mod/lostpass.php:162 -msgid "Reset" -msgstr "Endursetja" - -#: ../../mod/like.php:166 ../../include/conversation.php:137 -#: ../../include/diaspora.php:2103 ../../view/theme/diabook/theme.php:480 -#, php-format -msgid "%1$s likes %2$s's %3$s" -msgstr "%1$s lýkar við %3$s hjá %2$s " - -#: ../../mod/like.php:168 ../../include/conversation.php:140 -#, php-format -msgid "%1$s doesn't like %2$s's %3$s" -msgstr "%1$s líkar ekki við %3$s hjá %2$s " - -#: ../../mod/ping.php:240 -msgid "{0} wants to be your friend" -msgstr "{0} vill vera vinur þinn" - -#: ../../mod/ping.php:245 -msgid "{0} sent you a message" -msgstr "{0} sendi þér skilboð" - -#: ../../mod/ping.php:250 -msgid "{0} requested registration" -msgstr "{0} óskaði eftir skráningu" - -#: ../../mod/ping.php:256 -#, php-format -msgid "{0} commented %s's post" -msgstr "{0} gerði athugasemd við %s's senda færslu" - -#: ../../mod/ping.php:261 -#, php-format -msgid "{0} liked %s's post" -msgstr "{0} líkaði við senda færslu %s's" - -#: ../../mod/ping.php:266 -#, php-format -msgid "{0} disliked %s's post" -msgstr "{0} líkaði ekki við senda færslu %s's" - -#: ../../mod/ping.php:271 -#, php-format -msgid "{0} is now friends with %s" -msgstr "{0} er nú vinur %s" - -#: ../../mod/ping.php:276 -msgid "{0} posted" -msgstr "{0} sendi færslu" - -#: ../../mod/ping.php:281 -#, php-format -msgid "{0} tagged %s's post with #%s" -msgstr "{0} merkti %s's færslu með #%s" - -#: ../../mod/ping.php:287 -msgid "{0} mentioned you in a post" -msgstr "{0} minntist á þig í færslu" - -#: ../../mod/viewcontacts.php:41 -msgid "No contacts." -msgstr "Enginn tengiliður" - -#: ../../mod/viewcontacts.php:78 ../../include/text.php:876 -msgid "View Contacts" -msgstr "Skoða tengiliði" - -#: ../../mod/notifications.php:26 -msgid "Invalid request identifier." -msgstr "Ógilt fyrirspurnar auðkenni" - -#: ../../mod/notifications.php:35 ../../mod/notifications.php:165 -#: ../../mod/notifications.php:211 -msgid "Discard" -msgstr "Henda" - -#: ../../mod/notifications.php:78 -msgid "System" -msgstr "Kerfi" - -#: ../../mod/notifications.php:83 ../../include/nav.php:145 -msgid "Network" -msgstr "Samfélag" - -#: ../../mod/notifications.php:88 ../../mod/network.php:371 -msgid "Personal" -msgstr "Einka" - -#: ../../mod/notifications.php:93 ../../include/nav.php:105 -#: ../../include/nav.php:148 ../../view/theme/diabook/theme.php:123 -msgid "Home" -msgstr "Heim" - -#: ../../mod/notifications.php:98 ../../include/nav.php:154 -msgid "Introductions" -msgstr "Kynningar" - -#: ../../mod/notifications.php:122 -msgid "Show Ignored Requests" -msgstr "Sýna hunsaðar fyrirspurnir" - -#: ../../mod/notifications.php:122 -msgid "Hide Ignored Requests" -msgstr "Fela hunsaðar beiðnir" - -#: ../../mod/notifications.php:149 ../../mod/notifications.php:195 -msgid "Notification type: " -msgstr "Skilaboða gerð:" - -#: ../../mod/notifications.php:150 -msgid "Friend Suggestion" -msgstr "Vina tillaga" - -#: ../../mod/notifications.php:152 -#, php-format -msgid "suggested by %s" -msgstr "stungið uppá af %s" - -#: ../../mod/notifications.php:158 ../../mod/notifications.php:205 -msgid "Post a new friend activity" -msgstr "Búa til færslu um " - -#: ../../mod/notifications.php:158 ../../mod/notifications.php:205 -msgid "if applicable" -msgstr "ef við á" - -#: ../../mod/notifications.php:161 ../../mod/notifications.php:208 -#: ../../mod/admin.php:1005 -msgid "Approve" -msgstr "Samþykkja" - -#: ../../mod/notifications.php:181 -msgid "Claims to be known to you: " -msgstr "Þykist þekkja þig:" - -#: ../../mod/notifications.php:181 -msgid "yes" -msgstr "já" - -#: ../../mod/notifications.php:181 -msgid "no" -msgstr "nei" - -#: ../../mod/notifications.php:188 -msgid "Approve as: " -msgstr "Samþykkja sem:" - -#: ../../mod/notifications.php:189 -msgid "Friend" -msgstr "Vin" - -#: ../../mod/notifications.php:190 -msgid "Sharer" -msgstr "Deilir" - -#: ../../mod/notifications.php:190 -msgid "Fan/Admirer" -msgstr "Aðdáanda" - -#: ../../mod/notifications.php:196 -msgid "Friend/Connect Request" -msgstr "Vina/Tengi beiðni" - -#: ../../mod/notifications.php:196 -msgid "New Follower" -msgstr "Nýr fylgjandi" - -#: ../../mod/notifications.php:217 -msgid "No introductions." -msgstr "Engar kynningar." - -#: ../../mod/notifications.php:220 ../../include/nav.php:155 -msgid "Notifications" -msgstr "Tilkynningar" - -#: ../../mod/notifications.php:258 ../../mod/notifications.php:387 -#: ../../mod/notifications.php:478 -#, php-format -msgid "%s liked %s's post" -msgstr "%s líkaði færslu %s" - -#: ../../mod/notifications.php:268 ../../mod/notifications.php:397 -#: ../../mod/notifications.php:488 -#, php-format -msgid "%s disliked %s's post" -msgstr "%s mislíkaði færslu %s" - -#: ../../mod/notifications.php:283 ../../mod/notifications.php:412 -#: ../../mod/notifications.php:503 -#, php-format -msgid "%s is now friends with %s" -msgstr "%s er nú vinur %s" - -#: ../../mod/notifications.php:290 ../../mod/notifications.php:419 -#, php-format -msgid "%s created a new post" -msgstr "%s bjó til færslu" - -#: ../../mod/notifications.php:291 ../../mod/notifications.php:420 -#: ../../mod/notifications.php:513 -#, php-format -msgid "%s commented on %s's post" -msgstr "%s athugasemd við %s's færslu" - -#: ../../mod/notifications.php:306 -msgid "No more network notifications." -msgstr "Engar tilkynningar á neti." - -#: ../../mod/notifications.php:310 -msgid "Network Notifications" -msgstr "Tilkynningar á neti" - -#: ../../mod/notifications.php:336 ../../mod/notify.php:75 -msgid "No more system notifications." -msgstr "Ekki fleiri kerfistilkynningar." - -#: ../../mod/notifications.php:340 ../../mod/notify.php:79 -msgid "System Notifications" -msgstr "Kerfistilkynningar" - -#: ../../mod/notifications.php:435 -msgid "No more personal notifications." -msgstr "Engar einka tilkynningar." - -#: ../../mod/notifications.php:439 -msgid "Personal Notifications" -msgstr "Einkatilkynningar." - -#: ../../mod/notifications.php:520 -msgid "No more home notifications." -msgstr "Ekki fleiri heima tilkynningar" - -#: ../../mod/notifications.php:524 -msgid "Home Notifications" -msgstr "Tilkynningar frá heimasvæði" - -#: ../../mod/babel.php:17 -msgid "Source (bbcode) text:" -msgstr "" - -#: ../../mod/babel.php:23 -msgid "Source (Diaspora) text to convert to BBcode:" -msgstr "" - -#: ../../mod/babel.php:31 -msgid "Source input: " -msgstr "" - -#: ../../mod/babel.php:35 -msgid "bb2html (raw HTML): " -msgstr "bb2html (hrátt HTML): " - -#: ../../mod/babel.php:39 -msgid "bb2html: " -msgstr "bb2html: " - -#: ../../mod/babel.php:43 -msgid "bb2html2bb: " -msgstr "bb2html2bb: " - -#: ../../mod/babel.php:47 -msgid "bb2md: " -msgstr "bb2md: " - -#: ../../mod/babel.php:51 -msgid "bb2md2html: " -msgstr "bb2md2html: " - -#: ../../mod/babel.php:55 -msgid "bb2dia2bb: " -msgstr "bb2dia2bb: " - -#: ../../mod/babel.php:59 -msgid "bb2md2html2bb: " -msgstr "bb2md2html2bb: " - -#: ../../mod/babel.php:69 -msgid "Source input (Diaspora format): " -msgstr "" - -#: ../../mod/babel.php:74 -msgid "diaspora2bb: " -msgstr "diaspora2bb: " - -#: ../../mod/navigation.php:20 ../../include/nav.php:34 -msgid "Nothing new here" -msgstr "Ekkert nýtt héðan" - -#: ../../mod/navigation.php:24 ../../include/nav.php:38 -msgid "Clear notifications" -msgstr "" - -#: ../../mod/message.php:9 ../../include/nav.php:164 -msgid "New Message" -msgstr "Ný skilaboð" - -#: ../../mod/message.php:63 ../../mod/wallmessage.php:56 -msgid "No recipient selected." -msgstr "Engir viðtakendur valdir." - -#: ../../mod/message.php:67 -msgid "Unable to locate contact information." -msgstr "Ekki tókst að staðsetja tengiliðs upplýsingar." - -#: ../../mod/message.php:70 ../../mod/wallmessage.php:62 -msgid "Message could not be sent." -msgstr "Ekki tókst að senda skilaboð." - -#: ../../mod/message.php:73 ../../mod/wallmessage.php:65 -msgid "Message collection failure." -msgstr "Ekki tókst að sækja skilaboð." - -#: ../../mod/message.php:76 ../../mod/wallmessage.php:68 -msgid "Message sent." -msgstr "Skilaboð send." - -#: ../../mod/message.php:182 ../../include/nav.php:161 -msgid "Messages" -msgstr "Skilaboð" - -#: ../../mod/message.php:207 -msgid "Do you really want to delete this message?" -msgstr "" - -#: ../../mod/message.php:227 -msgid "Message deleted." -msgstr "Skilaboðum eytt." - -#: ../../mod/message.php:258 -msgid "Conversation removed." -msgstr "Samtali eytt." - -#: ../../mod/message.php:283 ../../mod/message.php:291 -#: ../../mod/message.php:466 ../../mod/message.php:474 -#: ../../mod/wallmessage.php:127 ../../mod/wallmessage.php:135 -#: ../../include/conversation.php:1002 ../../include/conversation.php:1020 -msgid "Please enter a link URL:" -msgstr "Sláðu inn slóð:" - -#: ../../mod/message.php:319 ../../mod/wallmessage.php:142 -msgid "Send Private Message" -msgstr "Senda einkaskilaboð" - -#: ../../mod/message.php:320 ../../mod/message.php:553 -#: ../../mod/wallmessage.php:144 -msgid "To:" -msgstr "Til:" - -#: ../../mod/message.php:325 ../../mod/message.php:555 -#: ../../mod/wallmessage.php:145 -msgid "Subject:" -msgstr "Efni:" - -#: ../../mod/message.php:329 ../../mod/message.php:558 -#: ../../mod/wallmessage.php:151 ../../mod/invite.php:134 -msgid "Your message:" -msgstr "Skilaboðin:" - -#: ../../mod/message.php:332 ../../mod/message.php:562 -#: ../../mod/wallmessage.php:154 ../../mod/editpost.php:110 -#: ../../include/conversation.php:1091 -msgid "Upload photo" -msgstr "Hlaða upp mynd" - -#: ../../mod/message.php:333 ../../mod/message.php:563 -#: ../../mod/wallmessage.php:155 ../../mod/editpost.php:114 -#: ../../include/conversation.php:1095 -msgid "Insert web link" -msgstr "Setja inn vefslóð" - -#: ../../mod/message.php:334 ../../mod/message.php:565 -#: ../../mod/content.php:499 ../../mod/content.php:883 -#: ../../mod/wallmessage.php:156 ../../mod/editpost.php:124 -#: ../../mod/photos.php:1545 ../../object/Item.php:364 -#: ../../include/conversation.php:692 ../../include/conversation.php:1109 -msgid "Please wait" -msgstr "Vinsamlegast bíðið" - -#: ../../mod/message.php:371 -msgid "No messages." -msgstr "Engin skilaboð." - -#: ../../mod/message.php:378 -#, php-format -msgid "Unknown sender - %s" -msgstr "" - -#: ../../mod/message.php:381 -#, php-format -msgid "You and %s" -msgstr "" - -#: ../../mod/message.php:384 -#, php-format -msgid "%s and You" -msgstr "" - -#: ../../mod/message.php:405 ../../mod/message.php:546 -msgid "Delete conversation" -msgstr "Eyða samtali" - -#: ../../mod/message.php:408 -msgid "D, d M Y - g:i A" -msgstr "" - -#: ../../mod/message.php:411 -#, php-format -msgid "%d message" -msgid_plural "%d messages" +msgid "%d contact not imported" +msgid_plural "%d contacts not imported" msgstr[0] "" msgstr[1] "" -#: ../../mod/message.php:450 -msgid "Message not available." -msgstr "Ekki næst í skilaboð." - -#: ../../mod/message.php:520 -msgid "Delete message" -msgstr "Eyða skilaboðum" - -#: ../../mod/message.php:548 -msgid "" -"No secure communications available. You may be able to " -"respond from the sender's profile page." -msgstr "" - -#: ../../mod/message.php:552 -msgid "Send Reply" -msgstr "Senda svar" - -#: ../../mod/update_display.php:22 ../../mod/update_community.php:18 -#: ../../mod/update_notes.php:37 ../../mod/update_profile.php:41 -#: ../../mod/update_network.php:25 -msgid "[Embedded content - reload page to view]" -msgstr "[Innfelt efni - endurhlaða síðu til að sjá]" - -#: ../../mod/crepair.php:106 -msgid "Contact settings applied." -msgstr "Stillingar tengiliðs uppfærðar." - -#: ../../mod/crepair.php:108 -msgid "Contact update failed." -msgstr "Uppfærsla tengiliðs mistókst." - -#: ../../mod/crepair.php:139 -msgid "Repair Contact Settings" -msgstr "Gera við stillingar tengiliðs" - -#: ../../mod/crepair.php:141 -msgid "" -"WARNING: This is highly advanced and if you enter incorrect" -" information your communications with this contact may stop working." -msgstr "AÐVÖRUN: Þetta er mjög flókið og ef þú setur inn vitlausar upplýsingar þá munu samskipti við þennan tengilið hætta að virka." - -#: ../../mod/crepair.php:142 -msgid "" -"Please use your browser 'Back' button now if you are " -"uncertain what to do on this page." -msgstr "Vinsamlegast veldu \"Afturábak\" takkan núna ef þú ert ekki viss um hvað þú eigir að gera á þessari síðu." - -#: ../../mod/crepair.php:148 -msgid "Return to contact editor" -msgstr "Fara til baka í tengiliðasýsl" - -#: ../../mod/crepair.php:159 ../../mod/crepair.php:161 -msgid "No mirroring" -msgstr "" - -#: ../../mod/crepair.php:159 -msgid "Mirror as forwarded posting" -msgstr "" - -#: ../../mod/crepair.php:159 ../../mod/crepair.php:161 -msgid "Mirror as my own posting" -msgstr "" - -#: ../../mod/crepair.php:165 ../../mod/admin.php:1003 ../../mod/admin.php:1015 -#: ../../mod/admin.php:1016 ../../mod/admin.php:1029 -#: ../../mod/settings.php:616 ../../mod/settings.php:642 -msgid "Name" -msgstr "Nafn" - -#: ../../mod/crepair.php:166 -msgid "Account Nickname" -msgstr "Gælunafn notanda" - -#: ../../mod/crepair.php:167 -msgid "@Tagname - overrides Name/Nickname" -msgstr "@Merkjanafn - yfirskrifar Nafn/Gælunafn" - -#: ../../mod/crepair.php:168 -msgid "Account URL" -msgstr "Heimasíða notanda" - -#: ../../mod/crepair.php:169 -msgid "Friend Request URL" -msgstr "Slóð vina beiðnis" - -#: ../../mod/crepair.php:170 -msgid "Friend Confirm URL" -msgstr "Slóð vina staðfestingar " - -#: ../../mod/crepair.php:171 -msgid "Notification Endpoint URL" -msgstr "Slóð loka tilkynningar" - -#: ../../mod/crepair.php:172 -msgid "Poll/Feed URL" -msgstr "Slóð könnunar/þráðar" - -#: ../../mod/crepair.php:173 -msgid "New photo from this URL" -msgstr "Ný mynd frá slóð" - -#: ../../mod/crepair.php:174 -msgid "Remote Self" -msgstr "" - -#: ../../mod/crepair.php:176 -msgid "Mirror postings from this contact" -msgstr "" - -#: ../../mod/crepair.php:176 -msgid "" -"Mark this contact as remote_self, this will cause friendica to repost new " -"entries from this contact." -msgstr "" - -#: ../../mod/bookmarklet.php:12 ../../boot.php:1266 ../../include/nav.php:92 -msgid "Login" -msgstr "Innskrá" - -#: ../../mod/bookmarklet.php:41 -msgid "The post was created" -msgstr "" - -#: ../../mod/viewsrc.php:7 -msgid "Access denied." -msgstr "Aðgangi hafnað" - -#: ../../mod/dirfind.php:26 -msgid "People Search" -msgstr "Leita af fólki" - -#: ../../mod/dirfind.php:60 ../../mod/match.php:65 -msgid "No matches" -msgstr "Engar leitarniðurstöður" - -#: ../../mod/fbrowser.php:25 ../../boot.php:2126 ../../include/nav.php:78 -#: ../../view/theme/diabook/theme.php:126 -msgid "Photos" -msgstr "Myndir" - -#: ../../mod/fbrowser.php:113 -msgid "Files" -msgstr "Skrár" - -#: ../../mod/nogroup.php:59 -msgid "Contacts who are not members of a group" -msgstr "" - -#: ../../mod/admin.php:57 -msgid "Theme settings updated." -msgstr "Þemastillingar uppfærðar." - -#: ../../mod/admin.php:104 ../../mod/admin.php:619 -msgid "Site" -msgstr "Vefur" - -#: ../../mod/admin.php:105 ../../mod/admin.php:998 ../../mod/admin.php:1013 -msgid "Users" -msgstr "Notendur" - -#: ../../mod/admin.php:106 ../../mod/admin.php:1102 ../../mod/admin.php:1155 -#: ../../mod/settings.php:57 -msgid "Plugins" -msgstr "Viðbætur" - -#: ../../mod/admin.php:107 ../../mod/admin.php:1323 ../../mod/admin.php:1357 -msgid "Themes" -msgstr "Þemu" - -#: ../../mod/admin.php:108 -msgid "DB updates" -msgstr "Gagnagrunns uppfærslur" - -#: ../../mod/admin.php:123 ../../mod/admin.php:132 ../../mod/admin.php:1444 -msgid "Logs" -msgstr "Atburðaskrá" - -#: ../../mod/admin.php:124 -msgid "probe address" -msgstr "" - -#: ../../mod/admin.php:125 -msgid "check webfinger" -msgstr "" - -#: ../../mod/admin.php:130 ../../include/nav.php:184 -msgid "Admin" -msgstr "Stjórnborð" - -#: ../../mod/admin.php:131 -msgid "Plugin Features" -msgstr "" - -#: ../../mod/admin.php:133 -msgid "diagnostics" -msgstr "" - -#: ../../mod/admin.php:134 -msgid "User registrations waiting for confirmation" -msgstr "Notenda nýskráningar bíða samþykkis" - -#: ../../mod/admin.php:193 ../../mod/admin.php:952 -msgid "Normal Account" -msgstr "Venjulegur notandi" - -#: ../../mod/admin.php:194 ../../mod/admin.php:953 -msgid "Soapbox Account" -msgstr "Sápukassa notandi" - -#: ../../mod/admin.php:195 ../../mod/admin.php:954 -msgid "Community/Celebrity Account" -msgstr "Hópa-/Stjörnusíða" - -#: ../../mod/admin.php:196 ../../mod/admin.php:955 -msgid "Automatic Friend Account" -msgstr "Verður sjálfkrafa vinur notandi" - -#: ../../mod/admin.php:197 -msgid "Blog Account" -msgstr "" - -#: ../../mod/admin.php:198 -msgid "Private Forum" -msgstr "" - -#: ../../mod/admin.php:217 -msgid "Message queues" -msgstr "" - -#: ../../mod/admin.php:222 ../../mod/admin.php:618 ../../mod/admin.php:997 -#: ../../mod/admin.php:1101 ../../mod/admin.php:1154 ../../mod/admin.php:1322 -#: ../../mod/admin.php:1356 ../../mod/admin.php:1443 -msgid "Administration" -msgstr "Stjórnun" - -#: ../../mod/admin.php:223 -msgid "Summary" -msgstr "Samantekt" - -#: ../../mod/admin.php:225 -msgid "Registered users" -msgstr "Skráðir notendur" - -#: ../../mod/admin.php:227 -msgid "Pending registrations" -msgstr "Nýskráningar í bið" - -#: ../../mod/admin.php:228 -msgid "Version" -msgstr "Útgáfa" - -#: ../../mod/admin.php:232 -msgid "Active plugins" -msgstr "Virkar viðbætur" - -#: ../../mod/admin.php:255 -msgid "Can not parse base url. Must have at least ://" -msgstr "" - -#: ../../mod/admin.php:516 -msgid "Site settings updated." -msgstr "Stillingar þjóns uppfærðar." - -#: ../../mod/admin.php:545 ../../mod/settings.php:828 -msgid "No special theme for mobile devices" -msgstr "" - -#: ../../mod/admin.php:562 -msgid "No community page" -msgstr "" - -#: ../../mod/admin.php:563 -msgid "Public postings from users of this site" -msgstr "" - -#: ../../mod/admin.php:564 -msgid "Global community page" -msgstr "" - -#: ../../mod/admin.php:570 -msgid "At post arrival" -msgstr "" - -#: ../../mod/admin.php:571 ../../include/contact_selectors.php:56 -msgid "Frequently" -msgstr "Oft" - -#: ../../mod/admin.php:572 ../../include/contact_selectors.php:57 -msgid "Hourly" -msgstr "Klukkustundar fresti" - -#: ../../mod/admin.php:573 ../../include/contact_selectors.php:58 -msgid "Twice daily" -msgstr "Tvisvar á dag" - -#: ../../mod/admin.php:574 ../../include/contact_selectors.php:59 -msgid "Daily" -msgstr "Daglega" - -#: ../../mod/admin.php:579 -msgid "Multi user instance" -msgstr "" - -#: ../../mod/admin.php:602 -msgid "Closed" -msgstr "Lokað" - -#: ../../mod/admin.php:603 -msgid "Requires approval" -msgstr "Þarf samþykki" - -#: ../../mod/admin.php:604 -msgid "Open" -msgstr "Opið" - -#: ../../mod/admin.php:608 -msgid "No SSL policy, links will track page SSL state" -msgstr "" - -#: ../../mod/admin.php:609 -msgid "Force all links to use SSL" -msgstr "" - -#: ../../mod/admin.php:610 -msgid "Self-signed certificate, use SSL for local links only (discouraged)" -msgstr "" - -#: ../../mod/admin.php:620 ../../mod/admin.php:1156 ../../mod/admin.php:1358 -#: ../../mod/admin.php:1445 ../../mod/settings.php:614 -#: ../../mod/settings.php:724 ../../mod/settings.php:798 -#: ../../mod/settings.php:880 ../../mod/settings.php:1113 -msgid "Save Settings" -msgstr "" - -#: ../../mod/admin.php:621 ../../mod/register.php:255 -msgid "Registration" -msgstr "Nýskráning" - -#: ../../mod/admin.php:622 -msgid "File upload" -msgstr "Hlaða upp skrá" - -#: ../../mod/admin.php:623 -msgid "Policies" -msgstr "Stefna" - -#: ../../mod/admin.php:624 -msgid "Advanced" -msgstr "Flóknari" - -#: ../../mod/admin.php:625 -msgid "Performance" -msgstr "Afköst" - -#: ../../mod/admin.php:626 -msgid "" -"Relocate - WARNING: advanced function. Could make this server unreachable." -msgstr "" - -#: ../../mod/admin.php:629 -msgid "Site name" -msgstr "Nafn síðu" - -#: ../../mod/admin.php:630 -msgid "Host name" -msgstr "" - -#: ../../mod/admin.php:631 -msgid "Sender Email" +#: include/uimport.php:292 +msgid "Done. You can now login with your username and password" msgstr "" -#: ../../mod/admin.php:632 -msgid "Banner/Logo" -msgstr "Borði/Merki" - -#: ../../mod/admin.php:633 -msgid "Shortcut icon" -msgstr "" - -#: ../../mod/admin.php:634 -msgid "Touch icon" -msgstr "" - -#: ../../mod/admin.php:635 -msgid "Additional Info" -msgstr "" - -#: ../../mod/admin.php:635 -msgid "" -"For public servers: you can add additional information here that will be " -"listed at dir.friendica.com/siteinfo." -msgstr "" - -#: ../../mod/admin.php:636 -msgid "System language" -msgstr "Kerfis tungumál" - -#: ../../mod/admin.php:637 -msgid "System theme" -msgstr "Kerfis þema" - -#: ../../mod/admin.php:637 -msgid "" -"Default system theme - may be over-ridden by user profiles - change theme settings" -msgstr "" - -#: ../../mod/admin.php:638 -msgid "Mobile system theme" -msgstr "" - -#: ../../mod/admin.php:638 -msgid "Theme for mobile devices" -msgstr "" - -#: ../../mod/admin.php:639 -msgid "SSL link policy" -msgstr "" - -#: ../../mod/admin.php:639 -msgid "Determines whether generated links should be forced to use SSL" -msgstr "" - -#: ../../mod/admin.php:640 -msgid "Force SSL" -msgstr "" - -#: ../../mod/admin.php:640 -msgid "" -"Force all Non-SSL requests to SSL - Attention: on some systems it could lead" -" to endless loops." -msgstr "" - -#: ../../mod/admin.php:641 -msgid "Old style 'Share'" -msgstr "" - -#: ../../mod/admin.php:641 -msgid "Deactivates the bbcode element 'share' for repeating items." -msgstr "" - -#: ../../mod/admin.php:642 -msgid "Hide help entry from navigation menu" -msgstr "" - -#: ../../mod/admin.php:642 -msgid "" -"Hides the menu entry for the Help pages from the navigation menu. You can " -"still access it calling /help directly." -msgstr "" - -#: ../../mod/admin.php:643 -msgid "Single user instance" -msgstr "" - -#: ../../mod/admin.php:643 -msgid "Make this instance multi-user or single-user for the named user" -msgstr "" - -#: ../../mod/admin.php:644 -msgid "Maximum image size" -msgstr "Mesta stærð mynda" - -#: ../../mod/admin.php:644 -msgid "" -"Maximum size in bytes of uploaded images. Default is 0, which means no " -"limits." -msgstr "" - -#: ../../mod/admin.php:645 -msgid "Maximum image length" -msgstr "" - -#: ../../mod/admin.php:645 -msgid "" -"Maximum length in pixels of the longest side of uploaded images. Default is " -"-1, which means no limits." -msgstr "" - -#: ../../mod/admin.php:646 -msgid "JPEG image quality" -msgstr "JPEG myndgæði" - -#: ../../mod/admin.php:646 -msgid "" -"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is " -"100, which is full quality." -msgstr "" - -#: ../../mod/admin.php:648 -msgid "Register policy" -msgstr "Nýskráningar stefna" - -#: ../../mod/admin.php:649 -msgid "Maximum Daily Registrations" -msgstr "" - -#: ../../mod/admin.php:649 -msgid "" -"If registration is permitted above, this sets the maximum number of new user" -" registrations to accept per day. If register is set to closed, this " -"setting has no effect." -msgstr "" - -#: ../../mod/admin.php:650 -msgid "Register text" -msgstr "Nýskráningar texti" - -#: ../../mod/admin.php:650 -msgid "Will be displayed prominently on the registration page." -msgstr "" - -#: ../../mod/admin.php:651 -msgid "Accounts abandoned after x days" -msgstr "Yfirgefnir notendur eftir x daga" - -#: ../../mod/admin.php:651 -msgid "" -"Will not waste system resources polling external sites for abandonded " -"accounts. Enter 0 for no time limit." -msgstr "Hættir að eyða afli í að sækja færslur á ytri vefi fyrir yfirgefna notendur. 0 þýðir notendur merkjast ekki yfirgefnir." - -#: ../../mod/admin.php:652 -msgid "Allowed friend domains" -msgstr "Vina lén leyfð" - -#: ../../mod/admin.php:652 -msgid "" -"Comma separated list of domains which are allowed to establish friendships " -"with this site. Wildcards are accepted. Empty to allow any domains" -msgstr "" - -#: ../../mod/admin.php:653 -msgid "Allowed email domains" -msgstr "Póstfangs lén leyfð" - -#: ../../mod/admin.php:653 -msgid "" -"Comma separated list of domains which are allowed in email addresses for " -"registrations to this site. Wildcards are accepted. Empty to allow any " -"domains" -msgstr "" - -#: ../../mod/admin.php:654 -msgid "Block public" -msgstr "Lokað á opinberar færslur" - -#: ../../mod/admin.php:654 -msgid "" -"Check to block public access to all otherwise public personal pages on this " -"site unless you are currently logged in." -msgstr "" - -#: ../../mod/admin.php:655 -msgid "Force publish" -msgstr "Skylda að vera í tengiliðalista" - -#: ../../mod/admin.php:655 -msgid "" -"Check to force all profiles on this site to be listed in the site directory." -msgstr "" - -#: ../../mod/admin.php:656 -msgid "Global directory update URL" -msgstr "Uppfærsluslóð fyrir alheimstengiliðalista" - -#: ../../mod/admin.php:656 -msgid "" -"URL to update the global directory. If this is not set, the global directory" -" is completely unavailable to the application." -msgstr "" - -#: ../../mod/admin.php:657 -msgid "Allow threaded items" -msgstr "" - -#: ../../mod/admin.php:657 -msgid "Allow infinite level threading for items on this site." -msgstr "" - -#: ../../mod/admin.php:658 -msgid "Private posts by default for new users" -msgstr "" - -#: ../../mod/admin.php:658 -msgid "" -"Set default post permissions for all new members to the default privacy " -"group rather than public." -msgstr "" - -#: ../../mod/admin.php:659 -msgid "Don't include post content in email notifications" -msgstr "" - -#: ../../mod/admin.php:659 -msgid "" -"Don't include the content of a post/comment/private message/etc. in the " -"email notifications that are sent out from this site, as a privacy measure." -msgstr "" - -#: ../../mod/admin.php:660 -msgid "Disallow public access to addons listed in the apps menu." -msgstr "" - -#: ../../mod/admin.php:660 -msgid "" -"Checking this box will restrict addons listed in the apps menu to members " -"only." -msgstr "" - -#: ../../mod/admin.php:661 -msgid "Don't embed private images in posts" -msgstr "" - -#: ../../mod/admin.php:661 -msgid "" -"Don't replace locally-hosted private photos in posts with an embedded copy " -"of the image. This means that contacts who receive posts containing private " -"photos will have to authenticate and load each image, which may take a " -"while." -msgstr "" - -#: ../../mod/admin.php:662 -msgid "Allow Users to set remote_self" -msgstr "" - -#: ../../mod/admin.php:662 -msgid "" -"With checking this, every user is allowed to mark every contact as a " -"remote_self in the repair contact dialog. Setting this flag on a contact " -"causes mirroring every posting of that contact in the users stream." -msgstr "" - -#: ../../mod/admin.php:663 -msgid "Block multiple registrations" -msgstr "Banna margar skráningar" - -#: ../../mod/admin.php:663 -msgid "Disallow users to register additional accounts for use as pages." -msgstr "" - -#: ../../mod/admin.php:664 -msgid "OpenID support" -msgstr "Leyfa OpenID auðkenningu" - -#: ../../mod/admin.php:664 -msgid "OpenID support for registration and logins." -msgstr "" - -#: ../../mod/admin.php:665 -msgid "Fullname check" -msgstr "Fullt nafn skilyrði" - -#: ../../mod/admin.php:665 -msgid "" -"Force users to register with a space between firstname and lastname in Full " -"name, as an antispam measure" -msgstr "" - -#: ../../mod/admin.php:666 -msgid "UTF-8 Regular expressions" -msgstr "UTF-8 hefðbundin stöfun" - -#: ../../mod/admin.php:666 -msgid "Use PHP UTF8 regular expressions" -msgstr "" - -#: ../../mod/admin.php:667 -msgid "Community Page Style" -msgstr "" - -#: ../../mod/admin.php:667 -msgid "" -"Type of community page to show. 'Global community' shows every public " -"posting from an open distributed network that arrived on this server." -msgstr "" - -#: ../../mod/admin.php:668 -msgid "Posts per user on community page" -msgstr "" - -#: ../../mod/admin.php:668 -msgid "" -"The maximum number of posts per user on the community page. (Not valid for " -"'Global Community')" -msgstr "" - -#: ../../mod/admin.php:669 -msgid "Enable OStatus support" -msgstr "Leyfa OStatus stuðning" - -#: ../../mod/admin.php:669 -msgid "" -"Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All " -"communications in OStatus are public, so privacy warnings will be " -"occasionally displayed." -msgstr "" - -#: ../../mod/admin.php:670 -msgid "OStatus conversation completion interval" -msgstr "" - -#: ../../mod/admin.php:670 -msgid "" -"How often shall the poller check for new entries in OStatus conversations? " -"This can be a very ressource task." -msgstr "" - -#: ../../mod/admin.php:671 -msgid "Enable Diaspora support" -msgstr "Leyfa Diaspora tengingar" - -#: ../../mod/admin.php:671 -msgid "Provide built-in Diaspora network compatibility." -msgstr "" - -#: ../../mod/admin.php:672 -msgid "Only allow Friendica contacts" -msgstr "Aðeins leyfa Friendica notendur" - -#: ../../mod/admin.php:672 -msgid "" -"All contacts must use Friendica protocols. All other built-in communication " -"protocols disabled." -msgstr "" - -#: ../../mod/admin.php:673 -msgid "Verify SSL" -msgstr "Sannreyna SSL" - -#: ../../mod/admin.php:673 -msgid "" -"If you wish, you can turn on strict certificate checking. This will mean you" -" cannot connect (at all) to self-signed SSL sites." -msgstr "" - -#: ../../mod/admin.php:674 -msgid "Proxy user" -msgstr "Proxy notandi" - -#: ../../mod/admin.php:675 -msgid "Proxy URL" -msgstr "Proxy slóð" - -#: ../../mod/admin.php:676 -msgid "Network timeout" -msgstr "Net tími útrunninn" - -#: ../../mod/admin.php:676 -msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." -msgstr "" - -#: ../../mod/admin.php:677 -msgid "Delivery interval" -msgstr "" - -#: ../../mod/admin.php:677 -msgid "" -"Delay background delivery processes by this many seconds to reduce system " -"load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 " -"for large dedicated servers." -msgstr "" - -#: ../../mod/admin.php:678 -msgid "Poll interval" -msgstr "" - -#: ../../mod/admin.php:678 -msgid "" -"Delay background polling processes by this many seconds to reduce system " -"load. If 0, use delivery interval." -msgstr "" - -#: ../../mod/admin.php:679 -msgid "Maximum Load Average" -msgstr "Mesta meðaltals álag" - -#: ../../mod/admin.php:679 -msgid "" -"Maximum system load before delivery and poll processes are deferred - " -"default 50." -msgstr "" - -#: ../../mod/admin.php:681 -msgid "Use MySQL full text engine" -msgstr "" - -#: ../../mod/admin.php:681 -msgid "" -"Activates the full text engine. Speeds up search - but can only search for " -"four and more characters." -msgstr "" - -#: ../../mod/admin.php:682 -msgid "Suppress Language" -msgstr "" - -#: ../../mod/admin.php:682 -msgid "Suppress language information in meta information about a posting." -msgstr "" - -#: ../../mod/admin.php:683 -msgid "Suppress Tags" -msgstr "" - -#: ../../mod/admin.php:683 -msgid "Suppress showing a list of hashtags at the end of the posting." -msgstr "" - -#: ../../mod/admin.php:684 -msgid "Path to item cache" -msgstr "" - -#: ../../mod/admin.php:685 -msgid "Cache duration in seconds" -msgstr "" - -#: ../../mod/admin.php:685 -msgid "" -"How long should the cache files be hold? Default value is 86400 seconds (One" -" day). To disable the item cache, set the value to -1." -msgstr "" - -#: ../../mod/admin.php:686 -msgid "Maximum numbers of comments per post" -msgstr "" - -#: ../../mod/admin.php:686 -msgid "How much comments should be shown for each post? Default value is 100." -msgstr "" - -#: ../../mod/admin.php:687 -msgid "Path for lock file" -msgstr "" - -#: ../../mod/admin.php:688 -msgid "Temp path" -msgstr "" - -#: ../../mod/admin.php:689 -msgid "Base path to installation" -msgstr "" - -#: ../../mod/admin.php:690 -msgid "Disable picture proxy" -msgstr "" - -#: ../../mod/admin.php:690 -msgid "" -"The picture proxy increases performance and privacy. It shouldn't be used on" -" systems with very low bandwith." -msgstr "" - -#: ../../mod/admin.php:691 -msgid "Enable old style pager" -msgstr "" - -#: ../../mod/admin.php:691 -msgid "" -"The old style pager has page numbers but slows down massively the page " -"speed." -msgstr "" - -#: ../../mod/admin.php:692 -msgid "Only search in tags" -msgstr "" - -#: ../../mod/admin.php:692 -msgid "On large systems the text search can slow down the system extremely." -msgstr "" - -#: ../../mod/admin.php:694 -msgid "New base url" -msgstr "" - -#: ../../mod/admin.php:711 -msgid "Update has been marked successful" -msgstr "Uppfærsla merkt sem tókst" - -#: ../../mod/admin.php:719 +#: include/dba.php:56 include/dba_pdo.php:72 #, php-format -msgid "Database structure update %s was successfully applied." +msgid "Cannot locate DNS info for database server '%s'" +msgstr "Get ekki flett upp DNS upplýsingum fyrir gagnagrunnsþjón '%s'" + +#: include/event.php:16 include/bb2diaspora.php:148 mod/localtime.php:12 +msgid "l F d, Y \\@ g:i A" msgstr "" -#: ../../mod/admin.php:722 -#, php-format -msgid "Executing of database structure update %s failed with error: %s" -msgstr "" +#: include/event.php:33 include/event.php:51 include/bb2diaspora.php:154 +msgid "Starts:" +msgstr "Byrjar:" -#: ../../mod/admin.php:734 -#, php-format -msgid "Executing %s failed with error: %s" -msgstr "" +#: include/event.php:36 include/event.php:57 include/bb2diaspora.php:162 +msgid "Finishes:" +msgstr "Endar:" -#: ../../mod/admin.php:737 -#, php-format -msgid "Update %s was successfully applied." -msgstr "Uppfærsla %s framkvæmd." - -#: ../../mod/admin.php:741 -#, php-format -msgid "Update %s did not return a status. Unknown if it succeeded." -msgstr "Uppfærsla %s skilaði ekki gildi. Óvíst hvort tókst." - -#: ../../mod/admin.php:743 -#, php-format -msgid "There was no additional update function %s that needed to be called." -msgstr "" - -#: ../../mod/admin.php:762 -msgid "No failed updates." -msgstr "Engar uppfærslur mistókust." - -#: ../../mod/admin.php:763 -msgid "Check database structure" -msgstr "" - -#: ../../mod/admin.php:768 -msgid "Failed Updates" -msgstr "Uppfærslur sem mistókust" - -#: ../../mod/admin.php:769 -msgid "" -"This does not include updates prior to 1139, which did not return a status." -msgstr "Þetta á ekki við uppfærslur fyrir 1139, þær skiluðu ekki lokastöðu." - -#: ../../mod/admin.php:770 -msgid "Mark success (if update was manually applied)" -msgstr "Merkja sem tókst (ef uppfærsla var framkvæmd handvirkt)" - -#: ../../mod/admin.php:771 -msgid "Attempt to execute this update step automatically" -msgstr "Framkvæma þessa uppfærslu sjálfkrafa" - -#: ../../mod/admin.php:803 -#, php-format -msgid "" -"\n" -"\t\t\tDear %1$s,\n" -"\t\t\t\tthe administrator of %2$s has set up an account for you." -msgstr "" - -#: ../../mod/admin.php:806 -#, php-format -msgid "" -"\n" -"\t\t\tThe login details are as follows:\n" -"\n" -"\t\t\tSite Location:\t%1$s\n" -"\t\t\tLogin Name:\t\t%2$s\n" -"\t\t\tPassword:\t\t%3$s\n" -"\n" -"\t\t\tYou may change your password from your account \"Settings\" page after logging\n" -"\t\t\tin.\n" -"\n" -"\t\t\tPlease take a few moments to review the other account settings on that page.\n" -"\n" -"\t\t\tYou may also wish to add some basic information to your default profile\n" -"\t\t\t(on the \"Profiles\" page) so that other people can easily find you.\n" -"\n" -"\t\t\tWe recommend setting your full name, adding a profile photo,\n" -"\t\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n" -"\t\t\tperhaps what country you live in; if you do not wish to be more specific\n" -"\t\t\tthan that.\n" -"\n" -"\t\t\tWe fully respect your right to privacy, and none of these items are necessary.\n" -"\t\t\tIf you are new and do not know anybody here, they may help\n" -"\t\t\tyou to make some new and interesting friends.\n" -"\n" -"\t\t\tThank you and welcome to %4$s." -msgstr "" - -#: ../../mod/admin.php:838 ../../include/user.php:413 -#, php-format -msgid "Registration details for %s" -msgstr "Nýskráningar upplýsingar fyrir %s" - -#: ../../mod/admin.php:850 -#, php-format -msgid "%s user blocked/unblocked" -msgid_plural "%s users blocked/unblocked" -msgstr[0] "" -msgstr[1] "" - -#: ../../mod/admin.php:857 -#, php-format -msgid "%s user deleted" -msgid_plural "%s users deleted" -msgstr[0] "%s notenda eytt" -msgstr[1] "%s notendum eytt" - -#: ../../mod/admin.php:896 -#, php-format -msgid "User '%s' deleted" -msgstr "Notanda '%s' eytt" - -#: ../../mod/admin.php:904 -#, php-format -msgid "User '%s' unblocked" -msgstr "Notanda '%s' gefið frelsi" - -#: ../../mod/admin.php:904 -#, php-format -msgid "User '%s' blocked" -msgstr "Notanda '%s' settur í bann" - -#: ../../mod/admin.php:999 -msgid "Add User" -msgstr "" - -#: ../../mod/admin.php:1000 -msgid "select all" -msgstr "velja alla" - -#: ../../mod/admin.php:1001 -msgid "User registrations waiting for confirm" -msgstr "Skráning notanda býður samþykkis" - -#: ../../mod/admin.php:1002 -msgid "User waiting for permanent deletion" -msgstr "" - -#: ../../mod/admin.php:1003 -msgid "Request date" -msgstr "Dagsetning beiðnar" - -#: ../../mod/admin.php:1003 ../../mod/admin.php:1015 ../../mod/admin.php:1016 -#: ../../mod/admin.php:1031 ../../include/contact_selectors.php:79 -#: ../../include/contact_selectors.php:86 -msgid "Email" -msgstr "Póstfang" - -#: ../../mod/admin.php:1004 -msgid "No registrations." -msgstr "Engin skráning" - -#: ../../mod/admin.php:1006 -msgid "Deny" -msgstr "Hafnað" - -#: ../../mod/admin.php:1010 -msgid "Site admin" -msgstr "" - -#: ../../mod/admin.php:1011 -msgid "Account expired" -msgstr "" - -#: ../../mod/admin.php:1014 -msgid "New User" -msgstr "" - -#: ../../mod/admin.php:1015 ../../mod/admin.php:1016 -msgid "Register date" -msgstr "Skráningar dagsetning" - -#: ../../mod/admin.php:1015 ../../mod/admin.php:1016 -msgid "Last login" -msgstr "Síðast innskráður" - -#: ../../mod/admin.php:1015 ../../mod/admin.php:1016 -msgid "Last item" -msgstr "Síðasta" - -#: ../../mod/admin.php:1015 -msgid "Deleted since" -msgstr "" - -#: ../../mod/admin.php:1016 ../../mod/settings.php:36 -msgid "Account" -msgstr "Notandi" - -#: ../../mod/admin.php:1018 -msgid "" -"Selected users will be deleted!\\n\\nEverything these users had posted on " -"this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "Valdir notendur verður eytt!\\n\\nAllt sem þessir notendur hafa deilt á þessum vef verður varanlega eytt!\\n\\nErtu alveg viss?" - -#: ../../mod/admin.php:1019 -msgid "" -"The user {0} will be deleted!\\n\\nEverything this user has posted on this " -"site will be permanently deleted!\\n\\nAre you sure?" -msgstr "Notandinn {0} verður eytt!\\n\\nAllt sem þessi notandi hefur deilt á þessum vef veður varanlega eytt!\\n\\nErtu alveg viss?" - -#: ../../mod/admin.php:1029 -msgid "Name of the new user." -msgstr "" - -#: ../../mod/admin.php:1030 -msgid "Nickname" -msgstr "" - -#: ../../mod/admin.php:1030 -msgid "Nickname of the new user." -msgstr "" - -#: ../../mod/admin.php:1031 -msgid "Email address of the new user." -msgstr "" - -#: ../../mod/admin.php:1064 -#, php-format -msgid "Plugin %s disabled." -msgstr "Slökkt á viðbót %s " - -#: ../../mod/admin.php:1068 -#, php-format -msgid "Plugin %s enabled." -msgstr "Kveikt á viðbót %s" - -#: ../../mod/admin.php:1078 ../../mod/admin.php:1294 -msgid "Disable" -msgstr "Slökkva" - -#: ../../mod/admin.php:1080 ../../mod/admin.php:1296 -msgid "Enable" -msgstr "Kveikja" - -#: ../../mod/admin.php:1103 ../../mod/admin.php:1324 -msgid "Toggle" -msgstr "Skipta" - -#: ../../mod/admin.php:1111 ../../mod/admin.php:1334 -msgid "Author: " -msgstr "Höfundur:" - -#: ../../mod/admin.php:1112 ../../mod/admin.php:1335 -msgid "Maintainer: " -msgstr "" - -#: ../../mod/admin.php:1254 -msgid "No themes found." -msgstr "Engin þemu fundust" - -#: ../../mod/admin.php:1316 -msgid "Screenshot" -msgstr "Skjámynd" - -#: ../../mod/admin.php:1362 -msgid "[Experimental]" -msgstr "[Tilraun]" - -#: ../../mod/admin.php:1363 -msgid "[Unsupported]" -msgstr "[Óstudd]" - -#: ../../mod/admin.php:1390 -msgid "Log settings updated." -msgstr "Stillingar atburðaskrár uppfærðar. " - -#: ../../mod/admin.php:1446 -msgid "Clear" -msgstr "Hreinsa" - -#: ../../mod/admin.php:1452 -msgid "Enable Debugging" -msgstr "" - -#: ../../mod/admin.php:1453 -msgid "Log file" -msgstr "Atburðaskrá" - -#: ../../mod/admin.php:1453 -msgid "" -"Must be writable by web server. Relative to your Friendica top-level " -"directory." -msgstr "Vefþjónn verður að hafa skrifréttindi. Afstætt við Friendica rótar skráarsafn." - -#: ../../mod/admin.php:1454 -msgid "Log level" -msgstr "Stig atburðaskráningar" - -#: ../../mod/admin.php:1504 -msgid "Close" -msgstr "Loka" - -#: ../../mod/admin.php:1510 -msgid "FTP Host" -msgstr "FTP Vélanafn" - -#: ../../mod/admin.php:1511 -msgid "FTP Path" -msgstr "FTP Slóð" - -#: ../../mod/admin.php:1512 -msgid "FTP User" -msgstr "FTP Notandi" - -#: ../../mod/admin.php:1513 -msgid "FTP Password" -msgstr "FTP Aðgangsorð" - -#: ../../mod/network.php:142 -msgid "Search Results For:" -msgstr "Leitar niðurstöður fyrir:" - -#: ../../mod/network.php:185 ../../mod/search.php:21 -msgid "Remove term" -msgstr "Fjarlæga gildi" - -#: ../../mod/network.php:194 ../../mod/search.php:30 -#: ../../include/features.php:42 -msgid "Saved Searches" -msgstr "Vistaðar leitir" - -#: ../../mod/network.php:195 ../../include/group.php:275 -msgid "add" -msgstr "bæta við" - -#: ../../mod/network.php:356 -msgid "Commented Order" -msgstr "Athugasemdar röð" - -#: ../../mod/network.php:359 -msgid "Sort by Comment Date" -msgstr "Raða eftir umræðu dagsetningu" - -#: ../../mod/network.php:362 -msgid "Posted Order" -msgstr "Færlsu röð" - -#: ../../mod/network.php:365 -msgid "Sort by Post Date" -msgstr "Raða eftir færslu dagsetningu" - -#: ../../mod/network.php:374 -msgid "Posts that mention or involve you" -msgstr "Færslur sem tengjast þér" - -#: ../../mod/network.php:380 -msgid "New" -msgstr "Ný" - -#: ../../mod/network.php:383 -msgid "Activity Stream - by date" -msgstr "Færslu straumur - raðað eftir dagsetningu" - -#: ../../mod/network.php:389 -msgid "Shared Links" -msgstr "" - -#: ../../mod/network.php:392 -msgid "Interesting Links" -msgstr "Áhugaverðir hlekkir" - -#: ../../mod/network.php:398 -msgid "Starred" -msgstr "Stjörnumerkt" - -#: ../../mod/network.php:401 -msgid "Favourite Posts" -msgstr "Uppáhalds færslur" - -#: ../../mod/network.php:463 -#, php-format -msgid "Warning: This group contains %s member from an insecure network." -msgid_plural "" -"Warning: This group contains %s members from an insecure network." -msgstr[0] "Aðvörun: Þessi hópur inniheldur %s notanda frá óöruggu neti." -msgstr[1] "Aðvörun: Þessi hópur inniheldur %s notendur frá óöruggu neti." - -#: ../../mod/network.php:466 -msgid "Private messages to this group are at risk of public disclosure." -msgstr "Einka samtöl send á þennan hóp eiga á hættu að verða opinber." - -#: ../../mod/network.php:520 ../../mod/content.php:119 -msgid "No such group" -msgstr "Hópur ekki til" - -#: ../../mod/network.php:537 ../../mod/content.php:130 -msgid "Group is empty" -msgstr "Hópur er tómur" - -#: ../../mod/network.php:544 ../../mod/content.php:134 -msgid "Group: " -msgstr "Hópur:" - -#: ../../mod/network.php:554 -msgid "Contact: " -msgstr "Tengiliður:" - -#: ../../mod/network.php:556 -msgid "Private messages to this person are at risk of public disclosure." -msgstr "Einka skilaboð send á þennan notanda eiga á hættu að verða opinber." - -#: ../../mod/network.php:561 -msgid "Invalid contact." -msgstr "Ógildur tengiliður." - -#: ../../mod/allfriends.php:34 -#, php-format -msgid "Friends of %s" -msgstr "Vinir %s" - -#: ../../mod/allfriends.php:40 -msgid "No friends to display." -msgstr "Engir vinir til að birta." - -#: ../../mod/events.php:66 -msgid "Event title and start time are required." -msgstr "" - -#: ../../mod/events.php:291 -msgid "l, F j" -msgstr "" - -#: ../../mod/events.php:313 -msgid "Edit event" -msgstr "Breyta atburð" - -#: ../../mod/events.php:335 ../../include/text.php:1647 -#: ../../include/text.php:1657 -msgid "link to source" -msgstr "slóð í heimild" - -#: ../../mod/events.php:370 ../../boot.php:2143 ../../include/nav.php:80 -#: ../../view/theme/diabook/theme.php:127 -msgid "Events" -msgstr "Atburðir" - -#: ../../mod/events.php:371 -msgid "Create New Event" -msgstr "Stofna nýjan atburð" - -#: ../../mod/events.php:372 -msgid "Previous" -msgstr "Fyrra" - -#: ../../mod/events.php:373 ../../mod/install.php:207 -msgid "Next" -msgstr "Næsta" - -#: ../../mod/events.php:446 -msgid "hour:minute" -msgstr "klukkustund:mínutur" - -#: ../../mod/events.php:456 -msgid "Event details" -msgstr "Atburða lýsing" - -#: ../../mod/events.php:457 -#, php-format -msgid "Format is %s %s. Starting date and Title are required." -msgstr "" - -#: ../../mod/events.php:459 -msgid "Event Starts:" -msgstr "Atburður hefst:" - -#: ../../mod/events.php:459 ../../mod/events.php:473 -msgid "Required" -msgstr "" - -#: ../../mod/events.php:462 -msgid "Finish date/time is not known or not relevant" -msgstr "Loka dagsetning/tímasetning ekki vituð eða skiptir ekki máli" - -#: ../../mod/events.php:464 -msgid "Event Finishes:" -msgstr "Atburður klárar:" - -#: ../../mod/events.php:467 -msgid "Adjust for viewer timezone" -msgstr "Heimfæra á tímabelti áhorfanda" - -#: ../../mod/events.php:469 -msgid "Description:" -msgstr "Lýsing:" - -#: ../../mod/events.php:471 ../../mod/directory.php:136 ../../boot.php:1648 -#: ../../include/bb2diaspora.php:170 ../../include/event.php:40 +#: include/event.php:39 include/event.php:63 include/identity.php:329 +#: include/bb2diaspora.php:170 mod/notifications.php:246 mod/events.php:495 +#: mod/directory.php:145 mod/contacts.php:624 msgid "Location:" msgstr "Staðsetning:" -#: ../../mod/events.php:473 -msgid "Title:" +#: include/event.php:441 +msgid "Sun" +msgstr "Sun" + +#: include/event.php:442 +msgid "Mon" +msgstr "Mán" + +#: include/event.php:443 +msgid "Tue" +msgstr "Þri" + +#: include/event.php:444 +msgid "Wed" +msgstr "Mið" + +#: include/event.php:445 +msgid "Thu" +msgstr "Fim" + +#: include/event.php:446 +msgid "Fri" +msgstr "Fös" + +#: include/event.php:447 +msgid "Sat" +msgstr "Lau" + +#: include/event.php:448 include/text.php:1103 mod/settings.php:955 +msgid "Sunday" +msgstr "Sunnudagur" + +#: include/event.php:449 include/text.php:1103 mod/settings.php:955 +msgid "Monday" +msgstr "Mánudagur" + +#: include/event.php:450 include/text.php:1103 +msgid "Tuesday" +msgstr "Þriðjudagur" + +#: include/event.php:451 include/text.php:1103 +msgid "Wednesday" +msgstr "Miðvikudagur" + +#: include/event.php:452 include/text.php:1103 +msgid "Thursday" +msgstr "Fimmtudagur" + +#: include/event.php:453 include/text.php:1103 +msgid "Friday" +msgstr "Föstudagur" + +#: include/event.php:454 include/text.php:1103 +msgid "Saturday" +msgstr "Laugardagur" + +#: include/event.php:455 +msgid "Jan" +msgstr "Jan" + +#: include/event.php:456 +msgid "Feb" +msgstr "Feb" + +#: include/event.php:457 +msgid "Mar" +msgstr "Mar" + +#: include/event.php:458 +msgid "Apr" +msgstr "Apr" + +#: include/event.php:459 include/event.php:471 include/text.php:1107 +msgid "May" +msgstr "Maí" + +#: include/event.php:460 +msgid "Jun" +msgstr "Jún" + +#: include/event.php:461 +msgid "Jul" +msgstr "Júl" + +#: include/event.php:462 +msgid "Aug" +msgstr "Ágú" + +#: include/event.php:463 +msgid "Sept" +msgstr "Sept" + +#: include/event.php:464 +msgid "Oct" +msgstr "Okt" + +#: include/event.php:465 +msgid "Nov" +msgstr "Nóv" + +#: include/event.php:466 +msgid "Dec" +msgstr "Des" + +#: include/event.php:467 include/text.php:1107 +msgid "January" +msgstr "Janúar" + +#: include/event.php:468 include/text.php:1107 +msgid "February" +msgstr "Febrúar" + +#: include/event.php:469 include/text.php:1107 +msgid "March" +msgstr "Mars" + +#: include/event.php:470 include/text.php:1107 +msgid "April" +msgstr "Apríl" + +#: include/event.php:472 include/text.php:1107 +msgid "June" +msgstr "Júní" + +#: include/event.php:473 include/text.php:1107 +msgid "July" +msgstr "Júlí" + +#: include/event.php:474 include/text.php:1107 +msgid "August" +msgstr "Ágúst" + +#: include/event.php:475 include/text.php:1107 +msgid "September" +msgstr "September" + +#: include/event.php:476 include/text.php:1107 +msgid "October" +msgstr "Október" + +#: include/event.php:477 include/text.php:1107 +msgid "November" +msgstr "Nóvember" + +#: include/event.php:478 include/text.php:1107 +msgid "December" +msgstr "Desember" + +#: include/event.php:479 mod/events.php:388 mod/cal.php:286 +msgid "today" +msgstr "í dag" + +#: include/event.php:567 +msgid "l, F j" msgstr "" -#: ../../mod/events.php:475 -msgid "Share this event" -msgstr "Deila þessum atburði" +#: include/event.php:586 +msgid "Edit event" +msgstr "Breyta atburð" -#: ../../mod/content.php:437 ../../mod/content.php:740 -#: ../../mod/photos.php:1653 ../../object/Item.php:129 -#: ../../include/conversation.php:613 -msgid "Select" -msgstr "Velja" +#: include/event.php:608 include/text.php:1509 include/text.php:1516 +msgid "link to source" +msgstr "slóð á heimild" -#: ../../mod/content.php:471 ../../mod/content.php:852 -#: ../../mod/content.php:853 ../../object/Item.php:326 -#: ../../object/Item.php:327 ../../include/conversation.php:654 +#: include/event.php:843 +msgid "Export" +msgstr "Flytja út" + +#: include/event.php:844 +msgid "Export calendar as ical" +msgstr "Flytja dagatal út sem ICAL" + +#: include/event.php:845 +msgid "Export calendar as csv" +msgstr "Flytja dagatal út sem CSV" + +#: include/security.php:22 +msgid "Welcome " +msgstr "Velkomin(n)" + +#: include/security.php:23 +msgid "Please upload a profile photo." +msgstr "Gerðu svo vel að hlaða inn forsíðumynd." + +#: include/security.php:26 +msgid "Welcome back " +msgstr "Velkomin(n) aftur" + +#: include/security.php:375 +msgid "" +"The form security token was not correct. This probably happened because the " +"form has been opened for too long (>3 hours) before submitting it." +msgstr "" + +#: include/profile_selectors.php:6 +msgid "Male" +msgstr "Karl" + +#: include/profile_selectors.php:6 +msgid "Female" +msgstr "Kona" + +#: include/profile_selectors.php:6 +msgid "Currently Male" +msgstr "Karlmaður í augnablikinu" + +#: include/profile_selectors.php:6 +msgid "Currently Female" +msgstr "Kvenmaður í augnablikinu" + +#: include/profile_selectors.php:6 +msgid "Mostly Male" +msgstr "Aðallega karlmaður" + +#: include/profile_selectors.php:6 +msgid "Mostly Female" +msgstr "Aðallega kvenmaður" + +#: include/profile_selectors.php:6 +msgid "Transgender" +msgstr "Kyngervingur" + +#: include/profile_selectors.php:6 +msgid "Intersex" +msgstr "Hvorugkyn" + +#: include/profile_selectors.php:6 +msgid "Transsexual" +msgstr "Kynskiptingur" + +#: include/profile_selectors.php:6 +msgid "Hermaphrodite" +msgstr "Tvíkynja" + +#: include/profile_selectors.php:6 +msgid "Neuter" +msgstr "Hvorukyn" + +#: include/profile_selectors.php:6 +msgid "Non-specific" +msgstr "Ekki ákveðið" + +#: include/profile_selectors.php:6 +msgid "Other" +msgstr "Annað" + +#: include/profile_selectors.php:6 include/conversation.php:1477 +msgid "Undecided" +msgid_plural "Undecided" +msgstr[0] "Óviss" +msgstr[1] "Óvissir" + +#: include/profile_selectors.php:23 +msgid "Males" +msgstr "Karlar" + +#: include/profile_selectors.php:23 +msgid "Females" +msgstr "Konur" + +#: include/profile_selectors.php:23 +msgid "Gay" +msgstr "Hommi" + +#: include/profile_selectors.php:23 +msgid "Lesbian" +msgstr "Lesbía" + +#: include/profile_selectors.php:23 +msgid "No Preference" +msgstr "Til í allt" + +#: include/profile_selectors.php:23 +msgid "Bisexual" +msgstr "Tvíkynhneigð/ur" + +#: include/profile_selectors.php:23 +msgid "Autosexual" +msgstr "Sjálfkynhneigð/ur" + +#: include/profile_selectors.php:23 +msgid "Abstinent" +msgstr "Skírlíf/ur" + +#: include/profile_selectors.php:23 +msgid "Virgin" +msgstr "Hrein mey/Hreinn sveinn" + +#: include/profile_selectors.php:23 +msgid "Deviant" +msgstr "Óþekkur" + +#: include/profile_selectors.php:23 +msgid "Fetish" +msgstr "Blæti" + +#: include/profile_selectors.php:23 +msgid "Oodles" +msgstr "Mikið af því" + +#: include/profile_selectors.php:23 +msgid "Nonsexual" +msgstr "Engin kynhneigð" + +#: include/profile_selectors.php:42 +msgid "Single" +msgstr "Einhleyp/ur" + +#: include/profile_selectors.php:42 +msgid "Lonely" +msgstr "Einmanna" + +#: include/profile_selectors.php:42 +msgid "Available" +msgstr "Á lausu" + +#: include/profile_selectors.php:42 +msgid "Unavailable" +msgstr "Frátekin/n" + +#: include/profile_selectors.php:42 +msgid "Has crush" +msgstr "Er skotin(n)" + +#: include/profile_selectors.php:42 +msgid "Infatuated" +msgstr "" + +#: include/profile_selectors.php:42 +msgid "Dating" +msgstr "Deita" + +#: include/profile_selectors.php:42 +msgid "Unfaithful" +msgstr "Ótrú/r" + +#: include/profile_selectors.php:42 +msgid "Sex Addict" +msgstr "Kynlífsfíkill" + +#: include/profile_selectors.php:42 include/user.php:299 include/user.php:303 +msgid "Friends" +msgstr "Vinir" + +#: include/profile_selectors.php:42 +msgid "Friends/Benefits" +msgstr "Vinir með meiru" + +#: include/profile_selectors.php:42 +msgid "Casual" +msgstr "Lauslát/ur" + +#: include/profile_selectors.php:42 +msgid "Engaged" +msgstr "Trúlofuð/Trúlofaður" + +#: include/profile_selectors.php:42 +msgid "Married" +msgstr "Gift/ur" + +#: include/profile_selectors.php:42 +msgid "Imaginarily married" +msgstr "" + +#: include/profile_selectors.php:42 +msgid "Partners" +msgstr "Félagar" + +#: include/profile_selectors.php:42 +msgid "Cohabiting" +msgstr "Í sambúð" + +#: include/profile_selectors.php:42 +msgid "Common law" +msgstr "Löggilt sambúð" + +#: include/profile_selectors.php:42 +msgid "Happy" +msgstr "Hamingjusöm/Hamingjusamur" + +#: include/profile_selectors.php:42 +msgid "Not looking" +msgstr "Ekki að leita" + +#: include/profile_selectors.php:42 +msgid "Swinger" +msgstr "Svingari" + +#: include/profile_selectors.php:42 +msgid "Betrayed" +msgstr "Svikin/n" + +#: include/profile_selectors.php:42 +msgid "Separated" +msgstr "Skilin/n að borði og sæng" + +#: include/profile_selectors.php:42 +msgid "Unstable" +msgstr "Óstabíll" + +#: include/profile_selectors.php:42 +msgid "Divorced" +msgstr "Fráskilin/n" + +#: include/profile_selectors.php:42 +msgid "Imaginarily divorced" +msgstr "" + +#: include/profile_selectors.php:42 +msgid "Widowed" +msgstr "Ekkja/Ekkill" + +#: include/profile_selectors.php:42 +msgid "Uncertain" +msgstr "Óviss" + +#: include/profile_selectors.php:42 +msgid "It's complicated" +msgstr "Þetta er flókið" + +#: include/profile_selectors.php:42 +msgid "Don't care" +msgstr "Gæti ekki verið meira sama" + +#: include/profile_selectors.php:42 +msgid "Ask me" +msgstr "Spurðu mig" + +#: include/items.php:1447 mod/dfrn_confirm.php:725 mod/dfrn_request.php:744 +msgid "[Name Withheld]" +msgstr "[Nafn ekki sýnt]" + +#: include/items.php:1805 mod/viewsrc.php:15 mod/admin.php:234 +#: mod/admin.php:1445 mod/admin.php:1679 mod/display.php:104 +#: mod/display.php:279 mod/display.php:478 mod/notice.php:15 +msgid "Item not found." +msgstr "Atriði fannst ekki." + +#: include/items.php:1844 +msgid "Do you really want to delete this item?" +msgstr "Viltu í alvörunni eyða þessu atriði?" + +#: include/items.php:1846 mod/profiles.php:641 mod/profiles.php:644 +#: mod/profiles.php:670 mod/contacts.php:441 mod/follow.php:110 +#: mod/suggest.php:29 mod/dfrn_request.php:860 mod/register.php:238 +#: mod/settings.php:1113 mod/settings.php:1119 mod/settings.php:1127 +#: mod/settings.php:1131 mod/settings.php:1136 mod/settings.php:1142 +#: mod/settings.php:1148 mod/settings.php:1154 mod/settings.php:1180 +#: mod/settings.php:1181 mod/settings.php:1182 mod/settings.php:1183 +#: mod/settings.php:1184 mod/api.php:105 mod/message.php:217 +msgid "Yes" +msgstr "Já" + +#: include/items.php:1849 include/conversation.php:1274 mod/fbrowser.php:101 +#: mod/fbrowser.php:136 mod/tagrm.php:11 mod/tagrm.php:94 mod/videos.php:131 +#: mod/photos.php:247 mod/photos.php:336 mod/contacts.php:444 +#: mod/follow.php:121 mod/suggest.php:32 mod/editpost.php:148 +#: mod/dfrn_request.php:874 mod/settings.php:664 mod/settings.php:690 +#: mod/message.php:220 +msgid "Cancel" +msgstr "Hætta við" + +#: include/items.php:2011 index.php:397 mod/regmod.php:110 mod/dirfind.php:11 +#: mod/notifications.php:69 mod/dfrn_confirm.php:56 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:308 mod/repair_ostatus.php:9 mod/delegate.php:12 +#: mod/profiles.php:165 mod/profiles.php:598 mod/poke.php:150 +#: mod/photos.php:171 mod/photos.php:1092 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:474 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:650 +#: 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:185 +#: mod/item.php:197 mod/ostatus_subscribe.php:9 mod/message.php:46 +#: mod/message.php:182 mod/manage.php:96 +msgid "Permission denied." +msgstr "Heimild ekki veitt." + +#: include/items.php:2116 +msgid "Archives" +msgstr "Safnskrár" + +#: include/text.php:304 +msgid "newer" +msgstr "nýrri" + +#: include/text.php:306 +msgid "older" +msgstr "eldri" + +#: include/text.php:311 +msgid "prev" +msgstr "á undan" + +#: include/text.php:313 +msgid "first" +msgstr "fremsta" + +#: include/text.php:345 +msgid "last" +msgstr "síðasta" + +#: include/text.php:348 +msgid "next" +msgstr "næsta" + +#: include/text.php:403 +msgid "Loading more entries..." +msgstr "Hleð inn fleiri færslum..." + +#: include/text.php:404 +msgid "The end" +msgstr "Endir" + +#: include/text.php:871 +msgid "No contacts" +msgstr "Engir tengiliðir" + +#: include/text.php:886 #, php-format -msgid "View %s's profile @ %s" -msgstr "Birta forsíðu %s hjá %s" +msgid "%d Contact" +msgid_plural "%d Contacts" +msgstr[0] "%d tengiliður" +msgstr[1] "%d tengiliðir" -#: ../../mod/content.php:481 ../../mod/content.php:864 -#: ../../object/Item.php:340 ../../include/conversation.php:674 -#, php-format -msgid "%s from %s" -msgstr "%s til %s" +#: include/text.php:898 +msgid "View Contacts" +msgstr "Skoða tengiliði" -#: ../../mod/content.php:497 ../../include/conversation.php:690 -msgid "View in context" -msgstr "Birta í samhengi" +#: include/text.php:985 include/nav.php:122 mod/search.php:149 +msgid "Search" +msgstr "Leita" -#: ../../mod/content.php:603 ../../object/Item.php:387 -#, php-format -msgid "%d comment" -msgid_plural "%d comments" -msgstr[0] "%d ummæli" -msgstr[1] "%d ummæli" +#: include/text.php:986 mod/notes.php:61 mod/filer.php:31 mod/editpost.php:109 +msgid "Save" +msgstr "Vista" -#: ../../mod/content.php:605 ../../object/Item.php:389 -#: ../../object/Item.php:402 ../../include/text.php:1972 +#: include/text.php:988 include/nav.php:40 +msgid "@name, !forum, #tags, content" +msgstr "@nafn, !spjallsvæði, #merki, innihald" + +#: include/text.php:993 include/nav.php:125 +msgid "Full Text" +msgstr "Allur textinn" + +#: include/text.php:994 include/nav.php:126 +msgid "Tags" +msgstr "Merki" + +#: include/text.php:995 include/identity.php:781 include/identity.php:784 +#: include/nav.php:127 include/nav.php:193 mod/viewcontacts.php:116 +#: mod/contacts.php:785 mod/contacts.php:846 view/theme/frio/theme.php:257 +#: view/theme/diabook/theme.php:125 +msgid "Contacts" +msgstr "Tengiliðir" + +#: include/text.php:1049 +msgid "poke" +msgstr "pota" + +#: include/text.php:1049 +msgid "poked" +msgstr "potaði" + +#: include/text.php:1050 +msgid "ping" +msgstr "" + +#: include/text.php:1050 +msgid "pinged" +msgstr "" + +#: include/text.php:1051 +msgid "prod" +msgstr "" + +#: include/text.php:1051 +msgid "prodded" +msgstr "" + +#: include/text.php:1052 +msgid "slap" +msgstr "" + +#: include/text.php:1052 +msgid "slapped" +msgstr "" + +#: include/text.php:1053 +msgid "finger" +msgstr "" + +#: include/text.php:1053 +msgid "fingered" +msgstr "" + +#: include/text.php:1054 +msgid "rebuff" +msgstr "" + +#: include/text.php:1054 +msgid "rebuffed" +msgstr "" + +#: include/text.php:1068 +msgid "happy" +msgstr "" + +#: include/text.php:1069 +msgid "sad" +msgstr "" + +#: include/text.php:1070 +msgid "mellow" +msgstr "" + +#: include/text.php:1071 +msgid "tired" +msgstr "" + +#: include/text.php:1072 +msgid "perky" +msgstr "" + +#: include/text.php:1073 +msgid "angry" +msgstr "" + +#: include/text.php:1074 +msgid "stupified" +msgstr "" + +#: include/text.php:1075 +msgid "puzzled" +msgstr "" + +#: include/text.php:1076 +msgid "interested" +msgstr "" + +#: include/text.php:1077 +msgid "bitter" +msgstr "" + +#: include/text.php:1078 +msgid "cheerful" +msgstr "" + +#: include/text.php:1079 +msgid "alive" +msgstr "" + +#: include/text.php:1080 +msgid "annoyed" +msgstr "" + +#: include/text.php:1081 +msgid "anxious" +msgstr "" + +#: include/text.php:1082 +msgid "cranky" +msgstr "" + +#: include/text.php:1083 +msgid "disturbed" +msgstr "" + +#: include/text.php:1084 +msgid "frustrated" +msgstr "" + +#: include/text.php:1085 +msgid "motivated" +msgstr "" + +#: include/text.php:1086 +msgid "relaxed" +msgstr "" + +#: include/text.php:1087 +msgid "surprised" +msgstr "" + +#: include/text.php:1301 mod/videos.php:383 +msgid "View Video" +msgstr "Skoða myndskeið" + +#: include/text.php:1333 +msgid "bytes" +msgstr "bæti" + +#: include/text.php:1365 include/text.php:1377 +msgid "Click to open/close" +msgstr "" + +#: include/text.php:1503 +msgid "View on separate page" +msgstr "" + +#: include/text.php:1504 +msgid "view on separate page" +msgstr "" + +#: include/text.php:1779 include/conversation.php:122 +#: include/conversation.php:258 include/like.php:165 +#: view/theme/diabook/theme.php:463 +msgid "event" +msgstr "atburður" + +#: include/text.php:1781 include/conversation.php:130 +#: include/conversation.php:266 include/like.php:163 mod/tagger.php:62 +#: mod/subthread.php:87 view/theme/diabook/theme.php:471 +msgid "photo" +msgstr "mynd" + +#: include/text.php:1783 +msgid "activity" +msgstr "virkni" + +#: include/text.php:1785 mod/content.php:623 object/Item.php:431 +#: object/Item.php:444 msgid "comment" msgid_plural "comments" msgstr[0] "athugasemd" msgstr[1] "athugasemdir" -#: ../../mod/content.php:606 ../../boot.php:751 ../../object/Item.php:390 -#: ../../include/contact_widgets.php:205 -msgid "show more" -msgstr "sýna meira" - -#: ../../mod/content.php:620 ../../mod/photos.php:1359 -#: ../../object/Item.php:116 -msgid "Private Message" -msgstr "Einkaskilaboð" - -#: ../../mod/content.php:684 ../../mod/photos.php:1542 -#: ../../object/Item.php:231 -msgid "I like this (toggle)" -msgstr "Mér líkar þetta (kveikja/slökkva)" - -#: ../../mod/content.php:684 ../../object/Item.php:231 -msgid "like" -msgstr "líkar" - -#: ../../mod/content.php:685 ../../mod/photos.php:1543 -#: ../../object/Item.php:232 -msgid "I don't like this (toggle)" -msgstr "Mér líkar þetta ekki (kveikja/slökkva)" - -#: ../../mod/content.php:685 ../../object/Item.php:232 -msgid "dislike" -msgstr "mislíkar" - -#: ../../mod/content.php:687 ../../object/Item.php:234 -msgid "Share this" -msgstr "Deila þessu" - -#: ../../mod/content.php:687 ../../object/Item.php:234 -msgid "share" -msgstr "deila" - -#: ../../mod/content.php:707 ../../mod/photos.php:1562 -#: ../../mod/photos.php:1606 ../../mod/photos.php:1694 -#: ../../object/Item.php:675 -msgid "This is you" -msgstr "Þetta ert þú" - -#: ../../mod/content.php:709 ../../mod/photos.php:1564 -#: ../../mod/photos.php:1608 ../../mod/photos.php:1696 ../../boot.php:750 -#: ../../object/Item.php:361 ../../object/Item.php:677 -msgid "Comment" -msgstr "Athugasemd" - -#: ../../mod/content.php:711 ../../object/Item.php:679 -msgid "Bold" -msgstr "Feitletrað" - -#: ../../mod/content.php:712 ../../object/Item.php:680 -msgid "Italic" -msgstr "Skáletrað" - -#: ../../mod/content.php:713 ../../object/Item.php:681 -msgid "Underline" -msgstr "Undirstrikað" - -#: ../../mod/content.php:714 ../../object/Item.php:682 -msgid "Quote" -msgstr "Gæsalappir" - -#: ../../mod/content.php:715 ../../object/Item.php:683 -msgid "Code" -msgstr "Kóði" - -#: ../../mod/content.php:716 ../../object/Item.php:684 -msgid "Image" -msgstr "Mynd" - -#: ../../mod/content.php:717 ../../object/Item.php:685 -msgid "Link" -msgstr "Tengill" - -#: ../../mod/content.php:718 ../../object/Item.php:686 -msgid "Video" -msgstr "Myndband" - -#: ../../mod/content.php:719 ../../mod/editpost.php:145 -#: ../../mod/photos.php:1566 ../../mod/photos.php:1610 -#: ../../mod/photos.php:1698 ../../object/Item.php:687 -#: ../../include/conversation.php:1126 -msgid "Preview" -msgstr "Forskoðun" - -#: ../../mod/content.php:728 ../../mod/settings.php:676 -#: ../../object/Item.php:120 -msgid "Edit" -msgstr "Breyta" - -#: ../../mod/content.php:753 ../../object/Item.php:195 -msgid "add star" -msgstr "bæta við stjörnu" - -#: ../../mod/content.php:754 ../../object/Item.php:196 -msgid "remove star" -msgstr "eyða stjörnu" - -#: ../../mod/content.php:755 ../../object/Item.php:197 -msgid "toggle star status" -msgstr "Kveikja/slökkva á stjörnu" - -#: ../../mod/content.php:758 ../../object/Item.php:200 -msgid "starred" -msgstr "stjörnumerkt" - -#: ../../mod/content.php:759 ../../object/Item.php:220 -msgid "add tag" -msgstr "bæta við merki" - -#: ../../mod/content.php:763 ../../object/Item.php:133 -msgid "save to folder" -msgstr "vista í möppu" - -#: ../../mod/content.php:854 ../../object/Item.php:328 -msgid "to" -msgstr "við" - -#: ../../mod/content.php:855 ../../object/Item.php:330 -msgid "Wall-to-Wall" -msgstr "vegg við vegg" - -#: ../../mod/content.php:856 ../../object/Item.php:331 -msgid "via Wall-To-Wall:" -msgstr "gegnum vegg við vegg" - -#: ../../mod/removeme.php:46 ../../mod/removeme.php:49 -msgid "Remove My Account" -msgstr "Eyða þessum notanda" - -#: ../../mod/removeme.php:47 -msgid "" -"This will completely remove your account. Once this has been done it is not " -"recoverable." -msgstr "Þetta mun algjörlega eyða notandanum. Þegar þetta hefur verið gert er þetta ekki afturkræft." - -#: ../../mod/removeme.php:48 -msgid "Please enter your password for verification:" -msgstr "Sláðu inn aðgangsorð yðar:" - -#: ../../mod/install.php:117 -msgid "Friendica Communications Server - Setup" +#: include/text.php:1786 +msgid "post" msgstr "" -#: ../../mod/install.php:123 -msgid "Could not connect to database." -msgstr "Gat ekki tengst gagnagrunn." - -#: ../../mod/install.php:127 -msgid "Could not create table." -msgstr "Gat ekki búið til töflu." - -#: ../../mod/install.php:133 -msgid "Your Friendica site database has been installed." -msgstr "Friendica gagnagrunnurinn þinn hefur verið uppsettur." - -#: ../../mod/install.php:138 -msgid "" -"You may need to import the file \"database.sql\" manually using phpmyadmin " -"or mysql." -msgstr "Þú þarft mögulega að keyra inn skránna \"database.sql\" handvirkt með phpmyadmin eða mysql." - -#: ../../mod/install.php:139 ../../mod/install.php:206 -#: ../../mod/install.php:525 -msgid "Please see the file \"INSTALL.txt\"." -msgstr "Vinsamlegast lestu skránna \"INSTALL.txt\"." - -#: ../../mod/install.php:203 -msgid "System check" -msgstr "Kerfis prófun" - -#: ../../mod/install.php:208 -msgid "Check again" -msgstr "Prófa aftur" - -#: ../../mod/install.php:227 -msgid "Database connection" -msgstr "Gangagrunns tenging" - -#: ../../mod/install.php:228 -msgid "" -"In order to install Friendica we need to know how to connect to your " -"database." -msgstr "Til að setja upp Friendica þurfum við að vita hvernig á að tengjast gagnagrunninum þínum." - -#: ../../mod/install.php:229 -msgid "" -"Please contact your hosting provider or site administrator if you have " -"questions about these settings." -msgstr "Vinsamlegast hafðu samband við hýsingaraðilann þinn eða kerfisstjóra ef þú hefur spurningar um þessar stillingar." - -#: ../../mod/install.php:230 -msgid "" -"The database you specify below should already exist. If it does not, please " -"create it before continuing." -msgstr "Gagnagrunnurinn sem þú bendir á þarf þegar að vera til. Ef ekki þá þarf að stofna hann áður en haldið er áfram." - -#: ../../mod/install.php:234 -msgid "Database Server Name" -msgstr "Vélanafn gagangrunns" - -#: ../../mod/install.php:235 -msgid "Database Login Name" -msgstr "Notendanafn í gagnagrunn" - -#: ../../mod/install.php:236 -msgid "Database Login Password" -msgstr "Aðgangsorð í gagnagrunns" - -#: ../../mod/install.php:237 -msgid "Database Name" -msgstr "Nafn gagnagrunns" - -#: ../../mod/install.php:238 ../../mod/install.php:277 -msgid "Site administrator email address" -msgstr "Póstfang kerfisstjóri vefs" - -#: ../../mod/install.php:238 ../../mod/install.php:277 -msgid "" -"Your account email address must match this in order to use the web admin " -"panel." -msgstr "Notanda póstfang þitt verður að passa við þetta til að hægt sé að nota umsýslu vefviðmót." - -#: ../../mod/install.php:242 ../../mod/install.php:280 -msgid "Please select a default timezone for your website" -msgstr "Vinsamlegast veldu sjálfgefið tímabelti fyrir vefsíðuna" - -#: ../../mod/install.php:267 -msgid "Site settings" -msgstr "Stillingar vefs" - -#: ../../mod/install.php:321 -msgid "Could not find a command line version of PHP in the web server PATH." -msgstr "Gat ekki fundið skipanalínu útgáfu af PHP í vefþjóns PATH." - -#: ../../mod/install.php:322 -msgid "" -"If you don't have a command line version of PHP installed on server, you " -"will not be able to run background polling via cron. See 'Activating scheduled tasks'" +#: include/text.php:1954 +msgid "Item filed" msgstr "" -#: ../../mod/install.php:326 -msgid "PHP executable path" -msgstr "PHP keyrslu slóð" - -#: ../../mod/install.php:326 -msgid "" -"Enter full path to php executable. You can leave this blank to continue the " -"installation." -msgstr "" - -#: ../../mod/install.php:331 -msgid "Command line PHP" -msgstr "Skipanalínu PHP" - -#: ../../mod/install.php:340 -msgid "PHP executable is not the php cli binary (could be cgi-fgci version)" -msgstr "" - -#: ../../mod/install.php:341 -msgid "Found PHP version: " -msgstr "" - -#: ../../mod/install.php:343 -msgid "PHP cli binary" -msgstr "" - -#: ../../mod/install.php:354 -msgid "" -"The command line version of PHP on your system does not have " -"\"register_argc_argv\" enabled." -msgstr "Skipanalínu útgáfa af PHP á vefþjóninum hefur ekki kveikt á \"register_argc_argv\"." - -#: ../../mod/install.php:355 -msgid "This is required for message delivery to work." -msgstr "Þetta er skilyrt fyrir því að skilaboð komist til skila." - -#: ../../mod/install.php:357 -msgid "PHP register_argc_argv" -msgstr "" - -#: ../../mod/install.php:378 -msgid "" -"Error: the \"openssl_pkey_new\" function on this system is not able to " -"generate encryption keys" -msgstr "Villa: Stefjan \"openssl_pkey_new\" á vefþjóninum getur ekki stofnað dulkóðunar lykla" - -#: ../../mod/install.php:379 -msgid "" -"If running under Windows, please see " -"\"http://www.php.net/manual/en/openssl.installation.php\"." -msgstr "Ef keyrt er á Window, vinsamlegast skoðið \"http://www.php.net/manual/en/openssl.installation.php\"." - -#: ../../mod/install.php:381 -msgid "Generate encryption keys" -msgstr "Búa til dulkóðunar lykla" - -#: ../../mod/install.php:388 -msgid "libCurl PHP module" -msgstr "libCurl PHP eining" - -#: ../../mod/install.php:389 -msgid "GD graphics PHP module" -msgstr "GD graphics PHP eining" - -#: ../../mod/install.php:390 -msgid "OpenSSL PHP module" -msgstr "OpenSSL PHP eining" - -#: ../../mod/install.php:391 -msgid "mysqli PHP module" -msgstr "mysqli PHP eining" - -#: ../../mod/install.php:392 -msgid "mb_string PHP module" -msgstr "mb_string PHP eining" - -#: ../../mod/install.php:397 ../../mod/install.php:399 -msgid "Apache mod_rewrite module" -msgstr "Apache mod_rewrite eining" - -#: ../../mod/install.php:397 -msgid "" -"Error: Apache webserver mod-rewrite module is required but not installed." -msgstr "Villa: Apache vefþjóns eining mod-rewrite er skilyrði og er ekki uppsett. " - -#: ../../mod/install.php:405 -msgid "Error: libCURL PHP module required but not installed." -msgstr "Villa: libCurl PHP eining er skilyrði og er ekki uppsett." - -#: ../../mod/install.php:409 -msgid "" -"Error: GD graphics PHP module with JPEG support required but not installed." -msgstr "Villa: GD graphics PHP eining með JPEG stuðningi er skilyrði og er ekki uppsett." - -#: ../../mod/install.php:413 -msgid "Error: openssl PHP module required but not installed." -msgstr "Villa: openssl PHP eining skilyrði og er ekki uppsett." - -#: ../../mod/install.php:417 -msgid "Error: mysqli PHP module required but not installed." -msgstr "Villa: mysqli PHP eining er skilyrði og er ekki uppsett" - -#: ../../mod/install.php:421 -msgid "Error: mb_string PHP module required but not installed." -msgstr "Villa: mb_string PHP eining skilyrði en ekki uppsett." - -#: ../../mod/install.php:438 -msgid "" -"The web installer needs to be able to create a file called \".htconfig.php\"" -" in the top folder of your web server and it is unable to do so." -msgstr "Vef uppsetningar forrit þarf að geta stofnað skránna \".htconfig.php\" in efsta skráarsafninu á vefþjóninum og það getur ekki gert það." - -#: ../../mod/install.php:439 -msgid "" -"This is most often a permission setting, as the web server may not be able " -"to write files in your folder - even if you can." -msgstr "Þetta er oftast aðgangsstýringa stilling, þar sem vefþjónninn getur ekki skrifað út skrár í skráarsafnið - þó þú getir það." - -#: ../../mod/install.php:440 -msgid "" -"At the end of this procedure, we will give you a text to save in a file " -"named .htconfig.php in your Friendica top folder." -msgstr "" - -#: ../../mod/install.php:441 -msgid "" -"You can alternatively skip this procedure and perform a manual installation." -" Please see the file \"INSTALL.txt\" for instructions." -msgstr "" - -#: ../../mod/install.php:444 -msgid ".htconfig.php is writable" -msgstr ".htconfig.php er skrifanleg" - -#: ../../mod/install.php:454 -msgid "" -"Friendica uses the Smarty3 template engine to render its web views. Smarty3 " -"compiles templates to PHP to speed up rendering." -msgstr "" - -#: ../../mod/install.php:455 -msgid "" -"In order to store these compiled templates, the web server needs to have " -"write access to the directory view/smarty3/ under the Friendica top level " -"folder." -msgstr "" - -#: ../../mod/install.php:456 -msgid "" -"Please ensure that the user that your web server runs as (e.g. www-data) has" -" write access to this folder." -msgstr "" - -#: ../../mod/install.php:457 -msgid "" -"Note: as a security measure, you should give the web server write access to " -"view/smarty3/ only--not the template files (.tpl) that it contains." -msgstr "" - -#: ../../mod/install.php:460 -msgid "view/smarty3 is writable" -msgstr "" - -#: ../../mod/install.php:472 -msgid "" -"Url rewrite in .htaccess is not working. Check your server configuration." -msgstr "" - -#: ../../mod/install.php:474 -msgid "Url rewrite is working" -msgstr "" - -#: ../../mod/install.php:484 -msgid "" -"The database configuration file \".htconfig.php\" could not be written. " -"Please use the enclosed text to create a configuration file in your web " -"server root." -msgstr "Ekki tókst að skrifa gagnagrunns stillingar skrá \".htconfig.php\". Vinsamlegast notaði viðhangandi texta til að búa til stillingar skrá á vefþjóns rótina." - -#: ../../mod/install.php:523 -msgid "

What next

" -msgstr "" - -#: ../../mod/install.php:524 -msgid "" -"IMPORTANT: You will need to [manually] setup a scheduled task for the " -"poller." -msgstr "MIKILVÆGT: Þú þarft að [handvirkt] setja upp sjálfvirka keyrslu á poller." - -#: ../../mod/wallmessage.php:42 ../../mod/wallmessage.php:112 +#: include/conversation.php:144 include/like.php:184 #, php-format -msgid "Number of daily wall messages for %s exceeded. Message failed." -msgstr "" +msgid "%1$s doesn't like %2$s's %3$s" +msgstr "%1$s líkar ekki við %3$s hjá %2$s " -#: ../../mod/wallmessage.php:59 -msgid "Unable to check your home location." -msgstr "" - -#: ../../mod/wallmessage.php:86 ../../mod/wallmessage.php:95 -msgid "No recipient." -msgstr "" - -#: ../../mod/wallmessage.php:143 +#: include/conversation.php:147 #, 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." +msgid "%1$s attends %2$s's %3$s" msgstr "" -#: ../../mod/help.php:79 -msgid "Help:" -msgstr "Hjálp:" - -#: ../../mod/help.php:84 ../../include/nav.php:114 -msgid "Help" -msgstr "Hjálp" - -#: ../../mod/help.php:90 ../../index.php:256 -msgid "Not Found" -msgstr "Fannst ekki" - -#: ../../mod/help.php:93 ../../index.php:259 -msgid "Page not found." -msgstr "Síða fannst ekki." - -#: ../../mod/dfrn_poll.php:103 ../../mod/dfrn_poll.php:536 +#: include/conversation.php:150 #, php-format -msgid "%1$s welcomes %2$s" +msgid "%1$s doesn't attend %2$s's %3$s" msgstr "" -#: ../../mod/home.php:35 +#: include/conversation.php:153 #, php-format -msgid "Welcome to %s" -msgstr "Velkomin(n) til %s" - -#: ../../mod/wall_attach.php:75 -msgid "Sorry, maybe your upload is bigger than the PHP configuration allows" +msgid "%1$s attends maybe %2$s's %3$s" msgstr "" -#: ../../mod/wall_attach.php:75 -msgid "Or - did you try to upload an empty file?" -msgstr "" - -#: ../../mod/wall_attach.php:81 +#: include/conversation.php:185 mod/dfrn_confirm.php:472 #, php-format -msgid "File exceeds size limit of %d" -msgstr "Skrá stærri en takmarkið %d" +msgid "%1$s is now friends with %2$s" +msgstr "Núna er %1$s vinur %2$s" -#: ../../mod/wall_attach.php:122 ../../mod/wall_attach.php:133 -msgid "File upload failed." -msgstr "Skráar upphlöðun mistókst." - -#: ../../mod/match.php:12 -msgid "Profile Match" -msgstr "Forsíða fannst" - -#: ../../mod/match.php:20 -msgid "No keywords to match. Please add keywords to your default profile." -msgstr "Engin leitarorð. Bættu við leitarorðum í sjálfgefnu forsíðuna." - -#: ../../mod/match.php:57 -msgid "is interested in:" -msgstr "hefur áhuga á:" - -#: ../../mod/match.php:58 ../../mod/suggest.php:90 ../../boot.php:1568 -#: ../../include/contact_widgets.php:10 -msgid "Connect" -msgstr "Tengjast" - -#: ../../mod/share.php:44 -msgid "link" -msgstr "" - -#: ../../mod/community.php:23 -msgid "Not available." -msgstr "Ekki í boði." - -#: ../../mod/community.php:32 ../../include/nav.php:129 -#: ../../include/nav.php:131 ../../view/theme/diabook/theme.php:129 -msgid "Community" -msgstr "Samfélag" - -#: ../../mod/community.php:62 ../../mod/community.php:71 -#: ../../mod/search.php:168 ../../mod/search.php:192 -msgid "No results." -msgstr "Engar leitarniðurstöður." - -#: ../../mod/settings.php:29 ../../mod/photos.php:80 -msgid "everybody" -msgstr "allir" - -#: ../../mod/settings.php:41 -msgid "Additional features" -msgstr "" - -#: ../../mod/settings.php:46 -msgid "Display" -msgstr "" - -#: ../../mod/settings.php:52 ../../mod/settings.php:780 -msgid "Social Networks" -msgstr "" - -#: ../../mod/settings.php:62 ../../include/nav.php:170 -msgid "Delegations" -msgstr "" - -#: ../../mod/settings.php:67 -msgid "Connected apps" -msgstr "" - -#: ../../mod/settings.php:72 ../../mod/uexport.php:85 -msgid "Export personal data" -msgstr "Sækja persónuleg gögn" - -#: ../../mod/settings.php:77 -msgid "Remove account" -msgstr "Henda tengilið" - -#: ../../mod/settings.php:129 -msgid "Missing some important data!" -msgstr "Vantar mikilvæg gögn!" - -#: ../../mod/settings.php:238 -msgid "Failed to connect with email account using the settings provided." -msgstr "Ekki tókst að tengjast við pósthólf með stillingum sem uppgefnar eru." - -#: ../../mod/settings.php:243 -msgid "Email settings updated." -msgstr "Stillingar póstfangs uppfærðar." - -#: ../../mod/settings.php:258 -msgid "Features updated" -msgstr "" - -#: ../../mod/settings.php:321 -msgid "Relocate message has been send to your contacts" -msgstr "" - -#: ../../mod/settings.php:335 -msgid "Passwords do not match. Password unchanged." -msgstr "Aðgangsorð ber ekki saman. Aðgangsorð óbreytt." - -#: ../../mod/settings.php:340 -msgid "Empty passwords are not allowed. Password unchanged." -msgstr "Tóm aðgangsorð eru ekki leyfileg. Aðgangsorð óbreytt." - -#: ../../mod/settings.php:348 -msgid "Wrong password." -msgstr "" - -#: ../../mod/settings.php:359 -msgid "Password changed." -msgstr "Aðgangsorði breytt." - -#: ../../mod/settings.php:361 -msgid "Password update failed. Please try again." -msgstr "Uppfærsla á aðgangsorði tókst ekki. Reyndu aftur." - -#: ../../mod/settings.php:428 -msgid " Please use a shorter name." -msgstr "Vinsamlegast nota styttra nafn." - -#: ../../mod/settings.php:430 -msgid " Name too short." -msgstr "Nafn of stutt." - -#: ../../mod/settings.php:439 -msgid "Wrong Password" -msgstr "" - -#: ../../mod/settings.php:444 -msgid " Not valid email." -msgstr "Póstfang ógilt" - -#: ../../mod/settings.php:450 -msgid " Cannot change to that email." -msgstr "Ekki hægt að breyta yfir í þetta póstfang." - -#: ../../mod/settings.php:506 -msgid "Private forum has no privacy permissions. Using default privacy group." -msgstr "" - -#: ../../mod/settings.php:510 -msgid "Private forum has no privacy permissions and no default privacy group." -msgstr "" - -#: ../../mod/settings.php:540 -msgid "Settings updated." -msgstr "Stillingar uppfærðar" - -#: ../../mod/settings.php:613 ../../mod/settings.php:639 -#: ../../mod/settings.php:675 -msgid "Add application" -msgstr "Bæta við forriti" - -#: ../../mod/settings.php:617 ../../mod/settings.php:643 -msgid "Consumer Key" -msgstr "Notenda lykill" - -#: ../../mod/settings.php:618 ../../mod/settings.php:644 -msgid "Consumer Secret" -msgstr "Notenda leyndarmál" - -#: ../../mod/settings.php:619 ../../mod/settings.php:645 -msgid "Redirect" -msgstr "Áframsenda" - -#: ../../mod/settings.php:620 ../../mod/settings.php:646 -msgid "Icon url" -msgstr "Táknmyndar slóð" - -#: ../../mod/settings.php:631 -msgid "You can't edit this application." -msgstr "Þú getur ekki breytt þessu forriti." - -#: ../../mod/settings.php:674 -msgid "Connected Apps" -msgstr "Tengd forr" - -#: ../../mod/settings.php:678 -msgid "Client key starts with" -msgstr "Lykill viðskiptavinar byrjar á" - -#: ../../mod/settings.php:679 -msgid "No name" -msgstr "Ekkert nafn" - -#: ../../mod/settings.php:680 -msgid "Remove authorization" -msgstr "Fjarlæga auðkenningu" - -#: ../../mod/settings.php:692 -msgid "No Plugin settings configured" -msgstr "Engar stillingar í einingu stilltar" - -#: ../../mod/settings.php:700 -msgid "Plugin Settings" -msgstr "Eininga stillingar" - -#: ../../mod/settings.php:714 -msgid "Off" -msgstr "" - -#: ../../mod/settings.php:714 -msgid "On" -msgstr "" - -#: ../../mod/settings.php:722 -msgid "Additional Features" -msgstr "" - -#: ../../mod/settings.php:736 ../../mod/settings.php:737 +#: include/conversation.php:219 #, php-format -msgid "Built-in support for %s connectivity is %s" -msgstr "Innbyggður stuðningur fyrir %s tenging er%s" +msgid "%1$s poked %2$s" +msgstr "%1$s potaði í %2$s" -#: ../../mod/settings.php:736 ../../mod/dfrn_request.php:838 -#: ../../include/contact_selectors.php:80 -msgid "Diaspora" -msgstr "Diaspora" - -#: ../../mod/settings.php:736 ../../mod/settings.php:737 -msgid "enabled" -msgstr "kveikt" - -#: ../../mod/settings.php:736 ../../mod/settings.php:737 -msgid "disabled" -msgstr "slökkt" - -#: ../../mod/settings.php:737 -msgid "StatusNet" -msgstr "StatusNet" - -#: ../../mod/settings.php:773 -msgid "Email access is disabled on this site." -msgstr "Slökkt hefur verið á tölvupóst aðgang á þessum þjón." - -#: ../../mod/settings.php:785 -msgid "Email/Mailbox Setup" -msgstr "Tölvupóstur stilling" - -#: ../../mod/settings.php:786 -msgid "" -"If you wish to communicate with email contacts using this service " -"(optional), please specify how to connect to your mailbox." -msgstr "Ef þú villt hafa samskipti við tölvupósts tengiliði með þessari þjónustu (valfrjálst), skilgreindu þá hvernig á að tengjast póstfanginu þínu." - -#: ../../mod/settings.php:787 -msgid "Last successful email check:" -msgstr "Póstfang sannreynt síðast:" - -#: ../../mod/settings.php:789 -msgid "IMAP server name:" -msgstr "IMAP þjónn:" - -#: ../../mod/settings.php:790 -msgid "IMAP port:" -msgstr "IMAP port:" - -#: ../../mod/settings.php:791 -msgid "Security:" -msgstr "Öryggi:" - -#: ../../mod/settings.php:791 ../../mod/settings.php:796 -msgid "None" -msgstr "Ekkert" - -#: ../../mod/settings.php:792 -msgid "Email login name:" -msgstr "Póstfangs aðgangsnafn:" - -#: ../../mod/settings.php:793 -msgid "Email password:" -msgstr "Póstfangs aðgangsorð:" - -#: ../../mod/settings.php:794 -msgid "Reply-to address:" -msgstr "Póstfang sem svar berst á:" - -#: ../../mod/settings.php:795 -msgid "Send public posts to all email contacts:" -msgstr "Senda opinberar færslur á alla tölvupóst viðtakendur:" - -#: ../../mod/settings.php:796 -msgid "Action after import:" -msgstr "" - -#: ../../mod/settings.php:796 -msgid "Mark as seen" -msgstr "Merka sem séð" - -#: ../../mod/settings.php:796 -msgid "Move to folder" -msgstr "Flytja yfir í skrásafn" - -#: ../../mod/settings.php:797 -msgid "Move to folder:" -msgstr "Flytja yfir í skrásafn:" - -#: ../../mod/settings.php:878 -msgid "Display Settings" -msgstr "" - -#: ../../mod/settings.php:884 ../../mod/settings.php:899 -msgid "Display Theme:" -msgstr "Útlits þema:" - -#: ../../mod/settings.php:885 -msgid "Mobile Theme:" -msgstr "" - -#: ../../mod/settings.php:886 -msgid "Update browser every xx seconds" -msgstr "Endurhlaða vefsíðu á xx sekúndu fresti" - -#: ../../mod/settings.php:886 -msgid "Minimum of 10 seconds, no maximum" -msgstr "Minnst 10 sekúndur, ekkert hámark" - -#: ../../mod/settings.php:887 -msgid "Number of items to display per page:" -msgstr "" - -#: ../../mod/settings.php:887 ../../mod/settings.php:888 -msgid "Maximum of 100 items" -msgstr "" - -#: ../../mod/settings.php:888 -msgid "Number of items to display per page when viewed from mobile device:" -msgstr "" - -#: ../../mod/settings.php:889 -msgid "Don't show emoticons" -msgstr "" - -#: ../../mod/settings.php:890 -msgid "Don't show notices" -msgstr "" - -#: ../../mod/settings.php:891 -msgid "Infinite scroll" -msgstr "" - -#: ../../mod/settings.php:892 -msgid "Automatic updates only at the top of the network page" -msgstr "" - -#: ../../mod/settings.php:969 -msgid "User Types" -msgstr "" - -#: ../../mod/settings.php:970 -msgid "Community Types" -msgstr "" - -#: ../../mod/settings.php:971 -msgid "Normal Account Page" -msgstr "" - -#: ../../mod/settings.php:972 -msgid "This account is a normal personal profile" -msgstr "Þessi notandi er með venjulega persónulega forsíðu" - -#: ../../mod/settings.php:975 -msgid "Soapbox Page" -msgstr "" - -#: ../../mod/settings.php:976 -msgid "Automatically approve all connection/friend requests as read-only fans" -msgstr "Sjálfkrafa samþykkja allar tengi/vina beiðnir sem, einungis lestrar aðdáendur" - -#: ../../mod/settings.php:979 -msgid "Community Forum/Celebrity Account" -msgstr "" - -#: ../../mod/settings.php:980 -msgid "" -"Automatically approve all connection/friend requests as read-write fans" -msgstr "Sjálfkrafa samþykkja allar tengi/vina beiðnir, sem les og skriftar aðdáendur" - -#: ../../mod/settings.php:983 -msgid "Automatic Friend Page" -msgstr "" - -#: ../../mod/settings.php:984 -msgid "Automatically approve all connection/friend requests as friends" -msgstr "Sjálfkrafa samþykkja allar tengi/vina beiðnir sem vini" - -#: ../../mod/settings.php:987 -msgid "Private Forum [Experimental]" -msgstr "" - -#: ../../mod/settings.php:988 -msgid "Private forum - approved members only" -msgstr "" - -#: ../../mod/settings.php:1000 -msgid "OpenID:" -msgstr "OpenID:" - -#: ../../mod/settings.php:1000 -msgid "(Optional) Allow this OpenID to login to this account." -msgstr "(Valfrjálst) Leyfa þessu OpenID til að auðkennast sem þessi notandi." - -#: ../../mod/settings.php:1010 -msgid "Publish your default profile in your local site directory?" -msgstr "Gefa út sjálfgefna forsíðu í tengiliðalista á þessum þjón?" - -#: ../../mod/settings.php:1010 ../../mod/settings.php:1016 -#: ../../mod/settings.php:1024 ../../mod/settings.php:1028 -#: ../../mod/settings.php:1033 ../../mod/settings.php:1039 -#: ../../mod/settings.php:1045 ../../mod/settings.php:1051 -#: ../../mod/settings.php:1081 ../../mod/settings.php:1082 -#: ../../mod/settings.php:1083 ../../mod/settings.php:1084 -#: ../../mod/settings.php:1085 ../../mod/dfrn_request.php:830 -#: ../../mod/register.php:234 ../../mod/profiles.php:661 -#: ../../mod/profiles.php:665 ../../mod/api.php:106 -msgid "No" -msgstr "Nei" - -#: ../../mod/settings.php:1016 -msgid "Publish your default profile in the global social directory?" -msgstr "Gefa sjálfgefna forsíðu út í alheimstengiliðalista?" - -#: ../../mod/settings.php:1024 -msgid "Hide your contact/friend list from viewers of your default profile?" -msgstr "Fela tengiliða-/vinalistann þinn fyrir áhorfendum á sjálfgefinni forsíðu?" - -#: ../../mod/settings.php:1028 ../../include/conversation.php:1057 -msgid "Hide your profile details from unknown viewers?" -msgstr "Fela forsíðu upplýsingar fyrir óþekktum? " - -#: ../../mod/settings.php:1028 -msgid "" -"If enabled, posting public messages to Diaspora and other networks isn't " -"possible." -msgstr "" - -#: ../../mod/settings.php:1033 -msgid "Allow friends to post to your profile page?" -msgstr "Leyfa vinum að deila á forsíðuna þína?" - -#: ../../mod/settings.php:1039 -msgid "Allow friends to tag your posts?" -msgstr "Leyfa vinum að merkja þínar færslur?" - -#: ../../mod/settings.php:1045 -msgid "Allow us to suggest you as a potential friend to new members?" -msgstr "Leyfa að stungið verði uppá þér sem hugsamlegum vinur fyrir aðra notendur? " - -#: ../../mod/settings.php:1051 -msgid "Permit unknown people to send you private mail?" -msgstr "" - -#: ../../mod/settings.php:1059 -msgid "Profile is not published." -msgstr "Forsíðu hefur ekki verið gefinn út." - -#: ../../mod/settings.php:1067 -msgid "Your Identity Address is" -msgstr "Auðkennisnetfangið þitt er" - -#: ../../mod/settings.php:1078 -msgid "Automatically expire posts after this many days:" -msgstr "Sjálfkrafa fyrna færslu eftir hvað marga daga:" - -#: ../../mod/settings.php:1078 -msgid "If empty, posts will not expire. Expired posts will be deleted" -msgstr "Tómar færslur renna ekki út. Útrunnum færslum er eytt" - -#: ../../mod/settings.php:1079 -msgid "Advanced expiration settings" -msgstr "Flóknar fyrningatíma stillingar" - -#: ../../mod/settings.php:1080 -msgid "Advanced Expiration" -msgstr "Flókin fyrning" - -#: ../../mod/settings.php:1081 -msgid "Expire posts:" -msgstr "Fyrna færslur:" - -#: ../../mod/settings.php:1082 -msgid "Expire personal notes:" -msgstr "Fyrna einka glósur:" - -#: ../../mod/settings.php:1083 -msgid "Expire starred posts:" -msgstr "Fyrna stjörnumerktar færslur:" - -#: ../../mod/settings.php:1084 -msgid "Expire photos:" -msgstr "Fyrna myndum:" - -#: ../../mod/settings.php:1085 -msgid "Only expire posts by others:" -msgstr "" - -#: ../../mod/settings.php:1111 -msgid "Account Settings" -msgstr "Notenda stillingar" - -#: ../../mod/settings.php:1119 -msgid "Password Settings" -msgstr "Aðgangsorða stillingar" - -#: ../../mod/settings.php:1120 -msgid "New Password:" -msgstr "Nýtt aðgangsorð:" - -#: ../../mod/settings.php:1121 -msgid "Confirm:" -msgstr "Staðfesta:" - -#: ../../mod/settings.php:1121 -msgid "Leave password fields blank unless changing" -msgstr "Hafðu aðgangsorða svæði tóm nema þegar verið er að breyta" - -#: ../../mod/settings.php:1122 -msgid "Current Password:" -msgstr "" - -#: ../../mod/settings.php:1122 ../../mod/settings.php:1123 -msgid "Your current password to confirm the changes" -msgstr "" - -#: ../../mod/settings.php:1123 -msgid "Password:" -msgstr "" - -#: ../../mod/settings.php:1127 -msgid "Basic Settings" -msgstr "Grunn stillingar" - -#: ../../mod/settings.php:1128 ../../include/profile_advanced.php:15 -msgid "Full Name:" -msgstr "Fullt nafn:" - -#: ../../mod/settings.php:1129 -msgid "Email Address:" -msgstr "Póstfang:" - -#: ../../mod/settings.php:1130 -msgid "Your Timezone:" -msgstr "Þitt tímabelti:" - -#: ../../mod/settings.php:1131 -msgid "Default Post Location:" -msgstr "Sjálfgefin staðsetning færslu:" - -#: ../../mod/settings.php:1132 -msgid "Use Browser Location:" -msgstr "Nota vafra staðsetningu:" - -#: ../../mod/settings.php:1135 -msgid "Security and Privacy Settings" -msgstr "Öryggis og næðis stillingar" - -#: ../../mod/settings.php:1137 -msgid "Maximum Friend Requests/Day:" -msgstr "Hámarks vinabeiðnir á dag:" - -#: ../../mod/settings.php:1137 ../../mod/settings.php:1167 -msgid "(to prevent spam abuse)" -msgstr "(til að koma í veg fyrir rusl misnotkun)" - -#: ../../mod/settings.php:1138 -msgid "Default Post Permissions" -msgstr "Sjálfgefnar aðgangstýring á færslum" - -#: ../../mod/settings.php:1139 -msgid "(click to open/close)" -msgstr "(ýttu á til að opna/loka)" - -#: ../../mod/settings.php:1148 ../../mod/photos.php:1146 -#: ../../mod/photos.php:1519 -msgid "Show to Groups" -msgstr "Birta hópum" - -#: ../../mod/settings.php:1149 ../../mod/photos.php:1147 -#: ../../mod/photos.php:1520 -msgid "Show to Contacts" -msgstr "Birta tengiliðum" - -#: ../../mod/settings.php:1150 -msgid "Default Private Post" -msgstr "" - -#: ../../mod/settings.php:1151 -msgid "Default Public Post" -msgstr "" - -#: ../../mod/settings.php:1155 -msgid "Default Permissions for New Posts" -msgstr "" - -#: ../../mod/settings.php:1167 -msgid "Maximum private messages per day from unknown people:" -msgstr "" - -#: ../../mod/settings.php:1170 -msgid "Notification Settings" -msgstr "Tilkynninga stillingar" - -#: ../../mod/settings.php:1171 -msgid "By default post a status message when:" -msgstr "" - -#: ../../mod/settings.php:1172 -msgid "accepting a friend request" -msgstr "" - -#: ../../mod/settings.php:1173 -msgid "joining a forum/community" -msgstr "ganga til liðs við hóp/samfélag" - -#: ../../mod/settings.php:1174 -msgid "making an interesting profile change" -msgstr "" - -#: ../../mod/settings.php:1175 -msgid "Send a notification email when:" -msgstr "Senda tilkynninga tölvupóst þegar:" - -#: ../../mod/settings.php:1176 -msgid "You receive an introduction" -msgstr "Þú færð kynningu" - -#: ../../mod/settings.php:1177 -msgid "Your introductions are confirmed" -msgstr "Þínar kynningar eru samþykktar" - -#: ../../mod/settings.php:1178 -msgid "Someone writes on your profile wall" -msgstr "Einhver skrifar á vegginn þínn" - -#: ../../mod/settings.php:1179 -msgid "Someone writes a followup comment" -msgstr "Einhver skrifar athugasemd á færslu hjá þér" - -#: ../../mod/settings.php:1180 -msgid "You receive a private message" -msgstr "Þú færð einkaskilaboð" - -#: ../../mod/settings.php:1181 -msgid "You receive a friend suggestion" -msgstr "Þér hefur borist vina uppástunga" - -#: ../../mod/settings.php:1182 -msgid "You are tagged in a post" -msgstr "Þú varst merkt(ur) í færslu" - -#: ../../mod/settings.php:1183 -msgid "You are poked/prodded/etc. in a post" -msgstr "" - -#: ../../mod/settings.php:1185 -msgid "Text-only notification emails" -msgstr "" - -#: ../../mod/settings.php:1187 -msgid "Send text only notification emails, without the html part" -msgstr "" - -#: ../../mod/settings.php:1189 -msgid "Advanced Account/Page Type Settings" -msgstr "" - -#: ../../mod/settings.php:1190 -msgid "Change the behaviour of this account for special situations" -msgstr "" - -#: ../../mod/settings.php:1193 -msgid "Relocate" -msgstr "" - -#: ../../mod/settings.php:1194 -msgid "" -"If you have moved this profile from another server, and some of your " -"contacts don't receive your updates, try pushing this button." -msgstr "" - -#: ../../mod/settings.php:1195 -msgid "Resend relocate message to contacts" -msgstr "" - -#: ../../mod/dfrn_request.php:95 -msgid "This introduction has already been accepted." -msgstr "Þessi kynning hefur þegar verið samþykkt." - -#: ../../mod/dfrn_request.php:120 ../../mod/dfrn_request.php:518 -msgid "Profile location is not valid or does not contain profile information." -msgstr "Forsíðu slóð er ekki í lagi eða inniheldur ekki forsíðu upplýsingum." - -#: ../../mod/dfrn_request.php:125 ../../mod/dfrn_request.php:523 -msgid "Warning: profile location has no identifiable owner name." -msgstr "Aðvörun: forsíðu staðsetning hefur ekki aðgreinanlegt eigendanafn." - -#: ../../mod/dfrn_request.php:127 ../../mod/dfrn_request.php:525 -msgid "Warning: profile location has no profile photo." -msgstr "Aðvörun: forsíðu slóð hefur ekki forsíðu mynd." - -#: ../../mod/dfrn_request.php:130 ../../mod/dfrn_request.php:528 -#, php-format -msgid "%d required parameter was not found at the given location" -msgid_plural "%d required parameters were not found at the given location" -msgstr[0] "%d skilyrt breyta fannst ekki á uppgefinni staðsetningu" -msgstr[1] "%d skilyrtar breytur fundust ekki á uppgefninni staðsetningu" - -#: ../../mod/dfrn_request.php:172 -msgid "Introduction complete." -msgstr "Kynning tilbúinn." - -#: ../../mod/dfrn_request.php:214 -msgid "Unrecoverable protocol error." -msgstr "Alvarleg samskipta villa." - -#: ../../mod/dfrn_request.php:242 -msgid "Profile unavailable." -msgstr "Ekki hægt að sækja forsíðu" - -#: ../../mod/dfrn_request.php:267 -#, php-format -msgid "%s has received too many connection requests today." -msgstr "%s hefur fengið of margar tengibeiðnir í dag." - -#: ../../mod/dfrn_request.php:268 -msgid "Spam protection measures have been invoked." -msgstr "Kveikt hefur verið á ruslsíu" - -#: ../../mod/dfrn_request.php:269 -msgid "Friends are advised to please try again in 24 hours." -msgstr "Vinir eru beðnir um að reyna aftur eftir 24 klukkustundir." - -#: ../../mod/dfrn_request.php:331 -msgid "Invalid locator" -msgstr "Ógild staðsetning" - -#: ../../mod/dfrn_request.php:340 -msgid "Invalid email address." -msgstr "Ógilt póstfang." - -#: ../../mod/dfrn_request.php:367 -msgid "This account has not been configured for email. Request failed." -msgstr "" - -#: ../../mod/dfrn_request.php:463 -msgid "Unable to resolve your name at the provided location." -msgstr "Ekki tókst að fletta upp nafninu þínu á uppgefinni staðsetningu." - -#: ../../mod/dfrn_request.php:476 -msgid "You have already introduced yourself here." -msgstr "Kynning hefur þegar átt sér stað hér." - -#: ../../mod/dfrn_request.php:480 -#, php-format -msgid "Apparently you are already friends with %s." -msgstr "Þú ert þegar vinur %s." - -#: ../../mod/dfrn_request.php:501 -msgid "Invalid profile URL." -msgstr "Ógild forsíðu slóð." - -#: ../../mod/dfrn_request.php:507 ../../include/follow.php:27 -msgid "Disallowed profile URL." -msgstr "Óleyfileg forsíðu slóð." - -#: ../../mod/dfrn_request.php:597 -msgid "Your introduction has been sent." -msgstr "Kynningin þín hefur verið send." - -#: ../../mod/dfrn_request.php:650 -msgid "Please login to confirm introduction." -msgstr "Skráðu þig inn til að staðfesta kynningu." - -#: ../../mod/dfrn_request.php:660 -msgid "" -"Incorrect identity currently logged in. Please login to " -"this profile." -msgstr "Ekki réttur notandi skráður inn. Skráðu þig inn sem þessi notandi." - -#: ../../mod/dfrn_request.php:671 -msgid "Hide this contact" -msgstr "Fela þennan tengilið" - -#: ../../mod/dfrn_request.php:674 -#, php-format -msgid "Welcome home %s." -msgstr "Velkomin(n) heim %s." - -#: ../../mod/dfrn_request.php:675 -#, php-format -msgid "Please confirm your introduction/connection request to %s." -msgstr "Vinsamlegas staðfestu kynninguna/tengibeiðnina við %s." - -#: ../../mod/dfrn_request.php:676 -msgid "Confirm" -msgstr "Staðfesta" - -#: ../../mod/dfrn_request.php:804 -msgid "" -"Please enter your 'Identity Address' from one of the following supported " -"communications networks:" -msgstr "Settu inn 'Auðkennisnetfang' þitt úr einhverjum af eftirfarandi samskiptanetum:" - -#: ../../mod/dfrn_request.php:824 -msgid "" -"If you are not yet a member of the free social web, follow this link to find a public" -" Friendica site and join us today." -msgstr "" - -#: ../../mod/dfrn_request.php:827 -msgid "Friend/Connection Request" -msgstr "Vina/Tengi Beiðni" - -#: ../../mod/dfrn_request.php:828 -msgid "" -"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, " -"testuser@identi.ca" -msgstr "Dæmi: siggi@demo.friendica.com, http://demo.friendica.com/profile/siggi, prufunotandi@identi.ca" - -#: ../../mod/dfrn_request.php:829 -msgid "Please answer the following:" -msgstr "Vinnsamlegast svaraðu eftirfarandi:" - -#: ../../mod/dfrn_request.php:830 -#, php-format -msgid "Does %s know you?" -msgstr "Þekkir %s þig?" - -#: ../../mod/dfrn_request.php:834 -msgid "Add a personal note:" -msgstr "Bæta við persónulegri athugasemd" - -#: ../../mod/dfrn_request.php:836 ../../include/contact_selectors.php:76 -msgid "Friendica" -msgstr "Friendica" - -#: ../../mod/dfrn_request.php:837 -msgid "StatusNet/Federated Social Web" -msgstr "StatusNet/Federated Social Web" - -#: ../../mod/dfrn_request.php:839 -#, php-format -msgid "" -" - please do not use this form. Instead, enter %s into your Diaspora search" -" bar." -msgstr "" - -#: ../../mod/dfrn_request.php:840 -msgid "Your Identity Address:" -msgstr "Auðkennisnetfang þitt:" - -#: ../../mod/dfrn_request.php:843 -msgid "Submit Request" -msgstr "Senda beiðni" - -#: ../../mod/register.php:90 -msgid "" -"Registration successful. Please check your email for further instructions." -msgstr "Nýskráning tóks. Frekari fyrirmæli voru send í tölvupósti." - -#: ../../mod/register.php:96 -#, php-format -msgid "" -"Failed to send email message. Here your accout details:
login: %s
" -"password: %s

You can change your password after login." -msgstr "" - -#: ../../mod/register.php:105 -msgid "Your registration can not be processed." -msgstr "Skráninguna þína er ekki hægt að vinna." - -#: ../../mod/register.php:148 -msgid "Your registration is pending approval by the site owner." -msgstr "Skráningin þín bíður samþykkis af eiganda síðunnar." - -#: ../../mod/register.php:186 ../../mod/uimport.php:50 -msgid "" -"This site has exceeded the number of allowed daily account registrations. " -"Please try again tomorrow." -msgstr "Þessi vefur hefur náð hámarks fjölda daglegra nýskráninga. Reyndu aftur á morgun." - -#: ../../mod/register.php:214 -msgid "" -"You may (optionally) fill in this form via OpenID by supplying your OpenID " -"and clicking 'Register'." -msgstr "Þú mátt (valfrjálst) fylla í þetta svæði gegnum OpenID með því gefa upp þitt OpenID og ýta á 'Skrá'." - -#: ../../mod/register.php:215 -msgid "" -"If you are not familiar with OpenID, please leave that field blank and fill " -"in the rest of the items." -msgstr "Ef þú veist ekki hvað OpenID er, skildu þá þetta svæði eftir tómt en fylltu í restin af svæðunum." - -#: ../../mod/register.php:216 -msgid "Your OpenID (optional): " -msgstr "Þitt OpenID (valfrjálst):" - -#: ../../mod/register.php:230 -msgid "Include your profile in member directory?" -msgstr "Á forsíðan þín að sjást í notendalistanum?" - -#: ../../mod/register.php:251 -msgid "Membership on this site is by invitation only." -msgstr "Aðild að þessum vef er " - -#: ../../mod/register.php:252 -msgid "Your invitation ID: " -msgstr "Boðskorta auðkenni:" - -#: ../../mod/register.php:263 -msgid "Your Full Name (e.g. Joe Smith): " -msgstr "Full nafn (t.d. Jón Jónsson):" - -#: ../../mod/register.php:264 -msgid "Your Email Address: " -msgstr "Tölvupóstur:" - -#: ../../mod/register.php:265 -msgid "" -"Choose a profile nickname. This must begin with a text character. Your " -"profile address on this site will then be " -"'nickname@$sitename'." -msgstr "Veldu gælunafn. Verður að byrja á staf. Slóðin þín á þessum vef verður síðan 'gælunafn@$sitename'." - -#: ../../mod/register.php:266 -msgid "Choose a nickname: " -msgstr "Veldu gælunafn:" - -#: ../../mod/register.php:269 ../../boot.php:1241 ../../include/nav.php:109 -msgid "Register" -msgstr "Nýskrá" - -#: ../../mod/register.php:275 ../../mod/uimport.php:64 -msgid "Import" -msgstr "Flytja inn" - -#: ../../mod/register.php:276 -msgid "Import your profile to this friendica instance" -msgstr "" - -#: ../../mod/maintenance.php:5 -msgid "System down for maintenance" -msgstr "Kerfið er óvirkt vegna viðhalds" - -#: ../../mod/search.php:99 ../../include/text.php:953 -#: ../../include/text.php:954 ../../include/nav.php:119 -msgid "Search" -msgstr "Leita" - -#: ../../mod/directory.php:51 ../../view/theme/diabook/theme.php:525 -msgid "Global Directory" -msgstr "Alheimstengiliðaskrá" - -#: ../../mod/directory.php:59 -msgid "Find on this site" -msgstr "Leita á þessum vef" - -#: ../../mod/directory.php:62 -msgid "Site Directory" -msgstr "Skrá yfir tengiliði á þessum vef" - -#: ../../mod/directory.php:113 ../../mod/profiles.php:750 -msgid "Age: " -msgstr "Aldur:" - -#: ../../mod/directory.php:116 -msgid "Gender: " -msgstr "Kyn:" - -#: ../../mod/directory.php:138 ../../boot.php:1650 -#: ../../include/profile_advanced.php:17 -msgid "Gender:" -msgstr "Kyn:" - -#: ../../mod/directory.php:140 ../../boot.php:1653 -#: ../../include/profile_advanced.php:37 -msgid "Status:" -msgstr "Staða:" - -#: ../../mod/directory.php:142 ../../boot.php:1655 -#: ../../include/profile_advanced.php:48 -msgid "Homepage:" -msgstr "Heimasíða:" - -#: ../../mod/directory.php:144 ../../boot.php:1657 -#: ../../include/profile_advanced.php:58 -msgid "About:" -msgstr "Um:" - -#: ../../mod/directory.php:189 -msgid "No entries (some entries may be hidden)." -msgstr "Engar færslur (sumar geta verið faldar)." - -#: ../../mod/delegate.php:101 -msgid "No potential page delegates located." -msgstr "Engir mögulegir viðtakendur síðunnar fundust." - -#: ../../mod/delegate.php:130 ../../include/nav.php:170 -msgid "Delegate Page Management" -msgstr "" - -#: ../../mod/delegate.php:132 -msgid "" -"Delegates are able to manage all aspects of this account/page except for " -"basic account settings. Please do not delegate your personal account to " -"anybody that you do not trust completely." -msgstr "" - -#: ../../mod/delegate.php:133 -msgid "Existing Page Managers" -msgstr "" - -#: ../../mod/delegate.php:135 -msgid "Existing Page Delegates" -msgstr "" - -#: ../../mod/delegate.php:137 -msgid "Potential Delegates" -msgstr "" - -#: ../../mod/delegate.php:140 -msgid "Add" -msgstr "Bæta við" - -#: ../../mod/delegate.php:141 -msgid "No entries." -msgstr "Engar færslur." - -#: ../../mod/common.php:42 -msgid "Common Friends" -msgstr "Sameiginlegir vinir" - -#: ../../mod/common.php:78 -msgid "No contacts in common." -msgstr "" - -#: ../../mod/uexport.php:77 -msgid "Export account" -msgstr "" - -#: ../../mod/uexport.php:77 -msgid "" -"Export your account info and contacts. Use this to make a backup of your " -"account and/or to move it to another server." -msgstr "" - -#: ../../mod/uexport.php:78 -msgid "Export all" -msgstr "" - -#: ../../mod/uexport.php:78 -msgid "" -"Export your accout info, contacts and all your items as json. Could be a " -"very big file, and could take a lot of time. Use this to make a full backup " -"of your account (photos are not exported)" -msgstr "" - -#: ../../mod/mood.php:62 ../../include/conversation.php:227 +#: include/conversation.php:239 mod/mood.php:62 #, php-format msgid "%1$s is currently %2$s" msgstr "" -#: ../../mod/mood.php:133 -msgid "Mood" +#: 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 merkti %2$s's %3$s með %4$s" + +#: include/conversation.php:303 +msgid "post/item" msgstr "" -#: ../../mod/mood.php:134 -msgid "Set your current mood and tell your friends" +#: include/conversation.php:304 +#, php-format +msgid "%1$s marked %2$s's %3$s as favorite" msgstr "" -#: ../../mod/suggest.php:27 -msgid "Do you really want to delete this suggestion?" -msgstr "" - -#: ../../mod/suggest.php:68 ../../include/contact_widgets.php:35 -#: ../../view/theme/diabook/theme.php:527 -msgid "Friend Suggestions" -msgstr "Vina uppástungur" - -#: ../../mod/suggest.php:74 -msgid "" -"No suggestions available. If this is a new site, please try again in 24 " -"hours." -msgstr "Engar uppástungur tiltækar. Ef þetta er nýr vefur, reyndu þá aftur eftir um 24 klukkustundir." - -#: ../../mod/suggest.php:92 -msgid "Ignore/Hide" -msgstr "Hunsa/Fela" - -#: ../../mod/profiles.php:37 -msgid "Profile deleted." -msgstr "Forsíðu eytt." - -#: ../../mod/profiles.php:55 ../../mod/profiles.php:89 -msgid "Profile-" -msgstr "Forsíða-" - -#: ../../mod/profiles.php:74 ../../mod/profiles.php:117 -msgid "New profile created." -msgstr "Ný forsíða búinn til." - -#: ../../mod/profiles.php:95 -msgid "Profile unavailable to clone." -msgstr "Ekki tókst að klóna forsíðu" - -#: ../../mod/profiles.php:189 -msgid "Profile Name is required." -msgstr "Nafn á forsíðu er skilyrði" - -#: ../../mod/profiles.php:340 -msgid "Marital Status" -msgstr "" - -#: ../../mod/profiles.php:344 -msgid "Romantic Partner" -msgstr "" - -#: ../../mod/profiles.php:348 +#: include/conversation.php:587 mod/content.php:372 mod/profiles.php:344 +#: mod/photos.php:1634 msgid "Likes" -msgstr "" +msgstr "Líkar" -#: ../../mod/profiles.php:352 +#: include/conversation.php:587 mod/content.php:372 mod/profiles.php:348 +#: mod/photos.php:1634 msgid "Dislikes" -msgstr "" +msgstr "Mislíkar" -#: ../../mod/profiles.php:356 -msgid "Work/Employment" -msgstr "" +#: include/conversation.php:588 include/conversation.php:1471 +#: mod/content.php:373 mod/photos.php:1635 +msgid "Attending" +msgid_plural "Attending" +msgstr[0] "Mætir" +msgstr[1] "Mæta" -#: ../../mod/profiles.php:359 -msgid "Religion" -msgstr "" +#: include/conversation.php:588 mod/content.php:373 mod/photos.php:1635 +msgid "Not attending" +msgstr "Mætir ekki" -#: ../../mod/profiles.php:363 -msgid "Political Views" -msgstr "" +#: include/conversation.php:588 mod/content.php:373 mod/photos.php:1635 +msgid "Might attend" +msgstr "Gæti mætt" -#: ../../mod/profiles.php:367 -msgid "Gender" -msgstr "" +#: include/conversation.php:710 mod/content.php:453 mod/content.php:758 +#: mod/photos.php:1709 object/Item.php:133 +msgid "Select" +msgstr "Velja" -#: ../../mod/profiles.php:371 -msgid "Sexual Preference" -msgstr "" +#: include/conversation.php:711 mod/admin.php:1388 mod/content.php:454 +#: mod/content.php:759 mod/photos.php:1710 mod/contacts.php:801 +#: mod/contacts.php:1016 mod/group.php:171 mod/settings.php:726 +#: object/Item.php:134 +msgid "Delete" +msgstr "Eyða" -#: ../../mod/profiles.php:375 -msgid "Homepage" -msgstr "" - -#: ../../mod/profiles.php:379 ../../mod/profiles.php:698 -msgid "Interests" -msgstr "" - -#: ../../mod/profiles.php:383 -msgid "Address" -msgstr "" - -#: ../../mod/profiles.php:390 ../../mod/profiles.php:694 -msgid "Location" -msgstr "" - -#: ../../mod/profiles.php:473 -msgid "Profile updated." -msgstr "Forsíða uppfærð." - -#: ../../mod/profiles.php:568 -msgid " and " -msgstr "og" - -#: ../../mod/profiles.php:576 -msgid "public profile" -msgstr "Opinber forsíða" - -#: ../../mod/profiles.php:579 +#: include/conversation.php:755 mod/content.php:487 mod/content.php:910 +#: mod/content.php:911 object/Item.php:367 object/Item.php:368 #, php-format -msgid "%1$s changed %2$s to “%3$s”" -msgstr "" +msgid "View %s's profile @ %s" +msgstr "Birta forsíðu %s hjá %s" -#: ../../mod/profiles.php:580 -#, php-format -msgid " - Visit %1$s's %2$s" -msgstr "" - -#: ../../mod/profiles.php:583 -#, php-format -msgid "%1$s has an updated %2$s, changing %3$s." -msgstr "%1$s hefur uppfært %2$s, með því að breyta %3$s." - -#: ../../mod/profiles.php:658 -msgid "Hide contacts and friends:" -msgstr "" - -#: ../../mod/profiles.php:663 -msgid "Hide your contact/friend list from viewers of this profile?" -msgstr "Fela tengiliða-/vinalista á þessari forsíðu?" - -#: ../../mod/profiles.php:685 -msgid "Edit Profile Details" -msgstr "Breyta forsíðu upplýsingum" - -#: ../../mod/profiles.php:687 -msgid "Change Profile Photo" -msgstr "" - -#: ../../mod/profiles.php:688 -msgid "View this profile" -msgstr "Skoða þessa forsíðu" - -#: ../../mod/profiles.php:689 -msgid "Create a new profile using these settings" -msgstr "Búa til nýja forsíðu með þessum stillingum" - -#: ../../mod/profiles.php:690 -msgid "Clone this profile" -msgstr "Klóna þessa forsíðu" - -#: ../../mod/profiles.php:691 -msgid "Delete this profile" -msgstr "Eyða þessari forsíðu" - -#: ../../mod/profiles.php:692 -msgid "Basic information" -msgstr "" - -#: ../../mod/profiles.php:693 -msgid "Profile picture" -msgstr "" - -#: ../../mod/profiles.php:695 -msgid "Preferences" -msgstr "" - -#: ../../mod/profiles.php:696 -msgid "Status information" -msgstr "" - -#: ../../mod/profiles.php:697 -msgid "Additional information" -msgstr "" - -#: ../../mod/profiles.php:700 -msgid "Profile Name:" -msgstr "Forsíðu nafn:" - -#: ../../mod/profiles.php:701 -msgid "Your Full Name:" -msgstr "Fullt nafn:" - -#: ../../mod/profiles.php:702 -msgid "Title/Description:" -msgstr "Starfsheiti/Lýsing:" - -#: ../../mod/profiles.php:703 -msgid "Your Gender:" -msgstr "Kyn:" - -#: ../../mod/profiles.php:704 -#, php-format -msgid "Birthday (%s):" -msgstr "Afmæli (%s):" - -#: ../../mod/profiles.php:705 -msgid "Street Address:" -msgstr "Gata:" - -#: ../../mod/profiles.php:706 -msgid "Locality/City:" -msgstr "Bær/Borg:" - -#: ../../mod/profiles.php:707 -msgid "Postal/Zip Code:" -msgstr "Póstnúmer:" - -#: ../../mod/profiles.php:708 -msgid "Country:" -msgstr "Land:" - -#: ../../mod/profiles.php:709 -msgid "Region/State:" -msgstr "Svæði/Sýsla" - -#: ../../mod/profiles.php:710 -msgid " Marital Status:" -msgstr " Hjúskaparstaða:" - -#: ../../mod/profiles.php:711 -msgid "Who: (if applicable)" -msgstr "Hver: (ef við á)" - -#: ../../mod/profiles.php:712 -msgid "Examples: cathy123, Cathy Williams, cathy@example.com" -msgstr "Dæmi: cathy123, Cathy Williams, cathy@example.com" - -#: ../../mod/profiles.php:713 -msgid "Since [date]:" -msgstr "" - -#: ../../mod/profiles.php:714 ../../include/profile_advanced.php:46 -msgid "Sexual Preference:" -msgstr "Kynhneigð" - -#: ../../mod/profiles.php:715 -msgid "Homepage URL:" -msgstr "Slóð heimasíðu:" - -#: ../../mod/profiles.php:716 ../../include/profile_advanced.php:50 -msgid "Hometown:" -msgstr "" - -#: ../../mod/profiles.php:717 ../../include/profile_advanced.php:54 -msgid "Political Views:" -msgstr "Stórnmálaskoðanir:" - -#: ../../mod/profiles.php:718 -msgid "Religious Views:" -msgstr "Trúarskoðanir" - -#: ../../mod/profiles.php:719 -msgid "Public Keywords:" -msgstr "Opinber leitarorð:" - -#: ../../mod/profiles.php:720 -msgid "Private Keywords:" -msgstr "Einka leitarorð:" - -#: ../../mod/profiles.php:721 ../../include/profile_advanced.php:62 -msgid "Likes:" -msgstr "" - -#: ../../mod/profiles.php:722 ../../include/profile_advanced.php:64 -msgid "Dislikes:" -msgstr "" - -#: ../../mod/profiles.php:723 -msgid "Example: fishing photography software" -msgstr "Til dæmis: fishing photography software" - -#: ../../mod/profiles.php:724 -msgid "(Used for suggesting potential friends, can be seen by others)" -msgstr "(Notað til að stinga uppá mögulegum vinum, aðrir geta séð)" - -#: ../../mod/profiles.php:725 -msgid "(Used for searching profiles, never shown to others)" -msgstr "(Notað við leit að öðrum notendum, aldrei sýnt öðrum)" - -#: ../../mod/profiles.php:726 -msgid "Tell us about yourself..." -msgstr "Segðu okkur frá sjálfum þér..." - -#: ../../mod/profiles.php:727 -msgid "Hobbies/Interests" -msgstr "Áhugamál" - -#: ../../mod/profiles.php:728 -msgid "Contact information and Social Networks" -msgstr "Tengiliðaupplýsingar og samfélagsnet" - -#: ../../mod/profiles.php:729 -msgid "Musical interests" -msgstr "Tónlistarsmekkur" - -#: ../../mod/profiles.php:730 -msgid "Books, literature" -msgstr "Bækur, bókmenntir" - -#: ../../mod/profiles.php:731 -msgid "Television" -msgstr "Sjónvarp" - -#: ../../mod/profiles.php:732 -msgid "Film/dance/culture/entertainment" -msgstr "Kvikmyndir/dans/menning/afþreying" - -#: ../../mod/profiles.php:733 -msgid "Love/romance" -msgstr "Ást/rómantík" - -#: ../../mod/profiles.php:734 -msgid "Work/employment" -msgstr "Atvinna:" - -#: ../../mod/profiles.php:735 -msgid "School/education" -msgstr "Skóli/menntun" - -#: ../../mod/profiles.php:740 -msgid "" -"This is your public profile.
It may " -"be visible to anybody using the internet." -msgstr "Þetta er opinber forsíða.
Hún verður sjáanleg öðrum sem nota alnetið." - -#: ../../mod/profiles.php:803 -msgid "Edit/Manage Profiles" -msgstr "Sýsla með forsíður" - -#: ../../mod/profiles.php:804 ../../boot.php:1611 ../../boot.php:1637 -msgid "Change profile photo" -msgstr "Breyta forsíðu mynd" - -#: ../../mod/profiles.php:805 ../../boot.php:1612 -msgid "Create New Profile" -msgstr "Stofna nýja forsíðu" - -#: ../../mod/profiles.php:816 ../../boot.php:1622 -msgid "Profile Image" -msgstr "Forsíðu mynd" - -#: ../../mod/profiles.php:818 ../../boot.php:1625 -msgid "visible to everybody" -msgstr "Sýnilegt öllum" - -#: ../../mod/profiles.php:819 ../../boot.php:1626 -msgid "Edit visibility" -msgstr "Sýsla með sjáanleika" - -#: ../../mod/editpost.php:17 ../../mod/editpost.php:27 -msgid "Item not found" -msgstr "Hlutur fannst ekki" - -#: ../../mod/editpost.php:39 -msgid "Edit post" -msgstr "Breyta skilaboðum" - -#: ../../mod/editpost.php:111 ../../include/conversation.php:1092 -msgid "upload photo" -msgstr "Hlaða upp mynd" - -#: ../../mod/editpost.php:112 ../../include/conversation.php:1093 -msgid "Attach file" -msgstr "Bæta við skrá" - -#: ../../mod/editpost.php:113 ../../include/conversation.php:1094 -msgid "attach file" -msgstr "Hengja skrá við" - -#: ../../mod/editpost.php:115 ../../include/conversation.php:1096 -msgid "web link" -msgstr "vefhlekkur" - -#: ../../mod/editpost.php:116 ../../include/conversation.php:1097 -msgid "Insert video link" -msgstr "Setja inn myndbandshlekk" - -#: ../../mod/editpost.php:117 ../../include/conversation.php:1098 -msgid "video link" -msgstr "myndbandshlekkur" - -#: ../../mod/editpost.php:118 ../../include/conversation.php:1099 -msgid "Insert audio link" -msgstr "Setja inn hlekk á hljóðskrá" - -#: ../../mod/editpost.php:119 ../../include/conversation.php:1100 -msgid "audio link" -msgstr "hljóðhlekkur" - -#: ../../mod/editpost.php:120 ../../include/conversation.php:1101 -msgid "Set your location" -msgstr "Veldu staðsetningu þína" - -#: ../../mod/editpost.php:121 ../../include/conversation.php:1102 -msgid "set location" -msgstr "stilla staðsetningu" - -#: ../../mod/editpost.php:122 ../../include/conversation.php:1103 -msgid "Clear browser location" -msgstr "Hreinsa staðsetningu í vafra" - -#: ../../mod/editpost.php:123 ../../include/conversation.php:1104 -msgid "clear location" -msgstr "hreinsa staðsetningu" - -#: ../../mod/editpost.php:125 ../../include/conversation.php:1110 -msgid "Permission settings" -msgstr "Heimildar stillingar" - -#: ../../mod/editpost.php:133 ../../include/conversation.php:1119 -msgid "CC: email addresses" -msgstr "CC: tölvupóstfang" - -#: ../../mod/editpost.php:134 ../../include/conversation.php:1120 -msgid "Public post" -msgstr "Opinber færsla" - -#: ../../mod/editpost.php:137 ../../include/conversation.php:1106 -msgid "Set title" -msgstr "Setja titil" - -#: ../../mod/editpost.php:139 ../../include/conversation.php:1108 -msgid "Categories (comma-separated list)" -msgstr "" - -#: ../../mod/editpost.php:140 ../../include/conversation.php:1122 -msgid "Example: bob@example.com, mary@example.com" -msgstr "Dæmi: bob@example.com, mary@example.com" - -#: ../../mod/friendica.php:59 -msgid "This is Friendica, version" -msgstr "Þetta er Friendica útgáfa" - -#: ../../mod/friendica.php:60 -msgid "running at web location" -msgstr "Keyrir á slóð" - -#: ../../mod/friendica.php:62 -msgid "" -"Please visit Friendica.com to learn " -"more about the Friendica project." -msgstr "Á Friendica.com er hægt að fræðast nánar um Friendica verkefnið." - -#: ../../mod/friendica.php:64 -msgid "Bug reports and issues: please visit" -msgstr "Villu tilkynningar og vandamál: endilega skoða" - -#: ../../mod/friendica.php:65 -msgid "" -"Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - " -"dot com" -msgstr "Uppástungur, lof, framlög og svo framvegis - sendið tölvupóst á \"Info\" hjá Friendica - punktur com" - -#: ../../mod/friendica.php:79 -msgid "Installed plugins/addons/apps:" -msgstr "" - -#: ../../mod/friendica.php:92 -msgid "No installed plugins/addons/apps" -msgstr "Engin uppsett eining/viðbót/forr" - -#: ../../mod/api.php:76 ../../mod/api.php:102 -msgid "Authorize application connection" -msgstr "Leyfa forriti að tengjast" - -#: ../../mod/api.php:77 -msgid "Return to your app and insert this Securty Code:" -msgstr "Farðu aftur í forritið þitt og settu þennan öryggiskóða þar" - -#: ../../mod/api.php:89 -msgid "Please login to continue." -msgstr "Skráðu þig inn til að halda áfram." - -#: ../../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 "Vilt þú leyfa þessu forriti að hafa aðgang að færslum og tengiliðum, og/eða stofna nýjar færslur fyrir þig?" - -#: ../../mod/lockview.php:31 ../../mod/lockview.php:39 -msgid "Remote privacy information not available." -msgstr "Persónuverndar upplýsingar ekki fyrir hendi á fjarlægum vefþjón." - -#: ../../mod/lockview.php:48 -msgid "Visible to:" -msgstr "Sýnilegt eftirfarandi:" - -#: ../../mod/notes.php:44 ../../boot.php:2150 -msgid "Personal Notes" -msgstr "Persónulegar glósur" - -#: ../../mod/localtime.php:12 ../../include/bb2diaspora.php:148 -#: ../../include/event.php:11 -msgid "l F d, Y \\@ g:i A" -msgstr "" - -#: ../../mod/localtime.php:24 -msgid "Time Conversion" -msgstr "Tíma leiðréttir" - -#: ../../mod/localtime.php:26 -msgid "" -"Friendica provides this service for sharing events with other networks and " -"friends in unknown timezones." -msgstr "Friendica veitir þessa þjónustu til að deila atburðum milli neta og vina í óþekktum tímabeltum." - -#: ../../mod/localtime.php:30 -#, php-format -msgid "UTC time: %s" -msgstr "Máltími: %s" - -#: ../../mod/localtime.php:33 -#, php-format -msgid "Current timezone: %s" -msgstr "Núverandi tímabelti: %s" - -#: ../../mod/localtime.php:36 -#, php-format -msgid "Converted localtime: %s" -msgstr "Umbreyttur staðartími: %s" - -#: ../../mod/localtime.php:41 -msgid "Please select your timezone:" -msgstr "Veldu tímabeltið þitt:" - -#: ../../mod/poke.php:192 -msgid "Poke/Prod" -msgstr "" - -#: ../../mod/poke.php:193 -msgid "poke, prod or do other things to somebody" -msgstr "" - -#: ../../mod/poke.php:194 -msgid "Recipient" -msgstr "" - -#: ../../mod/poke.php:195 -msgid "Choose what you wish to do to recipient" -msgstr "" - -#: ../../mod/poke.php:198 -msgid "Make this post private" -msgstr "" - -#: ../../mod/invite.php:27 -msgid "Total invitation limit exceeded." -msgstr "" - -#: ../../mod/invite.php:49 -#, php-format -msgid "%s : Not a valid email address." -msgstr "%s : Ekki gilt póstfang" - -#: ../../mod/invite.php:73 -msgid "Please join us on Friendica" -msgstr "" - -#: ../../mod/invite.php:84 -msgid "Invitation limit exceeded. Please contact your site administrator." -msgstr "" - -#: ../../mod/invite.php:89 -#, php-format -msgid "%s : Message delivery failed." -msgstr "%s : Skilaboð komust ekki til skila." - -#: ../../mod/invite.php:93 -#, php-format -msgid "%d message sent." -msgid_plural "%d messages sent." -msgstr[0] "%d skilaboð send." -msgstr[1] "%d skilaboð send" - -#: ../../mod/invite.php:112 -msgid "You have no more invitations available" -msgstr "Þú hefur ekki fleiri boðskort." - -#: ../../mod/invite.php:120 -#, php-format -msgid "" -"Visit %s for a list of public sites that you can join. Friendica members on " -"other sites can all connect with each other, as well as with members of many" -" other social networks." -msgstr "" - -#: ../../mod/invite.php:122 -#, php-format -msgid "" -"To accept this invitation, please visit and register at %s or any other " -"public Friendica website." -msgstr "" - -#: ../../mod/invite.php:123 -#, php-format -msgid "" -"Friendica sites all inter-connect to create a huge privacy-enhanced social " -"web that is owned and controlled by its members. They can also connect with " -"many traditional social networks. See %s for a list of alternate Friendica " -"sites you can join." -msgstr "" - -#: ../../mod/invite.php:126 -msgid "" -"Our apologies. This system is not currently configured to connect with other" -" public sites or invite members." -msgstr "" - -#: ../../mod/invite.php:132 -msgid "Send invitations" -msgstr "Senda kynningar" - -#: ../../mod/invite.php:133 -msgid "Enter email addresses, one per line:" -msgstr "Póstföng, eitt í hverja línu:" - -#: ../../mod/invite.php:135 -msgid "" -"You are cordially invited to join me and other close friends on Friendica - " -"and help us to create a better social web." -msgstr "" - -#: ../../mod/invite.php:137 -msgid "You will need to supply this invitation code: $invite_code" -msgstr "Þú þarft að nota eftirfarandi boðskorta auðkenni: $invite_code" - -#: ../../mod/invite.php:137 -msgid "" -"Once you have registered, please connect with me via my profile page at:" -msgstr "Þegar þú hefur nýskráð þig, hafðu samband við mig gegnum síðuna mína á:" - -#: ../../mod/invite.php:139 -msgid "" -"For more information about the Friendica project and why we feel it is " -"important, please visit http://friendica.com" -msgstr "" - -#: ../../mod/photos.php:52 ../../boot.php:2129 -msgid "Photo Albums" -msgstr "Myndabækur" - -#: ../../mod/photos.php:60 ../../mod/photos.php:155 ../../mod/photos.php:1064 -#: ../../mod/photos.php:1187 ../../mod/photos.php:1210 -#: ../../mod/photos.php:1760 ../../mod/photos.php:1772 -#: ../../view/theme/diabook/theme.php:499 -msgid "Contact Photos" -msgstr "Myndir tengiliðs" - -#: ../../mod/photos.php:67 ../../mod/photos.php:1262 ../../mod/photos.php:1819 -msgid "Upload New Photos" -msgstr "Hlaða upp nýjum myndum" - -#: ../../mod/photos.php:144 -msgid "Contact information unavailable" -msgstr "Tengiliða upplýsingar ekki til" - -#: ../../mod/photos.php:165 -msgid "Album not found." -msgstr "Myndabók finnst ekki." - -#: ../../mod/photos.php:188 ../../mod/photos.php:200 ../../mod/photos.php:1204 -msgid "Delete Album" -msgstr "Fjarlægja myndabók" - -#: ../../mod/photos.php:198 -msgid "Do you really want to delete this photo album and all its photos?" -msgstr "" - -#: ../../mod/photos.php:278 ../../mod/photos.php:289 ../../mod/photos.php:1515 -msgid "Delete Photo" -msgstr "Fjarlægja mynd" - -#: ../../mod/photos.php:287 -msgid "Do you really want to delete this photo?" -msgstr "" - -#: ../../mod/photos.php:662 -#, php-format -msgid "%1$s was tagged in %2$s by %3$s" -msgstr "" - -#: ../../mod/photos.php:662 -msgid "a photo" -msgstr "mynd" - -#: ../../mod/photos.php:767 -msgid "Image exceeds size limit of " -msgstr "Mynd er yfir stærðamörkum" - -#: ../../mod/photos.php:775 -msgid "Image file is empty." -msgstr "Mynda skrá er tóm." - -#: ../../mod/photos.php:930 -msgid "No photos selected" -msgstr "Engar myndir valdar" - -#: ../../mod/photos.php:1094 -#, php-format -msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage." -msgstr "" - -#: ../../mod/photos.php:1129 -msgid "Upload Photos" -msgstr "Hlaða upp myndum" - -#: ../../mod/photos.php:1133 ../../mod/photos.php:1199 -msgid "New album name: " -msgstr "Nýtt nafn myndbókar:" - -#: ../../mod/photos.php:1134 -msgid "or existing album name: " -msgstr "eða fyrra nafn myndbókar:" - -#: ../../mod/photos.php:1135 -msgid "Do not show a status post for this upload" -msgstr "Ekki sýna færslu fyrir þessari upphölun" - -#: ../../mod/photos.php:1137 ../../mod/photos.php:1510 -msgid "Permissions" -msgstr "Aðgangar" - -#: ../../mod/photos.php:1148 -msgid "Private Photo" -msgstr "Einkamynd" - -#: ../../mod/photos.php:1149 -msgid "Public Photo" -msgstr "Opinber mynd" - -#: ../../mod/photos.php:1212 -msgid "Edit Album" -msgstr "Breyta myndbók" - -#: ../../mod/photos.php:1218 -msgid "Show Newest First" -msgstr "Birta nýjast fyrst" - -#: ../../mod/photos.php:1220 -msgid "Show Oldest First" -msgstr "Birta elsta fyrst" - -#: ../../mod/photos.php:1248 ../../mod/photos.php:1802 -msgid "View Photo" -msgstr "Skoða mynd" - -#: ../../mod/photos.php:1294 -msgid "Permission denied. Access to this item may be restricted." -msgstr "Aðgangi hafnað. Aðgangur að þessum hlut kann að vera skertur." - -#: ../../mod/photos.php:1296 -msgid "Photo not available" -msgstr "Mynd ekki til" - -#: ../../mod/photos.php:1352 -msgid "View photo" -msgstr "Birta mynd" - -#: ../../mod/photos.php:1352 -msgid "Edit photo" -msgstr "Breyta mynd" - -#: ../../mod/photos.php:1353 -msgid "Use as profile photo" -msgstr "Nota sem forsíðu mynd" - -#: ../../mod/photos.php:1378 -msgid "View Full Size" -msgstr "Skoða í fullri stærð" - -#: ../../mod/photos.php:1457 -msgid "Tags: " -msgstr "Merki:" - -#: ../../mod/photos.php:1460 -msgid "[Remove any tag]" -msgstr "[Fjarlægja öll merki]" - -#: ../../mod/photos.php:1500 -msgid "Rotate CW (right)" -msgstr "" - -#: ../../mod/photos.php:1501 -msgid "Rotate CCW (left)" -msgstr "" - -#: ../../mod/photos.php:1503 -msgid "New album name" -msgstr "Nýtt nafn myndbókar" - -#: ../../mod/photos.php:1506 -msgid "Caption" -msgstr "Yfirskrift" - -#: ../../mod/photos.php:1508 -msgid "Add a Tag" -msgstr "Bæta við merki" - -#: ../../mod/photos.php:1512 -msgid "" -"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" -msgstr "Til dæmis: @bob, @Barbara_Jensen, @jim@example.com, #Reykjavík #tjalda" - -#: ../../mod/photos.php:1521 -msgid "Private photo" -msgstr "Einkamynd" - -#: ../../mod/photos.php:1522 -msgid "Public photo" -msgstr "Opinber mynd" - -#: ../../mod/photos.php:1544 ../../include/conversation.php:1090 -msgid "Share" -msgstr "Deila" - -#: ../../mod/photos.php:1817 -msgid "Recent Photos" -msgstr "Nýlegar myndir" - -#: ../../mod/regmod.php:55 -msgid "Account approved." -msgstr "Notandi samþykktur." - -#: ../../mod/regmod.php:92 -#, php-format -msgid "Registration revoked for %s" -msgstr "Skráning afturköllurð vegna %s" - -#: ../../mod/regmod.php:104 -msgid "Please login." -msgstr "Skráðu yður inn." - -#: ../../mod/uimport.php:66 -msgid "Move account" -msgstr "" - -#: ../../mod/uimport.php:67 -msgid "You can import an account from another Friendica server." -msgstr "" - -#: ../../mod/uimport.php:68 -msgid "" -"You need to export your account from the old server and upload it here. We " -"will recreate your old account here with all your contacts. We will try also" -" to inform your friends that you moved here." -msgstr "" - -#: ../../mod/uimport.php:69 -msgid "" -"This feature is experimental. We can't import contacts from the OStatus " -"network (statusnet/identi.ca) or from Diaspora" -msgstr "" - -#: ../../mod/uimport.php:70 -msgid "Account file" -msgstr "" - -#: ../../mod/uimport.php:70 -msgid "" -"To export your account, go to \"Settings->Export your personal data\" and " -"select \"Export account\"" -msgstr "" - -#: ../../mod/attach.php:8 -msgid "Item not available." -msgstr "Atriði ekki í boði." - -#: ../../mod/attach.php:20 -msgid "Item was not found." -msgstr "Atriði fannst ekki" - -#: ../../boot.php:749 -msgid "Delete this item?" -msgstr "Eyða þessu atriði?" - -#: ../../boot.php:752 -msgid "show fewer" -msgstr "sýna færri" - -#: ../../boot.php:1122 -#, php-format -msgid "Update %s failed. See error logs." -msgstr "Uppfærsla á %s mistókst. Sjá villu skrá." - -#: ../../boot.php:1240 -msgid "Create a New Account" -msgstr "Stofna nýjan notanda" - -#: ../../boot.php:1265 ../../include/nav.php:73 -msgid "Logout" -msgstr "Útskrá" - -#: ../../boot.php:1268 -msgid "Nickname or Email address: " -msgstr "Gælunafn eða póstfang:" - -#: ../../boot.php:1269 -msgid "Password: " -msgstr "Aðgangsorð:" - -#: ../../boot.php:1270 -msgid "Remember me" -msgstr "" - -#: ../../boot.php:1273 -msgid "Or login using OpenID: " -msgstr "Eða auðkenna með OpenID:" - -#: ../../boot.php:1279 -msgid "Forgot your password?" -msgstr "Gleymt lykilorð?" - -#: ../../boot.php:1282 -msgid "Website Terms of Service" -msgstr "" - -#: ../../boot.php:1283 -msgid "terms of service" -msgstr "" - -#: ../../boot.php:1285 -msgid "Website Privacy Policy" -msgstr "" - -#: ../../boot.php:1286 -msgid "privacy policy" -msgstr "" - -#: ../../boot.php:1419 -msgid "Requested account is not available." -msgstr "" - -#: ../../boot.php:1501 ../../boot.php:1635 -#: ../../include/profile_advanced.php:84 -msgid "Edit profile" -msgstr "Breyta forsíðu" - -#: ../../boot.php:1600 -msgid "Message" -msgstr "" - -#: ../../boot.php:1606 ../../include/nav.php:175 -msgid "Profiles" -msgstr "Forsíður" - -#: ../../boot.php:1606 -msgid "Manage/edit profiles" -msgstr "Sýsla með forsíður" - -#: ../../boot.php:1706 -msgid "Network:" -msgstr "" - -#: ../../boot.php:1736 ../../boot.php:1822 -msgid "g A l F d" -msgstr "" - -#: ../../boot.php:1737 ../../boot.php:1823 -msgid "F d" -msgstr "" - -#: ../../boot.php:1782 ../../boot.php:1863 -msgid "[today]" -msgstr "[í dag]" - -#: ../../boot.php:1794 -msgid "Birthday Reminders" -msgstr "Afmælis áminningar" - -#: ../../boot.php:1795 -msgid "Birthdays this week:" -msgstr "Afmæli í þessari viku:" - -#: ../../boot.php:1856 -msgid "[No description]" -msgstr "[Engin lýsing]" - -#: ../../boot.php:1874 -msgid "Event Reminders" -msgstr "Atburða áminningar" - -#: ../../boot.php:1875 -msgid "Events this week:" -msgstr "Atburðir vikunnar:" - -#: ../../boot.php:2112 ../../include/nav.php:76 -msgid "Status" -msgstr "Staða" - -#: ../../boot.php:2115 -msgid "Status Messages and Posts" -msgstr "Stöðu skilaboð og færslur" - -#: ../../boot.php:2122 -msgid "Profile Details" -msgstr "Forsíðu upplýsingar" - -#: ../../boot.php:2133 ../../boot.php:2136 ../../include/nav.php:79 -msgid "Videos" -msgstr "" - -#: ../../boot.php:2146 -msgid "Events and Calendar" -msgstr "Atburðir og dagskrá" - -#: ../../boot.php:2153 -msgid "Only You Can See This" -msgstr "Aðeins þú sérð þetta" - -#: ../../object/Item.php:94 -msgid "This entry was edited" -msgstr "" - -#: ../../object/Item.php:208 -msgid "ignore thread" -msgstr "" - -#: ../../object/Item.php:209 -msgid "unignore thread" -msgstr "" - -#: ../../object/Item.php:210 -msgid "toggle ignore status" -msgstr "" - -#: ../../object/Item.php:213 -msgid "ignored" -msgstr "" - -#: ../../object/Item.php:316 ../../include/conversation.php:666 +#: include/conversation.php:767 object/Item.php:355 msgid "Categories:" msgstr "Flokkar:" -#: ../../object/Item.php:317 ../../include/conversation.php:667 +#: include/conversation.php:768 object/Item.php:356 msgid "Filed under:" msgstr "Skráð undir:" -#: ../../object/Item.php:329 -msgid "via" +#: include/conversation.php:775 mod/content.php:497 mod/content.php:923 +#: object/Item.php:381 +#, php-format +msgid "%s from %s" +msgstr "%s til %s" + +#: include/conversation.php:791 mod/content.php:513 +msgid "View in context" +msgstr "Birta í samhengi" + +#: include/conversation.php:793 include/conversation.php:1255 +#: mod/content.php:515 mod/content.php:948 mod/photos.php:1597 +#: mod/editpost.php:124 mod/wallmessage.php:156 mod/message.php:356 +#: mod/message.php:548 object/Item.php:406 +msgid "Please wait" +msgstr "Hinkraðu aðeins" + +#: include/conversation.php:872 +msgid "remove" +msgstr "fjarlægja" + +#: include/conversation.php:876 +msgid "Delete Selected Items" +msgstr "Eyða völdum færslum" + +#: include/conversation.php:964 +msgid "Follow Thread" +msgstr "Fylgja þræði" + +#: include/conversation.php:965 include/Contact.php:364 +msgid "View Status" +msgstr "Skoða stöðu" + +#: include/conversation.php:966 include/conversation.php:980 +#: include/Contact.php:310 include/Contact.php:323 include/Contact.php:365 +#: mod/dirfind.php:203 mod/directory.php:163 mod/match.php:71 +#: mod/allfriends.php:65 mod/suggest.php:82 +msgid "View Profile" +msgstr "Skoða forsíðu" + +#: include/conversation.php:967 include/Contact.php:366 +msgid "View Photos" +msgstr "Skoða myndir" + +#: include/conversation.php:968 include/Contact.php:367 +msgid "Network Posts" msgstr "" -#: ../../include/dbstructure.php:26 +#: include/conversation.php:969 include/Contact.php:368 +msgid "Edit Contact" +msgstr "Breyta tengilið" + +#: include/conversation.php:970 include/Contact.php:370 +msgid "Send PM" +msgstr "Senda einkaboð" + +#: include/conversation.php:974 include/Contact.php:371 +msgid "Poke" +msgstr "Pota" + +#: include/conversation.php:1088 +#, php-format +msgid "%s likes this." +msgstr "%s líkar þetta." + +#: include/conversation.php:1091 +#, php-format +msgid "%s doesn't like this." +msgstr "%s mislíkar þetta." + +#: include/conversation.php:1094 +#, php-format +msgid "%s attends." +msgstr "%s mætir." + +#: include/conversation.php:1097 +#, php-format +msgid "%s doesn't attend." +msgstr "%s mætir ekki." + +#: include/conversation.php:1100 +#, php-format +msgid "%s attends maybe." +msgstr "%s mætir kannski." + +#: include/conversation.php:1110 +msgid "and" +msgstr "og" + +#: include/conversation.php:1116 +#, php-format +msgid ", and %d other people" +msgstr ", og %d öðrum" + +#: include/conversation.php:1125 +#, php-format +msgid "%2$d people like this" +msgstr "" + +#: include/conversation.php:1126 +#, php-format +msgid "%s like this." +msgstr "" + +#: include/conversation.php:1129 +#, php-format +msgid "%2$d people don't like this" +msgstr "" + +#: include/conversation.php:1130 +#, php-format +msgid "%s don't like this." +msgstr "" + +#: include/conversation.php:1133 +#, php-format +msgid "%2$d people attend" +msgstr "" + +#: include/conversation.php:1134 +#, php-format +msgid "%s attend." +msgstr "" + +#: include/conversation.php:1137 +#, php-format +msgid "%2$d people don't attend" +msgstr "" + +#: include/conversation.php:1138 +#, php-format +msgid "%s don't attend." +msgstr "" + +#: include/conversation.php:1141 +#, php-format +msgid "%2$d people anttend maybe" +msgstr "" + +#: include/conversation.php:1142 +#, php-format +msgid "%s anttend maybe." +msgstr "" + +#: include/conversation.php:1181 include/conversation.php:1199 +msgid "Visible to everybody" +msgstr "Sjáanlegt öllum" + +#: include/conversation.php:1182 include/conversation.php:1200 +#: 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 "Sláðu inn slóð:" + +#: include/conversation.php:1183 include/conversation.php:1201 +msgid "Please enter a video link/URL:" +msgstr "Settu inn slóð á myndskeið:" + +#: include/conversation.php:1184 include/conversation.php:1202 +msgid "Please enter an audio link/URL:" +msgstr "Settu inn slóð á hljóðskrá:" + +#: include/conversation.php:1185 include/conversation.php:1203 +msgid "Tag term:" +msgstr "Merka með:" + +#: include/conversation.php:1186 include/conversation.php:1204 +#: mod/filer.php:30 +msgid "Save to Folder:" +msgstr "Vista í möppu:" + +#: include/conversation.php:1187 include/conversation.php:1205 +msgid "Where are you right now?" +msgstr "Hvar ert þú núna?" + +#: include/conversation.php:1188 +msgid "Delete item(s)?" +msgstr "Eyða atriði/atriðum?" + +#: include/conversation.php:1236 mod/photos.php:1596 +msgid "Share" +msgstr "Deila" + +#: include/conversation.php:1237 mod/editpost.php:110 mod/wallmessage.php:154 +#: mod/message.php:354 mod/message.php:545 +msgid "Upload photo" +msgstr "Hlaða upp mynd" + +#: include/conversation.php:1238 mod/editpost.php:111 +msgid "upload photo" +msgstr "Hlaða upp mynd" + +#: include/conversation.php:1239 mod/editpost.php:112 +msgid "Attach file" +msgstr "Bæta við skrá" + +#: include/conversation.php:1240 mod/editpost.php:113 +msgid "attach file" +msgstr "Hengja skrá við" + +#: include/conversation.php:1241 mod/editpost.php:114 mod/wallmessage.php:155 +#: mod/message.php:355 mod/message.php:546 +msgid "Insert web link" +msgstr "Setja inn vefslóð" + +#: include/conversation.php:1242 mod/editpost.php:115 +msgid "web link" +msgstr "vefslóð" + +#: include/conversation.php:1243 mod/editpost.php:116 +msgid "Insert video link" +msgstr "Setja inn slóð á myndskeið" + +#: include/conversation.php:1244 mod/editpost.php:117 +msgid "video link" +msgstr "slóð á myndskeið" + +#: include/conversation.php:1245 mod/editpost.php:118 +msgid "Insert audio link" +msgstr "Setja inn slóð á hljóðskrá" + +#: include/conversation.php:1246 mod/editpost.php:119 +msgid "audio link" +msgstr "slóð á hljóðskrá" + +#: include/conversation.php:1247 mod/editpost.php:120 +msgid "Set your location" +msgstr "Veldu staðsetningu þína" + +#: include/conversation.php:1248 mod/editpost.php:121 +msgid "set location" +msgstr "stilla staðsetningu" + +#: include/conversation.php:1249 mod/editpost.php:122 +msgid "Clear browser location" +msgstr "Hreinsa staðsetningu í vafra" + +#: include/conversation.php:1250 mod/editpost.php:123 +msgid "clear location" +msgstr "hreinsa staðsetningu" + +#: include/conversation.php:1252 mod/editpost.php:137 +msgid "Set title" +msgstr "Setja titil" + +#: include/conversation.php:1254 mod/editpost.php:139 +msgid "Categories (comma-separated list)" +msgstr "Flokkar (listi aðskilinn með kommum)" + +#: include/conversation.php:1256 mod/editpost.php:125 +msgid "Permission settings" +msgstr "Stillingar aðgangsheimilda" + +#: include/conversation.php:1257 mod/editpost.php:154 +msgid "permissions" +msgstr "aðgangsstýring" + +#: include/conversation.php:1265 mod/editpost.php:134 +msgid "Public post" +msgstr "Opinber færsla" + +#: include/conversation.php:1270 mod/events.php:505 mod/content.php:737 +#: mod/photos.php:1618 mod/photos.php:1666 mod/photos.php:1754 +#: mod/editpost.php:145 object/Item.php:729 +msgid "Preview" +msgstr "Forskoðun" + +#: include/conversation.php:1280 +msgid "Post to Groups" +msgstr "Senda á hópa" + +#: include/conversation.php:1281 +msgid "Post to Contacts" +msgstr "Senda á tengiliði" + +#: include/conversation.php:1282 +msgid "Private post" +msgstr "Einkafærsla" + +#: include/conversation.php:1287 include/identity.php:250 mod/editpost.php:152 +msgid "Message" +msgstr "Skilaboð" + +#: include/conversation.php:1288 mod/editpost.php:153 +msgid "Browser" +msgstr "Vafri" + +#: include/conversation.php:1443 +msgid "View all" +msgstr "Skoða allt" + +#: include/conversation.php:1465 +msgid "Like" +msgid_plural "Likes" +msgstr[0] "Líkar" +msgstr[1] "Líkar" + +#: include/conversation.php:1468 +msgid "Dislike" +msgid_plural "Dislikes" +msgstr[0] "Mislíkar" +msgstr[1] "Mislíkar" + +#: include/conversation.php:1474 +msgid "Not Attending" +msgid_plural "Not Attending" +msgstr[0] "Mæti ekki" +msgstr[1] "Mæta ekki" + +#: include/identity.php:42 +msgid "Requested account is not available." +msgstr "Umbeðin forsíða er ekki til." + +#: include/identity.php:51 mod/profile.php:21 +msgid "Requested profile is not available." +msgstr "Umbeðin forsíða ekki til." + +#: include/identity.php:95 include/identity.php:305 include/identity.php:686 +msgid "Edit profile" +msgstr "Breyta forsíðu" + +#: include/identity.php:245 +msgid "Atom feed" +msgstr "Atom fréttaveita" + +#: include/identity.php:276 include/nav.php:191 +msgid "Profiles" +msgstr "Forsíður" + +#: include/identity.php:276 +msgid "Manage/edit profiles" +msgstr "Sýsla með forsíður" + +#: include/identity.php:281 include/identity.php:307 mod/profiles.php:787 +msgid "Change profile photo" +msgstr "Breyta forsíðumynd" + +#: include/identity.php:282 mod/profiles.php:788 +msgid "Create New Profile" +msgstr "Stofna nýja forsíðu" + +#: include/identity.php:292 mod/profiles.php:777 +msgid "Profile Image" +msgstr "Forsíðumynd" + +#: include/identity.php:295 mod/profiles.php:779 +msgid "visible to everybody" +msgstr "sýnilegt öllum" + +#: include/identity.php:296 mod/profiles.php:684 mod/profiles.php:780 +msgid "Edit visibility" +msgstr "Sýsla með sýnileika" + +#: include/identity.php:319 mod/dirfind.php:223 mod/directory.php:174 +#: mod/match.php:84 mod/viewcontacts.php:105 mod/allfriends.php:79 +#: mod/cal.php:44 mod/videos.php:37 mod/photos.php:41 mod/contacts.php:51 +#: mod/contacts.php:948 mod/suggest.php:98 mod/hovercard.php:80 +#: mod/common.php:123 mod/network.php:517 +msgid "Forum" +msgstr "Spjallsvæði" + +#: include/identity.php:331 include/identity.php:614 mod/notifications.php:252 +#: mod/directory.php:147 +msgid "Gender:" +msgstr "Kyn:" + +#: include/identity.php:334 include/identity.php:634 mod/directory.php:149 +msgid "Status:" +msgstr "Staða:" + +#: include/identity.php:336 include/identity.php:645 mod/directory.php:151 +msgid "Homepage:" +msgstr "Heimasíða:" + +#: include/identity.php:338 include/identity.php:655 mod/notifications.php:248 +#: mod/directory.php:153 mod/contacts.php:626 +msgid "About:" +msgstr "Um:" + +#: include/identity.php:420 mod/contacts.php:50 +msgid "Network:" +msgstr "Netkerfi:" + +#: include/identity.php:449 include/identity.php:533 +msgid "g A l F d" +msgstr "" + +#: include/identity.php:450 include/identity.php:534 +msgid "F d" +msgstr "" + +#: include/identity.php:495 include/identity.php:580 +msgid "[today]" +msgstr "[í dag]" + +#: include/identity.php:507 +msgid "Birthday Reminders" +msgstr "Afmælisáminningar" + +#: include/identity.php:508 +msgid "Birthdays this week:" +msgstr "Afmæli í þessari viku:" + +#: include/identity.php:567 +msgid "[No description]" +msgstr "[Engin lýsing]" + +#: include/identity.php:591 +msgid "Event Reminders" +msgstr "Atburðaáminningar" + +#: include/identity.php:592 +msgid "Events this week:" +msgstr "Atburðir vikunnar:" + +#: include/identity.php:603 include/identity.php:689 include/identity.php:720 +#: include/nav.php:79 mod/profperm.php:104 mod/contacts.php:834 +#: mod/newmember.php:32 view/theme/frio/theme.php:247 +#: view/theme/diabook/theme.php:124 +msgid "Profile" +msgstr "Forsíða" + +#: include/identity.php:612 mod/settings.php:1229 +msgid "Full Name:" +msgstr "Fullt nafn:" + +#: include/identity.php:619 +msgid "j F, Y" +msgstr "" + +#: include/identity.php:620 +msgid "j F" +msgstr "" + +#: include/identity.php:631 +msgid "Age:" +msgstr "Aldur:" + +#: include/identity.php:640 +#, php-format +msgid "for %1$d %2$s" +msgstr "" + +#: include/identity.php:643 mod/profiles.php:703 +msgid "Sexual Preference:" +msgstr "Kynhneigð:" + +#: include/identity.php:647 mod/profiles.php:729 +msgid "Hometown:" +msgstr "Heimabær:" + +#: include/identity.php:649 mod/notifications.php:250 mod/contacts.php:628 +#: mod/follow.php:134 +msgid "Tags:" +msgstr "Merki:" + +#: include/identity.php:651 mod/profiles.php:730 +msgid "Political Views:" +msgstr "Stórnmálaskoðanir:" + +#: include/identity.php:653 +msgid "Religion:" +msgstr "Trúarskoðanir:" + +#: include/identity.php:657 +msgid "Hobbies/Interests:" +msgstr "Áhugamál/Áhugasvið:" + +#: include/identity.php:659 mod/profiles.php:734 +msgid "Likes:" +msgstr "Líkar:" + +#: include/identity.php:661 mod/profiles.php:735 +msgid "Dislikes:" +msgstr "Mislíkar:" + +#: include/identity.php:664 +msgid "Contact information and Social Networks:" +msgstr "Tengiliðaupplýsingar og samfélagsnet:" + +#: include/identity.php:666 +msgid "Musical interests:" +msgstr "Tónlistaráhugi:" + +#: include/identity.php:668 +msgid "Books, literature:" +msgstr "Bækur, bókmenntir:" + +#: include/identity.php:670 +msgid "Television:" +msgstr "Sjónvarp:" + +#: include/identity.php:672 +msgid "Film/dance/culture/entertainment:" +msgstr "Kvikmyndir/dans/menning/afþreying:" + +#: include/identity.php:674 +msgid "Love/Romance:" +msgstr "Ást/rómantík:" + +#: include/identity.php:676 +msgid "Work/employment:" +msgstr "Atvinna:" + +#: include/identity.php:678 +msgid "School/education:" +msgstr "Skóli/menntun:" + +#: include/identity.php:682 +msgid "Forums:" +msgstr "Spjallsvæði:" + +#: include/identity.php:690 mod/events.php:508 +msgid "Basic" +msgstr "Einfalt" + +#: include/identity.php:691 mod/events.php:509 mod/admin.php:928 +#: mod/contacts.php:863 +msgid "Advanced" +msgstr "Flóknari" + +#: include/identity.php:712 include/nav.php:78 mod/contacts.php:631 +#: mod/contacts.php:826 view/theme/frio/theme.php:246 +msgid "Status" +msgstr "Staða" + +#: include/identity.php:715 mod/contacts.php:829 mod/follow.php:143 +msgid "Status Messages and Posts" +msgstr "Stöðu skilaboð og færslur" + +#: include/identity.php:723 mod/contacts.php:837 +msgid "Profile Details" +msgstr "Forsíðu upplýsingar" + +#: include/identity.php:728 include/nav.php:80 mod/fbrowser.php:32 +#: view/theme/frio/theme.php:248 view/theme/diabook/theme.php:126 +msgid "Photos" +msgstr "Myndir" + +#: include/identity.php:731 mod/photos.php:99 +msgid "Photo Albums" +msgstr "Myndabækur" + +#: include/identity.php:736 include/identity.php:739 include/nav.php:81 +#: view/theme/frio/theme.php:249 +msgid "Videos" +msgstr "Myndskeið" + +#: include/identity.php:748 include/identity.php:759 include/nav.php:82 +#: include/nav.php:146 mod/events.php:379 mod/cal.php:278 +#: view/theme/frio/theme.php:250 view/theme/frio/theme.php:254 +#: view/theme/diabook/theme.php:127 +msgid "Events" +msgstr "Atburðir" + +#: include/identity.php:751 include/identity.php:762 include/nav.php:146 +#: view/theme/frio/theme.php:254 +msgid "Events and Calendar" +msgstr "Atburðir og dagskrá" + +#: include/identity.php:770 mod/notes.php:46 +msgid "Personal Notes" +msgstr "Persónulegar glósur" + +#: include/identity.php:773 +msgid "Only You Can See This" +msgstr "Aðeins þú sérð þetta" + +#: include/Scrape.php:656 +msgid " on Last.fm" +msgstr " á Last.fm" + +#: include/follow.php:77 mod/dfrn_request.php:506 +msgid "Disallowed profile URL." +msgstr "Óleyfileg forsíðu slóð." + +#: include/follow.php:82 +msgid "Connect URL missing." +msgstr "Tengislóð vantar." + +#: include/follow.php:109 +msgid "" +"This site is not configured to allow communications with other networks." +msgstr "Þessi vefur er ekki uppsettur til að leyfa samskipti við önnur samfélagsnet." + +#: include/follow.php:110 include/follow.php:130 +msgid "No compatible communication protocols or feeds were discovered." +msgstr "Engir samhæfðir samskiptastaðlar né fréttastraumar fundust." + +#: include/follow.php:128 +msgid "The profile address specified does not provide adequate information." +msgstr "Uppgefin forsíðuslóð inniheldur ekki nægilegar upplýsingar." + +#: include/follow.php:132 +msgid "An author or name was not found." +msgstr "Höfundur eða nafn fannst ekki." + +#: include/follow.php:134 +msgid "No browser URL could be matched to this address." +msgstr "Engin vefslóð passaði við þetta vistfang." + +#: include/follow.php:136 +msgid "" +"Unable to match @-style Identity Address with a known protocol or email " +"contact." +msgstr "" + +#: include/follow.php:137 +msgid "Use mailto: in front of address to force email check." +msgstr "" + +#: include/follow.php:143 +msgid "" +"The profile address specified belongs to a network which has been disabled " +"on this site." +msgstr "Þessi forsíðu slóð tilheyrir neti sem er bannað á þessum vef." + +#: include/follow.php:153 +msgid "" +"Limited profile. This person will be unable to receive direct/personal " +"notifications from you." +msgstr "Takmörkuð forsíða. Þessi tengiliður mun ekki getað tekið á móti beinum/einka tilkynningum frá þér." + +#: include/follow.php:254 +msgid "Unable to retrieve contact information." +msgstr "Ekki hægt að sækja tengiliðs upplýsingar." + +#: include/follow.php:287 +msgid "following" +msgstr "fylgist með" + +#: include/Contact.php:119 +msgid "stopped following" +msgstr "hætt að fylgja" + +#: include/Contact.php:369 +msgid "Drop Contact" +msgstr "Henda tengilið" + +#: include/oembed.php:229 +msgid "Embedded content" +msgstr "Innbyggt efni" + +#: include/oembed.php:238 +msgid "Embedding disabled" +msgstr "Innfelling ekki leyfð" + +#: include/bbcode.php:349 include/bbcode.php:1054 include/bbcode.php:1055 +msgid "Image/photo" +msgstr "Mynd" + +#: include/bbcode.php:466 +#, php-format +msgid "%2$s %3$s" +msgstr "%2$s %3$s" + +#: include/bbcode.php:1014 include/bbcode.php:1034 +msgid "$1 wrote:" +msgstr "$1 skrifaði:" + +#: include/bbcode.php:1063 include/bbcode.php:1064 +msgid "Encrypted content" +msgstr "Dulritað efni" + +#: include/contact_selectors.php:32 +msgid "Unknown | Not categorised" +msgstr "Óþekkt | Ekki flokkað" + +#: include/contact_selectors.php:33 +msgid "Block immediately" +msgstr "Banna samstundis" + +#: include/contact_selectors.php:34 +msgid "Shady, spammer, self-marketer" +msgstr "Grunsamlegur, ruslsendari, auglýsandi" + +#: include/contact_selectors.php:35 +msgid "Known to me, but no opinion" +msgstr "Ég þekki þetta, en hef ekki skoðun á" + +#: include/contact_selectors.php:36 +msgid "OK, probably harmless" +msgstr "Í lagi, væntanlega meinlaus" + +#: include/contact_selectors.php:37 +msgid "Reputable, has my trust" +msgstr "Gott orðspor, ég treysti þessu" + +#: include/contact_selectors.php:56 mod/admin.php:859 +msgid "Frequently" +msgstr "Oft" + +#: include/contact_selectors.php:57 mod/admin.php:860 +msgid "Hourly" +msgstr "Klukkustundar fresti" + +#: include/contact_selectors.php:58 mod/admin.php:861 +msgid "Twice daily" +msgstr "Tvisvar á dag" + +#: include/contact_selectors.php:59 mod/admin.php:862 +msgid "Daily" +msgstr "Daglega" + +#: include/contact_selectors.php:60 +msgid "Weekly" +msgstr "Vikulega" + +#: include/contact_selectors.php:61 +msgid "Monthly" +msgstr "Mánaðarlega" + +#: include/contact_selectors.php:76 mod/dfrn_request.php:866 +msgid "Friendica" +msgstr "Friendica" + +#: include/contact_selectors.php:77 +msgid "OStatus" +msgstr "OStatus" + +#: include/contact_selectors.php:78 +msgid "RSS/Atom" +msgstr "RSS/Atom" + +#: include/contact_selectors.php:79 include/contact_selectors.php:86 +#: mod/admin.php:1371 mod/admin.php:1384 mod/admin.php:1396 mod/admin.php:1414 +msgid "Email" +msgstr "Póstfang" + +#: include/contact_selectors.php:80 mod/dfrn_request.php:868 +#: mod/settings.php:827 +msgid "Diaspora" +msgstr "Diaspora" + +#: include/contact_selectors.php:81 +msgid "Facebook" +msgstr "Facebook" + +#: include/contact_selectors.php:82 +msgid "Zot!" +msgstr "Zot!" + +#: include/contact_selectors.php:83 +msgid "LinkedIn" +msgstr "LinkedIn" + +#: include/contact_selectors.php:84 +msgid "XMPP/IM" +msgstr "XMPP/IM" + +#: include/contact_selectors.php:85 +msgid "MySpace" +msgstr "MySpace" + +#: include/contact_selectors.php:87 +msgid "Google+" +msgstr "Google+" + +#: include/contact_selectors.php:88 +msgid "pump.io" +msgstr "pump.io" + +#: include/contact_selectors.php:89 +msgid "Twitter" +msgstr "Twitter" + +#: include/contact_selectors.php:90 +msgid "Diaspora Connector" +msgstr "Diaspora tenging" + +#: include/contact_selectors.php:91 +msgid "GNU Social" +msgstr "GNU Social" + +#: include/contact_selectors.php:92 +msgid "App.net" +msgstr "App.net" + +#: include/contact_selectors.php:103 +msgid "Hubzilla/Redmatrix" +msgstr "Hubzilla/Redmatrix" + +#: include/dbstructure.php:26 #, php-format msgid "" "\n" @@ -5704,1382 +2335,184 @@ msgid "" "\t\t\tfriendica developer if you can not help me on your own. My database might be invalid." msgstr "" -#: ../../include/dbstructure.php:31 +#: include/dbstructure.php:31 #, php-format msgid "" "The error message is\n" "[pre]%s[/pre]" msgstr "" -#: ../../include/dbstructure.php:162 +#: include/dbstructure.php:153 msgid "Errors encountered creating database tables." msgstr "Villur komu upp við að stofna töflur í gagnagrunn." -#: ../../include/dbstructure.php:220 +#: include/dbstructure.php:230 msgid "Errors encountered performing database changes." msgstr "" -#: ../../include/auth.php:38 +#: include/auth.php:45 msgid "Logged out." -msgstr "Útskráður" +msgstr "Skráður út." -#: ../../include/auth.php:128 ../../include/user.php:67 +#: include/auth.php:116 include/auth.php:178 mod/openid.php:100 +msgid "Login failed." +msgstr "Innskráning mistókst." + +#: 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:128 ../../include/user.php:67 +#: include/auth.php:132 include/user.php:75 msgid "The error message was:" -msgstr "" +msgstr "Villumeldingin var:" -#: ../../include/contact_widgets.php:6 -msgid "Add New Contact" -msgstr "Bæta við tengilið" +#: include/network.php:913 +msgid "view full size" +msgstr "Skoða í fullri stærð" -#: ../../include/contact_widgets.php:7 -msgid "Enter address or web location" -msgstr "Settu inn slóð" - -#: ../../include/contact_widgets.php:8 -msgid "Example: bob@example.com, http://example.com/barbara" -msgstr "Dæmi: gudmundur@simnet.is, http://simnet.is/gudmundur" - -#: ../../include/contact_widgets.php:24 -#, php-format -msgid "%d invitation available" -msgid_plural "%d invitations available" -msgstr[0] "%d boðskort í boði" -msgstr[1] "%d boðskort í boði" - -#: ../../include/contact_widgets.php:30 -msgid "Find People" -msgstr "Finna fólk" - -#: ../../include/contact_widgets.php:31 -msgid "Enter name or interest" -msgstr "Settu inn nafn eða áhugamál" - -#: ../../include/contact_widgets.php:32 -msgid "Connect/Follow" -msgstr "Tengjast/fylgja" - -#: ../../include/contact_widgets.php:33 -msgid "Examples: Robert Morgenstein, Fishing" -msgstr "Dæmi: Jón Jónsson, Veiði" - -#: ../../include/contact_widgets.php:36 ../../view/theme/diabook/theme.php:526 -msgid "Similar Interests" -msgstr "Svipuð áhugamál" - -#: ../../include/contact_widgets.php:37 -msgid "Random Profile" -msgstr "" - -#: ../../include/contact_widgets.php:38 ../../view/theme/diabook/theme.php:528 -msgid "Invite Friends" -msgstr "Bjóða vinum aðgang" - -#: ../../include/contact_widgets.php:71 -msgid "Networks" -msgstr "Net" - -#: ../../include/contact_widgets.php:74 -msgid "All Networks" -msgstr "Öll net" - -#: ../../include/contact_widgets.php:104 ../../include/features.php:60 -msgid "Saved Folders" -msgstr "" - -#: ../../include/contact_widgets.php:107 ../../include/contact_widgets.php:139 -msgid "Everything" -msgstr "" - -#: ../../include/contact_widgets.php:136 -msgid "Categories" -msgstr "" - -#: ../../include/features.php:23 -msgid "General Features" -msgstr "" - -#: ../../include/features.php:25 -msgid "Multiple Profiles" -msgstr "" - -#: ../../include/features.php:25 -msgid "Ability to create multiple profiles" -msgstr "" - -#: ../../include/features.php:30 -msgid "Post Composition Features" -msgstr "" - -#: ../../include/features.php:31 -msgid "Richtext Editor" -msgstr "" - -#: ../../include/features.php:31 -msgid "Enable richtext editor" -msgstr "" - -#: ../../include/features.php:32 -msgid "Post Preview" -msgstr "" - -#: ../../include/features.php:32 -msgid "Allow previewing posts and comments before publishing them" -msgstr "" - -#: ../../include/features.php:33 -msgid "Auto-mention Forums" -msgstr "" - -#: ../../include/features.php:33 -msgid "" -"Add/remove mention when a fourm page is selected/deselected in ACL window." -msgstr "" - -#: ../../include/features.php:38 -msgid "Network Sidebar Widgets" -msgstr "" - -#: ../../include/features.php:39 -msgid "Search by Date" -msgstr "" - -#: ../../include/features.php:39 -msgid "Ability to select posts by date ranges" -msgstr "" - -#: ../../include/features.php:40 -msgid "Group Filter" -msgstr "" - -#: ../../include/features.php:40 -msgid "Enable widget to display Network posts only from selected group" -msgstr "" - -#: ../../include/features.php:41 -msgid "Network Filter" -msgstr "" - -#: ../../include/features.php:41 -msgid "Enable widget to display Network posts only from selected network" -msgstr "" - -#: ../../include/features.php:42 -msgid "Save search terms for re-use" -msgstr "" - -#: ../../include/features.php:47 -msgid "Network Tabs" -msgstr "" - -#: ../../include/features.php:48 -msgid "Network Personal Tab" -msgstr "" - -#: ../../include/features.php:48 -msgid "Enable tab to display only Network posts that you've interacted on" -msgstr "" - -#: ../../include/features.php:49 -msgid "Network New Tab" -msgstr "" - -#: ../../include/features.php:49 -msgid "Enable tab to display only new Network posts (from the last 12 hours)" -msgstr "" - -#: ../../include/features.php:50 -msgid "Network Shared Links Tab" -msgstr "" - -#: ../../include/features.php:50 -msgid "Enable tab to display only Network posts with links in them" -msgstr "" - -#: ../../include/features.php:55 -msgid "Post/Comment Tools" -msgstr "" - -#: ../../include/features.php:56 -msgid "Multiple Deletion" -msgstr "" - -#: ../../include/features.php:56 -msgid "Select and delete multiple posts/comments at once" -msgstr "" - -#: ../../include/features.php:57 -msgid "Edit Sent Posts" -msgstr "" - -#: ../../include/features.php:57 -msgid "Edit and correct posts and comments after sending" -msgstr "" - -#: ../../include/features.php:58 -msgid "Tagging" -msgstr "" - -#: ../../include/features.php:58 -msgid "Ability to tag existing posts" -msgstr "" - -#: ../../include/features.php:59 -msgid "Post Categories" -msgstr "" - -#: ../../include/features.php:59 -msgid "Add categories to your posts" -msgstr "" - -#: ../../include/features.php:60 -msgid "Ability to file posts under folders" -msgstr "" - -#: ../../include/features.php:61 -msgid "Dislike Posts" -msgstr "" - -#: ../../include/features.php:61 -msgid "Ability to dislike posts/comments" -msgstr "" - -#: ../../include/features.php:62 -msgid "Star Posts" -msgstr "" - -#: ../../include/features.php:62 -msgid "Ability to mark special posts with a star indicator" -msgstr "" - -#: ../../include/features.php:63 -msgid "Mute Post Notifications" -msgstr "" - -#: ../../include/features.php:63 -msgid "Ability to mute notifications for a thread" -msgstr "" - -#: ../../include/follow.php:32 -msgid "Connect URL missing." -msgstr "Tengi slóð vantar." - -#: ../../include/follow.php:59 -msgid "" -"This site is not configured to allow communications with other networks." -msgstr "Þessi vefur er ekki uppsettur til að leyfa samskipti við önnur samfélagsnet." - -#: ../../include/follow.php:60 ../../include/follow.php:80 -msgid "No compatible communication protocols or feeds were discovered." -msgstr "Enginn samhæfur samskipta staðall né straumar fundust." - -#: ../../include/follow.php:78 -msgid "The profile address specified does not provide adequate information." -msgstr "Uppgefin forsíðu slóð eru ekki næganlegar upplýsingar." - -#: ../../include/follow.php:82 -msgid "An author or name was not found." -msgstr "Höfundur eða nafn fannst ekki." - -#: ../../include/follow.php:84 -msgid "No browser URL could be matched to this address." -msgstr "Engin vefslóð passaði við þessa slóð. " - -#: ../../include/follow.php:86 -msgid "" -"Unable to match @-style Identity Address with a known protocol or email " -"contact." -msgstr "" - -#: ../../include/follow.php:87 -msgid "Use mailto: in front of address to force email check." -msgstr "" - -#: ../../include/follow.php:93 -msgid "" -"The profile address specified belongs to a network which has been disabled " -"on this site." -msgstr "Þessi forsíðu slóð tilheyrir neti sem er bannað á þessum vef." - -#: ../../include/follow.php:103 -msgid "" -"Limited profile. This person will be unable to receive direct/personal " -"notifications from you." -msgstr "Takmörkuð forsíða. Þessi tengiliður mun ekki getað tekið á móti beinum/einka tilkynningum frá þér." - -#: ../../include/follow.php:205 -msgid "Unable to retrieve contact information." -msgstr "Ekki hægt að sækja tengiliðs upplýsingar." - -#: ../../include/follow.php:258 -msgid "following" -msgstr "fylgist með" - -#: ../../include/group.php:25 +#: include/group.php:25 msgid "" "A deleted group with this name was revived. Existing item permissions " "may apply to this group and any future members. If this is " "not what you intended, please create another group with a different name." msgstr "Hóp sem var eytt hefur verið endurlífgaður. Færslur sem þegar voru til geta mögulega farið á hópinn og framtíðar meðlimir. Ef þetta er ekki það sem þú vilt, þá þarftu að búa til nýjan hóp með öðru nafni." -#: ../../include/group.php:207 +#: include/group.php:209 msgid "Default privacy group for new contacts" msgstr "" -#: ../../include/group.php:226 +#: include/group.php:242 msgid "Everybody" msgstr "Allir" -#: ../../include/group.php:249 +#: include/group.php:265 msgid "edit" msgstr "breyta" -#: ../../include/group.php:271 +#: include/group.php:286 mod/newmember.php:61 +msgid "Groups" +msgstr "Hópar" + +#: include/group.php:288 +msgid "Edit groups" +msgstr "Breyta hópum" + +#: include/group.php:290 msgid "Edit group" msgstr "Breyta hóp" -#: ../../include/group.php:272 +#: include/group.php:291 msgid "Create a new group" msgstr "Stofna nýjan hóp" -#: ../../include/group.php:273 +#: include/group.php:292 mod/group.php:94 mod/group.php:178 +msgid "Group Name: " +msgstr "Nafn hóps: " + +#: include/group.php:294 msgid "Contacts not in any group" msgstr "Tengiliðir ekki í neinum hópum" -#: ../../include/datetime.php:43 ../../include/datetime.php:45 -msgid "Miscellaneous" -msgstr "Ýmislegt" +#: include/group.php:296 mod/network.php:201 +msgid "add" +msgstr "bæta við" -#: ../../include/datetime.php:153 ../../include/datetime.php:290 -msgid "year" -msgstr "ár" +#: include/Photo.php:996 include/Photo.php:1011 include/Photo.php:1018 +#: include/Photo.php:1040 include/message.php:145 mod/wall_upload.php:218 +#: mod/wall_upload.php:232 mod/wall_upload.php:239 mod/item.php:472 +msgid "Wall Photos" +msgstr "Veggmyndir" -#: ../../include/datetime.php:158 ../../include/datetime.php:291 -msgid "month" -msgstr "mánuður" - -#: ../../include/datetime.php:163 ../../include/datetime.php:293 -msgid "day" -msgstr "dagur" - -#: ../../include/datetime.php:276 -msgid "never" -msgstr "aldrei" - -#: ../../include/datetime.php:282 -msgid "less than a second ago" -msgstr "fyrir minna en sekúndu" - -#: ../../include/datetime.php:290 -msgid "years" -msgstr "ár" - -#: ../../include/datetime.php:291 -msgid "months" -msgstr "mánuðir" - -#: ../../include/datetime.php:292 -msgid "week" -msgstr "vika" - -#: ../../include/datetime.php:292 -msgid "weeks" -msgstr "vikur" - -#: ../../include/datetime.php:293 -msgid "days" -msgstr "dagar" - -#: ../../include/datetime.php:294 -msgid "hour" -msgstr "klukkustund" - -#: ../../include/datetime.php:294 -msgid "hours" -msgstr "klukkustundir" - -#: ../../include/datetime.php:295 -msgid "minute" -msgstr "mínúta" - -#: ../../include/datetime.php:295 -msgid "minutes" -msgstr "mínútur" - -#: ../../include/datetime.php:296 -msgid "second" -msgstr "sekúnda" - -#: ../../include/datetime.php:296 -msgid "seconds" -msgstr "sekúndur" - -#: ../../include/datetime.php:305 -#, php-format -msgid "%1$d %2$s ago" -msgstr "" - -#: ../../include/datetime.php:477 ../../include/items.php:2211 -#, php-format -msgid "%s's birthday" -msgstr "" - -#: ../../include/datetime.php:478 ../../include/items.php:2212 -#, php-format -msgid "Happy Birthday %s" -msgstr "" - -#: ../../include/acl_selectors.php:333 -msgid "Visible to everybody" -msgstr "Sjáanlegt öllum" - -#: ../../include/acl_selectors.php:334 ../../view/theme/diabook/config.php:142 -#: ../../view/theme/diabook/theme.php:621 -msgid "show" -msgstr "sýna" - -#: ../../include/acl_selectors.php:335 ../../view/theme/diabook/config.php:142 -#: ../../view/theme/diabook/theme.php:621 -msgid "don't show" -msgstr "fela" - -#: ../../include/message.php:15 ../../include/message.php:172 -msgid "[no subject]" -msgstr "[ekkert efni]" - -#: ../../include/Contact.php:115 -msgid "stopped following" -msgstr "hætt að fylgja" - -#: ../../include/Contact.php:228 ../../include/conversation.php:882 -msgid "Poke" -msgstr "" - -#: ../../include/Contact.php:229 ../../include/conversation.php:876 -msgid "View Status" -msgstr "" - -#: ../../include/Contact.php:230 ../../include/conversation.php:877 -msgid "View Profile" -msgstr "" - -#: ../../include/Contact.php:231 ../../include/conversation.php:878 -msgid "View Photos" -msgstr "" - -#: ../../include/Contact.php:232 ../../include/Contact.php:255 -#: ../../include/conversation.php:879 -msgid "Network Posts" -msgstr "" - -#: ../../include/Contact.php:233 ../../include/Contact.php:255 -#: ../../include/conversation.php:880 -msgid "Edit Contact" -msgstr "" - -#: ../../include/Contact.php:234 -msgid "Drop Contact" -msgstr "Henda tengilið" - -#: ../../include/Contact.php:235 ../../include/Contact.php:255 -#: ../../include/conversation.php:881 -msgid "Send PM" -msgstr "Senda einkaboð" - -#: ../../include/security.php:22 -msgid "Welcome " -msgstr "Velkomin(n)" - -#: ../../include/security.php:23 -msgid "Please upload a profile photo." -msgstr "Vinsamlegast hlaðið inn forsíðu mynd." - -#: ../../include/security.php:26 -msgid "Welcome back " -msgstr "Velkomin(n) aftur" - -#: ../../include/security.php:366 -msgid "" -"The form security token was not correct. This probably happened because the " -"form has been opened for too long (>3 hours) before submitting it." -msgstr "" - -#: ../../include/conversation.php:118 ../../include/conversation.php:246 -#: ../../include/text.php:1966 ../../view/theme/diabook/theme.php:463 -msgid "event" -msgstr "atburður" - -#: ../../include/conversation.php:207 -#, php-format -msgid "%1$s poked %2$s" -msgstr "" - -#: ../../include/conversation.php:211 ../../include/text.php:1005 -msgid "poked" -msgstr "" - -#: ../../include/conversation.php:291 -msgid "post/item" -msgstr "" - -#: ../../include/conversation.php:292 -#, php-format -msgid "%1$s marked %2$s's %3$s as favorite" -msgstr "" - -#: ../../include/conversation.php:772 -msgid "remove" -msgstr "" - -#: ../../include/conversation.php:776 -msgid "Delete Selected Items" -msgstr "Eyða völdum færslum" - -#: ../../include/conversation.php:875 -msgid "Follow Thread" -msgstr "" - -#: ../../include/conversation.php:944 -#, php-format -msgid "%s likes this." -msgstr "%s líkar þetta." - -#: ../../include/conversation.php:944 -#, php-format -msgid "%s doesn't like this." -msgstr "%s mislíkar þetta." - -#: ../../include/conversation.php:949 -#, php-format -msgid "%2$d people like this" -msgstr "" - -#: ../../include/conversation.php:952 -#, php-format -msgid "%2$d people don't like this" -msgstr "" - -#: ../../include/conversation.php:966 -msgid "and" -msgstr "og" - -#: ../../include/conversation.php:972 -#, php-format -msgid ", and %d other people" -msgstr ", og %d öðrum" - -#: ../../include/conversation.php:974 -#, php-format -msgid "%s like this." -msgstr "%s líkar þetta." - -#: ../../include/conversation.php:974 -#, php-format -msgid "%s don't like this." -msgstr "%s mislíkar þetta." - -#: ../../include/conversation.php:1001 ../../include/conversation.php:1019 -msgid "Visible to everybody" -msgstr "Sjáanlegt öllum" - -#: ../../include/conversation.php:1003 ../../include/conversation.php:1021 -msgid "Please enter a video link/URL:" -msgstr "Settu inn myndbandshlekkur:" - -#: ../../include/conversation.php:1004 ../../include/conversation.php:1022 -msgid "Please enter an audio link/URL:" -msgstr "Settu inn hlekk á hljóðskrá:" - -#: ../../include/conversation.php:1005 ../../include/conversation.php:1023 -msgid "Tag term:" -msgstr "Merka með:" - -#: ../../include/conversation.php:1007 ../../include/conversation.php:1025 -msgid "Where are you right now?" -msgstr "Hvar ert þú núna?" - -#: ../../include/conversation.php:1008 -msgid "Delete item(s)?" -msgstr "" - -#: ../../include/conversation.php:1051 -msgid "Post to Email" -msgstr "Senda skilaboð á tölvupóst" - -#: ../../include/conversation.php:1056 -#, php-format -msgid "Connectors disabled, since \"%s\" is enabled." -msgstr "" - -#: ../../include/conversation.php:1111 -msgid "permissions" -msgstr "aðgangsstýring" - -#: ../../include/conversation.php:1135 -msgid "Post to Groups" -msgstr "" - -#: ../../include/conversation.php:1136 -msgid "Post to Contacts" -msgstr "" - -#: ../../include/conversation.php:1137 -msgid "Private post" -msgstr "" - -#: ../../include/network.php:895 -msgid "view full size" -msgstr "Skoða í fullri stærð" - -#: ../../include/text.php:297 -msgid "newer" -msgstr "" - -#: ../../include/text.php:299 -msgid "older" -msgstr "" - -#: ../../include/text.php:304 -msgid "prev" -msgstr "á undan" - -#: ../../include/text.php:306 -msgid "first" -msgstr "fremsta" - -#: ../../include/text.php:338 -msgid "last" -msgstr "síðasta" - -#: ../../include/text.php:341 -msgid "next" -msgstr "næsta" - -#: ../../include/text.php:855 -msgid "No contacts" -msgstr "Engir tengiliðir" - -#: ../../include/text.php:864 -#, php-format -msgid "%d Contact" -msgid_plural "%d Contacts" -msgstr[0] "%d Tengiliður" -msgstr[1] "%d Tengiliðir" - -#: ../../include/text.php:1005 -msgid "poke" -msgstr "" - -#: ../../include/text.php:1006 -msgid "ping" -msgstr "" - -#: ../../include/text.php:1006 -msgid "pinged" -msgstr "" - -#: ../../include/text.php:1007 -msgid "prod" -msgstr "" - -#: ../../include/text.php:1007 -msgid "prodded" -msgstr "" - -#: ../../include/text.php:1008 -msgid "slap" -msgstr "" - -#: ../../include/text.php:1008 -msgid "slapped" -msgstr "" - -#: ../../include/text.php:1009 -msgid "finger" -msgstr "" - -#: ../../include/text.php:1009 -msgid "fingered" -msgstr "" - -#: ../../include/text.php:1010 -msgid "rebuff" -msgstr "" - -#: ../../include/text.php:1010 -msgid "rebuffed" -msgstr "" - -#: ../../include/text.php:1024 -msgid "happy" -msgstr "" - -#: ../../include/text.php:1025 -msgid "sad" -msgstr "" - -#: ../../include/text.php:1026 -msgid "mellow" -msgstr "" - -#: ../../include/text.php:1027 -msgid "tired" -msgstr "" - -#: ../../include/text.php:1028 -msgid "perky" -msgstr "" - -#: ../../include/text.php:1029 -msgid "angry" -msgstr "" - -#: ../../include/text.php:1030 -msgid "stupified" -msgstr "" - -#: ../../include/text.php:1031 -msgid "puzzled" -msgstr "" - -#: ../../include/text.php:1032 -msgid "interested" -msgstr "" - -#: ../../include/text.php:1033 -msgid "bitter" -msgstr "" - -#: ../../include/text.php:1034 -msgid "cheerful" -msgstr "" - -#: ../../include/text.php:1035 -msgid "alive" -msgstr "" - -#: ../../include/text.php:1036 -msgid "annoyed" -msgstr "" - -#: ../../include/text.php:1037 -msgid "anxious" -msgstr "" - -#: ../../include/text.php:1038 -msgid "cranky" -msgstr "" - -#: ../../include/text.php:1039 -msgid "disturbed" -msgstr "" - -#: ../../include/text.php:1040 -msgid "frustrated" -msgstr "" - -#: ../../include/text.php:1041 -msgid "motivated" -msgstr "" - -#: ../../include/text.php:1042 -msgid "relaxed" -msgstr "" - -#: ../../include/text.php:1043 -msgid "surprised" -msgstr "" - -#: ../../include/text.php:1213 -msgid "Monday" -msgstr "Mánudagur" - -#: ../../include/text.php:1213 -msgid "Tuesday" -msgstr "Þriðjudagur" - -#: ../../include/text.php:1213 -msgid "Wednesday" -msgstr "Miðvikudagur" - -#: ../../include/text.php:1213 -msgid "Thursday" -msgstr "Fimmtudagur" - -#: ../../include/text.php:1213 -msgid "Friday" -msgstr "Föstudagur" - -#: ../../include/text.php:1213 -msgid "Saturday" -msgstr "Laugardagur" - -#: ../../include/text.php:1213 -msgid "Sunday" -msgstr "Sunnudagur" - -#: ../../include/text.php:1217 -msgid "January" -msgstr "Janúar" - -#: ../../include/text.php:1217 -msgid "February" -msgstr "Febrúar" - -#: ../../include/text.php:1217 -msgid "March" -msgstr "Mars" - -#: ../../include/text.php:1217 -msgid "April" -msgstr "Apríl" - -#: ../../include/text.php:1217 -msgid "May" -msgstr "Maí" - -#: ../../include/text.php:1217 -msgid "June" -msgstr "Júní" - -#: ../../include/text.php:1217 -msgid "July" -msgstr "Júlí" - -#: ../../include/text.php:1217 -msgid "August" -msgstr "Ágúst" - -#: ../../include/text.php:1217 -msgid "September" -msgstr "September" - -#: ../../include/text.php:1217 -msgid "October" -msgstr "Október" - -#: ../../include/text.php:1217 -msgid "November" -msgstr "Nóvember" - -#: ../../include/text.php:1217 -msgid "December" -msgstr "Desember" - -#: ../../include/text.php:1437 -msgid "bytes" -msgstr "bæti" - -#: ../../include/text.php:1461 ../../include/text.php:1473 -msgid "Click to open/close" -msgstr "" - -#: ../../include/text.php:1702 ../../include/user.php:247 -#: ../../view/theme/duepuntozero/config.php:44 -msgid "default" -msgstr "sjálfgefið" - -#: ../../include/text.php:1714 -msgid "Select an alternate language" -msgstr "Velja annað tungumál" - -#: ../../include/text.php:1970 -msgid "activity" -msgstr "" - -#: ../../include/text.php:1973 -msgid "post" -msgstr "" - -#: ../../include/text.php:2141 -msgid "Item filed" -msgstr "" - -#: ../../include/bbcode.php:428 ../../include/bbcode.php:1047 -#: ../../include/bbcode.php:1048 -msgid "Image/photo" -msgstr "Mynd" - -#: ../../include/bbcode.php:528 -#, php-format -msgid "%2$s %3$s" -msgstr "" - -#: ../../include/bbcode.php:562 -#, php-format -msgid "" -"%s wrote the following post" -msgstr "" - -#: ../../include/bbcode.php:1011 ../../include/bbcode.php:1031 -msgid "$1 wrote:" -msgstr "$1 skrifaði:" - -#: ../../include/bbcode.php:1056 ../../include/bbcode.php:1057 -msgid "Encrypted content" -msgstr "Dulritað efni" - -#: ../../include/notifier.php:786 ../../include/delivery.php:456 +#: include/delivery.php:439 msgid "(no subject)" msgstr "(ekkert efni)" -#: ../../include/notifier.php:796 ../../include/delivery.php:467 -#: ../../include/enotify.php:33 -msgid "noreply" -msgstr "ekki svara" +#: include/user.php:39 mod/settings.php:370 +msgid "Passwords do not match. Password unchanged." +msgstr "Aðgangsorð ber ekki saman. Aðgangsorð óbreytt." -#: ../../include/dba_pdo.php:72 ../../include/dba.php:56 -#, php-format -msgid "Cannot locate DNS info for database server '%s'" -msgstr "Get ekki flett upp DNS upplýsingum fyrir gagnagrunns þjón '%s'" - -#: ../../include/contact_selectors.php:32 -msgid "Unknown | Not categorised" -msgstr "Óþekkt | Ekki flokkað" - -#: ../../include/contact_selectors.php:33 -msgid "Block immediately" -msgstr "Hunsa samstundis" - -#: ../../include/contact_selectors.php:34 -msgid "Shady, spammer, self-marketer" -msgstr "Grunsamlegur, rusl sendari, auglýsandi" - -#: ../../include/contact_selectors.php:35 -msgid "Known to me, but no opinion" -msgstr "Ég þekki en hef ekki skoðun á" - -#: ../../include/contact_selectors.php:36 -msgid "OK, probably harmless" -msgstr "Í lagi, væntanlega saklaus" - -#: ../../include/contact_selectors.php:37 -msgid "Reputable, has my trust" -msgstr "Gott orðspor, ég treysti þessu" - -#: ../../include/contact_selectors.php:60 -msgid "Weekly" -msgstr "Vikulega" - -#: ../../include/contact_selectors.php:61 -msgid "Monthly" -msgstr "Mánaðarlega" - -#: ../../include/contact_selectors.php:77 -msgid "OStatus" -msgstr "OStatus" - -#: ../../include/contact_selectors.php:78 -msgid "RSS/Atom" -msgstr "RSS/Atom" - -#: ../../include/contact_selectors.php:82 -msgid "Zot!" -msgstr "Zot!" - -#: ../../include/contact_selectors.php:83 -msgid "LinkedIn" -msgstr "LinkedIn" - -#: ../../include/contact_selectors.php:84 -msgid "XMPP/IM" -msgstr "XMPP/IM" - -#: ../../include/contact_selectors.php:85 -msgid "MySpace" -msgstr "MySpace" - -#: ../../include/contact_selectors.php:87 -msgid "Google+" -msgstr "Google+" - -#: ../../include/contact_selectors.php:88 -msgid "pump.io" -msgstr "pump.io" - -#: ../../include/contact_selectors.php:89 -msgid "Twitter" -msgstr "Twitter" - -#: ../../include/contact_selectors.php:90 -msgid "Diaspora Connector" -msgstr "" - -#: ../../include/contact_selectors.php:91 -msgid "Statusnet" -msgstr "" - -#: ../../include/contact_selectors.php:92 -msgid "App.net" -msgstr "" - -#: ../../include/Scrape.php:614 -msgid " on Last.fm" -msgstr "" - -#: ../../include/bb2diaspora.php:154 ../../include/event.php:20 -msgid "Starts:" -msgstr "Byrjar:" - -#: ../../include/bb2diaspora.php:162 ../../include/event.php:30 -msgid "Finishes:" -msgstr "Endar:" - -#: ../../include/profile_advanced.php:22 -msgid "j F, Y" -msgstr "" - -#: ../../include/profile_advanced.php:23 -msgid "j F" -msgstr "" - -#: ../../include/profile_advanced.php:30 -msgid "Birthday:" -msgstr "Afmælisdagur:" - -#: ../../include/profile_advanced.php:34 -msgid "Age:" -msgstr "Aldur" - -#: ../../include/profile_advanced.php:43 -#, php-format -msgid "for %1$d %2$s" -msgstr "" - -#: ../../include/profile_advanced.php:52 -msgid "Tags:" -msgstr "Merki:" - -#: ../../include/profile_advanced.php:56 -msgid "Religion:" -msgstr "Trúarskoðanir:" - -#: ../../include/profile_advanced.php:60 -msgid "Hobbies/Interests:" -msgstr "Áhugamál/Áhugasvið:" - -#: ../../include/profile_advanced.php:67 -msgid "Contact information and Social Networks:" -msgstr "Tengiliðaupplýsingar og samfélagsnet:" - -#: ../../include/profile_advanced.php:69 -msgid "Musical interests:" -msgstr "Tónlistaráhugi:" - -#: ../../include/profile_advanced.php:71 -msgid "Books, literature:" -msgstr "Bækur, bókmenntir:" - -#: ../../include/profile_advanced.php:73 -msgid "Television:" -msgstr "Sjónvarp:" - -#: ../../include/profile_advanced.php:75 -msgid "Film/dance/culture/entertainment:" -msgstr "Kvikmyndir/dans/menning/afþreying:" - -#: ../../include/profile_advanced.php:77 -msgid "Love/Romance:" -msgstr "Ást/rómantík" - -#: ../../include/profile_advanced.php:79 -msgid "Work/employment:" -msgstr "Atvinna:" - -#: ../../include/profile_advanced.php:81 -msgid "School/education:" -msgstr "Skóli/menntun:" - -#: ../../include/plugin.php:455 ../../include/plugin.php:457 -msgid "Click here to upgrade." -msgstr "" - -#: ../../include/plugin.php:463 -msgid "This action exceeds the limits set by your subscription plan." -msgstr "" - -#: ../../include/plugin.php:468 -msgid "This action is not available under your subscription plan." -msgstr "" - -#: ../../include/nav.php:73 -msgid "End this session" -msgstr "Loka þessu innliti" - -#: ../../include/nav.php:76 ../../include/nav.php:148 -#: ../../view/theme/diabook/theme.php:123 -msgid "Your posts and conversations" -msgstr "Samtölin þín" - -#: ../../include/nav.php:77 ../../view/theme/diabook/theme.php:124 -msgid "Your profile page" -msgstr "Forsíðan þín" - -#: ../../include/nav.php:78 ../../view/theme/diabook/theme.php:126 -msgid "Your photos" -msgstr "Þínar myndir" - -#: ../../include/nav.php:79 -msgid "Your videos" -msgstr "" - -#: ../../include/nav.php:80 ../../view/theme/diabook/theme.php:127 -msgid "Your events" -msgstr "Þínir atburðir" - -#: ../../include/nav.php:81 ../../view/theme/diabook/theme.php:128 -msgid "Personal notes" -msgstr "Þínar einka glósur" - -#: ../../include/nav.php:81 -msgid "Your personal notes" -msgstr "" - -#: ../../include/nav.php:92 -msgid "Sign in" -msgstr "Innskrá" - -#: ../../include/nav.php:105 -msgid "Home Page" -msgstr "Heimasíða" - -#: ../../include/nav.php:109 -msgid "Create an account" -msgstr "Stofna notanda" - -#: ../../include/nav.php:114 -msgid "Help and documentation" -msgstr "Hjálp og leiðbeiningar" - -#: ../../include/nav.php:117 -msgid "Apps" -msgstr "Forr" - -#: ../../include/nav.php:117 -msgid "Addon applications, utilities, games" -msgstr "Viðbætur forrit, leikir" - -#: ../../include/nav.php:119 -msgid "Search site content" -msgstr "Leita í efni á vef" - -#: ../../include/nav.php:129 -msgid "Conversations on this site" -msgstr "Samtöl á þessum vef" - -#: ../../include/nav.php:131 -msgid "Conversations on the network" -msgstr "" - -#: ../../include/nav.php:133 -msgid "Directory" -msgstr "Tengiliðalisti" - -#: ../../include/nav.php:133 -msgid "People directory" -msgstr "Nafnaskrá" - -#: ../../include/nav.php:135 -msgid "Information" -msgstr "" - -#: ../../include/nav.php:135 -msgid "Information about this friendica instance" -msgstr "" - -#: ../../include/nav.php:145 -msgid "Conversations from your friends" -msgstr "Samtöl frá vinum" - -#: ../../include/nav.php:146 -msgid "Network Reset" -msgstr "" - -#: ../../include/nav.php:146 -msgid "Load Network page with no filters" -msgstr "" - -#: ../../include/nav.php:154 -msgid "Friend Requests" -msgstr "Vina beiðnir" - -#: ../../include/nav.php:156 -msgid "See all notifications" -msgstr "" - -#: ../../include/nav.php:157 -msgid "Mark all system notifications seen" -msgstr "Merkja allar tilkynningar sem séðar" - -#: ../../include/nav.php:161 -msgid "Private mail" -msgstr "Einka skilaboð" - -#: ../../include/nav.php:162 -msgid "Inbox" -msgstr "Innhólf" - -#: ../../include/nav.php:163 -msgid "Outbox" -msgstr "Úthólf" - -#: ../../include/nav.php:167 -msgid "Manage" -msgstr "Umsýsla" - -#: ../../include/nav.php:167 -msgid "Manage other pages" -msgstr "Sýsla með aðrar síður" - -#: ../../include/nav.php:172 -msgid "Account settings" -msgstr "Notenda stillingar" - -#: ../../include/nav.php:175 -msgid "Manage/Edit Profiles" -msgstr "" - -#: ../../include/nav.php:177 -msgid "Manage/edit friends and contacts" -msgstr "Sýsla með vini og tengiliði" - -#: ../../include/nav.php:184 -msgid "Site setup and configuration" -msgstr "Stillingar vefs" - -#: ../../include/nav.php:188 -msgid "Navigation" -msgstr "" - -#: ../../include/nav.php:188 -msgid "Site map" -msgstr "" - -#: ../../include/api.php:304 ../../include/api.php:315 -#: ../../include/api.php:416 ../../include/api.php:1063 -#: ../../include/api.php:1065 -msgid "User not found." -msgstr "" - -#: ../../include/api.php:771 -#, php-format -msgid "Daily posting limit of %d posts reached. The post was rejected." -msgstr "" - -#: ../../include/api.php:790 -#, php-format -msgid "Weekly posting limit of %d posts reached. The post was rejected." -msgstr "" - -#: ../../include/api.php:809 -#, php-format -msgid "Monthly posting limit of %d posts reached. The post was rejected." -msgstr "" - -#: ../../include/api.php:1272 -msgid "There is no status with this id." -msgstr "" - -#: ../../include/api.php:1342 -msgid "There is no conversation with this id." -msgstr "" - -#: ../../include/api.php:1614 -msgid "Invalid request." -msgstr "" - -#: ../../include/api.php:1625 -msgid "Invalid item." -msgstr "" - -#: ../../include/api.php:1635 -msgid "Invalid action. " -msgstr "" - -#: ../../include/api.php:1643 -msgid "DB error" -msgstr "" - -#: ../../include/user.php:40 +#: include/user.php:48 msgid "An invitation is required." msgstr "Boðskort er skilyrði." -#: ../../include/user.php:45 +#: include/user.php:53 msgid "Invitation could not be verified." msgstr "Ekki hægt að sannreyna boðskort." -#: ../../include/user.php:53 +#: include/user.php:61 msgid "Invalid OpenID url" msgstr "OpenID slóð ekki til" -#: ../../include/user.php:74 +#: include/user.php:82 msgid "Please enter the required information." -msgstr "Vinsamlegast sláðu inn umbeðin gögn" +msgstr "Settu inn umbeðnar upplýsingar." -#: ../../include/user.php:88 +#: include/user.php:96 msgid "Please use a shorter name." -msgstr "Vinsamlegast notið styttra nafn" +msgstr "Notaðu styttra nafn." -#: ../../include/user.php:90 +#: include/user.php:98 msgid "Name too short." -msgstr "Nafn of stutt" +msgstr "Nafn of stutt." -#: ../../include/user.php:105 +#: include/user.php:113 msgid "That doesn't appear to be your full (First Last) name." msgstr "Þetta virðist ekki vera fullt nafn (Jón Jónsson)." -#: ../../include/user.php:110 +#: include/user.php:118 msgid "Your email domain is not among those allowed on this site." msgstr "Póstþjónninn er ekki í lista yfir leyfða póstþjóna á þessum vef." -#: ../../include/user.php:113 +#: include/user.php:121 msgid "Not a valid email address." msgstr "Ekki gildt póstfang." -#: ../../include/user.php:126 +#: include/user.php:134 msgid "Cannot use that email." msgstr "Ekki hægt að nota þetta póstfang." -#: ../../include/user.php:132 -msgid "" -"Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and " -"must also begin with a letter." -msgstr "Gælunafnið má bara innihalda \"a-z\", \"0-9, \"-\", \"_\" og verður að byrja á staf." +#: include/user.php:140 +msgid "Your \"nickname\" can only contain \"a-z\", \"0-9\" and \"_\"." +msgstr "Gælunafnið má bara innihalda \"a-z\", \"0-9, \"-\", \"_\"." -#: ../../include/user.php:138 ../../include/user.php:236 +#: include/user.php:147 include/user.php:245 msgid "Nickname is already registered. Please choose another." msgstr "Gælunafn þegar skráð. Veldu annað." -#: ../../include/user.php:148 +#: include/user.php:157 msgid "" "Nickname was once registered here and may not be re-used. Please choose " "another." -msgstr "" +msgstr "Gælunafn hefur áður skráð hér og er ekki hægt að endurnýta. Veldu eitthvað annað." -#: ../../include/user.php:164 +#: include/user.php:173 msgid "SERIOUS ERROR: Generation of security keys failed." msgstr "VERULEGA ALVARLEG VILLA: Stofnun á öryggislyklum tókst ekki." -#: ../../include/user.php:222 +#: include/user.php:231 msgid "An error occurred during registration. Please try again." -msgstr "Villa kom upp við nýskráningu. Vinsamlegast reyndu aftur." +msgstr "Villa kom upp við nýskráningu. Reyndu aftur." -#: ../../include/user.php:257 +#: include/user.php:256 view/theme/duepuntozero/config.php:44 +msgid "default" +msgstr "sjálfgefið" + +#: include/user.php:266 msgid "An error occurred creating your default profile. Please try again." msgstr "Villa kom upp við að stofna sjálfgefna forsíðu. Vinnsamlegast reyndu aftur." -#: ../../include/user.php:289 ../../include/user.php:293 -#: ../../include/profile_selectors.php:42 -msgid "Friends" -msgstr "Vinir" +#: include/user.php:345 include/user.php:352 include/user.php:359 +#: mod/photos.php:78 mod/photos.php:192 mod/photos.php:769 mod/photos.php:1232 +#: mod/photos.php:1255 mod/photos.php:1849 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 +#: view/theme/diabook/theme.php:500 +msgid "Profile Photos" +msgstr "Forsíðumyndir" -#: ../../include/user.php:377 +#: include/user.php:387 #, php-format msgid "" "\n" @@ -7088,7 +2521,7 @@ msgid "" "\t" msgstr "" -#: ../../include/user.php:381 +#: include/user.php:391 #, php-format msgid "" "\n" @@ -7118,762 +2551,6242 @@ msgid "" "\t\tThank you and welcome to %2$s." msgstr "" -#: ../../include/diaspora.php:703 -msgid "Sharing notification from Diaspora network" -msgstr "Tilkynning um að einhver deildi einhverju Diaspora netinu" - -#: ../../include/diaspora.php:2520 -msgid "Attachments:" -msgstr "Viðhengi:" - -#: ../../include/items.php:4555 -msgid "Do you really want to delete this item?" -msgstr "Viltu í alvörunni eyða þessu atriði?" - -#: ../../include/items.php:4778 -msgid "Archives" -msgstr "" - -#: ../../include/profile_selectors.php:6 -msgid "Male" -msgstr "Karlmaður" - -#: ../../include/profile_selectors.php:6 -msgid "Female" -msgstr "Kvenmaður" - -#: ../../include/profile_selectors.php:6 -msgid "Currently Male" -msgstr "Karlmaður í augnablikinu" - -#: ../../include/profile_selectors.php:6 -msgid "Currently Female" -msgstr "Kvenmaður í augnablikinu" - -#: ../../include/profile_selectors.php:6 -msgid "Mostly Male" -msgstr "Aðallega karlmaður" - -#: ../../include/profile_selectors.php:6 -msgid "Mostly Female" -msgstr "Aðallega kvenmaður" - -#: ../../include/profile_selectors.php:6 -msgid "Transgender" -msgstr "Kynskiptingur" - -#: ../../include/profile_selectors.php:6 -msgid "Intersex" -msgstr "Hvorukin" - -#: ../../include/profile_selectors.php:6 -msgid "Transsexual" -msgstr "Kynskiptingur" - -#: ../../include/profile_selectors.php:6 -msgid "Hermaphrodite" -msgstr "Tvíkynhneigð(ur)" - -#: ../../include/profile_selectors.php:6 -msgid "Neuter" -msgstr "Hvorukyn" - -#: ../../include/profile_selectors.php:6 -msgid "Non-specific" -msgstr "Ekki ákveðið" - -#: ../../include/profile_selectors.php:6 -msgid "Other" -msgstr "Annað" - -#: ../../include/profile_selectors.php:6 -msgid "Undecided" -msgstr "Óviss" - -#: ../../include/profile_selectors.php:23 -msgid "Males" -msgstr "Karlmenn" - -#: ../../include/profile_selectors.php:23 -msgid "Females" -msgstr "Kvenmenn" - -#: ../../include/profile_selectors.php:23 -msgid "Gay" -msgstr "Samkynhneigður" - -#: ../../include/profile_selectors.php:23 -msgid "Lesbian" -msgstr "Lesbía" - -#: ../../include/profile_selectors.php:23 -msgid "No Preference" -msgstr "Til í allt" - -#: ../../include/profile_selectors.php:23 -msgid "Bisexual" -msgstr "Tvíkynhneigð/ur" - -#: ../../include/profile_selectors.php:23 -msgid "Autosexual" -msgstr "Sjálfkynhneigð/ur" - -#: ../../include/profile_selectors.php:23 -msgid "Abstinent" -msgstr "Skýrlíf/ur" - -#: ../../include/profile_selectors.php:23 -msgid "Virgin" -msgstr "Hrein mey/Hreinn sveinn" - -#: ../../include/profile_selectors.php:23 -msgid "Deviant" -msgstr "Óþekkur" - -#: ../../include/profile_selectors.php:23 -msgid "Fetish" -msgstr "Blæti" - -#: ../../include/profile_selectors.php:23 -msgid "Oodles" -msgstr "Mikið af því" - -#: ../../include/profile_selectors.php:23 -msgid "Nonsexual" -msgstr "Engin kynhneigð" - -#: ../../include/profile_selectors.php:42 -msgid "Single" -msgstr "Einhleyp/ur" - -#: ../../include/profile_selectors.php:42 -msgid "Lonely" -msgstr "Einmanna" - -#: ../../include/profile_selectors.php:42 -msgid "Available" -msgstr "Á lausu" - -#: ../../include/profile_selectors.php:42 -msgid "Unavailable" -msgstr "Frátekin/n" - -#: ../../include/profile_selectors.php:42 -msgid "Has crush" -msgstr "Er skotin(n)" - -#: ../../include/profile_selectors.php:42 -msgid "Infatuated" -msgstr "" - -#: ../../include/profile_selectors.php:42 -msgid "Dating" -msgstr "Deita" - -#: ../../include/profile_selectors.php:42 -msgid "Unfaithful" -msgstr "Ótrú/r" - -#: ../../include/profile_selectors.php:42 -msgid "Sex Addict" -msgstr "Kynlífsfíkill" - -#: ../../include/profile_selectors.php:42 -msgid "Friends/Benefits" -msgstr "Vinir með meiru" - -#: ../../include/profile_selectors.php:42 -msgid "Casual" -msgstr "Lauslát/ur" - -#: ../../include/profile_selectors.php:42 -msgid "Engaged" -msgstr "Trúlofuð/Trúlofaður" - -#: ../../include/profile_selectors.php:42 -msgid "Married" -msgstr "Gift/ur" - -#: ../../include/profile_selectors.php:42 -msgid "Imaginarily married" -msgstr "" - -#: ../../include/profile_selectors.php:42 -msgid "Partners" -msgstr "Félagar" - -#: ../../include/profile_selectors.php:42 -msgid "Cohabiting" -msgstr "Sambýlingur" - -#: ../../include/profile_selectors.php:42 -msgid "Common law" -msgstr "Löggilt sambúð" - -#: ../../include/profile_selectors.php:42 -msgid "Happy" -msgstr "Hamingjusöm/Hamingjusamur" - -#: ../../include/profile_selectors.php:42 -msgid "Not looking" -msgstr "Ekki að leita" - -#: ../../include/profile_selectors.php:42 -msgid "Swinger" -msgstr "Svingari" - -#: ../../include/profile_selectors.php:42 -msgid "Betrayed" -msgstr "Svikin/n" - -#: ../../include/profile_selectors.php:42 -msgid "Separated" -msgstr "Skilin/n að borði og sæng" - -#: ../../include/profile_selectors.php:42 -msgid "Unstable" -msgstr "Óstabíll" - -#: ../../include/profile_selectors.php:42 -msgid "Divorced" -msgstr "Fráskilin/n" - -#: ../../include/profile_selectors.php:42 -msgid "Imaginarily divorced" -msgstr "" - -#: ../../include/profile_selectors.php:42 -msgid "Widowed" -msgstr "Ekkja/Ekkill" - -#: ../../include/profile_selectors.php:42 -msgid "Uncertain" -msgstr "Óviss" - -#: ../../include/profile_selectors.php:42 -msgid "It's complicated" -msgstr "Þetta er flókið" - -#: ../../include/profile_selectors.php:42 -msgid "Don't care" -msgstr "Gæti ekki verið meira sama" - -#: ../../include/profile_selectors.php:42 -msgid "Ask me" -msgstr "Spurðu mig" - -#: ../../include/enotify.php:18 -msgid "Friendica Notification" -msgstr "Friendica tilkynning" - -#: ../../include/enotify.php:21 -msgid "Thank You," -msgstr "Takk fyrir," - -#: ../../include/enotify.php:23 +#: include/user.php:423 mod/admin.php:1178 #, php-format -msgid "%s Administrator" -msgstr "Kerfisstjóri %s" +msgid "Registration details for %s" +msgstr "Nýskráningar upplýsingar fyrir %s" -#: ../../include/enotify.php:64 +#: include/api.php:905 #, php-format -msgid "%s " +msgid "Daily posting limit of %d posts reached. The post was rejected." msgstr "" -#: ../../include/enotify.php:68 +#: include/api.php:925 #, php-format -msgid "[Friendica:Notify] New mail received at %s" +msgid "Weekly posting limit of %d posts reached. The post was rejected." msgstr "" -#: ../../include/enotify.php:70 +#: include/api.php:946 #, php-format -msgid "%1$s sent you a new private message at %2$s." +msgid "Monthly posting limit of %d posts reached. The post was rejected." msgstr "" -#: ../../include/enotify.php:71 -#, php-format -msgid "%1$s sent you %2$s." +#: include/features.php:63 +msgid "General Features" +msgstr "Almennir eiginleikar" + +#: include/features.php:65 +msgid "Multiple Profiles" msgstr "" -#: ../../include/enotify.php:71 -msgid "a private message" -msgstr "einkaskilaboð" - -#: ../../include/enotify.php:72 -#, php-format -msgid "Please visit %s to view and/or reply to your private messages." -msgstr "Farðu á %s til að skoða og/eða svara einkaskilaboðunum þínum." - -#: ../../include/enotify.php:124 -#, php-format -msgid "%1$s commented on [url=%2$s]a %3$s[/url]" +#: include/features.php:65 +msgid "Ability to create multiple profiles" msgstr "" -#: ../../include/enotify.php:131 -#, php-format -msgid "%1$s commented on [url=%2$s]%3$s's %4$s[/url]" -msgstr "" +#: include/features.php:66 +msgid "Photo Location" +msgstr "Staðsetning ljósmyndar" -#: ../../include/enotify.php:139 -#, php-format -msgid "%1$s commented on [url=%2$s]your %3$s[/url]" -msgstr "" - -#: ../../include/enotify.php:149 -#, php-format -msgid "[Friendica:Notify] Comment to conversation #%1$d by %2$s" -msgstr "" - -#: ../../include/enotify.php:150 -#, php-format -msgid "%s commented on an item/conversation you have been following." -msgstr "%s skrifaði athugasemd á færslu/samtal sem þú ert að fylgja." - -#: ../../include/enotify.php:153 ../../include/enotify.php:168 -#: ../../include/enotify.php:181 ../../include/enotify.php:194 -#: ../../include/enotify.php:212 ../../include/enotify.php:225 -#, php-format -msgid "Please visit %s to view and/or reply to the conversation." -msgstr "Farðu á %s til að skoða og/eða svara samtali." - -#: ../../include/enotify.php:160 -#, php-format -msgid "[Friendica:Notify] %s posted to your profile wall" -msgstr "" - -#: ../../include/enotify.php:162 -#, php-format -msgid "%1$s posted to your profile wall at %2$s" -msgstr "" - -#: ../../include/enotify.php:164 -#, php-format -msgid "%1$s posted to [url=%2$s]your wall[/url]" -msgstr "" - -#: ../../include/enotify.php:175 -#, php-format -msgid "[Friendica:Notify] %s tagged you" -msgstr "" - -#: ../../include/enotify.php:176 -#, php-format -msgid "%1$s tagged you at %2$s" -msgstr "" - -#: ../../include/enotify.php:177 -#, php-format -msgid "%1$s [url=%2$s]tagged you[/url]." -msgstr "" - -#: ../../include/enotify.php:188 -#, php-format -msgid "[Friendica:Notify] %s shared a new post" -msgstr "" - -#: ../../include/enotify.php:189 -#, php-format -msgid "%1$s shared a new post at %2$s" -msgstr "" - -#: ../../include/enotify.php:190 -#, php-format -msgid "%1$s [url=%2$s]shared a post[/url]." -msgstr "" - -#: ../../include/enotify.php:202 -#, php-format -msgid "[Friendica:Notify] %1$s poked you" -msgstr "" - -#: ../../include/enotify.php:203 -#, php-format -msgid "%1$s poked you at %2$s" -msgstr "" - -#: ../../include/enotify.php:204 -#, php-format -msgid "%1$s [url=%2$s]poked you[/url]." -msgstr "" - -#: ../../include/enotify.php:219 -#, php-format -msgid "[Friendica:Notify] %s tagged your post" -msgstr "" - -#: ../../include/enotify.php:220 -#, php-format -msgid "%1$s tagged your post at %2$s" -msgstr "" - -#: ../../include/enotify.php:221 -#, php-format -msgid "%1$s tagged [url=%2$s]your post[/url]" -msgstr "" - -#: ../../include/enotify.php:232 -msgid "[Friendica:Notify] Introduction received" -msgstr "" - -#: ../../include/enotify.php:233 -#, php-format -msgid "You've received an introduction from '%1$s' at %2$s" -msgstr "" - -#: ../../include/enotify.php:234 -#, php-format -msgid "You've received [url=%1$s]an introduction[/url] from %2$s." -msgstr "" - -#: ../../include/enotify.php:237 ../../include/enotify.php:279 -#, php-format -msgid "You may visit their profile at %s" -msgstr "Þú getur heimsótt fórsíðuna á %s" - -#: ../../include/enotify.php:239 -#, php-format -msgid "Please visit %s to approve or reject the introduction." -msgstr "Farðu á %s til að samþykkja eða hunsa þessa kynningu." - -#: ../../include/enotify.php:247 -msgid "[Friendica:Notify] A new person is sharing with you" -msgstr "" - -#: ../../include/enotify.php:248 ../../include/enotify.php:249 -#, php-format -msgid "%1$s is sharing with you at %2$s" -msgstr "" - -#: ../../include/enotify.php:255 -msgid "[Friendica:Notify] You have a new follower" -msgstr "" - -#: ../../include/enotify.php:256 ../../include/enotify.php:257 -#, php-format -msgid "You have a new follower at %2$s : %1$s" -msgstr "" - -#: ../../include/enotify.php:270 -msgid "[Friendica:Notify] Friend suggestion received" -msgstr "" - -#: ../../include/enotify.php:271 -#, php-format -msgid "You've received a friend suggestion from '%1$s' at %2$s" -msgstr "" - -#: ../../include/enotify.php:272 -#, php-format +#: include/features.php:66 msgid "" -"You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s." +"Photo metadata is normally stripped. This extracts the location (if present)" +" prior to stripping metadata and links it to a map." msgstr "" -#: ../../include/enotify.php:277 -msgid "Name:" -msgstr "Nafn:" +#: include/features.php:67 +msgid "Export Public Calendar" +msgstr "Flytja út opinbert dagatal" -#: ../../include/enotify.php:278 -msgid "Photo:" -msgstr "Mynd:" - -#: ../../include/enotify.php:281 -#, php-format -msgid "Please visit %s to approve or reject the suggestion." -msgstr "Farðu á %s til að samþykkja eða hunsa þessa uppástungu." - -#: ../../include/enotify.php:289 ../../include/enotify.php:302 -msgid "[Friendica:Notify] Connection accepted" +#: include/features.php:67 +msgid "Ability for visitors to download the public calendar" msgstr "" -#: ../../include/enotify.php:290 ../../include/enotify.php:303 -#, php-format -msgid "'%1$s' has acepted your connection request at %2$s" +#: include/features.php:72 +msgid "Post Composition Features" msgstr "" -#: ../../include/enotify.php:291 ../../include/enotify.php:304 -#, php-format -msgid "%2$s has accepted your [url=%1$s]connection request[/url]." +#: include/features.php:73 +msgid "Richtext Editor" msgstr "" -#: ../../include/enotify.php:294 +#: include/features.php:73 +msgid "Enable richtext editor" +msgstr "" + +#: include/features.php:74 +msgid "Post Preview" +msgstr "" + +#: include/features.php:74 +msgid "Allow previewing posts and comments before publishing them" +msgstr "" + +#: include/features.php:75 +msgid "Auto-mention Forums" +msgstr "" + +#: include/features.php:75 msgid "" -"You are now mutual friends and may exchange status updates, photos, and email\n" -"\twithout restriction." +"Add/remove mention when a fourm page is selected/deselected in ACL window." msgstr "" -#: ../../include/enotify.php:297 ../../include/enotify.php:311 +#: include/features.php:80 +msgid "Network Sidebar Widgets" +msgstr "" + +#: include/features.php:81 +msgid "Search by Date" +msgstr "Leita eftir dagsetningu" + +#: include/features.php:81 +msgid "Ability to select posts by date ranges" +msgstr "" + +#: include/features.php:82 include/features.php:112 +msgid "List Forums" +msgstr "Spjallsvæðalistar" + +#: include/features.php:82 +msgid "Enable widget to display the forums your are connected with" +msgstr "" + +#: include/features.php:83 +msgid "Group Filter" +msgstr "" + +#: include/features.php:83 +msgid "Enable widget to display Network posts only from selected group" +msgstr "" + +#: include/features.php:84 +msgid "Network Filter" +msgstr "" + +#: include/features.php:84 +msgid "Enable widget to display Network posts only from selected network" +msgstr "" + +#: include/features.php:85 mod/search.php:34 mod/network.php:200 +msgid "Saved Searches" +msgstr "Vistaðar leitir" + +#: include/features.php:85 +msgid "Save search terms for re-use" +msgstr "" + +#: include/features.php:90 +msgid "Network Tabs" +msgstr "" + +#: include/features.php:91 +msgid "Network Personal Tab" +msgstr "" + +#: include/features.php:91 +msgid "Enable tab to display only Network posts that you've interacted on" +msgstr "" + +#: include/features.php:92 +msgid "Network New Tab" +msgstr "" + +#: include/features.php:92 +msgid "Enable tab to display only new Network posts (from the last 12 hours)" +msgstr "" + +#: include/features.php:93 +msgid "Network Shared Links Tab" +msgstr "" + +#: include/features.php:93 +msgid "Enable tab to display only Network posts with links in them" +msgstr "" + +#: include/features.php:98 +msgid "Post/Comment Tools" +msgstr "" + +#: include/features.php:99 +msgid "Multiple Deletion" +msgstr "" + +#: include/features.php:99 +msgid "Select and delete multiple posts/comments at once" +msgstr "" + +#: include/features.php:100 +msgid "Edit Sent Posts" +msgstr "" + +#: include/features.php:100 +msgid "Edit and correct posts and comments after sending" +msgstr "" + +#: include/features.php:101 +msgid "Tagging" +msgstr "" + +#: include/features.php:101 +msgid "Ability to tag existing posts" +msgstr "" + +#: include/features.php:102 +msgid "Post Categories" +msgstr "" + +#: include/features.php:102 +msgid "Add categories to your posts" +msgstr "" + +#: include/features.php:103 +msgid "Ability to file posts under folders" +msgstr "" + +#: include/features.php:104 +msgid "Dislike Posts" +msgstr "" + +#: include/features.php:104 +msgid "Ability to dislike posts/comments" +msgstr "" + +#: include/features.php:105 +msgid "Star Posts" +msgstr "" + +#: include/features.php:105 +msgid "Ability to mark special posts with a star indicator" +msgstr "" + +#: include/features.php:106 +msgid "Mute Post Notifications" +msgstr "" + +#: include/features.php:106 +msgid "Ability to mute notifications for a thread" +msgstr "" + +#: include/features.php:111 +msgid "Advanced Profile Settings" +msgstr "" + +#: include/features.php:112 +msgid "Show visitors public community forums at the Advanced Profile Page" +msgstr "" + +#: include/nav.php:35 mod/navigation.php:19 +msgid "Nothing new here" +msgstr "Ekkert nýtt hér" + +#: include/nav.php:39 mod/navigation.php:23 +msgid "Clear notifications" +msgstr "Hreinsa tilkynningar" + +#: include/nav.php:75 view/theme/frio/theme.php:243 +msgid "End this session" +msgstr "Loka þessu innliti" + +#: include/nav.php:78 include/nav.php:163 view/theme/frio/theme.php:246 +#: view/theme/diabook/theme.php:123 +msgid "Your posts and conversations" +msgstr "Samtölin þín" + +#: include/nav.php:79 view/theme/frio/theme.php:247 +#: view/theme/diabook/theme.php:124 +msgid "Your profile page" +msgstr "Forsíðan þín" + +#: include/nav.php:80 view/theme/frio/theme.php:248 +#: view/theme/diabook/theme.php:126 +msgid "Your photos" +msgstr "Myndirnar þínar" + +#: include/nav.php:81 view/theme/frio/theme.php:249 +msgid "Your videos" +msgstr "Myndskeiðin þín" + +#: include/nav.php:82 view/theme/frio/theme.php:250 +#: view/theme/diabook/theme.php:127 +msgid "Your events" +msgstr "Atburðirnir þínir" + +#: include/nav.php:83 view/theme/diabook/theme.php:128 +msgid "Personal notes" +msgstr "Einkaglósur" + +#: include/nav.php:83 +msgid "Your personal notes" +msgstr "Einkaglósurnar þínar" + +#: include/nav.php:94 +msgid "Sign in" +msgstr "Innskrá" + +#: include/nav.php:107 include/nav.php:163 mod/notifications.php:99 +#: view/theme/diabook/theme.php:123 +msgid "Home" +msgstr "Heim" + +#: include/nav.php:107 +msgid "Home Page" +msgstr "Heimasíða" + +#: include/nav.php:111 +msgid "Create an account" +msgstr "Stofna notanda" + +#: include/nav.php:116 mod/help.php:47 view/theme/vier/theme.php:298 +msgid "Help" +msgstr "Hjálp" + +#: include/nav.php:116 +msgid "Help and documentation" +msgstr "Hjálp og leiðbeiningar" + +#: include/nav.php:119 +msgid "Apps" +msgstr "Forrit" + +#: include/nav.php:119 +msgid "Addon applications, utilities, games" +msgstr "Viðbótarforrit, nytjatól, leikir" + +#: include/nav.php:122 +msgid "Search site content" +msgstr "Leita í efni á vef" + +#: include/nav.php:141 include/nav.php:143 mod/community.php:36 +#: view/theme/diabook/theme.php:129 +msgid "Community" +msgstr "Samfélag" + +#: include/nav.php:141 +msgid "Conversations on this site" +msgstr "Samtöl á þessum vef" + +#: include/nav.php:143 +msgid "Conversations on the network" +msgstr "Samtöl á þessu neti" + +#: include/nav.php:148 +msgid "Directory" +msgstr "Tengiliðalisti" + +#: include/nav.php:148 +msgid "People directory" +msgstr "Nafnaskrá" + +#: include/nav.php:150 +msgid "Information" +msgstr "Upplýsingar" + +#: include/nav.php:150 +msgid "Information about this friendica instance" +msgstr "Upplýsingar um þetta tilvik Friendica" + +#: include/nav.php:160 mod/notifications.php:87 mod/admin.php:402 +#: view/theme/frio/theme.php:253 +msgid "Network" +msgstr "Samfélag" + +#: include/nav.php:160 view/theme/frio/theme.php:253 +msgid "Conversations from your friends" +msgstr "Samtöl frá vinum" + +#: include/nav.php:161 +msgid "Network Reset" +msgstr "Núllstilling netkerfis" + +#: include/nav.php:161 +msgid "Load Network page with no filters" +msgstr "" + +#: include/nav.php:168 mod/notifications.php:105 +msgid "Introductions" +msgstr "Kynningar" + +#: include/nav.php:168 +msgid "Friend Requests" +msgstr "Vinabeiðnir" + +#: include/nav.php:171 mod/notifications.php:271 +msgid "Notifications" +msgstr "Tilkynningar" + +#: include/nav.php:172 +msgid "See all notifications" +msgstr "Sjá allar tilkynningar" + +#: include/nav.php:173 mod/settings.php:887 +msgid "Mark as seen" +msgstr "Merka sem séð" + +#: include/nav.php:173 +msgid "Mark all system notifications seen" +msgstr "Merkja allar tilkynningar sem séðar" + +#: include/nav.php:177 mod/message.php:190 view/theme/frio/theme.php:255 +msgid "Messages" +msgstr "Skilaboð" + +#: include/nav.php:177 view/theme/frio/theme.php:255 +msgid "Private mail" +msgstr "Einka skilaboð" + +#: include/nav.php:178 +msgid "Inbox" +msgstr "Innhólf" + +#: include/nav.php:179 +msgid "Outbox" +msgstr "Úthólf" + +#: include/nav.php:180 mod/message.php:16 +msgid "New Message" +msgstr "Ný skilaboð" + +#: include/nav.php:183 +msgid "Manage" +msgstr "Umsýsla" + +#: include/nav.php:183 +msgid "Manage other pages" +msgstr "Sýsla með aðrar síður" + +#: include/nav.php:186 mod/settings.php:81 +msgid "Delegations" +msgstr "" + +#: include/nav.php:186 mod/delegate.php:130 +msgid "Delegate Page Management" +msgstr "" + +#: include/nav.php:188 mod/admin.php:1498 mod/admin.php:1756 +#: mod/newmember.php:22 mod/settings.php:111 view/theme/frio/theme.php:256 +#: view/theme/diabook/theme.php:544 view/theme/diabook/theme.php:648 +msgid "Settings" +msgstr "Stillingar" + +#: include/nav.php:188 view/theme/frio/theme.php:256 +msgid "Account settings" +msgstr "Stillingar aðgangsreiknings" + +#: include/nav.php:191 +msgid "Manage/Edit Profiles" +msgstr "Sýsla með forsíður" + +#: include/nav.php:193 view/theme/frio/theme.php:257 +msgid "Manage/edit friends and contacts" +msgstr "Sýsla með vini og tengiliði" + +#: include/nav.php:200 mod/admin.php:186 +msgid "Admin" +msgstr "Stjórnborð" + +#: include/nav.php:200 +msgid "Site setup and configuration" +msgstr "Uppsetning og stillingar vefsvæðis" + +#: include/nav.php:204 +msgid "Navigation" +msgstr "Yfirsýn" + +#: include/nav.php:204 +msgid "Site map" +msgstr "Yfirlit um vefsvæði" + +#: include/like.php:186 #, php-format -msgid "Please visit %s if you wish to make any changes to this relationship." +msgid "%1$s is attending %2$s's %3$s" msgstr "" -#: ../../include/enotify.php:307 +#: include/like.php:188 #, 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." +msgid "%1$s is not attending %2$s's %3$s" msgstr "" -#: ../../include/enotify.php:309 +#: include/like.php:190 #, php-format -msgid "" -"'%1$s' may choose to extend this into a two-way or more permissive " -"relationship in the future. " +msgid "%1$s may attend %2$s's %3$s" msgstr "" -#: ../../include/enotify.php:322 -msgid "[Friendica System:Notify] registration request" -msgstr "" +#: include/acl_selectors.php:327 +msgid "Post to Email" +msgstr "Senda skilaboð á tölvupóst" -#: ../../include/enotify.php:323 +#: include/acl_selectors.php:332 #, php-format -msgid "You've received a registration request from '%1$s' at %2$s" +msgid "Connectors disabled, since \"%s\" is enabled." msgstr "" -#: ../../include/enotify.php:324 -#, php-format -msgid "You've received a [url=%1$s]registration request[/url] from %2$s." -msgstr "" +#: include/acl_selectors.php:333 mod/settings.php:1131 +msgid "Hide your profile details from unknown viewers?" +msgstr "Fela forsíðuupplýsingar fyrir óþekktum?" -#: ../../include/enotify.php:327 -#, php-format -msgid "Full Name:\t%1$s\\nSite Location:\t%2$s\\nLogin Name:\t%3$s (%4$s)" -msgstr "" +#: include/acl_selectors.php:338 +msgid "Visible to everybody" +msgstr "Sjáanlegt öllum" -#: ../../include/enotify.php:330 -#, php-format -msgid "Please visit %s to approve or reject the request." -msgstr "" +#: include/acl_selectors.php:339 view/theme/vier/config.php:103 +#: view/theme/diabook/theme.php:621 view/theme/diabook/config.php:142 +msgid "show" +msgstr "sýna" -#: ../../include/oembed.php:212 -msgid "Embedded content" -msgstr "Innbyggt efni" +#: include/acl_selectors.php:340 view/theme/vier/config.php:103 +#: view/theme/diabook/theme.php:621 view/theme/diabook/config.php:142 +msgid "don't show" +msgstr "fela" -#: ../../include/oembed.php:221 -msgid "Embedding disabled" -msgstr "Innfelling ekki leyfð" +#: include/acl_selectors.php:346 mod/editpost.php:133 +msgid "CC: email addresses" +msgstr "CC: tölvupóstfang" -#: ../../include/uimport.php:94 -msgid "Error decoding account file" -msgstr "" +#: include/acl_selectors.php:347 mod/editpost.php:140 +msgid "Example: bob@example.com, mary@example.com" +msgstr "Dæmi: bibbi@vefur.is, mgga@vefur.is" -#: ../../include/uimport.php:100 -msgid "Error! No version data in file! This is not a Friendica account file?" -msgstr "" +#: include/acl_selectors.php:349 mod/photos.php:1177 mod/photos.php:1562 +msgid "Permissions" +msgstr "Aðgangsheimildir" -#: ../../include/uimport.php:116 ../../include/uimport.php:127 -msgid "Error! Cannot check nickname" -msgstr "" +#: include/acl_selectors.php:350 +msgid "Close" +msgstr "Loka" -#: ../../include/uimport.php:120 ../../include/uimport.php:131 -#, php-format -msgid "User '%s' already exists on this server!" -msgstr "" +#: include/message.php:15 include/message.php:173 +msgid "[no subject]" +msgstr "[ekkert efni]" -#: ../../include/uimport.php:153 -msgid "User creation error" -msgstr "" +#: index.php:240 mod/apps.php:7 +msgid "You must be logged in to use addons. " +msgstr "Þú verður að vera skráður inn til að geta notað viðbætur. " -#: ../../include/uimport.php:171 -msgid "User profile creation error" -msgstr "" +#: index.php:284 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 "Fannst ekki" -#: ../../include/uimport.php:220 -#, php-format -msgid "%d contact not imported" -msgid_plural "%d contacts not imported" -msgstr[0] "" -msgstr[1] "" +#: index.php:287 mod/help.php:56 +msgid "Page not found." +msgstr "Síða fannst ekki." -#: ../../include/uimport.php:290 -msgid "Done. You can now login with your username and password" -msgstr "" +#: index.php:396 mod/profperm.php:19 mod/group.php:72 +msgid "Permission denied" +msgstr "Bannaður aðgangur" -#: ../../index.php:428 +#: index.php:447 msgid "toggle mobile" msgstr "" -#: ../../view/theme/cleanzero/config.php:82 -#: ../../view/theme/dispy/config.php:72 ../../view/theme/quattro/config.php:66 -#: ../../view/theme/diabook/config.php:150 ../../view/theme/vier/config.php:55 -#: ../../view/theme/duepuntozero/config.php:61 +#: mod/regmod.php:55 +msgid "Account approved." +msgstr "Notandi samþykktur." + +#: mod/regmod.php:92 +#, php-format +msgid "Registration revoked for %s" +msgstr "Skráning afturköllurð vegna %s" + +#: mod/regmod.php:104 +msgid "Please login." +msgstr "Skráðu yður inn." + +#: mod/oexchange.php:25 +msgid "Post successful." +msgstr "Melding tókst." + +#: mod/update_community.php:18 mod/update_notes.php:37 +#: mod/update_display.php:22 mod/update_profile.php:41 +#: mod/update_network.php:25 +msgid "[Embedded content - reload page to view]" +msgstr "[Innfelt efni - endurhlaða síðu til að sjá]" + +#: mod/dirfind.php:36 +#, php-format +msgid "People Search - %s" +msgstr "Leita að fólki - %s" + +#: mod/dirfind.php:47 +#, php-format +msgid "Forum Search - %s" +msgstr "Leita á spjallsvæði - %s" + +#: mod/dirfind.php:240 mod/match.php:107 +msgid "No matches" +msgstr "Engar leitarniðurstöður" + +#: mod/viewsrc.php:7 +msgid "Access denied." +msgstr "Aðgangi hafnað." + +#: mod/home.php:35 +#, php-format +msgid "Welcome to %s" +msgstr "Velkomin í %s" + +#: mod/notify.php:60 mod/notifications.php:387 +msgid "No more system notifications." +msgstr "Ekki fleiri kerfistilkynningar." + +#: mod/notify.php:64 mod/notifications.php:391 +msgid "System Notifications" +msgstr "Kerfistilkynningar" + +#: mod/search.php:25 mod/network.php:191 +msgid "Remove term" +msgstr "Fjarlæga gildi" + +#: mod/search.php:93 mod/search.php:99 mod/directory.php:37 +#: mod/viewcontacts.php:35 mod/videos.php:197 mod/photos.php:963 +#: mod/display.php:199 mod/community.php:22 mod/dfrn_request.php:789 +msgid "Public access denied." +msgstr "Alemennings aðgangur ekki veittur." + +#: mod/search.php:100 +msgid "Only logged in users are permitted to perform a search." +msgstr "Aðeins innskráðir notendur geta framkvæmt leit." + +#: mod/search.php:124 +msgid "Too Many Requests" +msgstr "Of margar beiðnir" + +#: mod/search.php:125 +msgid "Only one search per minute is permitted for not logged in users." +msgstr "Notendur sem ekki eru innskráðir geta aðeins framkvæmt eina leit á mínútu." + +#: mod/search.php:224 mod/community.php:66 mod/community.php:75 +msgid "No results." +msgstr "Engar leitarniðurstöður." + +#: mod/search.php:230 +#, php-format +msgid "Items tagged with: %s" +msgstr "Atriði merkt með: %s" + +#: mod/search.php:232 mod/contacts.php:790 mod/network.php:146 +#, php-format +msgid "Results for: %s" +msgstr "Niðurstöður fyrir: %s" + +#: mod/notifications.php:29 +msgid "Invalid request identifier." +msgstr "Ógilt auðkenni beiðnar." + +#: mod/notifications.php:38 mod/notifications.php:182 +#: mod/notifications.php:262 +msgid "Discard" +msgstr "Henda" + +#: mod/notifications.php:54 mod/notifications.php:181 +#: mod/notifications.php:261 mod/contacts.php:604 mod/contacts.php:799 +#: mod/contacts.php:1000 +msgid "Ignore" +msgstr "Hunsa" + +#: mod/notifications.php:81 +msgid "System" +msgstr "Kerfi" + +#: mod/notifications.php:93 mod/profiles.php:696 mod/network.php:844 +msgid "Personal" +msgstr "Einka" + +#: mod/notifications.php:130 +msgid "Show Ignored Requests" +msgstr "Sýna hunsaðar beiðnir" + +#: mod/notifications.php:130 +msgid "Hide Ignored Requests" +msgstr "Fela hunsaðar beiðnir" + +#: mod/notifications.php:166 mod/notifications.php:236 +msgid "Notification type: " +msgstr "Gerð skilaboða: " + +#: mod/notifications.php:167 +msgid "Friend Suggestion" +msgstr "Vina tillaga" + +#: mod/notifications.php:169 +#, php-format +msgid "suggested by %s" +msgstr "stungið uppá af %s" + +#: mod/notifications.php:174 mod/notifications.php:253 mod/contacts.php:610 +msgid "Hide this contact from others" +msgstr "Gera þennan notanda ósýnilegan öðrum" + +#: mod/notifications.php:175 mod/notifications.php:254 +msgid "Post a new friend activity" +msgstr "Búa til færslu um nýjan vin" + +#: mod/notifications.php:175 mod/notifications.php:254 +msgid "if applicable" +msgstr "ef við á" + +#: mod/notifications.php:178 mod/notifications.php:259 mod/admin.php:1386 +msgid "Approve" +msgstr "Samþykkja" + +#: mod/notifications.php:198 +msgid "Claims to be known to you: " +msgstr "Þykist þekkja þig:" + +#: mod/notifications.php:198 +msgid "yes" +msgstr "já" + +#: mod/notifications.php:198 +msgid "no" +msgstr "nei" + +#: mod/notifications.php:199 +msgid "" +"Shall your connection be bidirectional or not? \"Friend\" implies that you " +"allow to read and you subscribe to their posts. \"Fan/Admirer\" means that " +"you allow to read but you do not want to read theirs. Approve as: " +msgstr "" + +#: mod/notifications.php:202 +msgid "" +"Shall your connection be bidirectional or not? \"Friend\" implies that you " +"allow to read and you subscribe to their posts. \"Sharer\" means that you " +"allow to read but you do not want to read theirs. Approve as: " +msgstr "" + +#: mod/notifications.php:210 +msgid "Friend" +msgstr "Vin" + +#: mod/notifications.php:211 +msgid "Sharer" +msgstr "Deilir" + +#: mod/notifications.php:211 +msgid "Fan/Admirer" +msgstr "Fylgjandi/Aðdáandi" + +#: mod/notifications.php:237 +msgid "Friend/Connect Request" +msgstr "Vinabeiðni/Tengibeiðni" + +#: mod/notifications.php:237 +msgid "New Follower" +msgstr "Nýr fylgjandi" + +#: mod/notifications.php:257 mod/contacts.php:621 mod/follow.php:126 +msgid "Profile URL" +msgstr "Slóð á forsíðu" + +#: mod/notifications.php:268 +msgid "No introductions." +msgstr "Engar kynningar." + +#: mod/notifications.php:309 mod/notifications.php:438 +#: mod/notifications.php:529 +#, php-format +msgid "%s liked %s's post" +msgstr "%s líkaði færsla hjá %s" + +#: mod/notifications.php:319 mod/notifications.php:448 +#: mod/notifications.php:539 +#, php-format +msgid "%s disliked %s's post" +msgstr "%s mislíkaði færsla hjá %s" + +#: mod/notifications.php:334 mod/notifications.php:463 +#: mod/notifications.php:554 +#, php-format +msgid "%s is now friends with %s" +msgstr "%s er nú vinur %s" + +#: mod/notifications.php:341 mod/notifications.php:470 +#, php-format +msgid "%s created a new post" +msgstr "%s bjó til færslu" + +#: mod/notifications.php:342 mod/notifications.php:471 +#: mod/notifications.php:564 +#, php-format +msgid "%s commented on %s's post" +msgstr "%s athugasemd við %s's færslu" + +#: mod/notifications.php:357 +msgid "No more network notifications." +msgstr "Engar tilkynningar á neti." + +#: mod/notifications.php:361 +msgid "Network Notifications" +msgstr "Tilkynningar á neti" + +#: mod/notifications.php:486 +msgid "No more personal notifications." +msgstr "Engar einka tilkynningar." + +#: mod/notifications.php:490 +msgid "Personal Notifications" +msgstr "Einkatilkynningar." + +#: mod/notifications.php:571 +msgid "No more home notifications." +msgstr "Ekki fleiri heima tilkynningar" + +#: mod/notifications.php:575 +msgid "Home Notifications" +msgstr "Tilkynningar frá heimasvæði" + +#: mod/dfrn_confirm.php:65 mod/profiles.php:18 mod/profiles.php:133 +#: mod/profiles.php:179 mod/profiles.php:610 +msgid "Profile not found." +msgstr "Forsíða fannst ekki." + +#: mod/dfrn_confirm.php:121 mod/fsuggest.php:20 mod/fsuggest.php:92 +#: mod/crepair.php:114 +msgid "Contact not found." +msgstr "Tengiliður fannst ekki." + +#: mod/dfrn_confirm.php:122 +msgid "" +"This may occasionally happen if contact was requested by both persons and it" +" has already been approved." +msgstr "" + +#: mod/dfrn_confirm.php:241 +msgid "Response from remote site was not understood." +msgstr "Ekki tókst að skilja svar frá ytri vef." + +#: mod/dfrn_confirm.php:250 mod/dfrn_confirm.php:255 +msgid "Unexpected response from remote site: " +msgstr "Óskiljanlegt svar frá ytri vef:" + +#: mod/dfrn_confirm.php:264 +msgid "Confirmation completed successfully." +msgstr "Staðfesting kláraði eðlilega." + +#: mod/dfrn_confirm.php:266 mod/dfrn_confirm.php:280 mod/dfrn_confirm.php:287 +msgid "Remote site reported: " +msgstr "Ytri vefur svaraði:" + +#: mod/dfrn_confirm.php:278 +msgid "Temporary failure. Please wait and try again." +msgstr "Tímabundin villa. Bíddu aðeins og reyndu svo aftur." + +#: mod/dfrn_confirm.php:285 +msgid "Introduction failed or was revoked." +msgstr "Kynning mistókst eða var afturkölluð." + +#: mod/dfrn_confirm.php:414 +msgid "Unable to set contact photo." +msgstr "Ekki tókst að setja tengiliðamynd." + +#: mod/dfrn_confirm.php:552 +#, php-format +msgid "No user record found for '%s' " +msgstr "Engin notandafærsla fannst fyrir '%s'" + +#: mod/dfrn_confirm.php:562 +msgid "Our site encryption key is apparently messed up." +msgstr "Dulkóðunnar lykill síðunnar okker er í döðlu." + +#: mod/dfrn_confirm.php:573 +msgid "Empty site URL was provided or URL could not be decrypted by us." +msgstr "Tómt slóð var uppgefin eða ekki okkur tókst ekki að afkóða slóð." + +#: mod/dfrn_confirm.php:594 +msgid "Contact record was not found for you on our site." +msgstr "Tengiliðafærslan þín fannst ekki á þjóninum okkar." + +#: mod/dfrn_confirm.php:608 +#, php-format +msgid "Site public key not available in contact record for URL %s." +msgstr "Opinber lykill er ekki til í tengiliðafærslu fyrir slóð %s." + +#: mod/dfrn_confirm.php:628 +msgid "" +"The ID provided by your system is a duplicate on our system. It should work " +"if you try again." +msgstr "Skilríkið sem þjónninn þinn gaf upp er þegar afritað á okkar þjón. Þetta ætti að virka ef þú bara reynir aftur." + +#: mod/dfrn_confirm.php:639 +msgid "Unable to set your contact credentials on our system." +msgstr "Ekki tókst að setja tengiliða skilríkið þitt upp á þjóninum okkar." + +#: mod/dfrn_confirm.php:698 +msgid "Unable to update your contact profile details on our system" +msgstr "Ekki tókst að uppfæra tengiliða skilríkis upplýsingarnar á okkar þjón" + +#: mod/dfrn_confirm.php:770 +#, php-format +msgid "%1$s has joined %2$s" +msgstr "%1$s hefur gengið til liðs við %2$s" + +#: mod/friendica.php:70 +msgid "This is Friendica, version" +msgstr "Þetta er Friendica útgáfa" + +#: mod/friendica.php:71 +msgid "running at web location" +msgstr "Keyrir á slóð" + +#: mod/friendica.php:73 +msgid "" +"Please visit Friendica.com to learn " +"more about the Friendica project." +msgstr "Á Friendica.com er hægt að fræðast nánar um Friendica verkefnið." + +#: mod/friendica.php:75 +msgid "Bug reports and issues: please visit" +msgstr "Villu tilkynningar og vandamál: endilega skoða" + +#: mod/friendica.php:75 +msgid "the bugtracker at github" +msgstr "villuskráningu á GitHub" + +#: mod/friendica.php:76 +msgid "" +"Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - " +"dot com" +msgstr "Uppástungur, lof, framlög og svo framvegis - sendið tölvupóst á \"Info\" hjá Friendica - punktur com" + +#: mod/friendica.php:90 +msgid "Installed plugins/addons/apps:" +msgstr "Uppsettar kerfiseiningar/viðbætur/forrit:" + +#: mod/friendica.php:103 +msgid "No installed plugins/addons/apps" +msgstr "Engin uppsett kerfiseining/viðbót/forrit" + +#: mod/lostpass.php:19 +msgid "No valid account found." +msgstr "Engin gildur aðgangur fannst." + +#: mod/lostpass.php:35 +msgid "Password reset request issued. Check your email." +msgstr "Gefin var beiðni um breytingu á lykilorði. Opnaðu tölvupóstinn þinn." + +#: mod/lostpass.php:42 +#, php-format +msgid "" +"\n" +"\t\tDear %1$s,\n" +"\t\t\tA request was recently received at \"%2$s\" to reset your account\n" +"\t\tpassword. In order to confirm this request, please select the verification link\n" +"\t\tbelow or paste it into your web browser address bar.\n" +"\n" +"\t\tIf you did NOT request this change, please DO NOT follow the link\n" +"\t\tprovided and ignore and/or delete this email.\n" +"\n" +"\t\tYour password will not be changed unless we can verify that you\n" +"\t\tissued this request." +msgstr "" + +#: mod/lostpass.php:53 +#, php-format +msgid "" +"\n" +"\t\tFollow this link to verify your identity:\n" +"\n" +"\t\t%1$s\n" +"\n" +"\t\tYou will then receive a follow-up message containing the new password.\n" +"\t\tYou may change that password from your account settings page after logging in.\n" +"\n" +"\t\tThe login details are as follows:\n" +"\n" +"\t\tSite Location:\t%2$s\n" +"\t\tLogin Name:\t%3$s" +msgstr "" + +#: mod/lostpass.php:72 +#, php-format +msgid "Password reset requested at %s" +msgstr "Beðið var um endurstillingu lykilorðs %s" + +#: mod/lostpass.php:92 +msgid "" +"Request could not be verified. (You may have previously submitted it.) " +"Password reset failed." +msgstr "Ekki var hægt að sannreyna beiðni. (Það getur verið að þú hafir þegar verið búin/n að senda hana.) Endurstilling á lykilorði tókst ekki." + +#: mod/lostpass.php:110 +msgid "Your password has been reset as requested." +msgstr "Aðgangsorðið þitt hefur verið endurstilt." + +#: mod/lostpass.php:111 +msgid "Your new password is" +msgstr "Nýja aðgangsorð þitt er " + +#: mod/lostpass.php:112 +msgid "Save or copy your new password - and then" +msgstr "Vistaðu eða afritaðu nýja aðgangsorðið - og" + +#: mod/lostpass.php:113 +msgid "click here to login" +msgstr "smelltu síðan hér til að skrá þig inn" + +#: mod/lostpass.php:114 +msgid "" +"Your password may be changed from the Settings page after " +"successful login." +msgstr "Þú getur breytt aðgangsorðinu þínu á Stillingar síðunni eftir að þú hefur skráð þig inn." + +#: mod/lostpass.php:125 +#, php-format +msgid "" +"\n" +"\t\t\t\tDear %1$s,\n" +"\t\t\t\t\tYour password has been changed as requested. Please retain this\n" +"\t\t\t\tinformation for your records (or change your password immediately to\n" +"\t\t\t\tsomething that you will remember).\n" +"\t\t\t" +msgstr "" + +#: mod/lostpass.php:131 +#, php-format +msgid "" +"\n" +"\t\t\t\tYour login details are as follows:\n" +"\n" +"\t\t\t\tSite Location:\t%1$s\n" +"\t\t\t\tLogin Name:\t%2$s\n" +"\t\t\t\tPassword:\t%3$s\n" +"\n" +"\t\t\t\tYou may change that password from your account settings page after logging in.\n" +"\t\t\t" +msgstr "" + +#: mod/lostpass.php:147 +#, php-format +msgid "Your password has been changed at %s" +msgstr "Aðgangsorðinu þínu var breytt í %s" + +#: mod/lostpass.php:159 +msgid "Forgot your Password?" +msgstr "Gleymdir þú lykilorði þínu?" + +#: mod/lostpass.php:160 +msgid "" +"Enter your email address and submit to have your password reset. Then check " +"your email for further instructions." +msgstr "Sláðu inn tölvupóstfangið þitt til að endurstilla aðgangsorðið og fá leiðbeiningar sendar með tölvupósti." + +#: mod/lostpass.php:162 +msgid "Reset" +msgstr "Endursetja" + +#: mod/hcard.php:10 +msgid "No profile" +msgstr "Engin forsíða" + +#: mod/help.php:41 +msgid "Help:" +msgstr "Hjálp:" + +#: 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 "Ógild fyrirspurn." + +#: mod/wall_upload.php:151 mod/photos.php:805 mod/profile_photo.php:150 +#, php-format +msgid "Image exceeds size limit of %s" +msgstr "" + +#: mod/wall_upload.php:188 mod/photos.php:845 mod/profile_photo.php:159 +msgid "Unable to process image." +msgstr "Ekki mögulegt afgreiða mynd" + +#: mod/wall_upload.php:221 mod/photos.php:872 mod/profile_photo.php:307 +msgid "Image upload failed." +msgstr "Ekki hægt að hlaða upp mynd." + +#: mod/fsuggest.php:63 +msgid "Friend suggestion sent." +msgstr "Vina tillaga send" + +#: mod/fsuggest.php:97 +msgid "Suggest Friends" +msgstr "Stinga uppá vinum" + +#: mod/fsuggest.php:99 +#, php-format +msgid "Suggest a friend for %s" +msgstr "Stinga uppá vin fyrir %s" + +#: mod/fsuggest.php:107 mod/events.php:507 mod/invite.php:140 +#: mod/crepair.php:179 mod/content.php:728 mod/profiles.php:681 +#: mod/poke.php:199 mod/photos.php:1124 mod/photos.php:1248 +#: mod/photos.php:1566 mod/photos.php:1617 mod/photos.php:1665 +#: mod/photos.php:1753 mod/install.php:272 mod/install.php:312 +#: mod/contacts.php:575 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/cleanzero/config.php:80 view/theme/quattro/config.php:64 +#: view/theme/dispy/config.php:70 view/theme/vier/config.php:107 +#: view/theme/diabook/theme.php:633 view/theme/diabook/config.php:148 +#: view/theme/duepuntozero/config.php:59 +msgid "Submit" +msgstr "Senda inn" + +#: mod/lockview.php:31 mod/lockview.php:39 +msgid "Remote privacy information not available." +msgstr "Persónuverndar upplýsingar ekki fyrir hendi á fjarlægum vefþjón." + +#: mod/lockview.php:48 +msgid "Visible to:" +msgstr "Sýnilegt eftirfarandi:" + +#: 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:279 +msgid "View" +msgstr "Skoða" + +#: mod/events.php:381 +msgid "Create New Event" +msgstr "Stofna nýjan atburð" + +#: mod/events.php:382 mod/cal.php:280 +msgid "Previous" +msgstr "Fyrra" + +#: mod/events.php:383 mod/cal.php:281 mod/install.php:231 +msgid "Next" +msgstr "Næsta" + +#: mod/events.php:483 +msgid "Event details" +msgstr "Nánar um atburð" + +#: mod/events.php:484 +msgid "Starting date and Title are required." +msgstr "" + +#: mod/events.php:485 mod/events.php:486 +msgid "Event Starts:" +msgstr "Atburður hefst:" + +#: mod/events.php:485 mod/events.php:497 mod/profiles.php:709 +msgid "Required" +msgstr "Nauðsynlegt" + +#: mod/events.php:487 mod/events.php:503 +msgid "Finish date/time is not known or not relevant" +msgstr "Loka dagsetning/tímasetning ekki vituð eða skiptir ekki máli" + +#: mod/events.php:489 mod/events.php:490 +msgid "Event Finishes:" +msgstr "Atburður klárar:" + +#: mod/events.php:491 mod/events.php:504 +msgid "Adjust for viewer timezone" +msgstr "Heimfæra á tímabelti áhorfanda" + +#: mod/events.php:493 +msgid "Description:" +msgstr "Lýsing:" + +#: mod/events.php:497 mod/events.php:499 +msgid "Title:" +msgstr "Titill:" + +#: mod/events.php:500 mod/events.php:501 +msgid "Share this event" +msgstr "Deila þessum atburði" + +#: mod/directory.php:205 view/theme/vier/theme.php:201 +#: view/theme/diabook/theme.php:525 +msgid "Global Directory" +msgstr "Alheimstengiliðaskrá" + +#: mod/directory.php:207 +msgid "Find on this site" +msgstr "Leita á þessum vef" + +#: mod/directory.php:209 +msgid "Results for:" +msgstr "Niðurstöður fyrir:" + +#: mod/directory.php:211 +msgid "Site Directory" +msgstr "Skrá yfir tengiliði á þessum vef" + +#: mod/directory.php:218 +msgid "No entries (some entries may be hidden)." +msgstr "Engar færslur (sumar geta verið faldar)." + +#: mod/openid.php:24 +msgid "OpenID protocol error. No ID returned." +msgstr "Samskiptavilla í OpenID. Ekkert auðkenni barst." + +#: 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:191 +msgid "" +"This site has exceeded the number of allowed daily account registrations. " +"Please try again tomorrow." +msgstr "Þessi vefur hefur náð hámarks fjölda daglegra nýskráninga. Reyndu aftur á morgun." + +#: mod/uimport.php:64 mod/register.php:286 +msgid "Import" +msgstr "Flytja inn" + +#: mod/uimport.php:66 +msgid "Move account" +msgstr "Flytja aðgang" + +#: mod/uimport.php:67 +msgid "You can import an account from another Friendica server." +msgstr "" + +#: mod/uimport.php:68 +msgid "" +"You need to export your account from the old server and upload it here. We " +"will recreate your old account here with all your contacts. We will try also" +" to inform your friends that you moved here." +msgstr "" + +#: mod/uimport.php:69 +msgid "" +"This feature is experimental. We can't import contacts from the OStatus " +"network (GNU Social/Statusnet) or from Diaspora" +msgstr "" + +#: mod/uimport.php:70 +msgid "Account file" +msgstr "" + +#: mod/uimport.php:70 +msgid "" +"To export your account, go to \"Settings->Export your personal data\" and " +"select \"Export account\"" +msgstr "" + +#: mod/nogroup.php:41 mod/viewcontacts.php:97 mod/contacts.php:584 +#: mod/contacts.php:939 +#, php-format +msgid "Visit %s's profile [%s]" +msgstr "Heimsækja forsíðu %s [%s]" + +#: mod/nogroup.php:42 mod/contacts.php:940 +msgid "Edit contact" +msgstr "Breyta tengilið" + +#: mod/nogroup.php:63 +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 "Engin leitarorð. Bættu við leitarorðum í sjálfgefnu forsíðuna." + +#: mod/match.php:86 +msgid "is interested in:" +msgstr "hefur áhuga á:" + +#: mod/match.php:100 +msgid "Profile Match" +msgstr "Forsíða fannst" + +#: mod/uexport.php:29 +msgid "Export account" +msgstr "" + +#: mod/uexport.php:29 +msgid "" +"Export your account info and contacts. Use this to make a backup of your " +"account and/or to move it to another server." +msgstr "" + +#: mod/uexport.php:30 +msgid "Export all" +msgstr "" + +#: mod/uexport.php:30 +msgid "" +"Export your accout info, contacts and all your items as json. Could be a " +"very big file, and could take a lot of time. Use this to make a full backup " +"of your account (photos are not exported)" +msgstr "" + +#: mod/uexport.php:37 mod/settings.php:95 +msgid "Export personal data" +msgstr "Sækja persónuleg gögn" + +#: mod/invite.php:27 +msgid "Total invitation limit exceeded." +msgstr "" + +#: mod/invite.php:49 +#, php-format +msgid "%s : Not a valid email address." +msgstr "%s : Ekki gilt póstfang" + +#: mod/invite.php:73 +msgid "Please join us on Friendica" +msgstr "" + +#: mod/invite.php:84 +msgid "Invitation limit exceeded. Please contact your site administrator." +msgstr "" + +#: mod/invite.php:89 +#, php-format +msgid "%s : Message delivery failed." +msgstr "%s : Skilaboð komust ekki til skila." + +#: mod/invite.php:93 +#, php-format +msgid "%d message sent." +msgid_plural "%d messages sent." +msgstr[0] "%d skilaboð send." +msgstr[1] "%d skilaboð send" + +#: mod/invite.php:112 +msgid "You have no more invitations available" +msgstr "Þú hefur ekki fleiri boðskort." + +#: mod/invite.php:120 +#, php-format +msgid "" +"Visit %s for a list of public sites that you can join. Friendica members on " +"other sites can all connect with each other, as well as with members of many" +" other social networks." +msgstr "" + +#: mod/invite.php:122 +#, php-format +msgid "" +"To accept this invitation, please visit and register at %s or any other " +"public Friendica website." +msgstr "" + +#: mod/invite.php:123 +#, php-format +msgid "" +"Friendica sites all inter-connect to create a huge privacy-enhanced social " +"web that is owned and controlled by its members. They can also connect with " +"many traditional social networks. See %s for a list of alternate Friendica " +"sites you can join." +msgstr "" + +#: mod/invite.php:126 +msgid "" +"Our apologies. This system is not currently configured to connect with other" +" public sites or invite members." +msgstr "" + +#: mod/invite.php:132 +msgid "Send invitations" +msgstr "Senda kynningar" + +#: mod/invite.php:133 +msgid "Enter email addresses, one per line:" +msgstr "Póstföng, eitt í hverja línu:" + +#: mod/invite.php:134 mod/wallmessage.php:151 mod/message.php:351 +#: mod/message.php:541 +msgid "Your message:" +msgstr "Skilaboðin:" + +#: mod/invite.php:135 +msgid "" +"You are cordially invited to join me and other close friends on Friendica - " +"and help us to create a better social web." +msgstr "" + +#: mod/invite.php:137 +msgid "You will need to supply this invitation code: $invite_code" +msgstr "Þú þarft að nota eftirfarandi boðskorta auðkenni: $invite_code" + +#: mod/invite.php:137 +msgid "" +"Once you have registered, please connect with me via my profile page at:" +msgstr "Þegar þú hefur nýskráð þig, hafðu samband við mig gegnum síðuna mína á:" + +#: mod/invite.php:139 +msgid "" +"For more information about the Friendica project and why we feel it is " +"important, please visit http://friendica.com" +msgstr "" + +#: mod/fbrowser.php:41 mod/fbrowser.php:62 mod/photos.php:62 +#: mod/photos.php:192 mod/photos.php:1106 mod/photos.php:1232 +#: mod/photos.php:1255 mod/photos.php:1825 mod/photos.php:1837 +#: view/theme/diabook/theme.php:499 +msgid "Contact Photos" +msgstr "Myndir tengiliðs" + +#: mod/fbrowser.php:133 +msgid "Files" +msgstr "Skrár" + +#: mod/maintenance.php:5 +msgid "System down for maintenance" +msgstr "Kerfið er óvirkt vegna viðhalds" + +#: mod/profperm.php:25 mod/profperm.php:56 +msgid "Invalid profile identifier." +msgstr "Ógilt tengiliða auðkenni" + +#: mod/profperm.php:102 +msgid "Profile Visibility Editor" +msgstr "Sýsla með sjáanleika forsíðu" + +#: mod/profperm.php:106 mod/group.php:223 +msgid "Click on a contact to add or remove." +msgstr "Ýttu á tengilið til að bæta við hóp eða taka úr hóp." + +#: mod/profperm.php:115 +msgid "Visible To" +msgstr "Sjáanlegur hverjum" + +#: mod/profperm.php:131 +msgid "All Contacts (with secure profile access)" +msgstr "Allir tengiliðir (með öruggann aðgang að forsíðu)" + +#: mod/viewcontacts.php:72 +msgid "No contacts." +msgstr "Enginn tengiliður" + +#: mod/crepair.php:87 +msgid "Contact settings applied." +msgstr "Stillingar tengiliðs uppfærðar." + +#: mod/crepair.php:89 +msgid "Contact update failed." +msgstr "Uppfærsla tengiliðs mistókst." + +#: mod/crepair.php:120 +msgid "" +"WARNING: This is highly advanced and if you enter incorrect" +" information your communications with this contact may stop working." +msgstr "AÐVÖRUN: Þetta er mjög flókið og ef þú setur inn vitlausar upplýsingar þá munu samskipti við þennan tengilið hætta að virka." + +#: mod/crepair.php:121 +msgid "" +"Please use your browser 'Back' button now if you are " +"uncertain what to do on this page." +msgstr "Notaðu \"Til baka\" hnappinn núna ef þú ert ekki viss um hvað þú eigir að gera á þessari síðu." + +#: mod/crepair.php:134 mod/crepair.php:136 +msgid "No mirroring" +msgstr "" + +#: mod/crepair.php:134 +msgid "Mirror as forwarded posting" +msgstr "" + +#: mod/crepair.php:134 mod/crepair.php:136 +msgid "Mirror as my own posting" +msgstr "" + +#: mod/crepair.php:150 +msgid "Return to contact editor" +msgstr "Fara til baka í tengiliðasýsl" + +#: mod/crepair.php:152 +msgid "Refetch contact data" +msgstr "" + +#: mod/crepair.php:153 mod/admin.php:1371 mod/admin.php:1384 +#: mod/admin.php:1396 mod/admin.php:1412 mod/settings.php:665 +#: mod/settings.php:691 +msgid "Name" +msgstr "Nafn" + +#: mod/crepair.php:154 +msgid "Account Nickname" +msgstr "Gælunafn notanda" + +#: mod/crepair.php:155 +msgid "@Tagname - overrides Name/Nickname" +msgstr "@Merkjanafn - yfirskrifar Nafn/Gælunafn" + +#: mod/crepair.php:156 +msgid "Account URL" +msgstr "Heimasíða notanda" + +#: mod/crepair.php:157 +msgid "Friend Request URL" +msgstr "Slóð vinabeiðnar" + +#: mod/crepair.php:158 +msgid "Friend Confirm URL" +msgstr "Slóð vina staðfestingar " + +#: mod/crepair.php:159 +msgid "Notification Endpoint URL" +msgstr "Slóð loka tilkynningar" + +#: mod/crepair.php:160 +msgid "Poll/Feed URL" +msgstr "Slóð á könnun/fréttastraum" + +#: mod/crepair.php:161 +msgid "New photo from this URL" +msgstr "Ný mynd frá slóð" + +#: mod/crepair.php:162 +msgid "Remote Self" +msgstr "" + +#: mod/crepair.php:165 +msgid "Mirror postings from this contact" +msgstr "" + +#: mod/crepair.php:167 +msgid "" +"Mark this contact as remote_self, this will cause friendica to repost new " +"entries from this contact." +msgstr "" + +#: mod/tagrm.php:41 +msgid "Tag removed" +msgstr "Merki fjarlægt" + +#: mod/tagrm.php:79 +msgid "Remove Item Tag" +msgstr "Fjarlægja merki " + +#: mod/tagrm.php:81 +msgid "Select a tag to remove: " +msgstr "Veldu merki til að fjarlægja:" + +#: mod/tagrm.php:93 mod/delegate.php:139 +msgid "Remove" +msgstr "Fjarlægja" + +#: mod/ping.php:272 +msgid "{0} wants to be your friend" +msgstr "{0} vill vera vinur þinn" + +#: mod/ping.php:287 +msgid "{0} sent you a message" +msgstr "{0} sendi þér skilboð" + +#: mod/ping.php:302 +msgid "{0} requested registration" +msgstr "{0} óskaði eftir skráningu" + +#: mod/admin.php:92 +msgid "Theme settings updated." +msgstr "Þemastillingar uppfærðar." + +#: mod/admin.php:156 mod/admin.php:923 +msgid "Site" +msgstr "Vefur" + +#: mod/admin.php:157 mod/admin.php:867 mod/admin.php:1379 mod/admin.php:1394 +msgid "Users" +msgstr "Notendur" + +#: mod/admin.php:158 mod/admin.php:1496 mod/admin.php:1556 mod/settings.php:74 +msgid "Plugins" +msgstr "Kerfiseiningar" + +#: mod/admin.php:159 mod/admin.php:1754 mod/admin.php:1804 +msgid "Themes" +msgstr "Þemu" + +#: mod/admin.php:160 mod/settings.php:52 +msgid "Additional features" +msgstr "Viðbótareiginleikar" + +#: mod/admin.php:161 +msgid "DB updates" +msgstr "Gagnagrunnsuppfærslur" + +#: mod/admin.php:162 mod/admin.php:397 +msgid "Inspect Queue" +msgstr "" + +#: mod/admin.php:163 mod/admin.php:363 +msgid "Federation Statistics" +msgstr "" + +#: mod/admin.php:177 mod/admin.php:188 mod/admin.php:1872 +msgid "Logs" +msgstr "Atburðaskrá" + +#: mod/admin.php:178 mod/admin.php:1939 +msgid "View Logs" +msgstr "Skoða atburðaskrár" + +#: mod/admin.php:179 +msgid "probe address" +msgstr "" + +#: mod/admin.php:180 +msgid "check webfinger" +msgstr "" + +#: mod/admin.php:187 +msgid "Plugin Features" +msgstr "Eiginleikar kerfiseiningar" + +#: mod/admin.php:189 +msgid "diagnostics" +msgstr "greining" + +#: mod/admin.php:190 +msgid "User registrations waiting for confirmation" +msgstr "Notenda nýskráningar bíða samþykkis" + +#: mod/admin.php:356 +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 "" + +#: mod/admin.php:357 +msgid "" +"The Auto Discovered Contact Directory feature is not enabled, it " +"will improve the data displayed here." +msgstr "" + +#: mod/admin.php:362 mod/admin.php:396 mod/admin.php:460 mod/admin.php:922 +#: mod/admin.php:1378 mod/admin.php:1495 mod/admin.php:1555 mod/admin.php:1753 +#: mod/admin.php:1803 mod/admin.php:1871 mod/admin.php:1938 +msgid "Administration" +msgstr "Stjórnun" + +#: mod/admin.php:369 +#, php-format +msgid "Currently this node is aware of %d nodes from the following platforms:" +msgstr "" + +#: mod/admin.php:399 +msgid "ID" +msgstr "" + +#: mod/admin.php:400 +msgid "Recipient Name" +msgstr "Nafn viðtakanda" + +#: mod/admin.php:401 +msgid "Recipient Profile" +msgstr "Forsíða viðtakanda" + +#: mod/admin.php:403 +msgid "Created" +msgstr "Búið til" + +#: mod/admin.php:404 +msgid "Last Tried" +msgstr "Síðast prófað" + +#: mod/admin.php:405 +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/admin.php:424 mod/admin.php:1327 +msgid "Normal Account" +msgstr "Venjulegur notandi" + +#: mod/admin.php:425 mod/admin.php:1328 +msgid "Soapbox Account" +msgstr "Sápukassa notandi" + +#: mod/admin.php:426 mod/admin.php:1329 +msgid "Community/Celebrity Account" +msgstr "Hópa-/Stjörnusíða" + +#: mod/admin.php:427 mod/admin.php:1330 +msgid "Automatic Friend Account" +msgstr "Verður sjálfkrafa vinur notandi" + +#: mod/admin.php:428 +msgid "Blog Account" +msgstr "" + +#: mod/admin.php:429 +msgid "Private Forum" +msgstr "Einkaspjallsvæði" + +#: mod/admin.php:455 +msgid "Message queues" +msgstr "" + +#: mod/admin.php:461 +msgid "Summary" +msgstr "Samantekt" + +#: mod/admin.php:463 +msgid "Registered users" +msgstr "Skráðir notendur" + +#: mod/admin.php:465 +msgid "Pending registrations" +msgstr "Nýskráningar í bið" + +#: mod/admin.php:466 +msgid "Version" +msgstr "Útgáfa" + +#: mod/admin.php:471 +msgid "Active plugins" +msgstr "Virkar kerfiseiningar" + +#: mod/admin.php:494 +msgid "Can not parse base url. Must have at least ://" +msgstr "" + +#: mod/admin.php:795 +msgid "RINO2 needs mcrypt php extension to work." +msgstr "" + +#: mod/admin.php:803 +msgid "Site settings updated." +msgstr "Stillingar vefsvæðis uppfærðar." + +#: mod/admin.php:831 mod/settings.php:919 +msgid "No special theme for mobile devices" +msgstr "" + +#: mod/admin.php:850 +msgid "No community page" +msgstr "" + +#: mod/admin.php:851 +msgid "Public postings from users of this site" +msgstr "" + +#: mod/admin.php:852 +msgid "Global community page" +msgstr "" + +#: mod/admin.php:857 mod/contacts.php:529 +msgid "Never" +msgstr "aldrei" + +#: mod/admin.php:858 +msgid "At post arrival" +msgstr "" + +#: mod/admin.php:866 mod/contacts.php:556 +msgid "Disabled" +msgstr "Slökkt" + +#: mod/admin.php:868 +msgid "Users, Global Contacts" +msgstr "" + +#: mod/admin.php:869 +msgid "Users, Global Contacts/fallback" +msgstr "" + +#: mod/admin.php:873 +msgid "One month" +msgstr "Einn mánuður" + +#: mod/admin.php:874 +msgid "Three months" +msgstr "Þrír mánuðir" + +#: mod/admin.php:875 +msgid "Half a year" +msgstr "Hálft ár" + +#: mod/admin.php:876 +msgid "One year" +msgstr "Eitt ár" + +#: mod/admin.php:881 +msgid "Multi user instance" +msgstr "" + +#: mod/admin.php:904 +msgid "Closed" +msgstr "Lokað" + +#: mod/admin.php:905 +msgid "Requires approval" +msgstr "Þarf samþykki" + +#: mod/admin.php:906 +msgid "Open" +msgstr "Opið" + +#: mod/admin.php:910 +msgid "No SSL policy, links will track page SSL state" +msgstr "" + +#: mod/admin.php:911 +msgid "Force all links to use SSL" +msgstr "" + +#: mod/admin.php:912 +msgid "Self-signed certificate, use SSL for local links only (discouraged)" +msgstr "" + +#: mod/admin.php:924 mod/admin.php:1557 mod/admin.php:1805 mod/admin.php:1873 +#: mod/admin.php:2022 mod/settings.php:663 mod/settings.php:773 +#: mod/settings.php:820 mod/settings.php:889 mod/settings.php:976 +#: mod/settings.php:1214 +msgid "Save Settings" +msgstr "Vista stillingar" + +#: mod/admin.php:925 mod/register.php:263 +msgid "Registration" +msgstr "Nýskráning" + +#: mod/admin.php:926 +msgid "File upload" +msgstr "Hlaða upp skrá" + +#: mod/admin.php:927 +msgid "Policies" +msgstr "Stefna" + +#: mod/admin.php:929 +msgid "Auto Discovered Contact Directory" +msgstr "" + +#: mod/admin.php:930 +msgid "Performance" +msgstr "Afköst" + +#: mod/admin.php:931 +msgid "Worker" +msgstr "" + +#: mod/admin.php:932 +msgid "" +"Relocate - WARNING: advanced function. Could make this server unreachable." +msgstr "" + +#: mod/admin.php:935 +msgid "Site name" +msgstr "Nafn síðu" + +#: mod/admin.php:936 +msgid "Host name" +msgstr "Vélarheiti" + +#: mod/admin.php:937 +msgid "Sender Email" +msgstr "Tölvupóstfang sendanda" + +#: mod/admin.php:937 +msgid "" +"The email address your server shall use to send notification emails from." +msgstr "" + +#: mod/admin.php:938 +msgid "Banner/Logo" +msgstr "Borði/Merki" + +#: mod/admin.php:939 +msgid "Shortcut icon" +msgstr "Táknmynd flýtivísunar" + +#: mod/admin.php:939 +msgid "Link to an icon that will be used for browsers." +msgstr "" + +#: mod/admin.php:940 +msgid "Touch icon" +msgstr "" + +#: mod/admin.php:940 +msgid "Link to an icon that will be used for tablets and mobiles." +msgstr "" + +#: mod/admin.php:941 +msgid "Additional Info" +msgstr "" + +#: mod/admin.php:941 +#, php-format +msgid "" +"For public servers: you can add additional information here that will be " +"listed at %s/siteinfo." +msgstr "" + +#: mod/admin.php:942 +msgid "System language" +msgstr "Tungumál kerfis" + +#: mod/admin.php:943 +msgid "System theme" +msgstr "Þema kerfis" + +#: mod/admin.php:943 +msgid "" +"Default system theme - may be over-ridden by user profiles - change theme settings" +msgstr "" + +#: mod/admin.php:944 +msgid "Mobile system theme" +msgstr "" + +#: mod/admin.php:944 +msgid "Theme for mobile devices" +msgstr "" + +#: mod/admin.php:945 +msgid "SSL link policy" +msgstr "" + +#: mod/admin.php:945 +msgid "Determines whether generated links should be forced to use SSL" +msgstr "" + +#: mod/admin.php:946 +msgid "Force SSL" +msgstr "Þvinga SSL" + +#: mod/admin.php:946 +msgid "" +"Force all Non-SSL requests to SSL - Attention: on some systems it could lead" +" to endless loops." +msgstr "" + +#: mod/admin.php:947 +msgid "Old style 'Share'" +msgstr "" + +#: mod/admin.php:947 +msgid "Deactivates the bbcode element 'share' for repeating items." +msgstr "" + +#: mod/admin.php:948 +msgid "Hide help entry from navigation menu" +msgstr "" + +#: mod/admin.php:948 +msgid "" +"Hides the menu entry for the Help pages from the navigation menu. You can " +"still access it calling /help directly." +msgstr "" + +#: mod/admin.php:949 +msgid "Single user instance" +msgstr "" + +#: mod/admin.php:949 +msgid "Make this instance multi-user or single-user for the named user" +msgstr "" + +#: mod/admin.php:950 +msgid "Maximum image size" +msgstr "Mesta stærð mynda" + +#: mod/admin.php:950 +msgid "" +"Maximum size in bytes of uploaded images. Default is 0, which means no " +"limits." +msgstr "" + +#: mod/admin.php:951 +msgid "Maximum image length" +msgstr "" + +#: mod/admin.php:951 +msgid "" +"Maximum length in pixels of the longest side of uploaded images. Default is " +"-1, which means no limits." +msgstr "" + +#: mod/admin.php:952 +msgid "JPEG image quality" +msgstr "JPEG myndgæði" + +#: mod/admin.php:952 +msgid "" +"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is " +"100, which is full quality." +msgstr "" + +#: mod/admin.php:954 +msgid "Register policy" +msgstr "Stefna varðandi nýskráningar" + +#: mod/admin.php:955 +msgid "Maximum Daily Registrations" +msgstr "" + +#: mod/admin.php:955 +msgid "" +"If registration is permitted above, this sets the maximum number of new user" +" registrations to accept per day. If register is set to closed, this " +"setting has no effect." +msgstr "" + +#: mod/admin.php:956 +msgid "Register text" +msgstr "Texti við nýskráningu" + +#: mod/admin.php:956 +msgid "Will be displayed prominently on the registration page." +msgstr "" + +#: mod/admin.php:957 +msgid "Accounts abandoned after x days" +msgstr "Yfirgefnir notendur eftir x daga" + +#: mod/admin.php:957 +msgid "" +"Will not waste system resources polling external sites for abandonded " +"accounts. Enter 0 for no time limit." +msgstr "Hættir að eyða afli í að sækja færslur á ytri vefi fyrir yfirgefna notendur. 0 þýðir notendur merkjast ekki yfirgefnir." + +#: mod/admin.php:958 +msgid "Allowed friend domains" +msgstr "Leyfð lén vina" + +#: mod/admin.php:958 +msgid "" +"Comma separated list of domains which are allowed to establish friendships " +"with this site. Wildcards are accepted. Empty to allow any domains" +msgstr "" + +#: mod/admin.php:959 +msgid "Allowed email domains" +msgstr "Leyfð lén póstfangs" + +#: mod/admin.php:959 +msgid "" +"Comma separated list of domains which are allowed in email addresses for " +"registrations to this site. Wildcards are accepted. Empty to allow any " +"domains" +msgstr "" + +#: mod/admin.php:960 +msgid "Block public" +msgstr "Loka á opinberar færslur" + +#: mod/admin.php:960 +msgid "" +"Check to block public access to all otherwise public personal pages on this " +"site unless you are currently logged in." +msgstr "" + +#: mod/admin.php:961 +msgid "Force publish" +msgstr "Skylda að vera í tengiliðalista" + +#: mod/admin.php:961 +msgid "" +"Check to force all profiles on this site to be listed in the site directory." +msgstr "" + +#: mod/admin.php:962 +msgid "Global directory URL" +msgstr "" + +#: mod/admin.php:962 +msgid "" +"URL to the global directory. If this is not set, the global directory is " +"completely unavailable to the application." +msgstr "" + +#: mod/admin.php:963 +msgid "Allow threaded items" +msgstr "" + +#: mod/admin.php:963 +msgid "Allow infinite level threading for items on this site." +msgstr "" + +#: mod/admin.php:964 +msgid "Private posts by default for new users" +msgstr "" + +#: mod/admin.php:964 +msgid "" +"Set default post permissions for all new members to the default privacy " +"group rather than public." +msgstr "" + +#: mod/admin.php:965 +msgid "Don't include post content in email notifications" +msgstr "" + +#: mod/admin.php:965 +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:966 +msgid "Disallow public access to addons listed in the apps menu." +msgstr "Hindra opið aðgengi að viðbótum í forritavalmyndinni." + +#: mod/admin.php:966 +msgid "" +"Checking this box will restrict addons listed in the apps menu to members " +"only." +msgstr "Ef hakað er í þetta verður aðgengi að viðbótum í forritavalmyndinni takmarkað við meðlimi." + +#: mod/admin.php:967 +msgid "Don't embed private images in posts" +msgstr "" + +#: mod/admin.php:967 +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:968 +msgid "Allow Users to set remote_self" +msgstr "" + +#: mod/admin.php:968 +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:969 +msgid "Block multiple registrations" +msgstr "Banna margar skráningar" + +#: mod/admin.php:969 +msgid "Disallow users to register additional accounts for use as pages." +msgstr "" + +#: mod/admin.php:970 +msgid "OpenID support" +msgstr "Leyfa OpenID auðkenningu" + +#: mod/admin.php:970 +msgid "OpenID support for registration and logins." +msgstr "" + +#: mod/admin.php:971 +msgid "Fullname check" +msgstr "Fullt nafn skilyrði" + +#: mod/admin.php:971 +msgid "" +"Force users to register with a space between firstname and lastname in Full " +"name, as an antispam measure" +msgstr "" + +#: mod/admin.php:972 +msgid "UTF-8 Regular expressions" +msgstr "UTF-8 hefðbundin stöfun" + +#: mod/admin.php:972 +msgid "Use PHP UTF8 regular expressions" +msgstr "" + +#: mod/admin.php:973 +msgid "Community Page Style" +msgstr "" + +#: mod/admin.php:973 +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:974 +msgid "Posts per user on community page" +msgstr "" + +#: mod/admin.php:974 +msgid "" +"The maximum number of posts per user on the community page. (Not valid for " +"'Global Community')" +msgstr "" + +#: mod/admin.php:975 +msgid "Enable OStatus support" +msgstr "Leyfa OStatus stuðning" + +#: mod/admin.php:975 +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:976 +msgid "OStatus conversation completion interval" +msgstr "" + +#: mod/admin.php:976 +msgid "" +"How often shall the poller check for new entries in OStatus conversations? " +"This can be a very ressource task." +msgstr "" + +#: mod/admin.php:977 +msgid "Only import OStatus threads from our contacts" +msgstr "" + +#: mod/admin.php:977 +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:978 +msgid "OStatus support can only be enabled if threading is enabled." +msgstr "" + +#: mod/admin.php:980 +msgid "" +"Diaspora support can't be enabled because Friendica was installed into a sub" +" directory." +msgstr "" + +#: mod/admin.php:981 +msgid "Enable Diaspora support" +msgstr "Leyfa Diaspora tengingar" + +#: mod/admin.php:981 +msgid "Provide built-in Diaspora network compatibility." +msgstr "" + +#: mod/admin.php:982 +msgid "Only allow Friendica contacts" +msgstr "Aðeins leyfa Friendica notendur" + +#: mod/admin.php:982 +msgid "" +"All contacts must use Friendica protocols. All other built-in communication " +"protocols disabled." +msgstr "" + +#: mod/admin.php:983 +msgid "Verify SSL" +msgstr "Sannreyna SSL" + +#: mod/admin.php:983 +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:984 +msgid "Proxy user" +msgstr "Proxy notandi" + +#: mod/admin.php:985 +msgid "Proxy URL" +msgstr "Proxy slóð" + +#: mod/admin.php:986 +msgid "Network timeout" +msgstr "Net tími útrunninn" + +#: mod/admin.php:986 +msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." +msgstr "" + +#: mod/admin.php:987 +msgid "Delivery interval" +msgstr "" + +#: mod/admin.php:987 +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:988 +msgid "Poll interval" +msgstr "" + +#: mod/admin.php:988 +msgid "" +"Delay background polling processes by this many seconds to reduce system " +"load. If 0, use delivery interval." +msgstr "" + +#: mod/admin.php:989 +msgid "Maximum Load Average" +msgstr "Mesta meðaltals álag" + +#: mod/admin.php:989 +msgid "" +"Maximum system load before delivery and poll processes are deferred - " +"default 50." +msgstr "" + +#: mod/admin.php:990 +msgid "Maximum Load Average (Frontend)" +msgstr "" + +#: mod/admin.php:990 +msgid "Maximum system load before the frontend quits service - default 50." +msgstr "" + +#: mod/admin.php:991 +msgid "Maximum table size for optimization" +msgstr "" + +#: mod/admin.php:991 +msgid "" +"Maximum table size (in MB) for the automatic optimization - default 100 MB. " +"Enter -1 to disable it." +msgstr "" + +#: mod/admin.php:992 +msgid "Minimum level of fragmentation" +msgstr "" + +#: mod/admin.php:992 +msgid "" +"Minimum fragmenation level to start the automatic optimization - default " +"value is 30%." +msgstr "" + +#: mod/admin.php:994 +msgid "Periodical check of global contacts" +msgstr "" + +#: mod/admin.php:994 +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:995 +msgid "Days between requery" +msgstr "" + +#: mod/admin.php:995 +msgid "Number of days after which a server is requeried for his contacts." +msgstr "" + +#: mod/admin.php:996 +msgid "Discover contacts from other servers" +msgstr "" + +#: mod/admin.php:996 +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:997 +msgid "Timeframe for fetching global contacts" +msgstr "" + +#: mod/admin.php:997 +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:998 +msgid "Search the local directory" +msgstr "" + +#: mod/admin.php:998 +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:1000 +msgid "Publish server information" +msgstr "" + +#: mod/admin.php:1000 +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 the-federation.info for details." +msgstr "" + +#: mod/admin.php:1002 +msgid "Use MySQL full text engine" +msgstr "" + +#: mod/admin.php:1002 +msgid "" +"Activates the full text engine. Speeds up search - but can only search for " +"four and more characters." +msgstr "" + +#: mod/admin.php:1003 +msgid "Suppress Language" +msgstr "" + +#: mod/admin.php:1003 +msgid "Suppress language information in meta information about a posting." +msgstr "" + +#: mod/admin.php:1004 +msgid "Suppress Tags" +msgstr "" + +#: mod/admin.php:1004 +msgid "Suppress showing a list of hashtags at the end of the posting." +msgstr "" + +#: mod/admin.php:1005 +msgid "Path to item cache" +msgstr "" + +#: mod/admin.php:1005 +msgid "The item caches buffers generated bbcode and external images." +msgstr "" + +#: mod/admin.php:1006 +msgid "Cache duration in seconds" +msgstr "" + +#: mod/admin.php:1006 +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:1007 +msgid "Maximum numbers of comments per post" +msgstr "" + +#: mod/admin.php:1007 +msgid "How much comments should be shown for each post? Default value is 100." +msgstr "" + +#: mod/admin.php:1008 +msgid "Path for lock file" +msgstr "" + +#: mod/admin.php:1008 +msgid "" +"The lock file is used to avoid multiple pollers at one time. Only define a " +"folder here." +msgstr "" + +#: mod/admin.php:1009 +msgid "Temp path" +msgstr "" + +#: mod/admin.php:1009 +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:1010 +msgid "Base path to installation" +msgstr "" + +#: mod/admin.php:1010 +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:1011 +msgid "Disable picture proxy" +msgstr "" + +#: mod/admin.php:1011 +msgid "" +"The picture proxy increases performance and privacy. It shouldn't be used on" +" systems with very low bandwith." +msgstr "" + +#: mod/admin.php:1012 +msgid "Enable old style pager" +msgstr "" + +#: mod/admin.php:1012 +msgid "" +"The old style pager has page numbers but slows down massively the page " +"speed." +msgstr "" + +#: mod/admin.php:1013 +msgid "Only search in tags" +msgstr "" + +#: mod/admin.php:1013 +msgid "On large systems the text search can slow down the system extremely." +msgstr "" + +#: mod/admin.php:1015 +msgid "New base url" +msgstr "" + +#: mod/admin.php:1015 +msgid "" +"Change base url for this server. Sends relocate message to all DFRN contacts" +" of all users." +msgstr "" + +#: mod/admin.php:1017 +msgid "RINO Encryption" +msgstr "" + +#: mod/admin.php:1017 +msgid "Encryption layer between nodes." +msgstr "" + +#: mod/admin.php:1018 +msgid "Embedly API key" +msgstr "" + +#: mod/admin.php:1018 +msgid "" +"Embedly is used to fetch additional data for " +"web pages. This is an optional parameter." +msgstr "" + +#: mod/admin.php:1020 +msgid "Enable 'worker' background processing" +msgstr "" + +#: mod/admin.php:1020 +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:1021 +msgid "Maximum number of parallel workers" +msgstr "" + +#: mod/admin.php:1021 +msgid "" +"On shared hosters set this to 2. On larger systems, values of 10 are great. " +"Default value is 4." +msgstr "" + +#: mod/admin.php:1022 +msgid "Don't use 'proc_open' with the worker" +msgstr "" + +#: mod/admin.php:1022 +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/admin.php:1051 +msgid "Update has been marked successful" +msgstr "Uppfærsla merkt sem tókst" + +#: mod/admin.php:1059 +#, php-format +msgid "Database structure update %s was successfully applied." +msgstr "" + +#: mod/admin.php:1062 +#, php-format +msgid "Executing of database structure update %s failed with error: %s" +msgstr "" + +#: mod/admin.php:1074 +#, php-format +msgid "Executing %s failed with error: %s" +msgstr "" + +#: mod/admin.php:1077 +#, php-format +msgid "Update %s was successfully applied." +msgstr "Uppfærsla %s framkvæmd." + +#: mod/admin.php:1081 +#, php-format +msgid "Update %s did not return a status. Unknown if it succeeded." +msgstr "Uppfærsla %s skilaði ekki gildi. Óvíst hvort tókst." + +#: mod/admin.php:1083 +#, php-format +msgid "There was no additional update function %s that needed to be called." +msgstr "" + +#: mod/admin.php:1102 +msgid "No failed updates." +msgstr "Engar uppfærslur mistókust." + +#: mod/admin.php:1103 +msgid "Check database structure" +msgstr "" + +#: mod/admin.php:1108 +msgid "Failed Updates" +msgstr "Uppfærslur sem mistókust" + +#: mod/admin.php:1109 +msgid "" +"This does not include updates prior to 1139, which did not return a status." +msgstr "Þetta á ekki við uppfærslur fyrir 1139, þær skiluðu ekki lokastöðu." + +#: mod/admin.php:1110 +msgid "Mark success (if update was manually applied)" +msgstr "Merkja sem tókst (ef uppfærsla var framkvæmd handvirkt)" + +#: mod/admin.php:1111 +msgid "Attempt to execute this update step automatically" +msgstr "Framkvæma þessa uppfærslu sjálfkrafa" + +#: mod/admin.php:1143 +#, 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 "" + +#: mod/admin.php:1146 +#, 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:1190 +#, php-format +msgid "%s user blocked/unblocked" +msgid_plural "%s users blocked/unblocked" +msgstr[0] "" +msgstr[1] "" + +#: mod/admin.php:1197 +#, php-format +msgid "%s user deleted" +msgid_plural "%s users deleted" +msgstr[0] "%s notenda eytt" +msgstr[1] "%s notendum eytt" + +#: mod/admin.php:1244 +#, php-format +msgid "User '%s' deleted" +msgstr "Notanda '%s' eytt" + +#: mod/admin.php:1252 +#, php-format +msgid "User '%s' unblocked" +msgstr "Notanda '%s' gefið frelsi" + +#: mod/admin.php:1252 +#, php-format +msgid "User '%s' blocked" +msgstr "Notanda '%s' settur í bann" + +#: mod/admin.php:1371 mod/admin.php:1396 +msgid "Register date" +msgstr "Skráningar dagsetning" + +#: mod/admin.php:1371 mod/admin.php:1396 +msgid "Last login" +msgstr "Síðast innskráður" + +#: mod/admin.php:1371 mod/admin.php:1396 +msgid "Last item" +msgstr "Síðasta" + +#: mod/admin.php:1371 mod/settings.php:43 +msgid "Account" +msgstr "Notandi" + +#: mod/admin.php:1380 +msgid "Add User" +msgstr "" + +#: mod/admin.php:1381 +msgid "select all" +msgstr "velja alla" + +#: mod/admin.php:1382 +msgid "User registrations waiting for confirm" +msgstr "Skráning notanda býður samþykkis" + +#: mod/admin.php:1383 +msgid "User waiting for permanent deletion" +msgstr "" + +#: mod/admin.php:1384 +msgid "Request date" +msgstr "Dagsetning beiðnar" + +#: mod/admin.php:1385 +msgid "No registrations." +msgstr "Engin skráning" + +#: mod/admin.php:1387 +msgid "Deny" +msgstr "Hafnað" + +#: mod/admin.php:1389 mod/contacts.php:603 mod/contacts.php:798 +#: mod/contacts.php:992 +msgid "Block" +msgstr "Banna" + +#: mod/admin.php:1390 mod/contacts.php:603 mod/contacts.php:798 +#: mod/contacts.php:992 +msgid "Unblock" +msgstr "Afbanna" + +#: mod/admin.php:1391 +msgid "Site admin" +msgstr "Vefstjóri" + +#: mod/admin.php:1392 +msgid "Account expired" +msgstr "" + +#: mod/admin.php:1395 +msgid "New User" +msgstr "" + +#: mod/admin.php:1396 +msgid "Deleted since" +msgstr "" + +#: mod/admin.php:1401 +msgid "" +"Selected users will be deleted!\\n\\nEverything these users had posted on " +"this site will be permanently deleted!\\n\\nAre you sure?" +msgstr "Valdir notendur verður eytt!\\n\\nAllt sem þessir notendur hafa deilt á þessum vef verður varanlega eytt!\\n\\nErtu alveg viss?" + +#: mod/admin.php:1402 +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 "Notandinn {0} verður eytt!\\n\\nAllt sem þessi notandi hefur deilt á þessum vef veður varanlega eytt!\\n\\nErtu alveg viss?" + +#: mod/admin.php:1412 +msgid "Name of the new user." +msgstr "" + +#: mod/admin.php:1413 +msgid "Nickname" +msgstr "" + +#: mod/admin.php:1413 +msgid "Nickname of the new user." +msgstr "" + +#: mod/admin.php:1414 +msgid "Email address of the new user." +msgstr "" + +#: mod/admin.php:1457 +#, php-format +msgid "Plugin %s disabled." +msgstr "Kerfiseining %s óvirk." + +#: mod/admin.php:1461 +#, php-format +msgid "Plugin %s enabled." +msgstr "Kveikt á kerfiseiningu %s" + +#: mod/admin.php:1472 mod/admin.php:1708 +msgid "Disable" +msgstr "Slökkva" + +#: mod/admin.php:1474 mod/admin.php:1710 +msgid "Enable" +msgstr "Kveikja" + +#: mod/admin.php:1497 mod/admin.php:1755 +msgid "Toggle" +msgstr "Skipta" + +#: mod/admin.php:1505 mod/admin.php:1764 +msgid "Author: " +msgstr "Höfundur:" + +#: mod/admin.php:1506 mod/admin.php:1765 +msgid "Maintainer: " +msgstr "" + +#: mod/admin.php:1558 +msgid "Reload active plugins" +msgstr "Endurhlaða virkar kerfiseiningar" + +#: mod/admin.php:1563 +#, 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/admin.php:1668 +msgid "No themes found." +msgstr "Engin þemu fundust" + +#: mod/admin.php:1746 +msgid "Screenshot" +msgstr "Skjámynd" + +#: mod/admin.php:1806 +msgid "Reload active themes" +msgstr "" + +#: mod/admin.php:1811 +#, php-format +msgid "No themes found on the system. They should be paced in %1$s" +msgstr "" + +#: mod/admin.php:1812 +msgid "[Experimental]" +msgstr "[Tilraun]" + +#: mod/admin.php:1813 +msgid "[Unsupported]" +msgstr "[Óstudd]" + +#: mod/admin.php:1837 +msgid "Log settings updated." +msgstr "Stillingar atburðaskrár uppfærðar. " + +#: mod/admin.php:1874 +msgid "Clear" +msgstr "Hreinsa" + +#: mod/admin.php:1879 +msgid "Enable Debugging" +msgstr "" + +#: mod/admin.php:1880 +msgid "Log file" +msgstr "Atburðaskrá" + +#: mod/admin.php:1880 +msgid "" +"Must be writable by web server. Relative to your Friendica top-level " +"directory." +msgstr "Vefþjónn verður að hafa skrifréttindi. Afstætt við Friendica rótar skráarsafn." + +#: mod/admin.php:1881 +msgid "Log level" +msgstr "Stig atburðaskráningar" + +#: mod/admin.php:1884 +msgid "PHP logging" +msgstr "" + +#: mod/admin.php:1885 +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/admin.php:2011 mod/admin.php:2012 mod/settings.php:763 +msgid "Off" +msgstr "" + +#: mod/admin.php:2011 mod/admin.php:2012 mod/settings.php:763 +msgid "On" +msgstr "" + +#: mod/admin.php:2012 +#, php-format +msgid "Lock feature %s" +msgstr "" + +#: mod/admin.php:2020 +msgid "Manage Additional Features" +msgstr "" + +#: mod/wall_attach.php:94 +msgid "Sorry, maybe your upload is bigger than the PHP configuration allows" +msgstr "" + +#: mod/wall_attach.php:94 +msgid "Or - did you try to upload an empty file?" +msgstr "" + +#: mod/wall_attach.php:105 +#, php-format +msgid "File exceeds size limit of %s" +msgstr "" + +#: mod/wall_attach.php:156 mod/wall_attach.php:172 +msgid "File upload failed." +msgstr "Skráar upphlöðun mistókst." + +#: mod/allfriends.php:43 +msgid "No friends to display." +msgstr "Engir vinir til að birta." + +#: mod/cal.php:152 mod/display.php:328 mod/profile.php:155 +msgid "Access to this profile has been restricted." +msgstr "Aðgangur að þessari forsíðu hefur verið heftur." + +#: mod/cal.php:301 +msgid "User not found" +msgstr "" + +#: mod/cal.php:317 +msgid "This calendar format is not supported" +msgstr "" + +#: mod/cal.php:319 +msgid "No exportable data found" +msgstr "" + +#: mod/cal.php:327 +msgid "calendar" +msgstr "" + +#: mod/content.php:119 mod/network.php:468 +msgid "No such group" +msgstr "Hópur ekki til" + +#: mod/content.php:130 mod/network.php:495 mod/group.php:193 +msgid "Group is empty" +msgstr "Hópur er tómur" + +#: mod/content.php:135 mod/network.php:499 +#, php-format +msgid "Group: %s" +msgstr "" + +#: mod/content.php:325 object/Item.php:95 +msgid "This entry was edited" +msgstr "" + +#: mod/content.php:621 object/Item.php:429 +#, php-format +msgid "%d comment" +msgid_plural "%d comments" +msgstr[0] "%d ummæli" +msgstr[1] "%d ummæli" + +#: mod/content.php:638 mod/photos.php:1405 object/Item.php:117 +msgid "Private Message" +msgstr "Einkaskilaboð" + +#: mod/content.php:702 mod/photos.php:1594 object/Item.php:263 +msgid "I like this (toggle)" +msgstr "Mér líkar þetta (kveikja/slökkva)" + +#: mod/content.php:702 object/Item.php:263 +msgid "like" +msgstr "líkar" + +#: mod/content.php:703 mod/photos.php:1595 object/Item.php:264 +msgid "I don't like this (toggle)" +msgstr "Mér líkar þetta ekki (kveikja/slökkva)" + +#: mod/content.php:703 object/Item.php:264 +msgid "dislike" +msgstr "mislíkar" + +#: mod/content.php:705 object/Item.php:266 +msgid "Share this" +msgstr "Deila þessu" + +#: mod/content.php:705 object/Item.php:266 +msgid "share" +msgstr "deila" + +#: mod/content.php:725 mod/photos.php:1614 mod/photos.php:1662 +#: mod/photos.php:1750 object/Item.php:717 +msgid "This is you" +msgstr "Þetta ert þú" + +#: mod/content.php:729 object/Item.php:721 +msgid "Bold" +msgstr "Feitletrað" + +#: mod/content.php:730 object/Item.php:722 +msgid "Italic" +msgstr "Skáletrað" + +#: mod/content.php:731 object/Item.php:723 +msgid "Underline" +msgstr "Undirstrikað" + +#: mod/content.php:732 object/Item.php:724 +msgid "Quote" +msgstr "Gæsalappir" + +#: mod/content.php:733 object/Item.php:725 +msgid "Code" +msgstr "Kóði" + +#: mod/content.php:734 object/Item.php:726 +msgid "Image" +msgstr "Mynd" + +#: mod/content.php:735 object/Item.php:727 +msgid "Link" +msgstr "Tengill" + +#: mod/content.php:736 object/Item.php:728 +msgid "Video" +msgstr "Myndband" + +#: mod/content.php:746 mod/settings.php:725 object/Item.php:122 +#: object/Item.php:124 +msgid "Edit" +msgstr "Breyta" + +#: mod/content.php:771 object/Item.php:227 +msgid "add star" +msgstr "bæta við stjörnu" + +#: mod/content.php:772 object/Item.php:228 +msgid "remove star" +msgstr "eyða stjörnu" + +#: mod/content.php:773 object/Item.php:229 +msgid "toggle star status" +msgstr "Kveikja/slökkva á stjörnu" + +#: mod/content.php:776 object/Item.php:232 +msgid "starred" +msgstr "stjörnumerkt" + +#: mod/content.php:777 mod/content.php:798 object/Item.php:252 +msgid "add tag" +msgstr "bæta við merki" + +#: mod/content.php:787 object/Item.php:240 +msgid "ignore thread" +msgstr "" + +#: mod/content.php:788 object/Item.php:241 +msgid "unignore thread" +msgstr "" + +#: mod/content.php:789 object/Item.php:242 +msgid "toggle ignore status" +msgstr "" + +#: mod/content.php:792 mod/ostatus_subscribe.php:69 object/Item.php:245 +msgid "ignored" +msgstr "hunsað" + +#: mod/content.php:803 object/Item.php:137 +msgid "save to folder" +msgstr "vista í möppu" + +#: mod/content.php:848 object/Item.php:201 +msgid "I will attend" +msgstr "" + +#: mod/content.php:848 object/Item.php:201 +msgid "I will not attend" +msgstr "" + +#: mod/content.php:848 object/Item.php:201 +msgid "I might attend" +msgstr "" + +#: mod/content.php:912 object/Item.php:369 +msgid "to" +msgstr "við" + +#: mod/content.php:913 object/Item.php:371 +msgid "Wall-to-Wall" +msgstr "vegg við vegg" + +#: mod/content.php:914 object/Item.php:372 +msgid "via Wall-To-Wall:" +msgstr "gegnum vegg við vegg" + +#: mod/repair_ostatus.php:14 +msgid "Resubscribing to OStatus contacts" +msgstr "" + +#: mod/repair_ostatus.php:30 +msgid "Error" +msgstr "" + +#: mod/repair_ostatus.php:44 mod/ostatus_subscribe.php:51 +msgid "Done" +msgstr "Lokið" + +#: mod/repair_ostatus.php:50 mod/ostatus_subscribe.php:73 +msgid "Keep this window open until done." +msgstr "" + +#: mod/delegate.php:101 +msgid "No potential page delegates located." +msgstr "Engir mögulegir viðtakendur síðunnar fundust." + +#: mod/delegate.php:132 +msgid "" +"Delegates are able to manage all aspects of this account/page except for " +"basic account settings. Please do not delegate your personal account to " +"anybody that you do not trust completely." +msgstr "" + +#: mod/delegate.php:133 +msgid "Existing Page Managers" +msgstr "" + +#: mod/delegate.php:135 +msgid "Existing Page Delegates" +msgstr "" + +#: mod/delegate.php:137 +msgid "Potential Delegates" +msgstr "" + +#: mod/delegate.php:140 +msgid "Add" +msgstr "Bæta við" + +#: mod/delegate.php:141 +msgid "No entries." +msgstr "Engar færslur." + +#: mod/videos.php:123 +msgid "Do you really want to delete this video?" +msgstr "" + +#: mod/videos.php:128 +msgid "Delete Video" +msgstr "" + +#: mod/videos.php:207 +msgid "No videos selected" +msgstr "" + +#: mod/videos.php:308 mod/photos.php:1074 +msgid "Access to this item is restricted." +msgstr "Aðgangur að þessum hlut hefur verið heftur" + +#: mod/videos.php:390 mod/photos.php:1877 +msgid "View Album" +msgstr "Skoða myndabók" + +#: mod/videos.php:399 +msgid "Recent Videos" +msgstr "" + +#: mod/videos.php:401 +msgid "Upload New Videos" +msgstr "" + +#: mod/profiles.php:37 +msgid "Profile deleted." +msgstr "Forsíðu eytt." + +#: mod/profiles.php:55 mod/profiles.php:89 +msgid "Profile-" +msgstr "Forsíða-" + +#: mod/profiles.php:74 mod/profiles.php:117 +msgid "New profile created." +msgstr "Ný forsíða búinn til." + +#: mod/profiles.php:95 +msgid "Profile unavailable to clone." +msgstr "Ekki tókst að klóna forsíðu" + +#: mod/profiles.php:189 +msgid "Profile Name is required." +msgstr "Nafn á forsíðu er skilyrði" + +#: mod/profiles.php:336 +msgid "Marital Status" +msgstr "" + +#: mod/profiles.php:340 +msgid "Romantic Partner" +msgstr "" + +#: mod/profiles.php:352 +msgid "Work/Employment" +msgstr "" + +#: mod/profiles.php:355 +msgid "Religion" +msgstr "" + +#: mod/profiles.php:359 +msgid "Political Views" +msgstr "" + +#: mod/profiles.php:363 +msgid "Gender" +msgstr "" + +#: mod/profiles.php:367 +msgid "Sexual Preference" +msgstr "" + +#: mod/profiles.php:371 +msgid "Homepage" +msgstr "" + +#: mod/profiles.php:375 mod/profiles.php:695 +msgid "Interests" +msgstr "" + +#: mod/profiles.php:379 +msgid "Address" +msgstr "" + +#: mod/profiles.php:386 mod/profiles.php:691 +msgid "Location" +msgstr "" + +#: mod/profiles.php:469 +msgid "Profile updated." +msgstr "Forsíða uppfærð." + +#: mod/profiles.php:556 +msgid " and " +msgstr "og" + +#: mod/profiles.php:564 +msgid "public profile" +msgstr "Opinber forsíða" + +#: mod/profiles.php:567 +#, php-format +msgid "%1$s changed %2$s to “%3$s”" +msgstr "" + +#: mod/profiles.php:568 +#, php-format +msgid " - Visit %1$s's %2$s" +msgstr "" + +#: mod/profiles.php:571 +#, php-format +msgid "%1$s has an updated %2$s, changing %3$s." +msgstr "%1$s hefur uppfært %2$s, með því að breyta %3$s." + +#: mod/profiles.php:638 +msgid "Hide contacts and friends:" +msgstr "" + +#: mod/profiles.php:641 mod/profiles.php:645 mod/profiles.php:670 +#: mod/follow.php:110 mod/dfrn_request.php:860 mod/register.php:239 +#: mod/settings.php:1113 mod/settings.php:1119 mod/settings.php:1127 +#: mod/settings.php:1131 mod/settings.php:1136 mod/settings.php:1142 +#: mod/settings.php:1148 mod/settings.php:1154 mod/settings.php:1180 +#: mod/settings.php:1181 mod/settings.php:1182 mod/settings.php:1183 +#: mod/settings.php:1184 mod/api.php:106 +msgid "No" +msgstr "Nei" + +#: mod/profiles.php:643 +msgid "Hide your contact/friend list from viewers of this profile?" +msgstr "Fela tengiliða-/vinalista á þessari forsíðu?" + +#: mod/profiles.php:667 +msgid "Show more profile fields:" +msgstr "" + +#: mod/profiles.php:679 +msgid "Profile Actions" +msgstr "" + +#: mod/profiles.php:680 +msgid "Edit Profile Details" +msgstr "Breyta forsíðu upplýsingum" + +#: mod/profiles.php:682 +msgid "Change Profile Photo" +msgstr "" + +#: mod/profiles.php:683 +msgid "View this profile" +msgstr "Skoða þessa forsíðu" + +#: mod/profiles.php:685 +msgid "Create a new profile using these settings" +msgstr "Búa til nýja forsíðu með þessum stillingum" + +#: mod/profiles.php:686 +msgid "Clone this profile" +msgstr "Klóna þessa forsíðu" + +#: mod/profiles.php:687 +msgid "Delete this profile" +msgstr "Eyða þessari forsíðu" + +#: mod/profiles.php:689 +msgid "Basic information" +msgstr "" + +#: mod/profiles.php:690 +msgid "Profile picture" +msgstr "" + +#: mod/profiles.php:692 +msgid "Preferences" +msgstr "" + +#: mod/profiles.php:693 +msgid "Status information" +msgstr "" + +#: mod/profiles.php:694 +msgid "Additional information" +msgstr "" + +#: mod/profiles.php:697 +msgid "Relation" +msgstr "" + +#: mod/profiles.php:700 mod/newmember.php:36 mod/profile_photo.php:250 +msgid "Upload Profile Photo" +msgstr "Hlaða upp forsíðu mynd" + +#: mod/profiles.php:701 +msgid "Your Gender:" +msgstr "Kyn:" + +#: mod/profiles.php:702 +msgid " Marital Status:" +msgstr " Hjúskaparstaða:" + +#: mod/profiles.php:704 +msgid "Example: fishing photography software" +msgstr "Til dæmis: fishing photography software" + +#: mod/profiles.php:709 +msgid "Profile Name:" +msgstr "Forsíðu nafn:" + +#: mod/profiles.php:711 +msgid "" +"This is your public profile.
It may " +"be visible to anybody using the internet." +msgstr "Þetta er opinber forsíða.
Hún verður sjáanleg öðrum sem nota alnetið." + +#: mod/profiles.php:712 +msgid "Your Full Name:" +msgstr "Fullt nafn:" + +#: mod/profiles.php:713 +msgid "Title/Description:" +msgstr "Starfsheiti/Lýsing:" + +#: mod/profiles.php:716 +msgid "Street Address:" +msgstr "Gata:" + +#: mod/profiles.php:717 +msgid "Locality/City:" +msgstr "Bær/Borg:" + +#: mod/profiles.php:718 +msgid "Region/State:" +msgstr "Svæði/Sýsla" + +#: mod/profiles.php:719 +msgid "Postal/Zip Code:" +msgstr "Póstnúmer:" + +#: mod/profiles.php:720 +msgid "Country:" +msgstr "Land:" + +#: mod/profiles.php:724 +msgid "Who: (if applicable)" +msgstr "Hver: (ef við á)" + +#: mod/profiles.php:724 +msgid "Examples: cathy123, Cathy Williams, cathy@example.com" +msgstr "Dæmi: cathy123, Cathy Williams, cathy@example.com" + +#: mod/profiles.php:725 +msgid "Since [date]:" +msgstr "" + +#: mod/profiles.php:727 +msgid "Tell us about yourself..." +msgstr "Segðu okkur frá sjálfum þér..." + +#: mod/profiles.php:728 +msgid "Homepage URL:" +msgstr "Slóð heimasíðu:" + +#: mod/profiles.php:731 +msgid "Religious Views:" +msgstr "Trúarskoðanir" + +#: mod/profiles.php:732 +msgid "Public Keywords:" +msgstr "Opinber leitarorð:" + +#: mod/profiles.php:732 +msgid "(Used for suggesting potential friends, can be seen by others)" +msgstr "(Notað til að stinga uppá mögulegum vinum, aðrir geta séð)" + +#: mod/profiles.php:733 +msgid "Private Keywords:" +msgstr "Einka leitarorð:" + +#: mod/profiles.php:733 +msgid "(Used for searching profiles, never shown to others)" +msgstr "(Notað við leit að öðrum notendum, aldrei sýnt öðrum)" + +#: mod/profiles.php:736 +msgid "Musical interests" +msgstr "Tónlistarsmekkur" + +#: mod/profiles.php:737 +msgid "Books, literature" +msgstr "Bækur, bókmenntir" + +#: mod/profiles.php:738 +msgid "Television" +msgstr "Sjónvarp" + +#: mod/profiles.php:739 +msgid "Film/dance/culture/entertainment" +msgstr "Kvikmyndir/dans/menning/afþreying" + +#: mod/profiles.php:740 +msgid "Hobbies/Interests" +msgstr "Áhugamál" + +#: mod/profiles.php:741 +msgid "Love/romance" +msgstr "Ást/rómantík" + +#: mod/profiles.php:742 +msgid "Work/employment" +msgstr "Atvinna:" + +#: mod/profiles.php:743 +msgid "School/education" +msgstr "Skóli/menntun" + +#: mod/profiles.php:744 +msgid "Contact information and Social Networks" +msgstr "Tengiliðaupplýsingar og samfélagsnet" + +#: mod/profiles.php:786 +msgid "Edit/Manage Profiles" +msgstr "Sýsla með forsíður" + +#: mod/credits.php:16 +msgid "Credits" +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!" +msgstr "" + +#: mod/filer.php:30 +msgid "- select -" +msgstr "- veldu -" + +#: mod/poke.php:192 +msgid "Poke/Prod" +msgstr "" + +#: mod/poke.php:193 +msgid "poke, prod or do other things to somebody" +msgstr "" + +#: mod/poke.php:194 +msgid "Recipient" +msgstr "" + +#: mod/poke.php:195 +msgid "Choose what you wish to do to recipient" +msgstr "" + +#: mod/poke.php:198 +msgid "Make this post private" +msgstr "" + +#: mod/photos.php:100 mod/photos.php:1886 +msgid "Recent Photos" +msgstr "Nýlegar myndir" + +#: mod/photos.php:103 mod/photos.php:1307 mod/photos.php:1888 +msgid "Upload New Photos" +msgstr "Hlaða upp nýjum myndum" + +#: mod/photos.php:117 mod/settings.php:36 +msgid "everybody" +msgstr "allir" + +#: mod/photos.php:181 +msgid "Contact information unavailable" +msgstr "Tengiliða upplýsingar ekki til" + +#: mod/photos.php:202 +msgid "Album not found." +msgstr "Myndabók finnst ekki." + +#: mod/photos.php:232 mod/photos.php:244 mod/photos.php:1249 +msgid "Delete Album" +msgstr "Fjarlægja myndabók" + +#: mod/photos.php:242 +msgid "Do you really want to delete this photo album and all its photos?" +msgstr "" + +#: mod/photos.php:322 mod/photos.php:333 mod/photos.php:1567 +msgid "Delete Photo" +msgstr "Fjarlægja mynd" + +#: mod/photos.php:331 +msgid "Do you really want to delete this photo?" +msgstr "" + +#: mod/photos.php:706 +#, php-format +msgid "%1$s was tagged in %2$s by %3$s" +msgstr "" + +#: mod/photos.php:706 +msgid "a photo" +msgstr "mynd" + +#: mod/photos.php:813 +msgid "Image file is empty." +msgstr "Mynda skrá er tóm." + +#: mod/photos.php:973 +msgid "No photos selected" +msgstr "Engar myndir valdar" + +#: mod/photos.php:1134 +#, php-format +msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage." +msgstr "" + +#: mod/photos.php:1169 +msgid "Upload Photos" +msgstr "Hlaða upp myndum" + +#: mod/photos.php:1173 mod/photos.php:1244 +msgid "New album name: " +msgstr "Nýtt nafn myndbókar:" + +#: mod/photos.php:1174 +msgid "or existing album name: " +msgstr "eða fyrra nafn myndbókar:" + +#: mod/photos.php:1175 +msgid "Do not show a status post for this upload" +msgstr "Ekki sýna færslu fyrir þessari upphölun" + +#: mod/photos.php:1186 mod/photos.php:1571 mod/settings.php:1250 +msgid "Show to Groups" +msgstr "Birta hópum" + +#: mod/photos.php:1187 mod/photos.php:1572 mod/settings.php:1251 +msgid "Show to Contacts" +msgstr "Birta tengiliðum" + +#: mod/photos.php:1188 +msgid "Private Photo" +msgstr "Einkamynd" + +#: mod/photos.php:1189 +msgid "Public Photo" +msgstr "Opinber mynd" + +#: mod/photos.php:1257 +msgid "Edit Album" +msgstr "Breyta myndbók" + +#: mod/photos.php:1263 +msgid "Show Newest First" +msgstr "Birta nýjast fyrst" + +#: mod/photos.php:1265 +msgid "Show Oldest First" +msgstr "Birta elsta fyrst" + +#: mod/photos.php:1293 mod/photos.php:1871 +msgid "View Photo" +msgstr "Skoða mynd" + +#: mod/photos.php:1340 +msgid "Permission denied. Access to this item may be restricted." +msgstr "Aðgangi hafnað. Aðgangur að þessum hlut kann að vera skertur." + +#: mod/photos.php:1342 +msgid "Photo not available" +msgstr "Mynd ekki til" + +#: mod/photos.php:1398 +msgid "View photo" +msgstr "Birta mynd" + +#: mod/photos.php:1398 +msgid "Edit photo" +msgstr "Breyta mynd" + +#: mod/photos.php:1399 +msgid "Use as profile photo" +msgstr "Nota sem forsíðu mynd" + +#: mod/photos.php:1424 +msgid "View Full Size" +msgstr "Skoða í fullri stærð" + +#: mod/photos.php:1510 +msgid "Tags: " +msgstr "Merki:" + +#: mod/photos.php:1513 +msgid "[Remove any tag]" +msgstr "[Fjarlægja öll merki]" + +#: mod/photos.php:1553 +msgid "New album name" +msgstr "Nýtt nafn myndbókar" + +#: mod/photos.php:1554 +msgid "Caption" +msgstr "Yfirskrift" + +#: mod/photos.php:1555 +msgid "Add a Tag" +msgstr "Bæta við merki" + +#: mod/photos.php:1555 +msgid "" +"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" +msgstr "Til dæmis: @bob, @Barbara_Jensen, @jim@example.com, #Reykjavík #tjalda" + +#: mod/photos.php:1556 +msgid "Do not rotate" +msgstr "" + +#: mod/photos.php:1557 +msgid "Rotate CW (right)" +msgstr "" + +#: mod/photos.php:1558 +msgid "Rotate CCW (left)" +msgstr "" + +#: mod/photos.php:1573 +msgid "Private photo" +msgstr "Einkamynd" + +#: mod/photos.php:1574 +msgid "Public photo" +msgstr "Opinber mynd" + +#: mod/photos.php:1800 +msgid "Map" +msgstr "" + +#: mod/install.php:139 +msgid "Friendica Communications Server - Setup" +msgstr "" + +#: mod/install.php:145 +msgid "Could not connect to database." +msgstr "Gat ekki tengst gagnagrunn." + +#: mod/install.php:149 +msgid "Could not create table." +msgstr "Gat ekki búið til töflu." + +#: mod/install.php:155 +msgid "Your Friendica site database has been installed." +msgstr "Friendica gagnagrunnurinn þinn hefur verið uppsettur." + +#: mod/install.php:160 +msgid "" +"You may need to import the file \"database.sql\" manually using phpmyadmin " +"or mysql." +msgstr "Þú þarft mögulega að keyra inn skránna \"database.sql\" handvirkt með phpmyadmin eða mysql." + +#: mod/install.php:161 mod/install.php:230 mod/install.php:597 +msgid "Please see the file \"INSTALL.txt\"." +msgstr "Lestu skrána \"INSTALL.txt\"." + +#: mod/install.php:173 +msgid "Database already in use." +msgstr "" + +#: mod/install.php:227 +msgid "System check" +msgstr "Kerfis prófun" + +#: mod/install.php:232 +msgid "Check again" +msgstr "Prófa aftur" + +#: mod/install.php:251 +msgid "Database connection" +msgstr "Gangagrunns tenging" + +#: mod/install.php:252 +msgid "" +"In order to install Friendica we need to know how to connect to your " +"database." +msgstr "Til að setja upp Friendica þurfum við að vita hvernig á að tengjast gagnagrunninum þínum." + +#: mod/install.php:253 +msgid "" +"Please contact your hosting provider or site administrator if you have " +"questions about these settings." +msgstr "Hafðu samband við hýsingaraðilann þinn eða kerfisstjóra ef þú hefur spurningar varðandi þessar stillingar." + +#: mod/install.php:254 +msgid "" +"The database you specify below should already exist. If it does not, please " +"create it before continuing." +msgstr "Gagnagrunnurinn sem þú bendir á þarf þegar að vera til. Ef ekki þá þarf að stofna hann áður en haldið er áfram." + +#: mod/install.php:258 +msgid "Database Server Name" +msgstr "Vélanafn gagangrunns" + +#: mod/install.php:259 +msgid "Database Login Name" +msgstr "Notendanafn í gagnagrunn" + +#: mod/install.php:260 +msgid "Database Login Password" +msgstr "Aðgangsorð í gagnagrunns" + +#: mod/install.php:261 +msgid "Database Name" +msgstr "Nafn gagnagrunns" + +#: mod/install.php:262 mod/install.php:303 +msgid "Site administrator email address" +msgstr "Póstfang kerfisstjóra vefsvæðis" + +#: 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 "Póstfang aðgangsins þíns verður að passa við þetta til að hægt sé að nota umsýsluvefviðmótið." + +#: mod/install.php:266 mod/install.php:306 +msgid "Please select a default timezone for your website" +msgstr "Veldu sjálfgefið tímabelti fyrir vefsíðuna" + +#: mod/install.php:293 +msgid "Site settings" +msgstr "Stillingar vefsvæðis" + +#: mod/install.php:307 +msgid "System Language:" +msgstr "" + +#: mod/install.php:307 +msgid "" +"Set the default language for your Friendica installation interface and to " +"send emails." +msgstr "" + +#: mod/install.php:347 +msgid "Could not find a command line version of PHP in the web server PATH." +msgstr "Gat ekki fundið skipanalínu útgáfu af PHP í vefþjóns PATH." + +#: 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 'Setup the poller'" +msgstr "" + +#: mod/install.php:352 +msgid "PHP executable path" +msgstr "PHP keyrslu slóð" + +#: mod/install.php:352 +msgid "" +"Enter full path to php executable. You can leave this blank to continue the " +"installation." +msgstr "" + +#: mod/install.php:357 +msgid "Command line PHP" +msgstr "Skipanalínu PHP" + +#: mod/install.php:366 +msgid "PHP executable is not the php cli binary (could be cgi-fgci version)" +msgstr "" + +#: mod/install.php:367 +msgid "Found PHP version: " +msgstr "" + +#: mod/install.php:369 +msgid "PHP cli binary" +msgstr "" + +#: mod/install.php:380 +msgid "" +"The command line version of PHP on your system does not have " +"\"register_argc_argv\" enabled." +msgstr "Skipanalínu útgáfa af PHP á vefþjóninum hefur ekki kveikt á \"register_argc_argv\"." + +#: mod/install.php:381 +msgid "This is required for message delivery to work." +msgstr "Þetta er skilyrt fyrir því að skilaboð komist til skila." + +#: mod/install.php:383 +msgid "PHP register_argc_argv" +msgstr "" + +#: mod/install.php:404 +msgid "" +"Error: the \"openssl_pkey_new\" function on this system is not able to " +"generate encryption keys" +msgstr "Villa: Stefjan \"openssl_pkey_new\" á vefþjóninum getur ekki stofnað dulkóðunar lykla" + +#: mod/install.php:405 +msgid "" +"If running under Windows, please see " +"\"http://www.php.net/manual/en/openssl.installation.php\"." +msgstr "Ef keyrt er á Window, skoðaðu þá \"http://www.php.net/manual/en/openssl.installation.php\"." + +#: mod/install.php:407 +msgid "Generate encryption keys" +msgstr "Búa til dulkóðunar lykla" + +#: mod/install.php:414 +msgid "libCurl PHP module" +msgstr "libCurl PHP eining" + +#: mod/install.php:415 +msgid "GD graphics PHP module" +msgstr "GD graphics PHP eining" + +#: mod/install.php:416 +msgid "OpenSSL PHP module" +msgstr "OpenSSL PHP eining" + +#: mod/install.php:417 +msgid "mysqli PHP module" +msgstr "mysqli PHP eining" + +#: mod/install.php:418 +msgid "mb_string PHP module" +msgstr "mb_string PHP eining" + +#: mod/install.php:419 +msgid "mcrypt PHP module" +msgstr "" + +#: mod/install.php:420 +msgid "XML PHP module" +msgstr "" + +#: mod/install.php:424 mod/install.php:426 +msgid "Apache mod_rewrite module" +msgstr "Apache mod_rewrite eining" + +#: mod/install.php:424 +msgid "" +"Error: Apache webserver mod-rewrite module is required but not installed." +msgstr "Villa: Apache vefþjóns eining mod-rewrite er skilyrði og er ekki uppsett. " + +#: mod/install.php:432 +msgid "Error: libCURL PHP module required but not installed." +msgstr "Villa: libCurl PHP eining er skilyrði og er ekki uppsett." + +#: mod/install.php:436 +msgid "" +"Error: GD graphics PHP module with JPEG support required but not installed." +msgstr "Villa: GD graphics PHP eining með JPEG stuðningi er skilyrði og er ekki uppsett." + +#: mod/install.php:440 +msgid "Error: openssl PHP module required but not installed." +msgstr "Villa: openssl PHP eining skilyrði og er ekki uppsett." + +#: mod/install.php:444 +msgid "Error: mysqli PHP module required but not installed." +msgstr "Villa: mysqli PHP eining er skilyrði og er ekki uppsett" + +#: mod/install.php:448 +msgid "Error: mb_string PHP module required but not installed." +msgstr "Villa: mb_string PHP eining skilyrði en ekki uppsett." + +#: mod/install.php:452 +msgid "Error: mcrypt PHP module required but not installed." +msgstr "" + +#: mod/install.php:461 +msgid "" +"If you are using php_cli, please make sure that mcrypt module is enabled in " +"its config file" +msgstr "" + +#: mod/install.php:464 +msgid "" +"Function mcrypt_create_iv() is not defined. This is needed to enable RINO2 " +"encryption layer." +msgstr "" + +#: mod/install.php:466 +msgid "mcrypt_create_iv() function" +msgstr "" + +#: mod/install.php:474 +msgid "Error, XML PHP module required but not installed." +msgstr "" + +#: mod/install.php:489 +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 "Vef uppsetningar forrit þarf að geta stofnað skránna \".htconfig.php\" in efsta skráarsafninu á vefþjóninum og það getur ekki gert það." + +#: mod/install.php:490 +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 "Þetta er oftast aðgangsstýringa stilling, þar sem vefþjónninn getur ekki skrifað út skrár í skráarsafnið - þó þú getir það." + +#: mod/install.php:491 +msgid "" +"At the end of this procedure, we will give you a text to save in a file " +"named .htconfig.php in your Friendica top folder." +msgstr "" + +#: mod/install.php:492 +msgid "" +"You can alternatively skip this procedure and perform a manual installation." +" Please see the file \"INSTALL.txt\" for instructions." +msgstr "" + +#: mod/install.php:495 +msgid ".htconfig.php is writable" +msgstr ".htconfig.php er skrifanleg" + +#: mod/install.php:505 +msgid "" +"Friendica uses the Smarty3 template engine to render its web views. Smarty3 " +"compiles templates to PHP to speed up rendering." +msgstr "" + +#: mod/install.php:506 +msgid "" +"In order to store these compiled templates, the web server needs to have " +"write access to the directory view/smarty3/ under the Friendica top level " +"folder." +msgstr "" + +#: mod/install.php:507 +msgid "" +"Please ensure that the user that your web server runs as (e.g. www-data) has" +" write access to this folder." +msgstr "" + +#: mod/install.php:508 +msgid "" +"Note: as a security measure, you should give the web server write access to " +"view/smarty3/ only--not the template files (.tpl) that it contains." +msgstr "" + +#: mod/install.php:511 +msgid "view/smarty3 is writable" +msgstr "" + +#: mod/install.php:527 +msgid "" +"Url rewrite in .htaccess is not working. Check your server configuration." +msgstr "" + +#: mod/install.php:529 +msgid "Url rewrite is working" +msgstr "" + +#: mod/install.php:546 +msgid "ImageMagick PHP extension is installed" +msgstr "" + +#: mod/install.php:548 +msgid "ImageMagick supports GIF" +msgstr "" + +#: mod/install.php:556 +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 "Ekki tókst að skrifa stillingaskrá gagnagrunns \".htconfig.php\". Notað meðfylgjandi texta til að búa til stillingarskrá í rót vefþjónsins." + +#: mod/install.php:595 +msgid "

What next

" +msgstr "" + +#: mod/install.php:596 +msgid "" +"IMPORTANT: You will need to [manually] setup a scheduled task for the " +"poller." +msgstr "MIKILVÆGT: Þú þarft að [handvirkt] setja upp sjálfvirka keyrslu á poller." + +#: mod/subthread.php:103 +#, php-format +msgid "%1$s is following %2$s's %3$s" +msgstr "" + +#: mod/attach.php:8 +msgid "Item not available." +msgstr "Atriði ekki í boði." + +#: mod/attach.php:20 +msgid "Item was not found." +msgstr "Atriði fannst ekki" + +#: mod/contacts.php:128 +#, php-format +msgid "%d contact edited." +msgid_plural "%d contacts edited." +msgstr[0] "" +msgstr[1] "" + +#: mod/contacts.php:159 mod/contacts.php:368 +msgid "Could not access contact record." +msgstr "Tókst ekki að ná í uppl. um tengilið" + +#: mod/contacts.php:173 +msgid "Could not locate selected profile." +msgstr "Tókst ekki að staðsetja valinn forsíðu" + +#: mod/contacts.php:206 +msgid "Contact updated." +msgstr "Tengiliður uppfærður" + +#: mod/contacts.php:208 mod/dfrn_request.php:578 +msgid "Failed to update contact record." +msgstr "Ekki tókst að uppfæra tengiliðs skrá." + +#: mod/contacts.php:389 +msgid "Contact has been blocked" +msgstr "Lokað á tengilið" + +#: mod/contacts.php:389 +msgid "Contact has been unblocked" +msgstr "Opnað á tengilið" + +#: mod/contacts.php:400 +msgid "Contact has been ignored" +msgstr "Tengiliður hunsaður" + +#: mod/contacts.php:400 +msgid "Contact has been unignored" +msgstr "Tengiliður afhunsaður" + +#: mod/contacts.php:412 +msgid "Contact has been archived" +msgstr "Tengiliður settur í geymslu" + +#: mod/contacts.php:412 +msgid "Contact has been unarchived" +msgstr "Tengiliður tekinn úr geymslu" + +#: mod/contacts.php:439 mod/contacts.php:794 +msgid "Do you really want to delete this contact?" +msgstr "Viltu í alvörunni eyða þessum tengilið?" + +#: mod/contacts.php:456 +msgid "Contact has been removed." +msgstr "Tengiliður fjarlægður" + +#: mod/contacts.php:497 +#, php-format +msgid "You are mutual friends with %s" +msgstr "Þú ert gagnkvæmur vinur %s" + +#: mod/contacts.php:501 +#, php-format +msgid "You are sharing with %s" +msgstr "Þú ert að deila með %s" + +#: mod/contacts.php:506 +#, php-format +msgid "%s is sharing with you" +msgstr "%s er að deila með þér" + +#: mod/contacts.php:526 +msgid "Private communications are not available for this contact." +msgstr "Einkasamtal ekki í boði fyrir þennan" + +#: mod/contacts.php:533 +msgid "(Update was successful)" +msgstr "(uppfærsla tókst)" + +#: mod/contacts.php:533 +msgid "(Update was not successful)" +msgstr "(uppfærsla tókst ekki)" + +#: mod/contacts.php:535 mod/contacts.php:973 +msgid "Suggest friends" +msgstr "Stinga uppá vinum" + +#: mod/contacts.php:539 +#, php-format +msgid "Network type: %s" +msgstr "Net tegund: %s" + +#: mod/contacts.php:552 +msgid "Communications lost with this contact!" +msgstr "" + +#: mod/contacts.php:555 +msgid "Fetch further information for feeds" +msgstr "Ná í ítarlegri upplýsingar um fréttaveitur" + +#: mod/contacts.php:556 +msgid "Fetch information" +msgstr "" + +#: mod/contacts.php:556 +msgid "Fetch information and keywords" +msgstr "" + +#: mod/contacts.php:576 +msgid "Profile Visibility" +msgstr "Forsíðu sjáanleiki" + +#: mod/contacts.php:577 +#, php-format +msgid "" +"Please choose the profile you would like to display to %s when viewing your " +"profile securely." +msgstr "Veldu forsíðu sem á að birtast %s þegar hann skoðaður með öruggum hætti" + +#: mod/contacts.php:578 +msgid "Contact Information / Notes" +msgstr "Uppl. um tengilið / minnisatriði" + +#: mod/contacts.php:579 +msgid "Edit contact notes" +msgstr "Breyta minnispunktum tengiliðs " + +#: mod/contacts.php:585 +msgid "Block/Unblock contact" +msgstr "útiloka/opna á tengilið" + +#: mod/contacts.php:586 +msgid "Ignore contact" +msgstr "Hunsa tengilið" + +#: mod/contacts.php:587 +msgid "Repair URL settings" +msgstr "Gera við stillingar á slóðum" + +#: mod/contacts.php:588 +msgid "View conversations" +msgstr "Skoða samtöl" + +#: mod/contacts.php:594 +msgid "Last update:" +msgstr "Síðasta uppfærsla:" + +#: mod/contacts.php:596 +msgid "Update public posts" +msgstr "Uppfæra opinberar færslur" + +#: mod/contacts.php:598 mod/contacts.php:983 +msgid "Update now" +msgstr "Uppfæra núna" + +#: mod/contacts.php:604 mod/contacts.php:799 mod/contacts.php:1000 +msgid "Unignore" +msgstr "Byrja að fylgjast með á ný" + +#: mod/contacts.php:607 +msgid "Currently blocked" +msgstr "Útilokaður sem stendur" + +#: mod/contacts.php:608 +msgid "Currently ignored" +msgstr "Hunsaður sem stendur" + +#: mod/contacts.php:609 +msgid "Currently archived" +msgstr "Í geymslu" + +#: mod/contacts.php:610 +msgid "" +"Replies/likes to your public posts may still be visible" +msgstr "Svör eða \"líkar við\" á opinberar færslur þínar geta mögulega verið sýnileg öðrum" + +#: mod/contacts.php:611 +msgid "Notification for new posts" +msgstr "" + +#: mod/contacts.php:611 +msgid "Send a notification of every new post of this contact" +msgstr "" + +#: mod/contacts.php:614 +msgid "Blacklisted keywords" +msgstr "" + +#: mod/contacts.php:614 +msgid "" +"Comma separated list of keywords that should not be converted to hashtags, " +"when \"Fetch information and keywords\" is selected" +msgstr "" + +#: mod/contacts.php:629 +msgid "Actions" +msgstr "" + +#: mod/contacts.php:632 +msgid "Contact Settings" +msgstr "" + +#: mod/contacts.php:677 +msgid "Suggestions" +msgstr "Uppástungur" + +#: mod/contacts.php:680 +msgid "Suggest potential friends" +msgstr "" + +#: mod/contacts.php:685 mod/group.php:192 +msgid "All Contacts" +msgstr "Allir tengiliðir" + +#: mod/contacts.php:688 +msgid "Show all contacts" +msgstr "Sýna alla tengiliði" + +#: mod/contacts.php:693 +msgid "Unblocked" +msgstr "Afhunsað" + +#: mod/contacts.php:696 +msgid "Only show unblocked contacts" +msgstr "" + +#: mod/contacts.php:702 +msgid "Blocked" +msgstr "Banna" + +#: mod/contacts.php:705 +msgid "Only show blocked contacts" +msgstr "" + +#: mod/contacts.php:711 +msgid "Ignored" +msgstr "Hunsa" + +#: mod/contacts.php:714 +msgid "Only show ignored contacts" +msgstr "" + +#: mod/contacts.php:720 +msgid "Archived" +msgstr "Í geymslu" + +#: mod/contacts.php:723 +msgid "Only show archived contacts" +msgstr "Aðeins sýna geymda tengiliði" + +#: mod/contacts.php:729 +msgid "Hidden" +msgstr "Falinn" + +#: mod/contacts.php:732 +msgid "Only show hidden contacts" +msgstr "Aðeins sýna falda tengiliði" + +#: mod/contacts.php:789 +msgid "Search your contacts" +msgstr "Leita í þínum vinum" + +#: mod/contacts.php:797 mod/settings.php:158 mod/settings.php:689 +msgid "Update" +msgstr "Uppfæra" + +#: mod/contacts.php:800 mod/contacts.php:1008 +msgid "Archive" +msgstr "Setja í geymslu" + +#: mod/contacts.php:800 mod/contacts.php:1008 +msgid "Unarchive" +msgstr "Taka úr geymslu" + +#: mod/contacts.php:803 +msgid "Batch Actions" +msgstr "" + +#: mod/contacts.php:849 +msgid "View all contacts" +msgstr "Skoða alla tengiliði" + +#: mod/contacts.php:856 mod/common.php:134 +msgid "Common Friends" +msgstr "Sameiginlegir vinir" + +#: mod/contacts.php:859 +msgid "View all common friends" +msgstr "" + +#: mod/contacts.php:866 +msgid "Advanced Contact Settings" +msgstr "" + +#: mod/contacts.php:911 +msgid "Mutual Friendship" +msgstr "Sameiginlegur vinskapur" + +#: mod/contacts.php:915 +msgid "is a fan of yours" +msgstr "er fylgjandi þinn" + +#: mod/contacts.php:919 +msgid "you are a fan of" +msgstr "þú er fylgjandi" + +#: mod/contacts.php:994 +msgid "Toggle Blocked status" +msgstr "" + +#: mod/contacts.php:1002 +msgid "Toggle Ignored status" +msgstr "" + +#: mod/contacts.php:1010 +msgid "Toggle Archive status" +msgstr "" + +#: mod/contacts.php:1018 +msgid "Delete contact" +msgstr "Eyða tengilið" + +#: mod/follow.php:19 mod/dfrn_request.php:873 +msgid "Submit Request" +msgstr "Senda beiðni" + +#: mod/follow.php:30 +msgid "You already added this contact." +msgstr "" + +#: mod/follow.php:39 +msgid "Diaspora support isn't enabled. Contact can't be added." +msgstr "" + +#: mod/follow.php:46 +msgid "OStatus support is disabled. Contact can't be added." +msgstr "" + +#: mod/follow.php:53 +msgid "The network type couldn't be detected. Contact can't be added." +msgstr "" + +#: mod/follow.php:109 mod/dfrn_request.php:859 +msgid "Please answer the following:" +msgstr "Vinnsamlegast svaraðu eftirfarandi:" + +#: mod/follow.php:110 mod/dfrn_request.php:860 +#, php-format +msgid "Does %s know you?" +msgstr "Þekkir %s þig?" + +#: mod/follow.php:111 mod/dfrn_request.php:864 +msgid "Add a personal note:" +msgstr "Bæta við persónulegri athugasemd" + +#: mod/follow.php:117 mod/dfrn_request.php:870 +msgid "Your Identity Address:" +msgstr "Auðkennisnetfang þitt:" + +#: mod/follow.php:180 +msgid "Contact added" +msgstr "Tengilið bætt við" + +#: mod/apps.php:11 +msgid "Applications" +msgstr "Forrit" + +#: mod/apps.php:14 +msgid "No installed applications." +msgstr "Engin uppsett forrit" + +#: mod/suggest.php:27 +msgid "Do you really want to delete this suggestion?" +msgstr "" + +#: mod/suggest.php:71 +msgid "" +"No suggestions available. If this is a new site, please try again in 24 " +"hours." +msgstr "Engar uppástungur tiltækar. Ef þetta er nýr vefur, reyndu þá aftur eftir um 24 klukkustundir." + +#: mod/suggest.php:84 mod/suggest.php:104 +msgid "Ignore/Hide" +msgstr "Hunsa/Fela" + +#: mod/p.php:9 +msgid "Not Extended" +msgstr "" + +#: mod/display.php:471 +msgid "Item has been removed." +msgstr "Atriði hefur verið fjarlægt." + +#: mod/common.php:86 +msgid "No contacts in common." +msgstr "" + +#: mod/newmember.php:6 +msgid "Welcome to Friendica" +msgstr "Velkomin(n) á Friendica" + +#: mod/newmember.php:8 +msgid "New Member Checklist" +msgstr "Nýr notandi verklisti" + +#: mod/newmember.php:12 +msgid "" +"We would like to offer some tips and links to help make your experience " +"enjoyable. Click any item to visit the relevant page. A link to this page " +"will be visible from your home page for two weeks after your initial " +"registration and then will quietly disappear." +msgstr "" + +#: mod/newmember.php:14 +msgid "Getting Started" +msgstr "" + +#: mod/newmember.php:18 +msgid "Friendica Walk-Through" +msgstr "" + +#: mod/newmember.php:18 +msgid "" +"On your Quick Start page - find a brief introduction to your " +"profile and network tabs, make some new connections, and find some groups to" +" join." +msgstr "" + +#: mod/newmember.php:26 +msgid "Go to Your Settings" +msgstr "" + +#: mod/newmember.php:26 +msgid "" +"On your Settings page - change your initial password. Also make a " +"note of your Identity Address. This looks just like an email address - and " +"will be useful in making friends on the free social web." +msgstr "" + +#: mod/newmember.php:28 +msgid "" +"Review the other settings, particularly the privacy settings. An unpublished" +" directory listing is like having an unlisted phone number. In general, you " +"should probably publish your listing - unless all of your friends and " +"potential friends know exactly how to find you." +msgstr "Yfirfarðu aðrar stillingar, sérstaklega gagnaleyndarstillingar. Óútgefin forsíða er einsog óskráð símanúmer. Sem þýðir að líklega viltu gefa út forsíðuna þína - nema að allir vinir þínir og tilvonandi vinir viti nákvæmlega hvernig á að finna þig." + +#: 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 "Að hlaða upp forsíðu mynd ef þú hefur ekki þegar gert það. Rannsóknir sýna að fólk sem hefur alvöru mynd af sér er tíu sinnum líklegra til að eignast vini en fólk sem ekki hefur mynd." + +#: mod/newmember.php:38 +msgid "Edit Your Profile" +msgstr "" + +#: mod/newmember.php:38 +msgid "" +"Edit your default profile to your liking. Review the " +"settings for hiding your list of friends and hiding the profile from unknown" +" visitors." +msgstr "Breyttu sjálfgefnu forsíðunni einsog þú villt. Yfirfarðu stillingu til að fela vinalista á forsíðu og stillingu til að fela forsíðu fyrir ókunnum." + +#: mod/newmember.php:40 +msgid "Profile Keywords" +msgstr "" + +#: mod/newmember.php:40 +msgid "" +"Set some public keywords for your default profile which describe your " +"interests. We may be able to find other people with similar interests and " +"suggest friendships." +msgstr "Bættu við leitarorðum í sjálfgefnu forsíðuna þína sem lýsa áhugamálum þínum. Þá er hægt að fólk með svipuð áhugamál og stinga uppá vinskap." + +#: mod/newmember.php:44 +msgid "Connecting" +msgstr "Tengist" + +#: mod/newmember.php:51 +msgid "Importing Emails" +msgstr "" + +#: 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 "Fylltu út aðgangsupplýsingar póstfangsins þíns á Tengistillingasíðunni ef þú vilt sækja tölvupóst og eiga samskipti við vini eða póstlista úr innhólfi tölvupóstsins þíns" + +#: mod/newmember.php:53 +msgid "Go to Your Contacts Page" +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 Add New Contact dialog." +msgstr "Tengiliðasíðan er gáttin þín til að sýsla með vinasambönd og tengjast við vini á öðrum netum. Oftast setur þú vistfang eða slóð þeirra í Bæta við tengilið glugganum." + +#: mod/newmember.php:55 +msgid "Go to Your Site's Directory" +msgstr "" + +#: mod/newmember.php:55 +msgid "" +"The Directory page lets you find other people in this network or other " +"federated sites. Look for a Connect or Follow link on " +"their profile page. Provide your own Identity Address if requested." +msgstr "Tengiliðalistinn er góð leit til að finna fólk á samfélagsnetinu eða öðrum sambandsnetum. Leitaðu að Tengjast/Connect eða Fylgja/Follow tenglum á forsíðunni þeirra. Mögulega þarftu að gefa upp auðkennisslóðina þína." + +#: mod/newmember.php:57 +msgid "Finding New People" +msgstr "" + +#: 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/newmember.php:65 +msgid "Group Your Contacts" +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." +msgstr "Eftir að þú hefur eignast nokkra vini, þá er best að flokka þá niður í hópa á hliðar slánni á Tengiliðasíðunni. Eftir það getur þú haft samskipti við hvern hóp fyrir sig á Samfélagssíðunni." + +#: mod/newmember.php:68 +msgid "Why Aren't My Posts Public?" +msgstr "" + +#: 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/newmember.php:73 +msgid "Getting Help" +msgstr "" + +#: mod/newmember.php:77 +msgid "Go to the Help Section" +msgstr "" + +#: mod/newmember.php:77 +msgid "" +"Our help pages may be consulted for detail on other program" +" features and resources." +msgstr "Hægt er að styðjast við Hjálp síðuna til að fá leiðbeiningar um aðra eiginleika." + +#: mod/removeme.php:46 mod/removeme.php:49 +msgid "Remove My Account" +msgstr "Eyða þessum notanda" + +#: mod/removeme.php:47 +msgid "" +"This will completely remove your account. Once this has been done it is not " +"recoverable." +msgstr "Þetta mun algjörlega eyða notandanum. Þegar þetta hefur verið gert er þetta ekki afturkræft." + +#: mod/removeme.php:48 +msgid "Please enter your password for verification:" +msgstr "Sláðu inn aðgangsorð yðar:" + +#: mod/mood.php:133 +msgid "Mood" +msgstr "" + +#: mod/mood.php:134 +msgid "Set your current mood and tell your friends" +msgstr "" + +#: mod/editpost.php:17 mod/editpost.php:27 +msgid "Item not found" +msgstr "Atriði fannst ekki" + +#: mod/editpost.php:40 +msgid "Edit post" +msgstr "Breyta skilaboðum" + +#: mod/network.php:398 +#, php-format +msgid "Warning: This group contains %s member from an insecure network." +msgid_plural "" +"Warning: This group contains %s members from an insecure network." +msgstr[0] "Aðvörun: Þessi hópur inniheldur %s notanda frá óöruggu neti." +msgstr[1] "Aðvörun: Þessi hópur inniheldur %s notendur frá óöruggu neti." + +#: mod/network.php:401 +msgid "Private messages to this group are at risk of public disclosure." +msgstr "Einka samtöl send á þennan hóp eiga á hættu að verða opinber." + +#: mod/network.php:527 +msgid "Private messages to this person are at risk of public disclosure." +msgstr "Einka skilaboð send á þennan notanda eiga á hættu að verða opinber." + +#: mod/network.php:532 +msgid "Invalid contact." +msgstr "Ógildur tengiliður." + +#: mod/network.php:825 +msgid "Commented Order" +msgstr "Athugasemdar röð" + +#: mod/network.php:828 +msgid "Sort by Comment Date" +msgstr "Raða eftir umræðu dagsetningu" + +#: mod/network.php:833 +msgid "Posted Order" +msgstr "Færlsu röð" + +#: mod/network.php:836 +msgid "Sort by Post Date" +msgstr "Raða eftir færslu dagsetningu" + +#: mod/network.php:847 +msgid "Posts that mention or involve you" +msgstr "Færslur sem tengjast þér" + +#: mod/network.php:855 +msgid "New" +msgstr "Ný" + +#: mod/network.php:858 +msgid "Activity Stream - by date" +msgstr "Færslu straumur - raðað eftir dagsetningu" + +#: mod/network.php:866 +msgid "Shared Links" +msgstr "" + +#: mod/network.php:869 +msgid "Interesting Links" +msgstr "Áhugaverðir tenglar" + +#: mod/network.php:877 +msgid "Starred" +msgstr "Stjörnumerkt" + +#: mod/network.php:880 +msgid "Favourite Posts" +msgstr "Uppáhalds færslur" + +#: mod/community.php:27 +msgid "Not available." +msgstr "Ekki í boði." + +#: mod/localtime.php:24 +msgid "Time Conversion" +msgstr "Tíma leiðréttir" + +#: mod/localtime.php:26 +msgid "" +"Friendica provides this service for sharing events with other networks and " +"friends in unknown timezones." +msgstr "Friendica veitir þessa þjónustu til að deila atburðum milli neta og vina í óþekktum tímabeltum." + +#: mod/localtime.php:30 +#, php-format +msgid "UTC time: %s" +msgstr "Máltími: %s" + +#: mod/localtime.php:33 +#, php-format +msgid "Current timezone: %s" +msgstr "Núverandi tímabelti: %s" + +#: mod/localtime.php:36 +#, php-format +msgid "Converted localtime: %s" +msgstr "Umbreyttur staðartími: %s" + +#: mod/localtime.php:41 +msgid "Please select your timezone:" +msgstr "Veldu tímabeltið þitt:" + +#: mod/bookmarklet.php:41 +msgid "The post was created" +msgstr "" + +#: mod/group.php:29 +msgid "Group created." +msgstr "Hópur stofnaður" + +#: mod/group.php:35 +msgid "Could not create group." +msgstr "Gat ekki stofnað hóp." + +#: mod/group.php:47 mod/group.php:140 +msgid "Group not found." +msgstr "Hópur fannst ekki." + +#: mod/group.php:60 +msgid "Group name changed." +msgstr "Hópur endurskýrður." + +#: mod/group.php:87 +msgid "Save Group" +msgstr "" + +#: mod/group.php:93 +msgid "Create a group of contacts/friends." +msgstr "Stofna hóp af tengiliðum/vinum" + +#: mod/group.php:113 +msgid "Group removed." +msgstr "Hópi eytt." + +#: mod/group.php:115 +msgid "Unable to remove group." +msgstr "Ekki tókst að eyða hóp." + +#: mod/group.php:177 +msgid "Group Editor" +msgstr "Hópa sýslari" + +#: mod/group.php:190 +msgid "Members" +msgstr "Aðilar" + +#: mod/dfrn_request.php:99 +msgid "This introduction has already been accepted." +msgstr "Þessi kynning hefur þegar verið samþykkt." + +#: mod/dfrn_request.php:122 mod/dfrn_request.php:517 +msgid "Profile location is not valid or does not contain profile information." +msgstr "Forsíðu slóð er ekki í lagi eða inniheldur ekki forsíðu upplýsingum." + +#: mod/dfrn_request.php:127 mod/dfrn_request.php:522 +msgid "Warning: profile location has no identifiable owner name." +msgstr "Aðvörun: forsíðu staðsetning hefur ekki aðgreinanlegt eigendanafn." + +#: mod/dfrn_request.php:129 mod/dfrn_request.php:524 +msgid "Warning: profile location has no profile photo." +msgstr "Aðvörun: forsíðu slóð hefur ekki forsíðu mynd." + +#: mod/dfrn_request.php:132 mod/dfrn_request.php:527 +#, 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 skilyrt breyta fannst ekki á uppgefinni staðsetningu" +msgstr[1] "%d skilyrtar breytur fundust ekki á uppgefninni staðsetningu" + +#: mod/dfrn_request.php:177 +msgid "Introduction complete." +msgstr "Kynning tilbúinn." + +#: mod/dfrn_request.php:219 +msgid "Unrecoverable protocol error." +msgstr "Alvarleg samskipta villa." + +#: mod/dfrn_request.php:247 +msgid "Profile unavailable." +msgstr "Ekki hægt að sækja forsíðu" + +#: mod/dfrn_request.php:272 +#, php-format +msgid "%s has received too many connection requests today." +msgstr "%s hefur fengið of margar tengibeiðnir í dag." + +#: mod/dfrn_request.php:273 +msgid "Spam protection measures have been invoked." +msgstr "Kveikt hefur verið á ruslsíu" + +#: mod/dfrn_request.php:274 +msgid "Friends are advised to please try again in 24 hours." +msgstr "Vinir eru beðnir um að reyna aftur eftir 24 klukkustundir." + +#: mod/dfrn_request.php:336 +msgid "Invalid locator" +msgstr "Ógild staðsetning" + +#: mod/dfrn_request.php:345 +msgid "Invalid email address." +msgstr "Ógilt póstfang." + +#: mod/dfrn_request.php:372 +msgid "This account has not been configured for email. Request failed." +msgstr "" + +#: mod/dfrn_request.php:475 +msgid "You have already introduced yourself here." +msgstr "Kynning hefur þegar átt sér stað hér." + +#: mod/dfrn_request.php:479 +#, php-format +msgid "Apparently you are already friends with %s." +msgstr "Þú ert þegar vinur %s." + +#: mod/dfrn_request.php:500 +msgid "Invalid profile URL." +msgstr "Ógild forsíðu slóð." + +#: mod/dfrn_request.php:599 +msgid "Your introduction has been sent." +msgstr "Kynningin þín hefur verið send." + +#: mod/dfrn_request.php:639 +msgid "" +"Remote subscription can't be done for your network. Please subscribe " +"directly on your system." +msgstr "" + +#: mod/dfrn_request.php:662 +msgid "Please login to confirm introduction." +msgstr "Skráðu þig inn til að staðfesta kynningu." + +#: mod/dfrn_request.php:672 +msgid "" +"Incorrect identity currently logged in. Please login to " +"this profile." +msgstr "Ekki réttur notandi skráður inn. Skráðu þig inn sem þessi notandi." + +#: mod/dfrn_request.php:686 mod/dfrn_request.php:703 +msgid "Confirm" +msgstr "Staðfesta" + +#: mod/dfrn_request.php:698 +msgid "Hide this contact" +msgstr "Fela þennan tengilið" + +#: mod/dfrn_request.php:701 +#, php-format +msgid "Welcome home %s." +msgstr "Velkomin(n) heim %s." + +#: mod/dfrn_request.php:702 +#, php-format +msgid "Please confirm your introduction/connection request to %s." +msgstr "Staðfestu kynninguna/tengibeiðnina við %s." + +#: mod/dfrn_request.php:831 +msgid "" +"Please enter your 'Identity Address' from one of the following supported " +"communications networks:" +msgstr "Settu inn 'Auðkennisnetfang' þitt úr einhverjum af eftirfarandi samskiptanetum:" + +#: mod/dfrn_request.php:852 +#, php-format +msgid "" +"If you are not yet a member of the free social web, follow this link to find a public Friendica site and " +"join us today." +msgstr "" + +#: mod/dfrn_request.php:857 +msgid "Friend/Connection Request" +msgstr "Vinabeiðni/Tengibeiðni" + +#: mod/dfrn_request.php:858 +msgid "" +"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, " +"testuser@identi.ca" +msgstr "Dæmi: siggi@demo.friendica.com, http://demo.friendica.com/profile/siggi, prufunotandi@identi.ca" + +#: mod/dfrn_request.php:867 +msgid "StatusNet/Federated Social Web" +msgstr "StatusNet/Federated Social Web" + +#: mod/dfrn_request.php:869 +#, php-format +msgid "" +" - please do not use this form. Instead, enter %s into your Diaspora search" +" bar." +msgstr "" + +#: mod/profile_photo.php:44 +msgid "Image uploaded but image cropping failed." +msgstr "Tókst að hala upp mynd en afskurður tókst ekki." + +#: 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 "Myndar minnkun [%s] tókst ekki." + +#: mod/profile_photo.php:124 +msgid "" +"Shift-reload the page or clear browser cache if the new photo does not " +"display immediately." +msgstr "Ýta þarf á " + +#: mod/profile_photo.php:134 +msgid "Unable to process image" +msgstr "Ekki tókst að vinna mynd" + +#: mod/profile_photo.php:248 +msgid "Upload File:" +msgstr "Hlaða upp skrá:" + +#: mod/profile_photo.php:249 +msgid "Select a profile:" +msgstr "" + +#: mod/profile_photo.php:251 +msgid "Upload" +msgstr "Hlaða upp" + +#: mod/profile_photo.php:254 +msgid "or" +msgstr "eða" + +#: mod/profile_photo.php:254 +msgid "skip this step" +msgstr "sleppa þessu skrefi" + +#: mod/profile_photo.php:254 +msgid "select a photo from your photo albums" +msgstr "velja mynd í myndabókum" + +#: mod/profile_photo.php:268 +msgid "Crop Image" +msgstr "Skera af mynd" + +#: mod/profile_photo.php:269 +msgid "Please adjust the image cropping for optimum viewing." +msgstr "Stilltu afskurð fyrir besta birtingu." + +#: mod/profile_photo.php:271 +msgid "Done Editing" +msgstr "Breyting kláruð" + +#: mod/profile_photo.php:305 +msgid "Image uploaded successfully." +msgstr "Upphölun á mynd tóks." + +#: mod/register.php:92 +msgid "" +"Registration successful. Please check your email for further instructions." +msgstr "Nýskráning tóks. Frekari fyrirmæli voru send í tölvupósti." + +#: mod/register.php:97 +#, php-format +msgid "" +"Failed to send email message. Here your accout details:
login: %s
" +"password: %s

You can change your password after login." +msgstr "" + +#: mod/register.php:104 +msgid "Registration successful." +msgstr "" + +#: mod/register.php:110 +msgid "Your registration can not be processed." +msgstr "Skráninguna þína er ekki hægt að vinna." + +#: mod/register.php:153 +msgid "Your registration is pending approval by the site owner." +msgstr "Skráningin þín bíður samþykkis af eiganda síðunnar." + +#: mod/register.php:219 +msgid "" +"You may (optionally) fill in this form via OpenID by supplying your OpenID " +"and clicking 'Register'." +msgstr "Þú mátt (valfrjálst) fylla í þetta svæði gegnum OpenID með því gefa upp þitt OpenID og ýta á 'Skrá'." + +#: mod/register.php:220 +msgid "" +"If you are not familiar with OpenID, please leave that field blank and fill " +"in the rest of the items." +msgstr "Ef þú veist ekki hvað OpenID er, skildu þá þetta svæði eftir tómt en fylltu í restin af svæðunum." + +#: mod/register.php:221 +msgid "Your OpenID (optional): " +msgstr "Þitt OpenID (valfrjálst):" + +#: mod/register.php:235 +msgid "Include your profile in member directory?" +msgstr "Á forsíðan þín að sjást í notendalistanum?" + +#: mod/register.php:259 +msgid "Membership on this site is by invitation only." +msgstr "Aðild að þessum vef er " + +#: mod/register.php:260 +msgid "Your invitation ID: " +msgstr "Boðskorta auðkenni:" + +#: mod/register.php:271 +msgid "Your Full Name (e.g. Joe Smith, real or real-looking): " +msgstr "" + +#: mod/register.php:272 +msgid "Your Email Address: " +msgstr "Tölvupóstur:" + +#: mod/register.php:274 mod/settings.php:1221 +msgid "New Password:" +msgstr "Nýtt aðgangsorð:" + +#: mod/register.php:274 +msgid "Leave empty for an auto generated password." +msgstr "" + +#: mod/register.php:275 mod/settings.php:1222 +msgid "Confirm:" +msgstr "Staðfesta:" + +#: mod/register.php:276 +msgid "" +"Choose a profile nickname. This must begin with a text character. Your " +"profile address on this site will then be " +"'nickname@$sitename'." +msgstr "Veldu gælunafn. Verður að byrja á staf. Slóðin þín á þessum vef verður síðan 'gælunafn@$sitename'." + +#: mod/register.php:277 +msgid "Choose a nickname: " +msgstr "Veldu gælunafn:" + +#: mod/register.php:287 +msgid "Import your profile to this friendica instance" +msgstr "" + +#: mod/settings.php:60 +msgid "Display" +msgstr "" + +#: mod/settings.php:67 mod/settings.php:871 +msgid "Social Networks" +msgstr "" + +#: mod/settings.php:88 +msgid "Connected apps" +msgstr "Tengd forrit" + +#: mod/settings.php:102 +msgid "Remove account" +msgstr "Henda tengilið" + +#: mod/settings.php:155 +msgid "Missing some important data!" +msgstr "Vantar mikilvæg gögn!" + +#: mod/settings.php:269 +msgid "Failed to connect with email account using the settings provided." +msgstr "Ekki tókst að tengjast við pósthólf með stillingum sem uppgefnar eru." + +#: mod/settings.php:274 +msgid "Email settings updated." +msgstr "Stillingar póstfangs uppfærðar." + +#: mod/settings.php:289 +msgid "Features updated" +msgstr "" + +#: mod/settings.php:356 +msgid "Relocate message has been send to your contacts" +msgstr "" + +#: mod/settings.php:375 +msgid "Empty passwords are not allowed. Password unchanged." +msgstr "Tóm aðgangsorð eru ekki leyfileg. Aðgangsorð óbreytt." + +#: mod/settings.php:383 +msgid "Wrong password." +msgstr "" + +#: mod/settings.php:394 +msgid "Password changed." +msgstr "Aðgangsorði breytt." + +#: mod/settings.php:396 +msgid "Password update failed. Please try again." +msgstr "Uppfærsla á aðgangsorði tókst ekki. Reyndu aftur." + +#: mod/settings.php:465 +msgid " Please use a shorter name." +msgstr " Notaðu styttra nafn." + +#: mod/settings.php:467 +msgid " Name too short." +msgstr "Nafn of stutt." + +#: mod/settings.php:476 +msgid "Wrong Password" +msgstr "" + +#: mod/settings.php:481 +msgid " Not valid email." +msgstr "Póstfang ógilt" + +#: mod/settings.php:487 +msgid " Cannot change to that email." +msgstr "Ekki hægt að breyta yfir í þetta póstfang." + +#: mod/settings.php:543 +msgid "Private forum has no privacy permissions. Using default privacy group." +msgstr "" + +#: mod/settings.php:547 +msgid "Private forum has no privacy permissions and no default privacy group." +msgstr "" + +#: mod/settings.php:586 +msgid "Settings updated." +msgstr "Stillingar uppfærðar." + +#: mod/settings.php:662 mod/settings.php:688 mod/settings.php:724 +msgid "Add application" +msgstr "Bæta við forriti" + +#: mod/settings.php:666 mod/settings.php:692 +msgid "Consumer Key" +msgstr "Notenda lykill" + +#: mod/settings.php:667 mod/settings.php:693 +msgid "Consumer Secret" +msgstr "Notenda leyndarmál" + +#: mod/settings.php:668 mod/settings.php:694 +msgid "Redirect" +msgstr "Áframsenda" + +#: mod/settings.php:669 mod/settings.php:695 +msgid "Icon url" +msgstr "Táknmyndar slóð" + +#: mod/settings.php:680 +msgid "You can't edit this application." +msgstr "Þú getur ekki breytt þessu forriti." + +#: mod/settings.php:723 +msgid "Connected Apps" +msgstr "Tengd forrit" + +#: mod/settings.php:727 +msgid "Client key starts with" +msgstr "Lykill viðskiptavinar byrjar á" + +#: mod/settings.php:728 +msgid "No name" +msgstr "Ekkert nafn" + +#: mod/settings.php:729 +msgid "Remove authorization" +msgstr "Fjarlæga auðkenningu" + +#: mod/settings.php:741 +msgid "No Plugin settings configured" +msgstr "Engar stillingar í kerfiseiningu uppsettar" + +#: mod/settings.php:749 +msgid "Plugin Settings" +msgstr "Stillingar kerfiseiningar" + +#: mod/settings.php:771 +msgid "Additional Features" +msgstr "" + +#: mod/settings.php:781 mod/settings.php:785 +msgid "General Social Media Settings" +msgstr "" + +#: mod/settings.php:791 +msgid "Disable intelligent shortening" +msgstr "" + +#: mod/settings.php:793 +msgid "" +"Normally the system tries to find the best link to add to shortened posts. " +"If this option is enabled then every shortened post will always point to the" +" original friendica post." +msgstr "" + +#: mod/settings.php:799 +msgid "Automatically follow any GNU Social (OStatus) followers/mentioners" +msgstr "" + +#: mod/settings.php:801 +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/settings.php:807 +msgid "Default group for OStatus contacts" +msgstr "" + +#: mod/settings.php:813 +msgid "Your legacy GNU Social account" +msgstr "" + +#: mod/settings.php:815 +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/settings.php:818 +msgid "Repair OStatus subscriptions" +msgstr "" + +#: mod/settings.php:827 mod/settings.php:828 +#, php-format +msgid "Built-in support for %s connectivity is %s" +msgstr "Innbyggður stuðningur fyrir %s tenging er%s" + +#: mod/settings.php:827 mod/settings.php:828 +msgid "enabled" +msgstr "kveikt" + +#: mod/settings.php:827 mod/settings.php:828 +msgid "disabled" +msgstr "slökkt" + +#: mod/settings.php:828 +msgid "GNU Social (OStatus)" +msgstr "" + +#: mod/settings.php:864 +msgid "Email access is disabled on this site." +msgstr "Slökkt hefur verið á tölvupóst aðgang á þessum þjón." + +#: mod/settings.php:876 +msgid "Email/Mailbox Setup" +msgstr "Tölvupóstur stilling" + +#: mod/settings.php:877 +msgid "" +"If you wish to communicate with email contacts using this service " +"(optional), please specify how to connect to your mailbox." +msgstr "Ef þú villt hafa samskipti við tölvupósts tengiliði með þessari þjónustu (valfrjálst), skilgreindu þá hvernig á að tengjast póstfanginu þínu." + +#: mod/settings.php:878 +msgid "Last successful email check:" +msgstr "Póstfang sannreynt síðast:" + +#: mod/settings.php:880 +msgid "IMAP server name:" +msgstr "IMAP þjónn:" + +#: mod/settings.php:881 +msgid "IMAP port:" +msgstr "IMAP port:" + +#: mod/settings.php:882 +msgid "Security:" +msgstr "Öryggi:" + +#: mod/settings.php:882 mod/settings.php:887 +msgid "None" +msgstr "Ekkert" + +#: mod/settings.php:883 +msgid "Email login name:" +msgstr "Notandanafn tölvupóstfangs:" + +#: mod/settings.php:884 +msgid "Email password:" +msgstr "Lykilorð tölvupóstfangs:" + +#: mod/settings.php:885 +msgid "Reply-to address:" +msgstr "Svarpóstfang:" + +#: mod/settings.php:886 +msgid "Send public posts to all email contacts:" +msgstr "Senda opinberar færslur á alla tölvupóst viðtakendur:" + +#: mod/settings.php:887 +msgid "Action after import:" +msgstr "" + +#: mod/settings.php:887 +msgid "Move to folder" +msgstr "Flytja yfir í skrásafn" + +#: mod/settings.php:888 +msgid "Move to folder:" +msgstr "Flytja yfir í skrásafn:" + +#: mod/settings.php:974 +msgid "Display Settings" +msgstr "" + +#: mod/settings.php:980 mod/settings.php:1001 +msgid "Display Theme:" +msgstr "Útlits þema:" + +#: mod/settings.php:981 +msgid "Mobile Theme:" +msgstr "" + +#: mod/settings.php:982 +msgid "Update browser every xx seconds" +msgstr "Endurhlaða vefsíðu á xx sekúndu fresti" + +#: mod/settings.php:982 +msgid "Minimum of 10 seconds. Enter -1 to disable it." +msgstr "" + +#: mod/settings.php:983 +msgid "Number of items to display per page:" +msgstr "" + +#: mod/settings.php:983 mod/settings.php:984 +msgid "Maximum of 100 items" +msgstr "" + +#: mod/settings.php:984 +msgid "Number of items to display per page when viewed from mobile device:" +msgstr "" + +#: mod/settings.php:985 +msgid "Don't show emoticons" +msgstr "" + +#: mod/settings.php:986 +msgid "Calendar" +msgstr "" + +#: mod/settings.php:987 +msgid "Beginning of week:" +msgstr "" + +#: mod/settings.php:988 +msgid "Don't show notices" +msgstr "" + +#: mod/settings.php:989 +msgid "Infinite scroll" +msgstr "" + +#: mod/settings.php:990 +msgid "Automatic updates only at the top of the network page" +msgstr "" + +#: mod/settings.php:992 +msgid "General Theme Settings" +msgstr "" + +#: mod/settings.php:993 +msgid "Custom Theme Settings" +msgstr "" + +#: mod/settings.php:994 +msgid "Content Settings" +msgstr "" + +#: mod/settings.php:995 view/theme/frio/config.php:61 +#: view/theme/cleanzero/config.php:82 view/theme/quattro/config.php:66 +#: view/theme/dispy/config.php:72 view/theme/vier/config.php:109 +#: view/theme/diabook/config.php:150 view/theme/duepuntozero/config.php:61 msgid "Theme settings" msgstr "" -#: ../../view/theme/cleanzero/config.php:83 +#: mod/settings.php:1072 +msgid "User Types" +msgstr "" + +#: mod/settings.php:1073 +msgid "Community Types" +msgstr "" + +#: mod/settings.php:1074 +msgid "Normal Account Page" +msgstr "" + +#: mod/settings.php:1075 +msgid "This account is a normal personal profile" +msgstr "Þessi notandi er með venjulega persónulega forsíðu" + +#: mod/settings.php:1078 +msgid "Soapbox Page" +msgstr "" + +#: mod/settings.php:1079 +msgid "Automatically approve all connection/friend requests as read-only fans" +msgstr "Sjálfkrafa samþykkja allar tengibeiðnir/vinabeiðnir einungis sem les-fylgjendur" + +#: mod/settings.php:1082 +msgid "Community Forum/Celebrity Account" +msgstr "" + +#: mod/settings.php:1083 +msgid "" +"Automatically approve all connection/friend requests as read-write fans" +msgstr "Sjálfkrafa samþykkja allar tengibeiðnir/vinabeiðnir sem les-skrif fylgjendur" + +#: mod/settings.php:1086 +msgid "Automatic Friend Page" +msgstr "" + +#: mod/settings.php:1087 +msgid "Automatically approve all connection/friend requests as friends" +msgstr "Sjálfkrafa samþykkja allar tengibeiðnir/vinabeiðnir sem vini" + +#: mod/settings.php:1090 +msgid "Private Forum [Experimental]" +msgstr "Einkaspjallsvæði [á tilraunastigi]" + +#: mod/settings.php:1091 +msgid "Private forum - approved members only" +msgstr "Einkaspjallsvæði - einungis skráðir meðlimir" + +#: mod/settings.php:1103 +msgid "OpenID:" +msgstr "OpenID:" + +#: mod/settings.php:1103 +msgid "(Optional) Allow this OpenID to login to this account." +msgstr "(Valfrjálst) Leyfa þessu OpenID til að auðkennast sem þessi notandi." + +#: mod/settings.php:1113 +msgid "Publish your default profile in your local site directory?" +msgstr "Gefa út sjálfgefna forsíðu í tengiliðalista á þessum þjón?" + +#: mod/settings.php:1119 +msgid "Publish your default profile in the global social directory?" +msgstr "Gefa sjálfgefna forsíðu út í alheimstengiliðalista?" + +#: mod/settings.php:1127 +msgid "Hide your contact/friend list from viewers of your default profile?" +msgstr "Fela tengiliða-/vinalistann þinn fyrir áhorfendum á sjálfgefinni forsíðu?" + +#: mod/settings.php:1131 +msgid "" +"If enabled, posting public messages to Diaspora and other networks isn't " +"possible." +msgstr "" + +#: mod/settings.php:1136 +msgid "Allow friends to post to your profile page?" +msgstr "Leyfa vinum að deila á forsíðuna þína?" + +#: mod/settings.php:1142 +msgid "Allow friends to tag your posts?" +msgstr "Leyfa vinum að merkja færslurnar þínar?" + +#: mod/settings.php:1148 +msgid "Allow us to suggest you as a potential friend to new members?" +msgstr "Leyfa að stungið verði uppá þér sem hugsamlegum vinur fyrir aðra notendur? " + +#: mod/settings.php:1154 +msgid "Permit unknown people to send you private mail?" +msgstr "" + +#: mod/settings.php:1162 +msgid "Profile is not published." +msgstr "Forsíðu hefur ekki verið gefinn út." + +#: mod/settings.php:1170 +#, php-format +msgid "Your Identity Address is '%s' or '%s'." +msgstr "" + +#: mod/settings.php:1177 +msgid "Automatically expire posts after this many days:" +msgstr "Sjálfkrafa fyrna færslu eftir hvað marga daga:" + +#: mod/settings.php:1177 +msgid "If empty, posts will not expire. Expired posts will be deleted" +msgstr "Tómar færslur renna ekki út. Útrunnum færslum er eytt" + +#: mod/settings.php:1178 +msgid "Advanced expiration settings" +msgstr "Ítarlegar stillingar fyrningatíma" + +#: mod/settings.php:1179 +msgid "Advanced Expiration" +msgstr "Flókin fyrning" + +#: mod/settings.php:1180 +msgid "Expire posts:" +msgstr "Fyrna færslur:" + +#: mod/settings.php:1181 +msgid "Expire personal notes:" +msgstr "Fyrna einka glósur:" + +#: mod/settings.php:1182 +msgid "Expire starred posts:" +msgstr "Fyrna stjörnumerktar færslur:" + +#: mod/settings.php:1183 +msgid "Expire photos:" +msgstr "Fyrna myndum:" + +#: mod/settings.php:1184 +msgid "Only expire posts by others:" +msgstr "" + +#: mod/settings.php:1212 +msgid "Account Settings" +msgstr "Stillingar aðgangs" + +#: mod/settings.php:1220 +msgid "Password Settings" +msgstr "Stillingar aðgangsorða" + +#: mod/settings.php:1222 +msgid "Leave password fields blank unless changing" +msgstr "Hafðu aðgangsorða svæði tóm nema þegar verið er að breyta" + +#: mod/settings.php:1223 +msgid "Current Password:" +msgstr "" + +#: mod/settings.php:1223 mod/settings.php:1224 +msgid "Your current password to confirm the changes" +msgstr "" + +#: mod/settings.php:1224 +msgid "Password:" +msgstr "" + +#: mod/settings.php:1228 +msgid "Basic Settings" +msgstr "Grunnstillingar" + +#: mod/settings.php:1230 +msgid "Email Address:" +msgstr "Póstfang:" + +#: mod/settings.php:1231 +msgid "Your Timezone:" +msgstr "Þitt tímabelti:" + +#: mod/settings.php:1232 +msgid "Your Language:" +msgstr "" + +#: mod/settings.php:1232 +msgid "" +"Set the language we use to show you friendica interface and to send you " +"emails" +msgstr "" + +#: mod/settings.php:1233 +msgid "Default Post Location:" +msgstr "Sjálfgefin staðsetning færslu:" + +#: mod/settings.php:1234 +msgid "Use Browser Location:" +msgstr "Nota vafra staðsetningu:" + +#: mod/settings.php:1237 +msgid "Security and Privacy Settings" +msgstr "Öryggis og friðhelgistillingar" + +#: mod/settings.php:1239 +msgid "Maximum Friend Requests/Day:" +msgstr "Hámarks vinabeiðnir á dag:" + +#: mod/settings.php:1239 mod/settings.php:1269 +msgid "(to prevent spam abuse)" +msgstr "(til að koma í veg fyrir rusl misnotkun)" + +#: mod/settings.php:1240 +msgid "Default Post Permissions" +msgstr "Sjálfgefnar aðgangstýring á færslum" + +#: mod/settings.php:1241 +msgid "(click to open/close)" +msgstr "(ýttu á til að opna/loka)" + +#: mod/settings.php:1252 +msgid "Default Private Post" +msgstr "" + +#: mod/settings.php:1253 +msgid "Default Public Post" +msgstr "" + +#: mod/settings.php:1257 +msgid "Default Permissions for New Posts" +msgstr "" + +#: mod/settings.php:1269 +msgid "Maximum private messages per day from unknown people:" +msgstr "" + +#: mod/settings.php:1272 +msgid "Notification Settings" +msgstr "Stillingar á tilkynningum" + +#: mod/settings.php:1273 +msgid "By default post a status message when:" +msgstr "" + +#: mod/settings.php:1274 +msgid "accepting a friend request" +msgstr "samþykki vinabeiðni" + +#: mod/settings.php:1275 +msgid "joining a forum/community" +msgstr "ganga til liðs við hóp/samfélag" + +#: mod/settings.php:1276 +msgid "making an interesting profile change" +msgstr "" + +#: mod/settings.php:1277 +msgid "Send a notification email when:" +msgstr "Senda tilkynninga tölvupóst þegar:" + +#: mod/settings.php:1278 +msgid "You receive an introduction" +msgstr "Þú færð kynningu" + +#: mod/settings.php:1279 +msgid "Your introductions are confirmed" +msgstr "Kynningarnar þínar eru samþykktar" + +#: mod/settings.php:1280 +msgid "Someone writes on your profile wall" +msgstr "Einhver skrifar á vegginn þínn" + +#: mod/settings.php:1281 +msgid "Someone writes a followup comment" +msgstr "Einhver skrifar athugasemd á færslu hjá þér" + +#: mod/settings.php:1282 +msgid "You receive a private message" +msgstr "Þú færð einkaskilaboð" + +#: mod/settings.php:1283 +msgid "You receive a friend suggestion" +msgstr "Þér hefur borist vina uppástunga" + +#: mod/settings.php:1284 +msgid "You are tagged in a post" +msgstr "Þú varst merkt(ur) í færslu" + +#: mod/settings.php:1285 +msgid "You are poked/prodded/etc. in a post" +msgstr "" + +#: mod/settings.php:1287 +msgid "Activate desktop notifications" +msgstr "" + +#: mod/settings.php:1287 +msgid "Show desktop popup on new notifications" +msgstr "" + +#: mod/settings.php:1289 +msgid "Text-only notification emails" +msgstr "" + +#: mod/settings.php:1291 +msgid "Send text only notification emails, without the html part" +msgstr "" + +#: mod/settings.php:1293 +msgid "Advanced Account/Page Type Settings" +msgstr "" + +#: mod/settings.php:1294 +msgid "Change the behaviour of this account for special situations" +msgstr "" + +#: mod/settings.php:1297 +msgid "Relocate" +msgstr "" + +#: mod/settings.php:1298 +msgid "" +"If you have moved this profile from another server, and some of your " +"contacts don't receive your updates, try pushing this button." +msgstr "" + +#: mod/settings.php:1299 +msgid "Resend relocate message to contacts" +msgstr "" + +#: mod/wallmessage.php:42 mod/wallmessage.php:112 +#, php-format +msgid "Number of daily wall messages for %s exceeded. Message failed." +msgstr "" + +#: mod/wallmessage.php:56 mod/message.php:71 +msgid "No recipient selected." +msgstr "Engir viðtakendur valdir." + +#: mod/wallmessage.php:59 +msgid "Unable to check your home location." +msgstr "" + +#: mod/wallmessage.php:62 mod/message.php:78 +msgid "Message could not be sent." +msgstr "Ekki tókst að senda skilaboð." + +#: mod/wallmessage.php:65 mod/message.php:81 +msgid "Message collection failure." +msgstr "Ekki tókst að sækja skilaboð." + +#: mod/wallmessage.php:68 mod/message.php:84 +msgid "Message sent." +msgstr "Skilaboð send." + +#: mod/wallmessage.php:86 mod/wallmessage.php:95 +msgid "No recipient." +msgstr "" + +#: mod/wallmessage.php:142 mod/message.php:341 +msgid "Send Private Message" +msgstr "Senda einkaskilaboð" + +#: mod/wallmessage.php:143 +#, php-format +msgid "" +"If you wish for %s to respond, please check that the privacy settings on " +"your site allow private mail from unknown senders." +msgstr "" + +#: mod/wallmessage.php:144 mod/message.php:342 mod/message.php:536 +msgid "To:" +msgstr "Til:" + +#: mod/wallmessage.php:145 mod/message.php:347 mod/message.php:538 +msgid "Subject:" +msgstr "Efni:" + +#: mod/share.php:38 +msgid "link" +msgstr "tengill" + +#: mod/api.php:76 mod/api.php:102 +msgid "Authorize application connection" +msgstr "Leyfa forriti að tengjast" + +#: mod/api.php:77 +msgid "Return to your app and insert this Securty Code:" +msgstr "Farðu aftur í forritið þitt og settu þennan öryggiskóða þar" + +#: mod/api.php:89 +msgid "Please login to continue." +msgstr "Skráðu þig inn til að halda áfram." + +#: 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 "Vilt þú leyfa þessu forriti að hafa aðgang að færslum og tengiliðum, og/eða stofna nýjar færslur fyrir þig?" + +#: mod/babel.php:17 +msgid "Source (bbcode) text:" +msgstr "" + +#: mod/babel.php:23 +msgid "Source (Diaspora) text to convert to BBcode:" +msgstr "" + +#: mod/babel.php:31 +msgid "Source input: " +msgstr "" + +#: mod/babel.php:35 +msgid "bb2html (raw HTML): " +msgstr "bb2html (hrátt HTML): " + +#: mod/babel.php:39 +msgid "bb2html: " +msgstr "bb2html: " + +#: mod/babel.php:43 +msgid "bb2html2bb: " +msgstr "bb2html2bb: " + +#: mod/babel.php:47 +msgid "bb2md: " +msgstr "bb2md: " + +#: mod/babel.php:51 +msgid "bb2md2html: " +msgstr "bb2md2html: " + +#: mod/babel.php:55 +msgid "bb2dia2bb: " +msgstr "bb2dia2bb: " + +#: mod/babel.php:59 +msgid "bb2md2html2bb: " +msgstr "bb2md2html2bb: " + +#: mod/babel.php:69 +msgid "Source input (Diaspora format): " +msgstr "" + +#: mod/babel.php:74 +msgid "diaspora2bb: " +msgstr "diaspora2bb: " + +#: mod/item.php:116 +msgid "Unable to locate original post." +msgstr "Ekki tókst að finna upphaflega færslu." + +#: mod/item.php:334 +msgid "Empty post discarded." +msgstr "Tóm færsla eytt." + +#: mod/item.php:867 +msgid "System error. Post not saved." +msgstr "Kerfisvilla. Færsla ekki vistuð." + +#: mod/item.php:993 +#, php-format +msgid "" +"This message was sent to you by %s, a member of the Friendica social " +"network." +msgstr "Skilaboðið sendi %s, notandi á Friendica samfélagsnetinu." + +#: mod/item.php:995 +#, php-format +msgid "You may visit them online at %s" +msgstr "Þú getur heimsótt þau á netinu á %s" + +#: mod/item.php:996 +msgid "" +"Please contact the sender by replying to this post if you do not wish to " +"receive these messages." +msgstr "Hafðu samband við sendanda með því að svara á þessari færslu ef þú villt ekki fá þessi skilaboð." + +#: mod/item.php:1000 +#, php-format +msgid "%s posted an update." +msgstr "%s hefur sent uppfærslu." + +#: 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 "tókst" + +#: mod/ostatus_subscribe.php:67 +msgid "failed" +msgstr "mistókst" + +#: mod/dfrn_poll.php:104 mod/dfrn_poll.php:537 +#, php-format +msgid "%1$s welcomes %2$s" +msgstr "" + +#: mod/profile.php:179 +msgid "Tips for New Members" +msgstr "Ábendingar fyrir nýja notendur" + +#: mod/message.php:75 +msgid "Unable to locate contact information." +msgstr "Ekki tókst að staðsetja tengiliðs upplýsingar." + +#: mod/message.php:215 +msgid "Do you really want to delete this message?" +msgstr "" + +#: mod/message.php:235 +msgid "Message deleted." +msgstr "Skilaboðum eytt." + +#: mod/message.php:266 +msgid "Conversation removed." +msgstr "Samtali eytt." + +#: mod/message.php:383 +msgid "No messages." +msgstr "Engin skilaboð." + +#: mod/message.php:426 +msgid "Message not available." +msgstr "Ekki næst í skilaboð." + +#: mod/message.php:503 +msgid "Delete message" +msgstr "Eyða skilaboðum" + +#: mod/message.php:529 mod/message.php:609 +msgid "Delete conversation" +msgstr "Eyða samtali" + +#: mod/message.php:531 +msgid "" +"No secure communications available. You may be able to " +"respond from the sender's profile page." +msgstr "" + +#: mod/message.php:535 +msgid "Send Reply" +msgstr "Senda svar" + +#: mod/message.php:579 +#, php-format +msgid "Unknown sender - %s" +msgstr "" + +#: mod/message.php:581 +#, php-format +msgid "You and %s" +msgstr "" + +#: mod/message.php:583 +#, php-format +msgid "%s and You" +msgstr "" + +#: mod/message.php:612 +msgid "D, d M Y - g:i A" +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" +msgstr "Sýsla með notendur og/eða síður" + +#: 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 "Skipta á milli auðkenna eða hópa- / stjörnunotanda sem deila þínum aðgangs upplýsingum eða þér verið úthlutað \"umsýslu\" réttindum." + +#: mod/manage.php:141 +msgid "Select an identity to manage: " +msgstr "Veldu notanda til að sýsla með:" + +#: object/Item.php:370 +msgid "via" +msgstr "" + +#: view/theme/frio/php/Image.php:23 +msgid "Repeat the image" +msgstr "" + +#: view/theme/frio/php/Image.php:23 +msgid "Will repeat your image to fill the background." +msgstr "" + +#: view/theme/frio/php/Image.php:25 +msgid "Stretch" +msgstr "" + +#: view/theme/frio/php/Image.php:25 +msgid "Will stretch to width/height of the image." +msgstr "" + +#: view/theme/frio/php/Image.php:27 +msgid "Resize fill and-clip" +msgstr "" + +#: view/theme/frio/php/Image.php:27 +msgid "Resize to fill and retain aspect ratio." +msgstr "" + +#: view/theme/frio/php/Image.php:29 +msgid "Resize best fit" +msgstr "" + +#: view/theme/frio/php/Image.php:29 +msgid "Resize to best fit and retain aspect ratio." +msgstr "" + +#: view/theme/frio/theme.php:226 +msgid "Remote" +msgstr "" + +#: view/theme/frio/theme.php:232 +msgid "Visitor" +msgstr "" + +#: view/theme/frio/config.php:42 +msgid "Default" +msgstr "" + +#: view/theme/frio/config.php:54 +msgid "Note: " +msgstr "" + +#: view/theme/frio/config.php:54 +msgid "Check image permissions if all users are allowed to visit the image" +msgstr "" + +#: view/theme/frio/config.php:62 +msgid "Select scheme" +msgstr "" + +#: view/theme/frio/config.php:63 +msgid "Navigation bar background color" +msgstr "" + +#: view/theme/frio/config.php:64 +msgid "Navigation bar icon color " +msgstr "" + +#: view/theme/frio/config.php:65 +msgid "Link color" +msgstr "Litur tengils" + +#: view/theme/frio/config.php:66 +msgid "Set the background color" +msgstr "" + +#: view/theme/frio/config.php:67 +msgid "Content background transparency" +msgstr "" + +#: view/theme/frio/config.php:68 +msgid "Set the background image" +msgstr "" + +#: view/theme/cleanzero/config.php:83 msgid "Set resize level for images in posts and comments (width and height)" msgstr "" -#: ../../view/theme/cleanzero/config.php:84 -#: ../../view/theme/dispy/config.php:73 -#: ../../view/theme/diabook/config.php:151 +#: view/theme/cleanzero/config.php:84 view/theme/dispy/config.php:73 +#: view/theme/diabook/config.php:151 msgid "Set font-size for posts and comments" msgstr "" -#: ../../view/theme/cleanzero/config.php:85 +#: view/theme/cleanzero/config.php:85 msgid "Set theme width" msgstr "" -#: ../../view/theme/cleanzero/config.php:86 -#: ../../view/theme/quattro/config.php:68 +#: view/theme/cleanzero/config.php:86 view/theme/quattro/config.php:68 msgid "Color scheme" msgstr "" -#: ../../view/theme/dispy/config.php:74 -#: ../../view/theme/diabook/config.php:152 -msgid "Set line-height for posts and comments" -msgstr "" - -#: ../../view/theme/dispy/config.php:75 -msgid "Set colour scheme" -msgstr "Setja litar þema" - -#: ../../view/theme/quattro/config.php:67 +#: view/theme/quattro/config.php:67 msgid "Alignment" msgstr "" -#: ../../view/theme/quattro/config.php:67 +#: view/theme/quattro/config.php:67 msgid "Left" msgstr "" -#: ../../view/theme/quattro/config.php:67 +#: view/theme/quattro/config.php:67 msgid "Center" msgstr "" -#: ../../view/theme/quattro/config.php:69 +#: view/theme/quattro/config.php:69 msgid "Posts font size" msgstr "" -#: ../../view/theme/quattro/config.php:70 +#: view/theme/quattro/config.php:70 msgid "Textareas font size" msgstr "" -#: ../../view/theme/diabook/config.php:153 -msgid "Set resolution for middle column" +#: view/theme/dispy/config.php:74 view/theme/diabook/config.php:152 +msgid "Set line-height for posts and comments" msgstr "" -#: ../../view/theme/diabook/config.php:154 -msgid "Set color scheme" +#: view/theme/dispy/config.php:75 +msgid "Set colour scheme" msgstr "Setja litar þema" -#: ../../view/theme/diabook/config.php:155 -msgid "Set zoomfactor for Earth Layer" -msgstr "" - -#: ../../view/theme/diabook/config.php:156 -#: ../../view/theme/diabook/theme.php:585 -msgid "Set longitude (X) for Earth Layers" -msgstr "" - -#: ../../view/theme/diabook/config.php:157 -#: ../../view/theme/diabook/theme.php:586 -msgid "Set latitude (Y) for Earth Layers" -msgstr "" - -#: ../../view/theme/diabook/config.php:158 -#: ../../view/theme/diabook/theme.php:130 -#: ../../view/theme/diabook/theme.php:544 -#: ../../view/theme/diabook/theme.php:624 -msgid "Community Pages" -msgstr "" - -#: ../../view/theme/diabook/config.php:159 -#: ../../view/theme/diabook/theme.php:579 -#: ../../view/theme/diabook/theme.php:625 -msgid "Earth Layers" -msgstr "" - -#: ../../view/theme/diabook/config.php:160 -#: ../../view/theme/diabook/theme.php:391 -#: ../../view/theme/diabook/theme.php:626 +#: view/theme/vier/theme.php:152 view/theme/vier/config.php:112 +#: view/theme/diabook/theme.php:391 view/theme/diabook/theme.php:626 +#: view/theme/diabook/config.php:160 msgid "Community Profiles" msgstr "" -#: ../../view/theme/diabook/config.php:161 -#: ../../view/theme/diabook/theme.php:599 -#: ../../view/theme/diabook/theme.php:627 -msgid "Help or @NewHere ?" -msgstr "" - -#: ../../view/theme/diabook/config.php:162 -#: ../../view/theme/diabook/theme.php:606 -#: ../../view/theme/diabook/theme.php:628 -msgid "Connect Services" -msgstr "" - -#: ../../view/theme/diabook/config.php:163 -#: ../../view/theme/diabook/theme.php:523 -#: ../../view/theme/diabook/theme.php:629 -msgid "Find Friends" -msgstr "" - -#: ../../view/theme/diabook/config.php:164 -#: ../../view/theme/diabook/theme.php:412 -#: ../../view/theme/diabook/theme.php:630 +#: view/theme/vier/theme.php:181 view/theme/vier/config.php:116 +#: view/theme/diabook/theme.php:412 view/theme/diabook/theme.php:630 +#: view/theme/diabook/config.php:164 msgid "Last users" msgstr "Nýjustu notendurnir" -#: ../../view/theme/diabook/config.php:165 -#: ../../view/theme/diabook/theme.php:486 -#: ../../view/theme/diabook/theme.php:631 -msgid "Last photos" -msgstr "Nýjustu myndirnar" - -#: ../../view/theme/diabook/config.php:166 -#: ../../view/theme/diabook/theme.php:441 -#: ../../view/theme/diabook/theme.php:632 -msgid "Last likes" -msgstr "Nýjustu \"líkar þetta\"" - -#: ../../view/theme/diabook/theme.php:125 -msgid "Your contacts" +#: view/theme/vier/theme.php:199 view/theme/vier/config.php:115 +#: view/theme/diabook/theme.php:523 view/theme/diabook/theme.php:629 +#: view/theme/diabook/config.php:163 +msgid "Find Friends" msgstr "" -#: ../../view/theme/diabook/theme.php:128 -msgid "Your personal photos" -msgstr "Þínar einka myndir" - -#: ../../view/theme/diabook/theme.php:524 +#: view/theme/vier/theme.php:200 view/theme/diabook/theme.php:524 msgid "Local Directory" msgstr "" -#: ../../view/theme/diabook/theme.php:584 -msgid "Set zoomfactor for Earth Layers" +#: view/theme/vier/theme.php:291 +msgid "Quick Start" msgstr "" -#: ../../view/theme/diabook/theme.php:622 -msgid "Show/hide boxes at right-hand column:" +#: view/theme/vier/theme.php:373 view/theme/vier/config.php:114 +#: view/theme/diabook/theme.php:606 view/theme/diabook/theme.php:628 +#: view/theme/diabook/config.php:162 +msgid "Connect Services" msgstr "" -#: ../../view/theme/vier/config.php:56 +#: view/theme/vier/config.php:64 +msgid "Comma separated list of helper forums" +msgstr "" + +#: view/theme/vier/config.php:110 msgid "Set style" msgstr "" -#: ../../view/theme/duepuntozero/config.php:45 +#: view/theme/vier/config.php:111 view/theme/diabook/theme.php:130 +#: view/theme/diabook/theme.php:544 view/theme/diabook/theme.php:624 +#: view/theme/diabook/config.php:158 +msgid "Community Pages" +msgstr "" + +#: view/theme/vier/config.php:113 view/theme/diabook/theme.php:599 +#: view/theme/diabook/theme.php:627 view/theme/diabook/config.php:161 +msgid "Help or @NewHere ?" +msgstr "" + +#: view/theme/diabook/theme.php:125 +msgid "Your contacts" +msgstr "" + +#: view/theme/diabook/theme.php:128 +msgid "Your personal photos" +msgstr "Einkamyndirnar þínar" + +#: view/theme/diabook/theme.php:441 view/theme/diabook/theme.php:632 +#: view/theme/diabook/config.php:166 +msgid "Last likes" +msgstr "Nýjustu \"líkar þetta\"" + +#: view/theme/diabook/theme.php:486 view/theme/diabook/theme.php:631 +#: view/theme/diabook/config.php:165 +msgid "Last photos" +msgstr "Nýjustu myndirnar" + +#: view/theme/diabook/theme.php:579 view/theme/diabook/theme.php:625 +#: view/theme/diabook/config.php:159 +msgid "Earth Layers" +msgstr "" + +#: view/theme/diabook/theme.php:584 +msgid "Set zoomfactor for Earth Layers" +msgstr "" + +#: view/theme/diabook/theme.php:585 view/theme/diabook/config.php:156 +msgid "Set longitude (X) for Earth Layers" +msgstr "" + +#: view/theme/diabook/theme.php:586 view/theme/diabook/config.php:157 +msgid "Set latitude (Y) for Earth Layers" +msgstr "" + +#: view/theme/diabook/theme.php:622 +msgid "Show/hide boxes at right-hand column:" +msgstr "" + +#: view/theme/diabook/config.php:153 +msgid "Set resolution for middle column" +msgstr "" + +#: view/theme/diabook/config.php:154 +msgid "Set color scheme" +msgstr "Setja litar þema" + +#: view/theme/diabook/config.php:155 +msgid "Set zoomfactor for Earth Layer" +msgstr "" + +#: view/theme/duepuntozero/config.php:45 msgid "greenzero" msgstr "" -#: ../../view/theme/duepuntozero/config.php:46 +#: view/theme/duepuntozero/config.php:46 msgid "purplezero" msgstr "" -#: ../../view/theme/duepuntozero/config.php:47 +#: view/theme/duepuntozero/config.php:47 msgid "easterbunny" msgstr "" -#: ../../view/theme/duepuntozero/config.php:48 +#: view/theme/duepuntozero/config.php:48 msgid "darkzero" msgstr "" -#: ../../view/theme/duepuntozero/config.php:49 +#: view/theme/duepuntozero/config.php:49 msgid "comix" msgstr "" -#: ../../view/theme/duepuntozero/config.php:50 +#: view/theme/duepuntozero/config.php:50 msgid "slackr" msgstr "" -#: ../../view/theme/duepuntozero/config.php:62 +#: view/theme/duepuntozero/config.php:62 msgid "Variations" msgstr "" diff --git a/view/is/strings.php b/view/is/strings.php index e6fc5e2d80..5e53277c0f 100644 --- a/view/is/strings.php +++ b/view/is/strings.php @@ -2,1301 +2,55 @@ if(! function_exists("string_plural_select_is")) { function string_plural_select_is($n){ - return ($n != 1);; + return ($n % 10 != 1 || $n % 100 == 11);; }} ; -$a->strings["%d contact edited."] = array( - 0 => "", - 1 => "", -); -$a->strings["Could not access contact record."] = "Tókst ekki að ná í uppl. um tengilið"; -$a->strings["Could not locate selected profile."] = "Tókst ekki að staðsetja valinn forsíðu"; -$a->strings["Contact updated."] = "Tengiliður uppfærður"; -$a->strings["Failed to update contact record."] = "Ekki tókst að uppfæra tengiliðs skrá."; -$a->strings["Permission denied."] = "Heimild ekki veitt."; -$a->strings["Contact has been blocked"] = "Lokað á tengilið"; -$a->strings["Contact has been unblocked"] = "Opnað á tengilið"; -$a->strings["Contact has been ignored"] = "Tengiliður hunsaður"; -$a->strings["Contact has been unignored"] = "Tengiliður afhunsaður"; -$a->strings["Contact has been archived"] = "Tengiliður settur í geymslu"; -$a->strings["Contact has been unarchived"] = "Tengiliður tekinn úr geymslu"; -$a->strings["Do you really want to delete this contact?"] = "Viltu í alvörunni eyða þessum tengilið?"; -$a->strings["Yes"] = "Já"; -$a->strings["Cancel"] = "Hætta við"; -$a->strings["Contact has been removed."] = "Tengiliður fjarlægður"; -$a->strings["You are mutual friends with %s"] = "Þú ert gagnkvæmur vinur %s"; -$a->strings["You are sharing with %s"] = "Þú ert að deila með %s"; -$a->strings["%s is sharing with you"] = "%s er að deila með þér"; -$a->strings["Private communications are not available for this contact."] = "Einkasamtal ekki í boði fyrir þennan"; -$a->strings["Never"] = "aldrei"; -$a->strings["(Update was successful)"] = "(uppfærsla tókst)"; -$a->strings["(Update was not successful)"] = "(uppfærsla tókst ekki)"; -$a->strings["Suggest friends"] = "Stinga uppá vinum"; -$a->strings["Network type: %s"] = "Net tegund: %s"; -$a->strings["%d contact in common"] = array( - 0 => "%d tengiliður sameiginlegur", - 1 => "%d tengiliðir sameiginlegir", -); -$a->strings["View all contacts"] = "Skoða alla tengiliði"; -$a->strings["Unblock"] = "Afbanna"; -$a->strings["Block"] = "Banna"; -$a->strings["Toggle Blocked status"] = ""; -$a->strings["Unignore"] = "Byrja að fylgjast með á ný"; -$a->strings["Ignore"] = "Hunsa"; -$a->strings["Toggle Ignored status"] = ""; -$a->strings["Unarchive"] = "Taka úr geymslu"; -$a->strings["Archive"] = "Setja í geymslu"; -$a->strings["Toggle Archive status"] = ""; -$a->strings["Repair"] = "Gera við "; -$a->strings["Advanced Contact Settings"] = ""; -$a->strings["Communications lost with this contact!"] = ""; -$a->strings["Contact Editor"] = "Stilling tengiliðar"; -$a->strings["Submit"] = "Senda inn"; -$a->strings["Profile Visibility"] = "Forsíðu sjáanleiki"; -$a->strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Veldu forsíðu sem á að birtast %s þegar hann skoðaður með öruggum hætti"; -$a->strings["Contact Information / Notes"] = "Uppl. um tengilið / minnisatriði"; -$a->strings["Edit contact notes"] = "Breyta minnispunktum tengiliðs "; -$a->strings["Visit %s's profile [%s]"] = "Heimsækja forsíðu %s [%s]"; -$a->strings["Block/Unblock contact"] = "útiloka/opna á tengilið"; -$a->strings["Ignore contact"] = "Hunsa tengilið"; -$a->strings["Repair URL settings"] = "Gera við slóð stillingar"; -$a->strings["View conversations"] = "Skoða samtöl"; -$a->strings["Delete contact"] = "Eyða tengilið"; -$a->strings["Last update:"] = "Síðasta uppfærsla:"; -$a->strings["Update public posts"] = "Uppfæra opinberar færslur"; -$a->strings["Update now"] = "Uppfæra núna"; -$a->strings["Currently blocked"] = "Útilokaður sem stendur"; -$a->strings["Currently ignored"] = "Hunsaður sem stendur"; -$a->strings["Currently archived"] = "Í geymslu"; -$a->strings["Hide this contact from others"] = "Gera þennan notanda ósýnilegan öðrum"; -$a->strings["Replies/likes to your public posts may still be visible"] = "Svör/\"likar við\" á þínar opinberar færslur geta mögulega verið sýnileg öðrum"; -$a->strings["Notification for new posts"] = ""; -$a->strings["Send a notification of every new post of this contact"] = ""; -$a->strings["Fetch further information for feeds"] = ""; -$a->strings["Disabled"] = ""; -$a->strings["Fetch information"] = ""; -$a->strings["Fetch information and keywords"] = ""; -$a->strings["Blacklisted keywords"] = ""; -$a->strings["Comma separated list of keywords that should not be converted to hashtags, when \"Fetch information and keywords\" is selected"] = ""; -$a->strings["Suggestions"] = "Uppástungur"; -$a->strings["Suggest potential friends"] = ""; -$a->strings["All Contacts"] = "Allir tengiliðir"; -$a->strings["Show all contacts"] = "Sýna alla tengiliði"; -$a->strings["Unblocked"] = "Afhunsað"; -$a->strings["Only show unblocked contacts"] = ""; -$a->strings["Blocked"] = "Banna"; -$a->strings["Only show blocked contacts"] = ""; -$a->strings["Ignored"] = "Hunsa"; -$a->strings["Only show ignored contacts"] = ""; -$a->strings["Archived"] = "Í geymslu"; -$a->strings["Only show archived contacts"] = "Aðeins sýna geymda tengiliði"; -$a->strings["Hidden"] = "Falinn"; -$a->strings["Only show hidden contacts"] = "Aðeins sýna falda tengiliði"; -$a->strings["Mutual Friendship"] = "Sameiginlegur vinskapur"; -$a->strings["is a fan of yours"] = "er aðdáandi þinn"; -$a->strings["you are a fan of"] = "þú er aðdáandi"; -$a->strings["Edit contact"] = "Breyta tengilið"; -$a->strings["Contacts"] = "Tengiliðir"; -$a->strings["Search your contacts"] = "Leita í þínum vinum"; -$a->strings["Finding: "] = "Niðurstöður:"; -$a->strings["Find"] = "Finna"; -$a->strings["Update"] = "Uppfæra"; -$a->strings["Delete"] = "Eyða"; -$a->strings["No profile"] = "Engin forsíða"; -$a->strings["Manage Identities and/or Pages"] = "Sýsla með notendur og/eða síður"; -$a->strings["Toggle between different identities or community/group pages which share your account details or which you have been granted \"manage\" permissions"] = "Skipta á milli auðkenna eða hópa- / stjörnunotanda sem deila þínum aðgangs upplýsingum eða þér verið úthlutað \"umsýslu\" réttindum."; -$a->strings["Select an identity to manage: "] = "Veldu notanda til að sýsla með:"; -$a->strings["Post successful."] = "Melding tókst."; -$a->strings["Permission denied"] = "Bannaður aðgangur"; -$a->strings["Invalid profile identifier."] = "Ógilt tengiliða auðkenni"; -$a->strings["Profile Visibility Editor"] = "Sýsla með sjáanleika forsíðu"; -$a->strings["Profile"] = "Forsíða"; -$a->strings["Click on a contact to add or remove."] = "Ýttu á tengili til að bæta við hóp eða taka úr hóp."; -$a->strings["Visible To"] = "Sjáanlegur hverjum"; -$a->strings["All Contacts (with secure profile access)"] = "Allir tengiliðir (með öruggann aðgang að forsíðu)"; -$a->strings["Item not found."] = "Atriði fannst ekki."; -$a->strings["Public access denied."] = "Alemennings aðgangur ekki veittur."; -$a->strings["Access to this profile has been restricted."] = "Aðgangur að þessari forsíðu hefur verið heftur."; -$a->strings["Item has been removed."] = "Atriði hefur verið fjarlægt."; -$a->strings["Welcome to Friendica"] = "Velkomin(n) á Friendica"; -$a->strings["New Member Checklist"] = "Nýr notandi verklisti"; -$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."] = ""; -$a->strings["Getting Started"] = ""; -$a->strings["Friendica Walk-Through"] = ""; -$a->strings["On your Quick Start page - find a brief introduction to your profile and network tabs, make some new connections, and find some groups to join."] = ""; -$a->strings["Settings"] = "Stillingar"; -$a->strings["Go to Your Settings"] = ""; -$a->strings["On your Settings page - change your initial password. Also make a note of your Identity Address. This looks just like an email address - and will be useful in making friends on the free social web."] = ""; -$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."] = "Yfirfarðu aðrar stillingar, sérstaklega næðis stillingar. Óútgefin forsíða er einsog óskráð símanúmer. Sem þýðir að líklega viltu gefa út forsíðuna þína - nema allir vinir þínir og tilvonandi vinir vita nákvæmlega hvernig á að finna þig."; -$a->strings["Upload Profile Photo"] = "Hlaða upp forsíðu mynd"; -$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."] = "Að hlaða upp forsíðu mynd ef þú hefur ekki þegar gert það. Rannsóknir sýna að fólk sem hefur alvöru mynd af sér er tíu sinnum líklegra til að eignast vini en fólk sem ekki hefur mynd."; -$a->strings["Edit Your Profile"] = ""; -$a->strings["Edit your default profile to your liking. Review the settings for hiding your list of friends and hiding the profile from unknown visitors."] = "Breyttu sjálfgefnu forsíðunni einsog þú villt. Yfirfarðu stillingu til að fela vinalista á forsíðu og stillingu til að fela forsíðu fyrir ókunnum."; -$a->strings["Profile Keywords"] = ""; -$a->strings["Set some public keywords for your default profile which describe your interests. We may be able to find other people with similar interests and suggest friendships."] = "Bættu við leitarorðum í sjálfgefnu forsíðuna þína sem lýsa þínum áhugamálum. Þá er hægt að fólk með svipuð áhugamál og stinga uppá vinskap."; -$a->strings["Connecting"] = "Tengist"; -$a->strings["Facebook"] = "Facebook"; -$a->strings["Authorise the Facebook Connector if you currently have a Facebook account and we will (optionally) import all your Facebook friends and conversations."] = "Gefðu aðgang að Facebook tengingunni ef þú þegar hefur Facebook aðgang og þá er hægt (valfrjálst) að nálgast alla vini og samtöl á Facebook."; -$a->strings["If this is your own personal server, installing the Facebook addon may ease your transition to the free social web."] = ""; -$a->strings["Importing Emails"] = ""; -$a->strings["Enter your email access information on your Connector Settings page if you wish to import and interact with friends or mailing lists from your email INBOX"] = "Fylltu út póstfangs tengi upplýsingar í Tengla stillinga síðuna ef þú villt sækja tölvupóst og eiga samskipti við vini eða póstlista úr tölvupóst innhólfinu þínu"; -$a->strings["Go to Your Contacts Page"] = ""; -$a->strings["Your Contacts page is your gateway to managing friendships and connecting with friends on other networks. Typically you enter their address or site URL in the Add New Contact dialog."] = "Tengiliða síðan er gáttin þín til að sýsla með vina sambönd og tengjast við vini á öðrum netum. Oftast setur þú vistfangi eða slóð þeirra í Bæta við tengilið gluggan."; -$a->strings["Go to Your Site's Directory"] = ""; -$a->strings["The Directory page lets you find other people in this network or other federated sites. Look for a Connect or Follow link on their profile page. Provide your own Identity Address if requested."] = "Tengiliðalistinn er góð leit til að finna fólk á samfélagsnetinu eða öðrum sambandsnetum. Leitaðu að Connect eða Follow hlekk á forsíðunni þeirra. Mögulega þarf að gefa upp þína auðkenna slóð."; -$a->strings["Finding New People"] = ""; -$a->strings["On the side panel of the Contacts page are several tools to find new friends. We can match people by interest, look up people by name or interest, and provide suggestions based on network relationships. On a brand new site, friend suggestions will usually begin to be populated within 24 hours."] = ""; -$a->strings["Groups"] = "Hópar"; -$a->strings["Group Your Contacts"] = ""; -$a->strings["Once you have made some friends, organize them into private conversation groups from the sidebar of your Contacts page and then you can interact with each group privately on your Network page."] = "Eftir að þú hefur eignast nokkra vini, þá er best að flokka þá niður í hópa á hliðar slánni á Tengiliðasíðunni. Eftir það getur þú haft samskipti við hvern hóp fyrir sig á Samfélagssíðunni."; -$a->strings["Why Aren't My Posts Public?"] = ""; -$a->strings["Friendica respects your privacy. By default, your posts will only show up to people you've added as friends. For more information, see the help section from the link above."] = ""; -$a->strings["Getting Help"] = ""; -$a->strings["Go to the Help Section"] = ""; -$a->strings["Our help pages may be consulted for detail on other program features and resources."] = "Hægt er að styðjast við Hjálp síðuna til að fá leiðbeiningar um aðra eiginleika."; -$a->strings["OpenID protocol error. No ID returned."] = ""; -$a->strings["Account not found and OpenID registration is not permitted on this site."] = ""; -$a->strings["Login failed."] = "Innskráning mistókst."; -$a->strings["Image uploaded but image cropping failed."] = "Tókst að hala upp mynd en afskurður tókst ekki."; -$a->strings["Profile Photos"] = "Forsíðu myndir"; -$a->strings["Image size reduction [%s] failed."] = "Myndar minnkun [%s] tókst ekki."; -$a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Ýta þarf á "; -$a->strings["Unable to process image"] = "Ekki tókst að vinna mynd"; -$a->strings["Image exceeds size limit of %d"] = "Mynd stærri en takmörkunin %d"; -$a->strings["Unable to process image."] = "Ekki mögulegt afgreiða mynd"; -$a->strings["Upload File:"] = "Hlaða upp skrá:"; -$a->strings["Select a profile:"] = ""; -$a->strings["Upload"] = "Hlaða upp"; -$a->strings["or"] = "eða"; -$a->strings["skip this step"] = "sleppa þessu skrefi"; -$a->strings["select a photo from your photo albums"] = "velja mynd í myndabókum"; -$a->strings["Crop Image"] = "Skera af mynd"; -$a->strings["Please adjust the image cropping for optimum viewing."] = "Stilltu afskurð fyrir besta birtingu."; -$a->strings["Done Editing"] = "Breyting kláruð"; -$a->strings["Image uploaded successfully."] = "Upphölun á mynd tóks."; -$a->strings["Image upload failed."] = "Ekki hægt að hlaða upp mynd."; -$a->strings["photo"] = "mynd"; -$a->strings["status"] = "staða"; -$a->strings["%1\$s is following %2\$s's %3\$s"] = ""; -$a->strings["Tag removed"] = "Merki fjarlægt"; -$a->strings["Remove Item Tag"] = "Fjarlægja merki "; -$a->strings["Select a tag to remove: "] = "Veldu merki til að fjarlægja:"; -$a->strings["Remove"] = "Fjarlægja"; -$a->strings["Save to Folder:"] = ""; -$a->strings["- select -"] = ""; -$a->strings["Save"] = "Vista"; -$a->strings["Contact added"] = "Tengilið bætt við"; -$a->strings["Unable to locate original post."] = "Ekki tókst að finna upphaflega færslu."; -$a->strings["Empty post discarded."] = "Tóm færsla eytt."; -$a->strings["Wall Photos"] = "Veggmyndir"; -$a->strings["System error. Post not saved."] = "Kerfisvilla. Færsla ekki vistuð."; -$a->strings["This message was sent to you by %s, a member of the Friendica social network."] = "Skilaboðið sendi %s, notandi á Friendica samfélagsnetinu."; -$a->strings["You may visit them online at %s"] = "Þú getur heimsótt þau á netinu á %s"; -$a->strings["Please contact the sender by replying to this post if you do not wish to receive these messages."] = "Hafðu samband við sendanda með því að svara á þessari færslu ef þú villt ekki fá þessi skilaboð."; -$a->strings["%s posted an update."] = "%s hefur sent uppfærslu."; -$a->strings["Group created."] = "Hópur stofnaður"; -$a->strings["Could not create group."] = "Gat ekki stofnað hóp."; -$a->strings["Group not found."] = "Hópur fannst ekki."; -$a->strings["Group name changed."] = "Hópur endurskýrður."; -$a->strings["Save Group"] = ""; -$a->strings["Create a group of contacts/friends."] = "Stofna hóp af tengiliðum/vinum"; -$a->strings["Group Name: "] = "Nafn hóps:"; -$a->strings["Group removed."] = "Hópi eytt."; -$a->strings["Unable to remove group."] = "Ekki tókst að eyða hóp."; -$a->strings["Group Editor"] = "Hópa sýslari"; -$a->strings["Members"] = "Aðilar"; -$a->strings["You must be logged in to use addons. "] = ""; -$a->strings["Applications"] = "Forrit"; -$a->strings["No installed applications."] = "Engin uppsett forrit"; -$a->strings["Profile not found."] = "Forsíða fannst ekki."; -$a->strings["Contact not found."] = "Tengiliður fannst ekki."; -$a->strings["This may occasionally happen if contact was requested by both persons and it has already been approved."] = ""; -$a->strings["Response from remote site was not understood."] = "Ekki tókst að skilja svar frá ytri vef."; -$a->strings["Unexpected response from remote site: "] = "Óskiljanlegt svar frá ytri vef:"; -$a->strings["Confirmation completed successfully."] = "Staðfesting kláraði eðlilega."; -$a->strings["Remote site reported: "] = "Ytri vefur svaraði:"; -$a->strings["Temporary failure. Please wait and try again."] = "Tímabundin villa. Vinsamlegast bíddu og reyndur aftur síðar."; -$a->strings["Introduction failed or was revoked."] = "Kynning mistókst eða var afturkölluð."; -$a->strings["Unable to set contact photo."] = "Ekki tókst að setja tengiliðamynd."; -$a->strings["%1\$s is now friends with %2\$s"] = "Núna er %1\$s vinur %2\$s"; -$a->strings["No user record found for '%s' "] = "Enginn notanda færsla fannst fyrir '%s'"; -$a->strings["Our site encryption key is apparently messed up."] = "Dulkóðunnar lykill síðunnar okker er í döðlu."; -$a->strings["Empty site URL was provided or URL could not be decrypted by us."] = "Tómt slóð var uppgefin eða ekki okkur tókst ekki að afkóða slóð."; -$a->strings["Contact record was not found for you on our site."] = "Tengiliðafærslan þín fannst ekki á þjóninum okkar."; -$a->strings["Site public key not available in contact record for URL %s."] = "Opinber lykill er ekki til í tengiliðafærslu fyrir slóð %s."; -$a->strings["The ID provided by your system is a duplicate on our system. It should work if you try again."] = "Skilríkið sem þjónninn þinn gaf upp er þegar afritað á okkar þjón. Þetta ætti að virka ef þú bara reynir aftur."; -$a->strings["Unable to set your contact credentials on our system."] = "Ekki tókst að setja tengiliða skilríkið þitt upp á þjóninum okkar."; -$a->strings["Unable to update your contact profile details on our system"] = "Ekki tókst að uppfæra tengiliða skilríkis upplýsingarnar á okkar þjón"; -$a->strings["[Name Withheld]"] = "[Nafn ekki sýnt]"; -$a->strings["%1\$s has joined %2\$s"] = "%1\$s hefur gengið til liðs við %2\$s"; -$a->strings["Requested profile is not available."] = "Umbeðinn forsíða ekki til."; -$a->strings["Tips for New Members"] = "Ábendingar fyrir nýja notendur"; -$a->strings["No videos selected"] = ""; -$a->strings["Access to this item is restricted."] = "Aðgangur að þessum hlut hefur verið heftur"; -$a->strings["View Video"] = ""; -$a->strings["View Album"] = "Skoða myndabók"; -$a->strings["Recent Videos"] = ""; -$a->strings["Upload New Videos"] = ""; -$a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s merkti %2\$s's %3\$s með %4\$s"; -$a->strings["Friend suggestion sent."] = "Vina tillaga send"; -$a->strings["Suggest Friends"] = "Stinga uppá vinum"; -$a->strings["Suggest a friend for %s"] = "Stinga uppá vin fyrir %s"; -$a->strings["No valid account found."] = "Engin gildur aðgangur fannst."; -$a->strings["Password reset request issued. Check your email."] = "Breyta lykilorði. Opnaðu tölvupóstinn þinn."; -$a->strings["\n\t\tDear %1\$s,\n\t\t\tA request was recently received at \"%2\$s\" to reset your account\n\t\tpassword. In order to confirm this request, please select the verification link\n\t\tbelow or paste it into your web browser address bar.\n\n\t\tIf you did NOT request this change, please DO NOT follow the link\n\t\tprovided and ignore and/or delete this email.\n\n\t\tYour password will not be changed unless we can verify that you\n\t\tissued this request."] = ""; -$a->strings["\n\t\tFollow this link to verify your identity:\n\n\t\t%1\$s\n\n\t\tYou will then receive a follow-up message containing the new password.\n\t\tYou may change that password from your account settings page after logging in.\n\n\t\tThe login details are as follows:\n\n\t\tSite Location:\t%2\$s\n\t\tLogin Name:\t%3\$s"] = ""; -$a->strings["Password reset requested at %s"] = "Endurstilling aðgangsorðs umbeðin %s"; -$a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "Beiðni gat ekki verið sannreynd. (Það getur verið að þú hafir þegar sent hana.) Endurstilling á aðgangsorði tókst ekki."; -$a->strings["Password Reset"] = "Endurstilling Aðgangsorðs"; -$a->strings["Your password has been reset as requested."] = "Aðgangsorðið þitt hefur verið endurstilt."; -$a->strings["Your new password is"] = "Nýja aðgangsorð þitt er "; -$a->strings["Save or copy your new password - and then"] = "Vistaðu eða afritaðu nýja aðgangsorðið og"; -$a->strings["click here to login"] = "smelltu hér til að skrá þig inn"; -$a->strings["Your password may be changed from the Settings page after successful login."] = "Þú getur breytt aðgangsorðinu þínu á Stillingar síðunni eftir að þú hefur skráð þig inn."; -$a->strings["\n\t\t\t\tDear %1\$s,\n\t\t\t\t\tYour password has been changed as requested. Please retain this\n\t\t\t\tinformation for your records (or change your password immediately to\n\t\t\t\tsomething that you will remember).\n\t\t\t"] = ""; -$a->strings["\n\t\t\t\tYour login details are as follows:\n\n\t\t\t\tSite Location:\t%1\$s\n\t\t\t\tLogin Name:\t%2\$s\n\t\t\t\tPassword:\t%3\$s\n\n\t\t\t\tYou may change that password from your account settings page after logging in.\n\t\t\t"] = ""; -$a->strings["Your password has been changed at %s"] = "Aðgangsorðinu þínu var breytt í %s"; -$a->strings["Forgot your Password?"] = "Gleymdir þú lykilorði þínu?"; -$a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Sláðu inn tölvupóstfangið þitt til að endurstilla aðgangsorðið og fá leiðbeiningar sendar með tölvupósti."; -$a->strings["Nickname or Email: "] = "Gælunafn eða póstfang:"; -$a->strings["Reset"] = "Endursetja"; -$a->strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s lýkar við %3\$s hjá %2\$s "; -$a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s líkar ekki við %3\$s hjá %2\$s "; -$a->strings["{0} wants to be your friend"] = "{0} vill vera vinur þinn"; -$a->strings["{0} sent you a message"] = "{0} sendi þér skilboð"; -$a->strings["{0} requested registration"] = "{0} óskaði eftir skráningu"; -$a->strings["{0} commented %s's post"] = "{0} gerði athugasemd við %s's senda færslu"; -$a->strings["{0} liked %s's post"] = "{0} líkaði við senda færslu %s's"; -$a->strings["{0} disliked %s's post"] = "{0} líkaði ekki við senda færslu %s's"; -$a->strings["{0} is now friends with %s"] = "{0} er nú vinur %s"; -$a->strings["{0} posted"] = "{0} sendi færslu"; -$a->strings["{0} tagged %s's post with #%s"] = "{0} merkti %s's færslu með #%s"; -$a->strings["{0} mentioned you in a post"] = "{0} minntist á þig í færslu"; -$a->strings["No contacts."] = "Enginn tengiliður"; -$a->strings["View Contacts"] = "Skoða tengiliði"; -$a->strings["Invalid request identifier."] = "Ógilt fyrirspurnar auðkenni"; -$a->strings["Discard"] = "Henda"; -$a->strings["System"] = "Kerfi"; -$a->strings["Network"] = "Samfélag"; -$a->strings["Personal"] = "Einka"; -$a->strings["Home"] = "Heim"; -$a->strings["Introductions"] = "Kynningar"; -$a->strings["Show Ignored Requests"] = "Sýna hunsaðar fyrirspurnir"; -$a->strings["Hide Ignored Requests"] = "Fela hunsaðar beiðnir"; -$a->strings["Notification type: "] = "Skilaboða gerð:"; -$a->strings["Friend Suggestion"] = "Vina tillaga"; -$a->strings["suggested by %s"] = "stungið uppá af %s"; -$a->strings["Post a new friend activity"] = "Búa til færslu um "; -$a->strings["if applicable"] = "ef við á"; -$a->strings["Approve"] = "Samþykkja"; -$a->strings["Claims to be known to you: "] = "Þykist þekkja þig:"; -$a->strings["yes"] = "já"; -$a->strings["no"] = "nei"; -$a->strings["Approve as: "] = "Samþykkja sem:"; -$a->strings["Friend"] = "Vin"; -$a->strings["Sharer"] = "Deilir"; -$a->strings["Fan/Admirer"] = "Aðdáanda"; -$a->strings["Friend/Connect Request"] = "Vina/Tengi beiðni"; -$a->strings["New Follower"] = "Nýr fylgjandi"; -$a->strings["No introductions."] = "Engar kynningar."; -$a->strings["Notifications"] = "Tilkynningar"; -$a->strings["%s liked %s's post"] = "%s líkaði færslu %s"; -$a->strings["%s disliked %s's post"] = "%s mislíkaði færslu %s"; -$a->strings["%s is now friends with %s"] = "%s er nú vinur %s"; -$a->strings["%s created a new post"] = "%s bjó til færslu"; -$a->strings["%s commented on %s's post"] = "%s athugasemd við %s's færslu"; -$a->strings["No more network notifications."] = "Engar tilkynningar á neti."; -$a->strings["Network Notifications"] = "Tilkynningar á neti"; -$a->strings["No more system notifications."] = "Ekki fleiri kerfistilkynningar."; -$a->strings["System Notifications"] = "Kerfistilkynningar"; -$a->strings["No more personal notifications."] = "Engar einka tilkynningar."; -$a->strings["Personal Notifications"] = "Einkatilkynningar."; -$a->strings["No more home notifications."] = "Ekki fleiri heima tilkynningar"; -$a->strings["Home Notifications"] = "Tilkynningar frá heimasvæði"; -$a->strings["Source (bbcode) text:"] = ""; -$a->strings["Source (Diaspora) text to convert to BBcode:"] = ""; -$a->strings["Source input: "] = ""; -$a->strings["bb2html (raw HTML): "] = "bb2html (hrátt 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): "] = ""; -$a->strings["diaspora2bb: "] = "diaspora2bb: "; -$a->strings["Nothing new here"] = "Ekkert nýtt héðan"; -$a->strings["Clear notifications"] = ""; -$a->strings["New Message"] = "Ný skilaboð"; -$a->strings["No recipient selected."] = "Engir viðtakendur valdir."; -$a->strings["Unable to locate contact information."] = "Ekki tókst að staðsetja tengiliðs upplýsingar."; -$a->strings["Message could not be sent."] = "Ekki tókst að senda skilaboð."; -$a->strings["Message collection failure."] = "Ekki tókst að sækja skilaboð."; -$a->strings["Message sent."] = "Skilaboð send."; -$a->strings["Messages"] = "Skilaboð"; -$a->strings["Do you really want to delete this message?"] = ""; -$a->strings["Message deleted."] = "Skilaboðum eytt."; -$a->strings["Conversation removed."] = "Samtali eytt."; -$a->strings["Please enter a link URL:"] = "Sláðu inn slóð:"; -$a->strings["Send Private Message"] = "Senda einkaskilaboð"; -$a->strings["To:"] = "Til:"; -$a->strings["Subject:"] = "Efni:"; -$a->strings["Your message:"] = "Skilaboðin:"; -$a->strings["Upload photo"] = "Hlaða upp mynd"; -$a->strings["Insert web link"] = "Setja inn vefslóð"; -$a->strings["Please wait"] = "Vinsamlegast bíðið"; -$a->strings["No messages."] = "Engin skilaboð."; -$a->strings["Unknown sender - %s"] = ""; -$a->strings["You and %s"] = ""; -$a->strings["%s and You"] = ""; -$a->strings["Delete conversation"] = "Eyða samtali"; -$a->strings["D, d M Y - g:i A"] = ""; -$a->strings["%d message"] = array( - 0 => "", - 1 => "", -); -$a->strings["Message not available."] = "Ekki næst í skilaboð."; -$a->strings["Delete message"] = "Eyða skilaboðum"; -$a->strings["No secure communications available. You may be able to respond from the sender's profile page."] = ""; -$a->strings["Send Reply"] = "Senda svar"; -$a->strings["[Embedded content - reload page to view]"] = "[Innfelt efni - endurhlaða síðu til að sjá]"; -$a->strings["Contact settings applied."] = "Stillingar tengiliðs uppfærðar."; -$a->strings["Contact update failed."] = "Uppfærsla tengiliðs mistókst."; -$a->strings["Repair Contact Settings"] = "Gera við stillingar tengiliðs"; -$a->strings["WARNING: This is highly advanced and if you enter incorrect information your communications with this contact may stop working."] = "AÐVÖRUN: Þetta er mjög flókið og ef þú setur inn vitlausar upplýsingar þá munu samskipti við þennan tengilið hætta að virka."; -$a->strings["Please use your browser 'Back' button now if you are uncertain what to do on this page."] = "Vinsamlegast veldu \"Afturábak\" takkan núna ef þú ert ekki viss um hvað þú eigir að gera á þessari síðu."; -$a->strings["Return to contact editor"] = "Fara til baka í tengiliðasýsl"; -$a->strings["No mirroring"] = ""; -$a->strings["Mirror as forwarded posting"] = ""; -$a->strings["Mirror as my own posting"] = ""; -$a->strings["Name"] = "Nafn"; -$a->strings["Account Nickname"] = "Gælunafn notanda"; -$a->strings["@Tagname - overrides Name/Nickname"] = "@Merkjanafn - yfirskrifar Nafn/Gælunafn"; -$a->strings["Account URL"] = "Heimasíða notanda"; -$a->strings["Friend Request URL"] = "Slóð vina beiðnis"; -$a->strings["Friend Confirm URL"] = "Slóð vina staðfestingar "; -$a->strings["Notification Endpoint URL"] = "Slóð loka tilkynningar"; -$a->strings["Poll/Feed URL"] = "Slóð könnunar/þráðar"; -$a->strings["New photo from this URL"] = "Ný mynd frá slóð"; -$a->strings["Remote Self"] = ""; -$a->strings["Mirror postings from this contact"] = ""; -$a->strings["Mark this contact as remote_self, this will cause friendica to repost new entries from this contact."] = ""; -$a->strings["Login"] = "Innskrá"; -$a->strings["The post was created"] = ""; -$a->strings["Access denied."] = "Aðgangi hafnað"; -$a->strings["People Search"] = "Leita af fólki"; -$a->strings["No matches"] = "Engar leitarniðurstöður"; -$a->strings["Photos"] = "Myndir"; -$a->strings["Files"] = "Skrár"; -$a->strings["Contacts who are not members of a group"] = ""; -$a->strings["Theme settings updated."] = "Þemastillingar uppfærðar."; -$a->strings["Site"] = "Vefur"; -$a->strings["Users"] = "Notendur"; -$a->strings["Plugins"] = "Viðbætur"; -$a->strings["Themes"] = "Þemu"; -$a->strings["DB updates"] = "Gagnagrunns uppfærslur"; -$a->strings["Logs"] = "Atburðaskrá"; -$a->strings["probe address"] = ""; -$a->strings["check webfinger"] = ""; -$a->strings["Admin"] = "Stjórnborð"; -$a->strings["Plugin Features"] = ""; -$a->strings["diagnostics"] = ""; -$a->strings["User registrations waiting for confirmation"] = "Notenda nýskráningar bíða samþykkis"; -$a->strings["Normal Account"] = "Venjulegur notandi"; -$a->strings["Soapbox Account"] = "Sápukassa notandi"; -$a->strings["Community/Celebrity Account"] = "Hópa-/Stjörnusíða"; -$a->strings["Automatic Friend Account"] = "Verður sjálfkrafa vinur notandi"; -$a->strings["Blog Account"] = ""; -$a->strings["Private Forum"] = ""; -$a->strings["Message queues"] = ""; -$a->strings["Administration"] = "Stjórnun"; -$a->strings["Summary"] = "Samantekt"; -$a->strings["Registered users"] = "Skráðir notendur"; -$a->strings["Pending registrations"] = "Nýskráningar í bið"; -$a->strings["Version"] = "Útgáfa"; -$a->strings["Active plugins"] = "Virkar viðbætur"; -$a->strings["Can not parse base url. Must have at least ://"] = ""; -$a->strings["Site settings updated."] = "Stillingar þjóns uppfærðar."; -$a->strings["No special theme for mobile devices"] = ""; -$a->strings["No community page"] = ""; -$a->strings["Public postings from users of this site"] = ""; -$a->strings["Global community page"] = ""; -$a->strings["At post arrival"] = ""; -$a->strings["Frequently"] = "Oft"; -$a->strings["Hourly"] = "Klukkustundar fresti"; -$a->strings["Twice daily"] = "Tvisvar á dag"; -$a->strings["Daily"] = "Daglega"; -$a->strings["Multi user instance"] = ""; -$a->strings["Closed"] = "Lokað"; -$a->strings["Requires approval"] = "Þarf samþykki"; -$a->strings["Open"] = "Opið"; -$a->strings["No SSL policy, links will track page SSL state"] = ""; -$a->strings["Force all links to use SSL"] = ""; -$a->strings["Self-signed certificate, use SSL for local links only (discouraged)"] = ""; -$a->strings["Save Settings"] = ""; -$a->strings["Registration"] = "Nýskráning"; -$a->strings["File upload"] = "Hlaða upp skrá"; -$a->strings["Policies"] = "Stefna"; -$a->strings["Advanced"] = "Flóknari"; -$a->strings["Performance"] = "Afköst"; -$a->strings["Relocate - WARNING: advanced function. Could make this server unreachable."] = ""; -$a->strings["Site name"] = "Nafn síðu"; -$a->strings["Host name"] = ""; -$a->strings["Sender Email"] = ""; -$a->strings["Banner/Logo"] = "Borði/Merki"; -$a->strings["Shortcut icon"] = ""; -$a->strings["Touch icon"] = ""; -$a->strings["Additional Info"] = ""; -$a->strings["For public servers: you can add additional information here that will be listed at dir.friendica.com/siteinfo."] = ""; -$a->strings["System language"] = "Kerfis tungumál"; -$a->strings["System theme"] = "Kerfis þema"; -$a->strings["Default system theme - may be over-ridden by user profiles - change theme settings"] = ""; -$a->strings["Mobile system theme"] = ""; -$a->strings["Theme for mobile devices"] = ""; -$a->strings["SSL link policy"] = ""; -$a->strings["Determines whether generated links should be forced to use SSL"] = ""; -$a->strings["Force SSL"] = ""; -$a->strings["Force all Non-SSL requests to SSL - Attention: on some systems it could lead to endless loops."] = ""; -$a->strings["Old style 'Share'"] = ""; -$a->strings["Deactivates the bbcode element 'share' for repeating items."] = ""; -$a->strings["Hide help entry from navigation menu"] = ""; -$a->strings["Hides the menu entry for the Help pages from the navigation menu. You can still access it calling /help directly."] = ""; -$a->strings["Single user instance"] = ""; -$a->strings["Make this instance multi-user or single-user for the named user"] = ""; -$a->strings["Maximum image size"] = "Mesta stærð mynda"; -$a->strings["Maximum size in bytes of uploaded images. Default is 0, which means no limits."] = ""; -$a->strings["Maximum image length"] = ""; -$a->strings["Maximum length in pixels of the longest side of uploaded images. Default is -1, which means no limits."] = ""; -$a->strings["JPEG image quality"] = "JPEG myndgæði"; -$a->strings["Uploaded JPEGS will be saved at this quality setting [0-100]. Default is 100, which is full quality."] = ""; -$a->strings["Register policy"] = "Nýskráningar stefna"; -$a->strings["Maximum Daily Registrations"] = ""; -$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."] = ""; -$a->strings["Register text"] = "Nýskráningar texti"; -$a->strings["Will be displayed prominently on the registration page."] = ""; -$a->strings["Accounts abandoned after x days"] = "Yfirgefnir notendur eftir x daga"; -$a->strings["Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit."] = "Hættir að eyða afli í að sækja færslur á ytri vefi fyrir yfirgefna notendur. 0 þýðir notendur merkjast ekki yfirgefnir."; -$a->strings["Allowed friend domains"] = "Vina lén leyfð"; -$a->strings["Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains"] = ""; -$a->strings["Allowed email domains"] = "Póstfangs lén leyfð"; -$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"] = ""; -$a->strings["Block public"] = "Lokað á opinberar færslur"; -$a->strings["Check to block public access to all otherwise public personal pages on this site unless you are currently logged in."] = ""; -$a->strings["Force publish"] = "Skylda að vera í tengiliðalista"; -$a->strings["Check to force all profiles on this site to be listed in the site directory."] = ""; -$a->strings["Global directory update URL"] = "Uppfærsluslóð fyrir alheimstengiliðalista"; -$a->strings["URL to update the global directory. If this is not set, the global directory is completely unavailable to the application."] = ""; -$a->strings["Allow threaded items"] = ""; -$a->strings["Allow infinite level threading for items on this site."] = ""; -$a->strings["Private posts by default for new users"] = ""; -$a->strings["Set default post permissions for all new members to the default privacy group rather than public."] = ""; -$a->strings["Don't include post content in email notifications"] = ""; -$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."] = ""; -$a->strings["Disallow public access to addons listed in the apps menu."] = ""; -$a->strings["Checking this box will restrict addons listed in the apps menu to members only."] = ""; -$a->strings["Don't embed private images in posts"] = ""; -$a->strings["Don't replace locally-hosted private photos in posts with an embedded copy of the image. This means that contacts who receive posts containing private photos will have to authenticate and load each image, which may take a while."] = ""; -$a->strings["Allow Users to set remote_self"] = ""; -$a->strings["With checking this, every user is allowed to mark every contact as a remote_self in the repair contact dialog. Setting this flag on a contact causes mirroring every posting of that contact in the users stream."] = ""; -$a->strings["Block multiple registrations"] = "Banna margar skráningar"; -$a->strings["Disallow users to register additional accounts for use as pages."] = ""; -$a->strings["OpenID support"] = "Leyfa OpenID auðkenningu"; -$a->strings["OpenID support for registration and logins."] = ""; -$a->strings["Fullname check"] = "Fullt nafn skilyrði"; -$a->strings["Force users to register with a space between firstname and lastname in Full name, as an antispam measure"] = ""; -$a->strings["UTF-8 Regular expressions"] = "UTF-8 hefðbundin stöfun"; -$a->strings["Use PHP UTF8 regular expressions"] = ""; -$a->strings["Community Page Style"] = ""; -$a->strings["Type of community page to show. 'Global community' shows every public posting from an open distributed network that arrived on this server."] = ""; -$a->strings["Posts per user on community page"] = ""; -$a->strings["The maximum number of posts per user on the community page. (Not valid for 'Global Community')"] = ""; -$a->strings["Enable OStatus support"] = "Leyfa OStatus stuðning"; -$a->strings["Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All communications in OStatus are public, so privacy warnings will be occasionally displayed."] = ""; -$a->strings["OStatus conversation completion interval"] = ""; -$a->strings["How often shall the poller check for new entries in OStatus conversations? This can be a very ressource task."] = ""; -$a->strings["Enable Diaspora support"] = "Leyfa Diaspora tengingar"; -$a->strings["Provide built-in Diaspora network compatibility."] = ""; -$a->strings["Only allow Friendica contacts"] = "Aðeins leyfa Friendica notendur"; -$a->strings["All contacts must use Friendica protocols. All other built-in communication protocols disabled."] = ""; -$a->strings["Verify SSL"] = "Sannreyna SSL"; -$a->strings["If you wish, you can turn on strict certificate checking. This will mean you cannot connect (at all) to self-signed SSL sites."] = ""; -$a->strings["Proxy user"] = "Proxy notandi"; -$a->strings["Proxy URL"] = "Proxy slóð"; -$a->strings["Network timeout"] = "Net tími útrunninn"; -$a->strings["Value is in seconds. Set to 0 for unlimited (not recommended)."] = ""; -$a->strings["Delivery interval"] = ""; -$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."] = ""; -$a->strings["Poll interval"] = ""; -$a->strings["Delay background polling processes by this many seconds to reduce system load. If 0, use delivery interval."] = ""; -$a->strings["Maximum Load Average"] = "Mesta meðaltals álag"; -$a->strings["Maximum system load before delivery and poll processes are deferred - default 50."] = ""; -$a->strings["Use MySQL full text engine"] = ""; -$a->strings["Activates the full text engine. Speeds up search - but can only search for four and more characters."] = ""; -$a->strings["Suppress Language"] = ""; -$a->strings["Suppress language information in meta information about a posting."] = ""; -$a->strings["Suppress Tags"] = ""; -$a->strings["Suppress showing a list of hashtags at the end of the posting."] = ""; -$a->strings["Path to item cache"] = ""; -$a->strings["Cache duration in seconds"] = ""; -$a->strings["How long should the cache files be hold? Default value is 86400 seconds (One day). To disable the item cache, set the value to -1."] = ""; -$a->strings["Maximum numbers of comments per post"] = ""; -$a->strings["How much comments should be shown for each post? Default value is 100."] = ""; -$a->strings["Path for lock file"] = ""; -$a->strings["Temp path"] = ""; -$a->strings["Base path to installation"] = ""; -$a->strings["Disable picture proxy"] = ""; -$a->strings["The picture proxy increases performance and privacy. It shouldn't be used on systems with very low bandwith."] = ""; -$a->strings["Enable old style pager"] = ""; -$a->strings["The old style pager has page numbers but slows down massively the page speed."] = ""; -$a->strings["Only search in tags"] = ""; -$a->strings["On large systems the text search can slow down the system extremely."] = ""; -$a->strings["New base url"] = ""; -$a->strings["Update has been marked successful"] = "Uppfærsla merkt sem tókst"; -$a->strings["Database structure update %s was successfully applied."] = ""; -$a->strings["Executing of database structure update %s failed with error: %s"] = ""; -$a->strings["Executing %s failed with error: %s"] = ""; -$a->strings["Update %s was successfully applied."] = "Uppfærsla %s framkvæmd."; -$a->strings["Update %s did not return a status. Unknown if it succeeded."] = "Uppfærsla %s skilaði ekki gildi. Óvíst hvort tókst."; -$a->strings["There was no additional update function %s that needed to be called."] = ""; -$a->strings["No failed updates."] = "Engar uppfærslur mistókust."; -$a->strings["Check database structure"] = ""; -$a->strings["Failed Updates"] = "Uppfærslur sem mistókust"; -$a->strings["This does not include updates prior to 1139, which did not return a status."] = "Þetta á ekki við uppfærslur fyrir 1139, þær skiluðu ekki lokastöðu."; -$a->strings["Mark success (if update was manually applied)"] = "Merkja sem tókst (ef uppfærsla var framkvæmd handvirkt)"; -$a->strings["Attempt to execute this update step automatically"] = "Framkvæma þessa uppfærslu sjálfkrafa"; -$a->strings["\n\t\t\tDear %1\$s,\n\t\t\t\tthe administrator of %2\$s has set up an account for you."] = ""; -$a->strings["\n\t\t\tThe login details are as follows:\n\n\t\t\tSite Location:\t%1\$s\n\t\t\tLogin Name:\t\t%2\$s\n\t\t\tPassword:\t\t%3\$s\n\n\t\t\tYou may change your password from your account \"Settings\" page after logging\n\t\t\tin.\n\n\t\t\tPlease take a few moments to review the other account settings on that page.\n\n\t\t\tYou may also wish to add some basic information to your default profile\n\t\t\t(on the \"Profiles\" page) so that other people can easily find you.\n\n\t\t\tWe recommend setting your full name, adding a profile photo,\n\t\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n\t\t\tperhaps what country you live in; if you do not wish to be more specific\n\t\t\tthan that.\n\n\t\t\tWe fully respect your right to privacy, and none of these items are necessary.\n\t\t\tIf you are new and do not know anybody here, they may help\n\t\t\tyou to make some new and interesting friends.\n\n\t\t\tThank you and welcome to %4\$s."] = ""; -$a->strings["Registration details for %s"] = "Nýskráningar upplýsingar fyrir %s"; -$a->strings["%s user blocked/unblocked"] = array( - 0 => "", - 1 => "", -); -$a->strings["%s user deleted"] = array( - 0 => "%s notenda eytt", - 1 => "%s notendum eytt", -); -$a->strings["User '%s' deleted"] = "Notanda '%s' eytt"; -$a->strings["User '%s' unblocked"] = "Notanda '%s' gefið frelsi"; -$a->strings["User '%s' blocked"] = "Notanda '%s' settur í bann"; -$a->strings["Add User"] = ""; -$a->strings["select all"] = "velja alla"; -$a->strings["User registrations waiting for confirm"] = "Skráning notanda býður samþykkis"; -$a->strings["User waiting for permanent deletion"] = ""; -$a->strings["Request date"] = "Dagsetning beiðnar"; -$a->strings["Email"] = "Póstfang"; -$a->strings["No registrations."] = "Engin skráning"; -$a->strings["Deny"] = "Hafnað"; -$a->strings["Site admin"] = ""; -$a->strings["Account expired"] = ""; -$a->strings["New User"] = ""; -$a->strings["Register date"] = "Skráningar dagsetning"; -$a->strings["Last login"] = "Síðast innskráður"; -$a->strings["Last item"] = "Síðasta"; -$a->strings["Deleted since"] = ""; -$a->strings["Account"] = "Notandi"; -$a->strings["Selected users will be deleted!\\n\\nEverything these users had posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "Valdir notendur verður eytt!\\n\\nAllt sem þessir notendur hafa deilt á þessum vef verður varanlega eytt!\\n\\nErtu alveg viss?"; -$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?"] = "Notandinn {0} verður eytt!\\n\\nAllt sem þessi notandi hefur deilt á þessum vef veður varanlega eytt!\\n\\nErtu alveg viss?"; -$a->strings["Name of the new user."] = ""; -$a->strings["Nickname"] = ""; -$a->strings["Nickname of the new user."] = ""; -$a->strings["Email address of the new user."] = ""; -$a->strings["Plugin %s disabled."] = "Slökkt á viðbót %s "; -$a->strings["Plugin %s enabled."] = "Kveikt á viðbót %s"; -$a->strings["Disable"] = "Slökkva"; -$a->strings["Enable"] = "Kveikja"; -$a->strings["Toggle"] = "Skipta"; -$a->strings["Author: "] = "Höfundur:"; -$a->strings["Maintainer: "] = ""; -$a->strings["No themes found."] = "Engin þemu fundust"; -$a->strings["Screenshot"] = "Skjámynd"; -$a->strings["[Experimental]"] = "[Tilraun]"; -$a->strings["[Unsupported]"] = "[Óstudd]"; -$a->strings["Log settings updated."] = "Stillingar atburðaskrár uppfærðar. "; -$a->strings["Clear"] = "Hreinsa"; -$a->strings["Enable Debugging"] = ""; -$a->strings["Log file"] = "Atburðaskrá"; -$a->strings["Must be writable by web server. Relative to your Friendica top-level directory."] = "Vefþjónn verður að hafa skrifréttindi. Afstætt við Friendica rótar skráarsafn."; -$a->strings["Log level"] = "Stig atburðaskráningar"; -$a->strings["Close"] = "Loka"; -$a->strings["FTP Host"] = "FTP Vélanafn"; -$a->strings["FTP Path"] = "FTP Slóð"; -$a->strings["FTP User"] = "FTP Notandi"; -$a->strings["FTP Password"] = "FTP Aðgangsorð"; -$a->strings["Search Results For:"] = "Leitar niðurstöður fyrir:"; -$a->strings["Remove term"] = "Fjarlæga gildi"; -$a->strings["Saved Searches"] = "Vistaðar leitir"; -$a->strings["add"] = "bæta við"; -$a->strings["Commented Order"] = "Athugasemdar röð"; -$a->strings["Sort by Comment Date"] = "Raða eftir umræðu dagsetningu"; -$a->strings["Posted Order"] = "Færlsu röð"; -$a->strings["Sort by Post Date"] = "Raða eftir færslu dagsetningu"; -$a->strings["Posts that mention or involve you"] = "Færslur sem tengjast þér"; -$a->strings["New"] = "Ný"; -$a->strings["Activity Stream - by date"] = "Færslu straumur - raðað eftir dagsetningu"; -$a->strings["Shared Links"] = ""; -$a->strings["Interesting Links"] = "Áhugaverðir hlekkir"; -$a->strings["Starred"] = "Stjörnumerkt"; -$a->strings["Favourite Posts"] = "Uppáhalds færslur"; -$a->strings["Warning: This group contains %s member from an insecure network."] = array( - 0 => "Aðvörun: Þessi hópur inniheldur %s notanda frá óöruggu neti.", - 1 => "Aðvörun: Þessi hópur inniheldur %s notendur frá óöruggu neti.", -); -$a->strings["Private messages to this group are at risk of public disclosure."] = "Einka samtöl send á þennan hóp eiga á hættu að verða opinber."; -$a->strings["No such group"] = "Hópur ekki til"; -$a->strings["Group is empty"] = "Hópur er tómur"; -$a->strings["Group: "] = "Hópur:"; -$a->strings["Contact: "] = "Tengiliður:"; -$a->strings["Private messages to this person are at risk of public disclosure."] = "Einka skilaboð send á þennan notanda eiga á hættu að verða opinber."; -$a->strings["Invalid contact."] = "Ógildur tengiliður."; -$a->strings["Friends of %s"] = "Vinir %s"; -$a->strings["No friends to display."] = "Engir vinir til að birta."; -$a->strings["Event title and start time are required."] = ""; -$a->strings["l, F j"] = ""; -$a->strings["Edit event"] = "Breyta atburð"; -$a->strings["link to source"] = "slóð í heimild"; -$a->strings["Events"] = "Atburðir"; -$a->strings["Create New Event"] = "Stofna nýjan atburð"; -$a->strings["Previous"] = "Fyrra"; -$a->strings["Next"] = "Næsta"; -$a->strings["hour:minute"] = "klukkustund:mínutur"; -$a->strings["Event details"] = "Atburða lýsing"; -$a->strings["Format is %s %s. Starting date and Title are required."] = ""; -$a->strings["Event Starts:"] = "Atburður hefst:"; -$a->strings["Required"] = ""; -$a->strings["Finish date/time is not known or not relevant"] = "Loka dagsetning/tímasetning ekki vituð eða skiptir ekki máli"; -$a->strings["Event Finishes:"] = "Atburður klárar:"; -$a->strings["Adjust for viewer timezone"] = "Heimfæra á tímabelti áhorfanda"; -$a->strings["Description:"] = "Lýsing:"; -$a->strings["Location:"] = "Staðsetning:"; -$a->strings["Title:"] = ""; -$a->strings["Share this event"] = "Deila þessum atburði"; -$a->strings["Select"] = "Velja"; -$a->strings["View %s's profile @ %s"] = "Birta forsíðu %s hjá %s"; -$a->strings["%s from %s"] = "%s til %s"; -$a->strings["View in context"] = "Birta í samhengi"; -$a->strings["%d comment"] = array( - 0 => "%d ummæli", - 1 => "%d ummæli", -); -$a->strings["comment"] = array( - 0 => "athugasemd", - 1 => "athugasemdir", -); -$a->strings["show more"] = "sýna meira"; -$a->strings["Private Message"] = "Einkaskilaboð"; -$a->strings["I like this (toggle)"] = "Mér líkar þetta (kveikja/slökkva)"; -$a->strings["like"] = "líkar"; -$a->strings["I don't like this (toggle)"] = "Mér líkar þetta ekki (kveikja/slökkva)"; -$a->strings["dislike"] = "mislíkar"; -$a->strings["Share this"] = "Deila þessu"; -$a->strings["share"] = "deila"; -$a->strings["This is you"] = "Þetta ert þú"; -$a->strings["Comment"] = "Athugasemd"; -$a->strings["Bold"] = "Feitletrað"; -$a->strings["Italic"] = "Skáletrað"; -$a->strings["Underline"] = "Undirstrikað"; -$a->strings["Quote"] = "Gæsalappir"; -$a->strings["Code"] = "Kóði"; -$a->strings["Image"] = "Mynd"; -$a->strings["Link"] = "Tengill"; -$a->strings["Video"] = "Myndband"; -$a->strings["Preview"] = "Forskoðun"; -$a->strings["Edit"] = "Breyta"; -$a->strings["add star"] = "bæta við stjörnu"; -$a->strings["remove star"] = "eyða stjörnu"; -$a->strings["toggle star status"] = "Kveikja/slökkva á stjörnu"; -$a->strings["starred"] = "stjörnumerkt"; -$a->strings["add tag"] = "bæta við merki"; -$a->strings["save to folder"] = "vista í möppu"; -$a->strings["to"] = "við"; -$a->strings["Wall-to-Wall"] = "vegg við vegg"; -$a->strings["via Wall-To-Wall:"] = "gegnum vegg við vegg"; -$a->strings["Remove My Account"] = "Eyða þessum notanda"; -$a->strings["This will completely remove your account. Once this has been done it is not recoverable."] = "Þetta mun algjörlega eyða notandanum. Þegar þetta hefur verið gert er þetta ekki afturkræft."; -$a->strings["Please enter your password for verification:"] = "Sláðu inn aðgangsorð yðar:"; -$a->strings["Friendica Communications Server - Setup"] = ""; -$a->strings["Could not connect to database."] = "Gat ekki tengst gagnagrunn."; -$a->strings["Could not create table."] = "Gat ekki búið til töflu."; -$a->strings["Your Friendica site database has been installed."] = "Friendica gagnagrunnurinn þinn hefur verið uppsettur."; -$a->strings["You may need to import the file \"database.sql\" manually using phpmyadmin or mysql."] = "Þú þarft mögulega að keyra inn skránna \"database.sql\" handvirkt með phpmyadmin eða mysql."; -$a->strings["Please see the file \"INSTALL.txt\"."] = "Vinsamlegast lestu skránna \"INSTALL.txt\"."; -$a->strings["System check"] = "Kerfis prófun"; -$a->strings["Check again"] = "Prófa aftur"; -$a->strings["Database connection"] = "Gangagrunns tenging"; -$a->strings["In order to install Friendica we need to know how to connect to your database."] = "Til að setja upp Friendica þurfum við að vita hvernig á að tengjast gagnagrunninum þínum."; -$a->strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Vinsamlegast hafðu samband við hýsingaraðilann þinn eða kerfisstjóra ef þú hefur spurningar um þessar stillingar."; -$a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "Gagnagrunnurinn sem þú bendir á þarf þegar að vera til. Ef ekki þá þarf að stofna hann áður en haldið er áfram."; -$a->strings["Database Server Name"] = "Vélanafn gagangrunns"; -$a->strings["Database Login Name"] = "Notendanafn í gagnagrunn"; -$a->strings["Database Login Password"] = "Aðgangsorð í gagnagrunns"; -$a->strings["Database Name"] = "Nafn gagnagrunns"; -$a->strings["Site administrator email address"] = "Póstfang kerfisstjóri vefs"; -$a->strings["Your account email address must match this in order to use the web admin panel."] = "Notanda póstfang þitt verður að passa við þetta til að hægt sé að nota umsýslu vefviðmót."; -$a->strings["Please select a default timezone for your website"] = "Vinsamlegast veldu sjálfgefið tímabelti fyrir vefsíðuna"; -$a->strings["Site settings"] = "Stillingar vefs"; -$a->strings["Could not find a command line version of PHP in the web server PATH."] = "Gat ekki fundið skipanalínu útgáfu af PHP í vefþjóns PATH."; -$a->strings["If you don't have a command line version of PHP installed on server, you will not be able to run background polling via cron. See 'Activating scheduled tasks'"] = ""; -$a->strings["PHP executable path"] = "PHP keyrslu slóð"; -$a->strings["Enter full path to php executable. You can leave this blank to continue the installation."] = ""; -$a->strings["Command line PHP"] = "Skipanalínu PHP"; -$a->strings["PHP executable is not the php cli binary (could be cgi-fgci version)"] = ""; -$a->strings["Found PHP version: "] = ""; -$a->strings["PHP cli binary"] = ""; -$a->strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "Skipanalínu útgáfa af PHP á vefþjóninum hefur ekki kveikt á \"register_argc_argv\"."; -$a->strings["This is required for message delivery to work."] = "Þetta er skilyrt fyrir því að skilaboð komist til skila."; -$a->strings["PHP register_argc_argv"] = ""; -$a->strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = "Villa: Stefjan \"openssl_pkey_new\" á vefþjóninum getur ekki stofnað dulkóðunar lykla"; -$a->strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "Ef keyrt er á Window, vinsamlegast skoðið \"http://www.php.net/manual/en/openssl.installation.php\"."; -$a->strings["Generate encryption keys"] = "Búa til dulkóðunar lykla"; -$a->strings["libCurl PHP module"] = "libCurl PHP eining"; -$a->strings["GD graphics PHP module"] = "GD graphics PHP eining"; -$a->strings["OpenSSL PHP module"] = "OpenSSL PHP eining"; -$a->strings["mysqli PHP module"] = "mysqli PHP eining"; -$a->strings["mb_string PHP module"] = "mb_string PHP eining"; -$a->strings["Apache mod_rewrite module"] = "Apache mod_rewrite eining"; -$a->strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Villa: Apache vefþjóns eining mod-rewrite er skilyrði og er ekki uppsett. "; -$a->strings["Error: libCURL PHP module required but not installed."] = "Villa: libCurl PHP eining er skilyrði og er ekki uppsett."; -$a->strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Villa: GD graphics PHP eining með JPEG stuðningi er skilyrði og er ekki uppsett."; -$a->strings["Error: openssl PHP module required but not installed."] = "Villa: openssl PHP eining skilyrði og er ekki uppsett."; -$a->strings["Error: mysqli PHP module required but not installed."] = "Villa: mysqli PHP eining er skilyrði og er ekki uppsett"; -$a->strings["Error: mb_string PHP module required but not installed."] = "Villa: mb_string PHP eining skilyrði en ekki uppsett."; -$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."] = "Vef uppsetningar forrit þarf að geta stofnað skránna \".htconfig.php\" in efsta skráarsafninu á vefþjóninum og það getur ekki gert það."; -$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."] = "Þetta er oftast aðgangsstýringa stilling, þar sem vefþjónninn getur ekki skrifað út skrár í skráarsafnið - þó þú getir það."; -$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."] = ""; -$a->strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"INSTALL.txt\" for instructions."] = ""; -$a->strings[".htconfig.php is writable"] = ".htconfig.php er skrifanleg"; -$a->strings["Friendica uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = ""; -$a->strings["In order to store these compiled templates, the web server needs to have write access to the directory view/smarty3/ under the Friendica top level folder."] = ""; -$a->strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = ""; -$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."] = ""; -$a->strings["view/smarty3 is writable"] = ""; -$a->strings["Url rewrite in .htaccess is not working. Check your server configuration."] = ""; -$a->strings["Url rewrite is working"] = ""; -$a->strings["The database configuration file \".htconfig.php\" could not be written. Please use the enclosed text to create a configuration file in your web server root."] = "Ekki tókst að skrifa gagnagrunns stillingar skrá \".htconfig.php\". Vinsamlegast notaði viðhangandi texta til að búa til stillingar skrá á vefþjóns rótina."; -$a->strings["

What next

"] = ""; -$a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "MIKILVÆGT: Þú þarft að [handvirkt] setja upp sjálfvirka keyrslu á poller."; -$a->strings["Number of daily wall messages for %s exceeded. Message failed."] = ""; -$a->strings["Unable to check your home location."] = ""; -$a->strings["No recipient."] = ""; -$a->strings["If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders."] = ""; -$a->strings["Help:"] = "Hjálp:"; -$a->strings["Help"] = "Hjálp"; -$a->strings["Not Found"] = "Fannst ekki"; -$a->strings["Page not found."] = "Síða fannst ekki."; -$a->strings["%1\$s welcomes %2\$s"] = ""; -$a->strings["Welcome to %s"] = "Velkomin(n) til %s"; -$a->strings["Sorry, maybe your upload is bigger than the PHP configuration allows"] = ""; -$a->strings["Or - did you try to upload an empty file?"] = ""; -$a->strings["File exceeds size limit of %d"] = "Skrá stærri en takmarkið %d"; -$a->strings["File upload failed."] = "Skráar upphlöðun mistókst."; -$a->strings["Profile Match"] = "Forsíða fannst"; -$a->strings["No keywords to match. Please add keywords to your default profile."] = "Engin leitarorð. Bættu við leitarorðum í sjálfgefnu forsíðuna."; -$a->strings["is interested in:"] = "hefur áhuga á:"; -$a->strings["Connect"] = "Tengjast"; -$a->strings["link"] = ""; -$a->strings["Not available."] = "Ekki í boði."; -$a->strings["Community"] = "Samfélag"; -$a->strings["No results."] = "Engar leitarniðurstöður."; -$a->strings["everybody"] = "allir"; -$a->strings["Additional features"] = ""; -$a->strings["Display"] = ""; -$a->strings["Social Networks"] = ""; -$a->strings["Delegations"] = ""; -$a->strings["Connected apps"] = ""; -$a->strings["Export personal data"] = "Sækja persónuleg gögn"; -$a->strings["Remove account"] = "Henda tengilið"; -$a->strings["Missing some important data!"] = "Vantar mikilvæg gögn!"; -$a->strings["Failed to connect with email account using the settings provided."] = "Ekki tókst að tengjast við pósthólf með stillingum sem uppgefnar eru."; -$a->strings["Email settings updated."] = "Stillingar póstfangs uppfærðar."; -$a->strings["Features updated"] = ""; -$a->strings["Relocate message has been send to your contacts"] = ""; -$a->strings["Passwords do not match. Password unchanged."] = "Aðgangsorð ber ekki saman. Aðgangsorð óbreytt."; -$a->strings["Empty passwords are not allowed. Password unchanged."] = "Tóm aðgangsorð eru ekki leyfileg. Aðgangsorð óbreytt."; -$a->strings["Wrong password."] = ""; -$a->strings["Password changed."] = "Aðgangsorði breytt."; -$a->strings["Password update failed. Please try again."] = "Uppfærsla á aðgangsorði tókst ekki. Reyndu aftur."; -$a->strings[" Please use a shorter name."] = "Vinsamlegast nota styttra nafn."; -$a->strings[" Name too short."] = "Nafn of stutt."; -$a->strings["Wrong Password"] = ""; -$a->strings[" Not valid email."] = "Póstfang ógilt"; -$a->strings[" Cannot change to that email."] = "Ekki hægt að breyta yfir í þetta póstfang."; -$a->strings["Private forum has no privacy permissions. Using default privacy group."] = ""; -$a->strings["Private forum has no privacy permissions and no default privacy group."] = ""; -$a->strings["Settings updated."] = "Stillingar uppfærðar"; -$a->strings["Add application"] = "Bæta við forriti"; -$a->strings["Consumer Key"] = "Notenda lykill"; -$a->strings["Consumer Secret"] = "Notenda leyndarmál"; -$a->strings["Redirect"] = "Áframsenda"; -$a->strings["Icon url"] = "Táknmyndar slóð"; -$a->strings["You can't edit this application."] = "Þú getur ekki breytt þessu forriti."; -$a->strings["Connected Apps"] = "Tengd forr"; -$a->strings["Client key starts with"] = "Lykill viðskiptavinar byrjar á"; -$a->strings["No name"] = "Ekkert nafn"; -$a->strings["Remove authorization"] = "Fjarlæga auðkenningu"; -$a->strings["No Plugin settings configured"] = "Engar stillingar í einingu stilltar"; -$a->strings["Plugin Settings"] = "Eininga stillingar"; -$a->strings["Off"] = ""; -$a->strings["On"] = ""; -$a->strings["Additional Features"] = ""; -$a->strings["Built-in support for %s connectivity is %s"] = "Innbyggður stuðningur fyrir %s tenging er%s"; -$a->strings["Diaspora"] = "Diaspora"; -$a->strings["enabled"] = "kveikt"; -$a->strings["disabled"] = "slökkt"; -$a->strings["StatusNet"] = "StatusNet"; -$a->strings["Email access is disabled on this site."] = "Slökkt hefur verið á tölvupóst aðgang á þessum þjón."; -$a->strings["Email/Mailbox Setup"] = "Tölvupóstur stilling"; -$a->strings["If you wish to communicate with email contacts using this service (optional), please specify how to connect to your mailbox."] = "Ef þú villt hafa samskipti við tölvupósts tengiliði með þessari þjónustu (valfrjálst), skilgreindu þá hvernig á að tengjast póstfanginu þínu."; -$a->strings["Last successful email check:"] = "Póstfang sannreynt síðast:"; -$a->strings["IMAP server name:"] = "IMAP þjónn:"; -$a->strings["IMAP port:"] = "IMAP port:"; -$a->strings["Security:"] = "Öryggi:"; -$a->strings["None"] = "Ekkert"; -$a->strings["Email login name:"] = "Póstfangs aðgangsnafn:"; -$a->strings["Email password:"] = "Póstfangs aðgangsorð:"; -$a->strings["Reply-to address:"] = "Póstfang sem svar berst á:"; -$a->strings["Send public posts to all email contacts:"] = "Senda opinberar færslur á alla tölvupóst viðtakendur:"; -$a->strings["Action after import:"] = ""; -$a->strings["Mark as seen"] = "Merka sem séð"; -$a->strings["Move to folder"] = "Flytja yfir í skrásafn"; -$a->strings["Move to folder:"] = "Flytja yfir í skrásafn:"; -$a->strings["Display Settings"] = ""; -$a->strings["Display Theme:"] = "Útlits þema:"; -$a->strings["Mobile Theme:"] = ""; -$a->strings["Update browser every xx seconds"] = "Endurhlaða vefsíðu á xx sekúndu fresti"; -$a->strings["Minimum of 10 seconds, no maximum"] = "Minnst 10 sekúndur, ekkert hámark"; -$a->strings["Number of items to display per page:"] = ""; -$a->strings["Maximum of 100 items"] = ""; -$a->strings["Number of items to display per page when viewed from mobile device:"] = ""; -$a->strings["Don't show emoticons"] = ""; -$a->strings["Don't show notices"] = ""; -$a->strings["Infinite scroll"] = ""; -$a->strings["Automatic updates only at the top of the network page"] = ""; -$a->strings["User Types"] = ""; -$a->strings["Community Types"] = ""; -$a->strings["Normal Account Page"] = ""; -$a->strings["This account is a normal personal profile"] = "Þessi notandi er með venjulega persónulega forsíðu"; -$a->strings["Soapbox Page"] = ""; -$a->strings["Automatically approve all connection/friend requests as read-only fans"] = "Sjálfkrafa samþykkja allar tengi/vina beiðnir sem, einungis lestrar aðdáendur"; -$a->strings["Community Forum/Celebrity Account"] = ""; -$a->strings["Automatically approve all connection/friend requests as read-write fans"] = "Sjálfkrafa samþykkja allar tengi/vina beiðnir, sem les og skriftar aðdáendur"; -$a->strings["Automatic Friend Page"] = ""; -$a->strings["Automatically approve all connection/friend requests as friends"] = "Sjálfkrafa samþykkja allar tengi/vina beiðnir sem vini"; -$a->strings["Private Forum [Experimental]"] = ""; -$a->strings["Private forum - approved members only"] = ""; -$a->strings["OpenID:"] = "OpenID:"; -$a->strings["(Optional) Allow this OpenID to login to this account."] = "(Valfrjálst) Leyfa þessu OpenID til að auðkennast sem þessi notandi."; -$a->strings["Publish your default profile in your local site directory?"] = "Gefa út sjálfgefna forsíðu í tengiliðalista á þessum þjón?"; -$a->strings["No"] = "Nei"; -$a->strings["Publish your default profile in the global social directory?"] = "Gefa sjálfgefna forsíðu út í alheimstengiliðalista?"; -$a->strings["Hide your contact/friend list from viewers of your default profile?"] = "Fela tengiliða-/vinalistann þinn fyrir áhorfendum á sjálfgefinni forsíðu?"; -$a->strings["Hide your profile details from unknown viewers?"] = "Fela forsíðu upplýsingar fyrir óþekktum? "; -$a->strings["If enabled, posting public messages to Diaspora and other networks isn't possible."] = ""; -$a->strings["Allow friends to post to your profile page?"] = "Leyfa vinum að deila á forsíðuna þína?"; -$a->strings["Allow friends to tag your posts?"] = "Leyfa vinum að merkja þínar færslur?"; -$a->strings["Allow us to suggest you as a potential friend to new members?"] = "Leyfa að stungið verði uppá þér sem hugsamlegum vinur fyrir aðra notendur? "; -$a->strings["Permit unknown people to send you private mail?"] = ""; -$a->strings["Profile is not published."] = "Forsíðu hefur ekki verið gefinn út."; -$a->strings["Your Identity Address is"] = "Auðkennisnetfangið þitt er"; -$a->strings["Automatically expire posts after this many days:"] = "Sjálfkrafa fyrna færslu eftir hvað marga daga:"; -$a->strings["If empty, posts will not expire. Expired posts will be deleted"] = "Tómar færslur renna ekki út. Útrunnum færslum er eytt"; -$a->strings["Advanced expiration settings"] = "Flóknar fyrningatíma stillingar"; -$a->strings["Advanced Expiration"] = "Flókin fyrning"; -$a->strings["Expire posts:"] = "Fyrna færslur:"; -$a->strings["Expire personal notes:"] = "Fyrna einka glósur:"; -$a->strings["Expire starred posts:"] = "Fyrna stjörnumerktar færslur:"; -$a->strings["Expire photos:"] = "Fyrna myndum:"; -$a->strings["Only expire posts by others:"] = ""; -$a->strings["Account Settings"] = "Notenda stillingar"; -$a->strings["Password Settings"] = "Aðgangsorða stillingar"; -$a->strings["New Password:"] = "Nýtt aðgangsorð:"; -$a->strings["Confirm:"] = "Staðfesta:"; -$a->strings["Leave password fields blank unless changing"] = "Hafðu aðgangsorða svæði tóm nema þegar verið er að breyta"; -$a->strings["Current Password:"] = ""; -$a->strings["Your current password to confirm the changes"] = ""; -$a->strings["Password:"] = ""; -$a->strings["Basic Settings"] = "Grunn stillingar"; -$a->strings["Full Name:"] = "Fullt nafn:"; -$a->strings["Email Address:"] = "Póstfang:"; -$a->strings["Your Timezone:"] = "Þitt tímabelti:"; -$a->strings["Default Post Location:"] = "Sjálfgefin staðsetning færslu:"; -$a->strings["Use Browser Location:"] = "Nota vafra staðsetningu:"; -$a->strings["Security and Privacy Settings"] = "Öryggis og næðis stillingar"; -$a->strings["Maximum Friend Requests/Day:"] = "Hámarks vinabeiðnir á dag:"; -$a->strings["(to prevent spam abuse)"] = "(til að koma í veg fyrir rusl misnotkun)"; -$a->strings["Default Post Permissions"] = "Sjálfgefnar aðgangstýring á færslum"; -$a->strings["(click to open/close)"] = "(ýttu á til að opna/loka)"; -$a->strings["Show to Groups"] = "Birta hópum"; -$a->strings["Show to Contacts"] = "Birta tengiliðum"; -$a->strings["Default Private Post"] = ""; -$a->strings["Default Public Post"] = ""; -$a->strings["Default Permissions for New Posts"] = ""; -$a->strings["Maximum private messages per day from unknown people:"] = ""; -$a->strings["Notification Settings"] = "Tilkynninga stillingar"; -$a->strings["By default post a status message when:"] = ""; -$a->strings["accepting a friend request"] = ""; -$a->strings["joining a forum/community"] = "ganga til liðs við hóp/samfélag"; -$a->strings["making an interesting profile change"] = ""; -$a->strings["Send a notification email when:"] = "Senda tilkynninga tölvupóst þegar:"; -$a->strings["You receive an introduction"] = "Þú færð kynningu"; -$a->strings["Your introductions are confirmed"] = "Þínar kynningar eru samþykktar"; -$a->strings["Someone writes on your profile wall"] = "Einhver skrifar á vegginn þínn"; -$a->strings["Someone writes a followup comment"] = "Einhver skrifar athugasemd á færslu hjá þér"; -$a->strings["You receive a private message"] = "Þú færð einkaskilaboð"; -$a->strings["You receive a friend suggestion"] = "Þér hefur borist vina uppástunga"; -$a->strings["You are tagged in a post"] = "Þú varst merkt(ur) í færslu"; -$a->strings["You are poked/prodded/etc. in a post"] = ""; -$a->strings["Text-only notification emails"] = ""; -$a->strings["Send text only notification emails, without the html part"] = ""; -$a->strings["Advanced Account/Page Type Settings"] = ""; -$a->strings["Change the behaviour of this account for special situations"] = ""; -$a->strings["Relocate"] = ""; -$a->strings["If you have moved this profile from another server, and some of your contacts don't receive your updates, try pushing this button."] = ""; -$a->strings["Resend relocate message to contacts"] = ""; -$a->strings["This introduction has already been accepted."] = "Þessi kynning hefur þegar verið samþykkt."; -$a->strings["Profile location is not valid or does not contain profile information."] = "Forsíðu slóð er ekki í lagi eða inniheldur ekki forsíðu upplýsingum."; -$a->strings["Warning: profile location has no identifiable owner name."] = "Aðvörun: forsíðu staðsetning hefur ekki aðgreinanlegt eigendanafn."; -$a->strings["Warning: profile location has no profile photo."] = "Aðvörun: forsíðu slóð hefur ekki forsíðu mynd."; -$a->strings["%d required parameter was not found at the given location"] = array( - 0 => "%d skilyrt breyta fannst ekki á uppgefinni staðsetningu", - 1 => "%d skilyrtar breytur fundust ekki á uppgefninni staðsetningu", -); -$a->strings["Introduction complete."] = "Kynning tilbúinn."; -$a->strings["Unrecoverable protocol error."] = "Alvarleg samskipta villa."; -$a->strings["Profile unavailable."] = "Ekki hægt að sækja forsíðu"; -$a->strings["%s has received too many connection requests today."] = "%s hefur fengið of margar tengibeiðnir í dag."; -$a->strings["Spam protection measures have been invoked."] = "Kveikt hefur verið á ruslsíu"; -$a->strings["Friends are advised to please try again in 24 hours."] = "Vinir eru beðnir um að reyna aftur eftir 24 klukkustundir."; -$a->strings["Invalid locator"] = "Ógild staðsetning"; -$a->strings["Invalid email address."] = "Ógilt póstfang."; -$a->strings["This account has not been configured for email. Request failed."] = ""; -$a->strings["Unable to resolve your name at the provided location."] = "Ekki tókst að fletta upp nafninu þínu á uppgefinni staðsetningu."; -$a->strings["You have already introduced yourself here."] = "Kynning hefur þegar átt sér stað hér."; -$a->strings["Apparently you are already friends with %s."] = "Þú ert þegar vinur %s."; -$a->strings["Invalid profile URL."] = "Ógild forsíðu slóð."; -$a->strings["Disallowed profile URL."] = "Óleyfileg forsíðu slóð."; -$a->strings["Your introduction has been sent."] = "Kynningin þín hefur verið send."; -$a->strings["Please login to confirm introduction."] = "Skráðu þig inn til að staðfesta kynningu."; -$a->strings["Incorrect identity currently logged in. Please login to this profile."] = "Ekki réttur notandi skráður inn. Skráðu þig inn sem þessi notandi."; -$a->strings["Hide this contact"] = "Fela þennan tengilið"; -$a->strings["Welcome home %s."] = "Velkomin(n) heim %s."; -$a->strings["Please confirm your introduction/connection request to %s."] = "Vinsamlegas staðfestu kynninguna/tengibeiðnina við %s."; -$a->strings["Confirm"] = "Staðfesta"; -$a->strings["Please enter your 'Identity Address' from one of the following supported communications networks:"] = "Settu inn 'Auðkennisnetfang' þitt úr einhverjum af eftirfarandi samskiptanetum:"; -$a->strings["If you are not yet a member of the free social web, follow this link to find a public Friendica site and join us today."] = ""; -$a->strings["Friend/Connection Request"] = "Vina/Tengi Beiðni"; -$a->strings["Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"] = "Dæmi: siggi@demo.friendica.com, http://demo.friendica.com/profile/siggi, prufunotandi@identi.ca"; -$a->strings["Please answer the following:"] = "Vinnsamlegast svaraðu eftirfarandi:"; -$a->strings["Does %s know you?"] = "Þekkir %s þig?"; -$a->strings["Add a personal note:"] = "Bæta við persónulegri athugasemd"; -$a->strings["Friendica"] = "Friendica"; -$a->strings["StatusNet/Federated Social Web"] = "StatusNet/Federated Social Web"; -$a->strings[" - please do not use this form. Instead, enter %s into your Diaspora search bar."] = ""; -$a->strings["Your Identity Address:"] = "Auðkennisnetfang þitt:"; -$a->strings["Submit Request"] = "Senda beiðni"; -$a->strings["Registration successful. Please check your email for further instructions."] = "Nýskráning tóks. Frekari fyrirmæli voru send í tölvupósti."; -$a->strings["Failed to send email message. Here your accout details:
login: %s
password: %s

You can change your password after login."] = ""; -$a->strings["Your registration can not be processed."] = "Skráninguna þína er ekki hægt að vinna."; -$a->strings["Your registration is pending approval by the site owner."] = "Skráningin þín bíður samþykkis af eiganda síðunnar."; -$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Þessi vefur hefur náð hámarks fjölda daglegra nýskráninga. Reyndu aftur á morgun."; -$a->strings["You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking 'Register'."] = "Þú mátt (valfrjálst) fylla í þetta svæði gegnum OpenID með því gefa upp þitt OpenID og ýta á 'Skrá'."; -$a->strings["If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items."] = "Ef þú veist ekki hvað OpenID er, skildu þá þetta svæði eftir tómt en fylltu í restin af svæðunum."; -$a->strings["Your OpenID (optional): "] = "Þitt OpenID (valfrjálst):"; -$a->strings["Include your profile in member directory?"] = "Á forsíðan þín að sjást í notendalistanum?"; -$a->strings["Membership on this site is by invitation only."] = "Aðild að þessum vef er "; -$a->strings["Your invitation ID: "] = "Boðskorta auðkenni:"; -$a->strings["Your Full Name (e.g. Joe Smith): "] = "Full nafn (t.d. Jón Jónsson):"; -$a->strings["Your Email Address: "] = "Tölvupóstur:"; -$a->strings["Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be 'nickname@\$sitename'."] = "Veldu gælunafn. Verður að byrja á staf. Slóðin þín á þessum vef verður síðan 'gælunafn@\$sitename'."; -$a->strings["Choose a nickname: "] = "Veldu gælunafn:"; -$a->strings["Register"] = "Nýskrá"; -$a->strings["Import"] = "Flytja inn"; -$a->strings["Import your profile to this friendica instance"] = ""; -$a->strings["System down for maintenance"] = "Kerfið er óvirkt vegna viðhalds"; -$a->strings["Search"] = "Leita"; -$a->strings["Global Directory"] = "Alheimstengiliðaskrá"; -$a->strings["Find on this site"] = "Leita á þessum vef"; -$a->strings["Site Directory"] = "Skrá yfir tengiliði á þessum vef"; -$a->strings["Age: "] = "Aldur:"; -$a->strings["Gender: "] = "Kyn:"; -$a->strings["Gender:"] = "Kyn:"; -$a->strings["Status:"] = "Staða:"; -$a->strings["Homepage:"] = "Heimasíða:"; -$a->strings["About:"] = "Um:"; -$a->strings["No entries (some entries may be hidden)."] = "Engar færslur (sumar geta verið faldar)."; -$a->strings["No potential page delegates located."] = "Engir mögulegir viðtakendur síðunnar fundust."; -$a->strings["Delegate Page Management"] = ""; -$a->strings["Delegates are able to manage all aspects of this account/page except for basic account settings. Please do not delegate your personal account to anybody that you do not trust completely."] = ""; -$a->strings["Existing Page Managers"] = ""; -$a->strings["Existing Page Delegates"] = ""; -$a->strings["Potential Delegates"] = ""; -$a->strings["Add"] = "Bæta við"; -$a->strings["No entries."] = "Engar færslur."; -$a->strings["Common Friends"] = "Sameiginlegir vinir"; -$a->strings["No contacts in common."] = ""; -$a->strings["Export account"] = ""; -$a->strings["Export your account info and contacts. Use this to make a backup of your account and/or to move it to another server."] = ""; -$a->strings["Export all"] = ""; -$a->strings["Export your accout info, contacts and all your items as json. Could be a very big file, and could take a lot of time. Use this to make a full backup of your account (photos are not exported)"] = ""; -$a->strings["%1\$s is currently %2\$s"] = ""; -$a->strings["Mood"] = ""; -$a->strings["Set your current mood and tell your friends"] = ""; -$a->strings["Do you really want to delete this suggestion?"] = ""; -$a->strings["Friend Suggestions"] = "Vina uppástungur"; -$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Engar uppástungur tiltækar. Ef þetta er nýr vefur, reyndu þá aftur eftir um 24 klukkustundir."; -$a->strings["Ignore/Hide"] = "Hunsa/Fela"; -$a->strings["Profile deleted."] = "Forsíðu eytt."; -$a->strings["Profile-"] = "Forsíða-"; -$a->strings["New profile created."] = "Ný forsíða búinn til."; -$a->strings["Profile unavailable to clone."] = "Ekki tókst að klóna forsíðu"; -$a->strings["Profile Name is required."] = "Nafn á forsíðu er skilyrði"; -$a->strings["Marital Status"] = ""; -$a->strings["Romantic Partner"] = ""; -$a->strings["Likes"] = ""; -$a->strings["Dislikes"] = ""; -$a->strings["Work/Employment"] = ""; -$a->strings["Religion"] = ""; -$a->strings["Political Views"] = ""; -$a->strings["Gender"] = ""; -$a->strings["Sexual Preference"] = ""; -$a->strings["Homepage"] = ""; -$a->strings["Interests"] = ""; -$a->strings["Address"] = ""; -$a->strings["Location"] = ""; -$a->strings["Profile updated."] = "Forsíða uppfærð."; -$a->strings[" and "] = "og"; -$a->strings["public profile"] = "Opinber forsíða"; -$a->strings["%1\$s changed %2\$s to “%3\$s”"] = ""; -$a->strings[" - Visit %1\$s's %2\$s"] = ""; -$a->strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s hefur uppfært %2\$s, með því að breyta %3\$s."; -$a->strings["Hide contacts and friends:"] = ""; -$a->strings["Hide your contact/friend list from viewers of this profile?"] = "Fela tengiliða-/vinalista á þessari forsíðu?"; -$a->strings["Edit Profile Details"] = "Breyta forsíðu upplýsingum"; -$a->strings["Change Profile Photo"] = ""; -$a->strings["View this profile"] = "Skoða þessa forsíðu"; -$a->strings["Create a new profile using these settings"] = "Búa til nýja forsíðu með þessum stillingum"; -$a->strings["Clone this profile"] = "Klóna þessa forsíðu"; -$a->strings["Delete this profile"] = "Eyða þessari forsíðu"; -$a->strings["Basic information"] = ""; -$a->strings["Profile picture"] = ""; -$a->strings["Preferences"] = ""; -$a->strings["Status information"] = ""; -$a->strings["Additional information"] = ""; -$a->strings["Profile Name:"] = "Forsíðu nafn:"; -$a->strings["Your Full Name:"] = "Fullt nafn:"; -$a->strings["Title/Description:"] = "Starfsheiti/Lýsing:"; -$a->strings["Your Gender:"] = "Kyn:"; -$a->strings["Birthday (%s):"] = "Afmæli (%s):"; -$a->strings["Street Address:"] = "Gata:"; -$a->strings["Locality/City:"] = "Bær/Borg:"; -$a->strings["Postal/Zip Code:"] = "Póstnúmer:"; -$a->strings["Country:"] = "Land:"; -$a->strings["Region/State:"] = "Svæði/Sýsla"; -$a->strings[" Marital Status:"] = " Hjúskaparstaða:"; -$a->strings["Who: (if applicable)"] = "Hver: (ef við á)"; -$a->strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Dæmi: cathy123, Cathy Williams, cathy@example.com"; -$a->strings["Since [date]:"] = ""; -$a->strings["Sexual Preference:"] = "Kynhneigð"; -$a->strings["Homepage URL:"] = "Slóð heimasíðu:"; -$a->strings["Hometown:"] = ""; -$a->strings["Political Views:"] = "Stórnmálaskoðanir:"; -$a->strings["Religious Views:"] = "Trúarskoðanir"; -$a->strings["Public Keywords:"] = "Opinber leitarorð:"; -$a->strings["Private Keywords:"] = "Einka leitarorð:"; -$a->strings["Likes:"] = ""; -$a->strings["Dislikes:"] = ""; -$a->strings["Example: fishing photography software"] = "Til dæmis: fishing photography software"; -$a->strings["(Used for suggesting potential friends, can be seen by others)"] = "(Notað til að stinga uppá mögulegum vinum, aðrir geta séð)"; -$a->strings["(Used for searching profiles, never shown to others)"] = "(Notað við leit að öðrum notendum, aldrei sýnt öðrum)"; -$a->strings["Tell us about yourself..."] = "Segðu okkur frá sjálfum þér..."; -$a->strings["Hobbies/Interests"] = "Áhugamál"; -$a->strings["Contact information and Social Networks"] = "Tengiliðaupplýsingar og samfélagsnet"; -$a->strings["Musical interests"] = "Tónlistarsmekkur"; -$a->strings["Books, literature"] = "Bækur, bókmenntir"; -$a->strings["Television"] = "Sjónvarp"; -$a->strings["Film/dance/culture/entertainment"] = "Kvikmyndir/dans/menning/afþreying"; -$a->strings["Love/romance"] = "Ást/rómantík"; -$a->strings["Work/employment"] = "Atvinna:"; -$a->strings["School/education"] = "Skóli/menntun"; -$a->strings["This is your public profile.
It may be visible to anybody using the internet."] = "Þetta er opinber forsíða.
Hún verður sjáanleg öðrum sem nota alnetið."; -$a->strings["Edit/Manage Profiles"] = "Sýsla með forsíður"; -$a->strings["Change profile photo"] = "Breyta forsíðu mynd"; -$a->strings["Create New Profile"] = "Stofna nýja forsíðu"; -$a->strings["Profile Image"] = "Forsíðu mynd"; -$a->strings["visible to everybody"] = "Sýnilegt öllum"; -$a->strings["Edit visibility"] = "Sýsla með sjáanleika"; -$a->strings["Item not found"] = "Hlutur fannst ekki"; -$a->strings["Edit post"] = "Breyta skilaboðum"; -$a->strings["upload photo"] = "Hlaða upp mynd"; -$a->strings["Attach file"] = "Bæta við skrá"; -$a->strings["attach file"] = "Hengja skrá við"; -$a->strings["web link"] = "vefhlekkur"; -$a->strings["Insert video link"] = "Setja inn myndbandshlekk"; -$a->strings["video link"] = "myndbandshlekkur"; -$a->strings["Insert audio link"] = "Setja inn hlekk á hljóðskrá"; -$a->strings["audio link"] = "hljóðhlekkur"; -$a->strings["Set your location"] = "Veldu staðsetningu þína"; -$a->strings["set location"] = "stilla staðsetningu"; -$a->strings["Clear browser location"] = "Hreinsa staðsetningu í vafra"; -$a->strings["clear location"] = "hreinsa staðsetningu"; -$a->strings["Permission settings"] = "Heimildar stillingar"; -$a->strings["CC: email addresses"] = "CC: tölvupóstfang"; -$a->strings["Public post"] = "Opinber færsla"; -$a->strings["Set title"] = "Setja titil"; -$a->strings["Categories (comma-separated list)"] = ""; -$a->strings["Example: bob@example.com, mary@example.com"] = "Dæmi: bob@example.com, mary@example.com"; -$a->strings["This is Friendica, version"] = "Þetta er Friendica útgáfa"; -$a->strings["running at web location"] = "Keyrir á slóð"; -$a->strings["Please visit Friendica.com to learn more about the Friendica project."] = "Á Friendica.com er hægt að fræðast nánar um Friendica verkefnið."; -$a->strings["Bug reports and issues: please visit"] = "Villu tilkynningar og vandamál: endilega skoða"; -$a->strings["Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - dot com"] = "Uppástungur, lof, framlög og svo framvegis - sendið tölvupóst á \"Info\" hjá Friendica - punktur com"; -$a->strings["Installed plugins/addons/apps:"] = ""; -$a->strings["No installed plugins/addons/apps"] = "Engin uppsett eining/viðbót/forr"; -$a->strings["Authorize application connection"] = "Leyfa forriti að tengjast"; -$a->strings["Return to your app and insert this Securty Code:"] = "Farðu aftur í forritið þitt og settu þennan öryggiskóða þar"; -$a->strings["Please login to continue."] = "Skráðu þig inn til að halda áfram."; -$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Vilt þú leyfa þessu forriti að hafa aðgang að færslum og tengiliðum, og/eða stofna nýjar færslur fyrir þig?"; -$a->strings["Remote privacy information not available."] = "Persónuverndar upplýsingar ekki fyrir hendi á fjarlægum vefþjón."; -$a->strings["Visible to:"] = "Sýnilegt eftirfarandi:"; -$a->strings["Personal Notes"] = "Persónulegar glósur"; -$a->strings["l F d, Y \\@ g:i A"] = ""; -$a->strings["Time Conversion"] = "Tíma leiðréttir"; -$a->strings["Friendica provides this service for sharing events with other networks and friends in unknown timezones."] = "Friendica veitir þessa þjónustu til að deila atburðum milli neta og vina í óþekktum tímabeltum."; -$a->strings["UTC time: %s"] = "Máltími: %s"; -$a->strings["Current timezone: %s"] = "Núverandi tímabelti: %s"; -$a->strings["Converted localtime: %s"] = "Umbreyttur staðartími: %s"; -$a->strings["Please select your timezone:"] = "Veldu tímabeltið þitt:"; -$a->strings["Poke/Prod"] = ""; -$a->strings["poke, prod or do other things to somebody"] = ""; -$a->strings["Recipient"] = ""; -$a->strings["Choose what you wish to do to recipient"] = ""; -$a->strings["Make this post private"] = ""; -$a->strings["Total invitation limit exceeded."] = ""; -$a->strings["%s : Not a valid email address."] = "%s : Ekki gilt póstfang"; -$a->strings["Please join us on Friendica"] = ""; -$a->strings["Invitation limit exceeded. Please contact your site administrator."] = ""; -$a->strings["%s : Message delivery failed."] = "%s : Skilaboð komust ekki til skila."; -$a->strings["%d message sent."] = array( - 0 => "%d skilaboð send.", - 1 => "%d skilaboð send", -); -$a->strings["You have no more invitations available"] = "Þú hefur ekki fleiri boðskort."; -$a->strings["Visit %s for a list of public sites that you can join. Friendica members on other sites can all connect with each other, as well as with members of many other social networks."] = ""; -$a->strings["To accept this invitation, please visit and register at %s or any other public Friendica website."] = ""; -$a->strings["Friendica sites all inter-connect to create a huge privacy-enhanced social web that is owned and controlled by its members. They can also connect with many traditional social networks. See %s for a list of alternate Friendica sites you can join."] = ""; -$a->strings["Our apologies. This system is not currently configured to connect with other public sites or invite members."] = ""; -$a->strings["Send invitations"] = "Senda kynningar"; -$a->strings["Enter email addresses, one per line:"] = "Póstföng, eitt í hverja línu:"; -$a->strings["You are cordially invited to join me and other close friends on Friendica - and help us to create a better social web."] = ""; -$a->strings["You will need to supply this invitation code: \$invite_code"] = "Þú þarft að nota eftirfarandi boðskorta auðkenni: \$invite_code"; -$a->strings["Once you have registered, please connect with me via my profile page at:"] = "Þegar þú hefur nýskráð þig, hafðu samband við mig gegnum síðuna mína á:"; -$a->strings["For more information about the Friendica project and why we feel it is important, please visit http://friendica.com"] = ""; -$a->strings["Photo Albums"] = "Myndabækur"; -$a->strings["Contact Photos"] = "Myndir tengiliðs"; -$a->strings["Upload New Photos"] = "Hlaða upp nýjum myndum"; -$a->strings["Contact information unavailable"] = "Tengiliða upplýsingar ekki til"; -$a->strings["Album not found."] = "Myndabók finnst ekki."; -$a->strings["Delete Album"] = "Fjarlægja myndabók"; -$a->strings["Do you really want to delete this photo album and all its photos?"] = ""; -$a->strings["Delete Photo"] = "Fjarlægja mynd"; -$a->strings["Do you really want to delete this photo?"] = ""; -$a->strings["%1\$s was tagged in %2\$s by %3\$s"] = ""; -$a->strings["a photo"] = "mynd"; -$a->strings["Image exceeds size limit of "] = "Mynd er yfir stærðamörkum"; -$a->strings["Image file is empty."] = "Mynda skrá er tóm."; -$a->strings["No photos selected"] = "Engar myndir valdar"; -$a->strings["You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."] = ""; -$a->strings["Upload Photos"] = "Hlaða upp myndum"; -$a->strings["New album name: "] = "Nýtt nafn myndbókar:"; -$a->strings["or existing album name: "] = "eða fyrra nafn myndbókar:"; -$a->strings["Do not show a status post for this upload"] = "Ekki sýna færslu fyrir þessari upphölun"; -$a->strings["Permissions"] = "Aðgangar"; -$a->strings["Private Photo"] = "Einkamynd"; -$a->strings["Public Photo"] = "Opinber mynd"; -$a->strings["Edit Album"] = "Breyta myndbók"; -$a->strings["Show Newest First"] = "Birta nýjast fyrst"; -$a->strings["Show Oldest First"] = "Birta elsta fyrst"; -$a->strings["View Photo"] = "Skoða mynd"; -$a->strings["Permission denied. Access to this item may be restricted."] = "Aðgangi hafnað. Aðgangur að þessum hlut kann að vera skertur."; -$a->strings["Photo not available"] = "Mynd ekki til"; -$a->strings["View photo"] = "Birta mynd"; -$a->strings["Edit photo"] = "Breyta mynd"; -$a->strings["Use as profile photo"] = "Nota sem forsíðu mynd"; -$a->strings["View Full Size"] = "Skoða í fullri stærð"; -$a->strings["Tags: "] = "Merki:"; -$a->strings["[Remove any tag]"] = "[Fjarlægja öll merki]"; -$a->strings["Rotate CW (right)"] = ""; -$a->strings["Rotate CCW (left)"] = ""; -$a->strings["New album name"] = "Nýtt nafn myndbókar"; -$a->strings["Caption"] = "Yfirskrift"; -$a->strings["Add a Tag"] = "Bæta við merki"; -$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"] = "Til dæmis: @bob, @Barbara_Jensen, @jim@example.com, #Reykjavík #tjalda"; -$a->strings["Private photo"] = "Einkamynd"; -$a->strings["Public photo"] = "Opinber mynd"; -$a->strings["Share"] = "Deila"; -$a->strings["Recent Photos"] = "Nýlegar myndir"; -$a->strings["Account approved."] = "Notandi samþykktur."; -$a->strings["Registration revoked for %s"] = "Skráning afturköllurð vegna %s"; -$a->strings["Please login."] = "Skráðu yður inn."; -$a->strings["Move account"] = ""; -$a->strings["You can import an account from another Friendica server."] = ""; -$a->strings["You need to export your account from the old server and upload it here. We will recreate your old account here with all your contacts. We will try also to inform your friends that you moved here."] = ""; -$a->strings["This feature is experimental. We can't import contacts from the OStatus network (statusnet/identi.ca) or from Diaspora"] = ""; -$a->strings["Account file"] = ""; -$a->strings["To export your account, go to \"Settings->Export your personal data\" and select \"Export account\""] = ""; -$a->strings["Item not available."] = "Atriði ekki í boði."; -$a->strings["Item was not found."] = "Atriði fannst ekki"; $a->strings["Delete this item?"] = "Eyða þessu atriði?"; -$a->strings["show fewer"] = "sýna færri"; -$a->strings["Update %s failed. See error logs."] = "Uppfærsla á %s mistókst. Sjá villu skrá."; +$a->strings["Comment"] = "Athugasemd"; +$a->strings["show more"] = "birta meira"; +$a->strings["show fewer"] = "birta minna"; +$a->strings["Update %s failed. See error logs."] = "Uppfærsla á %s mistókst. Skoðaðu villuannál."; $a->strings["Create a New Account"] = "Stofna nýjan notanda"; +$a->strings["Register"] = "Nýskrá"; $a->strings["Logout"] = "Útskrá"; -$a->strings["Nickname or Email address: "] = "Gælunafn eða póstfang:"; -$a->strings["Password: "] = "Aðgangsorð:"; -$a->strings["Remember me"] = ""; -$a->strings["Or login using OpenID: "] = "Eða auðkenna með OpenID:"; +$a->strings["Login"] = "Innskrá"; +$a->strings["Nickname or Email: "] = "Gælunafn eða póstfang: "; +$a->strings["Password: "] = "Aðgangsorð: "; +$a->strings["Remember me"] = "Muna eftir mér"; +$a->strings["Or login using OpenID: "] = "Eða auðkenna með OpenID: "; $a->strings["Forgot your password?"] = "Gleymt lykilorð?"; -$a->strings["Website Terms of Service"] = ""; -$a->strings["terms of service"] = ""; -$a->strings["Website Privacy Policy"] = ""; -$a->strings["privacy policy"] = ""; -$a->strings["Requested account is not available."] = ""; -$a->strings["Edit profile"] = "Breyta forsíðu"; -$a->strings["Message"] = ""; -$a->strings["Profiles"] = "Forsíður"; -$a->strings["Manage/edit profiles"] = "Sýsla með forsíður"; -$a->strings["Network:"] = ""; -$a->strings["g A l F d"] = ""; -$a->strings["F d"] = ""; -$a->strings["[today]"] = "[í dag]"; -$a->strings["Birthday Reminders"] = "Afmælis áminningar"; -$a->strings["Birthdays this week:"] = "Afmæli í þessari viku:"; -$a->strings["[No description]"] = "[Engin lýsing]"; -$a->strings["Event Reminders"] = "Atburða áminningar"; -$a->strings["Events this week:"] = "Atburðir vikunnar:"; -$a->strings["Status"] = "Staða"; -$a->strings["Status Messages and Posts"] = "Stöðu skilaboð og færslur"; -$a->strings["Profile Details"] = "Forsíðu upplýsingar"; -$a->strings["Videos"] = ""; -$a->strings["Events and Calendar"] = "Atburðir og dagskrá"; -$a->strings["Only You Can See This"] = "Aðeins þú sérð þetta"; -$a->strings["This entry was edited"] = ""; -$a->strings["ignore thread"] = ""; -$a->strings["unignore thread"] = ""; -$a->strings["toggle ignore status"] = ""; -$a->strings["ignored"] = ""; -$a->strings["Categories:"] = "Flokkar:"; -$a->strings["Filed under:"] = "Skráð undir:"; -$a->strings["via"] = ""; -$a->strings["\n\t\t\tThe friendica developers released update %s recently,\n\t\t\tbut when I tried to install it, something went terribly wrong.\n\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n\t\t\tfriendica developer if you can not help me on your own. My database might be invalid."] = ""; -$a->strings["The error message is\n[pre]%s[/pre]"] = ""; -$a->strings["Errors encountered creating database tables."] = "Villur komu upp við að stofna töflur í gagnagrunn."; -$a->strings["Errors encountered performing database changes."] = ""; -$a->strings["Logged out."] = "Útskráður"; -$a->strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = ""; -$a->strings["The error message was:"] = ""; +$a->strings["Password Reset"] = "Endurstilling aðgangsorðs"; +$a->strings["Website Terms of Service"] = "Þjónustuskilmálar vefsvæðis"; +$a->strings["terms of service"] = "þjónustuskilmálar"; +$a->strings["Website Privacy Policy"] = "Persónuverndarstefna"; +$a->strings["privacy policy"] = "persónuverndarstefna"; +$a->strings["Miscellaneous"] = "Ýmislegt"; +$a->strings["Birthday:"] = "Afmælisdagur:"; +$a->strings["Age: "] = "Aldur: "; +$a->strings["YYYY-MM-DD or MM-DD"] = "ÁÁÁÁ-MM-DD eða MM-DD"; +$a->strings["never"] = "aldrei"; +$a->strings["less than a second ago"] = "fyrir minna en sekúndu"; +$a->strings["year"] = "ár"; +$a->strings["years"] = "ár"; +$a->strings["month"] = "mánuður"; +$a->strings["months"] = "mánuðir"; +$a->strings["week"] = "vika"; +$a->strings["weeks"] = "vikur"; +$a->strings["day"] = "dagur"; +$a->strings["days"] = "dagar"; +$a->strings["hour"] = "klukkustund"; +$a->strings["hours"] = "klukkustundir"; +$a->strings["minute"] = "mínúta"; +$a->strings["minutes"] = "mínútur"; +$a->strings["second"] = "sekúnda"; +$a->strings["seconds"] = "sekúndur"; +$a->strings["%1\$d %2\$s ago"] = "Fyrir %1\$d %2\$s síðan"; +$a->strings["%s's birthday"] = "Afmælisdagur %s"; +$a->strings["Happy Birthday %s"] = "Til hamingju með afmælið %s"; $a->strings["Add New Contact"] = "Bæta við tengilið"; $a->strings["Enter address or web location"] = "Settu inn slóð"; $a->strings["Example: bob@example.com, http://example.com/barbara"] = "Dæmi: gudmundur@simnet.is, http://simnet.is/gudmundur"; +$a->strings["Connect"] = "Tengjast"; $a->strings["%d invitation available"] = array( 0 => "%d boðskort í boði", 1 => "%d boðskort í boði", @@ -1305,152 +59,244 @@ $a->strings["Find People"] = "Finna fólk"; $a->strings["Enter name or interest"] = "Settu inn nafn eða áhugamál"; $a->strings["Connect/Follow"] = "Tengjast/fylgja"; $a->strings["Examples: Robert Morgenstein, Fishing"] = "Dæmi: Jón Jónsson, Veiði"; +$a->strings["Find"] = "Finna"; +$a->strings["Friend Suggestions"] = "Vina uppástungur"; $a->strings["Similar Interests"] = "Svipuð áhugamál"; $a->strings["Random Profile"] = ""; $a->strings["Invite Friends"] = "Bjóða vinum aðgang"; $a->strings["Networks"] = "Net"; $a->strings["All Networks"] = "Öll net"; -$a->strings["Saved Folders"] = ""; -$a->strings["Everything"] = ""; -$a->strings["Categories"] = ""; -$a->strings["General Features"] = ""; -$a->strings["Multiple Profiles"] = ""; -$a->strings["Ability to create multiple profiles"] = ""; -$a->strings["Post Composition Features"] = ""; -$a->strings["Richtext Editor"] = ""; -$a->strings["Enable richtext editor"] = ""; -$a->strings["Post Preview"] = ""; -$a->strings["Allow previewing posts and comments before publishing them"] = ""; -$a->strings["Auto-mention Forums"] = ""; -$a->strings["Add/remove mention when a fourm page is selected/deselected in ACL window."] = ""; -$a->strings["Network Sidebar Widgets"] = ""; -$a->strings["Search by Date"] = ""; -$a->strings["Ability to select posts by date ranges"] = ""; -$a->strings["Group Filter"] = ""; -$a->strings["Enable widget to display Network posts only from selected group"] = ""; -$a->strings["Network Filter"] = ""; -$a->strings["Enable widget to display Network posts only from selected network"] = ""; -$a->strings["Save search terms for re-use"] = ""; -$a->strings["Network Tabs"] = ""; -$a->strings["Network Personal Tab"] = ""; -$a->strings["Enable tab to display only Network posts that you've interacted on"] = ""; -$a->strings["Network New Tab"] = ""; -$a->strings["Enable tab to display only new Network posts (from the last 12 hours)"] = ""; -$a->strings["Network Shared Links Tab"] = ""; -$a->strings["Enable tab to display only Network posts with links in them"] = ""; -$a->strings["Post/Comment Tools"] = ""; -$a->strings["Multiple Deletion"] = ""; -$a->strings["Select and delete multiple posts/comments at once"] = ""; -$a->strings["Edit Sent Posts"] = ""; -$a->strings["Edit and correct posts and comments after sending"] = ""; -$a->strings["Tagging"] = ""; -$a->strings["Ability to tag existing posts"] = ""; -$a->strings["Post Categories"] = ""; -$a->strings["Add categories to your posts"] = ""; -$a->strings["Ability to file posts under folders"] = ""; -$a->strings["Dislike Posts"] = ""; -$a->strings["Ability to dislike posts/comments"] = ""; -$a->strings["Star Posts"] = ""; -$a->strings["Ability to mark special posts with a star indicator"] = ""; -$a->strings["Mute Post Notifications"] = ""; -$a->strings["Ability to mute notifications for a thread"] = ""; -$a->strings["Connect URL missing."] = "Tengi slóð vantar."; -$a->strings["This site is not configured to allow communications with other networks."] = "Þessi vefur er ekki uppsettur til að leyfa samskipti við önnur samfélagsnet."; -$a->strings["No compatible communication protocols or feeds were discovered."] = "Enginn samhæfur samskipta staðall né straumar fundust."; -$a->strings["The profile address specified does not provide adequate information."] = "Uppgefin forsíðu slóð eru ekki næganlegar upplýsingar."; -$a->strings["An author or name was not found."] = "Höfundur eða nafn fannst ekki."; -$a->strings["No browser URL could be matched to this address."] = "Engin vefslóð passaði við þessa slóð. "; -$a->strings["Unable to match @-style Identity Address with a known protocol or email contact."] = ""; -$a->strings["Use mailto: in front of address to force email check."] = ""; -$a->strings["The profile address specified belongs to a network which has been disabled on this site."] = "Þessi forsíðu slóð tilheyrir neti sem er bannað á þessum vef."; -$a->strings["Limited profile. This person will be unable to receive direct/personal notifications from you."] = "Takmörkuð forsíða. Þessi tengiliður mun ekki getað tekið á móti beinum/einka tilkynningum frá þér."; -$a->strings["Unable to retrieve contact information."] = "Ekki hægt að sækja tengiliðs upplýsingar."; -$a->strings["following"] = "fylgist með"; -$a->strings["A deleted group with this name was revived. Existing item permissions may apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "Hóp sem var eytt hefur verið endurlífgaður. Færslur sem þegar voru til geta mögulega farið á hópinn og framtíðar meðlimir. Ef þetta er ekki það sem þú vilt, þá þarftu að búa til nýjan hóp með öðru nafni."; -$a->strings["Default privacy group for new contacts"] = ""; -$a->strings["Everybody"] = "Allir"; -$a->strings["edit"] = "breyta"; -$a->strings["Edit group"] = "Breyta hóp"; -$a->strings["Create a new group"] = "Stofna nýjan hóp"; -$a->strings["Contacts not in any group"] = "Tengiliðir ekki í neinum hópum"; -$a->strings["Miscellaneous"] = "Ýmislegt"; -$a->strings["year"] = "ár"; -$a->strings["month"] = "mánuður"; -$a->strings["day"] = "dagur"; -$a->strings["never"] = "aldrei"; -$a->strings["less than a second ago"] = "fyrir minna en sekúndu"; -$a->strings["years"] = "ár"; -$a->strings["months"] = "mánuðir"; -$a->strings["week"] = "vika"; -$a->strings["weeks"] = "vikur"; -$a->strings["days"] = "dagar"; -$a->strings["hour"] = "klukkustund"; -$a->strings["hours"] = "klukkustundir"; -$a->strings["minute"] = "mínúta"; -$a->strings["minutes"] = "mínútur"; -$a->strings["second"] = "sekúnda"; -$a->strings["seconds"] = "sekúndur"; -$a->strings["%1\$d %2\$s ago"] = ""; -$a->strings["%s's birthday"] = ""; -$a->strings["Happy Birthday %s"] = ""; -$a->strings["Visible to everybody"] = "Sjáanlegt öllum"; -$a->strings["show"] = "sýna"; -$a->strings["don't show"] = "fela"; -$a->strings["[no subject]"] = "[ekkert efni]"; -$a->strings["stopped following"] = "hætt að fylgja"; -$a->strings["Poke"] = ""; -$a->strings["View Status"] = ""; -$a->strings["View Profile"] = ""; -$a->strings["View Photos"] = ""; -$a->strings["Network Posts"] = ""; -$a->strings["Edit Contact"] = ""; -$a->strings["Drop Contact"] = "Henda tengilið"; -$a->strings["Send PM"] = "Senda einkaboð"; +$a->strings["Saved Folders"] = "Vistaðar möppur"; +$a->strings["Everything"] = "Allt"; +$a->strings["Categories"] = "Flokkar"; +$a->strings["%d contact in common"] = array( + 0 => "%d tengiliður sameiginlegur", + 1 => "%d tengiliðir sameiginlegir", +); +$a->strings["Friendica Notification"] = "Friendica tilkynning"; +$a->strings["Thank You,"] = "Takk fyrir,"; +$a->strings["%s Administrator"] = "Kerfisstjóri %s"; +$a->strings["%1\$s, %2\$s Administrator"] = "%1\$s, %2\$s kerfisstjóri"; +$a->strings["noreply"] = "ekki svara"; +$a->strings["%s "] = "%s "; +$a->strings["[Friendica:Notify] New mail received at %s"] = ""; +$a->strings["%1\$s sent you a new private message at %2\$s."] = ""; +$a->strings["%1\$s sent you %2\$s."] = "%1\$s sendi þér %2\$s."; +$a->strings["a private message"] = "einkaskilaboð"; +$a->strings["Please visit %s to view and/or reply to your private messages."] = "Farðu á %s til að skoða og/eða svara einkaskilaboðunum þínum."; +$a->strings["%1\$s commented on [url=%2\$s]a %3\$s[/url]"] = ""; +$a->strings["%1\$s commented on [url=%2\$s]%3\$s's %4\$s[/url]"] = ""; +$a->strings["%1\$s commented on [url=%2\$s]your %3\$s[/url]"] = ""; +$a->strings["[Friendica:Notify] Comment to conversation #%1\$d by %2\$s"] = ""; +$a->strings["%s commented on an item/conversation you have been following."] = "%s skrifaði athugasemd á færslu/samtal sem þú ert að fylgja."; +$a->strings["Please visit %s to view and/or reply to the conversation."] = "Farðu á %s til að skoða og/eða svara samtali."; +$a->strings["[Friendica:Notify] %s posted to your profile wall"] = ""; +$a->strings["%1\$s posted to your profile wall at %2\$s"] = ""; +$a->strings["%1\$s posted to [url=%2\$s]your wall[/url]"] = ""; +$a->strings["[Friendica:Notify] %s tagged you"] = ""; +$a->strings["%1\$s tagged you at %2\$s"] = ""; +$a->strings["%1\$s [url=%2\$s]tagged you[/url]."] = ""; +$a->strings["[Friendica:Notify] %s shared a new post"] = ""; +$a->strings["%1\$s shared a new post at %2\$s"] = ""; +$a->strings["%1\$s [url=%2\$s]shared a post[/url]."] = ""; +$a->strings["[Friendica:Notify] %1\$s poked you"] = "[Friendica:Notify] %1\$s potaði í þig"; +$a->strings["%1\$s poked you at %2\$s"] = "%1\$s potaði í þig %2\$s"; +$a->strings["%1\$s [url=%2\$s]poked you[/url]."] = ""; +$a->strings["[Friendica:Notify] %s tagged your post"] = ""; +$a->strings["%1\$s tagged your post at %2\$s"] = ""; +$a->strings["%1\$s tagged [url=%2\$s]your post[/url]"] = ""; +$a->strings["[Friendica:Notify] Introduction received"] = ""; +$a->strings["You've received an introduction from '%1\$s' at %2\$s"] = ""; +$a->strings["You've received [url=%1\$s]an introduction[/url] from %2\$s."] = ""; +$a->strings["You may visit their profile at %s"] = "Þú getur heimsótt síðuna þeirra á %s"; +$a->strings["Please visit %s to approve or reject the introduction."] = "Farðu á %s til að samþykkja eða hunsa þessa kynningu."; +$a->strings["[Friendica:Notify] A new person is sharing with you"] = ""; +$a->strings["%1\$s is sharing with you at %2\$s"] = ""; +$a->strings["[Friendica:Notify] You have a new follower"] = ""; +$a->strings["You have a new follower at %2\$s : %1\$s"] = ""; +$a->strings["[Friendica:Notify] Friend suggestion received"] = ""; +$a->strings["You've received a friend suggestion from '%1\$s' at %2\$s"] = ""; +$a->strings["You've received [url=%1\$s]a friend suggestion[/url] for %2\$s from %3\$s."] = ""; +$a->strings["Name:"] = "Nafn:"; +$a->strings["Photo:"] = "Mynd:"; +$a->strings["Please visit %s to approve or reject the suggestion."] = "Farðu á %s til að samþykkja eða hunsa þessa uppástungu."; +$a->strings["[Friendica:Notify] Connection accepted"] = "[Friendica:Notify] Tenging samþykkt"; +$a->strings["'%1\$s' has accepted your connection request at %2\$s"] = ""; +$a->strings["%2\$s has accepted your [url=%1\$s]connection request[/url]."] = ""; +$a->strings["You are now mutual friends and may exchange status updates, photos, and email without restriction."] = ""; +$a->strings["Please visit %s if you wish to make any changes to this relationship."] = ""; +$a->strings["'%1\$s' has chosen to accept you a \"fan\", which restricts some forms of communication - such as private messaging and some profile interactions. If this is a celebrity or community page, these settings were applied automatically."] = ""; +$a->strings["'%1\$s' may choose to extend this into a two-way or more permissive relationship in the future."] = ""; +$a->strings["Please visit %s if you wish to make any changes to this relationship."] = ""; +$a->strings["[Friendica System:Notify] registration request"] = "[Friendica System:Notify] beiðni um skráningu"; +$a->strings["You've received a registration request from '%1\$s' at %2\$s"] = ""; +$a->strings["You've received a [url=%1\$s]registration request[/url] from %2\$s."] = ""; +$a->strings["Full Name:\t%1\$s\\nSite Location:\t%2\$s\\nLogin Name:\t%3\$s (%4\$s)"] = ""; +$a->strings["Please visit %s to approve or reject the request."] = "Farðu á %s til að samþykkja eða hunsa þessa beiðni."; +$a->strings["Click here to upgrade."] = "Smelltu hér til að uppfæra."; +$a->strings["This action exceeds the limits set by your subscription plan."] = ""; +$a->strings["This action is not available under your subscription plan."] = ""; +$a->strings["Forums"] = "Spjallsvæði"; +$a->strings["External link to forum"] = "Ytri tengill á spjallsvæði"; +$a->strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s líkar við %3\$s hjá %2\$s "; +$a->strings["status"] = "staða"; +$a->strings["Sharing notification from Diaspora network"] = "Tilkynning um að einhver deildi atriði á Diaspora netinu"; +$a->strings["Attachments:"] = "Viðhengi:"; +$a->strings["%s\\'s birthday"] = "Afmælisdagur %s"; +$a->strings["Error decoding account file"] = ""; +$a->strings["Error! No version data in file! This is not a Friendica account file?"] = ""; +$a->strings["Error! Cannot check nickname"] = ""; +$a->strings["User '%s' already exists on this server!"] = ""; +$a->strings["User creation error"] = ""; +$a->strings["User profile creation error"] = ""; +$a->strings["%d contact not imported"] = array( + 0 => "", + 1 => "", +); +$a->strings["Done. You can now login with your username and password"] = ""; +$a->strings["Cannot locate DNS info for database server '%s'"] = "Get ekki flett upp DNS upplýsingum fyrir gagnagrunnsþjón '%s'"; +$a->strings["l F d, Y \\@ g:i A"] = ""; +$a->strings["Starts:"] = "Byrjar:"; +$a->strings["Finishes:"] = "Endar:"; +$a->strings["Location:"] = "Staðsetning:"; +$a->strings["Sun"] = "Sun"; +$a->strings["Mon"] = "Mán"; +$a->strings["Tue"] = "Þri"; +$a->strings["Wed"] = "Mið"; +$a->strings["Thu"] = "Fim"; +$a->strings["Fri"] = "Fös"; +$a->strings["Sat"] = "Lau"; +$a->strings["Sunday"] = "Sunnudagur"; +$a->strings["Monday"] = "Mánudagur"; +$a->strings["Tuesday"] = "Þriðjudagur"; +$a->strings["Wednesday"] = "Miðvikudagur"; +$a->strings["Thursday"] = "Fimmtudagur"; +$a->strings["Friday"] = "Föstudagur"; +$a->strings["Saturday"] = "Laugardagur"; +$a->strings["Jan"] = "Jan"; +$a->strings["Feb"] = "Feb"; +$a->strings["Mar"] = "Mar"; +$a->strings["Apr"] = "Apr"; +$a->strings["May"] = "Maí"; +$a->strings["Jun"] = "Jún"; +$a->strings["Jul"] = "Júl"; +$a->strings["Aug"] = "Ágú"; +$a->strings["Sept"] = "Sept"; +$a->strings["Oct"] = "Okt"; +$a->strings["Nov"] = "Nóv"; +$a->strings["Dec"] = "Des"; +$a->strings["January"] = "Janúar"; +$a->strings["February"] = "Febrúar"; +$a->strings["March"] = "Mars"; +$a->strings["April"] = "Apríl"; +$a->strings["June"] = "Júní"; +$a->strings["July"] = "Júlí"; +$a->strings["August"] = "Ágúst"; +$a->strings["September"] = "September"; +$a->strings["October"] = "Október"; +$a->strings["November"] = "Nóvember"; +$a->strings["December"] = "Desember"; +$a->strings["today"] = "í dag"; +$a->strings["l, F j"] = ""; +$a->strings["Edit event"] = "Breyta atburð"; +$a->strings["link to source"] = "slóð á heimild"; +$a->strings["Export"] = "Flytja út"; +$a->strings["Export calendar as ical"] = "Flytja dagatal út sem ICAL"; +$a->strings["Export calendar as csv"] = "Flytja dagatal út sem CSV"; $a->strings["Welcome "] = "Velkomin(n)"; -$a->strings["Please upload a profile photo."] = "Vinsamlegast hlaðið inn forsíðu mynd."; +$a->strings["Please upload a profile photo."] = "Gerðu svo vel að hlaða inn forsíðumynd."; $a->strings["Welcome back "] = "Velkomin(n) aftur"; $a->strings["The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it."] = ""; -$a->strings["event"] = "atburður"; -$a->strings["%1\$s poked %2\$s"] = ""; -$a->strings["poked"] = ""; -$a->strings["post/item"] = ""; -$a->strings["%1\$s marked %2\$s's %3\$s as favorite"] = ""; -$a->strings["remove"] = ""; -$a->strings["Delete Selected Items"] = "Eyða völdum færslum"; -$a->strings["Follow Thread"] = ""; -$a->strings["%s likes this."] = "%s líkar þetta."; -$a->strings["%s doesn't like this."] = "%s mislíkar þetta."; -$a->strings["%2\$d people like this"] = ""; -$a->strings["%2\$d people don't like this"] = ""; -$a->strings["and"] = "og"; -$a->strings[", and %d other people"] = ", og %d öðrum"; -$a->strings["%s like this."] = "%s líkar þetta."; -$a->strings["%s don't like this."] = "%s mislíkar þetta."; -$a->strings["Visible to everybody"] = "Sjáanlegt öllum"; -$a->strings["Please enter a video link/URL:"] = "Settu inn myndbandshlekkur:"; -$a->strings["Please enter an audio link/URL:"] = "Settu inn hlekk á hljóðskrá:"; -$a->strings["Tag term:"] = "Merka með:"; -$a->strings["Where are you right now?"] = "Hvar ert þú núna?"; -$a->strings["Delete item(s)?"] = ""; -$a->strings["Post to Email"] = "Senda skilaboð á tölvupóst"; -$a->strings["Connectors disabled, since \"%s\" is enabled."] = ""; -$a->strings["permissions"] = "aðgangsstýring"; -$a->strings["Post to Groups"] = ""; -$a->strings["Post to Contacts"] = ""; -$a->strings["Private post"] = ""; -$a->strings["view full size"] = "Skoða í fullri stærð"; -$a->strings["newer"] = ""; -$a->strings["older"] = ""; +$a->strings["Male"] = "Karl"; +$a->strings["Female"] = "Kona"; +$a->strings["Currently Male"] = "Karlmaður í augnablikinu"; +$a->strings["Currently Female"] = "Kvenmaður í augnablikinu"; +$a->strings["Mostly Male"] = "Aðallega karlmaður"; +$a->strings["Mostly Female"] = "Aðallega kvenmaður"; +$a->strings["Transgender"] = "Kyngervingur"; +$a->strings["Intersex"] = "Hvorugkyn"; +$a->strings["Transsexual"] = "Kynskiptingur"; +$a->strings["Hermaphrodite"] = "Tvíkynja"; +$a->strings["Neuter"] = "Hvorukyn"; +$a->strings["Non-specific"] = "Ekki ákveðið"; +$a->strings["Other"] = "Annað"; +$a->strings["Undecided"] = array( + 0 => "Óviss", + 1 => "Óvissir", +); +$a->strings["Males"] = "Karlar"; +$a->strings["Females"] = "Konur"; +$a->strings["Gay"] = "Hommi"; +$a->strings["Lesbian"] = "Lesbía"; +$a->strings["No Preference"] = "Til í allt"; +$a->strings["Bisexual"] = "Tvíkynhneigð/ur"; +$a->strings["Autosexual"] = "Sjálfkynhneigð/ur"; +$a->strings["Abstinent"] = "Skírlíf/ur"; +$a->strings["Virgin"] = "Hrein mey/Hreinn sveinn"; +$a->strings["Deviant"] = "Óþekkur"; +$a->strings["Fetish"] = "Blæti"; +$a->strings["Oodles"] = "Mikið af því"; +$a->strings["Nonsexual"] = "Engin kynhneigð"; +$a->strings["Single"] = "Einhleyp/ur"; +$a->strings["Lonely"] = "Einmanna"; +$a->strings["Available"] = "Á lausu"; +$a->strings["Unavailable"] = "Frátekin/n"; +$a->strings["Has crush"] = "Er skotin(n)"; +$a->strings["Infatuated"] = ""; +$a->strings["Dating"] = "Deita"; +$a->strings["Unfaithful"] = "Ótrú/r"; +$a->strings["Sex Addict"] = "Kynlífsfíkill"; +$a->strings["Friends"] = "Vinir"; +$a->strings["Friends/Benefits"] = "Vinir með meiru"; +$a->strings["Casual"] = "Lauslát/ur"; +$a->strings["Engaged"] = "Trúlofuð/Trúlofaður"; +$a->strings["Married"] = "Gift/ur"; +$a->strings["Imaginarily married"] = ""; +$a->strings["Partners"] = "Félagar"; +$a->strings["Cohabiting"] = "Í sambúð"; +$a->strings["Common law"] = "Löggilt sambúð"; +$a->strings["Happy"] = "Hamingjusöm/Hamingjusamur"; +$a->strings["Not looking"] = "Ekki að leita"; +$a->strings["Swinger"] = "Svingari"; +$a->strings["Betrayed"] = "Svikin/n"; +$a->strings["Separated"] = "Skilin/n að borði og sæng"; +$a->strings["Unstable"] = "Óstabíll"; +$a->strings["Divorced"] = "Fráskilin/n"; +$a->strings["Imaginarily divorced"] = ""; +$a->strings["Widowed"] = "Ekkja/Ekkill"; +$a->strings["Uncertain"] = "Óviss"; +$a->strings["It's complicated"] = "Þetta er flókið"; +$a->strings["Don't care"] = "Gæti ekki verið meira sama"; +$a->strings["Ask me"] = "Spurðu mig"; +$a->strings["[Name Withheld]"] = "[Nafn ekki sýnt]"; +$a->strings["Item not found."] = "Atriði fannst ekki."; +$a->strings["Do you really want to delete this item?"] = "Viltu í alvörunni eyða þessu atriði?"; +$a->strings["Yes"] = "Já"; +$a->strings["Cancel"] = "Hætta við"; +$a->strings["Permission denied."] = "Heimild ekki veitt."; +$a->strings["Archives"] = "Safnskrár"; +$a->strings["newer"] = "nýrri"; +$a->strings["older"] = "eldri"; $a->strings["prev"] = "á undan"; $a->strings["first"] = "fremsta"; $a->strings["last"] = "síðasta"; $a->strings["next"] = "næsta"; +$a->strings["Loading more entries..."] = "Hleð inn fleiri færslum..."; +$a->strings["The end"] = "Endir"; $a->strings["No contacts"] = "Engir tengiliðir"; $a->strings["%d Contact"] = array( - 0 => "%d Tengiliður", - 1 => "%d Tengiliðir", + 0 => "%d tengiliður", + 1 => "%d tengiliðir", ); -$a->strings["poke"] = ""; +$a->strings["View Contacts"] = "Skoða tengiliði"; +$a->strings["Search"] = "Leita"; +$a->strings["Save"] = "Vista"; +$a->strings["@name, !forum, #tags, content"] = "@nafn, !spjallsvæði, #merki, innihald"; +$a->strings["Full Text"] = "Allur textinn"; +$a->strings["Tags"] = "Merki"; +$a->strings["Contacts"] = "Tengiliðir"; +$a->strings["poke"] = "pota"; +$a->strings["poked"] = "potaði"; $a->strings["ping"] = ""; $a->strings["pinged"] = ""; $a->strings["prod"] = ""; @@ -1481,50 +327,220 @@ $a->strings["frustrated"] = ""; $a->strings["motivated"] = ""; $a->strings["relaxed"] = ""; $a->strings["surprised"] = ""; -$a->strings["Monday"] = "Mánudagur"; -$a->strings["Tuesday"] = "Þriðjudagur"; -$a->strings["Wednesday"] = "Miðvikudagur"; -$a->strings["Thursday"] = "Fimmtudagur"; -$a->strings["Friday"] = "Föstudagur"; -$a->strings["Saturday"] = "Laugardagur"; -$a->strings["Sunday"] = "Sunnudagur"; -$a->strings["January"] = "Janúar"; -$a->strings["February"] = "Febrúar"; -$a->strings["March"] = "Mars"; -$a->strings["April"] = "Apríl"; -$a->strings["May"] = "Maí"; -$a->strings["June"] = "Júní"; -$a->strings["July"] = "Júlí"; -$a->strings["August"] = "Ágúst"; -$a->strings["September"] = "September"; -$a->strings["October"] = "Október"; -$a->strings["November"] = "Nóvember"; -$a->strings["December"] = "Desember"; +$a->strings["View Video"] = "Skoða myndskeið"; $a->strings["bytes"] = "bæti"; $a->strings["Click to open/close"] = ""; -$a->strings["default"] = "sjálfgefið"; -$a->strings["Select an alternate language"] = "Velja annað tungumál"; -$a->strings["activity"] = ""; +$a->strings["View on separate page"] = ""; +$a->strings["view on separate page"] = ""; +$a->strings["event"] = "atburður"; +$a->strings["photo"] = "mynd"; +$a->strings["activity"] = "virkni"; +$a->strings["comment"] = array( + 0 => "athugasemd", + 1 => "athugasemdir", +); $a->strings["post"] = ""; $a->strings["Item filed"] = ""; +$a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s líkar ekki við %3\$s hjá %2\$s "; +$a->strings["%1\$s attends %2\$s's %3\$s"] = ""; +$a->strings["%1\$s doesn't attend %2\$s's %3\$s"] = ""; +$a->strings["%1\$s attends maybe %2\$s's %3\$s"] = ""; +$a->strings["%1\$s is now friends with %2\$s"] = "Núna er %1\$s vinur %2\$s"; +$a->strings["%1\$s poked %2\$s"] = "%1\$s potaði í %2\$s"; +$a->strings["%1\$s is currently %2\$s"] = ""; +$a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s merkti %2\$s's %3\$s með %4\$s"; +$a->strings["post/item"] = ""; +$a->strings["%1\$s marked %2\$s's %3\$s as favorite"] = ""; +$a->strings["Likes"] = "Líkar"; +$a->strings["Dislikes"] = "Mislíkar"; +$a->strings["Attending"] = array( + 0 => "Mætir", + 1 => "Mæta", +); +$a->strings["Not attending"] = "Mætir ekki"; +$a->strings["Might attend"] = "Gæti mætt"; +$a->strings["Select"] = "Velja"; +$a->strings["Delete"] = "Eyða"; +$a->strings["View %s's profile @ %s"] = "Birta forsíðu %s hjá %s"; +$a->strings["Categories:"] = "Flokkar:"; +$a->strings["Filed under:"] = "Skráð undir:"; +$a->strings["%s from %s"] = "%s til %s"; +$a->strings["View in context"] = "Birta í samhengi"; +$a->strings["Please wait"] = "Hinkraðu aðeins"; +$a->strings["remove"] = "fjarlægja"; +$a->strings["Delete Selected Items"] = "Eyða völdum færslum"; +$a->strings["Follow Thread"] = "Fylgja þræði"; +$a->strings["View Status"] = "Skoða stöðu"; +$a->strings["View Profile"] = "Skoða forsíðu"; +$a->strings["View Photos"] = "Skoða myndir"; +$a->strings["Network Posts"] = ""; +$a->strings["Edit Contact"] = "Breyta tengilið"; +$a->strings["Send PM"] = "Senda einkaboð"; +$a->strings["Poke"] = "Pota"; +$a->strings["%s likes this."] = "%s líkar þetta."; +$a->strings["%s doesn't like this."] = "%s mislíkar þetta."; +$a->strings["%s attends."] = "%s mætir."; +$a->strings["%s doesn't attend."] = "%s mætir ekki."; +$a->strings["%s attends maybe."] = "%s mætir kannski."; +$a->strings["and"] = "og"; +$a->strings[", and %d other people"] = ", og %d öðrum"; +$a->strings["%2\$d people like this"] = ""; +$a->strings["%s like this."] = ""; +$a->strings["%2\$d people don't like this"] = ""; +$a->strings["%s don't like this."] = ""; +$a->strings["%2\$d people attend"] = ""; +$a->strings["%s attend."] = ""; +$a->strings["%2\$d people don't attend"] = ""; +$a->strings["%s don't attend."] = ""; +$a->strings["%2\$d people anttend maybe"] = ""; +$a->strings["%s anttend maybe."] = ""; +$a->strings["Visible to everybody"] = "Sjáanlegt öllum"; +$a->strings["Please enter a link URL:"] = "Sláðu inn slóð:"; +$a->strings["Please enter a video link/URL:"] = "Settu inn slóð á myndskeið:"; +$a->strings["Please enter an audio link/URL:"] = "Settu inn slóð á hljóðskrá:"; +$a->strings["Tag term:"] = "Merka með:"; +$a->strings["Save to Folder:"] = "Vista í möppu:"; +$a->strings["Where are you right now?"] = "Hvar ert þú núna?"; +$a->strings["Delete item(s)?"] = "Eyða atriði/atriðum?"; +$a->strings["Share"] = "Deila"; +$a->strings["Upload photo"] = "Hlaða upp mynd"; +$a->strings["upload photo"] = "Hlaða upp mynd"; +$a->strings["Attach file"] = "Bæta við skrá"; +$a->strings["attach file"] = "Hengja skrá við"; +$a->strings["Insert web link"] = "Setja inn vefslóð"; +$a->strings["web link"] = "vefslóð"; +$a->strings["Insert video link"] = "Setja inn slóð á myndskeið"; +$a->strings["video link"] = "slóð á myndskeið"; +$a->strings["Insert audio link"] = "Setja inn slóð á hljóðskrá"; +$a->strings["audio link"] = "slóð á hljóðskrá"; +$a->strings["Set your location"] = "Veldu staðsetningu þína"; +$a->strings["set location"] = "stilla staðsetningu"; +$a->strings["Clear browser location"] = "Hreinsa staðsetningu í vafra"; +$a->strings["clear location"] = "hreinsa staðsetningu"; +$a->strings["Set title"] = "Setja titil"; +$a->strings["Categories (comma-separated list)"] = "Flokkar (listi aðskilinn með kommum)"; +$a->strings["Permission settings"] = "Stillingar aðgangsheimilda"; +$a->strings["permissions"] = "aðgangsstýring"; +$a->strings["Public post"] = "Opinber færsla"; +$a->strings["Preview"] = "Forskoðun"; +$a->strings["Post to Groups"] = "Senda á hópa"; +$a->strings["Post to Contacts"] = "Senda á tengiliði"; +$a->strings["Private post"] = "Einkafærsla"; +$a->strings["Message"] = "Skilaboð"; +$a->strings["Browser"] = "Vafri"; +$a->strings["View all"] = "Skoða allt"; +$a->strings["Like"] = array( + 0 => "Líkar", + 1 => "Líkar", +); +$a->strings["Dislike"] = array( + 0 => "Mislíkar", + 1 => "Mislíkar", +); +$a->strings["Not Attending"] = array( + 0 => "Mæti ekki", + 1 => "Mæta ekki", +); +$a->strings["Requested account is not available."] = "Umbeðin forsíða er ekki til."; +$a->strings["Requested profile is not available."] = "Umbeðin forsíða ekki til."; +$a->strings["Edit profile"] = "Breyta forsíðu"; +$a->strings["Atom feed"] = "Atom fréttaveita"; +$a->strings["Profiles"] = "Forsíður"; +$a->strings["Manage/edit profiles"] = "Sýsla með forsíður"; +$a->strings["Change profile photo"] = "Breyta forsíðumynd"; +$a->strings["Create New Profile"] = "Stofna nýja forsíðu"; +$a->strings["Profile Image"] = "Forsíðumynd"; +$a->strings["visible to everybody"] = "sýnilegt öllum"; +$a->strings["Edit visibility"] = "Sýsla með sýnileika"; +$a->strings["Forum"] = "Spjallsvæði"; +$a->strings["Gender:"] = "Kyn:"; +$a->strings["Status:"] = "Staða:"; +$a->strings["Homepage:"] = "Heimasíða:"; +$a->strings["About:"] = "Um:"; +$a->strings["Network:"] = "Netkerfi:"; +$a->strings["g A l F d"] = ""; +$a->strings["F d"] = ""; +$a->strings["[today]"] = "[í dag]"; +$a->strings["Birthday Reminders"] = "Afmælisáminningar"; +$a->strings["Birthdays this week:"] = "Afmæli í þessari viku:"; +$a->strings["[No description]"] = "[Engin lýsing]"; +$a->strings["Event Reminders"] = "Atburðaáminningar"; +$a->strings["Events this week:"] = "Atburðir vikunnar:"; +$a->strings["Profile"] = "Forsíða"; +$a->strings["Full Name:"] = "Fullt nafn:"; +$a->strings["j F, Y"] = ""; +$a->strings["j F"] = ""; +$a->strings["Age:"] = "Aldur:"; +$a->strings["for %1\$d %2\$s"] = ""; +$a->strings["Sexual Preference:"] = "Kynhneigð:"; +$a->strings["Hometown:"] = "Heimabær:"; +$a->strings["Tags:"] = "Merki:"; +$a->strings["Political Views:"] = "Stórnmálaskoðanir:"; +$a->strings["Religion:"] = "Trúarskoðanir:"; +$a->strings["Hobbies/Interests:"] = "Áhugamál/Áhugasvið:"; +$a->strings["Likes:"] = "Líkar:"; +$a->strings["Dislikes:"] = "Mislíkar:"; +$a->strings["Contact information and Social Networks:"] = "Tengiliðaupplýsingar og samfélagsnet:"; +$a->strings["Musical interests:"] = "Tónlistaráhugi:"; +$a->strings["Books, literature:"] = "Bækur, bókmenntir:"; +$a->strings["Television:"] = "Sjónvarp:"; +$a->strings["Film/dance/culture/entertainment:"] = "Kvikmyndir/dans/menning/afþreying:"; +$a->strings["Love/Romance:"] = "Ást/rómantík:"; +$a->strings["Work/employment:"] = "Atvinna:"; +$a->strings["School/education:"] = "Skóli/menntun:"; +$a->strings["Forums:"] = "Spjallsvæði:"; +$a->strings["Basic"] = "Einfalt"; +$a->strings["Advanced"] = "Flóknari"; +$a->strings["Status"] = "Staða"; +$a->strings["Status Messages and Posts"] = "Stöðu skilaboð og færslur"; +$a->strings["Profile Details"] = "Forsíðu upplýsingar"; +$a->strings["Photos"] = "Myndir"; +$a->strings["Photo Albums"] = "Myndabækur"; +$a->strings["Videos"] = "Myndskeið"; +$a->strings["Events"] = "Atburðir"; +$a->strings["Events and Calendar"] = "Atburðir og dagskrá"; +$a->strings["Personal Notes"] = "Persónulegar glósur"; +$a->strings["Only You Can See This"] = "Aðeins þú sérð þetta"; +$a->strings[" on Last.fm"] = " á Last.fm"; +$a->strings["Disallowed profile URL."] = "Óleyfileg forsíðu slóð."; +$a->strings["Connect URL missing."] = "Tengislóð vantar."; +$a->strings["This site is not configured to allow communications with other networks."] = "Þessi vefur er ekki uppsettur til að leyfa samskipti við önnur samfélagsnet."; +$a->strings["No compatible communication protocols or feeds were discovered."] = "Engir samhæfðir samskiptastaðlar né fréttastraumar fundust."; +$a->strings["The profile address specified does not provide adequate information."] = "Uppgefin forsíðuslóð inniheldur ekki nægilegar upplýsingar."; +$a->strings["An author or name was not found."] = "Höfundur eða nafn fannst ekki."; +$a->strings["No browser URL could be matched to this address."] = "Engin vefslóð passaði við þetta vistfang."; +$a->strings["Unable to match @-style Identity Address with a known protocol or email contact."] = ""; +$a->strings["Use mailto: in front of address to force email check."] = ""; +$a->strings["The profile address specified belongs to a network which has been disabled on this site."] = "Þessi forsíðu slóð tilheyrir neti sem er bannað á þessum vef."; +$a->strings["Limited profile. This person will be unable to receive direct/personal notifications from you."] = "Takmörkuð forsíða. Þessi tengiliður mun ekki getað tekið á móti beinum/einka tilkynningum frá þér."; +$a->strings["Unable to retrieve contact information."] = "Ekki hægt að sækja tengiliðs upplýsingar."; +$a->strings["following"] = "fylgist með"; +$a->strings["stopped following"] = "hætt að fylgja"; +$a->strings["Drop Contact"] = "Henda tengilið"; +$a->strings["Embedded content"] = "Innbyggt efni"; +$a->strings["Embedding disabled"] = "Innfelling ekki leyfð"; $a->strings["Image/photo"] = "Mynd"; -$a->strings["%2\$s %3\$s"] = ""; -$a->strings["%s wrote the following post"] = ""; +$a->strings["%2\$s %3\$s"] = "%2\$s %3\$s"; $a->strings["$1 wrote:"] = "$1 skrifaði:"; $a->strings["Encrypted content"] = "Dulritað efni"; -$a->strings["(no subject)"] = "(ekkert efni)"; -$a->strings["noreply"] = "ekki svara"; -$a->strings["Cannot locate DNS info for database server '%s'"] = "Get ekki flett upp DNS upplýsingum fyrir gagnagrunns þjón '%s'"; $a->strings["Unknown | Not categorised"] = "Óþekkt | Ekki flokkað"; -$a->strings["Block immediately"] = "Hunsa samstundis"; -$a->strings["Shady, spammer, self-marketer"] = "Grunsamlegur, rusl sendari, auglýsandi"; -$a->strings["Known to me, but no opinion"] = "Ég þekki en hef ekki skoðun á"; -$a->strings["OK, probably harmless"] = "Í lagi, væntanlega saklaus"; +$a->strings["Block immediately"] = "Banna samstundis"; +$a->strings["Shady, spammer, self-marketer"] = "Grunsamlegur, ruslsendari, auglýsandi"; +$a->strings["Known to me, but no opinion"] = "Ég þekki þetta, en hef ekki skoðun á"; +$a->strings["OK, probably harmless"] = "Í lagi, væntanlega meinlaus"; $a->strings["Reputable, has my trust"] = "Gott orðspor, ég treysti þessu"; +$a->strings["Frequently"] = "Oft"; +$a->strings["Hourly"] = "Klukkustundar fresti"; +$a->strings["Twice daily"] = "Tvisvar á dag"; +$a->strings["Daily"] = "Daglega"; $a->strings["Weekly"] = "Vikulega"; $a->strings["Monthly"] = "Mánaðarlega"; +$a->strings["Friendica"] = "Friendica"; $a->strings["OStatus"] = "OStatus"; $a->strings["RSS/Atom"] = "RSS/Atom"; +$a->strings["Email"] = "Póstfang"; +$a->strings["Diaspora"] = "Diaspora"; +$a->strings["Facebook"] = "Facebook"; $a->strings["Zot!"] = "Zot!"; $a->strings["LinkedIn"] = "LinkedIn"; $a->strings["XMPP/IM"] = "XMPP/IM"; @@ -1532,262 +548,1471 @@ $a->strings["MySpace"] = "MySpace"; $a->strings["Google+"] = "Google+"; $a->strings["pump.io"] = "pump.io"; $a->strings["Twitter"] = "Twitter"; -$a->strings["Diaspora Connector"] = ""; -$a->strings["Statusnet"] = ""; -$a->strings["App.net"] = ""; -$a->strings[" on Last.fm"] = ""; -$a->strings["Starts:"] = "Byrjar:"; -$a->strings["Finishes:"] = "Endar:"; -$a->strings["j F, Y"] = ""; -$a->strings["j F"] = ""; -$a->strings["Birthday:"] = "Afmælisdagur:"; -$a->strings["Age:"] = "Aldur"; -$a->strings["for %1\$d %2\$s"] = ""; -$a->strings["Tags:"] = "Merki:"; -$a->strings["Religion:"] = "Trúarskoðanir:"; -$a->strings["Hobbies/Interests:"] = "Áhugamál/Áhugasvið:"; -$a->strings["Contact information and Social Networks:"] = "Tengiliðaupplýsingar og samfélagsnet:"; -$a->strings["Musical interests:"] = "Tónlistaráhugi:"; -$a->strings["Books, literature:"] = "Bækur, bókmenntir:"; -$a->strings["Television:"] = "Sjónvarp:"; -$a->strings["Film/dance/culture/entertainment:"] = "Kvikmyndir/dans/menning/afþreying:"; -$a->strings["Love/Romance:"] = "Ást/rómantík"; -$a->strings["Work/employment:"] = "Atvinna:"; -$a->strings["School/education:"] = "Skóli/menntun:"; -$a->strings["Click here to upgrade."] = ""; -$a->strings["This action exceeds the limits set by your subscription plan."] = ""; -$a->strings["This action is not available under your subscription plan."] = ""; -$a->strings["End this session"] = "Loka þessu innliti"; -$a->strings["Your posts and conversations"] = "Samtölin þín"; -$a->strings["Your profile page"] = "Forsíðan þín"; -$a->strings["Your photos"] = "Þínar myndir"; -$a->strings["Your videos"] = ""; -$a->strings["Your events"] = "Þínir atburðir"; -$a->strings["Personal notes"] = "Þínar einka glósur"; -$a->strings["Your personal notes"] = ""; -$a->strings["Sign in"] = "Innskrá"; -$a->strings["Home Page"] = "Heimasíða"; -$a->strings["Create an account"] = "Stofna notanda"; -$a->strings["Help and documentation"] = "Hjálp og leiðbeiningar"; -$a->strings["Apps"] = "Forr"; -$a->strings["Addon applications, utilities, games"] = "Viðbætur forrit, leikir"; -$a->strings["Search site content"] = "Leita í efni á vef"; -$a->strings["Conversations on this site"] = "Samtöl á þessum vef"; -$a->strings["Conversations on the network"] = ""; -$a->strings["Directory"] = "Tengiliðalisti"; -$a->strings["People directory"] = "Nafnaskrá"; -$a->strings["Information"] = ""; -$a->strings["Information about this friendica instance"] = ""; -$a->strings["Conversations from your friends"] = "Samtöl frá vinum"; -$a->strings["Network Reset"] = ""; -$a->strings["Load Network page with no filters"] = ""; -$a->strings["Friend Requests"] = "Vina beiðnir"; -$a->strings["See all notifications"] = ""; -$a->strings["Mark all system notifications seen"] = "Merkja allar tilkynningar sem séðar"; -$a->strings["Private mail"] = "Einka skilaboð"; -$a->strings["Inbox"] = "Innhólf"; -$a->strings["Outbox"] = "Úthólf"; -$a->strings["Manage"] = "Umsýsla"; -$a->strings["Manage other pages"] = "Sýsla með aðrar síður"; -$a->strings["Account settings"] = "Notenda stillingar"; -$a->strings["Manage/Edit Profiles"] = ""; -$a->strings["Manage/edit friends and contacts"] = "Sýsla með vini og tengiliði"; -$a->strings["Site setup and configuration"] = "Stillingar vefs"; -$a->strings["Navigation"] = ""; -$a->strings["Site map"] = ""; -$a->strings["User not found."] = ""; -$a->strings["Daily posting limit of %d posts reached. The post was rejected."] = ""; -$a->strings["Weekly posting limit of %d posts reached. The post was rejected."] = ""; -$a->strings["Monthly posting limit of %d posts reached. The post was rejected."] = ""; -$a->strings["There is no status with this id."] = ""; -$a->strings["There is no conversation with this id."] = ""; -$a->strings["Invalid request."] = ""; -$a->strings["Invalid item."] = ""; -$a->strings["Invalid action. "] = ""; -$a->strings["DB error"] = ""; +$a->strings["Diaspora Connector"] = "Diaspora tenging"; +$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."] = ""; +$a->strings["The error message is\n[pre]%s[/pre]"] = ""; +$a->strings["Errors encountered creating database tables."] = "Villur komu upp við að stofna töflur í gagnagrunn."; +$a->strings["Errors encountered performing database changes."] = ""; +$a->strings["Logged out."] = "Skráður út."; +$a->strings["Login failed."] = "Innskráning mistókst."; +$a->strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = ""; +$a->strings["The error message was:"] = "Villumeldingin var:"; +$a->strings["view full size"] = "Skoða í fullri stærð"; +$a->strings["A deleted group with this name was revived. Existing item permissions may apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "Hóp sem var eytt hefur verið endurlífgaður. Færslur sem þegar voru til geta mögulega farið á hópinn og framtíðar meðlimir. Ef þetta er ekki það sem þú vilt, þá þarftu að búa til nýjan hóp með öðru nafni."; +$a->strings["Default privacy group for new contacts"] = ""; +$a->strings["Everybody"] = "Allir"; +$a->strings["edit"] = "breyta"; +$a->strings["Groups"] = "Hópar"; +$a->strings["Edit groups"] = "Breyta hópum"; +$a->strings["Edit group"] = "Breyta hóp"; +$a->strings["Create a new group"] = "Stofna nýjan hóp"; +$a->strings["Group Name: "] = "Nafn hóps: "; +$a->strings["Contacts not in any group"] = "Tengiliðir ekki í neinum hópum"; +$a->strings["add"] = "bæta við"; +$a->strings["Wall Photos"] = "Veggmyndir"; +$a->strings["(no subject)"] = "(ekkert efni)"; +$a->strings["Passwords do not match. Password unchanged."] = "Aðgangsorð ber ekki saman. Aðgangsorð óbreytt."; $a->strings["An invitation is required."] = "Boðskort er skilyrði."; $a->strings["Invitation could not be verified."] = "Ekki hægt að sannreyna boðskort."; $a->strings["Invalid OpenID url"] = "OpenID slóð ekki til"; -$a->strings["Please enter the required information."] = "Vinsamlegast sláðu inn umbeðin gögn"; -$a->strings["Please use a shorter name."] = "Vinsamlegast notið styttra nafn"; -$a->strings["Name too short."] = "Nafn of stutt"; +$a->strings["Please enter the required information."] = "Settu inn umbeðnar upplýsingar."; +$a->strings["Please use a shorter name."] = "Notaðu styttra nafn."; +$a->strings["Name too short."] = "Nafn of stutt."; $a->strings["That doesn't appear to be your full (First Last) name."] = "Þetta virðist ekki vera fullt nafn (Jón Jónsson)."; $a->strings["Your email domain is not among those allowed on this site."] = "Póstþjónninn er ekki í lista yfir leyfða póstþjóna á þessum vef."; $a->strings["Not a valid email address."] = "Ekki gildt póstfang."; $a->strings["Cannot use that email."] = "Ekki hægt að nota þetta póstfang."; -$a->strings["Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and must also begin with a letter."] = "Gælunafnið má bara innihalda \"a-z\", \"0-9, \"-\", \"_\" og verður að byrja á staf."; +$a->strings["Your \"nickname\" can only contain \"a-z\", \"0-9\" and \"_\"."] = "Gælunafnið má bara innihalda \"a-z\", \"0-9, \"-\", \"_\"."; $a->strings["Nickname is already registered. Please choose another."] = "Gælunafn þegar skráð. Veldu annað."; -$a->strings["Nickname was once registered here and may not be re-used. Please choose another."] = ""; +$a->strings["Nickname was once registered here and may not be re-used. Please choose another."] = "Gælunafn hefur áður skráð hér og er ekki hægt að endurnýta. Veldu eitthvað annað."; $a->strings["SERIOUS ERROR: Generation of security keys failed."] = "VERULEGA ALVARLEG VILLA: Stofnun á öryggislyklum tókst ekki."; -$a->strings["An error occurred during registration. Please try again."] = "Villa kom upp við nýskráningu. Vinsamlegast reyndu aftur."; +$a->strings["An error occurred during registration. Please try again."] = "Villa kom upp við nýskráningu. Reyndu aftur."; +$a->strings["default"] = "sjálfgefið"; $a->strings["An error occurred creating your default profile. Please try again."] = "Villa kom upp við að stofna sjálfgefna forsíðu. Vinnsamlegast reyndu aftur."; -$a->strings["Friends"] = "Vinir"; +$a->strings["Profile Photos"] = "Forsíðumyndir"; $a->strings["\n\t\tDear %1\$s,\n\t\t\tThank you for registering at %2\$s. Your account has been created.\n\t"] = ""; $a->strings["\n\t\tThe login details are as follows:\n\t\t\tSite Location:\t%3\$s\n\t\t\tLogin Name:\t%1\$s\n\t\t\tPassword:\t%5\$s\n\n\t\tYou may change your password from your account \"Settings\" page after logging\n\t\tin.\n\n\t\tPlease take a few moments to review the other account settings on that page.\n\n\t\tYou may also wish to add some basic information to your default profile\n\t\t(on the \"Profiles\" page) so that other people can easily find you.\n\n\t\tWe recommend setting your full name, adding a profile photo,\n\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n\t\tperhaps what country you live in; if you do not wish to be more specific\n\t\tthan that.\n\n\t\tWe fully respect your right to privacy, and none of these items are necessary.\n\t\tIf you are new and do not know anybody here, they may help\n\t\tyou to make some new and interesting friends.\n\n\n\t\tThank you and welcome to %2\$s."] = ""; -$a->strings["Sharing notification from Diaspora network"] = "Tilkynning um að einhver deildi einhverju Diaspora netinu"; -$a->strings["Attachments:"] = "Viðhengi:"; -$a->strings["Do you really want to delete this item?"] = "Viltu í alvörunni eyða þessu atriði?"; -$a->strings["Archives"] = ""; -$a->strings["Male"] = "Karlmaður"; -$a->strings["Female"] = "Kvenmaður"; -$a->strings["Currently Male"] = "Karlmaður í augnablikinu"; -$a->strings["Currently Female"] = "Kvenmaður í augnablikinu"; -$a->strings["Mostly Male"] = "Aðallega karlmaður"; -$a->strings["Mostly Female"] = "Aðallega kvenmaður"; -$a->strings["Transgender"] = "Kynskiptingur"; -$a->strings["Intersex"] = "Hvorukin"; -$a->strings["Transsexual"] = "Kynskiptingur"; -$a->strings["Hermaphrodite"] = "Tvíkynhneigð(ur)"; -$a->strings["Neuter"] = "Hvorukyn"; -$a->strings["Non-specific"] = "Ekki ákveðið"; -$a->strings["Other"] = "Annað"; -$a->strings["Undecided"] = "Óviss"; -$a->strings["Males"] = "Karlmenn"; -$a->strings["Females"] = "Kvenmenn"; -$a->strings["Gay"] = "Samkynhneigður"; -$a->strings["Lesbian"] = "Lesbía"; -$a->strings["No Preference"] = "Til í allt"; -$a->strings["Bisexual"] = "Tvíkynhneigð/ur"; -$a->strings["Autosexual"] = "Sjálfkynhneigð/ur"; -$a->strings["Abstinent"] = "Skýrlíf/ur"; -$a->strings["Virgin"] = "Hrein mey/Hreinn sveinn"; -$a->strings["Deviant"] = "Óþekkur"; -$a->strings["Fetish"] = "Blæti"; -$a->strings["Oodles"] = "Mikið af því"; -$a->strings["Nonsexual"] = "Engin kynhneigð"; -$a->strings["Single"] = "Einhleyp/ur"; -$a->strings["Lonely"] = "Einmanna"; -$a->strings["Available"] = "Á lausu"; -$a->strings["Unavailable"] = "Frátekin/n"; -$a->strings["Has crush"] = "Er skotin(n)"; -$a->strings["Infatuated"] = ""; -$a->strings["Dating"] = "Deita"; -$a->strings["Unfaithful"] = "Ótrú/r"; -$a->strings["Sex Addict"] = "Kynlífsfíkill"; -$a->strings["Friends/Benefits"] = "Vinir með meiru"; -$a->strings["Casual"] = "Lauslát/ur"; -$a->strings["Engaged"] = "Trúlofuð/Trúlofaður"; -$a->strings["Married"] = "Gift/ur"; -$a->strings["Imaginarily married"] = ""; -$a->strings["Partners"] = "Félagar"; -$a->strings["Cohabiting"] = "Sambýlingur"; -$a->strings["Common law"] = "Löggilt sambúð"; -$a->strings["Happy"] = "Hamingjusöm/Hamingjusamur"; -$a->strings["Not looking"] = "Ekki að leita"; -$a->strings["Swinger"] = "Svingari"; -$a->strings["Betrayed"] = "Svikin/n"; -$a->strings["Separated"] = "Skilin/n að borði og sæng"; -$a->strings["Unstable"] = "Óstabíll"; -$a->strings["Divorced"] = "Fráskilin/n"; -$a->strings["Imaginarily divorced"] = ""; -$a->strings["Widowed"] = "Ekkja/Ekkill"; -$a->strings["Uncertain"] = "Óviss"; -$a->strings["It's complicated"] = "Þetta er flókið"; -$a->strings["Don't care"] = "Gæti ekki verið meira sama"; -$a->strings["Ask me"] = "Spurðu mig"; -$a->strings["Friendica Notification"] = "Friendica tilkynning"; -$a->strings["Thank You,"] = "Takk fyrir,"; -$a->strings["%s Administrator"] = "Kerfisstjóri %s"; -$a->strings["%s "] = ""; -$a->strings["[Friendica:Notify] New mail received at %s"] = ""; -$a->strings["%1\$s sent you a new private message at %2\$s."] = ""; -$a->strings["%1\$s sent you %2\$s."] = ""; -$a->strings["a private message"] = "einkaskilaboð"; -$a->strings["Please visit %s to view and/or reply to your private messages."] = "Farðu á %s til að skoða og/eða svara einkaskilaboðunum þínum."; -$a->strings["%1\$s commented on [url=%2\$s]a %3\$s[/url]"] = ""; -$a->strings["%1\$s commented on [url=%2\$s]%3\$s's %4\$s[/url]"] = ""; -$a->strings["%1\$s commented on [url=%2\$s]your %3\$s[/url]"] = ""; -$a->strings["[Friendica:Notify] Comment to conversation #%1\$d by %2\$s"] = ""; -$a->strings["%s commented on an item/conversation you have been following."] = "%s skrifaði athugasemd á færslu/samtal sem þú ert að fylgja."; -$a->strings["Please visit %s to view and/or reply to the conversation."] = "Farðu á %s til að skoða og/eða svara samtali."; -$a->strings["[Friendica:Notify] %s posted to your profile wall"] = ""; -$a->strings["%1\$s posted to your profile wall at %2\$s"] = ""; -$a->strings["%1\$s posted to [url=%2\$s]your wall[/url]"] = ""; -$a->strings["[Friendica:Notify] %s tagged you"] = ""; -$a->strings["%1\$s tagged you at %2\$s"] = ""; -$a->strings["%1\$s [url=%2\$s]tagged you[/url]."] = ""; -$a->strings["[Friendica:Notify] %s shared a new post"] = ""; -$a->strings["%1\$s shared a new post at %2\$s"] = ""; -$a->strings["%1\$s [url=%2\$s]shared a post[/url]."] = ""; -$a->strings["[Friendica:Notify] %1\$s poked you"] = ""; -$a->strings["%1\$s poked you at %2\$s"] = ""; -$a->strings["%1\$s [url=%2\$s]poked you[/url]."] = ""; -$a->strings["[Friendica:Notify] %s tagged your post"] = ""; -$a->strings["%1\$s tagged your post at %2\$s"] = ""; -$a->strings["%1\$s tagged [url=%2\$s]your post[/url]"] = ""; -$a->strings["[Friendica:Notify] Introduction received"] = ""; -$a->strings["You've received an introduction from '%1\$s' at %2\$s"] = ""; -$a->strings["You've received [url=%1\$s]an introduction[/url] from %2\$s."] = ""; -$a->strings["You may visit their profile at %s"] = "Þú getur heimsótt fórsíðuna á %s"; -$a->strings["Please visit %s to approve or reject the introduction."] = "Farðu á %s til að samþykkja eða hunsa þessa kynningu."; -$a->strings["[Friendica:Notify] A new person is sharing with you"] = ""; -$a->strings["%1\$s is sharing with you at %2\$s"] = ""; -$a->strings["[Friendica:Notify] You have a new follower"] = ""; -$a->strings["You have a new follower at %2\$s : %1\$s"] = ""; -$a->strings["[Friendica:Notify] Friend suggestion received"] = ""; -$a->strings["You've received a friend suggestion from '%1\$s' at %2\$s"] = ""; -$a->strings["You've received [url=%1\$s]a friend suggestion[/url] for %2\$s from %3\$s."] = ""; -$a->strings["Name:"] = "Nafn:"; -$a->strings["Photo:"] = "Mynd:"; -$a->strings["Please visit %s to approve or reject the suggestion."] = "Farðu á %s til að samþykkja eða hunsa þessa uppástungu."; -$a->strings["[Friendica:Notify] Connection accepted"] = ""; -$a->strings["'%1\$s' has acepted your connection request at %2\$s"] = ""; -$a->strings["%2\$s has accepted your [url=%1\$s]connection request[/url]."] = ""; -$a->strings["You are now mutual friends and may exchange status updates, photos, and email\n\twithout restriction."] = ""; -$a->strings["Please visit %s if you wish to make any changes to this relationship."] = ""; -$a->strings["'%1\$s' has chosen to accept you a \"fan\", which restricts some forms of communication - such as private messaging and some profile interactions. If this is a celebrity or community page, these settings were applied automatically."] = ""; -$a->strings["'%1\$s' may choose to extend this into a two-way or more permissive relationship in the future. "] = ""; -$a->strings["[Friendica System:Notify] registration request"] = ""; -$a->strings["You've received a registration request from '%1\$s' at %2\$s"] = ""; -$a->strings["You've received a [url=%1\$s]registration request[/url] from %2\$s."] = ""; -$a->strings["Full Name:\t%1\$s\\nSite Location:\t%2\$s\\nLogin Name:\t%3\$s (%4\$s)"] = ""; -$a->strings["Please visit %s to approve or reject the request."] = ""; -$a->strings["Embedded content"] = "Innbyggt efni"; -$a->strings["Embedding disabled"] = "Innfelling ekki leyfð"; -$a->strings["Error decoding account file"] = ""; -$a->strings["Error! No version data in file! This is not a Friendica account file?"] = ""; -$a->strings["Error! Cannot check nickname"] = ""; -$a->strings["User '%s' already exists on this server!"] = ""; -$a->strings["User creation error"] = ""; -$a->strings["User profile creation error"] = ""; -$a->strings["%d contact not imported"] = array( +$a->strings["Registration details for %s"] = "Nýskráningar upplýsingar fyrir %s"; +$a->strings["Daily posting limit of %d posts reached. The post was rejected."] = ""; +$a->strings["Weekly posting limit of %d posts reached. The post was rejected."] = ""; +$a->strings["Monthly posting limit of %d posts reached. The post was rejected."] = ""; +$a->strings["General Features"] = "Almennir eiginleikar"; +$a->strings["Multiple Profiles"] = ""; +$a->strings["Ability to create multiple profiles"] = ""; +$a->strings["Photo Location"] = "Staðsetning ljósmyndar"; +$a->strings["Photo metadata is normally stripped. This extracts the location (if present) prior to stripping metadata and links it to a map."] = ""; +$a->strings["Export Public Calendar"] = "Flytja út opinbert dagatal"; +$a->strings["Ability for visitors to download the public calendar"] = ""; +$a->strings["Post Composition Features"] = ""; +$a->strings["Richtext Editor"] = ""; +$a->strings["Enable richtext editor"] = ""; +$a->strings["Post Preview"] = ""; +$a->strings["Allow previewing posts and comments before publishing them"] = ""; +$a->strings["Auto-mention Forums"] = ""; +$a->strings["Add/remove mention when a fourm page is selected/deselected in ACL window."] = ""; +$a->strings["Network Sidebar Widgets"] = ""; +$a->strings["Search by Date"] = "Leita eftir dagsetningu"; +$a->strings["Ability to select posts by date ranges"] = ""; +$a->strings["List Forums"] = "Spjallsvæðalistar"; +$a->strings["Enable widget to display the forums your are connected with"] = ""; +$a->strings["Group Filter"] = ""; +$a->strings["Enable widget to display Network posts only from selected group"] = ""; +$a->strings["Network Filter"] = ""; +$a->strings["Enable widget to display Network posts only from selected network"] = ""; +$a->strings["Saved Searches"] = "Vistaðar leitir"; +$a->strings["Save search terms for re-use"] = ""; +$a->strings["Network Tabs"] = ""; +$a->strings["Network Personal Tab"] = ""; +$a->strings["Enable tab to display only Network posts that you've interacted on"] = ""; +$a->strings["Network New Tab"] = ""; +$a->strings["Enable tab to display only new Network posts (from the last 12 hours)"] = ""; +$a->strings["Network Shared Links Tab"] = ""; +$a->strings["Enable tab to display only Network posts with links in them"] = ""; +$a->strings["Post/Comment Tools"] = ""; +$a->strings["Multiple Deletion"] = ""; +$a->strings["Select and delete multiple posts/comments at once"] = ""; +$a->strings["Edit Sent Posts"] = ""; +$a->strings["Edit and correct posts and comments after sending"] = ""; +$a->strings["Tagging"] = ""; +$a->strings["Ability to tag existing posts"] = ""; +$a->strings["Post Categories"] = ""; +$a->strings["Add categories to your posts"] = ""; +$a->strings["Ability to file posts under folders"] = ""; +$a->strings["Dislike Posts"] = ""; +$a->strings["Ability to dislike posts/comments"] = ""; +$a->strings["Star Posts"] = ""; +$a->strings["Ability to mark special posts with a star indicator"] = ""; +$a->strings["Mute Post Notifications"] = ""; +$a->strings["Ability to mute notifications for a thread"] = ""; +$a->strings["Advanced Profile Settings"] = ""; +$a->strings["Show visitors public community forums at the Advanced Profile Page"] = ""; +$a->strings["Nothing new here"] = "Ekkert nýtt hér"; +$a->strings["Clear notifications"] = "Hreinsa tilkynningar"; +$a->strings["End this session"] = "Loka þessu innliti"; +$a->strings["Your posts and conversations"] = "Samtölin þín"; +$a->strings["Your profile page"] = "Forsíðan þín"; +$a->strings["Your photos"] = "Myndirnar þínar"; +$a->strings["Your videos"] = "Myndskeiðin þín"; +$a->strings["Your events"] = "Atburðirnir þínir"; +$a->strings["Personal notes"] = "Einkaglósur"; +$a->strings["Your personal notes"] = "Einkaglósurnar þínar"; +$a->strings["Sign in"] = "Innskrá"; +$a->strings["Home"] = "Heim"; +$a->strings["Home Page"] = "Heimasíða"; +$a->strings["Create an account"] = "Stofna notanda"; +$a->strings["Help"] = "Hjálp"; +$a->strings["Help and documentation"] = "Hjálp og leiðbeiningar"; +$a->strings["Apps"] = "Forrit"; +$a->strings["Addon applications, utilities, games"] = "Viðbótarforrit, nytjatól, leikir"; +$a->strings["Search site content"] = "Leita í efni á vef"; +$a->strings["Community"] = "Samfélag"; +$a->strings["Conversations on this site"] = "Samtöl á þessum vef"; +$a->strings["Conversations on the network"] = "Samtöl á þessu neti"; +$a->strings["Directory"] = "Tengiliðalisti"; +$a->strings["People directory"] = "Nafnaskrá"; +$a->strings["Information"] = "Upplýsingar"; +$a->strings["Information about this friendica instance"] = "Upplýsingar um þetta tilvik Friendica"; +$a->strings["Network"] = "Samfélag"; +$a->strings["Conversations from your friends"] = "Samtöl frá vinum"; +$a->strings["Network Reset"] = "Núllstilling netkerfis"; +$a->strings["Load Network page with no filters"] = ""; +$a->strings["Introductions"] = "Kynningar"; +$a->strings["Friend Requests"] = "Vinabeiðnir"; +$a->strings["Notifications"] = "Tilkynningar"; +$a->strings["See all notifications"] = "Sjá allar tilkynningar"; +$a->strings["Mark as seen"] = "Merka sem séð"; +$a->strings["Mark all system notifications seen"] = "Merkja allar tilkynningar sem séðar"; +$a->strings["Messages"] = "Skilaboð"; +$a->strings["Private mail"] = "Einka skilaboð"; +$a->strings["Inbox"] = "Innhólf"; +$a->strings["Outbox"] = "Úthólf"; +$a->strings["New Message"] = "Ný skilaboð"; +$a->strings["Manage"] = "Umsýsla"; +$a->strings["Manage other pages"] = "Sýsla með aðrar síður"; +$a->strings["Delegations"] = ""; +$a->strings["Delegate Page Management"] = ""; +$a->strings["Settings"] = "Stillingar"; +$a->strings["Account settings"] = "Stillingar aðgangsreiknings"; +$a->strings["Manage/Edit Profiles"] = "Sýsla með forsíður"; +$a->strings["Manage/edit friends and contacts"] = "Sýsla með vini og tengiliði"; +$a->strings["Admin"] = "Stjórnborð"; +$a->strings["Site setup and configuration"] = "Uppsetning og stillingar vefsvæðis"; +$a->strings["Navigation"] = "Yfirsýn"; +$a->strings["Site map"] = "Yfirlit um vefsvæði"; +$a->strings["%1\$s is attending %2\$s's %3\$s"] = ""; +$a->strings["%1\$s is not attending %2\$s's %3\$s"] = ""; +$a->strings["%1\$s may attend %2\$s's %3\$s"] = ""; +$a->strings["Post to Email"] = "Senda skilaboð á tölvupóst"; +$a->strings["Connectors disabled, since \"%s\" is enabled."] = ""; +$a->strings["Hide your profile details from unknown viewers?"] = "Fela forsíðuupplýsingar fyrir óþekktum?"; +$a->strings["Visible to everybody"] = "Sjáanlegt öllum"; +$a->strings["show"] = "sýna"; +$a->strings["don't show"] = "fela"; +$a->strings["CC: email addresses"] = "CC: tölvupóstfang"; +$a->strings["Example: bob@example.com, mary@example.com"] = "Dæmi: bibbi@vefur.is, mgga@vefur.is"; +$a->strings["Permissions"] = "Aðgangsheimildir"; +$a->strings["Close"] = "Loka"; +$a->strings["[no subject]"] = "[ekkert efni]"; +$a->strings["You must be logged in to use addons. "] = "Þú verður að vera skráður inn til að geta notað viðbætur. "; +$a->strings["Not Found"] = "Fannst ekki"; +$a->strings["Page not found."] = "Síða fannst ekki."; +$a->strings["Permission denied"] = "Bannaður aðgangur"; +$a->strings["toggle mobile"] = ""; +$a->strings["Account approved."] = "Notandi samþykktur."; +$a->strings["Registration revoked for %s"] = "Skráning afturköllurð vegna %s"; +$a->strings["Please login."] = "Skráðu yður inn."; +$a->strings["Post successful."] = "Melding tókst."; +$a->strings["[Embedded content - reload page to view]"] = "[Innfelt efni - endurhlaða síðu til að sjá]"; +$a->strings["People Search - %s"] = "Leita að fólki - %s"; +$a->strings["Forum Search - %s"] = "Leita á spjallsvæði - %s"; +$a->strings["No matches"] = "Engar leitarniðurstöður"; +$a->strings["Access denied."] = "Aðgangi hafnað."; +$a->strings["Welcome to %s"] = "Velkomin í %s"; +$a->strings["No more system notifications."] = "Ekki fleiri kerfistilkynningar."; +$a->strings["System Notifications"] = "Kerfistilkynningar"; +$a->strings["Remove term"] = "Fjarlæga gildi"; +$a->strings["Public access denied."] = "Alemennings aðgangur ekki veittur."; +$a->strings["Only logged in users are permitted to perform a search."] = "Aðeins innskráðir notendur geta framkvæmt leit."; +$a->strings["Too Many Requests"] = "Of margar beiðnir"; +$a->strings["Only one search per minute is permitted for not logged in users."] = "Notendur sem ekki eru innskráðir geta aðeins framkvæmt eina leit á mínútu."; +$a->strings["No results."] = "Engar leitarniðurstöður."; +$a->strings["Items tagged with: %s"] = "Atriði merkt með: %s"; +$a->strings["Results for: %s"] = "Niðurstöður fyrir: %s"; +$a->strings["Invalid request identifier."] = "Ógilt auðkenni beiðnar."; +$a->strings["Discard"] = "Henda"; +$a->strings["Ignore"] = "Hunsa"; +$a->strings["System"] = "Kerfi"; +$a->strings["Personal"] = "Einka"; +$a->strings["Show Ignored Requests"] = "Sýna hunsaðar beiðnir"; +$a->strings["Hide Ignored Requests"] = "Fela hunsaðar beiðnir"; +$a->strings["Notification type: "] = "Gerð skilaboða: "; +$a->strings["Friend Suggestion"] = "Vina tillaga"; +$a->strings["suggested by %s"] = "stungið uppá af %s"; +$a->strings["Hide this contact from others"] = "Gera þennan notanda ósýnilegan öðrum"; +$a->strings["Post a new friend activity"] = "Búa til færslu um nýjan vin"; +$a->strings["if applicable"] = "ef við á"; +$a->strings["Approve"] = "Samþykkja"; +$a->strings["Claims to be known to you: "] = "Þykist þekkja þig:"; +$a->strings["yes"] = "já"; +$a->strings["no"] = "nei"; +$a->strings["Shall your connection be bidirectional or not? \"Friend\" implies that you allow to read and you subscribe to their posts. \"Fan/Admirer\" means that you allow to read but you do not want to read theirs. Approve as: "] = ""; +$a->strings["Shall your connection be bidirectional or not? \"Friend\" implies that you allow to read and you subscribe to their posts. \"Sharer\" means that you allow to read but you do not want to read theirs. Approve as: "] = ""; +$a->strings["Friend"] = "Vin"; +$a->strings["Sharer"] = "Deilir"; +$a->strings["Fan/Admirer"] = "Fylgjandi/Aðdáandi"; +$a->strings["Friend/Connect Request"] = "Vinabeiðni/Tengibeiðni"; +$a->strings["New Follower"] = "Nýr fylgjandi"; +$a->strings["Profile URL"] = "Slóð á forsíðu"; +$a->strings["No introductions."] = "Engar kynningar."; +$a->strings["%s liked %s's post"] = "%s líkaði færsla hjá %s"; +$a->strings["%s disliked %s's post"] = "%s mislíkaði færsla hjá %s"; +$a->strings["%s is now friends with %s"] = "%s er nú vinur %s"; +$a->strings["%s created a new post"] = "%s bjó til færslu"; +$a->strings["%s commented on %s's post"] = "%s athugasemd við %s's færslu"; +$a->strings["No more network notifications."] = "Engar tilkynningar á neti."; +$a->strings["Network Notifications"] = "Tilkynningar á neti"; +$a->strings["No more personal notifications."] = "Engar einka tilkynningar."; +$a->strings["Personal Notifications"] = "Einkatilkynningar."; +$a->strings["No more home notifications."] = "Ekki fleiri heima tilkynningar"; +$a->strings["Home Notifications"] = "Tilkynningar frá heimasvæði"; +$a->strings["Profile not found."] = "Forsíða fannst ekki."; +$a->strings["Contact not found."] = "Tengiliður fannst ekki."; +$a->strings["This may occasionally happen if contact was requested by both persons and it has already been approved."] = ""; +$a->strings["Response from remote site was not understood."] = "Ekki tókst að skilja svar frá ytri vef."; +$a->strings["Unexpected response from remote site: "] = "Óskiljanlegt svar frá ytri vef:"; +$a->strings["Confirmation completed successfully."] = "Staðfesting kláraði eðlilega."; +$a->strings["Remote site reported: "] = "Ytri vefur svaraði:"; +$a->strings["Temporary failure. Please wait and try again."] = "Tímabundin villa. Bíddu aðeins og reyndu svo aftur."; +$a->strings["Introduction failed or was revoked."] = "Kynning mistókst eða var afturkölluð."; +$a->strings["Unable to set contact photo."] = "Ekki tókst að setja tengiliðamynd."; +$a->strings["No user record found for '%s' "] = "Engin notandafærsla fannst fyrir '%s'"; +$a->strings["Our site encryption key is apparently messed up."] = "Dulkóðunnar lykill síðunnar okker er í döðlu."; +$a->strings["Empty site URL was provided or URL could not be decrypted by us."] = "Tómt slóð var uppgefin eða ekki okkur tókst ekki að afkóða slóð."; +$a->strings["Contact record was not found for you on our site."] = "Tengiliðafærslan þín fannst ekki á þjóninum okkar."; +$a->strings["Site public key not available in contact record for URL %s."] = "Opinber lykill er ekki til í tengiliðafærslu fyrir slóð %s."; +$a->strings["The ID provided by your system is a duplicate on our system. It should work if you try again."] = "Skilríkið sem þjónninn þinn gaf upp er þegar afritað á okkar þjón. Þetta ætti að virka ef þú bara reynir aftur."; +$a->strings["Unable to set your contact credentials on our system."] = "Ekki tókst að setja tengiliða skilríkið þitt upp á þjóninum okkar."; +$a->strings["Unable to update your contact profile details on our system"] = "Ekki tókst að uppfæra tengiliða skilríkis upplýsingarnar á okkar þjón"; +$a->strings["%1\$s has joined %2\$s"] = "%1\$s hefur gengið til liðs við %2\$s"; +$a->strings["This is Friendica, version"] = "Þetta er Friendica útgáfa"; +$a->strings["running at web location"] = "Keyrir á slóð"; +$a->strings["Please visit Friendica.com to learn more about the Friendica project."] = "Á Friendica.com er hægt að fræðast nánar um Friendica verkefnið."; +$a->strings["Bug reports and issues: please visit"] = "Villu tilkynningar og vandamál: endilega skoða"; +$a->strings["the bugtracker at github"] = "villuskráningu á GitHub"; +$a->strings["Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - dot com"] = "Uppástungur, lof, framlög og svo framvegis - sendið tölvupóst á \"Info\" hjá Friendica - punktur com"; +$a->strings["Installed plugins/addons/apps:"] = "Uppsettar kerfiseiningar/viðbætur/forrit:"; +$a->strings["No installed plugins/addons/apps"] = "Engin uppsett kerfiseining/viðbót/forrit"; +$a->strings["No valid account found."] = "Engin gildur aðgangur fannst."; +$a->strings["Password reset request issued. Check your email."] = "Gefin var beiðni um breytingu á lykilorði. Opnaðu tölvupóstinn þinn."; +$a->strings["\n\t\tDear %1\$s,\n\t\t\tA request was recently received at \"%2\$s\" to reset your account\n\t\tpassword. In order to confirm this request, please select the verification link\n\t\tbelow or paste it into your web browser address bar.\n\n\t\tIf you did NOT request this change, please DO NOT follow the link\n\t\tprovided and ignore and/or delete this email.\n\n\t\tYour password will not be changed unless we can verify that you\n\t\tissued this request."] = ""; +$a->strings["\n\t\tFollow this link to verify your identity:\n\n\t\t%1\$s\n\n\t\tYou will then receive a follow-up message containing the new password.\n\t\tYou may change that password from your account settings page after logging in.\n\n\t\tThe login details are as follows:\n\n\t\tSite Location:\t%2\$s\n\t\tLogin Name:\t%3\$s"] = ""; +$a->strings["Password reset requested at %s"] = "Beðið var um endurstillingu lykilorðs %s"; +$a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "Ekki var hægt að sannreyna beiðni. (Það getur verið að þú hafir þegar verið búin/n að senda hana.) Endurstilling á lykilorði tókst ekki."; +$a->strings["Your password has been reset as requested."] = "Aðgangsorðið þitt hefur verið endurstilt."; +$a->strings["Your new password is"] = "Nýja aðgangsorð þitt er "; +$a->strings["Save or copy your new password - and then"] = "Vistaðu eða afritaðu nýja aðgangsorðið - og"; +$a->strings["click here to login"] = "smelltu síðan hér til að skrá þig inn"; +$a->strings["Your password may be changed from the Settings page after successful login."] = "Þú getur breytt aðgangsorðinu þínu á Stillingar síðunni eftir að þú hefur skráð þig inn."; +$a->strings["\n\t\t\t\tDear %1\$s,\n\t\t\t\t\tYour password has been changed as requested. Please retain this\n\t\t\t\tinformation for your records (or change your password immediately to\n\t\t\t\tsomething that you will remember).\n\t\t\t"] = ""; +$a->strings["\n\t\t\t\tYour login details are as follows:\n\n\t\t\t\tSite Location:\t%1\$s\n\t\t\t\tLogin Name:\t%2\$s\n\t\t\t\tPassword:\t%3\$s\n\n\t\t\t\tYou may change that password from your account settings page after logging in.\n\t\t\t"] = ""; +$a->strings["Your password has been changed at %s"] = "Aðgangsorðinu þínu var breytt í %s"; +$a->strings["Forgot your Password?"] = "Gleymdir þú lykilorði þínu?"; +$a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Sláðu inn tölvupóstfangið þitt til að endurstilla aðgangsorðið og fá leiðbeiningar sendar með tölvupósti."; +$a->strings["Reset"] = "Endursetja"; +$a->strings["No profile"] = "Engin forsíða"; +$a->strings["Help:"] = "Hjálp:"; +$a->strings["Invalid request."] = "Ógild fyrirspurn."; +$a->strings["Image exceeds size limit of %s"] = ""; +$a->strings["Unable to process image."] = "Ekki mögulegt afgreiða mynd"; +$a->strings["Image upload failed."] = "Ekki hægt að hlaða upp mynd."; +$a->strings["Friend suggestion sent."] = "Vina tillaga send"; +$a->strings["Suggest Friends"] = "Stinga uppá vinum"; +$a->strings["Suggest a friend for %s"] = "Stinga uppá vin fyrir %s"; +$a->strings["Submit"] = "Senda inn"; +$a->strings["Remote privacy information not available."] = "Persónuverndar upplýsingar ekki fyrir hendi á fjarlægum vefþjón."; +$a->strings["Visible to:"] = "Sýnilegt eftirfarandi:"; +$a->strings["Event can not end before it has started."] = ""; +$a->strings["Event title and start time are required."] = ""; +$a->strings["View"] = "Skoða"; +$a->strings["Create New Event"] = "Stofna nýjan atburð"; +$a->strings["Previous"] = "Fyrra"; +$a->strings["Next"] = "Næsta"; +$a->strings["Event details"] = "Nánar um atburð"; +$a->strings["Starting date and Title are required."] = ""; +$a->strings["Event Starts:"] = "Atburður hefst:"; +$a->strings["Required"] = "Nauðsynlegt"; +$a->strings["Finish date/time is not known or not relevant"] = "Loka dagsetning/tímasetning ekki vituð eða skiptir ekki máli"; +$a->strings["Event Finishes:"] = "Atburður klárar:"; +$a->strings["Adjust for viewer timezone"] = "Heimfæra á tímabelti áhorfanda"; +$a->strings["Description:"] = "Lýsing:"; +$a->strings["Title:"] = "Titill:"; +$a->strings["Share this event"] = "Deila þessum atburði"; +$a->strings["Global Directory"] = "Alheimstengiliðaskrá"; +$a->strings["Find on this site"] = "Leita á þessum vef"; +$a->strings["Results for:"] = "Niðurstöður fyrir:"; +$a->strings["Site Directory"] = "Skrá yfir tengiliði á þessum vef"; +$a->strings["No entries (some entries may be hidden)."] = "Engar færslur (sumar geta verið faldar)."; +$a->strings["OpenID protocol error. No ID returned."] = "Samskiptavilla í OpenID. Ekkert auðkenni barst."; +$a->strings["Account not found and OpenID registration is not permitted on this site."] = ""; +$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Þessi vefur hefur náð hámarks fjölda daglegra nýskráninga. Reyndu aftur á morgun."; +$a->strings["Import"] = "Flytja inn"; +$a->strings["Move account"] = "Flytja aðgang"; +$a->strings["You can import an account from another Friendica server."] = ""; +$a->strings["You need to export your account from the old server and upload it here. We will recreate your old account here with all your contacts. We will try also to inform your friends that you moved here."] = ""; +$a->strings["This feature is experimental. We can't import contacts from the OStatus network (GNU Social/Statusnet) or from Diaspora"] = ""; +$a->strings["Account file"] = ""; +$a->strings["To export your account, go to \"Settings->Export your personal data\" and select \"Export account\""] = ""; +$a->strings["Visit %s's profile [%s]"] = "Heimsækja forsíðu %s [%s]"; +$a->strings["Edit contact"] = "Breyta tengilið"; +$a->strings["Contacts who are not members of a group"] = ""; +$a->strings["No keywords to match. Please add keywords to your default profile."] = "Engin leitarorð. Bættu við leitarorðum í sjálfgefnu forsíðuna."; +$a->strings["is interested in:"] = "hefur áhuga á:"; +$a->strings["Profile Match"] = "Forsíða fannst"; +$a->strings["Export account"] = ""; +$a->strings["Export your account info and contacts. Use this to make a backup of your account and/or to move it to another server."] = ""; +$a->strings["Export all"] = ""; +$a->strings["Export your accout info, contacts and all your items as json. Could be a very big file, and could take a lot of time. Use this to make a full backup of your account (photos are not exported)"] = ""; +$a->strings["Export personal data"] = "Sækja persónuleg gögn"; +$a->strings["Total invitation limit exceeded."] = ""; +$a->strings["%s : Not a valid email address."] = "%s : Ekki gilt póstfang"; +$a->strings["Please join us on Friendica"] = ""; +$a->strings["Invitation limit exceeded. Please contact your site administrator."] = ""; +$a->strings["%s : Message delivery failed."] = "%s : Skilaboð komust ekki til skila."; +$a->strings["%d message sent."] = array( + 0 => "%d skilaboð send.", + 1 => "%d skilaboð send", +); +$a->strings["You have no more invitations available"] = "Þú hefur ekki fleiri boðskort."; +$a->strings["Visit %s for a list of public sites that you can join. Friendica members on other sites can all connect with each other, as well as with members of many other social networks."] = ""; +$a->strings["To accept this invitation, please visit and register at %s or any other public Friendica website."] = ""; +$a->strings["Friendica sites all inter-connect to create a huge privacy-enhanced social web that is owned and controlled by its members. They can also connect with many traditional social networks. See %s for a list of alternate Friendica sites you can join."] = ""; +$a->strings["Our apologies. This system is not currently configured to connect with other public sites or invite members."] = ""; +$a->strings["Send invitations"] = "Senda kynningar"; +$a->strings["Enter email addresses, one per line:"] = "Póstföng, eitt í hverja línu:"; +$a->strings["Your message:"] = "Skilaboðin:"; +$a->strings["You are cordially invited to join me and other close friends on Friendica - and help us to create a better social web."] = ""; +$a->strings["You will need to supply this invitation code: \$invite_code"] = "Þú þarft að nota eftirfarandi boðskorta auðkenni: \$invite_code"; +$a->strings["Once you have registered, please connect with me via my profile page at:"] = "Þegar þú hefur nýskráð þig, hafðu samband við mig gegnum síðuna mína á:"; +$a->strings["For more information about the Friendica project and why we feel it is important, please visit http://friendica.com"] = ""; +$a->strings["Contact Photos"] = "Myndir tengiliðs"; +$a->strings["Files"] = "Skrár"; +$a->strings["System down for maintenance"] = "Kerfið er óvirkt vegna viðhalds"; +$a->strings["Invalid profile identifier."] = "Ógilt tengiliða auðkenni"; +$a->strings["Profile Visibility Editor"] = "Sýsla með sjáanleika forsíðu"; +$a->strings["Click on a contact to add or remove."] = "Ýttu á tengilið til að bæta við hóp eða taka úr hóp."; +$a->strings["Visible To"] = "Sjáanlegur hverjum"; +$a->strings["All Contacts (with secure profile access)"] = "Allir tengiliðir (með öruggann aðgang að forsíðu)"; +$a->strings["No contacts."] = "Enginn tengiliður"; +$a->strings["Contact settings applied."] = "Stillingar tengiliðs uppfærðar."; +$a->strings["Contact update failed."] = "Uppfærsla tengiliðs mistókst."; +$a->strings["WARNING: This is highly advanced and if you enter incorrect information your communications with this contact may stop working."] = "AÐVÖRUN: Þetta er mjög flókið og ef þú setur inn vitlausar upplýsingar þá munu samskipti við þennan tengilið hætta að virka."; +$a->strings["Please use your browser 'Back' button now if you are uncertain what to do on this page."] = "Notaðu \"Til baka\" hnappinn núna ef þú ert ekki viss um hvað þú eigir að gera á þessari síðu."; +$a->strings["No mirroring"] = ""; +$a->strings["Mirror as forwarded posting"] = ""; +$a->strings["Mirror as my own posting"] = ""; +$a->strings["Return to contact editor"] = "Fara til baka í tengiliðasýsl"; +$a->strings["Refetch contact data"] = ""; +$a->strings["Name"] = "Nafn"; +$a->strings["Account Nickname"] = "Gælunafn notanda"; +$a->strings["@Tagname - overrides Name/Nickname"] = "@Merkjanafn - yfirskrifar Nafn/Gælunafn"; +$a->strings["Account URL"] = "Heimasíða notanda"; +$a->strings["Friend Request URL"] = "Slóð vinabeiðnar"; +$a->strings["Friend Confirm URL"] = "Slóð vina staðfestingar "; +$a->strings["Notification Endpoint URL"] = "Slóð loka tilkynningar"; +$a->strings["Poll/Feed URL"] = "Slóð á könnun/fréttastraum"; +$a->strings["New photo from this URL"] = "Ný mynd frá slóð"; +$a->strings["Remote Self"] = ""; +$a->strings["Mirror postings from this contact"] = ""; +$a->strings["Mark this contact as remote_self, this will cause friendica to repost new entries from this contact."] = ""; +$a->strings["Tag removed"] = "Merki fjarlægt"; +$a->strings["Remove Item Tag"] = "Fjarlægja merki "; +$a->strings["Select a tag to remove: "] = "Veldu merki til að fjarlægja:"; +$a->strings["Remove"] = "Fjarlægja"; +$a->strings["{0} wants to be your friend"] = "{0} vill vera vinur þinn"; +$a->strings["{0} sent you a message"] = "{0} sendi þér skilboð"; +$a->strings["{0} requested registration"] = "{0} óskaði eftir skráningu"; +$a->strings["Theme settings updated."] = "Þemastillingar uppfærðar."; +$a->strings["Site"] = "Vefur"; +$a->strings["Users"] = "Notendur"; +$a->strings["Plugins"] = "Kerfiseiningar"; +$a->strings["Themes"] = "Þemu"; +$a->strings["Additional features"] = "Viðbótareiginleikar"; +$a->strings["DB updates"] = "Gagnagrunnsuppfærslur"; +$a->strings["Inspect Queue"] = ""; +$a->strings["Federation Statistics"] = ""; +$a->strings["Logs"] = "Atburðaskrá"; +$a->strings["View Logs"] = "Skoða atburðaskrár"; +$a->strings["probe address"] = ""; +$a->strings["check webfinger"] = ""; +$a->strings["Plugin Features"] = "Eiginleikar kerfiseiningar"; +$a->strings["diagnostics"] = "greining"; +$a->strings["User registrations waiting for confirmation"] = "Notenda nýskráningar bíða samþykkis"; +$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."] = ""; +$a->strings["The Auto Discovered Contact Directory feature is not enabled, it will improve the data displayed here."] = ""; +$a->strings["Administration"] = "Stjórnun"; +$a->strings["Currently this node is aware of %d nodes from the following platforms:"] = ""; +$a->strings["ID"] = ""; +$a->strings["Recipient Name"] = "Nafn viðtakanda"; +$a->strings["Recipient Profile"] = "Forsíða viðtakanda"; +$a->strings["Created"] = "Búið til"; +$a->strings["Last Tried"] = "Síðast prófað"; +$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."] = ""; +$a->strings["Normal Account"] = "Venjulegur notandi"; +$a->strings["Soapbox Account"] = "Sápukassa notandi"; +$a->strings["Community/Celebrity Account"] = "Hópa-/Stjörnusíða"; +$a->strings["Automatic Friend Account"] = "Verður sjálfkrafa vinur notandi"; +$a->strings["Blog Account"] = ""; +$a->strings["Private Forum"] = "Einkaspjallsvæði"; +$a->strings["Message queues"] = ""; +$a->strings["Summary"] = "Samantekt"; +$a->strings["Registered users"] = "Skráðir notendur"; +$a->strings["Pending registrations"] = "Nýskráningar í bið"; +$a->strings["Version"] = "Útgáfa"; +$a->strings["Active plugins"] = "Virkar kerfiseiningar"; +$a->strings["Can not parse base url. Must have at least ://"] = ""; +$a->strings["RINO2 needs mcrypt php extension to work."] = ""; +$a->strings["Site settings updated."] = "Stillingar vefsvæðis uppfærðar."; +$a->strings["No special theme for mobile devices"] = ""; +$a->strings["No community page"] = ""; +$a->strings["Public postings from users of this site"] = ""; +$a->strings["Global community page"] = ""; +$a->strings["Never"] = "aldrei"; +$a->strings["At post arrival"] = ""; +$a->strings["Disabled"] = "Slökkt"; +$a->strings["Users, Global Contacts"] = ""; +$a->strings["Users, Global Contacts/fallback"] = ""; +$a->strings["One month"] = "Einn mánuður"; +$a->strings["Three months"] = "Þrír mánuðir"; +$a->strings["Half a year"] = "Hálft ár"; +$a->strings["One year"] = "Eitt ár"; +$a->strings["Multi user instance"] = ""; +$a->strings["Closed"] = "Lokað"; +$a->strings["Requires approval"] = "Þarf samþykki"; +$a->strings["Open"] = "Opið"; +$a->strings["No SSL policy, links will track page SSL state"] = ""; +$a->strings["Force all links to use SSL"] = ""; +$a->strings["Self-signed certificate, use SSL for local links only (discouraged)"] = ""; +$a->strings["Save Settings"] = "Vista stillingar"; +$a->strings["Registration"] = "Nýskráning"; +$a->strings["File upload"] = "Hlaða upp skrá"; +$a->strings["Policies"] = "Stefna"; +$a->strings["Auto Discovered Contact Directory"] = ""; +$a->strings["Performance"] = "Afköst"; +$a->strings["Worker"] = ""; +$a->strings["Relocate - WARNING: advanced function. Could make this server unreachable."] = ""; +$a->strings["Site name"] = "Nafn síðu"; +$a->strings["Host name"] = "Vélarheiti"; +$a->strings["Sender Email"] = "Tölvupóstfang sendanda"; +$a->strings["The email address your server shall use to send notification emails from."] = ""; +$a->strings["Banner/Logo"] = "Borði/Merki"; +$a->strings["Shortcut icon"] = "Táknmynd flýtivísunar"; +$a->strings["Link to an icon that will be used for browsers."] = ""; +$a->strings["Touch icon"] = ""; +$a->strings["Link to an icon that will be used for tablets and mobiles."] = ""; +$a->strings["Additional Info"] = ""; +$a->strings["For public servers: you can add additional information here that will be listed at %s/siteinfo."] = ""; +$a->strings["System language"] = "Tungumál kerfis"; +$a->strings["System theme"] = "Þema kerfis"; +$a->strings["Default system theme - may be over-ridden by user profiles - change theme settings"] = ""; +$a->strings["Mobile system theme"] = ""; +$a->strings["Theme for mobile devices"] = ""; +$a->strings["SSL link policy"] = ""; +$a->strings["Determines whether generated links should be forced to use SSL"] = ""; +$a->strings["Force SSL"] = "Þvinga SSL"; +$a->strings["Force all Non-SSL requests to SSL - Attention: on some systems it could lead to endless loops."] = ""; +$a->strings["Old style 'Share'"] = ""; +$a->strings["Deactivates the bbcode element 'share' for repeating items."] = ""; +$a->strings["Hide help entry from navigation menu"] = ""; +$a->strings["Hides the menu entry for the Help pages from the navigation menu. You can still access it calling /help directly."] = ""; +$a->strings["Single user instance"] = ""; +$a->strings["Make this instance multi-user or single-user for the named user"] = ""; +$a->strings["Maximum image size"] = "Mesta stærð mynda"; +$a->strings["Maximum size in bytes of uploaded images. Default is 0, which means no limits."] = ""; +$a->strings["Maximum image length"] = ""; +$a->strings["Maximum length in pixels of the longest side of uploaded images. Default is -1, which means no limits."] = ""; +$a->strings["JPEG image quality"] = "JPEG myndgæði"; +$a->strings["Uploaded JPEGS will be saved at this quality setting [0-100]. Default is 100, which is full quality."] = ""; +$a->strings["Register policy"] = "Stefna varðandi nýskráningar"; +$a->strings["Maximum Daily Registrations"] = ""; +$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."] = ""; +$a->strings["Register text"] = "Texti við nýskráningu"; +$a->strings["Will be displayed prominently on the registration page."] = ""; +$a->strings["Accounts abandoned after x days"] = "Yfirgefnir notendur eftir x daga"; +$a->strings["Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit."] = "Hættir að eyða afli í að sækja færslur á ytri vefi fyrir yfirgefna notendur. 0 þýðir notendur merkjast ekki yfirgefnir."; +$a->strings["Allowed friend domains"] = "Leyfð lén vina"; +$a->strings["Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains"] = ""; +$a->strings["Allowed email domains"] = "Leyfð lén póstfangs"; +$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"] = ""; +$a->strings["Block public"] = "Loka á opinberar færslur"; +$a->strings["Check to block public access to all otherwise public personal pages on this site unless you are currently logged in."] = ""; +$a->strings["Force publish"] = "Skylda að vera í tengiliðalista"; +$a->strings["Check to force all profiles on this site to be listed in the site directory."] = ""; +$a->strings["Global directory URL"] = ""; +$a->strings["URL to the global directory. If this is not set, the global directory is completely unavailable to the application."] = ""; +$a->strings["Allow threaded items"] = ""; +$a->strings["Allow infinite level threading for items on this site."] = ""; +$a->strings["Private posts by default for new users"] = ""; +$a->strings["Set default post permissions for all new members to the default privacy group rather than public."] = ""; +$a->strings["Don't include post content in email notifications"] = ""; +$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."] = ""; +$a->strings["Disallow public access to addons listed in the apps menu."] = "Hindra opið aðgengi að viðbótum í forritavalmyndinni."; +$a->strings["Checking this box will restrict addons listed in the apps menu to members only."] = "Ef hakað er í þetta verður aðgengi að viðbótum í forritavalmyndinni takmarkað við meðlimi."; +$a->strings["Don't embed private images in posts"] = ""; +$a->strings["Don't replace locally-hosted private photos in posts with an embedded copy of the image. This means that contacts who receive posts containing private photos will have to authenticate and load each image, which may take a while."] = ""; +$a->strings["Allow Users to set remote_self"] = ""; +$a->strings["With checking this, every user is allowed to mark every contact as a remote_self in the repair contact dialog. Setting this flag on a contact causes mirroring every posting of that contact in the users stream."] = ""; +$a->strings["Block multiple registrations"] = "Banna margar skráningar"; +$a->strings["Disallow users to register additional accounts for use as pages."] = ""; +$a->strings["OpenID support"] = "Leyfa OpenID auðkenningu"; +$a->strings["OpenID support for registration and logins."] = ""; +$a->strings["Fullname check"] = "Fullt nafn skilyrði"; +$a->strings["Force users to register with a space between firstname and lastname in Full name, as an antispam measure"] = ""; +$a->strings["UTF-8 Regular expressions"] = "UTF-8 hefðbundin stöfun"; +$a->strings["Use PHP UTF8 regular expressions"] = ""; +$a->strings["Community Page Style"] = ""; +$a->strings["Type of community page to show. 'Global community' shows every public posting from an open distributed network that arrived on this server."] = ""; +$a->strings["Posts per user on community page"] = ""; +$a->strings["The maximum number of posts per user on the community page. (Not valid for 'Global Community')"] = ""; +$a->strings["Enable OStatus support"] = "Leyfa OStatus stuðning"; +$a->strings["Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All communications in OStatus are public, so privacy warnings will be occasionally displayed."] = ""; +$a->strings["OStatus conversation completion interval"] = ""; +$a->strings["How often shall the poller check for new entries in OStatus conversations? This can be a very ressource task."] = ""; +$a->strings["Only import OStatus threads from our contacts"] = ""; +$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."] = ""; +$a->strings["OStatus support can only be enabled if threading is enabled."] = ""; +$a->strings["Diaspora support can't be enabled because Friendica was installed into a sub directory."] = ""; +$a->strings["Enable Diaspora support"] = "Leyfa Diaspora tengingar"; +$a->strings["Provide built-in Diaspora network compatibility."] = ""; +$a->strings["Only allow Friendica contacts"] = "Aðeins leyfa Friendica notendur"; +$a->strings["All contacts must use Friendica protocols. All other built-in communication protocols disabled."] = ""; +$a->strings["Verify SSL"] = "Sannreyna SSL"; +$a->strings["If you wish, you can turn on strict certificate checking. This will mean you cannot connect (at all) to self-signed SSL sites."] = ""; +$a->strings["Proxy user"] = "Proxy notandi"; +$a->strings["Proxy URL"] = "Proxy slóð"; +$a->strings["Network timeout"] = "Net tími útrunninn"; +$a->strings["Value is in seconds. Set to 0 for unlimited (not recommended)."] = ""; +$a->strings["Delivery interval"] = ""; +$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."] = ""; +$a->strings["Poll interval"] = ""; +$a->strings["Delay background polling processes by this many seconds to reduce system load. If 0, use delivery interval."] = ""; +$a->strings["Maximum Load Average"] = "Mesta meðaltals álag"; +$a->strings["Maximum system load before delivery and poll processes are deferred - default 50."] = ""; +$a->strings["Maximum Load Average (Frontend)"] = ""; +$a->strings["Maximum system load before the frontend quits service - default 50."] = ""; +$a->strings["Maximum table size for optimization"] = ""; +$a->strings["Maximum table size (in MB) for the automatic optimization - default 100 MB. Enter -1 to disable it."] = ""; +$a->strings["Minimum level of fragmentation"] = ""; +$a->strings["Minimum fragmenation level to start the automatic optimization - default value is 30%."] = ""; +$a->strings["Periodical check of global contacts"] = ""; +$a->strings["If enabled, the global contacts are checked periodically for missing or outdated data and the vitality of the contacts and servers."] = ""; +$a->strings["Days between requery"] = ""; +$a->strings["Number of days after which a server is requeried for his contacts."] = ""; +$a->strings["Discover contacts from other servers"] = ""; +$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'."] = ""; +$a->strings["Timeframe for fetching global contacts"] = ""; +$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."] = ""; +$a->strings["Search the local directory"] = ""; +$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."] = ""; +$a->strings["Publish server information"] = ""; +$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 the-federation.info for details."] = ""; +$a->strings["Use MySQL full text engine"] = ""; +$a->strings["Activates the full text engine. Speeds up search - but can only search for four and more characters."] = ""; +$a->strings["Suppress Language"] = ""; +$a->strings["Suppress language information in meta information about a posting."] = ""; +$a->strings["Suppress Tags"] = ""; +$a->strings["Suppress showing a list of hashtags at the end of the posting."] = ""; +$a->strings["Path to item cache"] = ""; +$a->strings["The item caches buffers generated bbcode and external images."] = ""; +$a->strings["Cache duration in seconds"] = ""; +$a->strings["How long should the cache files be hold? Default value is 86400 seconds (One day). To disable the item cache, set the value to -1."] = ""; +$a->strings["Maximum numbers of comments per post"] = ""; +$a->strings["How much comments should be shown for each post? Default value is 100."] = ""; +$a->strings["Path for lock file"] = ""; +$a->strings["The lock file is used to avoid multiple pollers at one time. Only define a folder here."] = ""; +$a->strings["Temp path"] = ""; +$a->strings["If you have a restricted system where the webserver can't access the system temp path, enter another path here."] = ""; +$a->strings["Base path to 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."] = ""; +$a->strings["Disable picture proxy"] = ""; +$a->strings["The picture proxy increases performance and privacy. It shouldn't be used on systems with very low bandwith."] = ""; +$a->strings["Enable old style pager"] = ""; +$a->strings["The old style pager has page numbers but slows down massively the page speed."] = ""; +$a->strings["Only search in tags"] = ""; +$a->strings["On large systems the text search can slow down the system extremely."] = ""; +$a->strings["New base url"] = ""; +$a->strings["Change base url for this server. Sends relocate message to all DFRN contacts of all users."] = ""; +$a->strings["RINO Encryption"] = ""; +$a->strings["Encryption layer between nodes."] = ""; +$a->strings["Embedly API key"] = ""; +$a->strings["Embedly is used to fetch additional data for web pages. This is an optional parameter."] = ""; +$a->strings["Enable 'worker' background processing"] = ""; +$a->strings["The worker background processing limits the number of parallel background jobs to a maximum number and respects the system load."] = ""; +$a->strings["Maximum number of parallel workers"] = ""; +$a->strings["On shared hosters set this to 2. On larger systems, values of 10 are great. Default value is 4."] = ""; +$a->strings["Don't use 'proc_open' with the worker"] = ""; +$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."] = ""; +$a->strings["Update has been marked successful"] = "Uppfærsla merkt sem tókst"; +$a->strings["Database structure update %s was successfully applied."] = ""; +$a->strings["Executing of database structure update %s failed with error: %s"] = ""; +$a->strings["Executing %s failed with error: %s"] = ""; +$a->strings["Update %s was successfully applied."] = "Uppfærsla %s framkvæmd."; +$a->strings["Update %s did not return a status. Unknown if it succeeded."] = "Uppfærsla %s skilaði ekki gildi. Óvíst hvort tókst."; +$a->strings["There was no additional update function %s that needed to be called."] = ""; +$a->strings["No failed updates."] = "Engar uppfærslur mistókust."; +$a->strings["Check database structure"] = ""; +$a->strings["Failed Updates"] = "Uppfærslur sem mistókust"; +$a->strings["This does not include updates prior to 1139, which did not return a status."] = "Þetta á ekki við uppfærslur fyrir 1139, þær skiluðu ekki lokastöðu."; +$a->strings["Mark success (if update was manually applied)"] = "Merkja sem tókst (ef uppfærsla var framkvæmd handvirkt)"; +$a->strings["Attempt to execute this update step automatically"] = "Framkvæma þessa uppfærslu sjálfkrafa"; +$a->strings["\n\t\t\tDear %1\$s,\n\t\t\t\tthe administrator of %2\$s has set up an account for you."] = ""; +$a->strings["\n\t\t\tThe login details are as follows:\n\n\t\t\tSite Location:\t%1\$s\n\t\t\tLogin Name:\t\t%2\$s\n\t\t\tPassword:\t\t%3\$s\n\n\t\t\tYou may change your password from your account \"Settings\" page after logging\n\t\t\tin.\n\n\t\t\tPlease take a few moments to review the other account settings on that page.\n\n\t\t\tYou may also wish to add some basic information to your default profile\n\t\t\t(on the \"Profiles\" page) so that other people can easily find you.\n\n\t\t\tWe recommend setting your full name, adding a profile photo,\n\t\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n\t\t\tperhaps what country you live in; if you do not wish to be more specific\n\t\t\tthan that.\n\n\t\t\tWe fully respect your right to privacy, and none of these items are necessary.\n\t\t\tIf you are new and do not know anybody here, they may help\n\t\t\tyou to make some new and interesting friends.\n\n\t\t\tThank you and welcome to %4\$s."] = ""; +$a->strings["%s user blocked/unblocked"] = array( 0 => "", 1 => "", ); -$a->strings["Done. You can now login with your username and password"] = ""; -$a->strings["toggle mobile"] = ""; +$a->strings["%s user deleted"] = array( + 0 => "%s notenda eytt", + 1 => "%s notendum eytt", +); +$a->strings["User '%s' deleted"] = "Notanda '%s' eytt"; +$a->strings["User '%s' unblocked"] = "Notanda '%s' gefið frelsi"; +$a->strings["User '%s' blocked"] = "Notanda '%s' settur í bann"; +$a->strings["Register date"] = "Skráningar dagsetning"; +$a->strings["Last login"] = "Síðast innskráður"; +$a->strings["Last item"] = "Síðasta"; +$a->strings["Account"] = "Notandi"; +$a->strings["Add User"] = ""; +$a->strings["select all"] = "velja alla"; +$a->strings["User registrations waiting for confirm"] = "Skráning notanda býður samþykkis"; +$a->strings["User waiting for permanent deletion"] = ""; +$a->strings["Request date"] = "Dagsetning beiðnar"; +$a->strings["No registrations."] = "Engin skráning"; +$a->strings["Deny"] = "Hafnað"; +$a->strings["Block"] = "Banna"; +$a->strings["Unblock"] = "Afbanna"; +$a->strings["Site admin"] = "Vefstjóri"; +$a->strings["Account expired"] = ""; +$a->strings["New User"] = ""; +$a->strings["Deleted since"] = ""; +$a->strings["Selected users will be deleted!\\n\\nEverything these users had posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "Valdir notendur verður eytt!\\n\\nAllt sem þessir notendur hafa deilt á þessum vef verður varanlega eytt!\\n\\nErtu alveg viss?"; +$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?"] = "Notandinn {0} verður eytt!\\n\\nAllt sem þessi notandi hefur deilt á þessum vef veður varanlega eytt!\\n\\nErtu alveg viss?"; +$a->strings["Name of the new user."] = ""; +$a->strings["Nickname"] = ""; +$a->strings["Nickname of the new user."] = ""; +$a->strings["Email address of the new user."] = ""; +$a->strings["Plugin %s disabled."] = "Kerfiseining %s óvirk."; +$a->strings["Plugin %s enabled."] = "Kveikt á kerfiseiningu %s"; +$a->strings["Disable"] = "Slökkva"; +$a->strings["Enable"] = "Kveikja"; +$a->strings["Toggle"] = "Skipta"; +$a->strings["Author: "] = "Höfundur:"; +$a->strings["Maintainer: "] = ""; +$a->strings["Reload active plugins"] = "Endurhlaða virkar kerfiseiningar"; +$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"] = ""; +$a->strings["No themes found."] = "Engin þemu fundust"; +$a->strings["Screenshot"] = "Skjámynd"; +$a->strings["Reload active themes"] = ""; +$a->strings["No themes found on the system. They should be paced in %1\$s"] = ""; +$a->strings["[Experimental]"] = "[Tilraun]"; +$a->strings["[Unsupported]"] = "[Óstudd]"; +$a->strings["Log settings updated."] = "Stillingar atburðaskrár uppfærðar. "; +$a->strings["Clear"] = "Hreinsa"; +$a->strings["Enable Debugging"] = ""; +$a->strings["Log file"] = "Atburðaskrá"; +$a->strings["Must be writable by web server. Relative to your Friendica top-level directory."] = "Vefþjónn verður að hafa skrifréttindi. Afstætt við Friendica rótar skráarsafn."; +$a->strings["Log level"] = "Stig atburðaskráningar"; +$a->strings["PHP logging"] = ""; +$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."] = ""; +$a->strings["Off"] = ""; +$a->strings["On"] = ""; +$a->strings["Lock feature %s"] = ""; +$a->strings["Manage Additional Features"] = ""; +$a->strings["Sorry, maybe your upload is bigger than the PHP configuration allows"] = ""; +$a->strings["Or - did you try to upload an empty file?"] = ""; +$a->strings["File exceeds size limit of %s"] = ""; +$a->strings["File upload failed."] = "Skráar upphlöðun mistókst."; +$a->strings["No friends to display."] = "Engir vinir til að birta."; +$a->strings["Access to this profile has been restricted."] = "Aðgangur að þessari forsíðu hefur verið heftur."; +$a->strings["User not found"] = ""; +$a->strings["This calendar format is not supported"] = ""; +$a->strings["No exportable data found"] = ""; +$a->strings["calendar"] = ""; +$a->strings["No such group"] = "Hópur ekki til"; +$a->strings["Group is empty"] = "Hópur er tómur"; +$a->strings["Group: %s"] = ""; +$a->strings["This entry was edited"] = ""; +$a->strings["%d comment"] = array( + 0 => "%d ummæli", + 1 => "%d ummæli", +); +$a->strings["Private Message"] = "Einkaskilaboð"; +$a->strings["I like this (toggle)"] = "Mér líkar þetta (kveikja/slökkva)"; +$a->strings["like"] = "líkar"; +$a->strings["I don't like this (toggle)"] = "Mér líkar þetta ekki (kveikja/slökkva)"; +$a->strings["dislike"] = "mislíkar"; +$a->strings["Share this"] = "Deila þessu"; +$a->strings["share"] = "deila"; +$a->strings["This is you"] = "Þetta ert þú"; +$a->strings["Bold"] = "Feitletrað"; +$a->strings["Italic"] = "Skáletrað"; +$a->strings["Underline"] = "Undirstrikað"; +$a->strings["Quote"] = "Gæsalappir"; +$a->strings["Code"] = "Kóði"; +$a->strings["Image"] = "Mynd"; +$a->strings["Link"] = "Tengill"; +$a->strings["Video"] = "Myndband"; +$a->strings["Edit"] = "Breyta"; +$a->strings["add star"] = "bæta við stjörnu"; +$a->strings["remove star"] = "eyða stjörnu"; +$a->strings["toggle star status"] = "Kveikja/slökkva á stjörnu"; +$a->strings["starred"] = "stjörnumerkt"; +$a->strings["add tag"] = "bæta við merki"; +$a->strings["ignore thread"] = ""; +$a->strings["unignore thread"] = ""; +$a->strings["toggle ignore status"] = ""; +$a->strings["ignored"] = "hunsað"; +$a->strings["save to folder"] = "vista í möppu"; +$a->strings["I will attend"] = ""; +$a->strings["I will not attend"] = ""; +$a->strings["I might attend"] = ""; +$a->strings["to"] = "við"; +$a->strings["Wall-to-Wall"] = "vegg við vegg"; +$a->strings["via Wall-To-Wall:"] = "gegnum vegg við vegg"; +$a->strings["Resubscribing to OStatus contacts"] = ""; +$a->strings["Error"] = ""; +$a->strings["Done"] = "Lokið"; +$a->strings["Keep this window open until done."] = ""; +$a->strings["No potential page delegates located."] = "Engir mögulegir viðtakendur síðunnar fundust."; +$a->strings["Delegates are able to manage all aspects of this account/page except for basic account settings. Please do not delegate your personal account to anybody that you do not trust completely."] = ""; +$a->strings["Existing Page Managers"] = ""; +$a->strings["Existing Page Delegates"] = ""; +$a->strings["Potential Delegates"] = ""; +$a->strings["Add"] = "Bæta við"; +$a->strings["No entries."] = "Engar færslur."; +$a->strings["Do you really want to delete this video?"] = ""; +$a->strings["Delete Video"] = ""; +$a->strings["No videos selected"] = ""; +$a->strings["Access to this item is restricted."] = "Aðgangur að þessum hlut hefur verið heftur"; +$a->strings["View Album"] = "Skoða myndabók"; +$a->strings["Recent Videos"] = ""; +$a->strings["Upload New Videos"] = ""; +$a->strings["Profile deleted."] = "Forsíðu eytt."; +$a->strings["Profile-"] = "Forsíða-"; +$a->strings["New profile created."] = "Ný forsíða búinn til."; +$a->strings["Profile unavailable to clone."] = "Ekki tókst að klóna forsíðu"; +$a->strings["Profile Name is required."] = "Nafn á forsíðu er skilyrði"; +$a->strings["Marital Status"] = ""; +$a->strings["Romantic Partner"] = ""; +$a->strings["Work/Employment"] = ""; +$a->strings["Religion"] = ""; +$a->strings["Political Views"] = ""; +$a->strings["Gender"] = ""; +$a->strings["Sexual Preference"] = ""; +$a->strings["Homepage"] = ""; +$a->strings["Interests"] = ""; +$a->strings["Address"] = ""; +$a->strings["Location"] = ""; +$a->strings["Profile updated."] = "Forsíða uppfærð."; +$a->strings[" and "] = "og"; +$a->strings["public profile"] = "Opinber forsíða"; +$a->strings["%1\$s changed %2\$s to “%3\$s”"] = ""; +$a->strings[" - Visit %1\$s's %2\$s"] = ""; +$a->strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s hefur uppfært %2\$s, með því að breyta %3\$s."; +$a->strings["Hide contacts and friends:"] = ""; +$a->strings["No"] = "Nei"; +$a->strings["Hide your contact/friend list from viewers of this profile?"] = "Fela tengiliða-/vinalista á þessari forsíðu?"; +$a->strings["Show more profile fields:"] = ""; +$a->strings["Profile Actions"] = ""; +$a->strings["Edit Profile Details"] = "Breyta forsíðu upplýsingum"; +$a->strings["Change Profile Photo"] = ""; +$a->strings["View this profile"] = "Skoða þessa forsíðu"; +$a->strings["Create a new profile using these settings"] = "Búa til nýja forsíðu með þessum stillingum"; +$a->strings["Clone this profile"] = "Klóna þessa forsíðu"; +$a->strings["Delete this profile"] = "Eyða þessari forsíðu"; +$a->strings["Basic information"] = ""; +$a->strings["Profile picture"] = ""; +$a->strings["Preferences"] = ""; +$a->strings["Status information"] = ""; +$a->strings["Additional information"] = ""; +$a->strings["Relation"] = ""; +$a->strings["Upload Profile Photo"] = "Hlaða upp forsíðu mynd"; +$a->strings["Your Gender:"] = "Kyn:"; +$a->strings[" Marital Status:"] = " Hjúskaparstaða:"; +$a->strings["Example: fishing photography software"] = "Til dæmis: fishing photography software"; +$a->strings["Profile Name:"] = "Forsíðu nafn:"; +$a->strings["This is your public profile.
It may be visible to anybody using the internet."] = "Þetta er opinber forsíða.
Hún verður sjáanleg öðrum sem nota alnetið."; +$a->strings["Your Full Name:"] = "Fullt nafn:"; +$a->strings["Title/Description:"] = "Starfsheiti/Lýsing:"; +$a->strings["Street Address:"] = "Gata:"; +$a->strings["Locality/City:"] = "Bær/Borg:"; +$a->strings["Region/State:"] = "Svæði/Sýsla"; +$a->strings["Postal/Zip Code:"] = "Póstnúmer:"; +$a->strings["Country:"] = "Land:"; +$a->strings["Who: (if applicable)"] = "Hver: (ef við á)"; +$a->strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Dæmi: cathy123, Cathy Williams, cathy@example.com"; +$a->strings["Since [date]:"] = ""; +$a->strings["Tell us about yourself..."] = "Segðu okkur frá sjálfum þér..."; +$a->strings["Homepage URL:"] = "Slóð heimasíðu:"; +$a->strings["Religious Views:"] = "Trúarskoðanir"; +$a->strings["Public Keywords:"] = "Opinber leitarorð:"; +$a->strings["(Used for suggesting potential friends, can be seen by others)"] = "(Notað til að stinga uppá mögulegum vinum, aðrir geta séð)"; +$a->strings["Private Keywords:"] = "Einka leitarorð:"; +$a->strings["(Used for searching profiles, never shown to others)"] = "(Notað við leit að öðrum notendum, aldrei sýnt öðrum)"; +$a->strings["Musical interests"] = "Tónlistarsmekkur"; +$a->strings["Books, literature"] = "Bækur, bókmenntir"; +$a->strings["Television"] = "Sjónvarp"; +$a->strings["Film/dance/culture/entertainment"] = "Kvikmyndir/dans/menning/afþreying"; +$a->strings["Hobbies/Interests"] = "Áhugamál"; +$a->strings["Love/romance"] = "Ást/rómantík"; +$a->strings["Work/employment"] = "Atvinna:"; +$a->strings["School/education"] = "Skóli/menntun"; +$a->strings["Contact information and Social Networks"] = "Tengiliðaupplýsingar og samfélagsnet"; +$a->strings["Edit/Manage Profiles"] = "Sýsla með forsíður"; +$a->strings["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!"] = ""; +$a->strings["- select -"] = "- veldu -"; +$a->strings["Poke/Prod"] = ""; +$a->strings["poke, prod or do other things to somebody"] = ""; +$a->strings["Recipient"] = ""; +$a->strings["Choose what you wish to do to recipient"] = ""; +$a->strings["Make this post private"] = ""; +$a->strings["Recent Photos"] = "Nýlegar myndir"; +$a->strings["Upload New Photos"] = "Hlaða upp nýjum myndum"; +$a->strings["everybody"] = "allir"; +$a->strings["Contact information unavailable"] = "Tengiliða upplýsingar ekki til"; +$a->strings["Album not found."] = "Myndabók finnst ekki."; +$a->strings["Delete Album"] = "Fjarlægja myndabók"; +$a->strings["Do you really want to delete this photo album and all its photos?"] = ""; +$a->strings["Delete Photo"] = "Fjarlægja mynd"; +$a->strings["Do you really want to delete this photo?"] = ""; +$a->strings["%1\$s was tagged in %2\$s by %3\$s"] = ""; +$a->strings["a photo"] = "mynd"; +$a->strings["Image file is empty."] = "Mynda skrá er tóm."; +$a->strings["No photos selected"] = "Engar myndir valdar"; +$a->strings["You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."] = ""; +$a->strings["Upload Photos"] = "Hlaða upp myndum"; +$a->strings["New album name: "] = "Nýtt nafn myndbókar:"; +$a->strings["or existing album name: "] = "eða fyrra nafn myndbókar:"; +$a->strings["Do not show a status post for this upload"] = "Ekki sýna færslu fyrir þessari upphölun"; +$a->strings["Show to Groups"] = "Birta hópum"; +$a->strings["Show to Contacts"] = "Birta tengiliðum"; +$a->strings["Private Photo"] = "Einkamynd"; +$a->strings["Public Photo"] = "Opinber mynd"; +$a->strings["Edit Album"] = "Breyta myndbók"; +$a->strings["Show Newest First"] = "Birta nýjast fyrst"; +$a->strings["Show Oldest First"] = "Birta elsta fyrst"; +$a->strings["View Photo"] = "Skoða mynd"; +$a->strings["Permission denied. Access to this item may be restricted."] = "Aðgangi hafnað. Aðgangur að þessum hlut kann að vera skertur."; +$a->strings["Photo not available"] = "Mynd ekki til"; +$a->strings["View photo"] = "Birta mynd"; +$a->strings["Edit photo"] = "Breyta mynd"; +$a->strings["Use as profile photo"] = "Nota sem forsíðu mynd"; +$a->strings["View Full Size"] = "Skoða í fullri stærð"; +$a->strings["Tags: "] = "Merki:"; +$a->strings["[Remove any tag]"] = "[Fjarlægja öll merki]"; +$a->strings["New album name"] = "Nýtt nafn myndbókar"; +$a->strings["Caption"] = "Yfirskrift"; +$a->strings["Add a Tag"] = "Bæta við merki"; +$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"] = "Til dæmis: @bob, @Barbara_Jensen, @jim@example.com, #Reykjavík #tjalda"; +$a->strings["Do not rotate"] = ""; +$a->strings["Rotate CW (right)"] = ""; +$a->strings["Rotate CCW (left)"] = ""; +$a->strings["Private photo"] = "Einkamynd"; +$a->strings["Public photo"] = "Opinber mynd"; +$a->strings["Map"] = ""; +$a->strings["Friendica Communications Server - Setup"] = ""; +$a->strings["Could not connect to database."] = "Gat ekki tengst gagnagrunn."; +$a->strings["Could not create table."] = "Gat ekki búið til töflu."; +$a->strings["Your Friendica site database has been installed."] = "Friendica gagnagrunnurinn þinn hefur verið uppsettur."; +$a->strings["You may need to import the file \"database.sql\" manually using phpmyadmin or mysql."] = "Þú þarft mögulega að keyra inn skránna \"database.sql\" handvirkt með phpmyadmin eða mysql."; +$a->strings["Please see the file \"INSTALL.txt\"."] = "Lestu skrána \"INSTALL.txt\"."; +$a->strings["Database already in use."] = ""; +$a->strings["System check"] = "Kerfis prófun"; +$a->strings["Check again"] = "Prófa aftur"; +$a->strings["Database connection"] = "Gangagrunns tenging"; +$a->strings["In order to install Friendica we need to know how to connect to your database."] = "Til að setja upp Friendica þurfum við að vita hvernig á að tengjast gagnagrunninum þínum."; +$a->strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Hafðu samband við hýsingaraðilann þinn eða kerfisstjóra ef þú hefur spurningar varðandi þessar stillingar."; +$a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "Gagnagrunnurinn sem þú bendir á þarf þegar að vera til. Ef ekki þá þarf að stofna hann áður en haldið er áfram."; +$a->strings["Database Server Name"] = "Vélanafn gagangrunns"; +$a->strings["Database Login Name"] = "Notendanafn í gagnagrunn"; +$a->strings["Database Login Password"] = "Aðgangsorð í gagnagrunns"; +$a->strings["Database Name"] = "Nafn gagnagrunns"; +$a->strings["Site administrator email address"] = "Póstfang kerfisstjóra vefsvæðis"; +$a->strings["Your account email address must match this in order to use the web admin panel."] = "Póstfang aðgangsins þíns verður að passa við þetta til að hægt sé að nota umsýsluvefviðmótið."; +$a->strings["Please select a default timezone for your website"] = "Veldu sjálfgefið tímabelti fyrir vefsíðuna"; +$a->strings["Site settings"] = "Stillingar vefsvæðis"; +$a->strings["System Language:"] = ""; +$a->strings["Set the default language for your Friendica installation interface and to send emails."] = ""; +$a->strings["Could not find a command line version of PHP in the web server PATH."] = "Gat ekki fundið skipanalínu útgáfu af PHP í vefþjóns PATH."; +$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 'Setup the poller'"] = ""; +$a->strings["PHP executable path"] = "PHP keyrslu slóð"; +$a->strings["Enter full path to php executable. You can leave this blank to continue the installation."] = ""; +$a->strings["Command line PHP"] = "Skipanalínu PHP"; +$a->strings["PHP executable is not the php cli binary (could be cgi-fgci version)"] = ""; +$a->strings["Found PHP version: "] = ""; +$a->strings["PHP cli binary"] = ""; +$a->strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "Skipanalínu útgáfa af PHP á vefþjóninum hefur ekki kveikt á \"register_argc_argv\"."; +$a->strings["This is required for message delivery to work."] = "Þetta er skilyrt fyrir því að skilaboð komist til skila."; +$a->strings["PHP register_argc_argv"] = ""; +$a->strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = "Villa: Stefjan \"openssl_pkey_new\" á vefþjóninum getur ekki stofnað dulkóðunar lykla"; +$a->strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "Ef keyrt er á Window, skoðaðu þá \"http://www.php.net/manual/en/openssl.installation.php\"."; +$a->strings["Generate encryption keys"] = "Búa til dulkóðunar lykla"; +$a->strings["libCurl PHP module"] = "libCurl PHP eining"; +$a->strings["GD graphics PHP module"] = "GD graphics PHP eining"; +$a->strings["OpenSSL PHP module"] = "OpenSSL PHP eining"; +$a->strings["mysqli PHP module"] = "mysqli PHP eining"; +$a->strings["mb_string PHP module"] = "mb_string PHP eining"; +$a->strings["mcrypt PHP module"] = ""; +$a->strings["XML PHP module"] = ""; +$a->strings["Apache mod_rewrite module"] = "Apache mod_rewrite eining"; +$a->strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Villa: Apache vefþjóns eining mod-rewrite er skilyrði og er ekki uppsett. "; +$a->strings["Error: libCURL PHP module required but not installed."] = "Villa: libCurl PHP eining er skilyrði og er ekki uppsett."; +$a->strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Villa: GD graphics PHP eining með JPEG stuðningi er skilyrði og er ekki uppsett."; +$a->strings["Error: openssl PHP module required but not installed."] = "Villa: openssl PHP eining skilyrði og er ekki uppsett."; +$a->strings["Error: mysqli PHP module required but not installed."] = "Villa: mysqli PHP eining er skilyrði og er ekki uppsett"; +$a->strings["Error: mb_string PHP module required but not installed."] = "Villa: mb_string PHP eining skilyrði en ekki uppsett."; +$a->strings["Error: mcrypt PHP module required but not installed."] = ""; +$a->strings["If you are using php_cli, please make sure that mcrypt module is enabled in its config file"] = ""; +$a->strings["Function mcrypt_create_iv() is not defined. This is needed to enable RINO2 encryption layer."] = ""; +$a->strings["mcrypt_create_iv() function"] = ""; +$a->strings["Error, XML PHP module required but not installed."] = ""; +$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."] = "Vef uppsetningar forrit þarf að geta stofnað skránna \".htconfig.php\" in efsta skráarsafninu á vefþjóninum og það getur ekki gert það."; +$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."] = "Þetta er oftast aðgangsstýringa stilling, þar sem vefþjónninn getur ekki skrifað út skrár í skráarsafnið - þó þú getir það."; +$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."] = ""; +$a->strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"INSTALL.txt\" for instructions."] = ""; +$a->strings[".htconfig.php is writable"] = ".htconfig.php er skrifanleg"; +$a->strings["Friendica uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = ""; +$a->strings["In order to store these compiled templates, the web server needs to have write access to the directory view/smarty3/ under the Friendica top level folder."] = ""; +$a->strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = ""; +$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."] = ""; +$a->strings["view/smarty3 is writable"] = ""; +$a->strings["Url rewrite in .htaccess is not working. Check your server configuration."] = ""; +$a->strings["Url rewrite is working"] = ""; +$a->strings["ImageMagick PHP extension is installed"] = ""; +$a->strings["ImageMagick supports 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."] = "Ekki tókst að skrifa stillingaskrá gagnagrunns \".htconfig.php\". Notað meðfylgjandi texta til að búa til stillingarskrá í rót vefþjónsins."; +$a->strings["

What next

"] = ""; +$a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "MIKILVÆGT: Þú þarft að [handvirkt] setja upp sjálfvirka keyrslu á poller."; +$a->strings["%1\$s is following %2\$s's %3\$s"] = ""; +$a->strings["Item not available."] = "Atriði ekki í boði."; +$a->strings["Item was not found."] = "Atriði fannst ekki"; +$a->strings["%d contact edited."] = array( + 0 => "", + 1 => "", +); +$a->strings["Could not access contact record."] = "Tókst ekki að ná í uppl. um tengilið"; +$a->strings["Could not locate selected profile."] = "Tókst ekki að staðsetja valinn forsíðu"; +$a->strings["Contact updated."] = "Tengiliður uppfærður"; +$a->strings["Failed to update contact record."] = "Ekki tókst að uppfæra tengiliðs skrá."; +$a->strings["Contact has been blocked"] = "Lokað á tengilið"; +$a->strings["Contact has been unblocked"] = "Opnað á tengilið"; +$a->strings["Contact has been ignored"] = "Tengiliður hunsaður"; +$a->strings["Contact has been unignored"] = "Tengiliður afhunsaður"; +$a->strings["Contact has been archived"] = "Tengiliður settur í geymslu"; +$a->strings["Contact has been unarchived"] = "Tengiliður tekinn úr geymslu"; +$a->strings["Do you really want to delete this contact?"] = "Viltu í alvörunni eyða þessum tengilið?"; +$a->strings["Contact has been removed."] = "Tengiliður fjarlægður"; +$a->strings["You are mutual friends with %s"] = "Þú ert gagnkvæmur vinur %s"; +$a->strings["You are sharing with %s"] = "Þú ert að deila með %s"; +$a->strings["%s is sharing with you"] = "%s er að deila með þér"; +$a->strings["Private communications are not available for this contact."] = "Einkasamtal ekki í boði fyrir þennan"; +$a->strings["(Update was successful)"] = "(uppfærsla tókst)"; +$a->strings["(Update was not successful)"] = "(uppfærsla tókst ekki)"; +$a->strings["Suggest friends"] = "Stinga uppá vinum"; +$a->strings["Network type: %s"] = "Net tegund: %s"; +$a->strings["Communications lost with this contact!"] = ""; +$a->strings["Fetch further information for feeds"] = "Ná í ítarlegri upplýsingar um fréttaveitur"; +$a->strings["Fetch information"] = ""; +$a->strings["Fetch information and keywords"] = ""; +$a->strings["Profile Visibility"] = "Forsíðu sjáanleiki"; +$a->strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Veldu forsíðu sem á að birtast %s þegar hann skoðaður með öruggum hætti"; +$a->strings["Contact Information / Notes"] = "Uppl. um tengilið / minnisatriði"; +$a->strings["Edit contact notes"] = "Breyta minnispunktum tengiliðs "; +$a->strings["Block/Unblock contact"] = "útiloka/opna á tengilið"; +$a->strings["Ignore contact"] = "Hunsa tengilið"; +$a->strings["Repair URL settings"] = "Gera við stillingar á slóðum"; +$a->strings["View conversations"] = "Skoða samtöl"; +$a->strings["Last update:"] = "Síðasta uppfærsla:"; +$a->strings["Update public posts"] = "Uppfæra opinberar færslur"; +$a->strings["Update now"] = "Uppfæra núna"; +$a->strings["Unignore"] = "Byrja að fylgjast með á ný"; +$a->strings["Currently blocked"] = "Útilokaður sem stendur"; +$a->strings["Currently ignored"] = "Hunsaður sem stendur"; +$a->strings["Currently archived"] = "Í geymslu"; +$a->strings["Replies/likes to your public posts may still be visible"] = "Svör eða \"líkar við\" á opinberar færslur þínar geta mögulega verið sýnileg öðrum"; +$a->strings["Notification for new posts"] = ""; +$a->strings["Send a notification of every new post of this contact"] = ""; +$a->strings["Blacklisted keywords"] = ""; +$a->strings["Comma separated list of keywords that should not be converted to hashtags, when \"Fetch information and keywords\" is selected"] = ""; +$a->strings["Actions"] = ""; +$a->strings["Contact Settings"] = ""; +$a->strings["Suggestions"] = "Uppástungur"; +$a->strings["Suggest potential friends"] = ""; +$a->strings["All Contacts"] = "Allir tengiliðir"; +$a->strings["Show all contacts"] = "Sýna alla tengiliði"; +$a->strings["Unblocked"] = "Afhunsað"; +$a->strings["Only show unblocked contacts"] = ""; +$a->strings["Blocked"] = "Banna"; +$a->strings["Only show blocked contacts"] = ""; +$a->strings["Ignored"] = "Hunsa"; +$a->strings["Only show ignored contacts"] = ""; +$a->strings["Archived"] = "Í geymslu"; +$a->strings["Only show archived contacts"] = "Aðeins sýna geymda tengiliði"; +$a->strings["Hidden"] = "Falinn"; +$a->strings["Only show hidden contacts"] = "Aðeins sýna falda tengiliði"; +$a->strings["Search your contacts"] = "Leita í þínum vinum"; +$a->strings["Update"] = "Uppfæra"; +$a->strings["Archive"] = "Setja í geymslu"; +$a->strings["Unarchive"] = "Taka úr geymslu"; +$a->strings["Batch Actions"] = ""; +$a->strings["View all contacts"] = "Skoða alla tengiliði"; +$a->strings["Common Friends"] = "Sameiginlegir vinir"; +$a->strings["View all common friends"] = ""; +$a->strings["Advanced Contact Settings"] = ""; +$a->strings["Mutual Friendship"] = "Sameiginlegur vinskapur"; +$a->strings["is a fan of yours"] = "er fylgjandi þinn"; +$a->strings["you are a fan of"] = "þú er fylgjandi"; +$a->strings["Toggle Blocked status"] = ""; +$a->strings["Toggle Ignored status"] = ""; +$a->strings["Toggle Archive status"] = ""; +$a->strings["Delete contact"] = "Eyða tengilið"; +$a->strings["Submit Request"] = "Senda beiðni"; +$a->strings["You already added this contact."] = ""; +$a->strings["Diaspora support isn't enabled. Contact can't be added."] = ""; +$a->strings["OStatus support is disabled. Contact can't be added."] = ""; +$a->strings["The network type couldn't be detected. Contact can't be added."] = ""; +$a->strings["Please answer the following:"] = "Vinnsamlegast svaraðu eftirfarandi:"; +$a->strings["Does %s know you?"] = "Þekkir %s þig?"; +$a->strings["Add a personal note:"] = "Bæta við persónulegri athugasemd"; +$a->strings["Your Identity Address:"] = "Auðkennisnetfang þitt:"; +$a->strings["Contact added"] = "Tengilið bætt við"; +$a->strings["Applications"] = "Forrit"; +$a->strings["No installed applications."] = "Engin uppsett forrit"; +$a->strings["Do you really want to delete this suggestion?"] = ""; +$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Engar uppástungur tiltækar. Ef þetta er nýr vefur, reyndu þá aftur eftir um 24 klukkustundir."; +$a->strings["Ignore/Hide"] = "Hunsa/Fela"; +$a->strings["Not Extended"] = ""; +$a->strings["Item has been removed."] = "Atriði hefur verið fjarlægt."; +$a->strings["No contacts in common."] = ""; +$a->strings["Welcome to Friendica"] = "Velkomin(n) á Friendica"; +$a->strings["New Member Checklist"] = "Nýr notandi verklisti"; +$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."] = ""; +$a->strings["Getting Started"] = ""; +$a->strings["Friendica Walk-Through"] = ""; +$a->strings["On your Quick Start page - find a brief introduction to your profile and network tabs, make some new connections, and find some groups to join."] = ""; +$a->strings["Go to Your Settings"] = ""; +$a->strings["On your Settings page - change your initial password. Also make a note of your Identity Address. This looks just like an email address - and will be useful in making friends on the free social web."] = ""; +$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."] = "Yfirfarðu aðrar stillingar, sérstaklega gagnaleyndarstillingar. Óútgefin forsíða er einsog óskráð símanúmer. Sem þýðir að líklega viltu gefa út forsíðuna þína - nema að allir vinir þínir og tilvonandi vinir viti nákvæmlega hvernig á að finna þig."; +$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."] = "Að hlaða upp forsíðu mynd ef þú hefur ekki þegar gert það. Rannsóknir sýna að fólk sem hefur alvöru mynd af sér er tíu sinnum líklegra til að eignast vini en fólk sem ekki hefur mynd."; +$a->strings["Edit Your Profile"] = ""; +$a->strings["Edit your default profile to your liking. Review the settings for hiding your list of friends and hiding the profile from unknown visitors."] = "Breyttu sjálfgefnu forsíðunni einsog þú villt. Yfirfarðu stillingu til að fela vinalista á forsíðu og stillingu til að fela forsíðu fyrir ókunnum."; +$a->strings["Profile Keywords"] = ""; +$a->strings["Set some public keywords for your default profile which describe your interests. We may be able to find other people with similar interests and suggest friendships."] = "Bættu við leitarorðum í sjálfgefnu forsíðuna þína sem lýsa áhugamálum þínum. Þá er hægt að fólk með svipuð áhugamál og stinga uppá vinskap."; +$a->strings["Connecting"] = "Tengist"; +$a->strings["Importing Emails"] = ""; +$a->strings["Enter your email access information on your Connector Settings page if you wish to import and interact with friends or mailing lists from your email INBOX"] = "Fylltu út aðgangsupplýsingar póstfangsins þíns á Tengistillingasíðunni ef þú vilt sækja tölvupóst og eiga samskipti við vini eða póstlista úr innhólfi tölvupóstsins þíns"; +$a->strings["Go to Your Contacts Page"] = ""; +$a->strings["Your Contacts page is your gateway to managing friendships and connecting with friends on other networks. Typically you enter their address or site URL in the Add New Contact dialog."] = "Tengiliðasíðan er gáttin þín til að sýsla með vinasambönd og tengjast við vini á öðrum netum. Oftast setur þú vistfang eða slóð þeirra í Bæta við tengilið glugganum."; +$a->strings["Go to Your Site's Directory"] = ""; +$a->strings["The Directory page lets you find other people in this network or other federated sites. Look for a Connect or Follow link on their profile page. Provide your own Identity Address if requested."] = "Tengiliðalistinn er góð leit til að finna fólk á samfélagsnetinu eða öðrum sambandsnetum. Leitaðu að Tengjast/Connect eða Fylgja/Follow tenglum á forsíðunni þeirra. Mögulega þarftu að gefa upp auðkennisslóðina þína."; +$a->strings["Finding New People"] = ""; +$a->strings["On the side panel of the Contacts page are several tools to find new friends. We can match people by interest, look up people by name or interest, and provide suggestions based on network relationships. On a brand new site, friend suggestions will usually begin to be populated within 24 hours."] = ""; +$a->strings["Group Your Contacts"] = ""; +$a->strings["Once you have made some friends, organize them into private conversation groups from the sidebar of your Contacts page and then you can interact with each group privately on your Network page."] = "Eftir að þú hefur eignast nokkra vini, þá er best að flokka þá niður í hópa á hliðar slánni á Tengiliðasíðunni. Eftir það getur þú haft samskipti við hvern hóp fyrir sig á Samfélagssíðunni."; +$a->strings["Why Aren't My Posts Public?"] = ""; +$a->strings["Friendica respects your privacy. By default, your posts will only show up to people you've added as friends. For more information, see the help section from the link above."] = ""; +$a->strings["Getting Help"] = ""; +$a->strings["Go to the Help Section"] = ""; +$a->strings["Our help pages may be consulted for detail on other program features and resources."] = "Hægt er að styðjast við Hjálp síðuna til að fá leiðbeiningar um aðra eiginleika."; +$a->strings["Remove My Account"] = "Eyða þessum notanda"; +$a->strings["This will completely remove your account. Once this has been done it is not recoverable."] = "Þetta mun algjörlega eyða notandanum. Þegar þetta hefur verið gert er þetta ekki afturkræft."; +$a->strings["Please enter your password for verification:"] = "Sláðu inn aðgangsorð yðar:"; +$a->strings["Mood"] = ""; +$a->strings["Set your current mood and tell your friends"] = ""; +$a->strings["Item not found"] = "Atriði fannst ekki"; +$a->strings["Edit post"] = "Breyta skilaboðum"; +$a->strings["Warning: This group contains %s member from an insecure network."] = array( + 0 => "Aðvörun: Þessi hópur inniheldur %s notanda frá óöruggu neti.", + 1 => "Aðvörun: Þessi hópur inniheldur %s notendur frá óöruggu neti.", +); +$a->strings["Private messages to this group are at risk of public disclosure."] = "Einka samtöl send á þennan hóp eiga á hættu að verða opinber."; +$a->strings["Private messages to this person are at risk of public disclosure."] = "Einka skilaboð send á þennan notanda eiga á hættu að verða opinber."; +$a->strings["Invalid contact."] = "Ógildur tengiliður."; +$a->strings["Commented Order"] = "Athugasemdar röð"; +$a->strings["Sort by Comment Date"] = "Raða eftir umræðu dagsetningu"; +$a->strings["Posted Order"] = "Færlsu röð"; +$a->strings["Sort by Post Date"] = "Raða eftir færslu dagsetningu"; +$a->strings["Posts that mention or involve you"] = "Færslur sem tengjast þér"; +$a->strings["New"] = "Ný"; +$a->strings["Activity Stream - by date"] = "Færslu straumur - raðað eftir dagsetningu"; +$a->strings["Shared Links"] = ""; +$a->strings["Interesting Links"] = "Áhugaverðir tenglar"; +$a->strings["Starred"] = "Stjörnumerkt"; +$a->strings["Favourite Posts"] = "Uppáhalds færslur"; +$a->strings["Not available."] = "Ekki í boði."; +$a->strings["Time Conversion"] = "Tíma leiðréttir"; +$a->strings["Friendica provides this service for sharing events with other networks and friends in unknown timezones."] = "Friendica veitir þessa þjónustu til að deila atburðum milli neta og vina í óþekktum tímabeltum."; +$a->strings["UTC time: %s"] = "Máltími: %s"; +$a->strings["Current timezone: %s"] = "Núverandi tímabelti: %s"; +$a->strings["Converted localtime: %s"] = "Umbreyttur staðartími: %s"; +$a->strings["Please select your timezone:"] = "Veldu tímabeltið þitt:"; +$a->strings["The post was created"] = ""; +$a->strings["Group created."] = "Hópur stofnaður"; +$a->strings["Could not create group."] = "Gat ekki stofnað hóp."; +$a->strings["Group not found."] = "Hópur fannst ekki."; +$a->strings["Group name changed."] = "Hópur endurskýrður."; +$a->strings["Save Group"] = ""; +$a->strings["Create a group of contacts/friends."] = "Stofna hóp af tengiliðum/vinum"; +$a->strings["Group removed."] = "Hópi eytt."; +$a->strings["Unable to remove group."] = "Ekki tókst að eyða hóp."; +$a->strings["Group Editor"] = "Hópa sýslari"; +$a->strings["Members"] = "Aðilar"; +$a->strings["This introduction has already been accepted."] = "Þessi kynning hefur þegar verið samþykkt."; +$a->strings["Profile location is not valid or does not contain profile information."] = "Forsíðu slóð er ekki í lagi eða inniheldur ekki forsíðu upplýsingum."; +$a->strings["Warning: profile location has no identifiable owner name."] = "Aðvörun: forsíðu staðsetning hefur ekki aðgreinanlegt eigendanafn."; +$a->strings["Warning: profile location has no profile photo."] = "Aðvörun: forsíðu slóð hefur ekki forsíðu mynd."; +$a->strings["%d required parameter was not found at the given location"] = array( + 0 => "%d skilyrt breyta fannst ekki á uppgefinni staðsetningu", + 1 => "%d skilyrtar breytur fundust ekki á uppgefninni staðsetningu", +); +$a->strings["Introduction complete."] = "Kynning tilbúinn."; +$a->strings["Unrecoverable protocol error."] = "Alvarleg samskipta villa."; +$a->strings["Profile unavailable."] = "Ekki hægt að sækja forsíðu"; +$a->strings["%s has received too many connection requests today."] = "%s hefur fengið of margar tengibeiðnir í dag."; +$a->strings["Spam protection measures have been invoked."] = "Kveikt hefur verið á ruslsíu"; +$a->strings["Friends are advised to please try again in 24 hours."] = "Vinir eru beðnir um að reyna aftur eftir 24 klukkustundir."; +$a->strings["Invalid locator"] = "Ógild staðsetning"; +$a->strings["Invalid email address."] = "Ógilt póstfang."; +$a->strings["This account has not been configured for email. Request failed."] = ""; +$a->strings["You have already introduced yourself here."] = "Kynning hefur þegar átt sér stað hér."; +$a->strings["Apparently you are already friends with %s."] = "Þú ert þegar vinur %s."; +$a->strings["Invalid profile URL."] = "Ógild forsíðu slóð."; +$a->strings["Your introduction has been sent."] = "Kynningin þín hefur verið send."; +$a->strings["Remote subscription can't be done for your network. Please subscribe directly on your system."] = ""; +$a->strings["Please login to confirm introduction."] = "Skráðu þig inn til að staðfesta kynningu."; +$a->strings["Incorrect identity currently logged in. Please login to this profile."] = "Ekki réttur notandi skráður inn. Skráðu þig inn sem þessi notandi."; +$a->strings["Confirm"] = "Staðfesta"; +$a->strings["Hide this contact"] = "Fela þennan tengilið"; +$a->strings["Welcome home %s."] = "Velkomin(n) heim %s."; +$a->strings["Please confirm your introduction/connection request to %s."] = "Staðfestu kynninguna/tengibeiðnina við %s."; +$a->strings["Please enter your 'Identity Address' from one of the following supported communications networks:"] = "Settu inn 'Auðkennisnetfang' þitt úr einhverjum af eftirfarandi samskiptanetum:"; +$a->strings["If you are not yet a member of the free social web, follow this link to find a public Friendica site and join us today."] = ""; +$a->strings["Friend/Connection Request"] = "Vinabeiðni/Tengibeiðni"; +$a->strings["Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"] = "Dæmi: siggi@demo.friendica.com, http://demo.friendica.com/profile/siggi, prufunotandi@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."] = ""; +$a->strings["Image uploaded but image cropping failed."] = "Tókst að hala upp mynd en afskurður tókst ekki."; +$a->strings["Image size reduction [%s] failed."] = "Myndar minnkun [%s] tókst ekki."; +$a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Ýta þarf á "; +$a->strings["Unable to process image"] = "Ekki tókst að vinna mynd"; +$a->strings["Upload File:"] = "Hlaða upp skrá:"; +$a->strings["Select a profile:"] = ""; +$a->strings["Upload"] = "Hlaða upp"; +$a->strings["or"] = "eða"; +$a->strings["skip this step"] = "sleppa þessu skrefi"; +$a->strings["select a photo from your photo albums"] = "velja mynd í myndabókum"; +$a->strings["Crop Image"] = "Skera af mynd"; +$a->strings["Please adjust the image cropping for optimum viewing."] = "Stilltu afskurð fyrir besta birtingu."; +$a->strings["Done Editing"] = "Breyting kláruð"; +$a->strings["Image uploaded successfully."] = "Upphölun á mynd tóks."; +$a->strings["Registration successful. Please check your email for further instructions."] = "Nýskráning tóks. Frekari fyrirmæli voru send í tölvupósti."; +$a->strings["Failed to send email message. Here your accout details:
login: %s
password: %s

You can change your password after login."] = ""; +$a->strings["Registration successful."] = ""; +$a->strings["Your registration can not be processed."] = "Skráninguna þína er ekki hægt að vinna."; +$a->strings["Your registration is pending approval by the site owner."] = "Skráningin þín bíður samþykkis af eiganda síðunnar."; +$a->strings["You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking 'Register'."] = "Þú mátt (valfrjálst) fylla í þetta svæði gegnum OpenID með því gefa upp þitt OpenID og ýta á 'Skrá'."; +$a->strings["If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items."] = "Ef þú veist ekki hvað OpenID er, skildu þá þetta svæði eftir tómt en fylltu í restin af svæðunum."; +$a->strings["Your OpenID (optional): "] = "Þitt OpenID (valfrjálst):"; +$a->strings["Include your profile in member directory?"] = "Á forsíðan þín að sjást í notendalistanum?"; +$a->strings["Membership on this site is by invitation only."] = "Aðild að þessum vef er "; +$a->strings["Your invitation ID: "] = "Boðskorta auðkenni:"; +$a->strings["Your Full Name (e.g. Joe Smith, real or real-looking): "] = ""; +$a->strings["Your Email Address: "] = "Tölvupóstur:"; +$a->strings["New Password:"] = "Nýtt aðgangsorð:"; +$a->strings["Leave empty for an auto generated password."] = ""; +$a->strings["Confirm:"] = "Staðfesta:"; +$a->strings["Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be 'nickname@\$sitename'."] = "Veldu gælunafn. Verður að byrja á staf. Slóðin þín á þessum vef verður síðan 'gælunafn@\$sitename'."; +$a->strings["Choose a nickname: "] = "Veldu gælunafn:"; +$a->strings["Import your profile to this friendica instance"] = ""; +$a->strings["Display"] = ""; +$a->strings["Social Networks"] = ""; +$a->strings["Connected apps"] = "Tengd forrit"; +$a->strings["Remove account"] = "Henda tengilið"; +$a->strings["Missing some important data!"] = "Vantar mikilvæg gögn!"; +$a->strings["Failed to connect with email account using the settings provided."] = "Ekki tókst að tengjast við pósthólf með stillingum sem uppgefnar eru."; +$a->strings["Email settings updated."] = "Stillingar póstfangs uppfærðar."; +$a->strings["Features updated"] = ""; +$a->strings["Relocate message has been send to your contacts"] = ""; +$a->strings["Empty passwords are not allowed. Password unchanged."] = "Tóm aðgangsorð eru ekki leyfileg. Aðgangsorð óbreytt."; +$a->strings["Wrong password."] = ""; +$a->strings["Password changed."] = "Aðgangsorði breytt."; +$a->strings["Password update failed. Please try again."] = "Uppfærsla á aðgangsorði tókst ekki. Reyndu aftur."; +$a->strings[" Please use a shorter name."] = " Notaðu styttra nafn."; +$a->strings[" Name too short."] = "Nafn of stutt."; +$a->strings["Wrong Password"] = ""; +$a->strings[" Not valid email."] = "Póstfang ógilt"; +$a->strings[" Cannot change to that email."] = "Ekki hægt að breyta yfir í þetta póstfang."; +$a->strings["Private forum has no privacy permissions. Using default privacy group."] = ""; +$a->strings["Private forum has no privacy permissions and no default privacy group."] = ""; +$a->strings["Settings updated."] = "Stillingar uppfærðar."; +$a->strings["Add application"] = "Bæta við forriti"; +$a->strings["Consumer Key"] = "Notenda lykill"; +$a->strings["Consumer Secret"] = "Notenda leyndarmál"; +$a->strings["Redirect"] = "Áframsenda"; +$a->strings["Icon url"] = "Táknmyndar slóð"; +$a->strings["You can't edit this application."] = "Þú getur ekki breytt þessu forriti."; +$a->strings["Connected Apps"] = "Tengd forrit"; +$a->strings["Client key starts with"] = "Lykill viðskiptavinar byrjar á"; +$a->strings["No name"] = "Ekkert nafn"; +$a->strings["Remove authorization"] = "Fjarlæga auðkenningu"; +$a->strings["No Plugin settings configured"] = "Engar stillingar í kerfiseiningu uppsettar"; +$a->strings["Plugin Settings"] = "Stillingar kerfiseiningar"; +$a->strings["Additional Features"] = ""; +$a->strings["General Social Media Settings"] = ""; +$a->strings["Disable intelligent shortening"] = ""; +$a->strings["Normally the system tries to find the best link to add to shortened posts. If this option is enabled then every shortened post will always point to the original friendica post."] = ""; +$a->strings["Automatically follow any GNU Social (OStatus) followers/mentioners"] = ""; +$a->strings["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."] = ""; +$a->strings["Default group for OStatus contacts"] = ""; +$a->strings["Your legacy GNU Social account"] = ""; +$a->strings["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."] = ""; +$a->strings["Repair OStatus subscriptions"] = ""; +$a->strings["Built-in support for %s connectivity is %s"] = "Innbyggður stuðningur fyrir %s tenging er%s"; +$a->strings["enabled"] = "kveikt"; +$a->strings["disabled"] = "slökkt"; +$a->strings["GNU Social (OStatus)"] = ""; +$a->strings["Email access is disabled on this site."] = "Slökkt hefur verið á tölvupóst aðgang á þessum þjón."; +$a->strings["Email/Mailbox Setup"] = "Tölvupóstur stilling"; +$a->strings["If you wish to communicate with email contacts using this service (optional), please specify how to connect to your mailbox."] = "Ef þú villt hafa samskipti við tölvupósts tengiliði með þessari þjónustu (valfrjálst), skilgreindu þá hvernig á að tengjast póstfanginu þínu."; +$a->strings["Last successful email check:"] = "Póstfang sannreynt síðast:"; +$a->strings["IMAP server name:"] = "IMAP þjónn:"; +$a->strings["IMAP port:"] = "IMAP port:"; +$a->strings["Security:"] = "Öryggi:"; +$a->strings["None"] = "Ekkert"; +$a->strings["Email login name:"] = "Notandanafn tölvupóstfangs:"; +$a->strings["Email password:"] = "Lykilorð tölvupóstfangs:"; +$a->strings["Reply-to address:"] = "Svarpóstfang:"; +$a->strings["Send public posts to all email contacts:"] = "Senda opinberar færslur á alla tölvupóst viðtakendur:"; +$a->strings["Action after import:"] = ""; +$a->strings["Move to folder"] = "Flytja yfir í skrásafn"; +$a->strings["Move to folder:"] = "Flytja yfir í skrásafn:"; +$a->strings["Display Settings"] = ""; +$a->strings["Display Theme:"] = "Útlits þema:"; +$a->strings["Mobile Theme:"] = ""; +$a->strings["Update browser every xx seconds"] = "Endurhlaða vefsíðu á xx sekúndu fresti"; +$a->strings["Minimum of 10 seconds. Enter -1 to disable it."] = ""; +$a->strings["Number of items to display per page:"] = ""; +$a->strings["Maximum of 100 items"] = ""; +$a->strings["Number of items to display per page when viewed from mobile device:"] = ""; +$a->strings["Don't show emoticons"] = ""; +$a->strings["Calendar"] = ""; +$a->strings["Beginning of week:"] = ""; +$a->strings["Don't show notices"] = ""; +$a->strings["Infinite scroll"] = ""; +$a->strings["Automatic updates only at the top of the network page"] = ""; +$a->strings["General Theme Settings"] = ""; +$a->strings["Custom Theme Settings"] = ""; +$a->strings["Content Settings"] = ""; $a->strings["Theme settings"] = ""; +$a->strings["User Types"] = ""; +$a->strings["Community Types"] = ""; +$a->strings["Normal Account Page"] = ""; +$a->strings["This account is a normal personal profile"] = "Þessi notandi er með venjulega persónulega forsíðu"; +$a->strings["Soapbox Page"] = ""; +$a->strings["Automatically approve all connection/friend requests as read-only fans"] = "Sjálfkrafa samþykkja allar tengibeiðnir/vinabeiðnir einungis sem les-fylgjendur"; +$a->strings["Community Forum/Celebrity Account"] = ""; +$a->strings["Automatically approve all connection/friend requests as read-write fans"] = "Sjálfkrafa samþykkja allar tengibeiðnir/vinabeiðnir sem les-skrif fylgjendur"; +$a->strings["Automatic Friend Page"] = ""; +$a->strings["Automatically approve all connection/friend requests as friends"] = "Sjálfkrafa samþykkja allar tengibeiðnir/vinabeiðnir sem vini"; +$a->strings["Private Forum [Experimental]"] = "Einkaspjallsvæði [á tilraunastigi]"; +$a->strings["Private forum - approved members only"] = "Einkaspjallsvæði - einungis skráðir meðlimir"; +$a->strings["OpenID:"] = "OpenID:"; +$a->strings["(Optional) Allow this OpenID to login to this account."] = "(Valfrjálst) Leyfa þessu OpenID til að auðkennast sem þessi notandi."; +$a->strings["Publish your default profile in your local site directory?"] = "Gefa út sjálfgefna forsíðu í tengiliðalista á þessum þjón?"; +$a->strings["Publish your default profile in the global social directory?"] = "Gefa sjálfgefna forsíðu út í alheimstengiliðalista?"; +$a->strings["Hide your contact/friend list from viewers of your default profile?"] = "Fela tengiliða-/vinalistann þinn fyrir áhorfendum á sjálfgefinni forsíðu?"; +$a->strings["If enabled, posting public messages to Diaspora and other networks isn't possible."] = ""; +$a->strings["Allow friends to post to your profile page?"] = "Leyfa vinum að deila á forsíðuna þína?"; +$a->strings["Allow friends to tag your posts?"] = "Leyfa vinum að merkja færslurnar þínar?"; +$a->strings["Allow us to suggest you as a potential friend to new members?"] = "Leyfa að stungið verði uppá þér sem hugsamlegum vinur fyrir aðra notendur? "; +$a->strings["Permit unknown people to send you private mail?"] = ""; +$a->strings["Profile is not published."] = "Forsíðu hefur ekki verið gefinn út."; +$a->strings["Your Identity Address is '%s' or '%s'."] = ""; +$a->strings["Automatically expire posts after this many days:"] = "Sjálfkrafa fyrna færslu eftir hvað marga daga:"; +$a->strings["If empty, posts will not expire. Expired posts will be deleted"] = "Tómar færslur renna ekki út. Útrunnum færslum er eytt"; +$a->strings["Advanced expiration settings"] = "Ítarlegar stillingar fyrningatíma"; +$a->strings["Advanced Expiration"] = "Flókin fyrning"; +$a->strings["Expire posts:"] = "Fyrna færslur:"; +$a->strings["Expire personal notes:"] = "Fyrna einka glósur:"; +$a->strings["Expire starred posts:"] = "Fyrna stjörnumerktar færslur:"; +$a->strings["Expire photos:"] = "Fyrna myndum:"; +$a->strings["Only expire posts by others:"] = ""; +$a->strings["Account Settings"] = "Stillingar aðgangs"; +$a->strings["Password Settings"] = "Stillingar aðgangsorða"; +$a->strings["Leave password fields blank unless changing"] = "Hafðu aðgangsorða svæði tóm nema þegar verið er að breyta"; +$a->strings["Current Password:"] = ""; +$a->strings["Your current password to confirm the changes"] = ""; +$a->strings["Password:"] = ""; +$a->strings["Basic Settings"] = "Grunnstillingar"; +$a->strings["Email Address:"] = "Póstfang:"; +$a->strings["Your Timezone:"] = "Þitt tímabelti:"; +$a->strings["Your Language:"] = ""; +$a->strings["Set the language we use to show you friendica interface and to send you emails"] = ""; +$a->strings["Default Post Location:"] = "Sjálfgefin staðsetning færslu:"; +$a->strings["Use Browser Location:"] = "Nota vafra staðsetningu:"; +$a->strings["Security and Privacy Settings"] = "Öryggis og friðhelgistillingar"; +$a->strings["Maximum Friend Requests/Day:"] = "Hámarks vinabeiðnir á dag:"; +$a->strings["(to prevent spam abuse)"] = "(til að koma í veg fyrir rusl misnotkun)"; +$a->strings["Default Post Permissions"] = "Sjálfgefnar aðgangstýring á færslum"; +$a->strings["(click to open/close)"] = "(ýttu á til að opna/loka)"; +$a->strings["Default Private Post"] = ""; +$a->strings["Default Public Post"] = ""; +$a->strings["Default Permissions for New Posts"] = ""; +$a->strings["Maximum private messages per day from unknown people:"] = ""; +$a->strings["Notification Settings"] = "Stillingar á tilkynningum"; +$a->strings["By default post a status message when:"] = ""; +$a->strings["accepting a friend request"] = "samþykki vinabeiðni"; +$a->strings["joining a forum/community"] = "ganga til liðs við hóp/samfélag"; +$a->strings["making an interesting profile change"] = ""; +$a->strings["Send a notification email when:"] = "Senda tilkynninga tölvupóst þegar:"; +$a->strings["You receive an introduction"] = "Þú færð kynningu"; +$a->strings["Your introductions are confirmed"] = "Kynningarnar þínar eru samþykktar"; +$a->strings["Someone writes on your profile wall"] = "Einhver skrifar á vegginn þínn"; +$a->strings["Someone writes a followup comment"] = "Einhver skrifar athugasemd á færslu hjá þér"; +$a->strings["You receive a private message"] = "Þú færð einkaskilaboð"; +$a->strings["You receive a friend suggestion"] = "Þér hefur borist vina uppástunga"; +$a->strings["You are tagged in a post"] = "Þú varst merkt(ur) í færslu"; +$a->strings["You are poked/prodded/etc. in a post"] = ""; +$a->strings["Activate desktop notifications"] = ""; +$a->strings["Show desktop popup on new notifications"] = ""; +$a->strings["Text-only notification emails"] = ""; +$a->strings["Send text only notification emails, without the html part"] = ""; +$a->strings["Advanced Account/Page Type Settings"] = ""; +$a->strings["Change the behaviour of this account for special situations"] = ""; +$a->strings["Relocate"] = ""; +$a->strings["If you have moved this profile from another server, and some of your contacts don't receive your updates, try pushing this button."] = ""; +$a->strings["Resend relocate message to contacts"] = ""; +$a->strings["Number of daily wall messages for %s exceeded. Message failed."] = ""; +$a->strings["No recipient selected."] = "Engir viðtakendur valdir."; +$a->strings["Unable to check your home location."] = ""; +$a->strings["Message could not be sent."] = "Ekki tókst að senda skilaboð."; +$a->strings["Message collection failure."] = "Ekki tókst að sækja skilaboð."; +$a->strings["Message sent."] = "Skilaboð send."; +$a->strings["No recipient."] = ""; +$a->strings["Send Private Message"] = "Senda einkaskilaboð"; +$a->strings["If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders."] = ""; +$a->strings["To:"] = "Til:"; +$a->strings["Subject:"] = "Efni:"; +$a->strings["link"] = "tengill"; +$a->strings["Authorize application connection"] = "Leyfa forriti að tengjast"; +$a->strings["Return to your app and insert this Securty Code:"] = "Farðu aftur í forritið þitt og settu þennan öryggiskóða þar"; +$a->strings["Please login to continue."] = "Skráðu þig inn til að halda áfram."; +$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Vilt þú leyfa þessu forriti að hafa aðgang að færslum og tengiliðum, og/eða stofna nýjar færslur fyrir þig?"; +$a->strings["Source (bbcode) text:"] = ""; +$a->strings["Source (Diaspora) text to convert to BBcode:"] = ""; +$a->strings["Source input: "] = ""; +$a->strings["bb2html (raw HTML): "] = "bb2html (hrátt 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): "] = ""; +$a->strings["diaspora2bb: "] = "diaspora2bb: "; +$a->strings["Unable to locate original post."] = "Ekki tókst að finna upphaflega færslu."; +$a->strings["Empty post discarded."] = "Tóm færsla eytt."; +$a->strings["System error. Post not saved."] = "Kerfisvilla. Færsla ekki vistuð."; +$a->strings["This message was sent to you by %s, a member of the Friendica social network."] = "Skilaboðið sendi %s, notandi á Friendica samfélagsnetinu."; +$a->strings["You may visit them online at %s"] = "Þú getur heimsótt þau á netinu á %s"; +$a->strings["Please contact the sender by replying to this post if you do not wish to receive these messages."] = "Hafðu samband við sendanda með því að svara á þessari færslu ef þú villt ekki fá þessi skilaboð."; +$a->strings["%s posted an update."] = "%s hefur sent uppfærslu."; +$a->strings["Subscribing to OStatus contacts"] = ""; +$a->strings["No contact provided."] = ""; +$a->strings["Couldn't fetch information for contact."] = ""; +$a->strings["Couldn't fetch friends for contact."] = ""; +$a->strings["success"] = "tókst"; +$a->strings["failed"] = "mistókst"; +$a->strings["%1\$s welcomes %2\$s"] = ""; +$a->strings["Tips for New Members"] = "Ábendingar fyrir nýja notendur"; +$a->strings["Unable to locate contact information."] = "Ekki tókst að staðsetja tengiliðs upplýsingar."; +$a->strings["Do you really want to delete this message?"] = ""; +$a->strings["Message deleted."] = "Skilaboðum eytt."; +$a->strings["Conversation removed."] = "Samtali eytt."; +$a->strings["No messages."] = "Engin skilaboð."; +$a->strings["Message not available."] = "Ekki næst í skilaboð."; +$a->strings["Delete message"] = "Eyða skilaboðum"; +$a->strings["Delete conversation"] = "Eyða samtali"; +$a->strings["No secure communications available. You may be able to respond from the sender's profile page."] = ""; +$a->strings["Send Reply"] = "Senda svar"; +$a->strings["Unknown sender - %s"] = ""; +$a->strings["You and %s"] = ""; +$a->strings["%s and You"] = ""; +$a->strings["D, d M Y - g:i A"] = ""; +$a->strings["%d message"] = array( + 0 => "", + 1 => "", +); +$a->strings["Manage Identities and/or Pages"] = "Sýsla með notendur og/eða síður"; +$a->strings["Toggle between different identities or community/group pages which share your account details or which you have been granted \"manage\" permissions"] = "Skipta á milli auðkenna eða hópa- / stjörnunotanda sem deila þínum aðgangs upplýsingum eða þér verið úthlutað \"umsýslu\" réttindum."; +$a->strings["Select an identity to manage: "] = "Veldu notanda til að sýsla með:"; +$a->strings["via"] = ""; +$a->strings["Repeat the image"] = ""; +$a->strings["Will repeat your image to fill the background."] = ""; +$a->strings["Stretch"] = ""; +$a->strings["Will stretch to width/height of the image."] = ""; +$a->strings["Resize fill and-clip"] = ""; +$a->strings["Resize to fill and retain aspect ratio."] = ""; +$a->strings["Resize best fit"] = ""; +$a->strings["Resize to best fit and retain aspect ratio."] = ""; +$a->strings["Remote"] = ""; +$a->strings["Visitor"] = ""; +$a->strings["Default"] = ""; +$a->strings["Note: "] = ""; +$a->strings["Check image permissions if all users are allowed to visit the image"] = ""; +$a->strings["Select scheme"] = ""; +$a->strings["Navigation bar background color"] = ""; +$a->strings["Navigation bar icon color "] = ""; +$a->strings["Link color"] = "Litur tengils"; +$a->strings["Set the background color"] = ""; +$a->strings["Content background transparency"] = ""; +$a->strings["Set the background image"] = ""; $a->strings["Set resize level for images in posts and comments (width and height)"] = ""; $a->strings["Set font-size for posts and comments"] = ""; $a->strings["Set theme width"] = ""; $a->strings["Color scheme"] = ""; -$a->strings["Set line-height for posts and comments"] = ""; -$a->strings["Set colour scheme"] = "Setja litar þema"; $a->strings["Alignment"] = ""; $a->strings["Left"] = ""; $a->strings["Center"] = ""; $a->strings["Posts font size"] = ""; $a->strings["Textareas font size"] = ""; +$a->strings["Set line-height for posts and comments"] = ""; +$a->strings["Set colour scheme"] = "Setja litar þema"; +$a->strings["Community Profiles"] = ""; +$a->strings["Last users"] = "Nýjustu notendurnir"; +$a->strings["Find Friends"] = ""; +$a->strings["Local Directory"] = ""; +$a->strings["Quick Start"] = ""; +$a->strings["Connect Services"] = ""; +$a->strings["Comma separated list of helper forums"] = ""; +$a->strings["Set style"] = ""; +$a->strings["Community Pages"] = ""; +$a->strings["Help or @NewHere ?"] = ""; +$a->strings["Your contacts"] = ""; +$a->strings["Your personal photos"] = "Einkamyndirnar þínar"; +$a->strings["Last likes"] = "Nýjustu \"líkar þetta\""; +$a->strings["Last photos"] = "Nýjustu myndirnar"; +$a->strings["Earth Layers"] = ""; +$a->strings["Set zoomfactor for Earth Layers"] = ""; +$a->strings["Set longitude (X) for Earth Layers"] = ""; +$a->strings["Set latitude (Y) for Earth Layers"] = ""; +$a->strings["Show/hide boxes at right-hand column:"] = ""; $a->strings["Set resolution for middle column"] = ""; $a->strings["Set color scheme"] = "Setja litar þema"; $a->strings["Set zoomfactor for Earth Layer"] = ""; -$a->strings["Set longitude (X) for Earth Layers"] = ""; -$a->strings["Set latitude (Y) for Earth Layers"] = ""; -$a->strings["Community Pages"] = ""; -$a->strings["Earth Layers"] = ""; -$a->strings["Community Profiles"] = ""; -$a->strings["Help or @NewHere ?"] = ""; -$a->strings["Connect Services"] = ""; -$a->strings["Find Friends"] = ""; -$a->strings["Last users"] = "Nýjustu notendurnir"; -$a->strings["Last photos"] = "Nýjustu myndirnar"; -$a->strings["Last likes"] = "Nýjustu \"líkar þetta\""; -$a->strings["Your contacts"] = ""; -$a->strings["Your personal photos"] = "Þínar einka myndir"; -$a->strings["Local Directory"] = ""; -$a->strings["Set zoomfactor for Earth Layers"] = ""; -$a->strings["Show/hide boxes at right-hand column:"] = ""; -$a->strings["Set style"] = ""; $a->strings["greenzero"] = ""; $a->strings["purplezero"] = ""; $a->strings["easterbunny"] = ""; From 867ebeb66183eee7f96c15301a82a0bfc1d123c2 Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Thu, 28 Jul 2016 08:59:16 +0200 Subject: [PATCH 11/23] PHP7 needs an integer value for the length --- library/asn1.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/library/asn1.php b/library/asn1.php index e84398bf62..ac14a5b16f 100644 --- a/library/asn1.php +++ b/library/asn1.php @@ -4,6 +4,7 @@ // Attribution: http://www.krisbailey.com // license: unknown // modified: Mike Macgrivin mike@macgirvin.com 6-oct-2010 to support Salmon auto-discovery +// modified: Tobias Diekershoff 28-jul-2016 adding an intval in line 162 to make PHP7 happy // from openssl public keys @@ -159,7 +160,7 @@ class ASN_BASE { } $length = $tempLength; } - $data = substr($string, $p, $length); + $data = substr($string, $p, intval($length)); $parsed[] = self::parseASNData($type, $data, $level, $maxLevels); $p = $p + $length; } From e74da01276177923948708174aca9e52254034db Mon Sep 17 00:00:00 2001 From: rabuzarus <> Date: Thu, 28 Jul 2016 11:45:41 +0200 Subject: [PATCH 12/23] frio: contac_edit.tpl was missing a bracket --- view/theme/frio/templates/contact_edit.tpl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/view/theme/frio/templates/contact_edit.tpl b/view/theme/frio/templates/contact_edit.tpl index b4217aa436..6170dcef82 100644 --- a/view/theme/frio/templates/contact_edit.tpl +++ b/view/theme/frio/templates/contact_edit.tpl @@ -91,7 +91,7 @@ {{if $keywords}}

-
{$keywords_label}}
+
{{$keywords_label}}
{{$keywords}}
{{/if}} From c9dee2947f7c5c994cba9741c1b363a0f5998299 Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Thu, 28 Jul 2016 15:41:25 +0200 Subject: [PATCH 13/23] quickfix for worker delivery problems --- boot.php | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/boot.php b/boot.php index 056e47b7d2..cad4094c7d 100644 --- a/boot.php +++ b/boot.php @@ -1801,9 +1801,13 @@ function proc_run($cmd){ $priority = 2; if (!$found) - q("INSERT INTO `workerqueue` (`function`, `parameter`, `created`, `priority`) - VALUES ('%s', '%s', '%s', %d)", - dbesc($funcname), + // quickfix for the delivery problems, 2106-07-28 + /// @todo find better solution + //q("INSERT INTO `workerqueue` (`function`, `parameter`, `created`, `priority`) + // VALUES ('%s', '%s', '%s', %d)", + // dbesc($funcname), + q("INSERT INTO `workerqueue` (`parameter`, `created`, `priority`) + VALUES ('%s', '%s', %d)", dbesc($parameters), dbesc(datetime_convert()), intval($priority)); From f7fa5f166b3ffc909af36902ea1b9c2075119262 Mon Sep 17 00:00:00 2001 From: rabuzarus <> Date: Sat, 30 Jul 2016 11:03:21 +0200 Subject: [PATCH 14/23] notifications.php: unify label strings --- mod/notifications.php | 10 +++++----- view/templates/intros.tpl | 10 +++++----- view/theme/frio/templates/intros.tpl | 10 +++++----- 3 files changed, 15 insertions(+), 15 deletions(-) diff --git a/mod/notifications.php b/mod/notifications.php index fa2c78cf67..f3e7c564ab 100644 --- a/mod/notifications.php +++ b/mod/notifications.php @@ -205,18 +205,18 @@ function notifications_content(&$a) { '$photo' => ((x($rr,'photo')) ? proxy_url($rr['photo'], false, PROXY_SIZE_SMALL) : "images/person-175.jpg"), '$fullname' => $rr['name'], '$location' => bbcode($rr['glocation'], false, false), - '$location_label' => t('Location:'), + '$lbl_location' => t('Location:'), '$about' => bbcode($rr['gabout'], false, false), - '$about_label' => t('About:'), + '$lbl_about' => t('About:'), '$keywords' => $rr['gkeywords'], - '$keywords_label' => t('Tags:'), + '$lbl_keywords' => t('Tags:'), '$gender' => $rr['ggender'], - '$gender_label' => t('Gender:'), + '$lbl_gender' => t('Gender:'), '$hidden' => array('hidden', t('Hide this contact from others'), ($rr['hidden'] == 1), ''), '$activity' => array('activity', t('Post a new friend activity'), (intval(get_pconfig(local_user(),'system','post_newfriend')) ? '1' : 0), t('if applicable')), '$url' => $rr['url'], '$zrl' => zrl($rr['url']), - '$url_label' => t('Profile URL'), + '$lbl_url' => t('Profile URL'), '$addr' => $rr['addr'], '$lbl_knowyou' => $lbl_knowyou, '$lbl_network' => t('Network:'), diff --git a/view/templates/intros.tpl b/view/templates/intros.tpl index fa823ca71a..e3933e3815 100644 --- a/view/templates/intros.tpl +++ b/view/templates/intros.tpl @@ -4,11 +4,11 @@

{{$str_notifytype}} {{$notify_type}}

{{$fullname|escape:'html'}} -
{{$url_label}}
{{$url}}
-{{if $location}}
{{$location_label}}
{{$location}}
{{/if}} -{{if $gender}}
{{$gender_label}}
{{$gender}}
{{/if}} -{{if $keywords}}
{{$keywords_label}}
{{$keywords}}
{{/if}} -{{if $about}}
{{$about_label}}
{{$about}}
{{/if}} +
{{$lbl_url}}
{{$url}}
+{{if $location}}
{{$lbl_location}}
{{$location}}
{{/if}} +{{if $gender}}
{{$lbl_gender}}
{{$gender}}
{{/if}} +{{if $keywords}}
{{$lbl_keywords}}
{{$keywords}}
{{/if}} +{{if $about}}
{{$lbl_about}}
{{$about}}
{{/if}}
{{$lbl_knowyou}} {{$knowyou}}
{{$note}}
diff --git a/view/theme/frio/templates/intros.tpl b/view/theme/frio/templates/intros.tpl index 0b09c2dccb..86c7fc342c 100644 --- a/view/theme/frio/templates/intros.tpl +++ b/view/theme/frio/templates/intros.tpl @@ -20,12 +20,12 @@
{{$str_notifytype}}{{$notify_type}}
{{* Additional information of the contact *}} -
{{$url_label}}: {{$url}}
+
{{$lbl_url}}: {{$url}}
{{if $network}}
{{$lbl_network}} {{$network}}
{{/if}} - {{if $location}}
{{$location_label}} {{$location}}
{{/if}} - {{if $gender}}
{{$gender_label}} {{$gender}}
{{/if}} - {{if $keywords}}
{{$keywords_label}} {{$keywords}}
{{/if}} - {{if $about}}
{{$about_label}} {{$about}}
{{/if}} + {{if $location}}
{{$lbl_location}} {{$location}}
{{/if}} + {{if $gender}}
{{$lbl_gender}} {{$gender}}
{{/if}} + {{if $keywords}}
{{$lbl_keywords}} {{$keywords}}
{{/if}} + {{if $about}}
{{$lbl_about}} {{$about}}
{{/if}}
{{$lbl_knowyou}}{{$knowyou}}
{{$note}}
From 84e84a0689b1a112748c2e803e49a9cb400b51dc Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Mon, 1 Aug 2016 07:22:54 +0200 Subject: [PATCH 15/23] Small performance improvements --- include/acl_selectors.php | 8 ++++---- include/text.php | 21 +++++++++++++++------ 2 files changed, 19 insertions(+), 10 deletions(-) diff --git a/include/acl_selectors.php b/include/acl_selectors.php index 76f0e0b796..71a42478ba 100644 --- a/include/acl_selectors.php +++ b/include/acl_selectors.php @@ -481,11 +481,11 @@ function acl_lookup(&$a, $out_type = 'json') { if ($type=='' || $type=='g'){ $r = q("SELECT `group`.`id`, `group`.`name`, GROUP_CONCAT(DISTINCT `group_member`.`contact-id` SEPARATOR ',') AS uids - FROM `group`,`group_member` - WHERE `group`.`deleted` = 0 AND `group`.`uid` = %d - AND `group_member`.`gid`=`group`.`id` + FROM `group` + INNER JOIN `group_member` ON `group_member`.`gid`=`group`.`id` AND `group_member`.`uid` = `group`.`uid` + WHERE NOT `group`.`deleted` AND `group`.`uid` = %d $sql_extra - GROUP BY `group`.`id` + GROUP BY `group`.`name` ORDER BY `group`.`name` LIMIT %d,%d", intval(local_user()), diff --git a/include/text.php b/include/text.php index 2da9a180ea..3aec42b323 100644 --- a/include/text.php +++ b/include/text.php @@ -872,7 +872,8 @@ function contact_block() { $micropro = Null; } else { - $r = q("SELECT `id`, `uid`, `addr`, `url`, `name`, `thumb`, `network` FROM `contact` + // Splitting the query in two parts makes it much faster + $r = q("SELECT `id` FROM `contact` WHERE `uid` = %d AND NOT `self` AND NOT `blocked` AND NOT `pending` AND NOT `hidden` AND NOT `archive` AND `network` IN ('%s', '%s', '%s') ORDER BY RAND() LIMIT %d", @@ -882,11 +883,19 @@ function contact_block() { dbesc(NETWORK_DIASPORA), intval($shown) ); - if(count($r)) { - $contacts = sprintf( tt('%d Contact','%d Contacts', $total),$total); - $micropro = Array(); - foreach($r as $rr) { - $micropro[] = micropro($rr,true,'mpfriend'); + if ($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)) { + $contacts = sprintf( tt('%d Contact','%d Contacts', $total),$total); + $micropro = Array(); + foreach($r as $rr) { + $micropro[] = micropro($rr,true,'mpfriend'); + } } } } From 39d149bf7c53c052b19d212a35c3134feb465f51 Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Mon, 1 Aug 2016 07:46:21 +0200 Subject: [PATCH 16/23] regenerated master messages.po file --- util/messages.po | 4545 +++++++++++++++++++++++----------------------- 1 file changed, 2273 insertions(+), 2272 deletions(-) diff --git a/util/messages.po b/util/messages.po index e71198c698..ac303b20e4 100644 --- a/util/messages.po +++ b/util/messages.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-07-08 19:22+0200\n" +"POT-Creation-Date: 2016-08-01 07:44+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -18,88 +18,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" -#: boot.php:887 -msgid "Delete this item?" -msgstr "" - -#: boot.php:888 mod/content.php:727 mod/content.php:945 mod/photos.php:1616 -#: mod/photos.php:1664 mod/photos.php:1752 object/Item.php:403 -#: object/Item.php:719 -msgid "Comment" -msgstr "" - -#: boot.php:889 include/contact_widgets.php:242 include/ForumManager.php:119 -#: include/items.php:2122 mod/content.php:624 object/Item.php:432 -#: view/theme/vier/theme.php:260 -msgid "show more" -msgstr "" - -#: boot.php:890 -msgid "show fewer" -msgstr "" - -#: boot.php:1483 -#, php-format -msgid "Update %s failed. See error logs." -msgstr "" - -#: boot.php:1595 -msgid "Create a New Account" -msgstr "" - -#: boot.php:1596 include/nav.php:111 mod/register.php:280 -msgid "Register" -msgstr "" - -#: boot.php:1620 include/nav.php:75 view/theme/frio/theme.php:243 -msgid "Logout" -msgstr "" - -#: boot.php:1621 include/nav.php:94 mod/bookmarklet.php:12 -msgid "Login" -msgstr "" - -#: boot.php:1623 mod/lostpass.php:161 -msgid "Nickname or Email: " -msgstr "" - -#: boot.php:1624 -msgid "Password: " -msgstr "" - -#: boot.php:1625 -msgid "Remember me" -msgstr "" - -#: boot.php:1628 -msgid "Or login using OpenID: " -msgstr "" - -#: boot.php:1634 -msgid "Forgot your password?" -msgstr "" - -#: boot.php:1635 mod/lostpass.php:109 -msgid "Password Reset" -msgstr "" - -#: boot.php:1637 -msgid "Website Terms of Service" -msgstr "" - -#: boot.php:1638 -msgid "terms of service" -msgstr "" - -#: boot.php:1640 -msgid "Website Privacy Policy" -msgstr "" - -#: boot.php:1641 -msgid "privacy policy" -msgstr "" - -#: include/datetime.php:57 include/datetime.php:59 mod/profiles.php:698 +#: include/datetime.php:57 include/datetime.php:59 mod/profiles.php:699 msgid "Miscellaneous" msgstr "" @@ -107,7 +26,7 @@ msgstr "" msgid "Birthday:" msgstr "" -#: include/datetime.php:185 mod/profiles.php:721 +#: include/datetime.php:185 mod/profiles.php:722 msgid "Age: " msgstr "" @@ -231,8 +150,8 @@ msgstr "" #: include/contact_widgets.php:32 include/conversation.php:978 #: include/Contact.php:324 mod/dirfind.php:204 mod/match.php:72 -#: mod/allfriends.php:66 mod/contacts.php:600 mod/follow.php:103 -#: mod/suggest.php:83 +#: mod/allfriends.php:66 mod/follow.php:103 mod/suggest.php:83 +#: mod/contacts.php:602 msgid "Connect/Follow" msgstr "" @@ -240,7 +159,7 @@ msgstr "" msgid "Examples: Robert Morgenstein, Fishing" msgstr "" -#: include/contact_widgets.php:34 mod/directory.php:212 mod/contacts.php:791 +#: include/contact_widgets.php:34 mod/directory.php:212 mod/contacts.php:796 msgid "Find" msgstr "" @@ -290,6 +209,12 @@ msgid_plural "%d contacts in common" msgstr[0] "" msgstr[1] "" +#: include/contact_widgets.php:242 include/ForumManager.php:119 +#: include/items.php:2122 mod/content.php:624 object/Item.php:432 +#: view/theme/vier/theme.php:260 boot.php:889 +msgid "show more" +msgstr "" + #: include/enotify.php:24 msgid "Friendica Notification" msgstr "" @@ -586,18 +511,6 @@ msgstr "" msgid "Please visit %s to approve or reject the request." msgstr "" -#: include/plugin.php:522 include/plugin.php:524 -msgid "Click here to upgrade." -msgstr "" - -#: include/plugin.php:530 -msgid "This action exceeds the limits set by your subscription plan." -msgstr "" - -#: include/plugin.php:535 -msgid "This action is not available under your subscription plan." -msgstr "" - #: include/ForumManager.php:114 include/text.php:998 include/nav.php:130 #: view/theme/vier/theme.php:255 msgid "Forums" @@ -607,28 +520,6 @@ msgstr "" msgid "External link to forum" msgstr "" -#: include/diaspora.php:1379 include/conversation.php:141 include/like.php:182 -#: view/theme/diabook/theme.php:480 -#, php-format -msgid "%1$s likes %2$s's %3$s" -msgstr "" - -#: include/diaspora.php:1383 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 view/theme/diabook/theme.php:466 -#: view/theme/diabook/theme.php:475 -msgid "status" -msgstr "" - -#: include/diaspora.php:1909 -msgid "Sharing notification from Diaspora network" -msgstr "" - -#: include/diaspora.php:2801 -msgid "Attachments:" -msgstr "" - #: include/dfrn.php:1110 #, php-format msgid "%s\\'s birthday" @@ -688,8 +579,8 @@ msgid "Finishes:" msgstr "" #: include/event.php:39 include/event.php:63 include/identity.php:329 -#: include/bb2diaspora.php:170 mod/notifications.php:246 mod/events.php:495 -#: mod/directory.php:145 mod/contacts.php:624 +#: include/bb2diaspora.php:170 mod/events.php:495 mod/directory.php:145 +#: mod/contacts.php:628 mod/notifications.php:208 msgid "Location:" msgstr "" @@ -1121,7 +1012,7 @@ msgstr "" msgid "Ask me" msgstr "" -#: include/items.php:1447 mod/dfrn_confirm.php:725 mod/dfrn_request.php:744 +#: include/items.php:1447 mod/dfrn_confirm.php:726 mod/dfrn_request.php:745 msgid "[Name Withheld]" msgstr "" @@ -1135,45 +1026,45 @@ msgstr "" msgid "Do you really want to delete this item?" msgstr "" -#: include/items.php:1846 mod/profiles.php:641 mod/profiles.php:644 -#: mod/profiles.php:670 mod/contacts.php:441 mod/follow.php:110 -#: mod/suggest.php:29 mod/dfrn_request.php:860 mod/register.php:238 -#: mod/settings.php:1113 mod/settings.php:1119 mod/settings.php:1127 -#: mod/settings.php:1131 mod/settings.php:1136 mod/settings.php:1142 -#: mod/settings.php:1148 mod/settings.php:1154 mod/settings.php:1180 -#: mod/settings.php:1181 mod/settings.php:1182 mod/settings.php:1183 -#: mod/settings.php:1184 mod/api.php:105 mod/message.php:217 +#: include/items.php:1846 mod/follow.php:110 mod/suggest.php:29 +#: mod/register.php:238 mod/settings.php:1113 mod/settings.php:1119 +#: mod/settings.php:1127 mod/settings.php:1131 mod/settings.php:1136 +#: mod/settings.php:1142 mod/settings.php:1148 mod/settings.php:1154 +#: mod/settings.php:1180 mod/settings.php:1181 mod/settings.php:1182 +#: mod/settings.php:1183 mod/settings.php:1184 mod/api.php:105 +#: mod/message.php:217 mod/contacts.php:442 mod/dfrn_request.php:861 +#: mod/profiles.php:642 mod/profiles.php:645 mod/profiles.php:671 msgid "Yes" msgstr "" #: include/items.php:1849 include/conversation.php:1274 mod/fbrowser.php:101 #: mod/fbrowser.php:136 mod/tagrm.php:11 mod/tagrm.php:94 mod/videos.php:131 -#: mod/photos.php:247 mod/photos.php:336 mod/contacts.php:444 #: mod/follow.php:121 mod/suggest.php:32 mod/editpost.php:148 -#: mod/dfrn_request.php:874 mod/settings.php:664 mod/settings.php:690 -#: mod/message.php:220 +#: mod/settings.php:664 mod/settings.php:690 mod/message.php:220 +#: mod/contacts.php:445 mod/dfrn_request.php:875 mod/photos.php:248 +#: mod/photos.php:337 msgid "Cancel" msgstr "" -#: include/items.php:2011 index.php:397 mod/regmod.php:110 mod/dirfind.php:11 -#: mod/notifications.php:69 mod/dfrn_confirm.php:56 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 +#: include/items.php:2011 mod/regmod.php:110 mod/dirfind.php:11 +#: 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/wall_attach.php:67 mod/wall_attach.php:70 mod/allfriends.php:12 #: mod/cal.php:308 mod/repair_ostatus.php:9 mod/delegate.php:12 -#: mod/profiles.php:165 mod/profiles.php:598 mod/poke.php:150 -#: mod/photos.php:171 mod/photos.php:1092 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:474 mod/common.php:18 mod/mood.php:114 -#: mod/editpost.php:10 mod/network.php:4 mod/group.php:19 +#: mod/poke.php:150 mod/attach.php:33 mod/follow.php:11 mod/follow.php:73 +#: mod/follow.php:155 mod/suggest.php:58 mod/display.php:474 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:650 #: 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:185 #: mod/item.php:197 mod/ostatus_subscribe.php:9 mod/message.php:46 -#: mod/message.php:182 mod/manage.php:96 +#: mod/message.php:182 mod/manage.php:96 mod/contacts.php:350 +#: mod/crepair.php:100 mod/dfrn_confirm.php:57 mod/photos.php:172 +#: mod/photos.php:1093 mod/profiles.php:166 mod/profiles.php:599 +#: mod/notifications.php:65 index.php:397 msgid "Permission denied." msgstr "" @@ -1250,7 +1141,7 @@ msgstr "" #: include/text.php:995 include/identity.php:781 include/identity.php:784 #: include/nav.php:127 include/nav.php:193 mod/viewcontacts.php:116 -#: mod/contacts.php:785 mod/contacts.php:846 view/theme/frio/theme.php:257 +#: mod/contacts.php:790 mod/contacts.php:851 view/theme/frio/theme.php:257 #: view/theme/diabook/theme.php:125 msgid "Contacts" msgstr "" @@ -1403,15 +1294,14 @@ msgstr "" msgid "view on separate page" msgstr "" -#: include/text.php:1779 include/conversation.php:122 -#: include/conversation.php:258 include/like.php:165 -#: view/theme/diabook/theme.php:463 +#: include/text.php:1779 include/like.php:165 include/conversation.php:122 +#: include/conversation.php:258 view/theme/diabook/theme.php:463 msgid "event" msgstr "" -#: include/text.php:1781 include/conversation.php:130 -#: include/conversation.php:266 include/like.php:163 mod/tagger.php:62 -#: mod/subthread.php:87 view/theme/diabook/theme.php:471 +#: include/text.php:1781 include/like.php:163 include/conversation.php:130 +#: include/conversation.php:266 mod/tagger.php:62 mod/subthread.php:87 +#: view/theme/diabook/theme.php:471 msgid "photo" msgstr "" @@ -1434,415 +1324,6 @@ msgstr "" msgid "Item filed" msgstr "" -#: include/conversation.php:144 include/like.php:184 -#, php-format -msgid "%1$s doesn't like %2$s's %3$s" -msgstr "" - -#: include/conversation.php:147 -#, php-format -msgid "%1$s attends %2$s's %3$s" -msgstr "" - -#: include/conversation.php:150 -#, php-format -msgid "%1$s doesn't attend %2$s's %3$s" -msgstr "" - -#: include/conversation.php:153 -#, php-format -msgid "%1$s attends maybe %2$s's %3$s" -msgstr "" - -#: include/conversation.php:185 mod/dfrn_confirm.php:472 -#, php-format -msgid "%1$s is now friends with %2$s" -msgstr "" - -#: include/conversation.php:219 -#, php-format -msgid "%1$s poked %2$s" -msgstr "" - -#: include/conversation.php:239 mod/mood.php:62 -#, php-format -msgid "%1$s is currently %2$s" -msgstr "" - -#: include/conversation.php:278 mod/tagger.php:95 -#, php-format -msgid "%1$s tagged %2$s's %3$s with %4$s" -msgstr "" - -#: include/conversation.php:303 -msgid "post/item" -msgstr "" - -#: include/conversation.php:304 -#, php-format -msgid "%1$s marked %2$s's %3$s as favorite" -msgstr "" - -#: include/conversation.php:587 mod/content.php:372 mod/profiles.php:344 -#: mod/photos.php:1634 -msgid "Likes" -msgstr "" - -#: include/conversation.php:587 mod/content.php:372 mod/profiles.php:348 -#: mod/photos.php:1634 -msgid "Dislikes" -msgstr "" - -#: include/conversation.php:588 include/conversation.php:1471 -#: mod/content.php:373 mod/photos.php:1635 -msgid "Attending" -msgid_plural "Attending" -msgstr[0] "" -msgstr[1] "" - -#: include/conversation.php:588 mod/content.php:373 mod/photos.php:1635 -msgid "Not attending" -msgstr "" - -#: include/conversation.php:588 mod/content.php:373 mod/photos.php:1635 -msgid "Might attend" -msgstr "" - -#: include/conversation.php:710 mod/content.php:453 mod/content.php:758 -#: mod/photos.php:1709 object/Item.php:133 -msgid "Select" -msgstr "" - -#: include/conversation.php:711 mod/admin.php:1388 mod/content.php:454 -#: mod/content.php:759 mod/photos.php:1710 mod/contacts.php:801 -#: mod/contacts.php:1016 mod/group.php:171 mod/settings.php:726 -#: object/Item.php:134 -msgid "Delete" -msgstr "" - -#: include/conversation.php:755 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/conversation.php:767 object/Item.php:355 -msgid "Categories:" -msgstr "" - -#: include/conversation.php:768 object/Item.php:356 -msgid "Filed under:" -msgstr "" - -#: include/conversation.php:775 mod/content.php:497 mod/content.php:923 -#: object/Item.php:381 -#, php-format -msgid "%s from %s" -msgstr "" - -#: include/conversation.php:791 mod/content.php:513 -msgid "View in context" -msgstr "" - -#: include/conversation.php:793 include/conversation.php:1255 -#: mod/content.php:515 mod/content.php:948 mod/photos.php:1597 -#: mod/editpost.php:124 mod/wallmessage.php:156 mod/message.php:356 -#: mod/message.php:548 object/Item.php:406 -msgid "Please wait" -msgstr "" - -#: include/conversation.php:872 -msgid "remove" -msgstr "" - -#: include/conversation.php:876 -msgid "Delete Selected Items" -msgstr "" - -#: include/conversation.php:964 -msgid "Follow Thread" -msgstr "" - -#: include/conversation.php:965 include/Contact.php:364 -msgid "View Status" -msgstr "" - -#: include/conversation.php:966 include/conversation.php:980 -#: include/Contact.php:310 include/Contact.php:323 include/Contact.php:365 -#: mod/dirfind.php:203 mod/directory.php:163 mod/match.php:71 -#: mod/allfriends.php:65 mod/suggest.php:82 -msgid "View Profile" -msgstr "" - -#: include/conversation.php:967 include/Contact.php:366 -msgid "View Photos" -msgstr "" - -#: include/conversation.php:968 include/Contact.php:367 -msgid "Network Posts" -msgstr "" - -#: include/conversation.php:969 include/Contact.php:368 -msgid "Edit Contact" -msgstr "" - -#: include/conversation.php:970 include/Contact.php:370 -msgid "Send PM" -msgstr "" - -#: include/conversation.php:974 include/Contact.php:371 -msgid "Poke" -msgstr "" - -#: include/conversation.php:1088 -#, php-format -msgid "%s likes this." -msgstr "" - -#: include/conversation.php:1091 -#, php-format -msgid "%s doesn't like this." -msgstr "" - -#: include/conversation.php:1094 -#, php-format -msgid "%s attends." -msgstr "" - -#: include/conversation.php:1097 -#, php-format -msgid "%s doesn't attend." -msgstr "" - -#: include/conversation.php:1100 -#, php-format -msgid "%s attends maybe." -msgstr "" - -#: include/conversation.php:1110 -msgid "and" -msgstr "" - -#: include/conversation.php:1116 -#, php-format -msgid ", and %d other people" -msgstr "" - -#: include/conversation.php:1125 -#, php-format -msgid "%2$d people like this" -msgstr "" - -#: include/conversation.php:1126 -#, php-format -msgid "%s like this." -msgstr "" - -#: include/conversation.php:1129 -#, php-format -msgid "%2$d people don't like this" -msgstr "" - -#: include/conversation.php:1130 -#, php-format -msgid "%s don't like this." -msgstr "" - -#: include/conversation.php:1133 -#, php-format -msgid "%2$d people attend" -msgstr "" - -#: include/conversation.php:1134 -#, php-format -msgid "%s attend." -msgstr "" - -#: include/conversation.php:1137 -#, php-format -msgid "%2$d people don't attend" -msgstr "" - -#: include/conversation.php:1138 -#, php-format -msgid "%s don't attend." -msgstr "" - -#: include/conversation.php:1141 -#, php-format -msgid "%2$d people anttend maybe" -msgstr "" - -#: include/conversation.php:1142 -#, php-format -msgid "%s anttend maybe." -msgstr "" - -#: include/conversation.php:1181 include/conversation.php:1199 -msgid "Visible to everybody" -msgstr "" - -#: include/conversation.php:1182 include/conversation.php:1200 -#: 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/conversation.php:1183 include/conversation.php:1201 -msgid "Please enter a video link/URL:" -msgstr "" - -#: include/conversation.php:1184 include/conversation.php:1202 -msgid "Please enter an audio link/URL:" -msgstr "" - -#: include/conversation.php:1185 include/conversation.php:1203 -msgid "Tag term:" -msgstr "" - -#: include/conversation.php:1186 include/conversation.php:1204 -#: mod/filer.php:30 -msgid "Save to Folder:" -msgstr "" - -#: include/conversation.php:1187 include/conversation.php:1205 -msgid "Where are you right now?" -msgstr "" - -#: include/conversation.php:1188 -msgid "Delete item(s)?" -msgstr "" - -#: include/conversation.php:1236 mod/photos.php:1596 -msgid "Share" -msgstr "" - -#: include/conversation.php:1237 mod/editpost.php:110 mod/wallmessage.php:154 -#: mod/message.php:354 mod/message.php:545 -msgid "Upload photo" -msgstr "" - -#: include/conversation.php:1238 mod/editpost.php:111 -msgid "upload photo" -msgstr "" - -#: include/conversation.php:1239 mod/editpost.php:112 -msgid "Attach file" -msgstr "" - -#: include/conversation.php:1240 mod/editpost.php:113 -msgid "attach file" -msgstr "" - -#: include/conversation.php:1241 mod/editpost.php:114 mod/wallmessage.php:155 -#: mod/message.php:355 mod/message.php:546 -msgid "Insert web link" -msgstr "" - -#: include/conversation.php:1242 mod/editpost.php:115 -msgid "web link" -msgstr "" - -#: include/conversation.php:1243 mod/editpost.php:116 -msgid "Insert video link" -msgstr "" - -#: include/conversation.php:1244 mod/editpost.php:117 -msgid "video link" -msgstr "" - -#: include/conversation.php:1245 mod/editpost.php:118 -msgid "Insert audio link" -msgstr "" - -#: include/conversation.php:1246 mod/editpost.php:119 -msgid "audio link" -msgstr "" - -#: include/conversation.php:1247 mod/editpost.php:120 -msgid "Set your location" -msgstr "" - -#: include/conversation.php:1248 mod/editpost.php:121 -msgid "set location" -msgstr "" - -#: include/conversation.php:1249 mod/editpost.php:122 -msgid "Clear browser location" -msgstr "" - -#: include/conversation.php:1250 mod/editpost.php:123 -msgid "clear location" -msgstr "" - -#: include/conversation.php:1252 mod/editpost.php:137 -msgid "Set title" -msgstr "" - -#: include/conversation.php:1254 mod/editpost.php:139 -msgid "Categories (comma-separated list)" -msgstr "" - -#: include/conversation.php:1256 mod/editpost.php:125 -msgid "Permission settings" -msgstr "" - -#: include/conversation.php:1257 mod/editpost.php:154 -msgid "permissions" -msgstr "" - -#: include/conversation.php:1265 mod/editpost.php:134 -msgid "Public post" -msgstr "" - -#: include/conversation.php:1270 mod/events.php:505 mod/content.php:737 -#: mod/photos.php:1618 mod/photos.php:1666 mod/photos.php:1754 -#: mod/editpost.php:145 object/Item.php:729 -msgid "Preview" -msgstr "" - -#: include/conversation.php:1280 -msgid "Post to Groups" -msgstr "" - -#: include/conversation.php:1281 -msgid "Post to Contacts" -msgstr "" - -#: include/conversation.php:1282 -msgid "Private post" -msgstr "" - -#: include/conversation.php:1287 include/identity.php:250 mod/editpost.php:152 -msgid "Message" -msgstr "" - -#: include/conversation.php:1288 mod/editpost.php:153 -msgid "Browser" -msgstr "" - -#: include/conversation.php:1443 -msgid "View all" -msgstr "" - -#: include/conversation.php:1465 -msgid "Like" -msgid_plural "Likes" -msgstr[0] "" -msgstr[1] "" - -#: include/conversation.php:1468 -msgid "Dislike" -msgid_plural "Dislikes" -msgstr[0] "" -msgstr[1] "" - -#: include/conversation.php:1474 -msgid "Not Attending" -msgid_plural "Not Attending" -msgstr[0] "" -msgstr[1] "" - #: include/identity.php:42 msgid "Requested account is not available." msgstr "" @@ -1859,6 +1340,10 @@ msgstr "" msgid "Atom feed" msgstr "" +#: include/identity.php:250 include/conversation.php:1287 mod/editpost.php:152 +msgid "Message" +msgstr "" + #: include/identity.php:276 include/nav.php:191 msgid "Profiles" msgstr "" @@ -1867,36 +1352,36 @@ msgstr "" msgid "Manage/edit profiles" msgstr "" -#: include/identity.php:281 include/identity.php:307 mod/profiles.php:787 +#: include/identity.php:281 include/identity.php:307 mod/profiles.php:788 msgid "Change profile photo" msgstr "" -#: include/identity.php:282 mod/profiles.php:788 +#: include/identity.php:282 mod/profiles.php:789 msgid "Create New Profile" msgstr "" -#: include/identity.php:292 mod/profiles.php:777 +#: include/identity.php:292 mod/profiles.php:778 msgid "Profile Image" msgstr "" -#: include/identity.php:295 mod/profiles.php:779 +#: include/identity.php:295 mod/profiles.php:780 msgid "visible to everybody" msgstr "" -#: include/identity.php:296 mod/profiles.php:684 mod/profiles.php:780 +#: include/identity.php:296 mod/profiles.php:685 mod/profiles.php:781 msgid "Edit visibility" msgstr "" #: include/identity.php:319 mod/dirfind.php:223 mod/directory.php:174 #: mod/match.php:84 mod/viewcontacts.php:105 mod/allfriends.php:79 -#: mod/cal.php:44 mod/videos.php:37 mod/photos.php:41 mod/contacts.php:51 -#: mod/contacts.php:948 mod/suggest.php:98 mod/hovercard.php:80 -#: mod/common.php:123 mod/network.php:517 +#: mod/cal.php:44 mod/videos.php:37 mod/suggest.php:98 mod/hovercard.php:80 +#: mod/common.php:123 mod/network.php:517 mod/contacts.php:51 +#: mod/contacts.php:626 mod/contacts.php:953 mod/photos.php:42 msgid "Forum" msgstr "" -#: include/identity.php:331 include/identity.php:614 mod/notifications.php:252 -#: mod/directory.php:147 +#: include/identity.php:331 include/identity.php:614 mod/directory.php:147 +#: mod/notifications.php:214 msgid "Gender:" msgstr "" @@ -1908,12 +1393,12 @@ msgstr "" msgid "Homepage:" msgstr "" -#: include/identity.php:338 include/identity.php:655 mod/notifications.php:248 -#: mod/directory.php:153 mod/contacts.php:626 +#: include/identity.php:338 include/identity.php:655 mod/directory.php:153 +#: mod/contacts.php:630 mod/notifications.php:210 msgid "About:" msgstr "" -#: include/identity.php:420 mod/contacts.php:50 +#: include/identity.php:420 mod/contacts.php:50 mod/notifications.php:222 msgid "Network:" msgstr "" @@ -1950,8 +1435,8 @@ msgid "Events this week:" msgstr "" #: include/identity.php:603 include/identity.php:689 include/identity.php:720 -#: include/nav.php:79 mod/profperm.php:104 mod/contacts.php:834 -#: mod/newmember.php:32 view/theme/frio/theme.php:247 +#: include/nav.php:79 mod/profperm.php:104 mod/newmember.php:32 +#: mod/contacts.php:637 mod/contacts.php:839 view/theme/frio/theme.php:247 #: view/theme/diabook/theme.php:124 msgid "Profile" msgstr "" @@ -1977,20 +1462,20 @@ msgstr "" msgid "for %1$d %2$s" msgstr "" -#: include/identity.php:643 mod/profiles.php:703 +#: include/identity.php:643 mod/profiles.php:704 msgid "Sexual Preference:" msgstr "" -#: include/identity.php:647 mod/profiles.php:729 +#: include/identity.php:647 mod/profiles.php:730 msgid "Hometown:" msgstr "" -#: include/identity.php:649 mod/notifications.php:250 mod/contacts.php:628 -#: mod/follow.php:134 +#: include/identity.php:649 mod/follow.php:134 mod/contacts.php:632 +#: mod/notifications.php:212 msgid "Tags:" msgstr "" -#: include/identity.php:651 mod/profiles.php:730 +#: include/identity.php:651 mod/profiles.php:731 msgid "Political Views:" msgstr "" @@ -2002,11 +1487,11 @@ msgstr "" msgid "Hobbies/Interests:" msgstr "" -#: include/identity.php:659 mod/profiles.php:734 +#: include/identity.php:659 mod/profiles.php:735 msgid "Likes:" msgstr "" -#: include/identity.php:661 mod/profiles.php:735 +#: include/identity.php:661 mod/profiles.php:736 msgid "Dislikes:" msgstr "" @@ -2051,20 +1536,20 @@ msgid "Basic" msgstr "" #: include/identity.php:691 mod/events.php:509 mod/admin.php:928 -#: mod/contacts.php:863 +#: mod/contacts.php:868 msgid "Advanced" msgstr "" -#: include/identity.php:712 include/nav.php:78 mod/contacts.php:631 -#: mod/contacts.php:826 view/theme/frio/theme.php:246 +#: include/identity.php:712 include/nav.php:78 mod/contacts.php:635 +#: mod/contacts.php:831 view/theme/frio/theme.php:246 msgid "Status" msgstr "" -#: include/identity.php:715 mod/contacts.php:829 mod/follow.php:143 +#: include/identity.php:715 mod/follow.php:143 mod/contacts.php:834 msgid "Status Messages and Posts" msgstr "" -#: include/identity.php:723 mod/contacts.php:837 +#: include/identity.php:723 mod/contacts.php:842 msgid "Profile Details" msgstr "" @@ -2073,7 +1558,7 @@ msgstr "" msgid "Photos" msgstr "" -#: include/identity.php:731 mod/photos.php:99 +#: include/identity.php:731 mod/photos.php:100 msgid "Photo Albums" msgstr "" @@ -2102,11 +1587,7 @@ msgstr "" msgid "Only You Can See This" msgstr "" -#: include/Scrape.php:656 -msgid " on Last.fm" -msgstr "" - -#: include/follow.php:77 mod/dfrn_request.php:506 +#: include/follow.php:77 mod/dfrn_request.php:507 msgid "Disallowed profile URL." msgstr "" @@ -2165,14 +1646,6 @@ msgstr "" msgid "following" msgstr "" -#: include/Contact.php:119 -msgid "stopped following" -msgstr "" - -#: include/Contact.php:369 -msgid "Drop Contact" -msgstr "" - #: include/oembed.php:229 msgid "Embedded content" msgstr "" @@ -2198,150 +1671,6 @@ msgstr "" msgid "Encrypted content" msgstr "" -#: include/contact_selectors.php:32 -msgid "Unknown | Not categorised" -msgstr "" - -#: include/contact_selectors.php:33 -msgid "Block immediately" -msgstr "" - -#: include/contact_selectors.php:34 -msgid "Shady, spammer, self-marketer" -msgstr "" - -#: include/contact_selectors.php:35 -msgid "Known to me, but no opinion" -msgstr "" - -#: include/contact_selectors.php:36 -msgid "OK, probably harmless" -msgstr "" - -#: include/contact_selectors.php:37 -msgid "Reputable, has my trust" -msgstr "" - -#: include/contact_selectors.php:56 mod/admin.php:859 -msgid "Frequently" -msgstr "" - -#: include/contact_selectors.php:57 mod/admin.php:860 -msgid "Hourly" -msgstr "" - -#: include/contact_selectors.php:58 mod/admin.php:861 -msgid "Twice daily" -msgstr "" - -#: include/contact_selectors.php:59 mod/admin.php:862 -msgid "Daily" -msgstr "" - -#: include/contact_selectors.php:60 -msgid "Weekly" -msgstr "" - -#: include/contact_selectors.php:61 -msgid "Monthly" -msgstr "" - -#: include/contact_selectors.php:76 mod/dfrn_request.php:866 -msgid "Friendica" -msgstr "" - -#: include/contact_selectors.php:77 -msgid "OStatus" -msgstr "" - -#: include/contact_selectors.php:78 -msgid "RSS/Atom" -msgstr "" - -#: include/contact_selectors.php:79 include/contact_selectors.php:86 -#: mod/admin.php:1371 mod/admin.php:1384 mod/admin.php:1396 mod/admin.php:1414 -msgid "Email" -msgstr "" - -#: include/contact_selectors.php:80 mod/dfrn_request.php:868 -#: mod/settings.php:827 -msgid "Diaspora" -msgstr "" - -#: include/contact_selectors.php:81 -msgid "Facebook" -msgstr "" - -#: include/contact_selectors.php:82 -msgid "Zot!" -msgstr "" - -#: include/contact_selectors.php:83 -msgid "LinkedIn" -msgstr "" - -#: include/contact_selectors.php:84 -msgid "XMPP/IM" -msgstr "" - -#: include/contact_selectors.php:85 -msgid "MySpace" -msgstr "" - -#: include/contact_selectors.php:87 -msgid "Google+" -msgstr "" - -#: include/contact_selectors.php:88 -msgid "pump.io" -msgstr "" - -#: include/contact_selectors.php:89 -msgid "Twitter" -msgstr "" - -#: include/contact_selectors.php:90 -msgid "Diaspora Connector" -msgstr "" - -#: include/contact_selectors.php:91 -msgid "GNU Social" -msgstr "" - -#: include/contact_selectors.php:92 -msgid "App.net" -msgstr "" - -#: include/contact_selectors.php:103 -msgid "Hubzilla/Redmatrix" -msgstr "" - -#: include/dbstructure.php:26 -#, php-format -msgid "" -"\n" -"\t\t\tThe friendica developers released update %s recently,\n" -"\t\t\tbut when I tried to install it, something went terribly wrong.\n" -"\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n" -"\t\t\tfriendica developer if you can not help me on your own. My database " -"might be invalid." -msgstr "" - -#: include/dbstructure.php:31 -#, php-format -msgid "" -"The error message is\n" -"[pre]%s[/pre]" -msgstr "" - -#: include/dbstructure.php:153 -msgid "Errors encountered creating database tables." -msgstr "" - -#: include/dbstructure.php:230 -msgid "Errors encountered performing database changes." -msgstr "" - #: include/auth.php:45 msgid "Logged out." msgstr "" @@ -2360,10 +1689,6 @@ msgstr "" msgid "The error message was:" msgstr "" -#: include/network.php:913 -msgid "view full size" -msgstr "" - #: include/group.php:25 msgid "" "A deleted group with this name was revived. Existing item permissions " @@ -2496,11 +1821,11 @@ 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:78 mod/photos.php:192 mod/photos.php:769 mod/photos.php:1232 -#: mod/photos.php:1255 mod/photos.php:1849 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 -#: view/theme/diabook/theme.php:500 +#: 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:79 mod/photos.php:193 +#: mod/photos.php:770 mod/photos.php:1233 mod/photos.php:1256 +#: mod/photos.php:1850 view/theme/diabook/theme.php:500 msgid "Profile Photos" msgstr "" @@ -2553,21 +1878,6 @@ msgstr "" msgid "Registration details for %s" msgstr "" -#: include/api.php:905 -#, php-format -msgid "Daily posting limit of %d posts reached. The post was rejected." -msgstr "" - -#: include/api.php:925 -#, php-format -msgid "Weekly posting limit of %d posts reached. The post was rejected." -msgstr "" - -#: include/api.php:946 -#, php-format -msgid "Monthly posting limit of %d posts reached. The post was rejected." -msgstr "" - #: include/features.php:63 msgid "General Features" msgstr "" @@ -2779,6 +2089,10 @@ msgstr "" msgid "Clear notifications" msgstr "" +#: include/nav.php:75 view/theme/frio/theme.php:243 boot.php:1620 +msgid "Logout" +msgstr "" + #: include/nav.php:75 view/theme/frio/theme.php:243 msgid "End this session" msgstr "" @@ -2815,11 +2129,15 @@ msgstr "" msgid "Your personal notes" msgstr "" +#: include/nav.php:94 mod/bookmarklet.php:12 boot.php:1621 +msgid "Login" +msgstr "" + #: include/nav.php:94 msgid "Sign in" msgstr "" -#: include/nav.php:107 include/nav.php:163 mod/notifications.php:99 +#: include/nav.php:107 include/nav.php:163 mod/notifications.php:545 #: view/theme/diabook/theme.php:123 msgid "Home" msgstr "" @@ -2828,6 +2146,10 @@ msgstr "" msgid "Home Page" msgstr "" +#: include/nav.php:111 mod/register.php:280 boot.php:1596 +msgid "Register" +msgstr "" + #: include/nav.php:111 msgid "Create an account" msgstr "" @@ -2881,7 +2203,7 @@ msgstr "" msgid "Information about this friendica instance" msgstr "" -#: include/nav.php:160 mod/notifications.php:87 mod/admin.php:402 +#: include/nav.php:160 mod/admin.php:402 mod/notifications.php:533 #: view/theme/frio/theme.php:253 msgid "Network" msgstr "" @@ -2898,7 +2220,7 @@ msgstr "" msgid "Load Network page with no filters" msgstr "" -#: include/nav.php:168 mod/notifications.php:105 +#: include/nav.php:168 mod/notifications.php:551 msgid "Introductions" msgstr "" @@ -2906,7 +2228,7 @@ msgstr "" msgid "Friend Requests" msgstr "" -#: include/nav.php:171 mod/notifications.php:271 +#: include/nav.php:171 mod/notifications.php:87 msgid "Notifications" msgstr "" @@ -2992,6 +2314,25 @@ msgstr "" msgid "Site map" msgstr "" +#: include/like.php:163 include/conversation.php:125 +#: include/conversation.php:134 include/conversation.php:261 +#: include/conversation.php:270 include/diaspora.php:1402 mod/tagger.php:62 +#: mod/subthread.php:87 view/theme/diabook/theme.php:466 +#: view/theme/diabook/theme.php:475 +msgid "status" +msgstr "" + +#: include/like.php:182 include/conversation.php:141 include/diaspora.php:1398 +#: view/theme/diabook/theme.php:480 +#, php-format +msgid "%1$s likes %2$s's %3$s" +msgstr "" + +#: include/like.php:184 include/conversation.php:144 +#, php-format +msgid "%1$s doesn't like %2$s's %3$s" +msgstr "" + #: include/like.php:186 #, php-format msgid "%1$s is attending %2$s's %3$s" @@ -3007,6 +2348,10 @@ msgstr "" msgid "%1$s may attend %2$s's %3$s" msgstr "" +#: include/message.php:15 include/message.php:173 +msgid "[no subject]" +msgstr "" + #: include/acl_selectors.php:327 msgid "Post to Email" msgstr "" @@ -3042,7 +2387,7 @@ msgstr "" msgid "Example: bob@example.com, mary@example.com" msgstr "" -#: include/acl_selectors.php:349 mod/photos.php:1177 mod/photos.php:1562 +#: include/acl_selectors.php:349 mod/photos.php:1178 mod/photos.php:1563 msgid "Permissions" msgstr "" @@ -3050,29 +2395,595 @@ msgstr "" msgid "Close" msgstr "" -#: include/message.php:15 include/message.php:173 -msgid "[no subject]" +#: include/contact_selectors.php:32 +msgid "Unknown | Not categorised" msgstr "" -#: index.php:240 mod/apps.php:7 -msgid "You must be logged in to use addons. " +#: include/contact_selectors.php:33 +msgid "Block immediately" msgstr "" -#: index.php:284 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/contact_selectors.php:34 +msgid "Shady, spammer, self-marketer" msgstr "" -#: index.php:287 mod/help.php:56 -msgid "Page not found." +#: include/contact_selectors.php:35 +msgid "Known to me, but no opinion" msgstr "" -#: index.php:396 mod/profperm.php:19 mod/group.php:72 -msgid "Permission denied" +#: include/contact_selectors.php:36 +msgid "OK, probably harmless" msgstr "" -#: index.php:447 -msgid "toggle mobile" +#: include/contact_selectors.php:37 +msgid "Reputable, has my trust" +msgstr "" + +#: include/contact_selectors.php:56 mod/admin.php:859 +msgid "Frequently" +msgstr "" + +#: include/contact_selectors.php:57 mod/admin.php:860 +msgid "Hourly" +msgstr "" + +#: include/contact_selectors.php:58 mod/admin.php:861 +msgid "Twice daily" +msgstr "" + +#: include/contact_selectors.php:59 mod/admin.php:862 +msgid "Daily" +msgstr "" + +#: include/contact_selectors.php:60 +msgid "Weekly" +msgstr "" + +#: include/contact_selectors.php:61 +msgid "Monthly" +msgstr "" + +#: include/contact_selectors.php:76 mod/dfrn_request.php:867 +msgid "Friendica" +msgstr "" + +#: include/contact_selectors.php:77 +msgid "OStatus" +msgstr "" + +#: include/contact_selectors.php:78 +msgid "RSS/Atom" +msgstr "" + +#: include/contact_selectors.php:79 include/contact_selectors.php:86 +#: mod/admin.php:1371 mod/admin.php:1384 mod/admin.php:1396 mod/admin.php:1414 +msgid "Email" +msgstr "" + +#: include/contact_selectors.php:80 mod/settings.php:827 +#: mod/dfrn_request.php:869 +msgid "Diaspora" +msgstr "" + +#: include/contact_selectors.php:81 +msgid "Facebook" +msgstr "" + +#: include/contact_selectors.php:82 +msgid "Zot!" +msgstr "" + +#: include/contact_selectors.php:83 +msgid "LinkedIn" +msgstr "" + +#: include/contact_selectors.php:84 +msgid "XMPP/IM" +msgstr "" + +#: include/contact_selectors.php:85 +msgid "MySpace" +msgstr "" + +#: include/contact_selectors.php:87 +msgid "Google+" +msgstr "" + +#: include/contact_selectors.php:88 +msgid "pump.io" +msgstr "" + +#: include/contact_selectors.php:89 +msgid "Twitter" +msgstr "" + +#: include/contact_selectors.php:90 +msgid "Diaspora Connector" +msgstr "" + +#: include/contact_selectors.php:91 +msgid "GNU Social" +msgstr "" + +#: include/contact_selectors.php:92 +msgid "App.net" +msgstr "" + +#: include/contact_selectors.php:103 +msgid "Hubzilla/Redmatrix" +msgstr "" + +#: include/conversation.php:147 +#, php-format +msgid "%1$s attends %2$s's %3$s" +msgstr "" + +#: include/conversation.php:150 +#, php-format +msgid "%1$s doesn't attend %2$s's %3$s" +msgstr "" + +#: include/conversation.php:153 +#, php-format +msgid "%1$s attends maybe %2$s's %3$s" +msgstr "" + +#: include/conversation.php:185 mod/dfrn_confirm.php:473 +#, php-format +msgid "%1$s is now friends with %2$s" +msgstr "" + +#: include/conversation.php:219 +#, php-format +msgid "%1$s poked %2$s" +msgstr "" + +#: include/conversation.php:239 mod/mood.php:62 +#, php-format +msgid "%1$s is currently %2$s" +msgstr "" + +#: include/conversation.php:278 mod/tagger.php:95 +#, php-format +msgid "%1$s tagged %2$s's %3$s with %4$s" +msgstr "" + +#: include/conversation.php:303 +msgid "post/item" +msgstr "" + +#: include/conversation.php:304 +#, php-format +msgid "%1$s marked %2$s's %3$s as favorite" +msgstr "" + +#: include/conversation.php:587 mod/photos.php:1635 mod/profiles.php:345 +#: mod/content.php:372 +msgid "Likes" +msgstr "" + +#: include/conversation.php:587 mod/photos.php:1635 mod/profiles.php:349 +#: mod/content.php:372 +msgid "Dislikes" +msgstr "" + +#: include/conversation.php:588 include/conversation.php:1471 +#: mod/photos.php:1636 mod/content.php:373 +msgid "Attending" +msgid_plural "Attending" +msgstr[0] "" +msgstr[1] "" + +#: include/conversation.php:588 mod/photos.php:1636 mod/content.php:373 +msgid "Not attending" +msgstr "" + +#: include/conversation.php:588 mod/photos.php:1636 mod/content.php:373 +msgid "Might attend" +msgstr "" + +#: include/conversation.php:710 mod/photos.php:1710 mod/content.php:453 +#: mod/content.php:758 object/Item.php:133 +msgid "Select" +msgstr "" + +#: include/conversation.php:711 mod/admin.php:1388 mod/group.php:171 +#: mod/settings.php:726 mod/contacts.php:806 mod/contacts.php:1021 +#: mod/photos.php:1711 mod/content.php:454 mod/content.php:759 +#: object/Item.php:134 +msgid "Delete" +msgstr "" + +#: include/conversation.php:755 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/conversation.php:767 object/Item.php:355 +msgid "Categories:" +msgstr "" + +#: include/conversation.php:768 object/Item.php:356 +msgid "Filed under:" +msgstr "" + +#: include/conversation.php:775 mod/content.php:497 mod/content.php:923 +#: object/Item.php:381 +#, php-format +msgid "%s from %s" +msgstr "" + +#: include/conversation.php:791 mod/content.php:513 +msgid "View in context" +msgstr "" + +#: include/conversation.php:793 include/conversation.php:1255 +#: mod/editpost.php:124 mod/wallmessage.php:156 mod/message.php:356 +#: mod/message.php:548 mod/photos.php:1598 mod/content.php:515 +#: mod/content.php:948 object/Item.php:406 +msgid "Please wait" +msgstr "" + +#: include/conversation.php:872 +msgid "remove" +msgstr "" + +#: include/conversation.php:876 +msgid "Delete Selected Items" +msgstr "" + +#: include/conversation.php:964 +msgid "Follow Thread" +msgstr "" + +#: include/conversation.php:965 include/Contact.php:364 +msgid "View Status" +msgstr "" + +#: include/conversation.php:966 include/conversation.php:980 +#: include/Contact.php:310 include/Contact.php:323 include/Contact.php:365 +#: mod/dirfind.php:203 mod/directory.php:163 mod/match.php:71 +#: mod/allfriends.php:65 mod/suggest.php:82 +msgid "View Profile" +msgstr "" + +#: include/conversation.php:967 include/Contact.php:366 +msgid "View Photos" +msgstr "" + +#: include/conversation.php:968 include/Contact.php:367 +msgid "Network Posts" +msgstr "" + +#: include/conversation.php:969 include/Contact.php:368 +msgid "Edit Contact" +msgstr "" + +#: include/conversation.php:970 include/Contact.php:370 +msgid "Send PM" +msgstr "" + +#: include/conversation.php:974 include/Contact.php:371 +msgid "Poke" +msgstr "" + +#: include/conversation.php:1088 +#, php-format +msgid "%s likes this." +msgstr "" + +#: include/conversation.php:1091 +#, php-format +msgid "%s doesn't like this." +msgstr "" + +#: include/conversation.php:1094 +#, php-format +msgid "%s attends." +msgstr "" + +#: include/conversation.php:1097 +#, php-format +msgid "%s doesn't attend." +msgstr "" + +#: include/conversation.php:1100 +#, php-format +msgid "%s attends maybe." +msgstr "" + +#: include/conversation.php:1110 +msgid "and" +msgstr "" + +#: include/conversation.php:1116 +#, php-format +msgid ", and %d other people" +msgstr "" + +#: include/conversation.php:1125 +#, php-format +msgid "%2$d people like this" +msgstr "" + +#: include/conversation.php:1126 +#, php-format +msgid "%s like this." +msgstr "" + +#: include/conversation.php:1129 +#, php-format +msgid "%2$d people don't like this" +msgstr "" + +#: include/conversation.php:1130 +#, php-format +msgid "%s don't like this." +msgstr "" + +#: include/conversation.php:1133 +#, php-format +msgid "%2$d people attend" +msgstr "" + +#: include/conversation.php:1134 +#, php-format +msgid "%s attend." +msgstr "" + +#: include/conversation.php:1137 +#, php-format +msgid "%2$d people don't attend" +msgstr "" + +#: include/conversation.php:1138 +#, php-format +msgid "%s don't attend." +msgstr "" + +#: include/conversation.php:1141 +#, php-format +msgid "%2$d people anttend maybe" +msgstr "" + +#: include/conversation.php:1142 +#, php-format +msgid "%s anttend maybe." +msgstr "" + +#: include/conversation.php:1181 include/conversation.php:1199 +msgid "Visible to everybody" +msgstr "" + +#: include/conversation.php:1182 include/conversation.php:1200 +#: 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/conversation.php:1183 include/conversation.php:1201 +msgid "Please enter a video link/URL:" +msgstr "" + +#: include/conversation.php:1184 include/conversation.php:1202 +msgid "Please enter an audio link/URL:" +msgstr "" + +#: include/conversation.php:1185 include/conversation.php:1203 +msgid "Tag term:" +msgstr "" + +#: include/conversation.php:1186 include/conversation.php:1204 +#: mod/filer.php:30 +msgid "Save to Folder:" +msgstr "" + +#: include/conversation.php:1187 include/conversation.php:1205 +msgid "Where are you right now?" +msgstr "" + +#: include/conversation.php:1188 +msgid "Delete item(s)?" +msgstr "" + +#: include/conversation.php:1236 mod/photos.php:1597 +msgid "Share" +msgstr "" + +#: include/conversation.php:1237 mod/editpost.php:110 mod/wallmessage.php:154 +#: mod/message.php:354 mod/message.php:545 +msgid "Upload photo" +msgstr "" + +#: include/conversation.php:1238 mod/editpost.php:111 +msgid "upload photo" +msgstr "" + +#: include/conversation.php:1239 mod/editpost.php:112 +msgid "Attach file" +msgstr "" + +#: include/conversation.php:1240 mod/editpost.php:113 +msgid "attach file" +msgstr "" + +#: include/conversation.php:1241 mod/editpost.php:114 mod/wallmessage.php:155 +#: mod/message.php:355 mod/message.php:546 +msgid "Insert web link" +msgstr "" + +#: include/conversation.php:1242 mod/editpost.php:115 +msgid "web link" +msgstr "" + +#: include/conversation.php:1243 mod/editpost.php:116 +msgid "Insert video link" +msgstr "" + +#: include/conversation.php:1244 mod/editpost.php:117 +msgid "video link" +msgstr "" + +#: include/conversation.php:1245 mod/editpost.php:118 +msgid "Insert audio link" +msgstr "" + +#: include/conversation.php:1246 mod/editpost.php:119 +msgid "audio link" +msgstr "" + +#: include/conversation.php:1247 mod/editpost.php:120 +msgid "Set your location" +msgstr "" + +#: include/conversation.php:1248 mod/editpost.php:121 +msgid "set location" +msgstr "" + +#: include/conversation.php:1249 mod/editpost.php:122 +msgid "Clear browser location" +msgstr "" + +#: include/conversation.php:1250 mod/editpost.php:123 +msgid "clear location" +msgstr "" + +#: include/conversation.php:1252 mod/editpost.php:137 +msgid "Set title" +msgstr "" + +#: include/conversation.php:1254 mod/editpost.php:139 +msgid "Categories (comma-separated list)" +msgstr "" + +#: include/conversation.php:1256 mod/editpost.php:125 +msgid "Permission settings" +msgstr "" + +#: include/conversation.php:1257 mod/editpost.php:154 +msgid "permissions" +msgstr "" + +#: include/conversation.php:1265 mod/editpost.php:134 +msgid "Public post" +msgstr "" + +#: include/conversation.php:1270 mod/events.php:505 mod/editpost.php:145 +#: mod/photos.php:1619 mod/photos.php:1667 mod/photos.php:1755 +#: mod/content.php:737 object/Item.php:729 +msgid "Preview" +msgstr "" + +#: include/conversation.php:1280 +msgid "Post to Groups" +msgstr "" + +#: include/conversation.php:1281 +msgid "Post to Contacts" +msgstr "" + +#: include/conversation.php:1282 +msgid "Private post" +msgstr "" + +#: include/conversation.php:1288 mod/editpost.php:153 +msgid "Browser" +msgstr "" + +#: include/conversation.php:1443 +msgid "View all" +msgstr "" + +#: include/conversation.php:1465 +msgid "Like" +msgid_plural "Likes" +msgstr[0] "" +msgstr[1] "" + +#: include/conversation.php:1468 +msgid "Dislike" +msgid_plural "Dislikes" +msgstr[0] "" +msgstr[1] "" + +#: include/conversation.php:1474 +msgid "Not Attending" +msgid_plural "Not Attending" +msgstr[0] "" +msgstr[1] "" + +#: include/diaspora.php:1954 +msgid "Sharing notification from Diaspora network" +msgstr "" + +#: include/diaspora.php:2854 +msgid "Attachments:" +msgstr "" + +#: include/network.php:595 +msgid "view full size" +msgstr "" + +#: include/plugin.php:522 include/plugin.php:524 +msgid "Click here to upgrade." +msgstr "" + +#: include/plugin.php:530 +msgid "This action exceeds the limits set by your subscription plan." +msgstr "" + +#: include/plugin.php:535 +msgid "This action is not available under your subscription plan." +msgstr "" + +#: include/Contact.php:119 +msgid "stopped following" +msgstr "" + +#: include/Contact.php:369 +msgid "Drop Contact" +msgstr "" + +#: include/api.php:974 +#, php-format +msgid "Daily posting limit of %d posts reached. The post was rejected." +msgstr "" + +#: include/api.php:994 +#, php-format +msgid "Weekly posting limit of %d posts reached. The post was rejected." +msgstr "" + +#: include/api.php:1015 +#, php-format +msgid "Monthly posting limit of %d posts reached. The post was rejected." +msgstr "" + +#: include/dbstructure.php:26 +#, php-format +msgid "" +"\n" +"\t\t\tThe friendica developers released update %s recently,\n" +"\t\t\tbut when I tried to install it, something went terribly wrong.\n" +"\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n" +"\t\t\tfriendica developer if you can not help me on your own. My database " +"might be invalid." +msgstr "" + +#: include/dbstructure.php:31 +#, php-format +msgid "" +"The error message is\n" +"[pre]%s[/pre]" +msgstr "" + +#: include/dbstructure.php:153 +msgid "Errors encountered creating database tables." +msgstr "" + +#: include/dbstructure.php:230 +msgid "Errors encountered performing database changes." msgstr "" #: mod/regmod.php:55 @@ -3121,11 +3032,11 @@ msgstr "" msgid "Welcome to %s" msgstr "" -#: mod/notify.php:60 mod/notifications.php:387 +#: mod/notify.php:60 mod/notifications.php:338 msgid "No more system notifications." msgstr "" -#: mod/notify.php:64 mod/notifications.php:391 +#: mod/notify.php:64 mod/notifications.php:318 msgid "System Notifications" msgstr "" @@ -3134,8 +3045,8 @@ msgid "Remove term" msgstr "" #: mod/search.php:93 mod/search.php:99 mod/directory.php:37 -#: mod/viewcontacts.php:35 mod/videos.php:197 mod/photos.php:963 -#: mod/display.php:199 mod/community.php:22 mod/dfrn_request.php:789 +#: mod/viewcontacts.php:35 mod/videos.php:197 mod/display.php:199 +#: mod/community.php:22 mod/dfrn_request.php:790 mod/photos.php:964 msgid "Public access denied." msgstr "" @@ -3160,263 +3071,11 @@ msgstr "" msgid "Items tagged with: %s" msgstr "" -#: mod/search.php:232 mod/contacts.php:790 mod/network.php:146 +#: mod/search.php:232 mod/network.php:146 mod/contacts.php:795 #, php-format msgid "Results for: %s" msgstr "" -#: mod/notifications.php:29 -msgid "Invalid request identifier." -msgstr "" - -#: mod/notifications.php:38 mod/notifications.php:182 -#: mod/notifications.php:262 -msgid "Discard" -msgstr "" - -#: mod/notifications.php:54 mod/notifications.php:181 -#: mod/notifications.php:261 mod/contacts.php:604 mod/contacts.php:799 -#: mod/contacts.php:1000 -msgid "Ignore" -msgstr "" - -#: mod/notifications.php:81 -msgid "System" -msgstr "" - -#: mod/notifications.php:93 mod/profiles.php:696 mod/network.php:844 -msgid "Personal" -msgstr "" - -#: mod/notifications.php:130 -msgid "Show Ignored Requests" -msgstr "" - -#: mod/notifications.php:130 -msgid "Hide Ignored Requests" -msgstr "" - -#: mod/notifications.php:166 mod/notifications.php:236 -msgid "Notification type: " -msgstr "" - -#: mod/notifications.php:167 -msgid "Friend Suggestion" -msgstr "" - -#: mod/notifications.php:169 -#, php-format -msgid "suggested by %s" -msgstr "" - -#: mod/notifications.php:174 mod/notifications.php:253 mod/contacts.php:610 -msgid "Hide this contact from others" -msgstr "" - -#: mod/notifications.php:175 mod/notifications.php:254 -msgid "Post a new friend activity" -msgstr "" - -#: mod/notifications.php:175 mod/notifications.php:254 -msgid "if applicable" -msgstr "" - -#: mod/notifications.php:178 mod/notifications.php:259 mod/admin.php:1386 -msgid "Approve" -msgstr "" - -#: mod/notifications.php:198 -msgid "Claims to be known to you: " -msgstr "" - -#: mod/notifications.php:198 -msgid "yes" -msgstr "" - -#: mod/notifications.php:198 -msgid "no" -msgstr "" - -#: mod/notifications.php:199 -msgid "" -"Shall your connection be bidirectional or not? \"Friend\" implies that you " -"allow to read and you subscribe to their posts. \"Fan/Admirer\" means that " -"you allow to read but you do not want to read theirs. Approve as: " -msgstr "" - -#: mod/notifications.php:202 -msgid "" -"Shall your connection be bidirectional or not? \"Friend\" implies that you " -"allow to read and you subscribe to their posts. \"Sharer\" means that you " -"allow to read but you do not want to read theirs. Approve as: " -msgstr "" - -#: mod/notifications.php:210 -msgid "Friend" -msgstr "" - -#: mod/notifications.php:211 -msgid "Sharer" -msgstr "" - -#: mod/notifications.php:211 -msgid "Fan/Admirer" -msgstr "" - -#: mod/notifications.php:237 -msgid "Friend/Connect Request" -msgstr "" - -#: mod/notifications.php:237 -msgid "New Follower" -msgstr "" - -#: mod/notifications.php:257 mod/contacts.php:621 mod/follow.php:126 -msgid "Profile URL" -msgstr "" - -#: mod/notifications.php:268 -msgid "No introductions." -msgstr "" - -#: mod/notifications.php:309 mod/notifications.php:438 -#: mod/notifications.php:529 -#, php-format -msgid "%s liked %s's post" -msgstr "" - -#: mod/notifications.php:319 mod/notifications.php:448 -#: mod/notifications.php:539 -#, php-format -msgid "%s disliked %s's post" -msgstr "" - -#: mod/notifications.php:334 mod/notifications.php:463 -#: mod/notifications.php:554 -#, php-format -msgid "%s is now friends with %s" -msgstr "" - -#: mod/notifications.php:341 mod/notifications.php:470 -#, php-format -msgid "%s created a new post" -msgstr "" - -#: mod/notifications.php:342 mod/notifications.php:471 -#: mod/notifications.php:564 -#, php-format -msgid "%s commented on %s's post" -msgstr "" - -#: mod/notifications.php:357 -msgid "No more network notifications." -msgstr "" - -#: mod/notifications.php:361 -msgid "Network Notifications" -msgstr "" - -#: mod/notifications.php:486 -msgid "No more personal notifications." -msgstr "" - -#: mod/notifications.php:490 -msgid "Personal Notifications" -msgstr "" - -#: mod/notifications.php:571 -msgid "No more home notifications." -msgstr "" - -#: mod/notifications.php:575 -msgid "Home Notifications" -msgstr "" - -#: mod/dfrn_confirm.php:65 mod/profiles.php:18 mod/profiles.php:133 -#: mod/profiles.php:179 mod/profiles.php:610 -msgid "Profile not found." -msgstr "" - -#: mod/dfrn_confirm.php:121 mod/fsuggest.php:20 mod/fsuggest.php:92 -#: mod/crepair.php:114 -msgid "Contact not found." -msgstr "" - -#: mod/dfrn_confirm.php:122 -msgid "" -"This may occasionally happen if contact was requested by both persons and it " -"has already been approved." -msgstr "" - -#: mod/dfrn_confirm.php:241 -msgid "Response from remote site was not understood." -msgstr "" - -#: mod/dfrn_confirm.php:250 mod/dfrn_confirm.php:255 -msgid "Unexpected response from remote site: " -msgstr "" - -#: mod/dfrn_confirm.php:264 -msgid "Confirmation completed successfully." -msgstr "" - -#: mod/dfrn_confirm.php:266 mod/dfrn_confirm.php:280 mod/dfrn_confirm.php:287 -msgid "Remote site reported: " -msgstr "" - -#: mod/dfrn_confirm.php:278 -msgid "Temporary failure. Please wait and try again." -msgstr "" - -#: mod/dfrn_confirm.php:285 -msgid "Introduction failed or was revoked." -msgstr "" - -#: mod/dfrn_confirm.php:414 -msgid "Unable to set contact photo." -msgstr "" - -#: mod/dfrn_confirm.php:552 -#, php-format -msgid "No user record found for '%s' " -msgstr "" - -#: mod/dfrn_confirm.php:562 -msgid "Our site encryption key is apparently messed up." -msgstr "" - -#: mod/dfrn_confirm.php:573 -msgid "Empty site URL was provided or URL could not be decrypted by us." -msgstr "" - -#: mod/dfrn_confirm.php:594 -msgid "Contact record was not found for you on our site." -msgstr "" - -#: mod/dfrn_confirm.php:608 -#, php-format -msgid "Site public key not available in contact record for URL %s." -msgstr "" - -#: mod/dfrn_confirm.php:628 -msgid "" -"The ID provided by your system is a duplicate on our system. It should work " -"if you try again." -msgstr "" - -#: mod/dfrn_confirm.php:639 -msgid "Unable to set your contact credentials on our system." -msgstr "" - -#: mod/dfrn_confirm.php:698 -msgid "Unable to update your contact profile details on our system" -msgstr "" - -#: mod/dfrn_confirm.php:770 -#, php-format -msgid "%1$s has joined %2$s" -msgstr "" - #: mod/friendica.php:70 msgid "This is Friendica, version" msgstr "" @@ -3507,6 +3166,10 @@ msgid "" "Password reset failed." msgstr "" +#: mod/lostpass.php:109 boot.php:1635 +msgid "Password Reset" +msgstr "" + #: mod/lostpass.php:110 msgid "Your password has been reset as requested." msgstr "" @@ -3571,6 +3234,10 @@ msgid "" "your email for further instructions." msgstr "" +#: mod/lostpass.php:161 boot.php:1623 +msgid "Nickname or Email: " +msgstr "" + #: mod/lostpass.php:162 msgid "Reset" msgstr "" @@ -3583,25 +3250,39 @@ msgstr "" msgid "Help:" msgstr "" +#: 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:284 +msgid "Not Found" +msgstr "" + +#: mod/help.php:56 index.php:287 +msgid "Page not found." +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." msgstr "" -#: mod/wall_upload.php:151 mod/photos.php:805 mod/profile_photo.php:150 +#: mod/wall_upload.php:151 mod/profile_photo.php:150 mod/photos.php:806 #, php-format msgid "Image exceeds size limit of %s" msgstr "" -#: mod/wall_upload.php:188 mod/photos.php:845 mod/profile_photo.php:159 +#: mod/wall_upload.php:188 mod/profile_photo.php:159 mod/photos.php:846 msgid "Unable to process image." msgstr "" -#: mod/wall_upload.php:221 mod/photos.php:872 mod/profile_photo.php:307 +#: mod/wall_upload.php:221 mod/profile_photo.php:307 mod/photos.php:873 msgid "Image upload failed." msgstr "" +#: mod/fsuggest.php:20 mod/fsuggest.php:92 mod/crepair.php:114 +#: mod/dfrn_confirm.php:122 +msgid "Contact not found." +msgstr "" + #: mod/fsuggest.php:63 msgid "Friend suggestion sent." msgstr "" @@ -3615,18 +3296,17 @@ msgstr "" msgid "Suggest a friend for %s" msgstr "" -#: mod/fsuggest.php:107 mod/events.php:507 mod/invite.php:140 -#: mod/crepair.php:179 mod/content.php:728 mod/profiles.php:681 -#: mod/poke.php:199 mod/photos.php:1124 mod/photos.php:1248 -#: mod/photos.php:1566 mod/photos.php:1617 mod/photos.php:1665 -#: mod/photos.php:1753 mod/install.php:272 mod/install.php:312 -#: mod/contacts.php:575 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/cleanzero/config.php:80 view/theme/quattro/config.php:64 -#: view/theme/dispy/config.php:70 view/theme/vier/config.php:107 -#: view/theme/diabook/theme.php:633 view/theme/diabook/config.php:148 -#: view/theme/duepuntozero/config.php:59 +#: mod/fsuggest.php:107 mod/events.php:507 mod/invite.php:140 mod/poke.php:199 +#: mod/install.php:272 mod/install.php:312 mod/mood.php:137 +#: mod/localtime.php:45 mod/message.php:357 mod/message.php:547 +#: mod/manage.php:143 mod/contacts.php:577 mod/crepair.php:154 +#: mod/photos.php:1125 mod/photos.php:1249 mod/photos.php:1567 +#: mod/photos.php:1618 mod/photos.php:1666 mod/photos.php:1754 +#: mod/profiles.php:682 mod/content.php:728 object/Item.php:720 +#: view/theme/frio/config.php:59 view/theme/cleanzero/config.php:80 +#: view/theme/quattro/config.php:64 view/theme/dispy/config.php:70 +#: view/theme/vier/config.php:107 view/theme/diabook/theme.php:633 +#: view/theme/diabook/config.php:148 view/theme/duepuntozero/config.php:59 msgid "Submit" msgstr "" @@ -3674,7 +3354,7 @@ msgstr "" msgid "Event Starts:" msgstr "" -#: mod/events.php:485 mod/events.php:497 mod/profiles.php:709 +#: mod/events.php:485 mod/events.php:497 mod/profiles.php:710 msgid "Required" msgstr "" @@ -3773,13 +3453,13 @@ msgid "" "select \"Export account\"" msgstr "" -#: mod/nogroup.php:41 mod/viewcontacts.php:97 mod/contacts.php:584 -#: mod/contacts.php:939 +#: mod/nogroup.php:41 mod/viewcontacts.php:97 mod/contacts.php:586 +#: mod/contacts.php:944 #, php-format msgid "Visit %s's profile [%s]" msgstr "" -#: mod/nogroup.php:42 mod/contacts.php:940 +#: mod/nogroup.php:42 mod/contacts.php:945 msgid "Edit contact" msgstr "" @@ -3921,9 +3601,9 @@ msgid "" "important, please visit http://friendica.com" msgstr "" -#: mod/fbrowser.php:41 mod/fbrowser.php:62 mod/photos.php:62 -#: mod/photos.php:192 mod/photos.php:1106 mod/photos.php:1232 -#: mod/photos.php:1255 mod/photos.php:1825 mod/photos.php:1837 +#: mod/fbrowser.php:41 mod/fbrowser.php:62 mod/photos.php:63 +#: mod/photos.php:193 mod/photos.php:1107 mod/photos.php:1233 +#: mod/photos.php:1256 mod/photos.php:1826 mod/photos.php:1838 #: view/theme/diabook/theme.php:499 msgid "Contact Photos" msgstr "" @@ -3936,6 +3616,10 @@ msgstr "" msgid "System down for maintenance" msgstr "" +#: mod/profperm.php:19 mod/group.php:72 index.php:396 +msgid "Permission denied" +msgstr "" + #: mod/profperm.php:25 mod/profperm.php:56 msgid "Invalid profile identifier." msgstr "" @@ -3960,98 +3644,6 @@ msgstr "" msgid "No contacts." msgstr "" -#: mod/crepair.php:87 -msgid "Contact settings applied." -msgstr "" - -#: mod/crepair.php:89 -msgid "Contact update failed." -msgstr "" - -#: mod/crepair.php:120 -msgid "" -"WARNING: This is highly advanced and if you enter incorrect " -"information your communications with this contact may stop working." -msgstr "" - -#: mod/crepair.php:121 -msgid "" -"Please use your browser 'Back' button now if you are " -"uncertain what to do on this page." -msgstr "" - -#: mod/crepair.php:134 mod/crepair.php:136 -msgid "No mirroring" -msgstr "" - -#: mod/crepair.php:134 -msgid "Mirror as forwarded posting" -msgstr "" - -#: mod/crepair.php:134 mod/crepair.php:136 -msgid "Mirror as my own posting" -msgstr "" - -#: mod/crepair.php:150 -msgid "Return to contact editor" -msgstr "" - -#: mod/crepair.php:152 -msgid "Refetch contact data" -msgstr "" - -#: mod/crepair.php:153 mod/admin.php:1371 mod/admin.php:1384 -#: mod/admin.php:1396 mod/admin.php:1412 mod/settings.php:665 -#: mod/settings.php:691 -msgid "Name" -msgstr "" - -#: mod/crepair.php:154 -msgid "Account Nickname" -msgstr "" - -#: mod/crepair.php:155 -msgid "@Tagname - overrides Name/Nickname" -msgstr "" - -#: mod/crepair.php:156 -msgid "Account URL" -msgstr "" - -#: mod/crepair.php:157 -msgid "Friend Request URL" -msgstr "" - -#: mod/crepair.php:158 -msgid "Friend Confirm URL" -msgstr "" - -#: mod/crepair.php:159 -msgid "Notification Endpoint URL" -msgstr "" - -#: mod/crepair.php:160 -msgid "Poll/Feed URL" -msgstr "" - -#: mod/crepair.php:161 -msgid "New photo from this URL" -msgstr "" - -#: mod/crepair.php:162 -msgid "Remote Self" -msgstr "" - -#: mod/crepair.php:165 -msgid "Mirror postings from this contact" -msgstr "" - -#: mod/crepair.php:167 -msgid "" -"Mark this contact as remote_self, this will cause friendica to repost new " -"entries from this contact." -msgstr "" - #: mod/tagrm.php:41 msgid "Tag removed" msgstr "" @@ -4271,7 +3863,7 @@ msgstr "" msgid "Global community page" msgstr "" -#: mod/admin.php:857 mod/contacts.php:529 +#: mod/admin.php:857 mod/contacts.php:530 msgid "Never" msgstr "" @@ -4279,7 +3871,7 @@ msgstr "" msgid "At post arrival" msgstr "" -#: mod/admin.php:866 mod/contacts.php:556 +#: mod/admin.php:866 mod/contacts.php:557 msgid "Disabled" msgstr "" @@ -5223,6 +4815,11 @@ msgstr "" msgid "User '%s' blocked" msgstr "" +#: mod/admin.php:1371 mod/admin.php:1384 mod/admin.php:1396 mod/admin.php:1412 +#: mod/settings.php:665 mod/settings.php:691 mod/crepair.php:165 +msgid "Name" +msgstr "" + #: mod/admin.php:1371 mod/admin.php:1396 msgid "Register date" msgstr "" @@ -5263,17 +4860,21 @@ msgstr "" msgid "No registrations." msgstr "" +#: mod/admin.php:1386 mod/notifications.php:139 mod/notifications.php:225 +msgid "Approve" +msgstr "" + #: mod/admin.php:1387 msgid "Deny" msgstr "" -#: mod/admin.php:1389 mod/contacts.php:603 mod/contacts.php:798 -#: mod/contacts.php:992 +#: mod/admin.php:1389 mod/contacts.php:605 mod/contacts.php:803 +#: mod/contacts.php:997 msgid "Block" msgstr "" -#: mod/admin.php:1390 mod/contacts.php:603 mod/contacts.php:798 -#: mod/contacts.php:992 +#: mod/admin.php:1390 mod/contacts.php:605 mod/contacts.php:803 +#: mod/contacts.php:997 msgid "Unblock" msgstr "" @@ -5485,164 +5086,6 @@ msgstr "" msgid "calendar" msgstr "" -#: mod/content.php:119 mod/network.php:468 -msgid "No such group" -msgstr "" - -#: mod/content.php:130 mod/network.php:495 mod/group.php:193 -msgid "Group is empty" -msgstr "" - -#: mod/content.php:135 mod/network.php:499 -#, php-format -msgid "Group: %s" -msgstr "" - -#: mod/content.php:325 object/Item.php:95 -msgid "This entry was edited" -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:1405 object/Item.php:117 -msgid "Private Message" -msgstr "" - -#: mod/content.php:702 mod/photos.php:1594 object/Item.php:263 -msgid "I like this (toggle)" -msgstr "" - -#: mod/content.php:702 object/Item.php:263 -msgid "like" -msgstr "" - -#: mod/content.php:703 mod/photos.php:1595 object/Item.php:264 -msgid "I don't like this (toggle)" -msgstr "" - -#: mod/content.php:703 object/Item.php:264 -msgid "dislike" -msgstr "" - -#: mod/content.php:705 object/Item.php:266 -msgid "Share this" -msgstr "" - -#: mod/content.php:705 object/Item.php:266 -msgid "share" -msgstr "" - -#: mod/content.php:725 mod/photos.php:1614 mod/photos.php:1662 -#: mod/photos.php:1750 object/Item.php:717 -msgid "This is you" -msgstr "" - -#: mod/content.php:729 object/Item.php:721 -msgid "Bold" -msgstr "" - -#: mod/content.php:730 object/Item.php:722 -msgid "Italic" -msgstr "" - -#: mod/content.php:731 object/Item.php:723 -msgid "Underline" -msgstr "" - -#: mod/content.php:732 object/Item.php:724 -msgid "Quote" -msgstr "" - -#: mod/content.php:733 object/Item.php:725 -msgid "Code" -msgstr "" - -#: mod/content.php:734 object/Item.php:726 -msgid "Image" -msgstr "" - -#: mod/content.php:735 object/Item.php:727 -msgid "Link" -msgstr "" - -#: mod/content.php:736 object/Item.php:728 -msgid "Video" -msgstr "" - -#: mod/content.php:746 mod/settings.php:725 object/Item.php:122 -#: object/Item.php:124 -msgid "Edit" -msgstr "" - -#: mod/content.php:771 object/Item.php:227 -msgid "add star" -msgstr "" - -#: mod/content.php:772 object/Item.php:228 -msgid "remove star" -msgstr "" - -#: mod/content.php:773 object/Item.php:229 -msgid "toggle star status" -msgstr "" - -#: mod/content.php:776 object/Item.php:232 -msgid "starred" -msgstr "" - -#: mod/content.php:777 mod/content.php:798 object/Item.php:252 -msgid "add tag" -msgstr "" - -#: mod/content.php:787 object/Item.php:240 -msgid "ignore thread" -msgstr "" - -#: mod/content.php:788 object/Item.php:241 -msgid "unignore thread" -msgstr "" - -#: mod/content.php:789 object/Item.php:242 -msgid "toggle ignore status" -msgstr "" - -#: mod/content.php:792 mod/ostatus_subscribe.php:69 object/Item.php:245 -msgid "ignored" -msgstr "" - -#: mod/content.php:803 object/Item.php:137 -msgid "save to folder" -msgstr "" - -#: mod/content.php:848 object/Item.php:201 -msgid "I will attend" -msgstr "" - -#: mod/content.php:848 object/Item.php:201 -msgid "I will not attend" -msgstr "" - -#: mod/content.php:848 object/Item.php:201 -msgid "I might attend" -msgstr "" - -#: mod/content.php:912 object/Item.php:369 -msgid "to" -msgstr "" - -#: mod/content.php:913 object/Item.php:371 -msgid "Wall-to-Wall" -msgstr "" - -#: mod/content.php:914 object/Item.php:372 -msgid "via Wall-To-Wall:" -msgstr "" - #: mod/repair_ostatus.php:14 msgid "Resubscribing to OStatus contacts" msgstr "" @@ -5702,11 +5145,11 @@ msgstr "" msgid "No videos selected" msgstr "" -#: mod/videos.php:308 mod/photos.php:1074 +#: mod/videos.php:308 mod/photos.php:1075 msgid "Access to this item is restricted." msgstr "" -#: mod/videos.php:390 mod/photos.php:1877 +#: mod/videos.php:390 mod/photos.php:1878 msgid "View Album" msgstr "" @@ -5718,305 +5161,6 @@ msgstr "" msgid "Upload New Videos" msgstr "" -#: mod/profiles.php:37 -msgid "Profile deleted." -msgstr "" - -#: mod/profiles.php:55 mod/profiles.php:89 -msgid "Profile-" -msgstr "" - -#: mod/profiles.php:74 mod/profiles.php:117 -msgid "New profile created." -msgstr "" - -#: mod/profiles.php:95 -msgid "Profile unavailable to clone." -msgstr "" - -#: mod/profiles.php:189 -msgid "Profile Name is required." -msgstr "" - -#: mod/profiles.php:336 -msgid "Marital Status" -msgstr "" - -#: mod/profiles.php:340 -msgid "Romantic Partner" -msgstr "" - -#: mod/profiles.php:352 -msgid "Work/Employment" -msgstr "" - -#: mod/profiles.php:355 -msgid "Religion" -msgstr "" - -#: mod/profiles.php:359 -msgid "Political Views" -msgstr "" - -#: mod/profiles.php:363 -msgid "Gender" -msgstr "" - -#: mod/profiles.php:367 -msgid "Sexual Preference" -msgstr "" - -#: mod/profiles.php:371 -msgid "Homepage" -msgstr "" - -#: mod/profiles.php:375 mod/profiles.php:695 -msgid "Interests" -msgstr "" - -#: mod/profiles.php:379 -msgid "Address" -msgstr "" - -#: mod/profiles.php:386 mod/profiles.php:691 -msgid "Location" -msgstr "" - -#: mod/profiles.php:469 -msgid "Profile updated." -msgstr "" - -#: mod/profiles.php:556 -msgid " and " -msgstr "" - -#: mod/profiles.php:564 -msgid "public profile" -msgstr "" - -#: mod/profiles.php:567 -#, php-format -msgid "%1$s changed %2$s to “%3$s”" -msgstr "" - -#: mod/profiles.php:568 -#, php-format -msgid " - Visit %1$s's %2$s" -msgstr "" - -#: mod/profiles.php:571 -#, php-format -msgid "%1$s has an updated %2$s, changing %3$s." -msgstr "" - -#: mod/profiles.php:638 -msgid "Hide contacts and friends:" -msgstr "" - -#: mod/profiles.php:641 mod/profiles.php:645 mod/profiles.php:670 -#: mod/follow.php:110 mod/dfrn_request.php:860 mod/register.php:239 -#: mod/settings.php:1113 mod/settings.php:1119 mod/settings.php:1127 -#: mod/settings.php:1131 mod/settings.php:1136 mod/settings.php:1142 -#: mod/settings.php:1148 mod/settings.php:1154 mod/settings.php:1180 -#: mod/settings.php:1181 mod/settings.php:1182 mod/settings.php:1183 -#: mod/settings.php:1184 mod/api.php:106 -msgid "No" -msgstr "" - -#: mod/profiles.php:643 -msgid "Hide your contact/friend list from viewers of this profile?" -msgstr "" - -#: mod/profiles.php:667 -msgid "Show more profile fields:" -msgstr "" - -#: mod/profiles.php:679 -msgid "Profile Actions" -msgstr "" - -#: mod/profiles.php:680 -msgid "Edit Profile Details" -msgstr "" - -#: mod/profiles.php:682 -msgid "Change Profile Photo" -msgstr "" - -#: mod/profiles.php:683 -msgid "View this profile" -msgstr "" - -#: mod/profiles.php:685 -msgid "Create a new profile using these settings" -msgstr "" - -#: mod/profiles.php:686 -msgid "Clone this profile" -msgstr "" - -#: mod/profiles.php:687 -msgid "Delete this profile" -msgstr "" - -#: mod/profiles.php:689 -msgid "Basic information" -msgstr "" - -#: mod/profiles.php:690 -msgid "Profile picture" -msgstr "" - -#: mod/profiles.php:692 -msgid "Preferences" -msgstr "" - -#: mod/profiles.php:693 -msgid "Status information" -msgstr "" - -#: mod/profiles.php:694 -msgid "Additional information" -msgstr "" - -#: mod/profiles.php:697 -msgid "Relation" -msgstr "" - -#: mod/profiles.php:700 mod/newmember.php:36 mod/profile_photo.php:250 -msgid "Upload Profile Photo" -msgstr "" - -#: mod/profiles.php:701 -msgid "Your Gender:" -msgstr "" - -#: mod/profiles.php:702 -msgid " Marital Status:" -msgstr "" - -#: mod/profiles.php:704 -msgid "Example: fishing photography software" -msgstr "" - -#: mod/profiles.php:709 -msgid "Profile Name:" -msgstr "" - -#: mod/profiles.php:711 -msgid "" -"This is your public profile.
It may " -"be visible to anybody using the internet." -msgstr "" - -#: mod/profiles.php:712 -msgid "Your Full Name:" -msgstr "" - -#: mod/profiles.php:713 -msgid "Title/Description:" -msgstr "" - -#: mod/profiles.php:716 -msgid "Street Address:" -msgstr "" - -#: mod/profiles.php:717 -msgid "Locality/City:" -msgstr "" - -#: mod/profiles.php:718 -msgid "Region/State:" -msgstr "" - -#: mod/profiles.php:719 -msgid "Postal/Zip Code:" -msgstr "" - -#: mod/profiles.php:720 -msgid "Country:" -msgstr "" - -#: mod/profiles.php:724 -msgid "Who: (if applicable)" -msgstr "" - -#: mod/profiles.php:724 -msgid "Examples: cathy123, Cathy Williams, cathy@example.com" -msgstr "" - -#: mod/profiles.php:725 -msgid "Since [date]:" -msgstr "" - -#: mod/profiles.php:727 -msgid "Tell us about yourself..." -msgstr "" - -#: mod/profiles.php:728 -msgid "Homepage URL:" -msgstr "" - -#: mod/profiles.php:731 -msgid "Religious Views:" -msgstr "" - -#: mod/profiles.php:732 -msgid "Public Keywords:" -msgstr "" - -#: mod/profiles.php:732 -msgid "(Used for suggesting potential friends, can be seen by others)" -msgstr "" - -#: mod/profiles.php:733 -msgid "Private Keywords:" -msgstr "" - -#: mod/profiles.php:733 -msgid "(Used for searching profiles, never shown to others)" -msgstr "" - -#: mod/profiles.php:736 -msgid "Musical interests" -msgstr "" - -#: mod/profiles.php:737 -msgid "Books, literature" -msgstr "" - -#: mod/profiles.php:738 -msgid "Television" -msgstr "" - -#: mod/profiles.php:739 -msgid "Film/dance/culture/entertainment" -msgstr "" - -#: mod/profiles.php:740 -msgid "Hobbies/Interests" -msgstr "" - -#: mod/profiles.php:741 -msgid "Love/romance" -msgstr "" - -#: mod/profiles.php:742 -msgid "Work/employment" -msgstr "" - -#: mod/profiles.php:743 -msgid "School/education" -msgstr "" - -#: mod/profiles.php:744 -msgid "Contact information and Social Networks" -msgstr "" - -#: mod/profiles.php:786 -msgid "Edit/Manage Profiles" -msgstr "" - #: mod/credits.php:16 msgid "Credits" msgstr "" @@ -6052,184 +5196,6 @@ msgstr "" msgid "Make this post private" msgstr "" -#: mod/photos.php:100 mod/photos.php:1886 -msgid "Recent Photos" -msgstr "" - -#: mod/photos.php:103 mod/photos.php:1307 mod/photos.php:1888 -msgid "Upload New Photos" -msgstr "" - -#: mod/photos.php:117 mod/settings.php:36 -msgid "everybody" -msgstr "" - -#: mod/photos.php:181 -msgid "Contact information unavailable" -msgstr "" - -#: mod/photos.php:202 -msgid "Album not found." -msgstr "" - -#: mod/photos.php:232 mod/photos.php:244 mod/photos.php:1249 -msgid "Delete Album" -msgstr "" - -#: mod/photos.php:242 -msgid "Do you really want to delete this photo album and all its photos?" -msgstr "" - -#: mod/photos.php:322 mod/photos.php:333 mod/photos.php:1567 -msgid "Delete Photo" -msgstr "" - -#: mod/photos.php:331 -msgid "Do you really want to delete this photo?" -msgstr "" - -#: mod/photos.php:706 -#, php-format -msgid "%1$s was tagged in %2$s by %3$s" -msgstr "" - -#: mod/photos.php:706 -msgid "a photo" -msgstr "" - -#: mod/photos.php:813 -msgid "Image file is empty." -msgstr "" - -#: mod/photos.php:973 -msgid "No photos selected" -msgstr "" - -#: mod/photos.php:1134 -#, php-format -msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage." -msgstr "" - -#: mod/photos.php:1169 -msgid "Upload Photos" -msgstr "" - -#: mod/photos.php:1173 mod/photos.php:1244 -msgid "New album name: " -msgstr "" - -#: mod/photos.php:1174 -msgid "or existing album name: " -msgstr "" - -#: mod/photos.php:1175 -msgid "Do not show a status post for this upload" -msgstr "" - -#: mod/photos.php:1186 mod/photos.php:1571 mod/settings.php:1250 -msgid "Show to Groups" -msgstr "" - -#: mod/photos.php:1187 mod/photos.php:1572 mod/settings.php:1251 -msgid "Show to Contacts" -msgstr "" - -#: mod/photos.php:1188 -msgid "Private Photo" -msgstr "" - -#: mod/photos.php:1189 -msgid "Public Photo" -msgstr "" - -#: mod/photos.php:1257 -msgid "Edit Album" -msgstr "" - -#: mod/photos.php:1263 -msgid "Show Newest First" -msgstr "" - -#: mod/photos.php:1265 -msgid "Show Oldest First" -msgstr "" - -#: mod/photos.php:1293 mod/photos.php:1871 -msgid "View Photo" -msgstr "" - -#: mod/photos.php:1340 -msgid "Permission denied. Access to this item may be restricted." -msgstr "" - -#: mod/photos.php:1342 -msgid "Photo not available" -msgstr "" - -#: mod/photos.php:1398 -msgid "View photo" -msgstr "" - -#: mod/photos.php:1398 -msgid "Edit photo" -msgstr "" - -#: mod/photos.php:1399 -msgid "Use as profile photo" -msgstr "" - -#: mod/photos.php:1424 -msgid "View Full Size" -msgstr "" - -#: mod/photos.php:1510 -msgid "Tags: " -msgstr "" - -#: mod/photos.php:1513 -msgid "[Remove any tag]" -msgstr "" - -#: mod/photos.php:1553 -msgid "New album name" -msgstr "" - -#: mod/photos.php:1554 -msgid "Caption" -msgstr "" - -#: mod/photos.php:1555 -msgid "Add a Tag" -msgstr "" - -#: mod/photos.php:1555 -msgid "Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" -msgstr "" - -#: mod/photos.php:1556 -msgid "Do not rotate" -msgstr "" - -#: mod/photos.php:1557 -msgid "Rotate CW (right)" -msgstr "" - -#: mod/photos.php:1558 -msgid "Rotate CCW (left)" -msgstr "" - -#: mod/photos.php:1573 -msgid "Private photo" -msgstr "" - -#: mod/photos.php:1574 -msgid "Public photo" -msgstr "" - -#: mod/photos.php:1800 -msgid "Map" -msgstr "" - #: mod/install.php:139 msgid "Friendica Communications Server - Setup" msgstr "" @@ -6587,328 +5553,7 @@ msgstr "" msgid "Item was not found." msgstr "" -#: mod/contacts.php:128 -#, php-format -msgid "%d contact edited." -msgid_plural "%d contacts edited." -msgstr[0] "" -msgstr[1] "" - -#: mod/contacts.php:159 mod/contacts.php:368 -msgid "Could not access contact record." -msgstr "" - -#: mod/contacts.php:173 -msgid "Could not locate selected profile." -msgstr "" - -#: mod/contacts.php:206 -msgid "Contact updated." -msgstr "" - -#: mod/contacts.php:208 mod/dfrn_request.php:578 -msgid "Failed to update contact record." -msgstr "" - -#: mod/contacts.php:389 -msgid "Contact has been blocked" -msgstr "" - -#: mod/contacts.php:389 -msgid "Contact has been unblocked" -msgstr "" - -#: mod/contacts.php:400 -msgid "Contact has been ignored" -msgstr "" - -#: mod/contacts.php:400 -msgid "Contact has been unignored" -msgstr "" - -#: mod/contacts.php:412 -msgid "Contact has been archived" -msgstr "" - -#: mod/contacts.php:412 -msgid "Contact has been unarchived" -msgstr "" - -#: mod/contacts.php:439 mod/contacts.php:794 -msgid "Do you really want to delete this contact?" -msgstr "" - -#: mod/contacts.php:456 -msgid "Contact has been removed." -msgstr "" - -#: mod/contacts.php:497 -#, php-format -msgid "You are mutual friends with %s" -msgstr "" - -#: mod/contacts.php:501 -#, php-format -msgid "You are sharing with %s" -msgstr "" - -#: mod/contacts.php:506 -#, php-format -msgid "%s is sharing with you" -msgstr "" - -#: mod/contacts.php:526 -msgid "Private communications are not available for this contact." -msgstr "" - -#: mod/contacts.php:533 -msgid "(Update was successful)" -msgstr "" - -#: mod/contacts.php:533 -msgid "(Update was not successful)" -msgstr "" - -#: mod/contacts.php:535 mod/contacts.php:973 -msgid "Suggest friends" -msgstr "" - -#: mod/contacts.php:539 -#, php-format -msgid "Network type: %s" -msgstr "" - -#: mod/contacts.php:552 -msgid "Communications lost with this contact!" -msgstr "" - -#: mod/contacts.php:555 -msgid "Fetch further information for feeds" -msgstr "" - -#: mod/contacts.php:556 -msgid "Fetch information" -msgstr "" - -#: mod/contacts.php:556 -msgid "Fetch information and keywords" -msgstr "" - -#: mod/contacts.php:576 -msgid "Profile Visibility" -msgstr "" - -#: mod/contacts.php:577 -#, php-format -msgid "" -"Please choose the profile you would like to display to %s when viewing your " -"profile securely." -msgstr "" - -#: mod/contacts.php:578 -msgid "Contact Information / Notes" -msgstr "" - -#: mod/contacts.php:579 -msgid "Edit contact notes" -msgstr "" - -#: mod/contacts.php:585 -msgid "Block/Unblock contact" -msgstr "" - -#: mod/contacts.php:586 -msgid "Ignore contact" -msgstr "" - -#: mod/contacts.php:587 -msgid "Repair URL settings" -msgstr "" - -#: mod/contacts.php:588 -msgid "View conversations" -msgstr "" - -#: mod/contacts.php:594 -msgid "Last update:" -msgstr "" - -#: mod/contacts.php:596 -msgid "Update public posts" -msgstr "" - -#: mod/contacts.php:598 mod/contacts.php:983 -msgid "Update now" -msgstr "" - -#: mod/contacts.php:604 mod/contacts.php:799 mod/contacts.php:1000 -msgid "Unignore" -msgstr "" - -#: mod/contacts.php:607 -msgid "Currently blocked" -msgstr "" - -#: mod/contacts.php:608 -msgid "Currently ignored" -msgstr "" - -#: mod/contacts.php:609 -msgid "Currently archived" -msgstr "" - -#: mod/contacts.php:610 -msgid "" -"Replies/likes to your public posts may still be visible" -msgstr "" - -#: mod/contacts.php:611 -msgid "Notification for new posts" -msgstr "" - -#: mod/contacts.php:611 -msgid "Send a notification of every new post of this contact" -msgstr "" - -#: mod/contacts.php:614 -msgid "Blacklisted keywords" -msgstr "" - -#: mod/contacts.php:614 -msgid "" -"Comma separated list of keywords that should not be converted to hashtags, " -"when \"Fetch information and keywords\" is selected" -msgstr "" - -#: mod/contacts.php:629 -msgid "Actions" -msgstr "" - -#: mod/contacts.php:632 -msgid "Contact Settings" -msgstr "" - -#: mod/contacts.php:677 -msgid "Suggestions" -msgstr "" - -#: mod/contacts.php:680 -msgid "Suggest potential friends" -msgstr "" - -#: mod/contacts.php:685 mod/group.php:192 -msgid "All Contacts" -msgstr "" - -#: mod/contacts.php:688 -msgid "Show all contacts" -msgstr "" - -#: mod/contacts.php:693 -msgid "Unblocked" -msgstr "" - -#: mod/contacts.php:696 -msgid "Only show unblocked contacts" -msgstr "" - -#: mod/contacts.php:702 -msgid "Blocked" -msgstr "" - -#: mod/contacts.php:705 -msgid "Only show blocked contacts" -msgstr "" - -#: mod/contacts.php:711 -msgid "Ignored" -msgstr "" - -#: mod/contacts.php:714 -msgid "Only show ignored contacts" -msgstr "" - -#: mod/contacts.php:720 -msgid "Archived" -msgstr "" - -#: mod/contacts.php:723 -msgid "Only show archived contacts" -msgstr "" - -#: mod/contacts.php:729 -msgid "Hidden" -msgstr "" - -#: mod/contacts.php:732 -msgid "Only show hidden contacts" -msgstr "" - -#: mod/contacts.php:789 -msgid "Search your contacts" -msgstr "" - -#: mod/contacts.php:797 mod/settings.php:158 mod/settings.php:689 -msgid "Update" -msgstr "" - -#: mod/contacts.php:800 mod/contacts.php:1008 -msgid "Archive" -msgstr "" - -#: mod/contacts.php:800 mod/contacts.php:1008 -msgid "Unarchive" -msgstr "" - -#: mod/contacts.php:803 -msgid "Batch Actions" -msgstr "" - -#: mod/contacts.php:849 -msgid "View all contacts" -msgstr "" - -#: mod/contacts.php:856 mod/common.php:134 -msgid "Common Friends" -msgstr "" - -#: mod/contacts.php:859 -msgid "View all common friends" -msgstr "" - -#: mod/contacts.php:866 -msgid "Advanced Contact Settings" -msgstr "" - -#: mod/contacts.php:911 -msgid "Mutual Friendship" -msgstr "" - -#: mod/contacts.php:915 -msgid "is a fan of yours" -msgstr "" - -#: mod/contacts.php:919 -msgid "you are a fan of" -msgstr "" - -#: mod/contacts.php:994 -msgid "Toggle Blocked status" -msgstr "" - -#: mod/contacts.php:1002 -msgid "Toggle Ignored status" -msgstr "" - -#: mod/contacts.php:1010 -msgid "Toggle Archive status" -msgstr "" - -#: mod/contacts.php:1018 -msgid "Delete contact" -msgstr "" - -#: mod/follow.php:19 mod/dfrn_request.php:873 +#: mod/follow.php:19 mod/dfrn_request.php:874 msgid "Submit Request" msgstr "" @@ -6928,27 +5573,45 @@ msgstr "" msgid "The network type couldn't be detected. Contact can't be added." msgstr "" -#: mod/follow.php:109 mod/dfrn_request.php:859 +#: mod/follow.php:109 mod/dfrn_request.php:860 msgid "Please answer the following:" msgstr "" -#: mod/follow.php:110 mod/dfrn_request.php:860 +#: mod/follow.php:110 mod/dfrn_request.php:861 #, php-format msgid "Does %s know you?" msgstr "" -#: mod/follow.php:111 mod/dfrn_request.php:864 +#: mod/follow.php:110 mod/register.php:239 mod/settings.php:1113 +#: mod/settings.php:1119 mod/settings.php:1127 mod/settings.php:1131 +#: mod/settings.php:1136 mod/settings.php:1142 mod/settings.php:1148 +#: mod/settings.php:1154 mod/settings.php:1180 mod/settings.php:1181 +#: mod/settings.php:1182 mod/settings.php:1183 mod/settings.php:1184 +#: mod/api.php:106 mod/dfrn_request.php:861 mod/profiles.php:642 +#: mod/profiles.php:646 mod/profiles.php:671 +msgid "No" +msgstr "" + +#: mod/follow.php:111 mod/dfrn_request.php:865 msgid "Add a personal note:" msgstr "" -#: mod/follow.php:117 mod/dfrn_request.php:870 +#: mod/follow.php:117 mod/dfrn_request.php:871 msgid "Your Identity Address:" msgstr "" +#: mod/follow.php:126 mod/contacts.php:624 mod/notifications.php:219 +msgid "Profile URL" +msgstr "" + #: mod/follow.php:180 msgid "Contact added" msgstr "" +#: mod/apps.php:7 index.php:240 +msgid "You must be logged in to use addons. " +msgstr "" + #: mod/apps.php:11 msgid "Applications" msgstr "" @@ -6983,6 +5646,10 @@ msgstr "" msgid "No contacts in common." msgstr "" +#: mod/common.php:134 mod/contacts.php:861 +msgid "Common Friends" +msgstr "" + #: mod/newmember.php:6 msgid "Welcome to Friendica" msgstr "" @@ -7033,6 +5700,10 @@ msgid "" "potential friends know exactly how to find you." msgstr "" +#: mod/newmember.php:36 mod/profile_photo.php:250 mod/profiles.php:701 +msgid "Upload Profile Photo" +msgstr "" + #: mod/newmember.php:36 msgid "" "Upload a profile photo if you have not done so already. Studies have shown " @@ -7190,6 +5861,19 @@ msgstr[1] "" msgid "Private messages to this group are at risk of public disclosure." msgstr "" +#: mod/network.php:468 mod/content.php:119 +msgid "No such group" +msgstr "" + +#: mod/network.php:495 mod/group.php:193 mod/content.php:130 +msgid "Group is empty" +msgstr "" + +#: mod/network.php:499 mod/content.php:135 +#, php-format +msgid "Group: %s" +msgstr "" + #: mod/network.php:527 msgid "Private messages to this person are at risk of public disclosure." msgstr "" @@ -7214,6 +5898,10 @@ msgstr "" msgid "Sort by Post Date" msgstr "" +#: mod/network.php:844 mod/profiles.php:697 mod/notifications.php:539 +msgid "Personal" +msgstr "" + #: mod/network.php:847 msgid "Posts that mention or involve you" msgstr "" @@ -7319,149 +6007,8 @@ msgstr "" msgid "Members" msgstr "" -#: mod/dfrn_request.php:99 -msgid "This introduction has already been accepted." -msgstr "" - -#: mod/dfrn_request.php:122 mod/dfrn_request.php:517 -msgid "Profile location is not valid or does not contain profile information." -msgstr "" - -#: mod/dfrn_request.php:127 mod/dfrn_request.php:522 -msgid "Warning: profile location has no identifiable owner name." -msgstr "" - -#: mod/dfrn_request.php:129 mod/dfrn_request.php:524 -msgid "Warning: profile location has no profile photo." -msgstr "" - -#: mod/dfrn_request.php:132 mod/dfrn_request.php:527 -#, php-format -msgid "%d required parameter was not found at the given location" -msgid_plural "%d required parameters were not found at the given location" -msgstr[0] "" -msgstr[1] "" - -#: mod/dfrn_request.php:177 -msgid "Introduction complete." -msgstr "" - -#: mod/dfrn_request.php:219 -msgid "Unrecoverable protocol error." -msgstr "" - -#: mod/dfrn_request.php:247 -msgid "Profile unavailable." -msgstr "" - -#: mod/dfrn_request.php:272 -#, php-format -msgid "%s has received too many connection requests today." -msgstr "" - -#: mod/dfrn_request.php:273 -msgid "Spam protection measures have been invoked." -msgstr "" - -#: mod/dfrn_request.php:274 -msgid "Friends are advised to please try again in 24 hours." -msgstr "" - -#: mod/dfrn_request.php:336 -msgid "Invalid locator" -msgstr "" - -#: mod/dfrn_request.php:345 -msgid "Invalid email address." -msgstr "" - -#: mod/dfrn_request.php:372 -msgid "This account has not been configured for email. Request failed." -msgstr "" - -#: mod/dfrn_request.php:475 -msgid "You have already introduced yourself here." -msgstr "" - -#: mod/dfrn_request.php:479 -#, php-format -msgid "Apparently you are already friends with %s." -msgstr "" - -#: mod/dfrn_request.php:500 -msgid "Invalid profile URL." -msgstr "" - -#: mod/dfrn_request.php:599 -msgid "Your introduction has been sent." -msgstr "" - -#: mod/dfrn_request.php:639 -msgid "" -"Remote subscription can't be done for your network. Please subscribe " -"directly on your system." -msgstr "" - -#: mod/dfrn_request.php:662 -msgid "Please login to confirm introduction." -msgstr "" - -#: mod/dfrn_request.php:672 -msgid "" -"Incorrect identity currently logged in. Please login to this profile." -msgstr "" - -#: mod/dfrn_request.php:686 mod/dfrn_request.php:703 -msgid "Confirm" -msgstr "" - -#: mod/dfrn_request.php:698 -msgid "Hide this contact" -msgstr "" - -#: mod/dfrn_request.php:701 -#, php-format -msgid "Welcome home %s." -msgstr "" - -#: mod/dfrn_request.php:702 -#, php-format -msgid "Please confirm your introduction/connection request to %s." -msgstr "" - -#: mod/dfrn_request.php:831 -msgid "" -"Please enter your 'Identity Address' from one of the following supported " -"communications networks:" -msgstr "" - -#: mod/dfrn_request.php:852 -#, php-format -msgid "" -"If you are not yet a member of the free social web, follow this link to find a public Friendica site and join us today." -msgstr "" - -#: mod/dfrn_request.php:857 -msgid "Friend/Connection Request" -msgstr "" - -#: mod/dfrn_request.php:858 -msgid "" -"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, " -"testuser@identi.ca" -msgstr "" - -#: mod/dfrn_request.php:867 -msgid "StatusNet/Federated Social Web" -msgstr "" - -#: mod/dfrn_request.php:869 -#, php-format -msgid "" -" - please do not use this form. Instead, enter %s into your Diaspora search " -"bar." +#: mod/group.php:192 mod/contacts.php:690 +msgid "All Contacts" msgstr "" #: mod/profile_photo.php:44 @@ -7611,6 +6158,10 @@ msgstr "" msgid "Import your profile to this friendica instance" msgstr "" +#: mod/settings.php:36 mod/photos.php:118 +msgid "everybody" +msgstr "" + #: mod/settings.php:60 msgid "Display" msgstr "" @@ -7631,6 +6182,10 @@ msgstr "" msgid "Missing some important data!" msgstr "" +#: mod/settings.php:158 mod/settings.php:689 mod/contacts.php:802 +msgid "Update" +msgstr "" + #: mod/settings.php:269 msgid "Failed to connect with email account using the settings provided." msgstr "" @@ -7723,6 +6278,11 @@ msgstr "" msgid "Connected Apps" msgstr "" +#: mod/settings.php:725 mod/content.php:746 object/Item.php:122 +#: object/Item.php:124 +msgid "Edit" +msgstr "" + #: mod/settings.php:727 msgid "Client key starts with" msgstr "" @@ -8155,6 +6715,14 @@ msgstr "" msgid "(click to open/close)" msgstr "" +#: mod/settings.php:1250 mod/photos.php:1187 mod/photos.php:1572 +msgid "Show to Groups" +msgstr "" + +#: mod/settings.php:1251 mod/photos.php:1188 mod/photos.php:1573 +msgid "Show to Contacts" +msgstr "" + #: mod/settings.php:1252 msgid "Default Private Post" msgstr "" @@ -8441,6 +7009,10 @@ msgstr "" msgid "failed" msgstr "" +#: mod/ostatus_subscribe.php:69 mod/content.php:792 object/Item.php:245 +msgid "ignored" +msgstr "" + #: mod/dfrn_poll.php:104 mod/dfrn_poll.php:537 #, php-format msgid "%1$s welcomes %2$s" @@ -8532,6 +7104,1382 @@ msgstr "" msgid "Select an identity to manage: " msgstr "" +#: mod/contacts.php:128 +#, php-format +msgid "%d contact edited." +msgid_plural "%d contacts edited." +msgstr[0] "" +msgstr[1] "" + +#: mod/contacts.php:159 mod/contacts.php:368 +msgid "Could not access contact record." +msgstr "" + +#: mod/contacts.php:173 +msgid "Could not locate selected profile." +msgstr "" + +#: mod/contacts.php:206 +msgid "Contact updated." +msgstr "" + +#: mod/contacts.php:208 mod/dfrn_request.php:579 +msgid "Failed to update contact record." +msgstr "" + +#: mod/contacts.php:389 +msgid "Contact has been blocked" +msgstr "" + +#: mod/contacts.php:389 +msgid "Contact has been unblocked" +msgstr "" + +#: mod/contacts.php:400 +msgid "Contact has been ignored" +msgstr "" + +#: mod/contacts.php:400 +msgid "Contact has been unignored" +msgstr "" + +#: mod/contacts.php:412 +msgid "Contact has been archived" +msgstr "" + +#: mod/contacts.php:412 +msgid "Contact has been unarchived" +msgstr "" + +#: mod/contacts.php:437 +msgid "Drop contact" +msgstr "" + +#: mod/contacts.php:440 mod/contacts.php:799 +msgid "Do you really want to delete this contact?" +msgstr "" + +#: mod/contacts.php:457 +msgid "Contact has been removed." +msgstr "" + +#: mod/contacts.php:498 +#, php-format +msgid "You are mutual friends with %s" +msgstr "" + +#: mod/contacts.php:502 +#, php-format +msgid "You are sharing with %s" +msgstr "" + +#: mod/contacts.php:507 +#, php-format +msgid "%s is sharing with you" +msgstr "" + +#: mod/contacts.php:527 +msgid "Private communications are not available for this contact." +msgstr "" + +#: mod/contacts.php:534 +msgid "(Update was successful)" +msgstr "" + +#: mod/contacts.php:534 +msgid "(Update was not successful)" +msgstr "" + +#: mod/contacts.php:536 mod/contacts.php:978 +msgid "Suggest friends" +msgstr "" + +#: mod/contacts.php:540 +#, php-format +msgid "Network type: %s" +msgstr "" + +#: mod/contacts.php:553 +msgid "Communications lost with this contact!" +msgstr "" + +#: mod/contacts.php:556 +msgid "Fetch further information for feeds" +msgstr "" + +#: mod/contacts.php:557 +msgid "Fetch information" +msgstr "" + +#: mod/contacts.php:557 +msgid "Fetch information and keywords" +msgstr "" + +#: mod/contacts.php:575 +msgid "Contact" +msgstr "" + +#: mod/contacts.php:578 +msgid "Profile Visibility" +msgstr "" + +#: 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/contacts.php:580 +msgid "Contact Information / Notes" +msgstr "" + +#: mod/contacts.php:581 +msgid "Edit contact notes" +msgstr "" + +#: mod/contacts.php:587 +msgid "Block/Unblock contact" +msgstr "" + +#: mod/contacts.php:588 +msgid "Ignore contact" +msgstr "" + +#: mod/contacts.php:589 +msgid "Repair URL settings" +msgstr "" + +#: mod/contacts.php:590 +msgid "View conversations" +msgstr "" + +#: mod/contacts.php:596 +msgid "Last update:" +msgstr "" + +#: mod/contacts.php:598 +msgid "Update public posts" +msgstr "" + +#: mod/contacts.php:600 mod/contacts.php:988 +msgid "Update now" +msgstr "" + +#: mod/contacts.php:606 mod/contacts.php:804 mod/contacts.php:1005 +msgid "Unignore" +msgstr "" + +#: mod/contacts.php:606 mod/contacts.php:804 mod/contacts.php:1005 +#: mod/notifications.php:54 mod/notifications.php:142 +#: mod/notifications.php:227 +msgid "Ignore" +msgstr "" + +#: mod/contacts.php:610 +msgid "Currently blocked" +msgstr "" + +#: mod/contacts.php:611 +msgid "Currently ignored" +msgstr "" + +#: mod/contacts.php:612 +msgid "Currently archived" +msgstr "" + +#: mod/contacts.php:613 mod/notifications.php:135 mod/notifications.php:215 +msgid "Hide this contact from others" +msgstr "" + +#: mod/contacts.php:613 +msgid "" +"Replies/likes to your public posts may still be visible" +msgstr "" + +#: mod/contacts.php:614 +msgid "Notification for new posts" +msgstr "" + +#: mod/contacts.php:614 +msgid "Send a notification of every new post of this contact" +msgstr "" + +#: mod/contacts.php:617 +msgid "Blacklisted keywords" +msgstr "" + +#: 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 "" + +#: mod/contacts.php:633 +msgid "Actions" +msgstr "" + +#: mod/contacts.php:636 +msgid "Contact Settings" +msgstr "" + +#: mod/contacts.php:682 +msgid "Suggestions" +msgstr "" + +#: mod/contacts.php:685 +msgid "Suggest potential friends" +msgstr "" + +#: mod/contacts.php:693 +msgid "Show all contacts" +msgstr "" + +#: mod/contacts.php:698 +msgid "Unblocked" +msgstr "" + +#: mod/contacts.php:701 +msgid "Only show unblocked contacts" +msgstr "" + +#: mod/contacts.php:707 +msgid "Blocked" +msgstr "" + +#: mod/contacts.php:710 +msgid "Only show blocked contacts" +msgstr "" + +#: mod/contacts.php:716 +msgid "Ignored" +msgstr "" + +#: mod/contacts.php:719 +msgid "Only show ignored contacts" +msgstr "" + +#: mod/contacts.php:725 +msgid "Archived" +msgstr "" + +#: mod/contacts.php:728 +msgid "Only show archived contacts" +msgstr "" + +#: mod/contacts.php:734 +msgid "Hidden" +msgstr "" + +#: mod/contacts.php:737 +msgid "Only show hidden contacts" +msgstr "" + +#: mod/contacts.php:794 +msgid "Search your contacts" +msgstr "" + +#: mod/contacts.php:805 mod/contacts.php:1013 +msgid "Archive" +msgstr "" + +#: mod/contacts.php:805 mod/contacts.php:1013 +msgid "Unarchive" +msgstr "" + +#: mod/contacts.php:808 +msgid "Batch Actions" +msgstr "" + +#: mod/contacts.php:854 +msgid "View all contacts" +msgstr "" + +#: mod/contacts.php:864 +msgid "View all common friends" +msgstr "" + +#: mod/contacts.php:871 +msgid "Advanced Contact Settings" +msgstr "" + +#: mod/contacts.php:916 +msgid "Mutual Friendship" +msgstr "" + +#: mod/contacts.php:920 +msgid "is a fan of yours" +msgstr "" + +#: mod/contacts.php:924 +msgid "you are a fan of" +msgstr "" + +#: mod/contacts.php:999 +msgid "Toggle Blocked status" +msgstr "" + +#: mod/contacts.php:1007 +msgid "Toggle Ignored status" +msgstr "" + +#: mod/contacts.php:1015 +msgid "Toggle Archive status" +msgstr "" + +#: mod/contacts.php:1023 +msgid "Delete contact" +msgstr "" + +#: mod/crepair.php:87 +msgid "Contact settings applied." +msgstr "" + +#: mod/crepair.php:89 +msgid "Contact update failed." +msgstr "" + +#: mod/crepair.php:120 +msgid "" +"WARNING: This is highly advanced and if you enter incorrect " +"information your communications with this contact may stop working." +msgstr "" + +#: mod/crepair.php:121 +msgid "" +"Please use your browser 'Back' button now if you are " +"uncertain what to do on this page." +msgstr "" + +#: mod/crepair.php:134 mod/crepair.php:136 +msgid "No mirroring" +msgstr "" + +#: mod/crepair.php:134 +msgid "Mirror as forwarded posting" +msgstr "" + +#: mod/crepair.php:134 mod/crepair.php:136 +msgid "Mirror as my own posting" +msgstr "" + +#: mod/crepair.php:150 +msgid "Return to contact editor" +msgstr "" + +#: mod/crepair.php:152 +msgid "Refetch contact data" +msgstr "" + +#: mod/crepair.php:156 +msgid "Remote Self" +msgstr "" + +#: mod/crepair.php:159 +msgid "Mirror postings from this contact" +msgstr "" + +#: mod/crepair.php:161 +msgid "" +"Mark this contact as remote_self, this will cause friendica to repost new " +"entries from this contact." +msgstr "" + +#: mod/crepair.php:166 +msgid "Account Nickname" +msgstr "" + +#: mod/crepair.php:167 +msgid "@Tagname - overrides Name/Nickname" +msgstr "" + +#: mod/crepair.php:168 +msgid "Account URL" +msgstr "" + +#: mod/crepair.php:169 +msgid "Friend Request URL" +msgstr "" + +#: mod/crepair.php:170 +msgid "Friend Confirm URL" +msgstr "" + +#: mod/crepair.php:171 +msgid "Notification Endpoint URL" +msgstr "" + +#: mod/crepair.php:172 +msgid "Poll/Feed URL" +msgstr "" + +#: mod/crepair.php:173 +msgid "New photo from this URL" +msgstr "" + +#: mod/dfrn_confirm.php:66 mod/profiles.php:19 mod/profiles.php:134 +#: mod/profiles.php:180 mod/profiles.php:611 +msgid "Profile not found." +msgstr "" + +#: mod/dfrn_confirm.php:123 +msgid "" +"This may occasionally happen if contact was requested by both persons and it " +"has already been approved." +msgstr "" + +#: mod/dfrn_confirm.php:242 +msgid "Response from remote site was not understood." +msgstr "" + +#: mod/dfrn_confirm.php:251 mod/dfrn_confirm.php:256 +msgid "Unexpected response from remote site: " +msgstr "" + +#: mod/dfrn_confirm.php:265 +msgid "Confirmation completed successfully." +msgstr "" + +#: mod/dfrn_confirm.php:267 mod/dfrn_confirm.php:281 mod/dfrn_confirm.php:288 +msgid "Remote site reported: " +msgstr "" + +#: mod/dfrn_confirm.php:279 +msgid "Temporary failure. Please wait and try again." +msgstr "" + +#: mod/dfrn_confirm.php:286 +msgid "Introduction failed or was revoked." +msgstr "" + +#: mod/dfrn_confirm.php:415 +msgid "Unable to set contact photo." +msgstr "" + +#: mod/dfrn_confirm.php:553 +#, php-format +msgid "No user record found for '%s' " +msgstr "" + +#: mod/dfrn_confirm.php:563 +msgid "Our site encryption key is apparently messed up." +msgstr "" + +#: mod/dfrn_confirm.php:574 +msgid "Empty site URL was provided or URL could not be decrypted by us." +msgstr "" + +#: mod/dfrn_confirm.php:595 +msgid "Contact record was not found for you on our site." +msgstr "" + +#: mod/dfrn_confirm.php:609 +#, php-format +msgid "Site public key not available in contact record for URL %s." +msgstr "" + +#: mod/dfrn_confirm.php:629 +msgid "" +"The ID provided by your system is a duplicate on our system. It should work " +"if you try again." +msgstr "" + +#: mod/dfrn_confirm.php:640 +msgid "Unable to set your contact credentials on our system." +msgstr "" + +#: mod/dfrn_confirm.php:699 +msgid "Unable to update your contact profile details on our system" +msgstr "" + +#: mod/dfrn_confirm.php:771 +#, php-format +msgid "%1$s has joined %2$s" +msgstr "" + +#: mod/dfrn_request.php:100 +msgid "This introduction has already been accepted." +msgstr "" + +#: mod/dfrn_request.php:123 mod/dfrn_request.php:518 +msgid "Profile location is not valid or does not contain profile information." +msgstr "" + +#: mod/dfrn_request.php:128 mod/dfrn_request.php:523 +msgid "Warning: profile location has no identifiable owner name." +msgstr "" + +#: mod/dfrn_request.php:130 mod/dfrn_request.php:525 +msgid "Warning: profile location has no profile photo." +msgstr "" + +#: mod/dfrn_request.php:133 mod/dfrn_request.php:528 +#, php-format +msgid "%d required parameter was not found at the given location" +msgid_plural "%d required parameters were not found at the given location" +msgstr[0] "" +msgstr[1] "" + +#: mod/dfrn_request.php:178 +msgid "Introduction complete." +msgstr "" + +#: mod/dfrn_request.php:220 +msgid "Unrecoverable protocol error." +msgstr "" + +#: mod/dfrn_request.php:248 +msgid "Profile unavailable." +msgstr "" + +#: mod/dfrn_request.php:273 +#, php-format +msgid "%s has received too many connection requests today." +msgstr "" + +#: mod/dfrn_request.php:274 +msgid "Spam protection measures have been invoked." +msgstr "" + +#: mod/dfrn_request.php:275 +msgid "Friends are advised to please try again in 24 hours." +msgstr "" + +#: mod/dfrn_request.php:337 +msgid "Invalid locator" +msgstr "" + +#: mod/dfrn_request.php:346 +msgid "Invalid email address." +msgstr "" + +#: mod/dfrn_request.php:373 +msgid "This account has not been configured for email. Request failed." +msgstr "" + +#: mod/dfrn_request.php:476 +msgid "You have already introduced yourself here." +msgstr "" + +#: mod/dfrn_request.php:480 +#, php-format +msgid "Apparently you are already friends with %s." +msgstr "" + +#: mod/dfrn_request.php:501 +msgid "Invalid profile URL." +msgstr "" + +#: mod/dfrn_request.php:600 +msgid "Your introduction has been sent." +msgstr "" + +#: mod/dfrn_request.php:640 +msgid "" +"Remote subscription can't be done for your network. Please subscribe " +"directly on your system." +msgstr "" + +#: mod/dfrn_request.php:663 +msgid "Please login to confirm introduction." +msgstr "" + +#: mod/dfrn_request.php:673 +msgid "" +"Incorrect identity currently logged in. Please login to this profile." +msgstr "" + +#: mod/dfrn_request.php:687 mod/dfrn_request.php:704 +msgid "Confirm" +msgstr "" + +#: mod/dfrn_request.php:699 +msgid "Hide this contact" +msgstr "" + +#: mod/dfrn_request.php:702 +#, php-format +msgid "Welcome home %s." +msgstr "" + +#: mod/dfrn_request.php:703 +#, php-format +msgid "Please confirm your introduction/connection request to %s." +msgstr "" + +#: mod/dfrn_request.php:832 +msgid "" +"Please enter your 'Identity Address' from one of the following supported " +"communications networks:" +msgstr "" + +#: mod/dfrn_request.php:853 +#, php-format +msgid "" +"If you are not yet a member of the free social web, follow this link to find a public Friendica site and join us today." +msgstr "" + +#: mod/dfrn_request.php:858 +msgid "Friend/Connection Request" +msgstr "" + +#: mod/dfrn_request.php:859 +msgid "" +"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, " +"testuser@identi.ca" +msgstr "" + +#: mod/dfrn_request.php:868 +msgid "StatusNet/Federated Social Web" +msgstr "" + +#: mod/dfrn_request.php:870 +#, php-format +msgid "" +" - please do not use this form. Instead, enter %s into your Diaspora search " +"bar." +msgstr "" + +#: mod/photos.php:101 mod/photos.php:1887 +msgid "Recent Photos" +msgstr "" + +#: mod/photos.php:104 mod/photos.php:1308 mod/photos.php:1889 +msgid "Upload New Photos" +msgstr "" + +#: mod/photos.php:182 +msgid "Contact information unavailable" +msgstr "" + +#: mod/photos.php:203 +msgid "Album not found." +msgstr "" + +#: mod/photos.php:233 mod/photos.php:245 mod/photos.php:1250 +msgid "Delete Album" +msgstr "" + +#: mod/photos.php:243 +msgid "Do you really want to delete this photo album and all its photos?" +msgstr "" + +#: mod/photos.php:323 mod/photos.php:334 mod/photos.php:1568 +msgid "Delete Photo" +msgstr "" + +#: mod/photos.php:332 +msgid "Do you really want to delete this photo?" +msgstr "" + +#: mod/photos.php:707 +#, php-format +msgid "%1$s was tagged in %2$s by %3$s" +msgstr "" + +#: mod/photos.php:707 +msgid "a photo" +msgstr "" + +#: mod/photos.php:814 +msgid "Image file is empty." +msgstr "" + +#: mod/photos.php:974 +msgid "No photos selected" +msgstr "" + +#: mod/photos.php:1135 +#, php-format +msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage." +msgstr "" + +#: mod/photos.php:1170 +msgid "Upload Photos" +msgstr "" + +#: mod/photos.php:1174 mod/photos.php:1245 +msgid "New album name: " +msgstr "" + +#: mod/photos.php:1175 +msgid "or existing album name: " +msgstr "" + +#: mod/photos.php:1176 +msgid "Do not show a status post for this upload" +msgstr "" + +#: mod/photos.php:1189 +msgid "Private Photo" +msgstr "" + +#: mod/photos.php:1190 +msgid "Public Photo" +msgstr "" + +#: mod/photos.php:1258 +msgid "Edit Album" +msgstr "" + +#: mod/photos.php:1264 +msgid "Show Newest First" +msgstr "" + +#: mod/photos.php:1266 +msgid "Show Oldest First" +msgstr "" + +#: mod/photos.php:1294 mod/photos.php:1872 +msgid "View Photo" +msgstr "" + +#: mod/photos.php:1341 +msgid "Permission denied. Access to this item may be restricted." +msgstr "" + +#: mod/photos.php:1343 +msgid "Photo not available" +msgstr "" + +#: mod/photos.php:1399 +msgid "View photo" +msgstr "" + +#: mod/photos.php:1399 +msgid "Edit photo" +msgstr "" + +#: mod/photos.php:1400 +msgid "Use as profile photo" +msgstr "" + +#: mod/photos.php:1406 mod/content.php:638 object/Item.php:117 +msgid "Private Message" +msgstr "" + +#: mod/photos.php:1425 +msgid "View Full Size" +msgstr "" + +#: mod/photos.php:1511 +msgid "Tags: " +msgstr "" + +#: mod/photos.php:1514 +msgid "[Remove any tag]" +msgstr "" + +#: mod/photos.php:1554 +msgid "New album name" +msgstr "" + +#: mod/photos.php:1555 +msgid "Caption" +msgstr "" + +#: mod/photos.php:1556 +msgid "Add a Tag" +msgstr "" + +#: mod/photos.php:1556 +msgid "Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" +msgstr "" + +#: mod/photos.php:1557 +msgid "Do not rotate" +msgstr "" + +#: mod/photos.php:1558 +msgid "Rotate CW (right)" +msgstr "" + +#: mod/photos.php:1559 +msgid "Rotate CCW (left)" +msgstr "" + +#: mod/photos.php:1574 +msgid "Private photo" +msgstr "" + +#: mod/photos.php:1575 +msgid "Public photo" +msgstr "" + +#: mod/photos.php:1595 mod/content.php:702 object/Item.php:263 +msgid "I like this (toggle)" +msgstr "" + +#: mod/photos.php:1596 mod/content.php:703 object/Item.php:264 +msgid "I don't like this (toggle)" +msgstr "" + +#: mod/photos.php:1615 mod/photos.php:1663 mod/photos.php:1751 +#: mod/content.php:725 object/Item.php:717 +msgid "This is you" +msgstr "" + +#: mod/photos.php:1617 mod/photos.php:1665 mod/photos.php:1753 +#: mod/content.php:727 mod/content.php:945 object/Item.php:403 +#: object/Item.php:719 boot.php:888 +msgid "Comment" +msgstr "" + +#: mod/photos.php:1801 +msgid "Map" +msgstr "" + +#: mod/profiles.php:38 +msgid "Profile deleted." +msgstr "" + +#: mod/profiles.php:56 mod/profiles.php:90 +msgid "Profile-" +msgstr "" + +#: mod/profiles.php:75 mod/profiles.php:118 +msgid "New profile created." +msgstr "" + +#: mod/profiles.php:96 +msgid "Profile unavailable to clone." +msgstr "" + +#: mod/profiles.php:190 +msgid "Profile Name is required." +msgstr "" + +#: mod/profiles.php:337 +msgid "Marital Status" +msgstr "" + +#: mod/profiles.php:341 +msgid "Romantic Partner" +msgstr "" + +#: mod/profiles.php:353 +msgid "Work/Employment" +msgstr "" + +#: mod/profiles.php:356 +msgid "Religion" +msgstr "" + +#: mod/profiles.php:360 +msgid "Political Views" +msgstr "" + +#: mod/profiles.php:364 +msgid "Gender" +msgstr "" + +#: mod/profiles.php:368 +msgid "Sexual Preference" +msgstr "" + +#: mod/profiles.php:372 +msgid "Homepage" +msgstr "" + +#: mod/profiles.php:376 mod/profiles.php:696 +msgid "Interests" +msgstr "" + +#: mod/profiles.php:380 +msgid "Address" +msgstr "" + +#: mod/profiles.php:387 mod/profiles.php:692 +msgid "Location" +msgstr "" + +#: mod/profiles.php:470 +msgid "Profile updated." +msgstr "" + +#: mod/profiles.php:557 +msgid " and " +msgstr "" + +#: mod/profiles.php:565 +msgid "public profile" +msgstr "" + +#: mod/profiles.php:568 +#, php-format +msgid "%1$s changed %2$s to “%3$s”" +msgstr "" + +#: mod/profiles.php:569 +#, php-format +msgid " - Visit %1$s's %2$s" +msgstr "" + +#: mod/profiles.php:572 +#, php-format +msgid "%1$s has an updated %2$s, changing %3$s." +msgstr "" + +#: mod/profiles.php:639 +msgid "Hide contacts and friends:" +msgstr "" + +#: mod/profiles.php:644 +msgid "Hide your contact/friend list from viewers of this profile?" +msgstr "" + +#: mod/profiles.php:668 +msgid "Show more profile fields:" +msgstr "" + +#: mod/profiles.php:680 +msgid "Profile Actions" +msgstr "" + +#: mod/profiles.php:681 +msgid "Edit Profile Details" +msgstr "" + +#: mod/profiles.php:683 +msgid "Change Profile Photo" +msgstr "" + +#: mod/profiles.php:684 +msgid "View this profile" +msgstr "" + +#: mod/profiles.php:686 +msgid "Create a new profile using these settings" +msgstr "" + +#: mod/profiles.php:687 +msgid "Clone this profile" +msgstr "" + +#: mod/profiles.php:688 +msgid "Delete this profile" +msgstr "" + +#: mod/profiles.php:690 +msgid "Basic information" +msgstr "" + +#: mod/profiles.php:691 +msgid "Profile picture" +msgstr "" + +#: mod/profiles.php:693 +msgid "Preferences" +msgstr "" + +#: mod/profiles.php:694 +msgid "Status information" +msgstr "" + +#: mod/profiles.php:695 +msgid "Additional information" +msgstr "" + +#: mod/profiles.php:698 +msgid "Relation" +msgstr "" + +#: mod/profiles.php:702 +msgid "Your Gender:" +msgstr "" + +#: mod/profiles.php:703 +msgid " Marital Status:" +msgstr "" + +#: mod/profiles.php:705 +msgid "Example: fishing photography software" +msgstr "" + +#: mod/profiles.php:710 +msgid "Profile Name:" +msgstr "" + +#: mod/profiles.php:712 +msgid "" +"This is your public profile.
It may " +"be visible to anybody using the internet." +msgstr "" + +#: mod/profiles.php:713 +msgid "Your Full Name:" +msgstr "" + +#: mod/profiles.php:714 +msgid "Title/Description:" +msgstr "" + +#: mod/profiles.php:717 +msgid "Street Address:" +msgstr "" + +#: mod/profiles.php:718 +msgid "Locality/City:" +msgstr "" + +#: mod/profiles.php:719 +msgid "Region/State:" +msgstr "" + +#: mod/profiles.php:720 +msgid "Postal/Zip Code:" +msgstr "" + +#: mod/profiles.php:721 +msgid "Country:" +msgstr "" + +#: mod/profiles.php:725 +msgid "Who: (if applicable)" +msgstr "" + +#: mod/profiles.php:725 +msgid "Examples: cathy123, Cathy Williams, cathy@example.com" +msgstr "" + +#: mod/profiles.php:726 +msgid "Since [date]:" +msgstr "" + +#: mod/profiles.php:728 +msgid "Tell us about yourself..." +msgstr "" + +#: mod/profiles.php:729 +msgid "Homepage URL:" +msgstr "" + +#: mod/profiles.php:732 +msgid "Religious Views:" +msgstr "" + +#: mod/profiles.php:733 +msgid "Public Keywords:" +msgstr "" + +#: mod/profiles.php:733 +msgid "(Used for suggesting potential friends, can be seen by others)" +msgstr "" + +#: mod/profiles.php:734 +msgid "Private Keywords:" +msgstr "" + +#: mod/profiles.php:734 +msgid "(Used for searching profiles, never shown to others)" +msgstr "" + +#: mod/profiles.php:737 +msgid "Musical interests" +msgstr "" + +#: mod/profiles.php:738 +msgid "Books, literature" +msgstr "" + +#: mod/profiles.php:739 +msgid "Television" +msgstr "" + +#: mod/profiles.php:740 +msgid "Film/dance/culture/entertainment" +msgstr "" + +#: mod/profiles.php:741 +msgid "Hobbies/Interests" +msgstr "" + +#: mod/profiles.php:742 +msgid "Love/romance" +msgstr "" + +#: mod/profiles.php:743 +msgid "Work/employment" +msgstr "" + +#: mod/profiles.php:744 +msgid "School/education" +msgstr "" + +#: mod/profiles.php:745 +msgid "Contact information and Social Networks" +msgstr "" + +#: mod/profiles.php:787 +msgid "Edit/Manage Profiles" +msgstr "" + +#: mod/content.php:325 object/Item.php:95 +msgid "This entry was edited" +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:702 object/Item.php:263 +msgid "like" +msgstr "" + +#: mod/content.php:703 object/Item.php:264 +msgid "dislike" +msgstr "" + +#: mod/content.php:705 object/Item.php:266 +msgid "Share this" +msgstr "" + +#: mod/content.php:705 object/Item.php:266 +msgid "share" +msgstr "" + +#: mod/content.php:729 object/Item.php:721 +msgid "Bold" +msgstr "" + +#: mod/content.php:730 object/Item.php:722 +msgid "Italic" +msgstr "" + +#: mod/content.php:731 object/Item.php:723 +msgid "Underline" +msgstr "" + +#: mod/content.php:732 object/Item.php:724 +msgid "Quote" +msgstr "" + +#: mod/content.php:733 object/Item.php:725 +msgid "Code" +msgstr "" + +#: mod/content.php:734 object/Item.php:726 +msgid "Image" +msgstr "" + +#: mod/content.php:735 object/Item.php:727 +msgid "Link" +msgstr "" + +#: mod/content.php:736 object/Item.php:728 +msgid "Video" +msgstr "" + +#: mod/content.php:771 object/Item.php:227 +msgid "add star" +msgstr "" + +#: mod/content.php:772 object/Item.php:228 +msgid "remove star" +msgstr "" + +#: mod/content.php:773 object/Item.php:229 +msgid "toggle star status" +msgstr "" + +#: mod/content.php:776 object/Item.php:232 +msgid "starred" +msgstr "" + +#: mod/content.php:777 mod/content.php:798 object/Item.php:252 +msgid "add tag" +msgstr "" + +#: mod/content.php:787 object/Item.php:240 +msgid "ignore thread" +msgstr "" + +#: mod/content.php:788 object/Item.php:241 +msgid "unignore thread" +msgstr "" + +#: mod/content.php:789 object/Item.php:242 +msgid "toggle ignore status" +msgstr "" + +#: mod/content.php:803 object/Item.php:137 +msgid "save to folder" +msgstr "" + +#: mod/content.php:848 object/Item.php:201 +msgid "I will attend" +msgstr "" + +#: mod/content.php:848 object/Item.php:201 +msgid "I will not attend" +msgstr "" + +#: mod/content.php:848 object/Item.php:201 +msgid "I might attend" +msgstr "" + +#: mod/content.php:912 object/Item.php:369 +msgid "to" +msgstr "" + +#: mod/content.php:913 object/Item.php:371 +msgid "Wall-to-Wall" +msgstr "" + +#: mod/content.php:914 object/Item.php:372 +msgid "via Wall-To-Wall:" +msgstr "" + +#: mod/notifications.php:29 +msgid "Invalid request identifier." +msgstr "" + +#: mod/notifications.php:38 mod/notifications.php:143 +#: mod/notifications.php:228 +msgid "Discard" +msgstr "" + +#: mod/notifications.php:91 +msgid "Show Ignored Requests" +msgstr "" + +#: mod/notifications.php:91 +msgid "Hide Ignored Requests" +msgstr "" + +#: mod/notifications.php:127 mod/notifications.php:198 +msgid "Notification type: " +msgstr "" + +#: mod/notifications.php:128 +msgid "Friend Suggestion" +msgstr "" + +#: mod/notifications.php:130 +#, php-format +msgid "suggested by %s" +msgstr "" + +#: mod/notifications.php:136 mod/notifications.php:216 +msgid "Post a new friend activity" +msgstr "" + +#: mod/notifications.php:136 mod/notifications.php:216 +msgid "if applicable" +msgstr "" + +#: mod/notifications.php:159 +msgid "Claims to be known to you: " +msgstr "" + +#: mod/notifications.php:160 +msgid "yes" +msgstr "" + +#: mod/notifications.php:160 +msgid "no" +msgstr "" + +#: mod/notifications.php:161 +msgid "" +"Shall your connection be bidirectional or not? \"Friend\" implies that you " +"allow to read and you subscribe to their posts. \"Fan/Admirer\" means that " +"you allow to read but you do not want to read theirs. Approve as: " +msgstr "" + +#: mod/notifications.php:164 +msgid "" +"Shall your connection be bidirectional or not? \"Friend\" implies that you " +"allow to read and you subscribe to their posts. \"Sharer\" means that you " +"allow to read but you do not want to read theirs. Approve as: " +msgstr "" + +#: mod/notifications.php:172 +msgid "Friend" +msgstr "" + +#: mod/notifications.php:173 +msgid "Sharer" +msgstr "" + +#: mod/notifications.php:173 +msgid "Fan/Admirer" +msgstr "" + +#: mod/notifications.php:199 +msgid "Friend/Connect Request" +msgstr "" + +#: mod/notifications.php:199 +msgid "New Follower" +msgstr "" + +#: mod/notifications.php:234 +msgid "No introductions." +msgstr "" + +#: mod/notifications.php:238 +msgid "Network Notifications" +msgstr "" + +#: mod/notifications.php:265 mod/notifications.php:382 +#: mod/notifications.php:461 +#, php-format +msgid "%s liked %s's post" +msgstr "" + +#: mod/notifications.php:275 mod/notifications.php:392 +#: mod/notifications.php:471 +#, php-format +msgid "%s disliked %s's post" +msgstr "" + +#: mod/notifications.php:290 mod/notifications.php:407 +#: mod/notifications.php:486 +#, php-format +msgid "%s is now friends with %s" +msgstr "" + +#: mod/notifications.php:297 mod/notifications.php:414 +#, php-format +msgid "%s created a new post" +msgstr "" + +#: mod/notifications.php:298 mod/notifications.php:415 +#: mod/notifications.php:496 +#, php-format +msgid "%s commented on %s's post" +msgstr "" + +#: mod/notifications.php:313 +msgid "No more network notifications." +msgstr "" + +#: mod/notifications.php:343 +msgid "Personal Notifications" +msgstr "" + +#: mod/notifications.php:430 +msgid "No more personal notifications." +msgstr "" + +#: mod/notifications.php:435 +msgid "Home Notifications" +msgstr "" + +#: mod/notifications.php:503 +msgid "No more home notifications." +msgstr "" + +#: mod/notifications.php:527 +msgid "System" +msgstr "" + #: object/Item.php:370 msgid "via" msgstr "" @@ -8790,3 +8738,56 @@ msgstr "" #: view/theme/duepuntozero/config.php:62 msgid "Variations" msgstr "" + +#: index.php:447 +msgid "toggle mobile" +msgstr "" + +#: boot.php:887 +msgid "Delete this item?" +msgstr "" + +#: boot.php:890 +msgid "show fewer" +msgstr "" + +#: boot.php:1483 +#, php-format +msgid "Update %s failed. See error logs." +msgstr "" + +#: boot.php:1595 +msgid "Create a New Account" +msgstr "" + +#: boot.php:1624 +msgid "Password: " +msgstr "" + +#: boot.php:1625 +msgid "Remember me" +msgstr "" + +#: boot.php:1628 +msgid "Or login using OpenID: " +msgstr "" + +#: boot.php:1634 +msgid "Forgot your password?" +msgstr "" + +#: boot.php:1637 +msgid "Website Terms of Service" +msgstr "" + +#: boot.php:1638 +msgid "terms of service" +msgstr "" + +#: boot.php:1640 +msgid "Website Privacy Policy" +msgstr "" + +#: boot.php:1641 +msgid "privacy policy" +msgstr "" From 668da905e2b3a096ed5b5059cbaec587fa113d23 Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Mon, 1 Aug 2016 07:48:43 +0200 Subject: [PATCH 17/23] "proc_run" is now called with priority. --- boot.php | 158 ++++++++++++++++++++++-------------------- include/Contact.php | 6 +- include/cron.php | 12 ++-- include/follow.php | 2 +- include/identity.php | 2 +- include/items.php | 10 +-- include/like.php | 4 +- include/message.php | 2 +- include/notifier.php | 12 ++-- include/poller.php | 7 ++ include/queue.php | 4 +- include/socgraph.php | 2 +- include/uimport.php | 2 +- mod/admin.php | 2 +- mod/contacts.php | 2 +- mod/dfrn_confirm.php | 4 +- mod/dirfind.php | 2 +- mod/events.php | 2 +- mod/fsuggest.php | 2 +- mod/item.php | 4 +- mod/mood.php | 4 +- mod/photos.php | 8 +-- mod/poke.php | 4 +- mod/profile_photo.php | 4 +- mod/profiles.php | 7 +- mod/register.php | 2 +- mod/regmod.php | 2 +- mod/settings.php | 4 +- mod/tagger.php | 2 +- mod/videos.php | 2 +- update.php | 6 +- 31 files changed, 149 insertions(+), 137 deletions(-) diff --git a/boot.php b/boot.php index cad4094c7d..1e59ba3b54 100644 --- a/boot.php +++ b/boot.php @@ -386,6 +386,17 @@ define ( 'GRAVITY_LIKE', 3); define ( 'GRAVITY_COMMENT', 6); /* @}*/ +/** + * @name Priority + * + * Process priority for the worker + * @{ + */ +define('PRIORITY_HIGH', 1); +define('PRIORITY_MEDIUM', 2); +define('PRIORITY_LOW', 3); +/* @}*/ + // Normally this constant is defined - but not if "pcntl" isn't installed if (!defined("SIGTERM")) @@ -1241,13 +1252,34 @@ class App { logger("killed stale process"); // Calling a new instance if ($task != "") - proc_run('php', $task); + proc_run(PRIORITY_MEDIUM, $task); } return true; } } return false; } + + function proc_run($args) { + + // Add the php path if it is a php call + if (count($args) && $args[0] === 'php') + $args[0] = ((x($this->config,'php_path')) && (strlen($this->config['php_path'])) ? $this->config['php_path'] : 'php'); + + // add baseurl to args. cli scripts can't construct it + $args[] = $this->get_baseurl(); + + for($x = 0; $x < count($args); $x ++) + $args[$x] = escapeshellarg($args[$x]); + + $cmdline = implode($args," "); + + if(get_config('system','proc_windows')) + proc_close(proc_open('cmd /c start /b ' . $cmdline,array(),$foo,dirname(__FILE__))); + else + proc_close(proc_open($cmdline." &",array(),$foo,dirname(__FILE__))); + + } } /** @@ -1363,7 +1395,7 @@ function check_db() { $build = DB_UPDATE_VERSION; } if($build != DB_UPDATE_VERSION) - proc_run('php', 'include/dbupdate.php'); + proc_run(PRIORITY_HIGH, 'include/dbupdate.php'); } @@ -1736,10 +1768,11 @@ function get_max_import_size() { * @brief Wrap calls to proc_close(proc_open()) and call hook * so plugins can take part in process :) * - * @param string $cmd program to run + * @param (string|integer) $cmd program to run or priority * * next args are passed as $cmd command line * e.g.: proc_run("ls","-la","/tmp"); + * or: proc_run(PRIORITY_HIGH, "include/notifier.php", "drop", $drop_id); * * @note $cmd and string args are surrounded with "" * @@ -1753,7 +1786,7 @@ function proc_run($cmd){ $args = func_get_args(); $newargs = array(); - if(! count($args)) + if (!count($args)) return; // expand any arrays @@ -1763,8 +1796,7 @@ function proc_run($cmd){ foreach($arg as $n) { $newargs[] = $n; } - } - else + } else $newargs[] = $arg; } @@ -1773,81 +1805,55 @@ function proc_run($cmd){ $arr = array('args' => $args, 'run_cmd' => true); call_hooks("proc_run", $arr); - if(! $arr['run_cmd']) + if (!$arr['run_cmd'] OR !count($args)) return; - if(count($args) && $args[0] === 'php') { - - if (get_config("system", "worker")) { - $argv = $args; - array_shift($argv); - - $parameters = json_encode($argv); - $found = q("SELECT `id` FROM `workerqueue` WHERE `parameter` = '%s'", - dbesc($parameters)); - - $funcname = str_replace(".php", "", basename($argv[0]))."_run"; - - // Define the processes that have priority over any other process - /// @todo Better check for priority processes - $high_priority = array("delivery_run", "notifier_run", "pubsubpublish_run"); - $low_priority = array("queue_run", "gprobe_run", "discover_poco_run"); - - if (in_array($funcname, $high_priority)) - $priority = 1; - elseif (in_array($funcname, $low_priority)) - $priority = 3; - else - $priority = 2; - - if (!$found) - // quickfix for the delivery problems, 2106-07-28 - /// @todo find better solution - //q("INSERT INTO `workerqueue` (`function`, `parameter`, `created`, `priority`) - // VALUES ('%s', '%s', '%s', %d)", - // dbesc($funcname), - q("INSERT INTO `workerqueue` (`parameter`, `created`, `priority`) - VALUES ('%s', '%s', %d)", - dbesc($parameters), - dbesc(datetime_convert()), - intval($priority)); - - // Should we quit and wait for the poller to be called as a cronjob? - if (get_config("system", "worker_dont_fork")) - return; - - // Checking number of workers - $workers = q("SELECT COUNT(*) AS `workers` FROM `workerqueue` WHERE `executed` != '0000-00-00 00:00:00'"); - - // Get number of allowed number of worker threads - $queues = intval(get_config("system", "worker_queues")); - - if ($queues == 0) - $queues = 4; - - // If there are already enough workers running, don't fork another one - if ($workers[0]["workers"] >= $queues) - return; - - // Now call the poller to execute the jobs that we just added to the queue - $args = array("php", "include/poller.php", "no_cron"); - } - - $args[0] = ((x($a->config,'php_path')) && (strlen($a->config['php_path'])) ? $a->config['php_path'] : 'php'); + if (!get_config("system", "worker") OR + (($args[0] != 'php') AND !is_int($args[0]))) { + $a->proc_run($args); + return; } - // add baseurl to args. cli scripts can't construct it - $args[] = $a->get_baseurl(); - - for($x = 0; $x < count($args); $x ++) - $args[$x] = escapeshellarg($args[$x]); - - $cmdline = implode($args," "); - - if(get_config('system','proc_windows')) - proc_close(proc_open('cmd /c start /b ' . $cmdline,array(),$foo,dirname(__FILE__))); + if (is_int($args[0])) + $priority = $args[0]; else - proc_close(proc_open($cmdline." &",array(),$foo,dirname(__FILE__))); + $priority = PRIORITY_MEDIUM; + + $argv = $args; + array_shift($argv); + + $parameters = json_encode($argv); + $found = q("SELECT `id` FROM `workerqueue` WHERE `parameter` = '%s'", + dbesc($parameters)); + + if (!$found) + q("INSERT INTO `workerqueue` (`parameter`, `created`, `priority`) + VALUES ('%s', '%s', %d)", + dbesc($parameters), + dbesc(datetime_convert()), + intval($priority)); + + // Should we quit and wait for the poller to be called as a cronjob? + if (get_config("system", "worker_dont_fork")) + return; + + // Checking number of workers + $workers = q("SELECT COUNT(*) AS `workers` FROM `workerqueue` WHERE `executed` != '0000-00-00 00:00:00'"); + + // Get number of allowed number of worker threads + $queues = intval(get_config("system", "worker_queues")); + + if ($queues == 0) + $queues = 4; + + // If there are already enough workers running, don't fork another one + if ($workers[0]["workers"] >= $queues) + return; + + // Now call the poller to execute the jobs that we just added to the queue + $args = array("php", "include/poller.php", "no_cron"); + + $a->proc_run($args); } function current_theme(){ diff --git a/include/Contact.php b/include/Contact.php index 10005d3e3c..e466d7f908 100644 --- a/include/Contact.php +++ b/include/Contact.php @@ -45,10 +45,10 @@ function user_remove($uid) { // don't delete yet, will be done later when contacts have deleted my stuff // q("DELETE FROM `user` WHERE `uid` = %d", intval($uid)); q("UPDATE `user` SET `account_removed` = 1, `account_expires_on` = UTC_TIMESTAMP() WHERE `uid` = %d", intval($uid)); - proc_run('php', "include/notifier.php", "removeme", $uid); + proc_run(PRIORITY_HIGH, "include/notifier.php", "removeme", $uid); // Send an update to the directory - proc_run('php', "include/directory.php", $r[0]['url']); + proc_run(PRIORITY_LOW, "include/directory.php", $r[0]['url']); if($uid == local_user()) { unset($_SESSION['authenticated']); @@ -275,7 +275,7 @@ function get_contact_details_by_url($url, $uid = -1, $default = array()) { if ((($profile["addr"] == "") OR ($profile["name"] == "")) AND ($profile["gid"] != 0) AND in_array($profile["network"], array(NETWORK_DFRN, NETWORK_DIASPORA, NETWORK_OSTATUS))) - proc_run('php',"include/update_gcontact.php", $profile["gid"]); + proc_run(PRIORITY_LOW, "include/update_gcontact.php", $profile["gid"]); // Show contact details of Diaspora contacts only if connected if (($profile["cid"] == 0) AND ($profile["network"] == NETWORK_DIASPORA)) { diff --git a/include/cron.php b/include/cron.php index c1e4338d6f..c54fef8a9c 100644 --- a/include/cron.php +++ b/include/cron.php @@ -70,15 +70,15 @@ function cron_run(&$argv, &$argc){ // run queue delivery process in the background - proc_run('php',"include/queue.php"); + proc_run(PRIORITY_LOW,"include/queue.php"); // run the process to discover global contacts in the background - proc_run('php',"include/discover_poco.php"); + proc_run(PRIORITY_LOW,"include/discover_poco.php"); // run the process to update locally stored global contacts in the background - proc_run('php',"include/discover_poco.php", "checkcontact"); + proc_run(PRIORITY_LOW,"include/discover_poco.php", "checkcontact"); // expire any expired accounts @@ -126,11 +126,11 @@ function cron_run(&$argv, &$argc){ update_contact_birthdays(); - proc_run('php',"include/discover_poco.php", "suggestions"); + proc_run(PRIORITY_LOW,"include/discover_poco.php", "suggestions"); set_config('system','last_expire_day',$d2); - proc_run('php','include/expire.php'); + proc_run(PRIORITY_LOW,'include/expire.php'); } // Clear cache entries @@ -272,7 +272,7 @@ function cron_run(&$argv, &$argc){ logger("Polling ".$contact["network"]." ".$contact["id"]." ".$contact["nick"]." ".$contact["name"]); - proc_run('php','include/onepoll.php',$contact['id']); + proc_run(PRIORITY_MEDIUM,'include/onepoll.php',$contact['id']); if($interval) @time_sleep_until(microtime(true) + (float) $interval); diff --git a/include/follow.php b/include/follow.php index 2461bf0356..08e74e02f3 100644 --- a/include/follow.php +++ b/include/follow.php @@ -270,7 +270,7 @@ function new_contact($uid,$url,$interactive = false) { // pull feed and consume it, which should subscribe to the hub. - proc_run('php',"include/onepoll.php","$contact_id", "force"); + proc_run(PRIORITY_MEDIUM, "include/onepoll.php", $contact_id, "force"); // create a follow slap diff --git a/include/identity.php b/include/identity.php index 4dffe72559..9b75ebccdb 100644 --- a/include/identity.php +++ b/include/identity.php @@ -818,7 +818,7 @@ function zrl_init(&$a) { } } - proc_run('php','include/gprobe.php',bin2hex($tmp_str)); + proc_run(PRIORITY_LOW, 'include/gprobe.php',bin2hex($tmp_str)); $arr = array('zrl' => $tmp_str, 'url' => $a->cmd); call_hooks('zrl_init',$arr); } diff --git a/include/items.php b/include/items.php index 1d2a775c49..754d5b0882 100644 --- a/include/items.php +++ b/include/items.php @@ -917,7 +917,7 @@ function item_store($arr,$force_parent = false, $notify = false, $dontcache = fa check_item_notification($current_post, $uid); if ($notify) - proc_run('php', "include/notifier.php", $notify_type, $current_post); + proc_run(PRIORITY_HIGH, "include/notifier.php", $notify_type, $current_post); return $current_post; } @@ -1156,7 +1156,7 @@ function tag_deliver($uid,$item_id) { ); update_thread($item_id); - proc_run('php','include/notifier.php','tgroup',$item_id); + proc_run(PRIORITY_HIGH,'include/notifier.php', 'tgroup', $item_id); } @@ -1763,7 +1763,7 @@ function item_expire($uid, $days, $network = "", $force = false) { drop_item($item['id'],false); } - proc_run('php',"include/notifier.php","expire","$uid"); + proc_run(PRIORITY_HIGH,"include/notifier.php", "expire", $uid); } @@ -1785,7 +1785,7 @@ function drop_items($items) { // multiple threads may have been deleted, send an expire notification if($uid) - proc_run('php',"include/notifier.php","expire","$uid"); + proc_run(PRIORITY_HIGH,"include/notifier.php", "expire", $uid); } @@ -1998,7 +1998,7 @@ function drop_item($id,$interactive = true) { // send the notification upstream/downstream as the case may be - proc_run('php',"include/notifier.php","drop","$drop_id"); + proc_run(PRIORITY_HIGH,"include/notifier.php", "drop", $drop_id); if(! $interactive) return $owner; diff --git a/include/like.php b/include/like.php index 9ceff2303a..118ec81ca1 100644 --- a/include/like.php +++ b/include/like.php @@ -153,7 +153,7 @@ function do_like($item_id, $verb) { ); $like_item_id = $like_item['id']; - proc_run('php',"include/notifier.php","like","$like_item_id"); + proc_run(PRIORITY_HIGH, "include/notifier.php", "like", $like_item_id); return true; } @@ -245,7 +245,7 @@ EOT; call_hooks('post_local_end', $arr); - proc_run('php',"include/notifier.php","like","$post_id"); + proc_run(PRIORITY_HIGH, "include/notifier.php", "like", $post_id); return true; } diff --git a/include/message.php b/include/message.php index 0f4b53c626..51f3ad805a 100644 --- a/include/message.php +++ b/include/message.php @@ -150,7 +150,7 @@ function send_message($recipient=0, $body='', $subject='', $replyto=''){ } if($post_id) { - proc_run('php',"include/notifier.php","mail","$post_id"); + proc_run(PRIORITY_HIGH, "include/notifier.php", "mail", $post_id); return intval($post_id); } else { return -3; diff --git a/include/notifier.php b/include/notifier.php index 446824a26a..cfe4e18412 100644 --- a/include/notifier.php +++ b/include/notifier.php @@ -16,7 +16,7 @@ require_once('include/salmon.php'); /* * The notifier is typically called with: * - * proc_run('php', "include/notifier.php", COMMAND, ITEM_ID); + * proc_run(PRIORITY_HIGH, "include/notifier.php", COMMAND, ITEM_ID); * * where COMMAND is one of the following: * @@ -355,7 +355,7 @@ function notifier_run(&$argv, &$argc){ // a delivery fork. private groups (forum_mode == 2) do not uplink if((intval($parent['forum_mode']) == 1) && (! $top_level) && ($cmd !== 'uplink')) { - proc_run('php','include/notifier.php','uplink',$item_id); + proc_run(PRIORITY_HIGH,'include/notifier.php','uplink',$item_id); } $conversants = array(); @@ -538,7 +538,7 @@ function notifier_run(&$argv, &$argc){ $this_batch[] = $contact['id']; if(count($this_batch) >= $deliveries_per_process) { - proc_run('php','include/delivery.php',$cmd,$item_id,$this_batch); + proc_run(PRIORITY_HIGH,'include/delivery.php',$cmd,$item_id,$this_batch); $this_batch = array(); if($interval) @time_sleep_until(microtime(true) + (float) $interval); @@ -548,7 +548,7 @@ function notifier_run(&$argv, &$argc){ // be sure to pick up any stragglers if(count($this_batch)) - proc_run('php','include/delivery.php',$cmd,$item_id,$this_batch); + proc_run(PRIORITY_HIGH,'include/delivery.php',$cmd,$item_id,$this_batch); } // send salmon slaps to mentioned remote tags (@foo@example.com) in OStatus posts @@ -619,7 +619,7 @@ function notifier_run(&$argv, &$argc){ if((! $mail) && (! $fsuggest) && (! $followup)) { logger('notifier: delivery agent: '.$rr['name'].' '.$rr['id'].' '.$rr['network'].' '.$target_item["guid"]); - proc_run('php','include/delivery.php',$cmd,$item_id,$rr['id']); + proc_run(PRIORITY_HIGH,'include/delivery.php',$cmd,$item_id,$rr['id']); if($interval) @time_sleep_until(microtime(true) + (float) $interval); } @@ -659,7 +659,7 @@ function notifier_run(&$argv, &$argc){ } // Handling the pubsubhubbub requests - proc_run('php','include/pubsubpublish.php'); + proc_run(PRIORITY_HIGH,'include/pubsubpublish.php'); } logger('notifier: calling hooks', LOGGER_DEBUG); diff --git a/include/poller.php b/include/poller.php index ec6653b488..b54757b00b 100644 --- a/include/poller.php +++ b/include/poller.php @@ -275,6 +275,13 @@ function poller_too_much_workers() { logger("Current load: ".$load." - maximum: ".$maxsysload." - current queues: ".$active."/".$entries." - maximum: ".$queues."/".$maxqueues, LOGGER_DEBUG); + // Are there fewer workers running as possible? Then fork a new one. + if (!get_config("system", "worker_dont_fork") AND ($queues > ($active + 1)) AND ($entries > 1)) { + logger("Active workers: ".$active."/".$queues." Fork a new worker.", LOGGER_DEBUG); + $args = array("php", "include/poller.php", "no_cron"); + $a = get_app(); + $a->proc_run($args); + } } return($active >= $queues); diff --git a/include/queue.php b/include/queue.php index 878c149731..9779a0733d 100644 --- a/include/queue.php +++ b/include/queue.php @@ -48,7 +48,7 @@ function queue_run(&$argv, &$argc){ logger('queue: start'); // Handling the pubsubhubbub requests - proc_run('php','include/pubsubpublish.php'); + proc_run(PRIORITY_HIGH,'include/pubsubpublish.php'); $interval = ((get_config('system','delivery_interval') === false) ? 2 : intval(get_config('system','delivery_interval'))); @@ -60,7 +60,7 @@ function queue_run(&$argv, &$argc){ if($r) { foreach($r as $rr) { logger('queue: deliverq'); - proc_run('php','include/delivery.php',$rr['cmd'],$rr['item'],$rr['contact']); + proc_run(PRIORITY_HIGH,'include/delivery.php',$rr['cmd'],$rr['item'],$rr['contact']); if($interval) @time_sleep_until(microtime(true) + (float) $interval); } diff --git a/include/socgraph.php b/include/socgraph.php index cb2fd97b39..89897aaa7c 100644 --- a/include/socgraph.php +++ b/include/socgraph.php @@ -1507,7 +1507,7 @@ function get_gcontact_id($contact) { if ($doprobing) { logger("Last Contact: ". $last_contact_str." - Last Failure: ".$last_failure_str." - Checking: ".$contact["url"], LOGGER_DEBUG); - proc_run('php', 'include/gprobe.php', bin2hex($contact["url"])); + proc_run(PRIORITY_LOW, 'include/gprobe.php', bin2hex($contact["url"])); } if ((count($r) > 1) AND ($gcontact_id > 0) AND ($contact["url"] != "")) diff --git a/include/uimport.php b/include/uimport.php index bd271e91a8..937a16710a 100644 --- a/include/uimport.php +++ b/include/uimport.php @@ -287,7 +287,7 @@ function import_account(&$a, $file) { } // send relocate messages - proc_run('php', 'include/notifier.php', 'relocate', $newuid); + proc_run(PRIORITY_HIGH, 'include/notifier.php', 'relocate', $newuid); info(t("Done. You can now login with your username and password")); goaway($a->get_baseurl() . "/login"); diff --git a/mod/admin.php b/mod/admin.php index 547c37fb6c..d49673fc0f 100644 --- a/mod/admin.php +++ b/mod/admin.php @@ -549,7 +549,7 @@ function admin_page_site_post(&$a) { $users = q("SELECT `uid` FROM `user` WHERE `account_removed` = 0 AND `account_expired` = 0"); foreach ($users as $user) { - proc_run('php', 'include/notifier.php', 'relocate', $user['uid']); + proc_run(PRIORITY_HIGH, 'include/notifier.php', 'relocate', $user['uid']); } info("Relocation started. Could take a while to complete."); diff --git a/mod/contacts.php b/mod/contacts.php index f9e9f6b735..ba8ad45c39 100644 --- a/mod/contacts.php +++ b/mod/contacts.php @@ -237,7 +237,7 @@ function _contact_update($contact_id) { intval($contact_id)); } else // pull feed and consume it, which should subscribe to the hub. - proc_run('php',"include/onepoll.php","$contact_id", "force"); + proc_run(PRIORITY_MEDIUM, "include/onepoll.php", $contact_id, "force"); } function _contact_update_profile($contact_id) { diff --git a/mod/dfrn_confirm.php b/mod/dfrn_confirm.php index 25694a67f3..51cd59c62f 100644 --- a/mod/dfrn_confirm.php +++ b/mod/dfrn_confirm.php @@ -487,7 +487,7 @@ function dfrn_confirm_post(&$a,$handsfree = null) { $i = item_store($arr); if($i) - proc_run('php',"include/notifier.php","activity","$i"); + proc_run(PRIORITY_HIGH, "include/notifier.php", "activity", $i); } } } @@ -784,7 +784,7 @@ function dfrn_confirm_post(&$a,$handsfree = null) { $i = item_store($arr); if($i) - proc_run('php',"include/notifier.php","activity","$i"); + proc_run(PRIORITY_HIGH, "include/notifier.php", "activity", $i); } } diff --git a/mod/dirfind.php b/mod/dirfind.php index 0638fe14fa..52e1617554 100644 --- a/mod/dirfind.php +++ b/mod/dirfind.php @@ -156,7 +156,7 @@ function dirfind_content(&$a, $prefix = "") { } // Add found profiles from the global directory to the local directory - proc_run('php','include/discover_poco.php', "dirsearch", urlencode($search)); + proc_run(PRIORITY_LOW, 'include/discover_poco.php', "dirsearch", urlencode($search)); } else { $p = (($a->pager['page'] != 1) ? '&p=' . $a->pager['page'] : ''); diff --git a/mod/events.php b/mod/events.php index 878bf841d2..636cf6c579 100644 --- a/mod/events.php +++ b/mod/events.php @@ -177,7 +177,7 @@ function events_post(&$a) { $item_id = event_store($datarray); if(! $cid) - proc_run('php',"include/notifier.php","event","$item_id"); + proc_run(PRIORITY_HIGH, "include/notifier.php", "event", $item_id); goaway($_SESSION['return_url']); } diff --git a/mod/fsuggest.php b/mod/fsuggest.php index 6b1cbd7533..ad407d5f32 100644 --- a/mod/fsuggest.php +++ b/mod/fsuggest.php @@ -57,7 +57,7 @@ function fsuggest_post(&$a) { intval($fsuggest_id), intval(local_user()) ); - proc_run('php', 'include/notifier.php', 'suggest' , $fsuggest_id); + proc_run(PRIORITY_HIGH, 'include/notifier.php', 'suggest', $fsuggest_id); } info( t('Friend suggestion sent.') . EOL); diff --git a/mod/item.php b/mod/item.php index 6f5f8fc1ea..9a9b5895bd 100644 --- a/mod/item.php +++ b/mod/item.php @@ -783,7 +783,7 @@ function item_post(&$a) { // update filetags in pconfig file_tag_update_pconfig($uid,$categories_old,$categories_new,'category'); - proc_run('php', "include/notifier.php", 'edit_post', "$post_id"); + proc_run(PRIORITY_HIGH, "include/notifier.php", 'edit_post', $post_id); if((x($_REQUEST,'return')) && strlen($return_path)) { logger('return: ' . $return_path); goaway($a->get_baseurl() . "/" . $return_path ); @@ -1032,7 +1032,7 @@ function item_post(&$a) { // Currently the only realistic fixes are to use a reliable server - which precludes shared hosting, // or cut back on plugins which do remote deliveries. - proc_run('php', "include/notifier.php", $notify_type, "$post_id"); + proc_run(PRIORITY_HIGH, "include/notifier.php", $notify_type, $post_id); logger('post_complete'); diff --git a/mod/mood.php b/mod/mood.php index 5e6ca0fcfc..f804af0c00 100644 --- a/mod/mood.php +++ b/mod/mood.php @@ -95,13 +95,13 @@ function mood_init(&$a) { intval($uid), intval($item_id) ); - proc_run('php',"include/notifier.php","tag","$item_id"); + proc_run(PRIORITY_HIGH, "include/notifier.php", "tag", $item_id); } call_hooks('post_local_end', $arr); - proc_run('php',"include/notifier.php","like","$post_id"); + proc_run(PRIORITY_HIGH, "include/notifier.php", "like", $post_id); return; } diff --git a/mod/photos.php b/mod/photos.php index 4ac4e1a0ee..ec71cc09d8 100644 --- a/mod/photos.php +++ b/mod/photos.php @@ -306,7 +306,7 @@ function photos_post(&$a) { // send the notification upstream/downstream as the case may be if($rr['visible']) - proc_run('php',"include/notifier.php","drop","$drop_id"); + proc_run(PRIORITY_HIGH, "include/notifier.php", "drop", $drop_id); } } } @@ -376,7 +376,7 @@ function photos_post(&$a) { $drop_id = intval($i[0]['id']); if($i[0]['visible']) - proc_run('php',"include/notifier.php","drop","$drop_id"); + proc_run(PRIORITY_HIGH, "include/notifier.php", "drop", $drop_id); } } @@ -719,7 +719,7 @@ function photos_post(&$a) { $item_id = item_store($arr); if($item_id) { - proc_run('php',"include/notifier.php","tag","$item_id"); + proc_run(PRIORITY_HIGH, "include/notifier.php", "tag", $item_id); } } @@ -935,7 +935,7 @@ function photos_post(&$a) { $item_id = item_store($arr); if($visible) - proc_run('php', "include/notifier.php", 'wall-new', $item_id); + proc_run(PRIORITY_HIGH, "include/notifier.php", 'wall-new', $item_id); call_hooks('photo_post_end',intval($item_id)); diff --git a/mod/poke.php b/mod/poke.php index 4a643435be..435da4dcd4 100644 --- a/mod/poke.php +++ b/mod/poke.php @@ -131,13 +131,13 @@ function poke_init(&$a) { // intval($uid), // intval($item_id) //); - proc_run('php',"include/notifier.php","tag","$item_id"); + proc_run(PRIORITY_HIGH, "include/notifier.php", "tag", $item_id); } call_hooks('post_local_end', $arr); - proc_run('php',"include/notifier.php","like","$post_id"); + proc_run(PRIORITY_HIGH, "include/notifier.php", "like", $post_id); return; } diff --git a/mod/profile_photo.php b/mod/profile_photo.php index 4e8d279a97..11e671afc5 100644 --- a/mod/profile_photo.php +++ b/mod/profile_photo.php @@ -125,7 +125,7 @@ function profile_photo_post(&$a) { // Update global directory in background $url = $a->get_baseurl() . '/profile/' . $a->user['nickname']; if($url && strlen(get_config('system','directory'))) - proc_run('php',"include/directory.php","$url"); + proc_run(PRIORITY_LOW, "include/directory.php", $url); require_once('include/profile_update.php'); profile_change(); @@ -224,7 +224,7 @@ function profile_photo_content(&$a) { // Update global directory in background $url = $_SESSION['my_url']; if($url && strlen(get_config('system','directory'))) - proc_run('php',"include/directory.php","$url"); + proc_run(PRIORITY_LOW, "include/directory.php", $url); goaway($a->get_baseurl() . '/profiles'); return; // NOTREACHED diff --git a/mod/profiles.php b/mod/profiles.php index c3bd068b0b..d770e75c3a 100644 --- a/mod/profiles.php +++ b/mod/profiles.php @@ -496,7 +496,7 @@ function profiles_post(&$a) { // Update global directory in background $url = $_SESSION['my_url']; if($url && strlen(get_config('system','directory'))) - proc_run('php',"include/directory.php","$url"); + proc_run(PRIORITY_LOW, "include/directory.php", $url); require_once('include/profile_update.php'); profile_change(); @@ -587,9 +587,8 @@ function profile_activity($changed, $value) { $arr['deny_gid'] = $a->user['deny_gid']; $i = item_store($arr); - if($i) { - proc_run('php',"include/notifier.php","activity","$i"); - } + if($i) + proc_run(PRIORITY_HIGH, "include/notifier.php", "activity", $i); } diff --git a/mod/register.php b/mod/register.php index 4c4fcc2af1..6fc5887ef5 100644 --- a/mod/register.php +++ b/mod/register.php @@ -64,7 +64,7 @@ function register_post(&$a) { if($netpublish && $a->config['register_policy'] != REGISTER_APPROVE) { $url = $a->get_baseurl() . '/profile/' . $user['nickname']; - proc_run('php',"include/directory.php","$url"); + proc_run(PRIORITY_LOW, "include/directory.php", $url); } $using_invites = get_config('system','invitation_only'); diff --git a/mod/regmod.php b/mod/regmod.php index 5a90db1f90..bbe733003a 100644 --- a/mod/regmod.php +++ b/mod/regmod.php @@ -37,7 +37,7 @@ function user_allow($hash) { if(count($r) && $r[0]['net-publish']) { $url = $a->get_baseurl() . '/profile/' . $user[0]['nickname']; if($url && strlen(get_config('system','directory'))) - proc_run('php',"include/directory.php","$url"); + proc_run(PRIORITY_LOW, "include/directory.php", $url); } push_lang($register[0]['language']); diff --git a/mod/settings.php b/mod/settings.php index 89406b7072..e2d3f4d367 100644 --- a/mod/settings.php +++ b/mod/settings.php @@ -352,7 +352,7 @@ function settings_post(&$a) { check_form_security_token_redirectOnErr('/settings', 'settings'); if (x($_POST,'resend_relocate')) { - proc_run('php', 'include/notifier.php', 'relocate', local_user()); + proc_run(PRIORITY_HIGH, 'include/notifier.php', 'relocate', local_user()); info(t("Relocate message has been send to your contacts")); goaway('settings'); } @@ -614,7 +614,7 @@ function settings_post(&$a) { // Update global directory in background $url = $_SESSION['my_url']; if($url && strlen(get_config('system','directory'))) - proc_run('php',"include/directory.php","$url"); + proc_run(PRIORITY_LOW, "include/directory.php", $url); } require_once('include/profile_update.php'); diff --git a/mod/tagger.php b/mod/tagger.php index 26166a3cc0..e0ef1ceb02 100644 --- a/mod/tagger.php +++ b/mod/tagger.php @@ -211,7 +211,7 @@ EOT; call_hooks('post_local_end', $arr); - proc_run('php',"include/notifier.php","tag","$post_id"); + proc_run(PRIORITY_HIGH, "include/notifier.php", "tag", $post_id); killme(); diff --git a/mod/videos.php b/mod/videos.php index bf8d696b60..e5a0887bb9 100644 --- a/mod/videos.php +++ b/mod/videos.php @@ -167,7 +167,7 @@ function videos_post(&$a) { $drop_id = intval($i[0]['id']); if($i[0]['visible']) - proc_run('php',"include/notifier.php","drop","$drop_id"); + proc_run(PRIORITY_HIGH, "include/notifier.php", "drop", $drop_id); } } diff --git a/update.php b/update.php index 41f238e913..a150fe39fa 100644 --- a/update.php +++ b/update.php @@ -1595,7 +1595,7 @@ function update_1169() { if (!$r) return UPDATE_FAILED; - proc_run('php',"include/threadupdate.php"); + proc_run(PRIORITY_LOW, "include/threadupdate.php"); return UPDATE_SUCCESS; } @@ -1636,7 +1636,7 @@ function update_1178() { set_config('system','community_page_style', CP_NO_COMMUNITY_PAGE); // Update the central item storage with uid=0 - proc_run('php',"include/threadupdate.php"); + proc_run(PRIORITY_LOW, "include/threadupdate.php"); return UPDATE_SUCCESS; } @@ -1644,7 +1644,7 @@ function update_1178() { function update_1180() { // Fill the new fields in the term table. - proc_run('php',"include/tagupdate.php"); + proc_run(PRIORITY_LOW, "include/tagupdate.php"); return UPDATE_SUCCESS; } From b9dbb0ace1f80f51892b382f68f6441fb7d5c906 Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Tue, 2 Aug 2016 06:28:34 +0200 Subject: [PATCH 18/23] Split cronhook call to several single calls --- include/cron.php | 38 ++++++++++++++++++++------------ include/cronhooks.php | 21 +++++++++++++++--- include/plugin.php | 50 +++++++++++++++++++++++-------------------- include/poller.php | 4 ++-- 4 files changed, 71 insertions(+), 42 deletions(-) diff --git a/include/cron.php b/include/cron.php index c54fef8a9c..28d6713f54 100644 --- a/include/cron.php +++ b/include/cron.php @@ -142,28 +142,44 @@ function cron_run(&$argv, &$argc){ // Repair entries in the database cron_repair_database(); + // Poll contacts + cron_poll_contacts($argc, $argv); + + logger('cron: end'); + + set_config('system','last_cron', time()); + + return; +} + +/** + * @brief Clear cache entries + * + * @param App $a + */ +function cron_poll_contacts($argc, $argv) { $manual_id = 0; $generation = 0; $force = false; $restart = false; - if(($argc > 1) && ($argv[1] == 'force')) + if (($argc > 1) && ($argv[1] == 'force')) $force = true; - if(($argc > 1) && ($argv[1] == 'restart')) { + if (($argc > 1) && ($argv[1] == 'restart')) { $restart = true; $generation = intval($argv[2]); - if(! $generation) + if (!$generation) killme(); } - if(($argc > 1) && intval($argv[1])) { + if (($argc > 1) && intval($argv[1])) { $manual_id = intval($argv[1]); $force = true; } $interval = intval(get_config('system','poll_interval')); - if(! $interval) + if (!$interval) $interval = ((get_config('system','delivery_interval') === false) ? 3 : intval(get_config('system','delivery_interval'))); // If we are using the worker we don't need a delivery interval @@ -200,11 +216,11 @@ function cron_run(&$argv, &$argc){ dbesc(NETWORK_MAIL2) ); - if(! count($contacts)) { + if (!count($contacts)) { return; } - foreach($contacts as $c) { + foreach ($contacts as $c) { $res = q("SELECT * FROM `contact` WHERE `id` = %d LIMIT 1", intval($c['id']) @@ -266,7 +282,7 @@ function cron_run(&$argv, &$argc){ $update = true; break; } - if(!$update) + if (!$update) continue; } @@ -278,12 +294,6 @@ function cron_run(&$argv, &$argc){ @time_sleep_until(microtime(true) + (float) $interval); } } - - logger('cron: end'); - - set_config('system','last_cron', time()); - - return; } /** diff --git a/include/cronhooks.php b/include/cronhooks.php index b6cf0e7237..4bb1e5f659 100644 --- a/include/cronhooks.php +++ b/include/cronhooks.php @@ -31,6 +31,17 @@ function cronhooks_run(&$argv, &$argc){ return; } + load_hooks(); + + if (($argc == 2) AND is_array($a->hooks) AND array_key_exists("cron", $a->hooks)) { + foreach ($a->hooks["cron"] as $hook) + if ($hook[1] == $argv[1]) { + logger("Calling cron hook '".$hook[1]."'", LOGGER_DEBUG); + call_single_hook($a, $name, $hook, $data); + } + return; + } + $last = get_config('system','last_cronhook'); $poll_interval = intval(get_config('system','cronhook_interval')); @@ -47,13 +58,17 @@ function cronhooks_run(&$argv, &$argc){ $a->set_baseurl(get_config('system','url')); - load_hooks(); - logger('cronhooks: start'); $d = datetime_convert(); - call_hooks('cron', $d); + if (get_config("system", "worker") AND is_array($a->hooks) AND array_key_exists("cron", $a->hooks)) { + foreach ($a->hooks["cron"] as $hook) { + logger("Calling cronhooks for '".$hook[1]."'", LOGGER_DEBUG); + proc_run(PRIORITY_MEDIUM, "include/cronhooks.php", $hook[1]); + } + } else + call_hooks('cron', $d); logger('cronhooks: end'); diff --git a/include/plugin.php b/include/plugin.php index e25e9e85b1..f6e4a7a882 100644 --- a/include/plugin.php +++ b/include/plugin.php @@ -205,37 +205,41 @@ function load_hooks() { * @param string $name of the hook to call * @param string|array &$data to transmit to the callback handler */ -if(! function_exists('call_hooks')) { function call_hooks($name, &$data = null) { $stamp1 = microtime(true); $a = get_app(); - #logger($name, LOGGER_ALL); + if (is_array($a->hooks) && array_key_exists($name, $a->hooks)) + foreach ($a->hooks[$name] as $hook) + call_single_hook($a, $name, $hook, $data); +} - if((is_array($a->hooks)) && (array_key_exists($name,$a->hooks))) { - foreach($a->hooks[$name] as $hook) { - // Don't run a theme's hook if the user isn't using the theme - if(strpos($hook[0], 'view/theme/') !== false && strpos($hook[0], 'view/theme/'.current_theme()) === false) - continue; +/** + * @brief Calls a single hook. + * + * @param string $name of the hook to call + * @param array $hook Hook data + * @param string|array &$data to transmit to the callback handler + */ +function call_single_hook($a, $name, $hook, &$data = null) { + // Don't run a theme's hook if the user isn't using the theme + if (strpos($hook[0], 'view/theme/') !== false && strpos($hook[0], 'view/theme/'.current_theme()) === false) + return; - @include_once($hook[0]); - if(function_exists($hook[1])) { - $func = $hook[1]; - //logger($name." => ".$hook[0].":".$func."()", LOGGER_DEBUG); - $func($a,$data); - } - else { - // remove orphan hooks - q("DELETE FROM `hook` WHERE `hook` = '%s' AND `file` = '%s' AND `function` = '%s'", - dbesc($name), - dbesc($hook[0]), - dbesc($hook[1]) - ); - } - } + @include_once($hook[0]); + if (function_exists($hook[1])) { + $func = $hook[1]; + $func($a, $data); + } else { + // remove orphan hooks + q("DELETE FROM `hook` WHERE `hook` = '%s' AND `file` = '%s' AND `function` = '%s'", + dbesc($name), + dbesc($hook[0]), + dbesc($hook[1]) + ); } -}} +} //check if an app_menu hook exist for plugin $name. //Return true if the plugin is an app diff --git a/include/poller.php b/include/poller.php index b54757b00b..811b81e174 100644 --- a/include/poller.php +++ b/include/poller.php @@ -46,10 +46,10 @@ function poller_run(&$argv, &$argc){ if(($argc <= 1) OR ($argv[1] != "no_cron")) { // Run the cron job that calls all other jobs - proc_run("php","include/cron.php"); + proc_run(PRIORITY_MEDIUM, "include/cron.php"); // Run the cronhooks job separately from cron for being able to use a different timing - proc_run("php","include/cronhooks.php"); + proc_run(PRIORITY_MEDIUM, "include/cronhooks.php"); // Cleaning dead processes poller_kill_stale_workers(); From 13c285d61df4fa30aa8fa1f47d7ecbec31c5f208 Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Tue, 2 Aug 2016 10:19:10 +0200 Subject: [PATCH 19/23] Updated documentation --- include/cron.php | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/include/cron.php b/include/cron.php index 28d6713f54..82c8cc7a16 100644 --- a/include/cron.php +++ b/include/cron.php @@ -153,9 +153,10 @@ function cron_run(&$argv, &$argc){ } /** - * @brief Clear cache entries + * @brief Poll contacts for unreceived messages * - * @param App $a + * @param Integer $argc Number of command line arguments + * @param Array $argv Array of command line arguments */ function cron_poll_contacts($argc, $argv) { $manual_id = 0; From 87fb0b7b26dbbffc6d341e45fd5d4a558c36c250 Mon Sep 17 00:00:00 2001 From: fabrixxm Date: Tue, 2 Aug 2016 12:24:07 +0200 Subject: [PATCH 20/23] Quick fix to PR #2682 --- include/api.php | 5 +++-- include/xml.php | 25 +++++++++++++++---------- 2 files changed, 18 insertions(+), 12 deletions(-) diff --git a/include/api.php b/include/api.php index 14d11f6695..a856b747f8 100644 --- a/include/api.php +++ b/include/api.php @@ -768,6 +768,7 @@ } $data3 = array($root_element => $data2); + $ret = xml::from_array($data3, $xml, false, $namespaces); return $ret; } @@ -2377,9 +2378,9 @@ $res = array(); $uri = $item['uri']."-l"; foreach($activities as $k => $v) { - $res[$k] = ( x($v,$uri) ? array_map("api_contactlink_to_array", $v[$uri]) : array() ); + $res[$k] = (x($v,$uri)?count($v[$uri]):0); + #$res[$k] = ( x($v,$uri) ? array_map("api_contactlink_to_array", $v[$uri]) : array() ); } - return $res; } diff --git a/include/xml.php b/include/xml.php index a60d0671d3..f45d6cade0 100644 --- a/include/xml.php +++ b/include/xml.php @@ -51,8 +51,13 @@ class xml { $element = $xml; if (is_integer($key)) { - if (isset($element)) - $element[0] = $value; + if (isset($element)) { + if (is_scalar($value)) { + $element[0] = $value; + } else { + /// @todo: handle nested array values + } + } continue; } @@ -145,11 +150,11 @@ class xml { /** * @brief Convert an XML document to a normalised, case-corrected array * used by webfinger - * + * * @param object $xml_element The XML document - * @param integer $recursion_depth recursion counter for internal use - default 0 + * @param integer $recursion_depth recursion counter for internal use - default 0 * internal use, recursion counter - * + * * @return array | sring The array from the xml element or the string */ public static function element_to_array($xml_element, &$recursion_depth=0) { @@ -195,23 +200,23 @@ class xml { /** * @brief Convert the given XML text to an array in the XML structure. - * + * * xml::to_array() will convert the given XML text to an array in the XML structure. * Link: http://www.bin-co.com/php/scripts/xml2array/ * Portions significantly re-written by mike@macgirvin.com for Friendica * (namespaces, lowercase tags, get_attribute default changed, more...) - * + * * Examples: $array = xml::to_array(file_get_contents('feed.xml')); * $array = xml::to_array(file_get_contents('feed.xml', true, 1, 'attribute')); - * + * * @param object $contents The XML text * @param boolean $namespaces True or false include namespace information * in the returned array as array elements. - * @param integer $get_attributes 1 or 0. If this is 1 the function will get the attributes as well as the tag values - + * @param integer $get_attributes 1 or 0. If this is 1 the function will get the attributes as well as the tag values - * this results in a different array structure in the return value. * @param string $priority Can be 'tag' or 'attribute'. This will change the way the resulting * array sturcture. For 'tag', the tags are given more importance. - * + * * @return array The parsed XML in an array form. Use print_r() to see the resulting array structure. */ public static function to_array($contents, $namespaces = true, $get_attributes=1, $priority = 'attribute') { From 35bbc3948f2aa082785a79e144d6dc142487ba32 Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Tue, 2 Aug 2016 12:30:04 +0200 Subject: [PATCH 21/23] DE update to the strings --- view/de/messages.po | 4575 ++++++++++++++++++++++--------------------- view/de/strings.php | 1299 ++++++------ 2 files changed, 2939 insertions(+), 2935 deletions(-) diff --git a/view/de/messages.po b/view/de/messages.po index 3314bf5933..c541ce9089 100644 --- a/view/de/messages.po +++ b/view/de/messages.po @@ -5,7 +5,7 @@ # Translators: # Andreas H., 2015 # Andreas H., 2015-2016 -# bavatar , 2011 +# Tobias Diekershoff , 2011 # David Rabel , 2016 # Erkan Yilmaz , 2011 # Fabian Dost , 2012 @@ -22,20 +22,22 @@ # Matthias Moritz , 2012 # Oliver , 2015 # Oliver , 2012 +# rabuzarus , 2016 # Sennewood , 2013 # Sennewood , 2012-2013 # silke m , 2015 -# bavatar , 2013-2016 -# bavatar , 2011-2013 +# Tobias Diekershoff , 2013-2016 +# Tobias Diekershoff , 2011-2013 +# Tobias Diekershoff , 2016 # zottel , 2011-2012 # tschlotfeldt , 2011 msgid "" msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-07-08 19:22+0200\n" -"PO-Revision-Date: 2016-07-17 10:34+0000\n" -"Last-Translator: David Rabel \n" +"POT-Creation-Date: 2016-08-01 07:44+0200\n" +"PO-Revision-Date: 2016-08-02 10:25+0000\n" +"Last-Translator: Tobias Diekershoff \n" "Language-Team: German (http://www.transifex.com/Friendica/friendica/language/de/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -43,88 +45,7 @@ msgstr "" "Language: de\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: boot.php:887 -msgid "Delete this item?" -msgstr "Diesen Beitrag löschen?" - -#: boot.php:888 mod/content.php:727 mod/content.php:945 mod/photos.php:1616 -#: mod/photos.php:1664 mod/photos.php:1752 object/Item.php:403 -#: object/Item.php:719 -msgid "Comment" -msgstr "Kommentar" - -#: boot.php:889 include/contact_widgets.php:242 include/ForumManager.php:119 -#: include/items.php:2122 mod/content.php:624 object/Item.php:432 -#: view/theme/vier/theme.php:260 -msgid "show more" -msgstr "mehr anzeigen" - -#: boot.php:890 -msgid "show fewer" -msgstr "weniger anzeigen" - -#: boot.php:1483 -#, php-format -msgid "Update %s failed. See error logs." -msgstr "Update %s fehlgeschlagen. Bitte Fehlerprotokoll überprüfen." - -#: boot.php:1595 -msgid "Create a New Account" -msgstr "Neues Konto erstellen" - -#: boot.php:1596 include/nav.php:111 mod/register.php:280 -msgid "Register" -msgstr "Registrieren" - -#: boot.php:1620 include/nav.php:75 view/theme/frio/theme.php:243 -msgid "Logout" -msgstr "Abmelden" - -#: boot.php:1621 include/nav.php:94 mod/bookmarklet.php:12 -msgid "Login" -msgstr "Anmeldung" - -#: boot.php:1623 mod/lostpass.php:161 -msgid "Nickname or Email: " -msgstr "Spitzname oder E-Mail:" - -#: boot.php:1624 -msgid "Password: " -msgstr "Passwort: " - -#: boot.php:1625 -msgid "Remember me" -msgstr "Anmeldedaten merken" - -#: boot.php:1628 -msgid "Or login using OpenID: " -msgstr "Oder melde Dich mit Deiner OpenID an: " - -#: boot.php:1634 -msgid "Forgot your password?" -msgstr "Passwort vergessen?" - -#: boot.php:1635 mod/lostpass.php:109 -msgid "Password Reset" -msgstr "Passwort zurücksetzen" - -#: boot.php:1637 -msgid "Website Terms of Service" -msgstr "Website Nutzungsbedingungen" - -#: boot.php:1638 -msgid "terms of service" -msgstr "Nutzungsbedingungen" - -#: boot.php:1640 -msgid "Website Privacy Policy" -msgstr "Website Datenschutzerklärung" - -#: boot.php:1641 -msgid "privacy policy" -msgstr "Datenschutzerklärung" - -#: include/datetime.php:57 include/datetime.php:59 mod/profiles.php:698 +#: include/datetime.php:57 include/datetime.php:59 mod/profiles.php:699 msgid "Miscellaneous" msgstr "Verschiedenes" @@ -132,7 +53,7 @@ msgstr "Verschiedenes" msgid "Birthday:" msgstr "Geburtstag:" -#: include/datetime.php:185 mod/profiles.php:721 +#: include/datetime.php:185 mod/profiles.php:722 msgid "Age: " msgstr "Alter: " @@ -256,8 +177,8 @@ msgstr "Name oder Interessen eingeben" #: include/contact_widgets.php:32 include/conversation.php:978 #: include/Contact.php:324 mod/dirfind.php:204 mod/match.php:72 -#: mod/allfriends.php:66 mod/contacts.php:600 mod/follow.php:103 -#: mod/suggest.php:83 +#: mod/allfriends.php:66 mod/follow.php:103 mod/suggest.php:83 +#: mod/contacts.php:602 msgid "Connect/Follow" msgstr "Verbinden/Folgen" @@ -265,7 +186,7 @@ msgstr "Verbinden/Folgen" msgid "Examples: Robert Morgenstein, Fishing" msgstr "Beispiel: Robert Morgenstein, Angeln" -#: include/contact_widgets.php:34 mod/directory.php:212 mod/contacts.php:791 +#: include/contact_widgets.php:34 mod/directory.php:212 mod/contacts.php:796 msgid "Find" msgstr "Finde" @@ -315,6 +236,12 @@ msgid_plural "%d contacts in common" msgstr[0] "%d gemeinsamer Kontakt" msgstr[1] "%d gemeinsame Kontakte" +#: include/contact_widgets.php:242 include/ForumManager.php:119 +#: include/items.php:2122 mod/content.php:624 object/Item.php:432 +#: view/theme/vier/theme.php:260 boot.php:889 +msgid "show more" +msgstr "mehr anzeigen" + #: include/enotify.php:24 msgid "Friendica Notification" msgstr "Friendica-Benachrichtigung" @@ -612,18 +539,6 @@ msgstr "Kompletter Name:\t%1$s\\nURL der Seite:\t%2$s\\nLogin Name:\t%3$s (%4$s) msgid "Please visit %s to approve or reject the request." msgstr "Bitte besuche %s um die Anfrage zu bearbeiten." -#: include/plugin.php:522 include/plugin.php:524 -msgid "Click here to upgrade." -msgstr "Zum Upgraden hier klicken." - -#: include/plugin.php:530 -msgid "This action exceeds the limits set by your subscription plan." -msgstr "Diese Aktion überschreitet die Obergrenze Deines Abonnements." - -#: include/plugin.php:535 -msgid "This action is not available under your subscription plan." -msgstr "Diese Aktion ist in Deinem Abonnement nicht verfügbar." - #: include/ForumManager.php:114 include/text.php:998 include/nav.php:130 #: view/theme/vier/theme.php:255 msgid "Forums" @@ -633,28 +548,6 @@ msgstr "Foren" msgid "External link to forum" msgstr "Externer Link zum Forum" -#: include/diaspora.php:1379 include/conversation.php:141 include/like.php:182 -#: view/theme/diabook/theme.php:480 -#, php-format -msgid "%1$s likes %2$s's %3$s" -msgstr "%1$s mag %2$ss %3$s" - -#: include/diaspora.php:1383 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 view/theme/diabook/theme.php:466 -#: view/theme/diabook/theme.php:475 -msgid "status" -msgstr "Status" - -#: include/diaspora.php:1909 -msgid "Sharing notification from Diaspora network" -msgstr "Freigabe-Benachrichtigung von Diaspora" - -#: include/diaspora.php:2801 -msgid "Attachments:" -msgstr "Anhänge:" - #: include/dfrn.php:1110 #, php-format msgid "%s\\'s birthday" @@ -714,8 +607,8 @@ msgid "Finishes:" msgstr "Endet:" #: include/event.php:39 include/event.php:63 include/identity.php:329 -#: include/bb2diaspora.php:170 mod/notifications.php:246 mod/events.php:495 -#: mod/directory.php:145 mod/contacts.php:624 +#: include/bb2diaspora.php:170 mod/events.php:495 mod/directory.php:145 +#: mod/contacts.php:628 mod/notifications.php:208 msgid "Location:" msgstr "Ort:" @@ -1147,7 +1040,7 @@ msgstr "Ist mir nicht wichtig" msgid "Ask me" msgstr "Frag mich" -#: include/items.php:1447 mod/dfrn_confirm.php:725 mod/dfrn_request.php:744 +#: include/items.php:1447 mod/dfrn_confirm.php:726 mod/dfrn_request.php:745 msgid "[Name Withheld]" msgstr "[Name unterdrückt]" @@ -1161,45 +1054,45 @@ msgstr "Beitrag nicht gefunden." msgid "Do you really want to delete this item?" msgstr "Möchtest Du wirklich dieses Item löschen?" -#: include/items.php:1846 mod/profiles.php:641 mod/profiles.php:644 -#: mod/profiles.php:670 mod/contacts.php:441 mod/follow.php:110 -#: mod/suggest.php:29 mod/dfrn_request.php:860 mod/register.php:238 -#: mod/settings.php:1113 mod/settings.php:1119 mod/settings.php:1127 -#: mod/settings.php:1131 mod/settings.php:1136 mod/settings.php:1142 -#: mod/settings.php:1148 mod/settings.php:1154 mod/settings.php:1180 -#: mod/settings.php:1181 mod/settings.php:1182 mod/settings.php:1183 -#: mod/settings.php:1184 mod/api.php:105 mod/message.php:217 +#: include/items.php:1846 mod/follow.php:110 mod/suggest.php:29 +#: mod/register.php:238 mod/settings.php:1113 mod/settings.php:1119 +#: mod/settings.php:1127 mod/settings.php:1131 mod/settings.php:1136 +#: mod/settings.php:1142 mod/settings.php:1148 mod/settings.php:1154 +#: mod/settings.php:1180 mod/settings.php:1181 mod/settings.php:1182 +#: mod/settings.php:1183 mod/settings.php:1184 mod/api.php:105 +#: mod/message.php:217 mod/contacts.php:442 mod/dfrn_request.php:861 +#: mod/profiles.php:642 mod/profiles.php:645 mod/profiles.php:671 msgid "Yes" msgstr "Ja" #: include/items.php:1849 include/conversation.php:1274 mod/fbrowser.php:101 #: mod/fbrowser.php:136 mod/tagrm.php:11 mod/tagrm.php:94 mod/videos.php:131 -#: mod/photos.php:247 mod/photos.php:336 mod/contacts.php:444 #: mod/follow.php:121 mod/suggest.php:32 mod/editpost.php:148 -#: mod/dfrn_request.php:874 mod/settings.php:664 mod/settings.php:690 -#: mod/message.php:220 +#: mod/settings.php:664 mod/settings.php:690 mod/message.php:220 +#: mod/contacts.php:445 mod/dfrn_request.php:875 mod/photos.php:248 +#: mod/photos.php:337 msgid "Cancel" msgstr "Abbrechen" -#: include/items.php:2011 index.php:397 mod/regmod.php:110 mod/dirfind.php:11 -#: mod/notifications.php:69 mod/dfrn_confirm.php:56 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 +#: include/items.php:2011 mod/regmod.php:110 mod/dirfind.php:11 +#: 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/wall_attach.php:67 mod/wall_attach.php:70 mod/allfriends.php:12 #: mod/cal.php:308 mod/repair_ostatus.php:9 mod/delegate.php:12 -#: mod/profiles.php:165 mod/profiles.php:598 mod/poke.php:150 -#: mod/photos.php:171 mod/photos.php:1092 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:474 mod/common.php:18 mod/mood.php:114 -#: mod/editpost.php:10 mod/network.php:4 mod/group.php:19 +#: mod/poke.php:150 mod/attach.php:33 mod/follow.php:11 mod/follow.php:73 +#: mod/follow.php:155 mod/suggest.php:58 mod/display.php:474 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:650 #: 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:185 #: mod/item.php:197 mod/ostatus_subscribe.php:9 mod/message.php:46 -#: mod/message.php:182 mod/manage.php:96 +#: mod/message.php:182 mod/manage.php:96 mod/contacts.php:350 +#: mod/crepair.php:100 mod/dfrn_confirm.php:57 mod/photos.php:172 +#: mod/photos.php:1093 mod/profiles.php:166 mod/profiles.php:599 +#: mod/notifications.php:65 index.php:397 msgid "Permission denied." msgstr "Zugriff verweigert." @@ -1276,7 +1169,7 @@ msgstr "Tags" #: include/text.php:995 include/identity.php:781 include/identity.php:784 #: include/nav.php:127 include/nav.php:193 mod/viewcontacts.php:116 -#: mod/contacts.php:785 mod/contacts.php:846 view/theme/frio/theme.php:257 +#: mod/contacts.php:790 mod/contacts.php:851 view/theme/frio/theme.php:257 #: view/theme/diabook/theme.php:125 msgid "Contacts" msgstr "Kontakte" @@ -1429,15 +1322,14 @@ msgstr "Auf separater Seite ansehen" msgid "view on separate page" msgstr "auf separater Seite ansehen" -#: include/text.php:1779 include/conversation.php:122 -#: include/conversation.php:258 include/like.php:165 -#: view/theme/diabook/theme.php:463 +#: include/text.php:1779 include/like.php:165 include/conversation.php:122 +#: include/conversation.php:258 view/theme/diabook/theme.php:463 msgid "event" msgstr "Event" -#: include/text.php:1781 include/conversation.php:130 -#: include/conversation.php:266 include/like.php:163 mod/tagger.php:62 -#: mod/subthread.php:87 view/theme/diabook/theme.php:471 +#: include/text.php:1781 include/like.php:163 include/conversation.php:130 +#: include/conversation.php:266 mod/tagger.php:62 mod/subthread.php:87 +#: view/theme/diabook/theme.php:471 msgid "photo" msgstr "Foto" @@ -1460,415 +1352,6 @@ msgstr "Beitrag" msgid "Item filed" msgstr "Beitrag abgelegt" -#: 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/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/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/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/conversation.php:185 mod/dfrn_confirm.php:472 -#, php-format -msgid "%1$s is now friends with %2$s" -msgstr "%1$s ist nun mit %2$s befreundet" - -#: include/conversation.php:219 -#, php-format -msgid "%1$s poked %2$s" -msgstr "%1$s stupste %2$s" - -#: 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/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/conversation.php:303 -msgid "post/item" -msgstr "Nachricht/Beitrag" - -#: 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/conversation.php:587 mod/content.php:372 mod/profiles.php:344 -#: mod/photos.php:1634 -msgid "Likes" -msgstr "Likes" - -#: include/conversation.php:587 mod/content.php:372 mod/profiles.php:348 -#: mod/photos.php:1634 -msgid "Dislikes" -msgstr "Dislikes" - -#: include/conversation.php:588 include/conversation.php:1471 -#: mod/content.php:373 mod/photos.php:1635 -msgid "Attending" -msgid_plural "Attending" -msgstr[0] "Teilnehmend" -msgstr[1] "Teilnehmend" - -#: include/conversation.php:588 mod/content.php:373 mod/photos.php:1635 -msgid "Not attending" -msgstr "Nicht teilnehmend" - -#: include/conversation.php:588 mod/content.php:373 mod/photos.php:1635 -msgid "Might attend" -msgstr "Eventuell teilnehmend" - -#: include/conversation.php:710 mod/content.php:453 mod/content.php:758 -#: mod/photos.php:1709 object/Item.php:133 -msgid "Select" -msgstr "Auswählen" - -#: include/conversation.php:711 mod/admin.php:1388 mod/content.php:454 -#: mod/content.php:759 mod/photos.php:1710 mod/contacts.php:801 -#: mod/contacts.php:1016 mod/group.php:171 mod/settings.php:726 -#: object/Item.php:134 -msgid "Delete" -msgstr "Löschen" - -#: include/conversation.php:755 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/conversation.php:767 object/Item.php:355 -msgid "Categories:" -msgstr "Kategorien:" - -#: include/conversation.php:768 object/Item.php:356 -msgid "Filed under:" -msgstr "Abgelegt unter:" - -#: include/conversation.php:775 mod/content.php:497 mod/content.php:923 -#: object/Item.php:381 -#, php-format -msgid "%s from %s" -msgstr "%s von %s" - -#: include/conversation.php:791 mod/content.php:513 -msgid "View in context" -msgstr "Im Zusammenhang betrachten" - -#: include/conversation.php:793 include/conversation.php:1255 -#: mod/content.php:515 mod/content.php:948 mod/photos.php:1597 -#: 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/conversation.php:872 -msgid "remove" -msgstr "löschen" - -#: include/conversation.php:876 -msgid "Delete Selected Items" -msgstr "Lösche die markierten Beiträge" - -#: include/conversation.php:964 -msgid "Follow Thread" -msgstr "Folge der Unterhaltung" - -#: include/conversation.php:965 include/Contact.php:364 -msgid "View Status" -msgstr "Pinnwand anschauen" - -#: include/conversation.php:966 include/conversation.php:980 -#: include/Contact.php:310 include/Contact.php:323 include/Contact.php:365 -#: mod/dirfind.php:203 mod/directory.php:163 mod/match.php:71 -#: mod/allfriends.php:65 mod/suggest.php:82 -msgid "View Profile" -msgstr "Profil anschauen" - -#: include/conversation.php:967 include/Contact.php:366 -msgid "View Photos" -msgstr "Bilder anschauen" - -#: include/conversation.php:968 include/Contact.php:367 -msgid "Network Posts" -msgstr "Netzwerkbeiträge" - -#: include/conversation.php:969 include/Contact.php:368 -msgid "Edit Contact" -msgstr "Kontakt bearbeiten" - -#: include/conversation.php:970 include/Contact.php:370 -msgid "Send PM" -msgstr "Private Nachricht senden" - -#: include/conversation.php:974 include/Contact.php:371 -msgid "Poke" -msgstr "Anstupsen" - -#: include/conversation.php:1088 -#, php-format -msgid "%s likes this." -msgstr "%s mag das." - -#: include/conversation.php:1091 -#, php-format -msgid "%s doesn't like this." -msgstr "%s mag das nicht." - -#: include/conversation.php:1094 -#, php-format -msgid "%s attends." -msgstr "%s nimmt teil." - -#: include/conversation.php:1097 -#, php-format -msgid "%s doesn't attend." -msgstr "%s nimmt nicht teil." - -#: include/conversation.php:1100 -#, php-format -msgid "%s attends maybe." -msgstr "%s nimmt eventuell teil." - -#: include/conversation.php:1110 -msgid "and" -msgstr "und" - -#: include/conversation.php:1116 -#, php-format -msgid ", and %d other people" -msgstr " und %d andere" - -#: include/conversation.php:1125 -#, php-format -msgid "%2$d people like this" -msgstr "%2$d Personen mögen das" - -#: include/conversation.php:1126 -#, php-format -msgid "%s like this." -msgstr "%s mögen das." - -#: include/conversation.php:1129 -#, php-format -msgid "%2$d people don't like this" -msgstr "%2$d Personen mögen das nicht" - -#: include/conversation.php:1130 -#, php-format -msgid "%s don't like this." -msgstr "%s mögen dies nicht." - -#: include/conversation.php:1133 -#, php-format -msgid "%2$d people attend" -msgstr "%2$d Personen nehmen teil" - -#: include/conversation.php:1134 -#, php-format -msgid "%s attend." -msgstr "%s nehmen teil." - -#: include/conversation.php:1137 -#, php-format -msgid "%2$d people don't attend" -msgstr "%2$d Personen nehmen nicht teil" - -#: include/conversation.php:1138 -#, php-format -msgid "%s don't attend." -msgstr "%s nehmen nicht teil." - -#: include/conversation.php:1141 -#, php-format -msgid "%2$d people anttend maybe" -msgstr "%2$d Personen nehmen eventuell teil" - -#: include/conversation.php:1142 -#, php-format -msgid "%s anttend maybe." -msgstr "%s nehmen vielleicht teil." - -#: include/conversation.php:1181 include/conversation.php:1199 -msgid "Visible to everybody" -msgstr "Für jedermann sichtbar" - -#: include/conversation.php:1182 include/conversation.php:1200 -#: 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/conversation.php:1183 include/conversation.php:1201 -msgid "Please enter a video link/URL:" -msgstr "Bitte Link/URL zum Video einfügen:" - -#: include/conversation.php:1184 include/conversation.php:1202 -msgid "Please enter an audio link/URL:" -msgstr "Bitte Link/URL zum Audio einfügen:" - -#: include/conversation.php:1185 include/conversation.php:1203 -msgid "Tag term:" -msgstr "Tag:" - -#: include/conversation.php:1186 include/conversation.php:1204 -#: mod/filer.php:30 -msgid "Save to Folder:" -msgstr "In diesem Ordner speichern:" - -#: include/conversation.php:1187 include/conversation.php:1205 -msgid "Where are you right now?" -msgstr "Wo hältst Du Dich jetzt gerade auf?" - -#: include/conversation.php:1188 -msgid "Delete item(s)?" -msgstr "Einträge löschen?" - -#: include/conversation.php:1236 mod/photos.php:1596 -msgid "Share" -msgstr "Teilen" - -#: include/conversation.php:1237 mod/editpost.php:110 mod/wallmessage.php:154 -#: mod/message.php:354 mod/message.php:545 -msgid "Upload photo" -msgstr "Foto hochladen" - -#: include/conversation.php:1238 mod/editpost.php:111 -msgid "upload photo" -msgstr "Bild hochladen" - -#: include/conversation.php:1239 mod/editpost.php:112 -msgid "Attach file" -msgstr "Datei anhängen" - -#: include/conversation.php:1240 mod/editpost.php:113 -msgid "attach file" -msgstr "Datei anhängen" - -#: include/conversation.php:1241 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/conversation.php:1242 mod/editpost.php:115 -msgid "web link" -msgstr "Weblink" - -#: include/conversation.php:1243 mod/editpost.php:116 -msgid "Insert video link" -msgstr "Video-Adresse einfügen" - -#: include/conversation.php:1244 mod/editpost.php:117 -msgid "video link" -msgstr "Video-Link" - -#: include/conversation.php:1245 mod/editpost.php:118 -msgid "Insert audio link" -msgstr "Audio-Adresse einfügen" - -#: include/conversation.php:1246 mod/editpost.php:119 -msgid "audio link" -msgstr "Audio-Link" - -#: include/conversation.php:1247 mod/editpost.php:120 -msgid "Set your location" -msgstr "Deinen Standort festlegen" - -#: include/conversation.php:1248 mod/editpost.php:121 -msgid "set location" -msgstr "Ort setzen" - -#: include/conversation.php:1249 mod/editpost.php:122 -msgid "Clear browser location" -msgstr "Browser-Standort leeren" - -#: include/conversation.php:1250 mod/editpost.php:123 -msgid "clear location" -msgstr "Ort löschen" - -#: include/conversation.php:1252 mod/editpost.php:137 -msgid "Set title" -msgstr "Titel setzen" - -#: include/conversation.php:1254 mod/editpost.php:139 -msgid "Categories (comma-separated list)" -msgstr "Kategorien (kommasepariert)" - -#: include/conversation.php:1256 mod/editpost.php:125 -msgid "Permission settings" -msgstr "Berechtigungseinstellungen" - -#: include/conversation.php:1257 mod/editpost.php:154 -msgid "permissions" -msgstr "Zugriffsrechte" - -#: include/conversation.php:1265 mod/editpost.php:134 -msgid "Public post" -msgstr "Öffentlicher Beitrag" - -#: include/conversation.php:1270 mod/events.php:505 mod/content.php:737 -#: mod/photos.php:1618 mod/photos.php:1666 mod/photos.php:1754 -#: mod/editpost.php:145 object/Item.php:729 -msgid "Preview" -msgstr "Vorschau" - -#: include/conversation.php:1280 -msgid "Post to Groups" -msgstr "Poste an Gruppe" - -#: include/conversation.php:1281 -msgid "Post to Contacts" -msgstr "Poste an Kontakte" - -#: include/conversation.php:1282 -msgid "Private post" -msgstr "Privater Beitrag" - -#: include/conversation.php:1287 include/identity.php:250 mod/editpost.php:152 -msgid "Message" -msgstr "Nachricht" - -#: include/conversation.php:1288 mod/editpost.php:153 -msgid "Browser" -msgstr "Browser" - -#: include/conversation.php:1443 -msgid "View all" -msgstr "Zeige alle" - -#: include/conversation.php:1465 -msgid "Like" -msgid_plural "Likes" -msgstr[0] "mag ich" -msgstr[1] "Mag ich" - -#: include/conversation.php:1468 -msgid "Dislike" -msgid_plural "Dislikes" -msgstr[0] "mag ich nicht" -msgstr[1] "Mag ich nicht" - -#: include/conversation.php:1474 -msgid "Not Attending" -msgid_plural "Not Attending" -msgstr[0] "Nicht teilnehmend " -msgstr[1] "Nicht teilnehmend" - #: include/identity.php:42 msgid "Requested account is not available." msgstr "Das angefragte Profil ist nicht vorhanden." @@ -1885,6 +1368,10 @@ msgstr "Profil bearbeiten" msgid "Atom feed" msgstr "Atom-Feed" +#: include/identity.php:250 include/conversation.php:1287 mod/editpost.php:152 +msgid "Message" +msgstr "Nachricht" + #: include/identity.php:276 include/nav.php:191 msgid "Profiles" msgstr "Profile" @@ -1893,36 +1380,36 @@ msgstr "Profile" msgid "Manage/edit profiles" msgstr "Profile verwalten/editieren" -#: include/identity.php:281 include/identity.php:307 mod/profiles.php:787 +#: include/identity.php:281 include/identity.php:307 mod/profiles.php:788 msgid "Change profile photo" msgstr "Profilbild ändern" -#: include/identity.php:282 mod/profiles.php:788 +#: include/identity.php:282 mod/profiles.php:789 msgid "Create New Profile" msgstr "Neues Profil anlegen" -#: include/identity.php:292 mod/profiles.php:777 +#: include/identity.php:292 mod/profiles.php:778 msgid "Profile Image" msgstr "Profilbild" -#: include/identity.php:295 mod/profiles.php:779 +#: include/identity.php:295 mod/profiles.php:780 msgid "visible to everybody" msgstr "sichtbar für jeden" -#: include/identity.php:296 mod/profiles.php:684 mod/profiles.php:780 +#: include/identity.php:296 mod/profiles.php:685 mod/profiles.php:781 msgid "Edit visibility" msgstr "Sichtbarkeit bearbeiten" #: include/identity.php:319 mod/dirfind.php:223 mod/directory.php:174 #: mod/match.php:84 mod/viewcontacts.php:105 mod/allfriends.php:79 -#: mod/cal.php:44 mod/videos.php:37 mod/photos.php:41 mod/contacts.php:51 -#: mod/contacts.php:948 mod/suggest.php:98 mod/hovercard.php:80 -#: mod/common.php:123 mod/network.php:517 +#: mod/cal.php:44 mod/videos.php:37 mod/suggest.php:98 mod/hovercard.php:80 +#: mod/common.php:123 mod/network.php:517 mod/contacts.php:51 +#: mod/contacts.php:626 mod/contacts.php:953 mod/photos.php:42 msgid "Forum" msgstr "Forum" -#: include/identity.php:331 include/identity.php:614 mod/notifications.php:252 -#: mod/directory.php:147 +#: include/identity.php:331 include/identity.php:614 mod/directory.php:147 +#: mod/notifications.php:214 msgid "Gender:" msgstr "Geschlecht:" @@ -1934,14 +1421,14 @@ msgstr "Status:" msgid "Homepage:" msgstr "Homepage:" -#: include/identity.php:338 include/identity.php:655 mod/notifications.php:248 -#: mod/directory.php:153 mod/contacts.php:626 +#: include/identity.php:338 include/identity.php:655 mod/directory.php:153 +#: mod/contacts.php:630 mod/notifications.php:210 msgid "About:" msgstr "Über:" -#: include/identity.php:420 mod/contacts.php:50 +#: include/identity.php:420 mod/contacts.php:50 mod/notifications.php:222 msgid "Network:" -msgstr "Netzwerk" +msgstr "Netzwerk:" #: include/identity.php:449 include/identity.php:533 msgid "g A l F d" @@ -1976,8 +1463,8 @@ msgid "Events this week:" msgstr "Veranstaltungen diese Woche" #: include/identity.php:603 include/identity.php:689 include/identity.php:720 -#: include/nav.php:79 mod/profperm.php:104 mod/contacts.php:834 -#: mod/newmember.php:32 view/theme/frio/theme.php:247 +#: include/nav.php:79 mod/profperm.php:104 mod/newmember.php:32 +#: mod/contacts.php:637 mod/contacts.php:839 view/theme/frio/theme.php:247 #: view/theme/diabook/theme.php:124 msgid "Profile" msgstr "Profil" @@ -2003,20 +1490,20 @@ msgstr "Alter:" msgid "for %1$d %2$s" msgstr "für %1$d %2$s" -#: include/identity.php:643 mod/profiles.php:703 +#: include/identity.php:643 mod/profiles.php:704 msgid "Sexual Preference:" msgstr "Sexuelle Vorlieben:" -#: include/identity.php:647 mod/profiles.php:729 +#: include/identity.php:647 mod/profiles.php:730 msgid "Hometown:" msgstr "Heimatort:" -#: include/identity.php:649 mod/notifications.php:250 mod/contacts.php:628 -#: mod/follow.php:134 +#: include/identity.php:649 mod/follow.php:134 mod/contacts.php:632 +#: mod/notifications.php:212 msgid "Tags:" msgstr "Tags" -#: include/identity.php:651 mod/profiles.php:730 +#: include/identity.php:651 mod/profiles.php:731 msgid "Political Views:" msgstr "Politische Ansichten:" @@ -2028,11 +1515,11 @@ msgstr "Religion:" msgid "Hobbies/Interests:" msgstr "Hobbies/Interessen:" -#: include/identity.php:659 mod/profiles.php:734 +#: include/identity.php:659 mod/profiles.php:735 msgid "Likes:" msgstr "Likes:" -#: include/identity.php:661 mod/profiles.php:735 +#: include/identity.php:661 mod/profiles.php:736 msgid "Dislikes:" msgstr "Dislikes:" @@ -2077,20 +1564,20 @@ msgid "Basic" msgstr "Allgemein" #: include/identity.php:691 mod/events.php:509 mod/admin.php:928 -#: mod/contacts.php:863 +#: mod/contacts.php:868 msgid "Advanced" msgstr "Erweitert" -#: include/identity.php:712 include/nav.php:78 mod/contacts.php:631 -#: mod/contacts.php:826 view/theme/frio/theme.php:246 +#: include/identity.php:712 include/nav.php:78 mod/contacts.php:635 +#: mod/contacts.php:831 view/theme/frio/theme.php:246 msgid "Status" msgstr "Status" -#: include/identity.php:715 mod/contacts.php:829 mod/follow.php:143 +#: include/identity.php:715 mod/follow.php:143 mod/contacts.php:834 msgid "Status Messages and Posts" msgstr "Statusnachrichten und Beiträge" -#: include/identity.php:723 mod/contacts.php:837 +#: include/identity.php:723 mod/contacts.php:842 msgid "Profile Details" msgstr "Profildetails" @@ -2099,7 +1586,7 @@ msgstr "Profildetails" msgid "Photos" msgstr "Bilder" -#: include/identity.php:731 mod/photos.php:99 +#: include/identity.php:731 mod/photos.php:100 msgid "Photo Albums" msgstr "Fotoalben" @@ -2128,11 +1615,7 @@ msgstr "Persönliche Notizen" msgid "Only You Can See This" msgstr "Nur Du kannst das sehen" -#: include/Scrape.php:656 -msgid " on Last.fm" -msgstr " bei Last.fm" - -#: include/follow.php:77 mod/dfrn_request.php:506 +#: include/follow.php:77 mod/dfrn_request.php:507 msgid "Disallowed profile URL." msgstr "Nicht erlaubte Profil-URL." @@ -2191,14 +1674,6 @@ msgstr "Konnte die Kontaktinformationen nicht empfangen." msgid "following" msgstr "folgen" -#: include/Contact.php:119 -msgid "stopped following" -msgstr "wird nicht mehr gefolgt" - -#: include/Contact.php:369 -msgid "Drop Contact" -msgstr "Kontakt löschen" - #: include/oembed.php:229 msgid "Embedded content" msgstr "Eingebetteter Inhalt" @@ -2224,149 +1699,6 @@ msgstr "$1 hat geschrieben:" msgid "Encrypted content" msgstr "Verschlüsselter Inhalt" -#: include/contact_selectors.php:32 -msgid "Unknown | Not categorised" -msgstr "Unbekannt | Nicht kategorisiert" - -#: include/contact_selectors.php:33 -msgid "Block immediately" -msgstr "Sofort blockieren" - -#: include/contact_selectors.php:34 -msgid "Shady, spammer, self-marketer" -msgstr "Zwielichtig, Spammer, Selbstdarsteller" - -#: include/contact_selectors.php:35 -msgid "Known to me, but no opinion" -msgstr "Ist mir bekannt, hab aber keine Meinung" - -#: include/contact_selectors.php:36 -msgid "OK, probably harmless" -msgstr "OK, wahrscheinlich harmlos" - -#: include/contact_selectors.php:37 -msgid "Reputable, has my trust" -msgstr "Seriös, hat mein Vertrauen" - -#: include/contact_selectors.php:56 mod/admin.php:859 -msgid "Frequently" -msgstr "immer wieder" - -#: include/contact_selectors.php:57 mod/admin.php:860 -msgid "Hourly" -msgstr "Stündlich" - -#: include/contact_selectors.php:58 mod/admin.php:861 -msgid "Twice daily" -msgstr "Zweimal täglich" - -#: include/contact_selectors.php:59 mod/admin.php:862 -msgid "Daily" -msgstr "Täglich" - -#: include/contact_selectors.php:60 -msgid "Weekly" -msgstr "Wöchentlich" - -#: include/contact_selectors.php:61 -msgid "Monthly" -msgstr "Monatlich" - -#: include/contact_selectors.php:76 mod/dfrn_request.php:866 -msgid "Friendica" -msgstr "Friendica" - -#: include/contact_selectors.php:77 -msgid "OStatus" -msgstr "OStatus" - -#: include/contact_selectors.php:78 -msgid "RSS/Atom" -msgstr "RSS/Atom" - -#: include/contact_selectors.php:79 include/contact_selectors.php:86 -#: mod/admin.php:1371 mod/admin.php:1384 mod/admin.php:1396 mod/admin.php:1414 -msgid "Email" -msgstr "E-Mail" - -#: include/contact_selectors.php:80 mod/dfrn_request.php:868 -#: mod/settings.php:827 -msgid "Diaspora" -msgstr "Diaspora" - -#: include/contact_selectors.php:81 -msgid "Facebook" -msgstr "Facebook" - -#: include/contact_selectors.php:82 -msgid "Zot!" -msgstr "Zott" - -#: include/contact_selectors.php:83 -msgid "LinkedIn" -msgstr "LinkedIn" - -#: include/contact_selectors.php:84 -msgid "XMPP/IM" -msgstr "XMPP/Chat" - -#: include/contact_selectors.php:85 -msgid "MySpace" -msgstr "MySpace" - -#: include/contact_selectors.php:87 -msgid "Google+" -msgstr "Google+" - -#: include/contact_selectors.php:88 -msgid "pump.io" -msgstr "pump.io" - -#: include/contact_selectors.php:89 -msgid "Twitter" -msgstr "Twitter" - -#: include/contact_selectors.php:90 -msgid "Diaspora Connector" -msgstr "Diaspora" - -#: include/contact_selectors.php:91 -msgid "GNU Social" -msgstr "GNU Social" - -#: include/contact_selectors.php:92 -msgid "App.net" -msgstr "App.net" - -#: include/contact_selectors.php:103 -msgid "Hubzilla/Redmatrix" -msgstr "Hubzilla/Redmatrix" - -#: 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/dbstructure.php:31 -#, php-format -msgid "" -"The error message is\n" -"[pre]%s[/pre]" -msgstr "Die Fehlermeldung lautet\n[pre]%s[/pre]" - -#: include/dbstructure.php:153 -msgid "Errors encountered creating database tables." -msgstr "Fehler aufgetreten während der Erzeugung der Datenbanktabellen." - -#: include/dbstructure.php:230 -msgid "Errors encountered performing database changes." -msgstr "Es sind Fehler beim Bearbeiten der Datenbank aufgetreten." - #: include/auth.php:45 msgid "Logged out." msgstr "Abgemeldet." @@ -2385,10 +1717,6 @@ msgstr "Beim Versuch Dich mit der von Dir angegebenen OpenID anzumelden trat ein msgid "The error message was:" msgstr "Die Fehlermeldung lautete:" -#: include/network.php:913 -msgid "view full size" -msgstr "Volle Größe anzeigen" - #: include/group.php:25 msgid "" "A deleted group with this name was revived. Existing item permissions " @@ -2521,11 +1849,11 @@ 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:78 mod/photos.php:192 mod/photos.php:769 mod/photos.php:1232 -#: mod/photos.php:1255 mod/photos.php:1849 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 -#: view/theme/diabook/theme.php:500 +#: 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:79 mod/photos.php:193 +#: mod/photos.php:770 mod/photos.php:1233 mod/photos.php:1256 +#: mod/photos.php:1850 view/theme/diabook/theme.php:500 msgid "Profile Photos" msgstr "Profilbilder" @@ -2573,21 +1901,6 @@ msgstr "\nDie Anmelde-Details sind die folgenden:\n\tAdresse der Seite:\t%3$s\n\ msgid "Registration details for %s" msgstr "Details der Registration von %s" -#: include/api.php:905 -#, 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:925 -#, 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:946 -#, 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:63 msgid "General Features" msgstr "Allgemeine Features" @@ -2799,6 +2112,10 @@ msgstr "Keine Neuigkeiten" msgid "Clear notifications" msgstr "Bereinige Benachrichtigungen" +#: include/nav.php:75 view/theme/frio/theme.php:243 boot.php:1620 +msgid "Logout" +msgstr "Abmelden" + #: include/nav.php:75 view/theme/frio/theme.php:243 msgid "End this session" msgstr "Diese Sitzung beenden" @@ -2835,11 +2152,15 @@ msgstr "Persönliche Notizen" msgid "Your personal notes" msgstr "Deine persönlichen Notizen" +#: include/nav.php:94 mod/bookmarklet.php:12 boot.php:1621 +msgid "Login" +msgstr "Anmeldung" + #: include/nav.php:94 msgid "Sign in" msgstr "Anmelden" -#: include/nav.php:107 include/nav.php:163 mod/notifications.php:99 +#: include/nav.php:107 include/nav.php:163 mod/notifications.php:545 #: view/theme/diabook/theme.php:123 msgid "Home" msgstr "Pinnwand" @@ -2848,6 +2169,10 @@ msgstr "Pinnwand" msgid "Home Page" msgstr "Homepage" +#: include/nav.php:111 mod/register.php:280 boot.php:1596 +msgid "Register" +msgstr "Registrieren" + #: include/nav.php:111 msgid "Create an account" msgstr "Nutzerkonto erstellen" @@ -2901,7 +2226,7 @@ msgstr "Information" msgid "Information about this friendica instance" msgstr "Informationen zu dieser Friendica Instanz" -#: include/nav.php:160 mod/notifications.php:87 mod/admin.php:402 +#: include/nav.php:160 mod/admin.php:402 mod/notifications.php:533 #: view/theme/frio/theme.php:253 msgid "Network" msgstr "Netzwerk" @@ -2918,7 +2243,7 @@ msgstr "Netzwerk zurücksetzen" msgid "Load Network page with no filters" msgstr "Netzwerk-Seite ohne Filter laden" -#: include/nav.php:168 mod/notifications.php:105 +#: include/nav.php:168 mod/notifications.php:551 msgid "Introductions" msgstr "Kontaktanfragen" @@ -2926,7 +2251,7 @@ msgstr "Kontaktanfragen" msgid "Friend Requests" msgstr "Kontaktanfragen" -#: include/nav.php:171 mod/notifications.php:271 +#: include/nav.php:171 mod/notifications.php:87 msgid "Notifications" msgstr "Benachrichtigungen" @@ -3012,6 +2337,25 @@ msgstr "Navigation" msgid "Site map" msgstr "Sitemap" +#: include/like.php:163 include/conversation.php:125 +#: include/conversation.php:134 include/conversation.php:261 +#: include/conversation.php:270 include/diaspora.php:1402 mod/tagger.php:62 +#: mod/subthread.php:87 view/theme/diabook/theme.php:466 +#: view/theme/diabook/theme.php:475 +msgid "status" +msgstr "Status" + +#: include/like.php:182 include/conversation.php:141 include/diaspora.php:1398 +#: view/theme/diabook/theme.php:480 +#, php-format +msgid "%1$s likes %2$s's %3$s" +msgstr "%1$s mag %2$ss %3$s" + +#: 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/like.php:186 #, php-format msgid "%1$s is attending %2$s's %3$s" @@ -3027,6 +2371,10 @@ msgstr "%1$s nimmt nicht an %2$ss %3$s teil." msgid "%1$s may attend %2$s's %3$s" msgstr "%1$s nimmt eventuell an %2$ss %3$s teil." +#: include/message.php:15 include/message.php:173 +msgid "[no subject]" +msgstr "[kein Betreff]" + #: include/acl_selectors.php:327 msgid "Post to Email" msgstr "An E-Mail senden" @@ -3062,7 +2410,7 @@ msgstr "Cc: E-Mail-Addressen" msgid "Example: bob@example.com, mary@example.com" msgstr "Z.B.: bob@example.com, mary@example.com" -#: include/acl_selectors.php:349 mod/photos.php:1177 mod/photos.php:1562 +#: include/acl_selectors.php:349 mod/photos.php:1178 mod/photos.php:1563 msgid "Permissions" msgstr "Berechtigungen" @@ -3070,30 +2418,595 @@ msgstr "Berechtigungen" msgid "Close" msgstr "Schließen" -#: include/message.php:15 include/message.php:173 -msgid "[no subject]" -msgstr "[kein Betreff]" +#: include/contact_selectors.php:32 +msgid "Unknown | Not categorised" +msgstr "Unbekannt | Nicht kategorisiert" -#: index.php:240 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/contact_selectors.php:33 +msgid "Block immediately" +msgstr "Sofort blockieren" -#: index.php:284 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/contact_selectors.php:34 +msgid "Shady, spammer, self-marketer" +msgstr "Zwielichtig, Spammer, Selbstdarsteller" -#: index.php:287 mod/help.php:56 -msgid "Page not found." -msgstr "Seite nicht gefunden." +#: include/contact_selectors.php:35 +msgid "Known to me, but no opinion" +msgstr "Ist mir bekannt, hab aber keine Meinung" -#: index.php:396 mod/profperm.php:19 mod/group.php:72 -msgid "Permission denied" -msgstr "Zugriff verweigert" +#: include/contact_selectors.php:36 +msgid "OK, probably harmless" +msgstr "OK, wahrscheinlich harmlos" -#: index.php:447 -msgid "toggle mobile" -msgstr "auf/von Mobile Ansicht wechseln" +#: include/contact_selectors.php:37 +msgid "Reputable, has my trust" +msgstr "Seriös, hat mein Vertrauen" + +#: include/contact_selectors.php:56 mod/admin.php:859 +msgid "Frequently" +msgstr "immer wieder" + +#: include/contact_selectors.php:57 mod/admin.php:860 +msgid "Hourly" +msgstr "Stündlich" + +#: include/contact_selectors.php:58 mod/admin.php:861 +msgid "Twice daily" +msgstr "Zweimal täglich" + +#: include/contact_selectors.php:59 mod/admin.php:862 +msgid "Daily" +msgstr "Täglich" + +#: include/contact_selectors.php:60 +msgid "Weekly" +msgstr "Wöchentlich" + +#: include/contact_selectors.php:61 +msgid "Monthly" +msgstr "Monatlich" + +#: include/contact_selectors.php:76 mod/dfrn_request.php:867 +msgid "Friendica" +msgstr "Friendica" + +#: include/contact_selectors.php:77 +msgid "OStatus" +msgstr "OStatus" + +#: include/contact_selectors.php:78 +msgid "RSS/Atom" +msgstr "RSS/Atom" + +#: include/contact_selectors.php:79 include/contact_selectors.php:86 +#: mod/admin.php:1371 mod/admin.php:1384 mod/admin.php:1396 mod/admin.php:1414 +msgid "Email" +msgstr "E-Mail" + +#: include/contact_selectors.php:80 mod/settings.php:827 +#: mod/dfrn_request.php:869 +msgid "Diaspora" +msgstr "Diaspora" + +#: include/contact_selectors.php:81 +msgid "Facebook" +msgstr "Facebook" + +#: include/contact_selectors.php:82 +msgid "Zot!" +msgstr "Zott" + +#: include/contact_selectors.php:83 +msgid "LinkedIn" +msgstr "LinkedIn" + +#: include/contact_selectors.php:84 +msgid "XMPP/IM" +msgstr "XMPP/Chat" + +#: include/contact_selectors.php:85 +msgid "MySpace" +msgstr "MySpace" + +#: include/contact_selectors.php:87 +msgid "Google+" +msgstr "Google+" + +#: include/contact_selectors.php:88 +msgid "pump.io" +msgstr "pump.io" + +#: include/contact_selectors.php:89 +msgid "Twitter" +msgstr "Twitter" + +#: include/contact_selectors.php:90 +msgid "Diaspora Connector" +msgstr "Diaspora" + +#: include/contact_selectors.php:91 +msgid "GNU Social" +msgstr "GNU Social" + +#: include/contact_selectors.php:92 +msgid "App.net" +msgstr "App.net" + +#: include/contact_selectors.php:103 +msgid "Hubzilla/Redmatrix" +msgstr "Hubzilla/Redmatrix" + +#: 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/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/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/conversation.php:185 mod/dfrn_confirm.php:473 +#, php-format +msgid "%1$s is now friends with %2$s" +msgstr "%1$s ist nun mit %2$s befreundet" + +#: include/conversation.php:219 +#, php-format +msgid "%1$s poked %2$s" +msgstr "%1$s stupste %2$s" + +#: 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/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/conversation.php:303 +msgid "post/item" +msgstr "Nachricht/Beitrag" + +#: 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/conversation.php:587 mod/photos.php:1635 mod/profiles.php:345 +#: mod/content.php:372 +msgid "Likes" +msgstr "Likes" + +#: include/conversation.php:587 mod/photos.php:1635 mod/profiles.php:349 +#: mod/content.php:372 +msgid "Dislikes" +msgstr "Dislikes" + +#: include/conversation.php:588 include/conversation.php:1471 +#: mod/photos.php:1636 mod/content.php:373 +msgid "Attending" +msgid_plural "Attending" +msgstr[0] "Teilnehmend" +msgstr[1] "Teilnehmend" + +#: include/conversation.php:588 mod/photos.php:1636 mod/content.php:373 +msgid "Not attending" +msgstr "Nicht teilnehmend" + +#: include/conversation.php:588 mod/photos.php:1636 mod/content.php:373 +msgid "Might attend" +msgstr "Eventuell teilnehmend" + +#: include/conversation.php:710 mod/photos.php:1710 mod/content.php:453 +#: mod/content.php:758 object/Item.php:133 +msgid "Select" +msgstr "Auswählen" + +#: include/conversation.php:711 mod/admin.php:1388 mod/group.php:171 +#: mod/settings.php:726 mod/contacts.php:806 mod/contacts.php:1021 +#: mod/photos.php:1711 mod/content.php:454 mod/content.php:759 +#: object/Item.php:134 +msgid "Delete" +msgstr "Löschen" + +#: include/conversation.php:755 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/conversation.php:767 object/Item.php:355 +msgid "Categories:" +msgstr "Kategorien:" + +#: include/conversation.php:768 object/Item.php:356 +msgid "Filed under:" +msgstr "Abgelegt unter:" + +#: include/conversation.php:775 mod/content.php:497 mod/content.php:923 +#: object/Item.php:381 +#, php-format +msgid "%s from %s" +msgstr "%s von %s" + +#: include/conversation.php:791 mod/content.php:513 +msgid "View in context" +msgstr "Im Zusammenhang betrachten" + +#: include/conversation.php:793 include/conversation.php:1255 +#: mod/editpost.php:124 mod/wallmessage.php:156 mod/message.php:356 +#: mod/message.php:548 mod/photos.php:1598 mod/content.php:515 +#: mod/content.php:948 object/Item.php:406 +msgid "Please wait" +msgstr "Bitte warten" + +#: include/conversation.php:872 +msgid "remove" +msgstr "löschen" + +#: include/conversation.php:876 +msgid "Delete Selected Items" +msgstr "Lösche die markierten Beiträge" + +#: include/conversation.php:964 +msgid "Follow Thread" +msgstr "Folge der Unterhaltung" + +#: include/conversation.php:965 include/Contact.php:364 +msgid "View Status" +msgstr "Pinnwand anschauen" + +#: include/conversation.php:966 include/conversation.php:980 +#: include/Contact.php:310 include/Contact.php:323 include/Contact.php:365 +#: mod/dirfind.php:203 mod/directory.php:163 mod/match.php:71 +#: mod/allfriends.php:65 mod/suggest.php:82 +msgid "View Profile" +msgstr "Profil anschauen" + +#: include/conversation.php:967 include/Contact.php:366 +msgid "View Photos" +msgstr "Bilder anschauen" + +#: include/conversation.php:968 include/Contact.php:367 +msgid "Network Posts" +msgstr "Netzwerkbeiträge" + +#: include/conversation.php:969 include/Contact.php:368 +msgid "Edit Contact" +msgstr "Kontakt bearbeiten" + +#: include/conversation.php:970 include/Contact.php:370 +msgid "Send PM" +msgstr "Private Nachricht senden" + +#: include/conversation.php:974 include/Contact.php:371 +msgid "Poke" +msgstr "Anstupsen" + +#: include/conversation.php:1088 +#, php-format +msgid "%s likes this." +msgstr "%s mag das." + +#: include/conversation.php:1091 +#, php-format +msgid "%s doesn't like this." +msgstr "%s mag das nicht." + +#: include/conversation.php:1094 +#, php-format +msgid "%s attends." +msgstr "%s nimmt teil." + +#: include/conversation.php:1097 +#, php-format +msgid "%s doesn't attend." +msgstr "%s nimmt nicht teil." + +#: include/conversation.php:1100 +#, php-format +msgid "%s attends maybe." +msgstr "%s nimmt eventuell teil." + +#: include/conversation.php:1110 +msgid "and" +msgstr "und" + +#: include/conversation.php:1116 +#, php-format +msgid ", and %d other people" +msgstr " und %d andere" + +#: include/conversation.php:1125 +#, php-format +msgid "%2$d people like this" +msgstr "%2$d Personen mögen das" + +#: include/conversation.php:1126 +#, php-format +msgid "%s like this." +msgstr "%s mögen das." + +#: include/conversation.php:1129 +#, php-format +msgid "%2$d people don't like this" +msgstr "%2$d Personen mögen das nicht" + +#: include/conversation.php:1130 +#, php-format +msgid "%s don't like this." +msgstr "%s mögen dies nicht." + +#: include/conversation.php:1133 +#, php-format +msgid "%2$d people attend" +msgstr "%2$d Personen nehmen teil" + +#: include/conversation.php:1134 +#, php-format +msgid "%s attend." +msgstr "%s nehmen teil." + +#: include/conversation.php:1137 +#, php-format +msgid "%2$d people don't attend" +msgstr "%2$d Personen nehmen nicht teil" + +#: include/conversation.php:1138 +#, php-format +msgid "%s don't attend." +msgstr "%s nehmen nicht teil." + +#: include/conversation.php:1141 +#, php-format +msgid "%2$d people anttend maybe" +msgstr "%2$d Personen nehmen eventuell teil" + +#: include/conversation.php:1142 +#, php-format +msgid "%s anttend maybe." +msgstr "%s nehmen vielleicht teil." + +#: include/conversation.php:1181 include/conversation.php:1199 +msgid "Visible to everybody" +msgstr "Für jedermann sichtbar" + +#: include/conversation.php:1182 include/conversation.php:1200 +#: 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/conversation.php:1183 include/conversation.php:1201 +msgid "Please enter a video link/URL:" +msgstr "Bitte Link/URL zum Video einfügen:" + +#: include/conversation.php:1184 include/conversation.php:1202 +msgid "Please enter an audio link/URL:" +msgstr "Bitte Link/URL zum Audio einfügen:" + +#: include/conversation.php:1185 include/conversation.php:1203 +msgid "Tag term:" +msgstr "Tag:" + +#: include/conversation.php:1186 include/conversation.php:1204 +#: mod/filer.php:30 +msgid "Save to Folder:" +msgstr "In diesem Ordner speichern:" + +#: include/conversation.php:1187 include/conversation.php:1205 +msgid "Where are you right now?" +msgstr "Wo hältst Du Dich jetzt gerade auf?" + +#: include/conversation.php:1188 +msgid "Delete item(s)?" +msgstr "Einträge löschen?" + +#: include/conversation.php:1236 mod/photos.php:1597 +msgid "Share" +msgstr "Teilen" + +#: include/conversation.php:1237 mod/editpost.php:110 mod/wallmessage.php:154 +#: mod/message.php:354 mod/message.php:545 +msgid "Upload photo" +msgstr "Foto hochladen" + +#: include/conversation.php:1238 mod/editpost.php:111 +msgid "upload photo" +msgstr "Bild hochladen" + +#: include/conversation.php:1239 mod/editpost.php:112 +msgid "Attach file" +msgstr "Datei anhängen" + +#: include/conversation.php:1240 mod/editpost.php:113 +msgid "attach file" +msgstr "Datei anhängen" + +#: include/conversation.php:1241 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/conversation.php:1242 mod/editpost.php:115 +msgid "web link" +msgstr "Weblink" + +#: include/conversation.php:1243 mod/editpost.php:116 +msgid "Insert video link" +msgstr "Video-Adresse einfügen" + +#: include/conversation.php:1244 mod/editpost.php:117 +msgid "video link" +msgstr "Video-Link" + +#: include/conversation.php:1245 mod/editpost.php:118 +msgid "Insert audio link" +msgstr "Audio-Adresse einfügen" + +#: include/conversation.php:1246 mod/editpost.php:119 +msgid "audio link" +msgstr "Audio-Link" + +#: include/conversation.php:1247 mod/editpost.php:120 +msgid "Set your location" +msgstr "Deinen Standort festlegen" + +#: include/conversation.php:1248 mod/editpost.php:121 +msgid "set location" +msgstr "Ort setzen" + +#: include/conversation.php:1249 mod/editpost.php:122 +msgid "Clear browser location" +msgstr "Browser-Standort leeren" + +#: include/conversation.php:1250 mod/editpost.php:123 +msgid "clear location" +msgstr "Ort löschen" + +#: include/conversation.php:1252 mod/editpost.php:137 +msgid "Set title" +msgstr "Titel setzen" + +#: include/conversation.php:1254 mod/editpost.php:139 +msgid "Categories (comma-separated list)" +msgstr "Kategorien (kommasepariert)" + +#: include/conversation.php:1256 mod/editpost.php:125 +msgid "Permission settings" +msgstr "Berechtigungseinstellungen" + +#: include/conversation.php:1257 mod/editpost.php:154 +msgid "permissions" +msgstr "Zugriffsrechte" + +#: include/conversation.php:1265 mod/editpost.php:134 +msgid "Public post" +msgstr "Öffentlicher Beitrag" + +#: include/conversation.php:1270 mod/events.php:505 mod/editpost.php:145 +#: mod/photos.php:1619 mod/photos.php:1667 mod/photos.php:1755 +#: mod/content.php:737 object/Item.php:729 +msgid "Preview" +msgstr "Vorschau" + +#: include/conversation.php:1280 +msgid "Post to Groups" +msgstr "Poste an Gruppe" + +#: include/conversation.php:1281 +msgid "Post to Contacts" +msgstr "Poste an Kontakte" + +#: include/conversation.php:1282 +msgid "Private post" +msgstr "Privater Beitrag" + +#: include/conversation.php:1288 mod/editpost.php:153 +msgid "Browser" +msgstr "Browser" + +#: include/conversation.php:1443 +msgid "View all" +msgstr "Zeige alle" + +#: include/conversation.php:1465 +msgid "Like" +msgid_plural "Likes" +msgstr[0] "mag ich" +msgstr[1] "Mag ich" + +#: include/conversation.php:1468 +msgid "Dislike" +msgid_plural "Dislikes" +msgstr[0] "mag ich nicht" +msgstr[1] "Mag ich nicht" + +#: include/conversation.php:1474 +msgid "Not Attending" +msgid_plural "Not Attending" +msgstr[0] "Nicht teilnehmend " +msgstr[1] "Nicht teilnehmend" + +#: include/diaspora.php:1954 +msgid "Sharing notification from Diaspora network" +msgstr "Freigabe-Benachrichtigung von Diaspora" + +#: include/diaspora.php:2854 +msgid "Attachments:" +msgstr "Anhänge:" + +#: include/network.php:595 +msgid "view full size" +msgstr "Volle Größe anzeigen" + +#: include/plugin.php:522 include/plugin.php:524 +msgid "Click here to upgrade." +msgstr "Zum Upgraden hier klicken." + +#: include/plugin.php:530 +msgid "This action exceeds the limits set by your subscription plan." +msgstr "Diese Aktion überschreitet die Obergrenze Deines Abonnements." + +#: include/plugin.php:535 +msgid "This action is not available under your subscription plan." +msgstr "Diese Aktion ist in Deinem Abonnement nicht verfügbar." + +#: include/Contact.php:119 +msgid "stopped following" +msgstr "wird nicht mehr gefolgt" + +#: include/Contact.php:369 +msgid "Drop Contact" +msgstr "Kontakt löschen" + +#: include/api.php:974 +#, 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:994 +#, 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:1015 +#, 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/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/dbstructure.php:31 +#, php-format +msgid "" +"The error message is\n" +"[pre]%s[/pre]" +msgstr "Die Fehlermeldung lautet\n[pre]%s[/pre]" + +#: include/dbstructure.php:153 +msgid "Errors encountered creating database tables." +msgstr "Fehler aufgetreten während der Erzeugung der Datenbanktabellen." + +#: include/dbstructure.php:230 +msgid "Errors encountered performing database changes." +msgstr "Es sind Fehler beim Bearbeiten der Datenbank aufgetreten." #: mod/regmod.php:55 msgid "Account approved." @@ -3141,11 +3054,11 @@ msgstr "Zugriff verweigert." msgid "Welcome to %s" msgstr "Willkommen zu %s" -#: mod/notify.php:60 mod/notifications.php:387 +#: mod/notify.php:60 mod/notifications.php:338 msgid "No more system notifications." msgstr "Keine weiteren Systembenachrichtigungen." -#: mod/notify.php:64 mod/notifications.php:391 +#: mod/notify.php:64 mod/notifications.php:318 msgid "System Notifications" msgstr "Systembenachrichtigungen" @@ -3154,8 +3067,8 @@ msgid "Remove term" msgstr "Begriff entfernen" #: mod/search.php:93 mod/search.php:99 mod/directory.php:37 -#: mod/viewcontacts.php:35 mod/videos.php:197 mod/photos.php:963 -#: mod/display.php:199 mod/community.php:22 mod/dfrn_request.php:789 +#: mod/viewcontacts.php:35 mod/videos.php:197 mod/display.php:199 +#: mod/community.php:22 mod/dfrn_request.php:790 mod/photos.php:964 msgid "Public access denied." msgstr "Öffentlicher Zugriff verweigert." @@ -3180,263 +3093,11 @@ msgstr "Keine Ergebnisse." msgid "Items tagged with: %s" msgstr "Beiträge die mit %s getaggt sind" -#: mod/search.php:232 mod/contacts.php:790 mod/network.php:146 +#: mod/search.php:232 mod/network.php:146 mod/contacts.php:795 #, php-format msgid "Results for: %s" msgstr "Ergebnisse für: %s" -#: mod/notifications.php:29 -msgid "Invalid request identifier." -msgstr "Invalid request identifier." - -#: mod/notifications.php:38 mod/notifications.php:182 -#: mod/notifications.php:262 -msgid "Discard" -msgstr "Verwerfen" - -#: mod/notifications.php:54 mod/notifications.php:181 -#: mod/notifications.php:261 mod/contacts.php:604 mod/contacts.php:799 -#: mod/contacts.php:1000 -msgid "Ignore" -msgstr "Ignorieren" - -#: mod/notifications.php:81 -msgid "System" -msgstr "System" - -#: mod/notifications.php:93 mod/profiles.php:696 mod/network.php:844 -msgid "Personal" -msgstr "Persönlich" - -#: mod/notifications.php:130 -msgid "Show Ignored Requests" -msgstr "Zeige ignorierte Anfragen" - -#: mod/notifications.php:130 -msgid "Hide Ignored Requests" -msgstr "Verberge ignorierte Anfragen" - -#: mod/notifications.php:166 mod/notifications.php:236 -msgid "Notification type: " -msgstr "Benachrichtigungstyp: " - -#: mod/notifications.php:167 -msgid "Friend Suggestion" -msgstr "Kontaktvorschlag" - -#: mod/notifications.php:169 -#, php-format -msgid "suggested by %s" -msgstr "vorgeschlagen von %s" - -#: mod/notifications.php:174 mod/notifications.php:253 mod/contacts.php:610 -msgid "Hide this contact from others" -msgstr "Verbirg diesen Kontakt vor andere" - -#: mod/notifications.php:175 mod/notifications.php:254 -msgid "Post a new friend activity" -msgstr "Neue-Kontakt Nachricht senden" - -#: mod/notifications.php:175 mod/notifications.php:254 -msgid "if applicable" -msgstr "falls anwendbar" - -#: mod/notifications.php:178 mod/notifications.php:259 mod/admin.php:1386 -msgid "Approve" -msgstr "Genehmigen" - -#: mod/notifications.php:198 -msgid "Claims to be known to you: " -msgstr "Behauptet Dich zu kennen: " - -#: mod/notifications.php:198 -msgid "yes" -msgstr "ja" - -#: mod/notifications.php:198 -msgid "no" -msgstr "nein" - -#: mod/notifications.php:199 -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:" - -#: mod/notifications.php:202 -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:" - -#: mod/notifications.php:210 -msgid "Friend" -msgstr "Kontakt" - -#: mod/notifications.php:211 -msgid "Sharer" -msgstr "Teilenden" - -#: mod/notifications.php:211 -msgid "Fan/Admirer" -msgstr "Fan/Verehrer" - -#: mod/notifications.php:237 -msgid "Friend/Connect Request" -msgstr "Kontakt-/Freundschaftsanfrage" - -#: mod/notifications.php:237 -msgid "New Follower" -msgstr "Neuer Bewunderer" - -#: mod/notifications.php:257 mod/contacts.php:621 mod/follow.php:126 -msgid "Profile URL" -msgstr "Profil URL" - -#: mod/notifications.php:268 -msgid "No introductions." -msgstr "Keine Kontaktanfragen." - -#: mod/notifications.php:309 mod/notifications.php:438 -#: mod/notifications.php:529 -#, php-format -msgid "%s liked %s's post" -msgstr "%s mag %ss Beitrag" - -#: mod/notifications.php:319 mod/notifications.php:448 -#: mod/notifications.php:539 -#, php-format -msgid "%s disliked %s's post" -msgstr "%s mag %ss Beitrag nicht" - -#: mod/notifications.php:334 mod/notifications.php:463 -#: mod/notifications.php:554 -#, php-format -msgid "%s is now friends with %s" -msgstr "%s ist jetzt mit %s befreundet" - -#: mod/notifications.php:341 mod/notifications.php:470 -#, php-format -msgid "%s created a new post" -msgstr "%s hat einen neuen Beitrag erstellt" - -#: mod/notifications.php:342 mod/notifications.php:471 -#: mod/notifications.php:564 -#, php-format -msgid "%s commented on %s's post" -msgstr "%s hat %ss Beitrag kommentiert" - -#: mod/notifications.php:357 -msgid "No more network notifications." -msgstr "Keine weiteren Netzwerk-Benachrichtigungen." - -#: mod/notifications.php:361 -msgid "Network Notifications" -msgstr "Netzwerk Benachrichtigungen" - -#: mod/notifications.php:486 -msgid "No more personal notifications." -msgstr "Keine weiteren persönlichen Benachrichtigungen" - -#: mod/notifications.php:490 -msgid "Personal Notifications" -msgstr "Persönliche Benachrichtigungen" - -#: mod/notifications.php:571 -msgid "No more home notifications." -msgstr "Keine weiteren Pinnwand-Benachrichtigungen" - -#: mod/notifications.php:575 -msgid "Home Notifications" -msgstr "Pinnwand Benachrichtigungen" - -#: mod/dfrn_confirm.php:65 mod/profiles.php:18 mod/profiles.php:133 -#: mod/profiles.php:179 mod/profiles.php:610 -msgid "Profile not found." -msgstr "Profil nicht gefunden." - -#: mod/dfrn_confirm.php:121 mod/fsuggest.php:20 mod/fsuggest.php:92 -#: mod/crepair.php:114 -msgid "Contact not found." -msgstr "Kontakt nicht gefunden." - -#: mod/dfrn_confirm.php:122 -msgid "" -"This may occasionally happen if contact was requested by both persons and it" -" has already been approved." -msgstr "Das kann passieren, wenn sich zwei Kontakte gegenseitig eingeladen haben und bereits einer angenommen wurde." - -#: mod/dfrn_confirm.php:241 -msgid "Response from remote site was not understood." -msgstr "Antwort der Gegenstelle unverständlich." - -#: mod/dfrn_confirm.php:250 mod/dfrn_confirm.php:255 -msgid "Unexpected response from remote site: " -msgstr "Unerwartete Antwort der Gegenstelle: " - -#: mod/dfrn_confirm.php:264 -msgid "Confirmation completed successfully." -msgstr "Bestätigung erfolgreich abgeschlossen." - -#: mod/dfrn_confirm.php:266 mod/dfrn_confirm.php:280 mod/dfrn_confirm.php:287 -msgid "Remote site reported: " -msgstr "Gegenstelle meldet: " - -#: mod/dfrn_confirm.php:278 -msgid "Temporary failure. Please wait and try again." -msgstr "Zeitweiser Fehler. Bitte warte einige Momente und versuche es dann noch einmal." - -#: mod/dfrn_confirm.php:285 -msgid "Introduction failed or was revoked." -msgstr "Kontaktanfrage schlug fehl oder wurde zurückgezogen." - -#: mod/dfrn_confirm.php:414 -msgid "Unable to set contact photo." -msgstr "Konnte das Bild des Kontakts nicht speichern." - -#: mod/dfrn_confirm.php:552 -#, php-format -msgid "No user record found for '%s' " -msgstr "Für '%s' wurde kein Nutzer gefunden" - -#: mod/dfrn_confirm.php:562 -msgid "Our site encryption key is apparently messed up." -msgstr "Der Verschlüsselungsschlüssel unserer Seite ist anscheinend nicht in Ordnung." - -#: mod/dfrn_confirm.php:573 -msgid "Empty site URL was provided or URL could not be decrypted by us." -msgstr "Leere URL für die Seite erhalten oder die URL konnte nicht entschlüsselt werden." - -#: mod/dfrn_confirm.php:594 -msgid "Contact record was not found for you on our site." -msgstr "Für diesen Kontakt wurde auf unserer Seite kein Eintrag gefunden." - -#: mod/dfrn_confirm.php:608 -#, php-format -msgid "Site public key not available in contact record for URL %s." -msgstr "Die Kontaktdaten für URL %s enthalten keinen Public Key für den Server." - -#: mod/dfrn_confirm.php:628 -msgid "" -"The ID provided by your system is a duplicate on our system. It should work " -"if you try again." -msgstr "Die ID, die uns Dein System angeboten hat, ist hier bereits vergeben. Bitte versuche es noch einmal." - -#: mod/dfrn_confirm.php:639 -msgid "Unable to set your contact credentials on our system." -msgstr "Deine Kontaktreferenzen konnten nicht in unserem System gespeichert werden." - -#: mod/dfrn_confirm.php:698 -msgid "Unable to update your contact profile details on our system" -msgstr "Die Updates für Dein Profil konnten nicht gespeichert werden" - -#: mod/dfrn_confirm.php:770 -#, php-format -msgid "%1$s has joined %2$s" -msgstr "%1$s ist %2$s beigetreten" - #: mod/friendica.php:70 msgid "This is Friendica, version" msgstr "Dies ist Friendica, Version" @@ -3525,6 +3186,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:1635 +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." @@ -3587,6 +3252,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:1623 +msgid "Nickname or Email: " +msgstr "Spitzname oder E-Mail:" + #: mod/lostpass.php:162 msgid "Reset" msgstr "Zurücksetzen" @@ -3599,25 +3268,39 @@ msgstr "Kein Profil" msgid "Help:" msgstr "Hilfe:" +#: 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:284 +msgid "Not Found" +msgstr "Nicht gefunden" + +#: mod/help.php:56 index.php:287 +msgid "Page not found." +msgstr "Seite nicht gefunden." + #: 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:805 mod/profile_photo.php:150 +#: mod/wall_upload.php:151 mod/profile_photo.php:150 mod/photos.php:806 #, 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:845 mod/profile_photo.php:159 +#: mod/wall_upload.php:188 mod/profile_photo.php:159 mod/photos.php:846 msgid "Unable to process image." msgstr "Konnte das Bild nicht bearbeiten." -#: mod/wall_upload.php:221 mod/photos.php:872 mod/profile_photo.php:307 +#: mod/wall_upload.php:221 mod/profile_photo.php:307 mod/photos.php:873 msgid "Image upload failed." msgstr "Hochladen des Bildes gescheitert." +#: mod/fsuggest.php:20 mod/fsuggest.php:92 mod/crepair.php:114 +#: mod/dfrn_confirm.php:122 +msgid "Contact not found." +msgstr "Kontakt nicht gefunden." + #: mod/fsuggest.php:63 msgid "Friend suggestion sent." msgstr "Kontaktvorschlag gesendet." @@ -3631,18 +3314,17 @@ msgstr "Kontakte vorschlagen" msgid "Suggest a friend for %s" msgstr "Schlage %s einen Kontakt vor" -#: mod/fsuggest.php:107 mod/events.php:507 mod/invite.php:140 -#: mod/crepair.php:179 mod/content.php:728 mod/profiles.php:681 -#: mod/poke.php:199 mod/photos.php:1124 mod/photos.php:1248 -#: mod/photos.php:1566 mod/photos.php:1617 mod/photos.php:1665 -#: mod/photos.php:1753 mod/install.php:272 mod/install.php:312 -#: mod/contacts.php:575 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/cleanzero/config.php:80 view/theme/quattro/config.php:64 -#: view/theme/dispy/config.php:70 view/theme/vier/config.php:107 -#: view/theme/diabook/theme.php:633 view/theme/diabook/config.php:148 -#: view/theme/duepuntozero/config.php:59 +#: mod/fsuggest.php:107 mod/events.php:507 mod/invite.php:140 mod/poke.php:199 +#: mod/install.php:272 mod/install.php:312 mod/mood.php:137 +#: mod/localtime.php:45 mod/message.php:357 mod/message.php:547 +#: mod/manage.php:143 mod/contacts.php:577 mod/crepair.php:154 +#: mod/photos.php:1125 mod/photos.php:1249 mod/photos.php:1567 +#: mod/photos.php:1618 mod/photos.php:1666 mod/photos.php:1754 +#: mod/profiles.php:682 mod/content.php:728 object/Item.php:720 +#: view/theme/frio/config.php:59 view/theme/cleanzero/config.php:80 +#: view/theme/quattro/config.php:64 view/theme/dispy/config.php:70 +#: view/theme/vier/config.php:107 view/theme/diabook/theme.php:633 +#: view/theme/diabook/config.php:148 view/theme/duepuntozero/config.php:59 msgid "Submit" msgstr "Senden" @@ -3690,7 +3372,7 @@ msgstr "Anfangszeitpunkt und Titel werden benötigt" msgid "Event Starts:" msgstr "Veranstaltungsbeginn:" -#: mod/events.php:485 mod/events.php:497 mod/profiles.php:709 +#: mod/events.php:485 mod/events.php:497 mod/profiles.php:710 msgid "Required" msgstr "Benötigt" @@ -3789,13 +3471,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:584 -#: mod/contacts.php:939 +#: mod/nogroup.php:41 mod/viewcontacts.php:97 mod/contacts.php:586 +#: mod/contacts.php:944 #, 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:945 msgid "Edit contact" msgstr "Kontakt bearbeiten" @@ -3937,9 +3619,9 @@ 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/fbrowser.php:41 mod/fbrowser.php:62 mod/photos.php:62 -#: mod/photos.php:192 mod/photos.php:1106 mod/photos.php:1232 -#: mod/photos.php:1255 mod/photos.php:1825 mod/photos.php:1837 +#: mod/fbrowser.php:41 mod/fbrowser.php:62 mod/photos.php:63 +#: mod/photos.php:193 mod/photos.php:1107 mod/photos.php:1233 +#: mod/photos.php:1256 mod/photos.php:1826 mod/photos.php:1838 #: view/theme/diabook/theme.php:499 msgid "Contact Photos" msgstr "Kontaktbilder" @@ -3952,6 +3634,10 @@ msgstr "Dateien" msgid "System down for maintenance" msgstr "System zur Wartung abgeschaltet" +#: mod/profperm.php:19 mod/group.php:72 index.php:396 +msgid "Permission denied" +msgstr "Zugriff verweigert" + #: mod/profperm.php:25 mod/profperm.php:56 msgid "Invalid profile identifier." msgstr "Ungültiger Profil-Bezeichner." @@ -3976,98 +3662,6 @@ msgstr "Alle Kontakte (mit gesichertem Profilzugriff)" 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 "" -"WARNING: This is highly advanced and if you enter incorrect" -" information your communications with this contact may stop working." -msgstr "ACHTUNG: Das sind Experten-Einstellungen! Wenn Du etwas Falsches eingibst, funktioniert die Kommunikation mit diesem Kontakt evtl. nicht mehr." - -#: mod/crepair.php:121 -msgid "" -"Please use your browser 'Back' button now if you are " -"uncertain what to do on this page." -msgstr "Bitte nutze den Zurück-Button Deines Browsers jetzt, wenn Du Dir unsicher bist, was Du tun willst." - -#: mod/crepair.php: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:153 mod/admin.php:1371 mod/admin.php:1384 -#: mod/admin.php:1396 mod/admin.php:1412 mod/settings.php:665 -#: mod/settings.php:691 -msgid "Name" -msgstr "Name" - -#: mod/crepair.php:154 -msgid "Account Nickname" -msgstr "Konto-Spitzname" - -#: mod/crepair.php:155 -msgid "@Tagname - overrides Name/Nickname" -msgstr "@Tagname - überschreibt Name/Spitzname" - -#: mod/crepair.php:156 -msgid "Account URL" -msgstr "Konto-URL" - -#: mod/crepair.php:157 -msgid "Friend Request URL" -msgstr "URL für Kontaktschaftsanfragen" - -#: mod/crepair.php:158 -msgid "Friend Confirm URL" -msgstr "URL für Bestätigungen von Kontaktanfragen" - -#: mod/crepair.php:159 -msgid "Notification Endpoint URL" -msgstr "URL-Endpunkt für Benachrichtigungen" - -#: mod/crepair.php:160 -msgid "Poll/Feed URL" -msgstr "Pull/Feed-URL" - -#: mod/crepair.php:161 -msgid "New photo from this URL" -msgstr "Neues Foto von dieser URL" - -#: mod/crepair.php:162 -msgid "Remote Self" -msgstr "Entfernte Konten" - -#: mod/crepair.php:165 -msgid "Mirror postings from this contact" -msgstr "Spiegle Beiträge dieses Kontakts" - -#: mod/crepair.php:167 -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/tagrm.php:41 msgid "Tag removed" msgstr "Tag entfernt" @@ -4287,7 +3881,7 @@ msgstr "Öffentliche Beiträge von Nutzer_innen dieser Seite" msgid "Global community page" msgstr "Globale Gemeinschaftsseite" -#: mod/admin.php:857 mod/contacts.php:529 +#: mod/admin.php:857 mod/contacts.php:530 msgid "Never" msgstr "Niemals" @@ -4295,7 +3889,7 @@ msgstr "Niemals" msgid "At post arrival" msgstr "Beim Empfang von Nachrichten" -#: mod/admin.php:866 mod/contacts.php:556 +#: mod/admin.php:866 mod/contacts.php:557 msgid "Disabled" msgstr "Deaktiviert" @@ -5235,6 +4829,11 @@ msgstr "Nutzer '%s' entsperrt" msgid "User '%s' blocked" msgstr "Nutzer '%s' gesperrt" +#: mod/admin.php:1371 mod/admin.php:1384 mod/admin.php:1396 mod/admin.php:1412 +#: mod/settings.php:665 mod/settings.php:691 mod/crepair.php:165 +msgid "Name" +msgstr "Name" + #: mod/admin.php:1371 mod/admin.php:1396 msgid "Register date" msgstr "Anmeldedatum" @@ -5275,17 +4874,21 @@ msgstr "Anfragedatum" msgid "No registrations." msgstr "Keine Neuanmeldungen." +#: mod/admin.php:1386 mod/notifications.php:139 mod/notifications.php:225 +msgid "Approve" +msgstr "Genehmigen" + #: mod/admin.php:1387 msgid "Deny" msgstr "Verwehren" -#: mod/admin.php:1389 mod/contacts.php:603 mod/contacts.php:798 -#: mod/contacts.php:992 +#: mod/admin.php:1389 mod/contacts.php:605 mod/contacts.php:803 +#: mod/contacts.php:997 msgid "Block" msgstr "Sperren" -#: mod/admin.php:1390 mod/contacts.php:603 mod/contacts.php:798 -#: mod/contacts.php:992 +#: mod/admin.php:1390 mod/contacts.php:605 mod/contacts.php:803 +#: mod/contacts.php:997 msgid "Unblock" msgstr "Entsperren" @@ -5497,164 +5100,6 @@ msgstr "Keine exportierbaren Daten gefunden" msgid "calendar" msgstr "Kalender" -#: mod/content.php:119 mod/network.php:468 -msgid "No such group" -msgstr "Es gibt keine solche Gruppe" - -#: mod/content.php:130 mod/network.php:495 mod/group.php:193 -msgid "Group is empty" -msgstr "Gruppe ist leer" - -#: mod/content.php:135 mod/network.php:499 -#, php-format -msgid "Group: %s" -msgstr "Gruppe: %s" - -#: mod/content.php:325 object/Item.php:95 -msgid "This entry was edited" -msgstr "Dieser Beitrag wurde bearbeitet." - -#: 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/content.php:638 mod/photos.php:1405 object/Item.php:117 -msgid "Private Message" -msgstr "Private Nachricht" - -#: mod/content.php:702 mod/photos.php:1594 object/Item.php:263 -msgid "I like this (toggle)" -msgstr "Ich mag das (toggle)" - -#: mod/content.php:702 object/Item.php:263 -msgid "like" -msgstr "mag ich" - -#: mod/content.php:703 mod/photos.php:1595 object/Item.php:264 -msgid "I don't like this (toggle)" -msgstr "Ich mag das nicht (toggle)" - -#: mod/content.php:703 object/Item.php:264 -msgid "dislike" -msgstr "mag ich nicht" - -#: mod/content.php:705 object/Item.php:266 -msgid "Share this" -msgstr "Weitersagen" - -#: mod/content.php:705 object/Item.php:266 -msgid "share" -msgstr "Teilen" - -#: mod/content.php:725 mod/photos.php:1614 mod/photos.php:1662 -#: mod/photos.php:1750 object/Item.php:717 -msgid "This is you" -msgstr "Das bist Du" - -#: mod/content.php:729 object/Item.php:721 -msgid "Bold" -msgstr "Fett" - -#: mod/content.php:730 object/Item.php:722 -msgid "Italic" -msgstr "Kursiv" - -#: mod/content.php:731 object/Item.php:723 -msgid "Underline" -msgstr "Unterstrichen" - -#: mod/content.php:732 object/Item.php:724 -msgid "Quote" -msgstr "Zitat" - -#: mod/content.php:733 object/Item.php:725 -msgid "Code" -msgstr "Code" - -#: mod/content.php:734 object/Item.php:726 -msgid "Image" -msgstr "Bild" - -#: mod/content.php:735 object/Item.php:727 -msgid "Link" -msgstr "Link" - -#: mod/content.php:736 object/Item.php:728 -msgid "Video" -msgstr "Video" - -#: mod/content.php:746 mod/settings.php:725 object/Item.php:122 -#: object/Item.php:124 -msgid "Edit" -msgstr "Bearbeiten" - -#: mod/content.php:771 object/Item.php:227 -msgid "add star" -msgstr "markieren" - -#: mod/content.php:772 object/Item.php:228 -msgid "remove star" -msgstr "Markierung entfernen" - -#: mod/content.php:773 object/Item.php:229 -msgid "toggle star status" -msgstr "Markierung umschalten" - -#: mod/content.php:776 object/Item.php:232 -msgid "starred" -msgstr "markiert" - -#: mod/content.php:777 mod/content.php:798 object/Item.php:252 -msgid "add tag" -msgstr "Tag hinzufügen" - -#: mod/content.php:787 object/Item.php:240 -msgid "ignore thread" -msgstr "Thread ignorieren" - -#: mod/content.php:788 object/Item.php:241 -msgid "unignore thread" -msgstr "Thread nicht mehr ignorieren" - -#: mod/content.php:789 object/Item.php:242 -msgid "toggle ignore status" -msgstr "Ignoriert-Status ein-/ausschalten" - -#: mod/content.php:792 mod/ostatus_subscribe.php:69 object/Item.php:245 -msgid "ignored" -msgstr "Ignoriert" - -#: mod/content.php:803 object/Item.php:137 -msgid "save to folder" -msgstr "In Ordner speichern" - -#: mod/content.php:848 object/Item.php:201 -msgid "I will attend" -msgstr "Ich werde teilnehmen" - -#: mod/content.php:848 object/Item.php:201 -msgid "I will not attend" -msgstr "Ich werde nicht teilnehmen" - -#: mod/content.php:848 object/Item.php:201 -msgid "I might attend" -msgstr "Ich werde eventuell teilnehmen" - -#: mod/content.php:912 object/Item.php:369 -msgid "to" -msgstr "zu" - -#: mod/content.php:913 object/Item.php:371 -msgid "Wall-to-Wall" -msgstr "Wall-to-Wall" - -#: mod/content.php:914 object/Item.php:372 -msgid "via Wall-To-Wall:" -msgstr "via Wall-To-Wall:" - #: mod/repair_ostatus.php:14 msgid "Resubscribing to OStatus contacts" msgstr "Erneuern der OStatus Abonements" @@ -5714,11 +5159,11 @@ msgstr "Video Löschen" msgid "No videos selected" msgstr "Keine Videos ausgewählt" -#: mod/videos.php:308 mod/photos.php:1074 +#: mod/videos.php:308 mod/photos.php:1075 msgid "Access to this item is restricted." msgstr "Zugriff zu diesem Eintrag wurde eingeschränkt." -#: mod/videos.php:390 mod/photos.php:1877 +#: mod/videos.php:390 mod/photos.php:1878 msgid "View Album" msgstr "Album betrachten" @@ -5730,305 +5175,6 @@ msgstr "Neueste Videos" msgid "Upload New Videos" msgstr "Neues Video hochladen" -#: mod/profiles.php:37 -msgid "Profile deleted." -msgstr "Profil gelöscht." - -#: mod/profiles.php:55 mod/profiles.php:89 -msgid "Profile-" -msgstr "Profil-" - -#: mod/profiles.php:74 mod/profiles.php:117 -msgid "New profile created." -msgstr "Neues Profil angelegt." - -#: mod/profiles.php:95 -msgid "Profile unavailable to clone." -msgstr "Profil nicht zum Duplizieren verfügbar." - -#: mod/profiles.php:189 -msgid "Profile Name is required." -msgstr "Profilname ist erforderlich." - -#: mod/profiles.php:336 -msgid "Marital Status" -msgstr "Familienstand" - -#: mod/profiles.php:340 -msgid "Romantic Partner" -msgstr "Romanze" - -#: mod/profiles.php:352 -msgid "Work/Employment" -msgstr "Arbeit / Beschäftigung" - -#: mod/profiles.php:355 -msgid "Religion" -msgstr "Religion" - -#: mod/profiles.php:359 -msgid "Political Views" -msgstr "Politische Ansichten" - -#: mod/profiles.php:363 -msgid "Gender" -msgstr "Geschlecht" - -#: mod/profiles.php:367 -msgid "Sexual Preference" -msgstr "Sexuelle Vorlieben" - -#: mod/profiles.php:371 -msgid "Homepage" -msgstr "Webseite" - -#: mod/profiles.php:375 mod/profiles.php:695 -msgid "Interests" -msgstr "Interessen" - -#: mod/profiles.php:379 -msgid "Address" -msgstr "Adresse" - -#: mod/profiles.php:386 mod/profiles.php:691 -msgid "Location" -msgstr "Wohnort" - -#: mod/profiles.php:469 -msgid "Profile updated." -msgstr "Profil aktualisiert." - -#: mod/profiles.php:556 -msgid " and " -msgstr " und " - -#: mod/profiles.php:564 -msgid "public profile" -msgstr "öffentliches Profil" - -#: mod/profiles.php:567 -#, php-format -msgid "%1$s changed %2$s to “%3$s”" -msgstr "%1$s hat %2$s geändert auf “%3$s”" - -#: mod/profiles.php:568 -#, php-format -msgid " - Visit %1$s's %2$s" -msgstr " – %1$ss %2$s besuchen" - -#: mod/profiles.php:571 -#, 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/profiles.php:638 -msgid "Hide contacts and friends:" -msgstr "Kontakte und Freunde verbergen" - -#: mod/profiles.php:641 mod/profiles.php:645 mod/profiles.php:670 -#: mod/follow.php:110 mod/dfrn_request.php:860 mod/register.php:239 -#: mod/settings.php:1113 mod/settings.php:1119 mod/settings.php:1127 -#: mod/settings.php:1131 mod/settings.php:1136 mod/settings.php:1142 -#: mod/settings.php:1148 mod/settings.php:1154 mod/settings.php:1180 -#: mod/settings.php:1181 mod/settings.php:1182 mod/settings.php:1183 -#: mod/settings.php:1184 mod/api.php:106 -msgid "No" -msgstr "Nein" - -#: mod/profiles.php:643 -msgid "Hide your contact/friend list from viewers of this profile?" -msgstr "Liste der Kontakte vor Betrachtern dieses Profils verbergen?" - -#: mod/profiles.php:667 -msgid "Show more profile fields:" -msgstr "Zeige mehr Profil-Felder:" - -#: mod/profiles.php:679 -msgid "Profile Actions" -msgstr "Profilaktionen" - -#: mod/profiles.php:680 -msgid "Edit Profile Details" -msgstr "Profil bearbeiten" - -#: mod/profiles.php:682 -msgid "Change Profile Photo" -msgstr "Profilbild ändern" - -#: mod/profiles.php:683 -msgid "View this profile" -msgstr "Dieses Profil anzeigen" - -#: mod/profiles.php:685 -msgid "Create a new profile using these settings" -msgstr "Neues Profil anlegen und diese Einstellungen verwenden" - -#: mod/profiles.php:686 -msgid "Clone this profile" -msgstr "Dieses Profil duplizieren" - -#: mod/profiles.php:687 -msgid "Delete this profile" -msgstr "Dieses Profil löschen" - -#: mod/profiles.php:689 -msgid "Basic information" -msgstr "Grundinformationen" - -#: mod/profiles.php:690 -msgid "Profile picture" -msgstr "Profilbild" - -#: mod/profiles.php:692 -msgid "Preferences" -msgstr "Vorlieben" - -#: mod/profiles.php:693 -msgid "Status information" -msgstr "Status Informationen" - -#: mod/profiles.php:694 -msgid "Additional information" -msgstr "Zusätzliche Informationen" - -#: mod/profiles.php:697 -msgid "Relation" -msgstr "Beziehung" - -#: mod/profiles.php:700 mod/newmember.php:36 mod/profile_photo.php:250 -msgid "Upload Profile Photo" -msgstr "Profilbild hochladen" - -#: mod/profiles.php:701 -msgid "Your Gender:" -msgstr "Dein Geschlecht:" - -#: mod/profiles.php:702 -msgid " Marital Status:" -msgstr " Beziehungsstatus:" - -#: mod/profiles.php:704 -msgid "Example: fishing photography software" -msgstr "Beispiel: Fischen Fotografie Software" - -#: mod/profiles.php:709 -msgid "Profile Name:" -msgstr "Profilname:" - -#: mod/profiles.php:711 -msgid "" -"This is your public profile.
It may " -"be visible to anybody using the internet." -msgstr "Dies ist Dein öffentliches Profil.
Es könnte für jeden Nutzer des Internets sichtbar sein." - -#: mod/profiles.php:712 -msgid "Your Full Name:" -msgstr "Dein kompletter Name:" - -#: mod/profiles.php:713 -msgid "Title/Description:" -msgstr "Titel/Beschreibung:" - -#: mod/profiles.php:716 -msgid "Street Address:" -msgstr "Adresse:" - -#: mod/profiles.php:717 -msgid "Locality/City:" -msgstr "Wohnort:" - -#: mod/profiles.php:718 -msgid "Region/State:" -msgstr "Region/Bundesstaat:" - -#: mod/profiles.php:719 -msgid "Postal/Zip Code:" -msgstr "Postleitzahl:" - -#: mod/profiles.php:720 -msgid "Country:" -msgstr "Land:" - -#: mod/profiles.php:724 -msgid "Who: (if applicable)" -msgstr "Wer: (falls anwendbar)" - -#: mod/profiles.php:724 -msgid "Examples: cathy123, Cathy Williams, cathy@example.com" -msgstr "Beispiele: cathy123, Cathy Williams, cathy@example.com" - -#: mod/profiles.php:725 -msgid "Since [date]:" -msgstr "Seit [Datum]:" - -#: mod/profiles.php:727 -msgid "Tell us about yourself..." -msgstr "Erzähle uns ein bisschen von Dir …" - -#: mod/profiles.php:728 -msgid "Homepage URL:" -msgstr "Adresse der Homepage:" - -#: mod/profiles.php:731 -msgid "Religious Views:" -msgstr "Religiöse Ansichten:" - -#: mod/profiles.php:732 -msgid "Public Keywords:" -msgstr "Öffentliche Schlüsselwörter:" - -#: mod/profiles.php:732 -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:733 -msgid "Private Keywords:" -msgstr "Private Schlüsselwörter:" - -#: mod/profiles.php:733 -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:736 -msgid "Musical interests" -msgstr "Musikalische Interessen" - -#: mod/profiles.php:737 -msgid "Books, literature" -msgstr "Bücher, Literatur" - -#: mod/profiles.php:738 -msgid "Television" -msgstr "Fernsehen" - -#: mod/profiles.php:739 -msgid "Film/dance/culture/entertainment" -msgstr "Filme/Tänze/Kultur/Unterhaltung" - -#: mod/profiles.php:740 -msgid "Hobbies/Interests" -msgstr "Hobbies/Interessen" - -#: mod/profiles.php:741 -msgid "Love/romance" -msgstr "Liebe/Romantik" - -#: mod/profiles.php:742 -msgid "Work/employment" -msgstr "Arbeit/Anstellung" - -#: mod/profiles.php:743 -msgid "School/education" -msgstr "Schule/Ausbildung" - -#: mod/profiles.php:744 -msgid "Contact information and Social Networks" -msgstr "Kontaktinformationen und Soziale Netzwerke" - -#: mod/profiles.php:786 -msgid "Edit/Manage Profiles" -msgstr "Bearbeite/Verwalte Profile" - #: mod/credits.php:16 msgid "Credits" msgstr "Credits" @@ -6064,185 +5210,6 @@ msgstr "Was willst Du mit dem Empfänger machen:" msgid "Make this post private" msgstr "Diesen Beitrag privat machen" -#: mod/photos.php:100 mod/photos.php:1886 -msgid "Recent Photos" -msgstr "Neueste Fotos" - -#: mod/photos.php:103 mod/photos.php:1307 mod/photos.php:1888 -msgid "Upload New Photos" -msgstr "Neue Fotos hochladen" - -#: mod/photos.php:117 mod/settings.php:36 -msgid "everybody" -msgstr "jeder" - -#: mod/photos.php:181 -msgid "Contact information unavailable" -msgstr "Kontaktinformationen nicht verfügbar" - -#: mod/photos.php:202 -msgid "Album not found." -msgstr "Album nicht gefunden." - -#: mod/photos.php:232 mod/photos.php:244 mod/photos.php:1249 -msgid "Delete Album" -msgstr "Album löschen" - -#: mod/photos.php:242 -msgid "Do you really want to delete this photo album and all its photos?" -msgstr "Möchtest Du wirklich dieses Foto-Album und all seine Foto löschen?" - -#: mod/photos.php:322 mod/photos.php:333 mod/photos.php:1567 -msgid "Delete Photo" -msgstr "Foto löschen" - -#: mod/photos.php:331 -msgid "Do you really want to delete this photo?" -msgstr "Möchtest Du wirklich dieses Foto löschen?" - -#: mod/photos.php:706 -#, php-format -msgid "%1$s was tagged in %2$s by %3$s" -msgstr "%1$s wurde von %3$s in %2$s getaggt" - -#: mod/photos.php:706 -msgid "a photo" -msgstr "einem Foto" - -#: mod/photos.php:813 -msgid "Image file is empty." -msgstr "Bilddatei ist leer." - -#: mod/photos.php:973 -msgid "No photos selected" -msgstr "Keine Bilder ausgewählt" - -#: mod/photos.php:1134 -#, php-format -msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage." -msgstr "Du verwendest %1$.2f Mbyte von %2$.2f Mbyte des Foto-Speichers." - -#: mod/photos.php:1169 -msgid "Upload Photos" -msgstr "Bilder hochladen" - -#: mod/photos.php:1173 mod/photos.php:1244 -msgid "New album name: " -msgstr "Name des neuen Albums: " - -#: mod/photos.php:1174 -msgid "or existing album name: " -msgstr "oder existierender Albumname: " - -#: mod/photos.php:1175 -msgid "Do not show a status post for this upload" -msgstr "Keine Status-Mitteilung für diesen Beitrag anzeigen" - -#: mod/photos.php:1186 mod/photos.php:1571 mod/settings.php:1250 -msgid "Show to Groups" -msgstr "Zeige den Gruppen" - -#: mod/photos.php:1187 mod/photos.php:1572 mod/settings.php:1251 -msgid "Show to Contacts" -msgstr "Zeige den Kontakten" - -#: mod/photos.php:1188 -msgid "Private Photo" -msgstr "Privates Foto" - -#: mod/photos.php:1189 -msgid "Public Photo" -msgstr "Öffentliches Foto" - -#: mod/photos.php:1257 -msgid "Edit Album" -msgstr "Album bearbeiten" - -#: mod/photos.php:1263 -msgid "Show Newest First" -msgstr "Zeige neueste zuerst" - -#: mod/photos.php:1265 -msgid "Show Oldest First" -msgstr "Zeige älteste zuerst" - -#: mod/photos.php:1293 mod/photos.php:1871 -msgid "View Photo" -msgstr "Foto betrachten" - -#: mod/photos.php:1340 -msgid "Permission denied. Access to this item may be restricted." -msgstr "Zugriff verweigert. Zugriff zu diesem Eintrag könnte eingeschränkt sein." - -#: mod/photos.php:1342 -msgid "Photo not available" -msgstr "Foto nicht verfügbar" - -#: mod/photos.php:1398 -msgid "View photo" -msgstr "Fotos ansehen" - -#: mod/photos.php:1398 -msgid "Edit photo" -msgstr "Foto bearbeiten" - -#: mod/photos.php:1399 -msgid "Use as profile photo" -msgstr "Als Profilbild verwenden" - -#: mod/photos.php:1424 -msgid "View Full Size" -msgstr "Betrachte Originalgröße" - -#: mod/photos.php:1510 -msgid "Tags: " -msgstr "Tags: " - -#: mod/photos.php:1513 -msgid "[Remove any tag]" -msgstr "[Tag entfernen]" - -#: mod/photos.php:1553 -msgid "New album name" -msgstr "Name des neuen Albums" - -#: mod/photos.php:1554 -msgid "Caption" -msgstr "Bildunterschrift" - -#: mod/photos.php:1555 -msgid "Add a Tag" -msgstr "Tag hinzufügen" - -#: mod/photos.php:1555 -msgid "" -"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" -msgstr "Beispiel: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" - -#: mod/photos.php:1556 -msgid "Do not rotate" -msgstr "Nicht rotieren" - -#: mod/photos.php:1557 -msgid "Rotate CW (right)" -msgstr "Drehen US (rechts)" - -#: mod/photos.php:1558 -msgid "Rotate CCW (left)" -msgstr "Drehen EUS (links)" - -#: mod/photos.php:1573 -msgid "Private photo" -msgstr "Privates Foto" - -#: mod/photos.php:1574 -msgid "Public photo" -msgstr "Öffentliches Foto" - -#: mod/photos.php:1800 -msgid "Map" -msgstr "Karte" - #: mod/install.php:139 msgid "Friendica Communications Server - Setup" msgstr "Friendica-Server für soziale Netzwerke – Setup" @@ -6601,328 +5568,7 @@ msgstr "Beitrag nicht verfügbar." msgid "Item was not found." msgstr "Beitrag konnte nicht gefunden werden." -#: 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/contacts.php:159 mod/contacts.php:368 -msgid "Could not access contact record." -msgstr "Konnte nicht auf die Kontaktdaten zugreifen." - -#: mod/contacts.php:173 -msgid "Could not locate selected profile." -msgstr "Konnte das ausgewählte Profil nicht finden." - -#: mod/contacts.php:206 -msgid "Contact updated." -msgstr "Kontakt aktualisiert." - -#: mod/contacts.php:208 mod/dfrn_request.php:578 -msgid "Failed to update contact record." -msgstr "Aktualisierung der Kontaktdaten fehlgeschlagen." - -#: mod/contacts.php:389 -msgid "Contact has been blocked" -msgstr "Kontakt wurde blockiert" - -#: mod/contacts.php:389 -msgid "Contact has been unblocked" -msgstr "Kontakt wurde wieder freigegeben" - -#: mod/contacts.php:400 -msgid "Contact has been ignored" -msgstr "Kontakt wurde ignoriert" - -#: mod/contacts.php:400 -msgid "Contact has been unignored" -msgstr "Kontakt wird nicht mehr ignoriert" - -#: mod/contacts.php:412 -msgid "Contact has been archived" -msgstr "Kontakt wurde archiviert" - -#: mod/contacts.php:412 -msgid "Contact has been unarchived" -msgstr "Kontakt wurde aus dem Archiv geholt" - -#: mod/contacts.php:439 mod/contacts.php:794 -msgid "Do you really want to delete this contact?" -msgstr "Möchtest Du wirklich diesen Kontakt löschen?" - -#: mod/contacts.php:456 -msgid "Contact has been removed." -msgstr "Kontakt wurde entfernt." - -#: mod/contacts.php:497 -#, php-format -msgid "You are mutual friends with %s" -msgstr "Du hast mit %s eine beidseitige Freundschaft" - -#: mod/contacts.php:501 -#, php-format -msgid "You are sharing with %s" -msgstr "Du teilst mit %s" - -#: mod/contacts.php:506 -#, php-format -msgid "%s is sharing with you" -msgstr "%s teilt mit Dir" - -#: mod/contacts.php:526 -msgid "Private communications are not available for this contact." -msgstr "Private Kommunikation ist für diesen Kontakt nicht verfügbar." - -#: mod/contacts.php:533 -msgid "(Update was successful)" -msgstr "(Aktualisierung war erfolgreich)" - -#: mod/contacts.php:533 -msgid "(Update was not successful)" -msgstr "(Aktualisierung war nicht erfolgreich)" - -#: mod/contacts.php:535 mod/contacts.php:973 -msgid "Suggest friends" -msgstr "Kontakte vorschlagen" - -#: mod/contacts.php:539 -#, php-format -msgid "Network type: %s" -msgstr "Netzwerktyp: %s" - -#: mod/contacts.php:552 -msgid "Communications lost with this contact!" -msgstr "Verbindungen mit diesem Kontakt verloren!" - -#: mod/contacts.php:555 -msgid "Fetch further information for feeds" -msgstr "Weitere Informationen zu Feeds holen" - -#: mod/contacts.php:556 -msgid "Fetch information" -msgstr "Beziehe Information" - -#: mod/contacts.php:556 -msgid "Fetch information and keywords" -msgstr "Beziehe Information und Schlüsselworte" - -#: mod/contacts.php:576 -msgid "Profile Visibility" -msgstr "Profil-Sichtbarkeit" - -#: mod/contacts.php:577 -#, php-format -msgid "" -"Please choose the profile you would like to display to %s when viewing your " -"profile securely." -msgstr "Bitte wähle eines Deiner Profile das angezeigt werden soll, wenn %s Dein Profil aufruft." - -#: mod/contacts.php:578 -msgid "Contact Information / Notes" -msgstr "Kontakt Informationen / Notizen" - -#: mod/contacts.php:579 -msgid "Edit contact notes" -msgstr "Notizen zum Kontakt bearbeiten" - -#: mod/contacts.php:585 -msgid "Block/Unblock contact" -msgstr "Kontakt blockieren/freischalten" - -#: mod/contacts.php:586 -msgid "Ignore contact" -msgstr "Ignoriere den Kontakt" - -#: mod/contacts.php:587 -msgid "Repair URL settings" -msgstr "URL Einstellungen reparieren" - -#: mod/contacts.php:588 -msgid "View conversations" -msgstr "Unterhaltungen anzeigen" - -#: mod/contacts.php:594 -msgid "Last update:" -msgstr "Letzte Aktualisierung: " - -#: mod/contacts.php:596 -msgid "Update public posts" -msgstr "Öffentliche Beiträge aktualisieren" - -#: mod/contacts.php:598 mod/contacts.php:983 -msgid "Update now" -msgstr "Jetzt aktualisieren" - -#: mod/contacts.php:604 mod/contacts.php:799 mod/contacts.php:1000 -msgid "Unignore" -msgstr "Ignorieren aufheben" - -#: mod/contacts.php:607 -msgid "Currently blocked" -msgstr "Derzeit geblockt" - -#: mod/contacts.php:608 -msgid "Currently ignored" -msgstr "Derzeit ignoriert" - -#: mod/contacts.php:609 -msgid "Currently archived" -msgstr "Momentan archiviert" - -#: mod/contacts.php:610 -msgid "" -"Replies/likes to your public posts may still be visible" -msgstr "Antworten/Likes auf deine öffentlichen Beiträge könnten weiterhin sichtbar sein" - -#: mod/contacts.php:611 -msgid "Notification for new posts" -msgstr "Benachrichtigung bei neuen Beiträgen" - -#: mod/contacts.php:611 -msgid "Send a notification of every new post of this contact" -msgstr "Sende eine Benachrichtigung, wann immer dieser Kontakt einen neuen Beitrag schreibt." - -#: mod/contacts.php:614 -msgid "Blacklisted keywords" -msgstr "Blacklistete Schlüsselworte " - -#: mod/contacts.php:614 -msgid "" -"Comma separated list of keywords that should not be converted to hashtags, " -"when \"Fetch information and keywords\" is selected" -msgstr "Komma-Separierte Liste mit Schlüsselworten, die nicht in Hashtags konvertiert werden, wenn \"Beziehe Information und Schlüsselworte\" aktiviert wurde" - -#: mod/contacts.php:629 -msgid "Actions" -msgstr "Aktionen" - -#: mod/contacts.php:632 -msgid "Contact Settings" -msgstr "Kontakteinstellungen" - -#: mod/contacts.php:677 -msgid "Suggestions" -msgstr "Kontaktvorschläge" - -#: mod/contacts.php:680 -msgid "Suggest potential friends" -msgstr "Kontakte vorschlagen" - -#: mod/contacts.php:685 mod/group.php:192 -msgid "All Contacts" -msgstr "Alle Kontakte" - -#: mod/contacts.php:688 -msgid "Show all contacts" -msgstr "Alle Kontakte anzeigen" - -#: mod/contacts.php:693 -msgid "Unblocked" -msgstr "Ungeblockt" - -#: mod/contacts.php:696 -msgid "Only show unblocked contacts" -msgstr "Nur nicht-blockierte Kontakte anzeigen" - -#: mod/contacts.php:702 -msgid "Blocked" -msgstr "Geblockt" - -#: mod/contacts.php:705 -msgid "Only show blocked contacts" -msgstr "Nur blockierte Kontakte anzeigen" - -#: mod/contacts.php:711 -msgid "Ignored" -msgstr "Ignoriert" - -#: mod/contacts.php:714 -msgid "Only show ignored contacts" -msgstr "Nur ignorierte Kontakte anzeigen" - -#: mod/contacts.php:720 -msgid "Archived" -msgstr "Archiviert" - -#: mod/contacts.php:723 -msgid "Only show archived contacts" -msgstr "Nur archivierte Kontakte anzeigen" - -#: mod/contacts.php:729 -msgid "Hidden" -msgstr "Verborgen" - -#: mod/contacts.php:732 -msgid "Only show hidden contacts" -msgstr "Nur verborgene Kontakte anzeigen" - -#: mod/contacts.php:789 -msgid "Search your contacts" -msgstr "Suche in deinen Kontakten" - -#: mod/contacts.php:797 mod/settings.php:158 mod/settings.php:689 -msgid "Update" -msgstr "Aktualisierungen" - -#: mod/contacts.php:800 mod/contacts.php:1008 -msgid "Archive" -msgstr "Archivieren" - -#: mod/contacts.php:800 mod/contacts.php:1008 -msgid "Unarchive" -msgstr "Aus Archiv zurückholen" - -#: mod/contacts.php:803 -msgid "Batch Actions" -msgstr "" - -#: mod/contacts.php:849 -msgid "View all contacts" -msgstr "Alle Kontakte anzeigen" - -#: mod/contacts.php:856 mod/common.php:134 -msgid "Common Friends" -msgstr "Gemeinsame Kontakte" - -#: mod/contacts.php:859 -msgid "View all common friends" -msgstr "Alle Kontakte anzeigen" - -#: mod/contacts.php:866 -msgid "Advanced Contact Settings" -msgstr "Fortgeschrittene Kontakteinstellungen" - -#: mod/contacts.php:911 -msgid "Mutual Friendship" -msgstr "Beidseitige Freundschaft" - -#: mod/contacts.php:915 -msgid "is a fan of yours" -msgstr "ist ein Fan von dir" - -#: mod/contacts.php:919 -msgid "you are a fan of" -msgstr "Du bist Fan von" - -#: mod/contacts.php:994 -msgid "Toggle Blocked status" -msgstr "Geblockt-Status ein-/ausschalten" - -#: mod/contacts.php:1002 -msgid "Toggle Ignored status" -msgstr "Ignoriert-Status ein-/ausschalten" - -#: mod/contacts.php:1010 -msgid "Toggle Archive status" -msgstr "Archiviert-Status ein-/ausschalten" - -#: mod/contacts.php:1018 -msgid "Delete contact" -msgstr "Lösche den Kontakt" - -#: mod/follow.php:19 mod/dfrn_request.php:873 +#: mod/follow.php:19 mod/dfrn_request.php:874 msgid "Submit Request" msgstr "Anfrage abschicken" @@ -6942,27 +5588,45 @@ msgstr "OStatus Unterstützung ist nicht aktiviert. Der Kontakt kann nicht zugef 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/follow.php:109 mod/dfrn_request.php:859 +#: mod/follow.php:109 mod/dfrn_request.php:860 msgid "Please answer the following:" msgstr "Bitte beantworte folgendes:" -#: mod/follow.php:110 mod/dfrn_request.php:860 +#: mod/follow.php:110 mod/dfrn_request.php:861 #, php-format msgid "Does %s know you?" msgstr "Kennt %s Dich?" -#: mod/follow.php:111 mod/dfrn_request.php:864 +#: mod/follow.php:110 mod/register.php:239 mod/settings.php:1113 +#: mod/settings.php:1119 mod/settings.php:1127 mod/settings.php:1131 +#: mod/settings.php:1136 mod/settings.php:1142 mod/settings.php:1148 +#: mod/settings.php:1154 mod/settings.php:1180 mod/settings.php:1181 +#: mod/settings.php:1182 mod/settings.php:1183 mod/settings.php:1184 +#: mod/api.php:106 mod/dfrn_request.php:861 mod/profiles.php:642 +#: mod/profiles.php:646 mod/profiles.php:671 +msgid "No" +msgstr "Nein" + +#: mod/follow.php:111 mod/dfrn_request.php:865 msgid "Add a personal note:" msgstr "Eine persönliche Notiz beifügen:" -#: mod/follow.php:117 mod/dfrn_request.php:870 +#: mod/follow.php:117 mod/dfrn_request.php:871 msgid "Your Identity Address:" msgstr "Adresse Deines Profils:" +#: mod/follow.php:126 mod/contacts.php:624 mod/notifications.php:219 +msgid "Profile URL" +msgstr "Profil URL" + #: mod/follow.php:180 msgid "Contact added" msgstr "Kontakt hinzugefügt" +#: mod/apps.php:7 index.php:240 +msgid "You must be logged in to use addons. " +msgstr "Sie müssen angemeldet sein um Addons benutzen zu können." + #: mod/apps.php:11 msgid "Applications" msgstr "Anwendungen" @@ -6997,6 +5661,10 @@ msgstr "Eintrag wurde entfernt." msgid "No contacts in common." msgstr "Keine gemeinsamen Kontakte." +#: mod/common.php:134 mod/contacts.php:861 +msgid "Common Friends" +msgstr "Gemeinsame Kontakte" + #: mod/newmember.php:6 msgid "Welcome to Friendica" msgstr "Willkommen bei Friendica" @@ -7047,6 +5715,10 @@ msgid "" "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/newmember.php:36 mod/profile_photo.php:250 mod/profiles.php:701 +msgid "Upload Profile Photo" +msgstr "Profilbild hochladen" + #: mod/newmember.php:36 msgid "" "Upload a profile photo if you have not done so already. Studies have shown " @@ -7204,6 +5876,19 @@ msgstr[1] "Warnung: Diese Gruppe beinhaltet %s Personen aus unsicheren Netzwerke msgid "Private messages to this group are at risk of public disclosure." msgstr "Private Nachrichten an diese Gruppe könnten an die Öffentlichkeit geraten." +#: mod/network.php:468 mod/content.php:119 +msgid "No such group" +msgstr "Es gibt keine solche Gruppe" + +#: mod/network.php:495 mod/group.php:193 mod/content.php:130 +msgid "Group is empty" +msgstr "Gruppe ist leer" + +#: mod/network.php:499 mod/content.php:135 +#, php-format +msgid "Group: %s" +msgstr "Gruppe: %s" + #: mod/network.php:527 msgid "Private messages to this person are at risk of public disclosure." msgstr "Private Nachrichten an diese Person könnten an die Öffentlichkeit gelangen." @@ -7228,6 +5913,10 @@ msgstr "Neueste Beiträge" msgid "Sort by Post Date" msgstr "Nach Beitragsdatum sortieren" +#: mod/network.php:844 mod/profiles.php:697 mod/notifications.php:539 +msgid "Personal" +msgstr "Persönlich" + #: mod/network.php:847 msgid "Posts that mention or involve you" msgstr "Beiträge, in denen es um Dich geht" @@ -7333,151 +6022,9 @@ msgstr "Gruppeneditor" msgid "Members" msgstr "Mitglieder" -#: mod/dfrn_request.php:99 -msgid "This introduction has already been accepted." -msgstr "Diese Kontaktanfrage wurde bereits akzeptiert." - -#: mod/dfrn_request.php:122 mod/dfrn_request.php:517 -msgid "Profile location is not valid or does not contain profile information." -msgstr "Profiladresse ist ungültig oder stellt keine Profildaten zur Verfügung." - -#: mod/dfrn_request.php:127 mod/dfrn_request.php:522 -msgid "Warning: profile location has no identifiable owner name." -msgstr "Warnung: Es konnte kein Name des Besitzers von der angegebenen Profiladresse gefunden werden." - -#: mod/dfrn_request.php:129 mod/dfrn_request.php:524 -msgid "Warning: profile location has no profile photo." -msgstr "Warnung: Es gibt kein Profilbild bei der angegebenen Profiladresse." - -#: mod/dfrn_request.php:132 mod/dfrn_request.php:527 -#, 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/dfrn_request.php:177 -msgid "Introduction complete." -msgstr "Kontaktanfrage abgeschlossen." - -#: mod/dfrn_request.php:219 -msgid "Unrecoverable protocol error." -msgstr "Nicht behebbarer Protokollfehler." - -#: mod/dfrn_request.php:247 -msgid "Profile unavailable." -msgstr "Profil nicht verfügbar." - -#: mod/dfrn_request.php:272 -#, php-format -msgid "%s has received too many connection requests today." -msgstr "%s hat heute zu viele Kontaktanfragen erhalten." - -#: mod/dfrn_request.php:273 -msgid "Spam protection measures have been invoked." -msgstr "Maßnahmen zum Spamschutz wurden ergriffen." - -#: mod/dfrn_request.php:274 -msgid "Friends are advised to please try again in 24 hours." -msgstr "Freunde sind angehalten, es in 24 Stunden erneut zu versuchen." - -#: mod/dfrn_request.php:336 -msgid "Invalid locator" -msgstr "Ungültiger Locator" - -#: mod/dfrn_request.php:345 -msgid "Invalid email address." -msgstr "Ungültige E-Mail-Adresse." - -#: mod/dfrn_request.php:372 -msgid "This account has not been configured for email. Request failed." -msgstr "Dieses Konto ist nicht für E-Mail konfiguriert. Anfrage fehlgeschlagen." - -#: mod/dfrn_request.php:475 -msgid "You have already introduced yourself here." -msgstr "Du hast Dich hier bereits vorgestellt." - -#: mod/dfrn_request.php:479 -#, php-format -msgid "Apparently you are already friends with %s." -msgstr "Es scheint so, als ob Du bereits mit %s in Kontakt stehst." - -#: mod/dfrn_request.php:500 -msgid "Invalid profile URL." -msgstr "Ungültige Profil-URL." - -#: mod/dfrn_request.php:599 -msgid "Your introduction has been sent." -msgstr "Deine Kontaktanfrage wurde gesendet." - -#: mod/dfrn_request.php:639 -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/dfrn_request.php:662 -msgid "Please login to confirm introduction." -msgstr "Bitte melde Dich an, um die Kontaktanfrage zu bestätigen." - -#: mod/dfrn_request.php:672 -msgid "" -"Incorrect identity currently logged in. Please login to " -"this profile." -msgstr "Momentan bist Du mit einer anderen Identität angemeldet. Bitte melde Dich mit diesem Profil an." - -#: mod/dfrn_request.php:686 mod/dfrn_request.php:703 -msgid "Confirm" -msgstr "Bestätigen" - -#: mod/dfrn_request.php:698 -msgid "Hide this contact" -msgstr "Verberge diesen Kontakt" - -#: mod/dfrn_request.php:701 -#, php-format -msgid "Welcome home %s." -msgstr "Willkommen zurück %s." - -#: mod/dfrn_request.php:702 -#, php-format -msgid "Please confirm your introduction/connection request to %s." -msgstr "Bitte bestätige Deine Kontaktanfrage bei %s." - -#: mod/dfrn_request.php:831 -msgid "" -"Please enter your 'Identity Address' from one of the following supported " -"communications networks:" -msgstr "Bitte gib die Adresse Deines Profils in einem der unterstützten sozialen Netzwerke an:" - -#: mod/dfrn_request.php:852 -#, php-format -msgid "" -"If you are not yet a member of the free social web, follow this link to find a public Friendica site and " -"join us today." -msgstr "Wenn du noch kein Mitglied dieses freien sozialen Netzwerks bist, folge diesem Link um einen öffentlichen Friendica-Server zu finden und beizutreten." - -#: mod/dfrn_request.php:857 -msgid "Friend/Connection Request" -msgstr "Kontaktanfrage" - -#: mod/dfrn_request.php:858 -msgid "" -"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, " -"testuser@identi.ca" -msgstr "Beispiele: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca" - -#: mod/dfrn_request.php:867 -msgid "StatusNet/Federated Social Web" -msgstr "StatusNet/Federated Social Web" - -#: mod/dfrn_request.php:869 -#, 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/group.php:192 mod/contacts.php:690 +msgid "All Contacts" +msgstr "Alle Kontakte" #: mod/profile_photo.php:44 msgid "Image uploaded but image cropping failed." @@ -7626,6 +6173,10 @@ msgstr "Spitznamen wählen: " msgid "Import your profile to this friendica instance" msgstr "Importiere Dein Profil auf diese Friendica Instanz" +#: mod/settings.php:36 mod/photos.php:118 +msgid "everybody" +msgstr "jeder" + #: mod/settings.php:60 msgid "Display" msgstr "Anzeige" @@ -7646,6 +6197,10 @@ msgstr "Konto löschen" msgid "Missing some important data!" msgstr "Wichtige Daten fehlen!" +#: mod/settings.php:158 mod/settings.php:689 mod/contacts.php:802 +msgid "Update" +msgstr "Aktualisierungen" + #: 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." @@ -7738,6 +6293,11 @@ msgstr "Du kannst dieses Programm nicht bearbeiten." msgid "Connected Apps" msgstr "Verbundene Programme" +#: mod/settings.php:725 mod/content.php:746 object/Item.php:122 +#: object/Item.php:124 +msgid "Edit" +msgstr "Bearbeiten" + #: mod/settings.php:727 msgid "Client key starts with" msgstr "Anwenderschlüssel beginnt mit" @@ -8171,6 +6731,14 @@ msgstr "Standard-Zugriffsrechte für Beiträge" msgid "(click to open/close)" msgstr "(klicke zum öffnen/schließen)" +#: mod/settings.php:1250 mod/photos.php:1187 mod/photos.php:1572 +msgid "Show to Groups" +msgstr "Zeige den Gruppen" + +#: mod/settings.php:1251 mod/photos.php:1188 mod/photos.php:1573 +msgid "Show to Contacts" +msgstr "Zeige den Kontakten" + #: mod/settings.php:1252 msgid "Default Private Post" msgstr "Privater Standardbeitrag" @@ -8458,6 +7026,10 @@ msgstr "Erfolg" msgid "failed" msgstr "Fehlgeschlagen" +#: mod/ostatus_subscribe.php:69 mod/content.php:792 object/Item.php:245 +msgid "ignored" +msgstr "Ignoriert" + #: mod/dfrn_poll.php:104 mod/dfrn_poll.php:537 #, php-format msgid "%1$s welcomes %2$s" @@ -8549,6 +7121,1384 @@ msgstr "Zwischen verschiedenen Identitäten oder Gemeinschafts-/Gruppenseiten we msgid "Select an identity to manage: " msgstr "Wähle eine Identität zum Verwalten aus: " +#: 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/contacts.php:159 mod/contacts.php:368 +msgid "Could not access contact record." +msgstr "Konnte nicht auf die Kontaktdaten zugreifen." + +#: mod/contacts.php:173 +msgid "Could not locate selected profile." +msgstr "Konnte das ausgewählte Profil nicht finden." + +#: mod/contacts.php:206 +msgid "Contact updated." +msgstr "Kontakt aktualisiert." + +#: mod/contacts.php:208 mod/dfrn_request.php:579 +msgid "Failed to update contact record." +msgstr "Aktualisierung der Kontaktdaten fehlgeschlagen." + +#: mod/contacts.php:389 +msgid "Contact has been blocked" +msgstr "Kontakt wurde blockiert" + +#: mod/contacts.php:389 +msgid "Contact has been unblocked" +msgstr "Kontakt wurde wieder freigegeben" + +#: mod/contacts.php:400 +msgid "Contact has been ignored" +msgstr "Kontakt wurde ignoriert" + +#: mod/contacts.php:400 +msgid "Contact has been unignored" +msgstr "Kontakt wird nicht mehr ignoriert" + +#: mod/contacts.php:412 +msgid "Contact has been archived" +msgstr "Kontakt wurde archiviert" + +#: mod/contacts.php:412 +msgid "Contact has been unarchived" +msgstr "Kontakt wurde aus dem Archiv geholt" + +#: mod/contacts.php:437 +msgid "Drop contact" +msgstr "Kontakt löschen" + +#: mod/contacts.php:440 mod/contacts.php:799 +msgid "Do you really want to delete this contact?" +msgstr "Möchtest Du wirklich diesen Kontakt löschen?" + +#: mod/contacts.php:457 +msgid "Contact has been removed." +msgstr "Kontakt wurde entfernt." + +#: mod/contacts.php:498 +#, php-format +msgid "You are mutual friends with %s" +msgstr "Du hast mit %s eine beidseitige Freundschaft" + +#: mod/contacts.php:502 +#, php-format +msgid "You are sharing with %s" +msgstr "Du teilst mit %s" + +#: mod/contacts.php:507 +#, php-format +msgid "%s is sharing with you" +msgstr "%s teilt mit Dir" + +#: 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/contacts.php:534 +msgid "(Update was successful)" +msgstr "(Aktualisierung war erfolgreich)" + +#: mod/contacts.php:534 +msgid "(Update was not successful)" +msgstr "(Aktualisierung war nicht erfolgreich)" + +#: mod/contacts.php:536 mod/contacts.php:978 +msgid "Suggest friends" +msgstr "Kontakte vorschlagen" + +#: mod/contacts.php:540 +#, php-format +msgid "Network type: %s" +msgstr "Netzwerktyp: %s" + +#: mod/contacts.php:553 +msgid "Communications lost with this contact!" +msgstr "Verbindungen mit diesem Kontakt verloren!" + +#: mod/contacts.php:556 +msgid "Fetch further information for feeds" +msgstr "Weitere Informationen zu Feeds holen" + +#: mod/contacts.php:557 +msgid "Fetch information" +msgstr "Beziehe Information" + +#: mod/contacts.php:557 +msgid "Fetch information and keywords" +msgstr "Beziehe Information und Schlüsselworte" + +#: mod/contacts.php:575 +msgid "Contact" +msgstr "Kontakt: " + +#: mod/contacts.php:578 +msgid "Profile Visibility" +msgstr "Profil-Sichtbarkeit" + +#: 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/contacts.php:580 +msgid "Contact Information / Notes" +msgstr "Kontakt Informationen / Notizen" + +#: mod/contacts.php:581 +msgid "Edit contact notes" +msgstr "Notizen zum Kontakt bearbeiten" + +#: mod/contacts.php:587 +msgid "Block/Unblock contact" +msgstr "Kontakt blockieren/freischalten" + +#: mod/contacts.php:588 +msgid "Ignore contact" +msgstr "Ignoriere den Kontakt" + +#: mod/contacts.php:589 +msgid "Repair URL settings" +msgstr "URL Einstellungen reparieren" + +#: mod/contacts.php:590 +msgid "View conversations" +msgstr "Unterhaltungen anzeigen" + +#: mod/contacts.php:596 +msgid "Last update:" +msgstr "Letzte Aktualisierung: " + +#: mod/contacts.php:598 +msgid "Update public posts" +msgstr "Öffentliche Beiträge aktualisieren" + +#: mod/contacts.php:600 mod/contacts.php:988 +msgid "Update now" +msgstr "Jetzt aktualisieren" + +#: mod/contacts.php:606 mod/contacts.php:804 mod/contacts.php:1005 +msgid "Unignore" +msgstr "Ignorieren aufheben" + +#: mod/contacts.php:606 mod/contacts.php:804 mod/contacts.php:1005 +#: mod/notifications.php:54 mod/notifications.php:142 +#: mod/notifications.php:227 +msgid "Ignore" +msgstr "Ignorieren" + +#: mod/contacts.php:610 +msgid "Currently blocked" +msgstr "Derzeit geblockt" + +#: mod/contacts.php:611 +msgid "Currently ignored" +msgstr "Derzeit ignoriert" + +#: mod/contacts.php:612 +msgid "Currently archived" +msgstr "Momentan archiviert" + +#: mod/contacts.php:613 mod/notifications.php:135 mod/notifications.php:215 +msgid "Hide this contact from others" +msgstr "Verbirg diesen Kontakt vor andere" + +#: mod/contacts.php:613 +msgid "" +"Replies/likes to your public posts may still be visible" +msgstr "Antworten/Likes auf deine öffentlichen Beiträge könnten weiterhin sichtbar sein" + +#: mod/contacts.php:614 +msgid "Notification for new posts" +msgstr "Benachrichtigung bei neuen Beiträgen" + +#: 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/contacts.php:617 +msgid "Blacklisted keywords" +msgstr "Blacklistete Schlüsselworte " + +#: 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/contacts.php:633 +msgid "Actions" +msgstr "Aktionen" + +#: mod/contacts.php:636 +msgid "Contact Settings" +msgstr "Kontakteinstellungen" + +#: mod/contacts.php:682 +msgid "Suggestions" +msgstr "Kontaktvorschläge" + +#: mod/contacts.php:685 +msgid "Suggest potential friends" +msgstr "Kontakte vorschlagen" + +#: mod/contacts.php:693 +msgid "Show all contacts" +msgstr "Alle Kontakte anzeigen" + +#: mod/contacts.php:698 +msgid "Unblocked" +msgstr "Ungeblockt" + +#: mod/contacts.php:701 +msgid "Only show unblocked contacts" +msgstr "Nur nicht-blockierte Kontakte anzeigen" + +#: mod/contacts.php:707 +msgid "Blocked" +msgstr "Geblockt" + +#: mod/contacts.php:710 +msgid "Only show blocked contacts" +msgstr "Nur blockierte Kontakte anzeigen" + +#: mod/contacts.php:716 +msgid "Ignored" +msgstr "Ignoriert" + +#: mod/contacts.php:719 +msgid "Only show ignored contacts" +msgstr "Nur ignorierte Kontakte anzeigen" + +#: mod/contacts.php:725 +msgid "Archived" +msgstr "Archiviert" + +#: mod/contacts.php:728 +msgid "Only show archived contacts" +msgstr "Nur archivierte Kontakte anzeigen" + +#: mod/contacts.php:734 +msgid "Hidden" +msgstr "Verborgen" + +#: mod/contacts.php:737 +msgid "Only show hidden contacts" +msgstr "Nur verborgene Kontakte anzeigen" + +#: mod/contacts.php:794 +msgid "Search your contacts" +msgstr "Suche in deinen Kontakten" + +#: mod/contacts.php:805 mod/contacts.php:1013 +msgid "Archive" +msgstr "Archivieren" + +#: mod/contacts.php:805 mod/contacts.php:1013 +msgid "Unarchive" +msgstr "Aus Archiv zurückholen" + +#: mod/contacts.php:808 +msgid "Batch Actions" +msgstr "Stapelverarbeitung" + +#: mod/contacts.php:854 +msgid "View all contacts" +msgstr "Alle Kontakte anzeigen" + +#: mod/contacts.php:864 +msgid "View all common friends" +msgstr "Alle Kontakte anzeigen" + +#: mod/contacts.php:871 +msgid "Advanced Contact Settings" +msgstr "Fortgeschrittene Kontakteinstellungen" + +#: mod/contacts.php:916 +msgid "Mutual Friendship" +msgstr "Beidseitige Freundschaft" + +#: mod/contacts.php:920 +msgid "is a fan of yours" +msgstr "ist ein Fan von dir" + +#: mod/contacts.php:924 +msgid "you are a fan of" +msgstr "Du bist Fan von" + +#: mod/contacts.php:999 +msgid "Toggle Blocked status" +msgstr "Geblockt-Status ein-/ausschalten" + +#: mod/contacts.php:1007 +msgid "Toggle Ignored status" +msgstr "Ignoriert-Status ein-/ausschalten" + +#: mod/contacts.php:1015 +msgid "Toggle Archive status" +msgstr "Archiviert-Status ein-/ausschalten" + +#: mod/contacts.php:1023 +msgid "Delete contact" +msgstr "Lösche den Kontakt" + +#: 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 "" +"WARNING: This is highly advanced and if you enter incorrect" +" information your communications with this contact may stop working." +msgstr "ACHTUNG: Das sind Experten-Einstellungen! Wenn Du etwas Falsches eingibst, funktioniert die Kommunikation mit diesem Kontakt evtl. nicht mehr." + +#: mod/crepair.php:121 +msgid "" +"Please use your browser 'Back' button now if you are " +"uncertain what to do on this page." +msgstr "Bitte nutze den Zurück-Button Deines Browsers jetzt, wenn Du Dir unsicher bist, was Du tun willst." + +#: mod/crepair.php: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: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/dfrn_confirm.php:66 mod/profiles.php:19 mod/profiles.php:134 +#: mod/profiles.php:180 mod/profiles.php:611 +msgid "Profile not found." +msgstr "Profil nicht gefunden." + +#: mod/dfrn_confirm.php:123 +msgid "" +"This may occasionally happen if contact was requested by both persons and it" +" has already been approved." +msgstr "Das kann passieren, wenn sich zwei Kontakte gegenseitig eingeladen haben und bereits einer angenommen wurde." + +#: mod/dfrn_confirm.php:242 +msgid "Response from remote site was not understood." +msgstr "Antwort der Gegenstelle unverständlich." + +#: mod/dfrn_confirm.php:251 mod/dfrn_confirm.php:256 +msgid "Unexpected response from remote site: " +msgstr "Unerwartete Antwort der Gegenstelle: " + +#: mod/dfrn_confirm.php:265 +msgid "Confirmation completed successfully." +msgstr "Bestätigung erfolgreich abgeschlossen." + +#: mod/dfrn_confirm.php:267 mod/dfrn_confirm.php:281 mod/dfrn_confirm.php:288 +msgid "Remote site reported: " +msgstr "Gegenstelle meldet: " + +#: mod/dfrn_confirm.php:279 +msgid "Temporary failure. Please wait and try again." +msgstr "Zeitweiser Fehler. Bitte warte einige Momente und versuche es dann noch einmal." + +#: mod/dfrn_confirm.php:286 +msgid "Introduction failed or was revoked." +msgstr "Kontaktanfrage schlug fehl oder wurde zurückgezogen." + +#: mod/dfrn_confirm.php:415 +msgid "Unable to set contact photo." +msgstr "Konnte das Bild des Kontakts nicht speichern." + +#: mod/dfrn_confirm.php:553 +#, php-format +msgid "No user record found for '%s' " +msgstr "Für '%s' wurde kein Nutzer gefunden" + +#: mod/dfrn_confirm.php:563 +msgid "Our site encryption key is apparently messed up." +msgstr "Der Verschlüsselungsschlüssel unserer Seite ist anscheinend nicht in Ordnung." + +#: mod/dfrn_confirm.php:574 +msgid "Empty site URL was provided or URL could not be decrypted by us." +msgstr "Leere URL für die Seite erhalten oder die URL konnte nicht entschlüsselt werden." + +#: mod/dfrn_confirm.php:595 +msgid "Contact record was not found for you on our site." +msgstr "Für diesen Kontakt wurde auf unserer Seite kein Eintrag gefunden." + +#: mod/dfrn_confirm.php:609 +#, php-format +msgid "Site public key not available in contact record for URL %s." +msgstr "Die Kontaktdaten für URL %s enthalten keinen Public Key für den Server." + +#: mod/dfrn_confirm.php:629 +msgid "" +"The ID provided by your system is a duplicate on our system. It should work " +"if you try again." +msgstr "Die ID, die uns Dein System angeboten hat, ist hier bereits vergeben. Bitte versuche es noch einmal." + +#: mod/dfrn_confirm.php:640 +msgid "Unable to set your contact credentials on our system." +msgstr "Deine Kontaktreferenzen konnten nicht in unserem System gespeichert werden." + +#: mod/dfrn_confirm.php:699 +msgid "Unable to update your contact profile details on our system" +msgstr "Die Updates für Dein Profil konnten nicht gespeichert werden" + +#: mod/dfrn_confirm.php:771 +#, php-format +msgid "%1$s has joined %2$s" +msgstr "%1$s ist %2$s beigetreten" + +#: mod/dfrn_request.php:100 +msgid "This introduction has already been accepted." +msgstr "Diese Kontaktanfrage wurde bereits akzeptiert." + +#: mod/dfrn_request.php:123 mod/dfrn_request.php:518 +msgid "Profile location is not valid or does not contain profile information." +msgstr "Profiladresse ist ungültig oder stellt keine Profildaten zur Verfügung." + +#: mod/dfrn_request.php:128 mod/dfrn_request.php:523 +msgid "Warning: profile location has no identifiable owner name." +msgstr "Warnung: Es konnte kein Name des Besitzers von der angegebenen Profiladresse gefunden werden." + +#: mod/dfrn_request.php:130 mod/dfrn_request.php:525 +msgid "Warning: profile location has no profile photo." +msgstr "Warnung: Es gibt kein Profilbild bei der angegebenen Profiladresse." + +#: mod/dfrn_request.php:133 mod/dfrn_request.php:528 +#, php-format +msgid "%d required parameter was not found at the given location" +msgid_plural "%d required parameters were not found at the given location" +msgstr[0] "%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/dfrn_request.php:178 +msgid "Introduction complete." +msgstr "Kontaktanfrage abgeschlossen." + +#: mod/dfrn_request.php:220 +msgid "Unrecoverable protocol error." +msgstr "Nicht behebbarer Protokollfehler." + +#: mod/dfrn_request.php:248 +msgid "Profile unavailable." +msgstr "Profil nicht verfügbar." + +#: mod/dfrn_request.php:273 +#, php-format +msgid "%s has received too many connection requests today." +msgstr "%s hat heute zu viele Kontaktanfragen erhalten." + +#: mod/dfrn_request.php:274 +msgid "Spam protection measures have been invoked." +msgstr "Maßnahmen zum Spamschutz wurden ergriffen." + +#: mod/dfrn_request.php:275 +msgid "Friends are advised to please try again in 24 hours." +msgstr "Freunde sind angehalten, es in 24 Stunden erneut zu versuchen." + +#: mod/dfrn_request.php:337 +msgid "Invalid locator" +msgstr "Ungültiger Locator" + +#: mod/dfrn_request.php:346 +msgid "Invalid email address." +msgstr "Ungültige E-Mail-Adresse." + +#: mod/dfrn_request.php:373 +msgid "This account has not been configured for email. Request failed." +msgstr "Dieses Konto ist nicht für E-Mail konfiguriert. Anfrage fehlgeschlagen." + +#: mod/dfrn_request.php:476 +msgid "You have already introduced yourself here." +msgstr "Du hast Dich hier bereits vorgestellt." + +#: mod/dfrn_request.php:480 +#, php-format +msgid "Apparently you are already friends with %s." +msgstr "Es scheint so, als ob Du bereits mit %s in Kontakt stehst." + +#: mod/dfrn_request.php:501 +msgid "Invalid profile URL." +msgstr "Ungültige Profil-URL." + +#: mod/dfrn_request.php:600 +msgid "Your introduction has been sent." +msgstr "Deine Kontaktanfrage wurde gesendet." + +#: mod/dfrn_request.php:640 +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/dfrn_request.php:663 +msgid "Please login to confirm introduction." +msgstr "Bitte melde Dich an, um die Kontaktanfrage zu bestätigen." + +#: mod/dfrn_request.php:673 +msgid "" +"Incorrect identity currently logged in. Please login to " +"this profile." +msgstr "Momentan bist Du mit einer anderen Identität angemeldet. Bitte melde Dich mit diesem Profil an." + +#: mod/dfrn_request.php:687 mod/dfrn_request.php:704 +msgid "Confirm" +msgstr "Bestätigen" + +#: mod/dfrn_request.php:699 +msgid "Hide this contact" +msgstr "Verberge diesen Kontakt" + +#: mod/dfrn_request.php:702 +#, php-format +msgid "Welcome home %s." +msgstr "Willkommen zurück %s." + +#: mod/dfrn_request.php:703 +#, php-format +msgid "Please confirm your introduction/connection request to %s." +msgstr "Bitte bestätige Deine Kontaktanfrage bei %s." + +#: mod/dfrn_request.php:832 +msgid "" +"Please enter your 'Identity Address' from one of the following supported " +"communications networks:" +msgstr "Bitte gib die Adresse Deines Profils in einem der unterstützten sozialen Netzwerke an:" + +#: mod/dfrn_request.php:853 +#, php-format +msgid "" +"If you are not yet a member of the free social web, follow this link to find a public Friendica site and " +"join us today." +msgstr "Wenn du noch kein Mitglied dieses freien sozialen Netzwerks bist, folge diesem Link um einen öffentlichen Friendica-Server zu finden und beizutreten." + +#: mod/dfrn_request.php:858 +msgid "Friend/Connection Request" +msgstr "Kontaktanfrage" + +#: mod/dfrn_request.php:859 +msgid "" +"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, " +"testuser@identi.ca" +msgstr "Beispiele: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca" + +#: mod/dfrn_request.php:868 +msgid "StatusNet/Federated Social Web" +msgstr "StatusNet/Federated Social Web" + +#: mod/dfrn_request.php:870 +#, 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/photos.php:101 mod/photos.php:1887 +msgid "Recent Photos" +msgstr "Neueste Fotos" + +#: mod/photos.php:104 mod/photos.php:1308 mod/photos.php:1889 +msgid "Upload New Photos" +msgstr "Neue Fotos hochladen" + +#: mod/photos.php:182 +msgid "Contact information unavailable" +msgstr "Kontaktinformationen nicht verfügbar" + +#: mod/photos.php:203 +msgid "Album not found." +msgstr "Album nicht gefunden." + +#: mod/photos.php:233 mod/photos.php:245 mod/photos.php:1250 +msgid "Delete Album" +msgstr "Album löschen" + +#: mod/photos.php:243 +msgid "Do you really want to delete this photo album and all its photos?" +msgstr "Möchtest Du wirklich dieses Foto-Album und all seine Foto löschen?" + +#: mod/photos.php:323 mod/photos.php:334 mod/photos.php:1568 +msgid "Delete Photo" +msgstr "Foto löschen" + +#: mod/photos.php:332 +msgid "Do you really want to delete this photo?" +msgstr "Möchtest Du wirklich dieses Foto löschen?" + +#: mod/photos.php:707 +#, php-format +msgid "%1$s was tagged in %2$s by %3$s" +msgstr "%1$s wurde von %3$s in %2$s getaggt" + +#: mod/photos.php:707 +msgid "a photo" +msgstr "einem Foto" + +#: mod/photos.php:814 +msgid "Image file is empty." +msgstr "Bilddatei ist leer." + +#: mod/photos.php:974 +msgid "No photos selected" +msgstr "Keine Bilder ausgewählt" + +#: mod/photos.php:1135 +#, php-format +msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage." +msgstr "Du verwendest %1$.2f Mbyte von %2$.2f Mbyte des Foto-Speichers." + +#: mod/photos.php:1170 +msgid "Upload Photos" +msgstr "Bilder hochladen" + +#: mod/photos.php:1174 mod/photos.php:1245 +msgid "New album name: " +msgstr "Name des neuen Albums: " + +#: mod/photos.php:1175 +msgid "or existing album name: " +msgstr "oder existierender Albumname: " + +#: mod/photos.php:1176 +msgid "Do not show a status post for this upload" +msgstr "Keine Status-Mitteilung für diesen Beitrag anzeigen" + +#: mod/photos.php:1189 +msgid "Private Photo" +msgstr "Privates Foto" + +#: mod/photos.php:1190 +msgid "Public Photo" +msgstr "Öffentliches Foto" + +#: mod/photos.php:1258 +msgid "Edit Album" +msgstr "Album bearbeiten" + +#: mod/photos.php:1264 +msgid "Show Newest First" +msgstr "Zeige neueste zuerst" + +#: mod/photos.php:1266 +msgid "Show Oldest First" +msgstr "Zeige älteste zuerst" + +#: mod/photos.php:1294 mod/photos.php:1872 +msgid "View Photo" +msgstr "Foto betrachten" + +#: mod/photos.php:1341 +msgid "Permission denied. Access to this item may be restricted." +msgstr "Zugriff verweigert. Zugriff zu diesem Eintrag könnte eingeschränkt sein." + +#: mod/photos.php:1343 +msgid "Photo not available" +msgstr "Foto nicht verfügbar" + +#: mod/photos.php:1399 +msgid "View photo" +msgstr "Fotos ansehen" + +#: mod/photos.php:1399 +msgid "Edit photo" +msgstr "Foto bearbeiten" + +#: mod/photos.php:1400 +msgid "Use as profile photo" +msgstr "Als Profilbild verwenden" + +#: mod/photos.php:1406 mod/content.php:638 object/Item.php:117 +msgid "Private Message" +msgstr "Private Nachricht" + +#: mod/photos.php:1425 +msgid "View Full Size" +msgstr "Betrachte Originalgröße" + +#: mod/photos.php:1511 +msgid "Tags: " +msgstr "Tags: " + +#: mod/photos.php:1514 +msgid "[Remove any tag]" +msgstr "[Tag entfernen]" + +#: mod/photos.php:1554 +msgid "New album name" +msgstr "Name des neuen Albums" + +#: mod/photos.php:1555 +msgid "Caption" +msgstr "Bildunterschrift" + +#: mod/photos.php:1556 +msgid "Add a Tag" +msgstr "Tag hinzufügen" + +#: mod/photos.php:1556 +msgid "" +"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" +msgstr "Beispiel: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" + +#: mod/photos.php:1557 +msgid "Do not rotate" +msgstr "Nicht rotieren" + +#: mod/photos.php:1558 +msgid "Rotate CW (right)" +msgstr "Drehen US (rechts)" + +#: mod/photos.php:1559 +msgid "Rotate CCW (left)" +msgstr "Drehen EUS (links)" + +#: mod/photos.php:1574 +msgid "Private photo" +msgstr "Privates Foto" + +#: mod/photos.php:1575 +msgid "Public photo" +msgstr "Öffentliches Foto" + +#: mod/photos.php:1595 mod/content.php:702 object/Item.php:263 +msgid "I like this (toggle)" +msgstr "Ich mag das (toggle)" + +#: mod/photos.php:1596 mod/content.php:703 object/Item.php:264 +msgid "I don't like this (toggle)" +msgstr "Ich mag das nicht (toggle)" + +#: mod/photos.php:1615 mod/photos.php:1663 mod/photos.php:1751 +#: mod/content.php:725 object/Item.php:717 +msgid "This is you" +msgstr "Das bist Du" + +#: mod/photos.php:1617 mod/photos.php:1665 mod/photos.php:1753 +#: mod/content.php:727 mod/content.php:945 object/Item.php:403 +#: object/Item.php:719 boot.php:888 +msgid "Comment" +msgstr "Kommentar" + +#: mod/photos.php:1801 +msgid "Map" +msgstr "Karte" + +#: mod/profiles.php:38 +msgid "Profile deleted." +msgstr "Profil gelöscht." + +#: mod/profiles.php:56 mod/profiles.php:90 +msgid "Profile-" +msgstr "Profil-" + +#: mod/profiles.php:75 mod/profiles.php:118 +msgid "New profile created." +msgstr "Neues Profil angelegt." + +#: mod/profiles.php:96 +msgid "Profile unavailable to clone." +msgstr "Profil nicht zum Duplizieren verfügbar." + +#: mod/profiles.php:190 +msgid "Profile Name is required." +msgstr "Profilname ist erforderlich." + +#: mod/profiles.php:337 +msgid "Marital Status" +msgstr "Familienstand" + +#: mod/profiles.php:341 +msgid "Romantic Partner" +msgstr "Romanze" + +#: mod/profiles.php:353 +msgid "Work/Employment" +msgstr "Arbeit / Beschäftigung" + +#: mod/profiles.php:356 +msgid "Religion" +msgstr "Religion" + +#: mod/profiles.php:360 +msgid "Political Views" +msgstr "Politische Ansichten" + +#: mod/profiles.php:364 +msgid "Gender" +msgstr "Geschlecht" + +#: mod/profiles.php:368 +msgid "Sexual Preference" +msgstr "Sexuelle Vorlieben" + +#: mod/profiles.php:372 +msgid "Homepage" +msgstr "Webseite" + +#: mod/profiles.php:376 mod/profiles.php:696 +msgid "Interests" +msgstr "Interessen" + +#: mod/profiles.php:380 +msgid "Address" +msgstr "Adresse" + +#: mod/profiles.php:387 mod/profiles.php:692 +msgid "Location" +msgstr "Wohnort" + +#: mod/profiles.php:470 +msgid "Profile updated." +msgstr "Profil aktualisiert." + +#: mod/profiles.php:557 +msgid " and " +msgstr " und " + +#: mod/profiles.php:565 +msgid "public profile" +msgstr "öffentliches Profil" + +#: mod/profiles.php:568 +#, php-format +msgid "%1$s changed %2$s to “%3$s”" +msgstr "%1$s hat %2$s geändert auf “%3$s”" + +#: mod/profiles.php:569 +#, php-format +msgid " - Visit %1$s's %2$s" +msgstr " – %1$ss %2$s besuchen" + +#: mod/profiles.php:572 +#, 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/profiles.php:639 +msgid "Hide contacts and friends:" +msgstr "Kontakte und Freunde verbergen" + +#: mod/profiles.php:644 +msgid "Hide your contact/friend list from viewers of this profile?" +msgstr "Liste der Kontakte vor Betrachtern dieses Profils verbergen?" + +#: mod/profiles.php:668 +msgid "Show more profile fields:" +msgstr "Zeige mehr Profil-Felder:" + +#: mod/profiles.php:680 +msgid "Profile Actions" +msgstr "Profilaktionen" + +#: mod/profiles.php:681 +msgid "Edit Profile Details" +msgstr "Profil bearbeiten" + +#: mod/profiles.php:683 +msgid "Change Profile Photo" +msgstr "Profilbild ändern" + +#: mod/profiles.php:684 +msgid "View this profile" +msgstr "Dieses Profil anzeigen" + +#: mod/profiles.php:686 +msgid "Create a new profile using these settings" +msgstr "Neues Profil anlegen und diese Einstellungen verwenden" + +#: mod/profiles.php:687 +msgid "Clone this profile" +msgstr "Dieses Profil duplizieren" + +#: mod/profiles.php:688 +msgid "Delete this profile" +msgstr "Dieses Profil löschen" + +#: mod/profiles.php:690 +msgid "Basic information" +msgstr "Grundinformationen" + +#: mod/profiles.php:691 +msgid "Profile picture" +msgstr "Profilbild" + +#: mod/profiles.php:693 +msgid "Preferences" +msgstr "Vorlieben" + +#: mod/profiles.php:694 +msgid "Status information" +msgstr "Status Informationen" + +#: mod/profiles.php:695 +msgid "Additional information" +msgstr "Zusätzliche Informationen" + +#: mod/profiles.php:698 +msgid "Relation" +msgstr "Beziehung" + +#: mod/profiles.php:702 +msgid "Your Gender:" +msgstr "Dein Geschlecht:" + +#: mod/profiles.php:703 +msgid " Marital Status:" +msgstr " Beziehungsstatus:" + +#: mod/profiles.php:705 +msgid "Example: fishing photography software" +msgstr "Beispiel: Fischen Fotografie Software" + +#: mod/profiles.php:710 +msgid "Profile Name:" +msgstr "Profilname:" + +#: mod/profiles.php:712 +msgid "" +"This is your public profile.
It may " +"be visible to anybody using the internet." +msgstr "Dies ist Dein öffentliches Profil.
Es könnte für jeden Nutzer des Internets sichtbar sein." + +#: mod/profiles.php:713 +msgid "Your Full Name:" +msgstr "Dein kompletter Name:" + +#: mod/profiles.php:714 +msgid "Title/Description:" +msgstr "Titel/Beschreibung:" + +#: mod/profiles.php:717 +msgid "Street Address:" +msgstr "Adresse:" + +#: mod/profiles.php:718 +msgid "Locality/City:" +msgstr "Wohnort:" + +#: mod/profiles.php:719 +msgid "Region/State:" +msgstr "Region/Bundesstaat:" + +#: mod/profiles.php:720 +msgid "Postal/Zip Code:" +msgstr "Postleitzahl:" + +#: mod/profiles.php:721 +msgid "Country:" +msgstr "Land:" + +#: mod/profiles.php:725 +msgid "Who: (if applicable)" +msgstr "Wer: (falls anwendbar)" + +#: mod/profiles.php:725 +msgid "Examples: cathy123, Cathy Williams, cathy@example.com" +msgstr "Beispiele: cathy123, Cathy Williams, cathy@example.com" + +#: mod/profiles.php:726 +msgid "Since [date]:" +msgstr "Seit [Datum]:" + +#: mod/profiles.php:728 +msgid "Tell us about yourself..." +msgstr "Erzähle uns ein bisschen von Dir …" + +#: mod/profiles.php:729 +msgid "Homepage URL:" +msgstr "Adresse der Homepage:" + +#: mod/profiles.php:732 +msgid "Religious Views:" +msgstr "Religiöse Ansichten:" + +#: mod/profiles.php:733 +msgid "Public Keywords:" +msgstr "Öffentliche Schlüsselwörter:" + +#: mod/profiles.php:733 +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:734 +msgid "Private Keywords:" +msgstr "Private Schlüsselwörter:" + +#: mod/profiles.php:734 +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:737 +msgid "Musical interests" +msgstr "Musikalische Interessen" + +#: mod/profiles.php:738 +msgid "Books, literature" +msgstr "Bücher, Literatur" + +#: mod/profiles.php:739 +msgid "Television" +msgstr "Fernsehen" + +#: mod/profiles.php:740 +msgid "Film/dance/culture/entertainment" +msgstr "Filme/Tänze/Kultur/Unterhaltung" + +#: mod/profiles.php:741 +msgid "Hobbies/Interests" +msgstr "Hobbies/Interessen" + +#: mod/profiles.php:742 +msgid "Love/romance" +msgstr "Liebe/Romantik" + +#: mod/profiles.php:743 +msgid "Work/employment" +msgstr "Arbeit/Anstellung" + +#: mod/profiles.php:744 +msgid "School/education" +msgstr "Schule/Ausbildung" + +#: mod/profiles.php:745 +msgid "Contact information and Social Networks" +msgstr "Kontaktinformationen und Soziale Netzwerke" + +#: mod/profiles.php:787 +msgid "Edit/Manage Profiles" +msgstr "Bearbeite/Verwalte Profile" + +#: mod/content.php:325 object/Item.php:95 +msgid "This entry was edited" +msgstr "Dieser Beitrag wurde bearbeitet." + +#: 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/content.php:702 object/Item.php:263 +msgid "like" +msgstr "mag ich" + +#: mod/content.php:703 object/Item.php:264 +msgid "dislike" +msgstr "mag ich nicht" + +#: mod/content.php:705 object/Item.php:266 +msgid "Share this" +msgstr "Weitersagen" + +#: mod/content.php:705 object/Item.php:266 +msgid "share" +msgstr "Teilen" + +#: mod/content.php:729 object/Item.php:721 +msgid "Bold" +msgstr "Fett" + +#: mod/content.php:730 object/Item.php:722 +msgid "Italic" +msgstr "Kursiv" + +#: mod/content.php:731 object/Item.php:723 +msgid "Underline" +msgstr "Unterstrichen" + +#: mod/content.php:732 object/Item.php:724 +msgid "Quote" +msgstr "Zitat" + +#: mod/content.php:733 object/Item.php:725 +msgid "Code" +msgstr "Code" + +#: mod/content.php:734 object/Item.php:726 +msgid "Image" +msgstr "Bild" + +#: mod/content.php:735 object/Item.php:727 +msgid "Link" +msgstr "Link" + +#: mod/content.php:736 object/Item.php:728 +msgid "Video" +msgstr "Video" + +#: mod/content.php:771 object/Item.php:227 +msgid "add star" +msgstr "markieren" + +#: mod/content.php:772 object/Item.php:228 +msgid "remove star" +msgstr "Markierung entfernen" + +#: mod/content.php:773 object/Item.php:229 +msgid "toggle star status" +msgstr "Markierung umschalten" + +#: mod/content.php:776 object/Item.php:232 +msgid "starred" +msgstr "markiert" + +#: mod/content.php:777 mod/content.php:798 object/Item.php:252 +msgid "add tag" +msgstr "Tag hinzufügen" + +#: mod/content.php:787 object/Item.php:240 +msgid "ignore thread" +msgstr "Thread ignorieren" + +#: mod/content.php:788 object/Item.php:241 +msgid "unignore thread" +msgstr "Thread nicht mehr ignorieren" + +#: mod/content.php:789 object/Item.php:242 +msgid "toggle ignore status" +msgstr "Ignoriert-Status ein-/ausschalten" + +#: mod/content.php:803 object/Item.php:137 +msgid "save to folder" +msgstr "In Ordner speichern" + +#: mod/content.php:848 object/Item.php:201 +msgid "I will attend" +msgstr "Ich werde teilnehmen" + +#: mod/content.php:848 object/Item.php:201 +msgid "I will not attend" +msgstr "Ich werde nicht teilnehmen" + +#: mod/content.php:848 object/Item.php:201 +msgid "I might attend" +msgstr "Ich werde eventuell teilnehmen" + +#: mod/content.php:912 object/Item.php:369 +msgid "to" +msgstr "zu" + +#: mod/content.php:913 object/Item.php:371 +msgid "Wall-to-Wall" +msgstr "Wall-to-Wall" + +#: mod/content.php:914 object/Item.php:372 +msgid "via Wall-To-Wall:" +msgstr "via Wall-To-Wall:" + +#: mod/notifications.php:29 +msgid "Invalid request identifier." +msgstr "Invalid request identifier." + +#: mod/notifications.php:38 mod/notifications.php:143 +#: mod/notifications.php:228 +msgid "Discard" +msgstr "Verwerfen" + +#: mod/notifications.php:91 +msgid "Show Ignored Requests" +msgstr "Zeige ignorierte Anfragen" + +#: mod/notifications.php:91 +msgid "Hide Ignored Requests" +msgstr "Verberge ignorierte Anfragen" + +#: mod/notifications.php:127 mod/notifications.php:198 +msgid "Notification type: " +msgstr "Benachrichtigungstyp: " + +#: mod/notifications.php:128 +msgid "Friend Suggestion" +msgstr "Kontaktvorschlag" + +#: mod/notifications.php:130 +#, php-format +msgid "suggested by %s" +msgstr "vorgeschlagen von %s" + +#: mod/notifications.php:136 mod/notifications.php:216 +msgid "Post a new friend activity" +msgstr "Neue-Kontakt Nachricht senden" + +#: mod/notifications.php:136 mod/notifications.php:216 +msgid "if applicable" +msgstr "falls anwendbar" + +#: mod/notifications.php:159 +msgid "Claims to be known to you: " +msgstr "Behauptet Dich zu kennen: " + +#: mod/notifications.php:160 +msgid "yes" +msgstr "ja" + +#: mod/notifications.php:160 +msgid "no" +msgstr "nein" + +#: mod/notifications.php:161 +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:" + +#: mod/notifications.php:164 +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:" + +#: mod/notifications.php:172 +msgid "Friend" +msgstr "Kontakt" + +#: mod/notifications.php:173 +msgid "Sharer" +msgstr "Teilenden" + +#: mod/notifications.php:173 +msgid "Fan/Admirer" +msgstr "Fan/Verehrer" + +#: mod/notifications.php:199 +msgid "Friend/Connect Request" +msgstr "Kontakt-/Freundschaftsanfrage" + +#: mod/notifications.php:199 +msgid "New Follower" +msgstr "Neuer Bewunderer" + +#: mod/notifications.php:234 +msgid "No introductions." +msgstr "Keine Kontaktanfragen." + +#: mod/notifications.php:238 +msgid "Network Notifications" +msgstr "Netzwerk Benachrichtigungen" + +#: mod/notifications.php:265 mod/notifications.php:382 +#: mod/notifications.php:461 +#, php-format +msgid "%s liked %s's post" +msgstr "%s mag %ss Beitrag" + +#: mod/notifications.php:275 mod/notifications.php:392 +#: mod/notifications.php:471 +#, php-format +msgid "%s disliked %s's post" +msgstr "%s mag %ss Beitrag nicht" + +#: mod/notifications.php:290 mod/notifications.php:407 +#: mod/notifications.php:486 +#, php-format +msgid "%s is now friends with %s" +msgstr "%s ist jetzt mit %s befreundet" + +#: mod/notifications.php:297 mod/notifications.php:414 +#, php-format +msgid "%s created a new post" +msgstr "%s hat einen neuen Beitrag erstellt" + +#: mod/notifications.php:298 mod/notifications.php:415 +#: mod/notifications.php:496 +#, php-format +msgid "%s commented on %s's post" +msgstr "%s hat %ss Beitrag kommentiert" + +#: mod/notifications.php:313 +msgid "No more network notifications." +msgstr "Keine weiteren Netzwerk-Benachrichtigungen." + +#: mod/notifications.php:343 +msgid "Personal Notifications" +msgstr "Persönliche Benachrichtigungen" + +#: mod/notifications.php:430 +msgid "No more personal notifications." +msgstr "Keine weiteren persönlichen Benachrichtigungen" + +#: mod/notifications.php:435 +msgid "Home Notifications" +msgstr "Pinnwand Benachrichtigungen" + +#: mod/notifications.php:503 +msgid "No more home notifications." +msgstr "Keine weiteren Pinnwand-Benachrichtigungen" + +#: mod/notifications.php:527 +msgid "System" +msgstr "System" + #: object/Item.php:370 msgid "via" msgstr "via" @@ -8807,3 +8757,56 @@ msgstr "slackr" #: view/theme/duepuntozero/config.php:62 msgid "Variations" msgstr "Variationen" + +#: index.php:447 +msgid "toggle mobile" +msgstr "auf/von Mobile Ansicht wechseln" + +#: boot.php:887 +msgid "Delete this item?" +msgstr "Diesen Beitrag löschen?" + +#: boot.php:890 +msgid "show fewer" +msgstr "weniger anzeigen" + +#: boot.php:1483 +#, php-format +msgid "Update %s failed. See error logs." +msgstr "Update %s fehlgeschlagen. Bitte Fehlerprotokoll überprüfen." + +#: boot.php:1595 +msgid "Create a New Account" +msgstr "Neues Konto erstellen" + +#: boot.php:1624 +msgid "Password: " +msgstr "Passwort: " + +#: boot.php:1625 +msgid "Remember me" +msgstr "Anmeldedaten merken" + +#: boot.php:1628 +msgid "Or login using OpenID: " +msgstr "Oder melde Dich mit Deiner OpenID an: " + +#: boot.php:1634 +msgid "Forgot your password?" +msgstr "Passwort vergessen?" + +#: boot.php:1637 +msgid "Website Terms of Service" +msgstr "Website Nutzungsbedingungen" + +#: boot.php:1638 +msgid "terms of service" +msgstr "Nutzungsbedingungen" + +#: boot.php:1640 +msgid "Website Privacy Policy" +msgstr "Website Datenschutzerklärung" + +#: boot.php:1641 +msgid "privacy policy" +msgstr "Datenschutzerklärung" diff --git a/view/de/strings.php b/view/de/strings.php index bd16af7a02..1fb71df9e9 100644 --- a/view/de/strings.php +++ b/view/de/strings.php @@ -5,25 +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: "; @@ -73,6 +54,7 @@ $a->strings["%d contact in common"] = array( 0 => "%d gemeinsamer Kontakt", 1 => "%d gemeinsame Kontakte", ); +$a->strings["show more"] = "mehr anzeigen"; $a->strings["Friendica Notification"] = "Friendica-Benachrichtigung"; $a->strings["Thank You,"] = "Danke,"; $a->strings["%s Administrator"] = "der Administrator von %s"; @@ -133,15 +115,8 @@ $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?"; @@ -341,7 +316,277 @@ $a->strings["comment"] = array( ); $a->strings["post"] = "Beitrag"; $a->strings["Item filed"] = "Beitrag abgelegt"; +$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["Message"] = "Nachricht"; +$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["Forum"] = "Forum"; +$a->strings["Gender:"] = "Geschlecht:"; +$a->strings["Status:"] = "Status:"; +$a->strings["Homepage:"] = "Homepage:"; +$a->strings["About:"] = "Über:"; +$a->strings["Network:"] = "Netzwerk:"; +$a->strings["g A l F d"] = "l, d. F G \\U\\h\\r"; +$a->strings["F d"] = "d. F"; +$a->strings["[today]"] = "[heute]"; +$a->strings["Birthday Reminders"] = "Geburtstagserinnerungen"; +$a->strings["Birthdays this week:"] = "Geburtstage diese Woche:"; +$a->strings["[No description]"] = "[keine Beschreibung]"; +$a->strings["Event Reminders"] = "Veranstaltungserinnerungen"; +$a->strings["Events this week:"] = "Veranstaltungen diese Woche"; +$a->strings["Profile"] = "Profil"; +$a->strings["Full Name:"] = "Kompletter Name:"; +$a->strings["j F, Y"] = "j F, Y"; +$a->strings["j F"] = "j F"; +$a->strings["Age:"] = "Alter:"; +$a->strings["for %1\$d %2\$s"] = "für %1\$d %2\$s"; +$a->strings["Sexual Preference:"] = "Sexuelle Vorlieben:"; +$a->strings["Hometown:"] = "Heimatort:"; +$a->strings["Tags:"] = "Tags"; +$a->strings["Political Views:"] = "Politische Ansichten:"; +$a->strings["Religion:"] = "Religion:"; +$a->strings["Hobbies/Interests:"] = "Hobbies/Interessen:"; +$a->strings["Likes:"] = "Likes:"; +$a->strings["Dislikes:"] = "Dislikes:"; +$a->strings["Contact information and Social Networks:"] = "Kontaktinformationen und Soziale Netzwerke:"; +$a->strings["Musical interests:"] = "Musikalische Interessen:"; +$a->strings["Books, literature:"] = "Literatur/Bücher:"; +$a->strings["Television:"] = "Fernsehen:"; +$a->strings["Film/dance/culture/entertainment:"] = "Filme/Tänze/Kultur/Unterhaltung:"; +$a->strings["Love/Romance:"] = "Liebesleben:"; +$a->strings["Work/employment:"] = "Arbeit/Beschäftigung:"; +$a->strings["School/education:"] = "Schule/Ausbildung:"; +$a->strings["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["Embedded content"] = "Eingebetteter Inhalt"; +$a->strings["Embedding disabled"] = "Einbettungen deaktiviert"; +$a->strings["Image/photo"] = "Bild/Foto"; +$a->strings["%2\$s %3\$s"] = "%2\$s %3\$s"; +$a->strings["$1 wrote:"] = "$1 hat geschrieben:"; +$a->strings["Encrypted content"] = "Verschlüsselter Inhalt"; +$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 may apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "Eine gelöschte Gruppe mit diesem Namen wurde wiederbelebt. Bestehende Berechtigungseinstellungen könnten auf diese Gruppe oder zukünftige Mitglieder angewandt werden. Falls Du dies nicht möchtest, erstelle bitte eine andere Gruppe mit einem anderen Namen."; +$a->strings["Default privacy group for new contacts"] = "Voreingestellte Gruppe für neue Kontakte"; +$a->strings["Everybody"] = "Alle Kontakte"; +$a->strings["edit"] = "bearbeiten"; +$a->strings["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["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."; +$a->strings["Invalid OpenID url"] = "Ungültige OpenID URL"; +$a->strings["Please enter the required information."] = "Bitte trage die erforderlichen Informationen ein."; +$a->strings["Please use a shorter name."] = "Bitte verwende einen kürzeren Namen."; +$a->strings["Name too short."] = "Der Name ist zu kurz."; +$a->strings["That doesn't appear to be your full (First Last) name."] = "Das scheint nicht Dein kompletter Name (Vor- und Nachname) zu sein."; +$a->strings["Your email domain is not among those allowed on this site."] = "Die Domain Deiner E-Mail Adresse ist auf dieser Seite nicht erlaubt."; +$a->strings["Not a valid email address."] = "Keine gültige E-Mail-Adresse."; +$a->strings["Cannot use that email."] = "Konnte diese E-Mail-Adresse nicht verwenden."; +$a->strings["Your \"nickname\" can only contain \"a-z\", \"0-9\" and \"_\"."] = "Dein Spitzname darf nur aus Buchstaben und Zahlen (\"a-z\",\"0-9\" und \"_\") bestehen."; +$a->strings["Nickname is already registered. Please choose another."] = "Dieser Spitzname ist bereits vergeben. Bitte wähle einen anderen."; +$a->strings["Nickname was once registered here and may not be re-used. Please choose another."] = "Dieser Spitzname ist bereits vergeben. Bitte wähle einen anderen."; +$a->strings["SERIOUS ERROR: Generation of security keys failed."] = "FATALER FEHLER: Sicherheitsschlüssel konnten nicht erzeugt werden."; +$a->strings["An error occurred during registration. Please try again."] = "Während der Anmeldung ist ein Fehler aufgetreten. Bitte versuche es noch einmal."; +$a->strings["default"] = "Standard"; +$a->strings["An error occurred creating your default profile. Please try again."] = "Bei der Erstellung des Standardprofils ist ein Fehler aufgetreten. Bitte versuche es noch einmal."; +$a->strings["Profile Photos"] = "Profilbilder"; +$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["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 fourm 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["Logout"] = "Abmelden"; +$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["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 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["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["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["status"] = "Status"; +$a->strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s mag %2\$ss %3\$s"; $a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s mag %2\$ss %3\$s nicht"; +$a->strings["%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["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["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["%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."; @@ -426,7 +671,6 @@ $a->strings["Preview"] = "Vorschau"; $a->strings["Post to Groups"] = "Poste an Gruppe"; $a->strings["Post to Contacts"] = "Poste an Kontakte"; $a->strings["Private post"] = "Privater Beitrag"; -$a->strings["Message"] = "Nachricht"; $a->strings["Browser"] = "Browser"; $a->strings["View all"] = "Zeige alle"; $a->strings["Like"] = array( @@ -441,286 +685,21 @@ $a->strings["Not Attending"] = array( 0 => "Nicht teilnehmend ", 1 => "Nicht teilnehmend", ); -$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["Forum"] = "Forum"; -$a->strings["Gender:"] = "Geschlecht:"; -$a->strings["Status:"] = "Status:"; -$a->strings["Homepage:"] = "Homepage:"; -$a->strings["About:"] = "Über:"; -$a->strings["Network:"] = "Netzwerk"; -$a->strings["g A l F d"] = "l, d. F G \\U\\h\\r"; -$a->strings["F d"] = "d. F"; -$a->strings["[today]"] = "[heute]"; -$a->strings["Birthday Reminders"] = "Geburtstagserinnerungen"; -$a->strings["Birthdays this week:"] = "Geburtstage diese Woche:"; -$a->strings["[No description]"] = "[keine Beschreibung]"; -$a->strings["Event Reminders"] = "Veranstaltungserinnerungen"; -$a->strings["Events this week:"] = "Veranstaltungen diese Woche"; -$a->strings["Profile"] = "Profil"; -$a->strings["Full Name:"] = "Kompletter Name:"; -$a->strings["j F, Y"] = "j F, Y"; -$a->strings["j F"] = "j F"; -$a->strings["Age:"] = "Alter:"; -$a->strings["for %1\$d %2\$s"] = "für %1\$d %2\$s"; -$a->strings["Sexual Preference:"] = "Sexuelle Vorlieben:"; -$a->strings["Hometown:"] = "Heimatort:"; -$a->strings["Tags:"] = "Tags"; -$a->strings["Political Views:"] = "Politische Ansichten:"; -$a->strings["Religion:"] = "Religion:"; -$a->strings["Hobbies/Interests:"] = "Hobbies/Interessen:"; -$a->strings["Likes:"] = "Likes:"; -$a->strings["Dislikes:"] = "Dislikes:"; -$a->strings["Contact information and Social Networks:"] = "Kontaktinformationen und Soziale Netzwerke:"; -$a->strings["Musical interests:"] = "Musikalische Interessen:"; -$a->strings["Books, literature:"] = "Literatur/Bücher:"; -$a->strings["Television:"] = "Fernsehen:"; -$a->strings["Film/dance/culture/entertainment:"] = "Filme/Tänze/Kultur/Unterhaltung:"; -$a->strings["Love/Romance:"] = "Liebesleben:"; -$a->strings["Work/employment:"] = "Arbeit/Beschäftigung:"; -$a->strings["School/education:"] = "Schule/Ausbildung:"; -$a->strings["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[" on Last.fm"] = " bei Last.fm"; -$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["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["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["stopped following"] = "wird nicht mehr gefolgt"; $a->strings["Drop Contact"] = "Kontakt löschen"; -$a->strings["Embedded content"] = "Eingebetteter Inhalt"; -$a->strings["Embedding disabled"] = "Einbettungen deaktiviert"; -$a->strings["Image/photo"] = "Bild/Foto"; -$a->strings["%2\$s %3\$s"] = "%2\$s %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["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["\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 may apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "Eine gelöschte Gruppe mit diesem Namen wurde wiederbelebt. Bestehende Berechtigungseinstellungen könnten auf diese Gruppe oder zukünftige Mitglieder angewandt werden. Falls Du dies nicht möchtest, erstelle bitte eine andere Gruppe mit einem anderen Namen."; -$a->strings["Default privacy group for new contacts"] = "Voreingestellte Gruppe für neue Kontakte"; -$a->strings["Everybody"] = "Alle Kontakte"; -$a->strings["edit"] = "bearbeiten"; -$a->strings["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["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."; -$a->strings["Invalid OpenID url"] = "Ungültige OpenID URL"; -$a->strings["Please enter the required information."] = "Bitte trage die erforderlichen Informationen ein."; -$a->strings["Please use a shorter name."] = "Bitte verwende einen kürzeren Namen."; -$a->strings["Name too short."] = "Der Name ist zu kurz."; -$a->strings["That doesn't appear to be your full (First Last) name."] = "Das scheint nicht Dein kompletter Name (Vor- und Nachname) zu sein."; -$a->strings["Your email domain is not among those allowed on this site."] = "Die Domain Deiner E-Mail Adresse ist auf dieser Seite nicht erlaubt."; -$a->strings["Not a valid email address."] = "Keine gültige E-Mail-Adresse."; -$a->strings["Cannot use that email."] = "Konnte diese E-Mail-Adresse nicht verwenden."; -$a->strings["Your \"nickname\" can only contain \"a-z\", \"0-9\" and \"_\"."] = "Dein Spitzname darf nur aus Buchstaben und Zahlen (\"a-z\",\"0-9\" und \"_\") bestehen."; -$a->strings["Nickname is already registered. Please choose another."] = "Dieser Spitzname ist bereits vergeben. Bitte wähle einen anderen."; -$a->strings["Nickname was once registered here and may not be re-used. Please choose another."] = "Dieser Spitzname ist bereits vergeben. Bitte wähle einen anderen."; -$a->strings["SERIOUS ERROR: Generation of security keys failed."] = "FATALER FEHLER: Sicherheitsschlüssel konnten nicht erzeugt werden."; -$a->strings["An error occurred during registration. Please try again."] = "Während der Anmeldung ist ein Fehler aufgetreten. Bitte versuche es noch einmal."; -$a->strings["default"] = "Standard"; -$a->strings["An error occurred creating your default profile. Please try again."] = "Bei der Erstellung des Standardprofils ist ein Fehler aufgetreten. Bitte versuche es noch einmal."; -$a->strings["Profile Photos"] = "Profilbilder"; -$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 fourm 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"] = "Pinnwand"; -$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["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["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."; @@ -741,62 +720,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["System"] = "System"; -$a->strings["Personal"] = "Persönlich"; -$a->strings["Show Ignored Requests"] = "Zeige ignorierte Anfragen"; -$a->strings["Hide Ignored Requests"] = "Verberge ignorierte Anfragen"; -$a->strings["Notification type: "] = "Benachrichtigungstyp: "; -$a->strings["Friend Suggestion"] = "Kontaktvorschlag"; -$a->strings["suggested by %s"] = "vorgeschlagen von %s"; -$a->strings["Hide this contact from others"] = "Verbirg diesen Kontakt vor andere"; -$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["Friend/Connect Request"] = "Kontakt-/Freundschaftsanfrage"; -$a->strings["New Follower"] = "Neuer Bewunderer"; -$a->strings["Profile URL"] = "Profil URL"; -$a->strings["No introductions."] = "Keine Kontaktanfragen."; -$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 now friends with %s"] = "%s ist jetzt mit %s befreundet"; -$a->strings["%s created a new post"] = "%s hat einen neuen Beitrag erstellt"; -$a->strings["%s commented on %s's post"] = "%s hat %ss Beitrag kommentiert"; -$a->strings["No more network notifications."] = "Keine weiteren Netzwerk-Benachrichtigungen."; -$a->strings["Network Notifications"] = "Netzwerk Benachrichtigungen"; -$a->strings["No more personal notifications."] = "Keine weiteren persönlichen Benachrichtigungen"; -$a->strings["Personal Notifications"] = "Persönliche Benachrichtigungen"; -$a->strings["No more home notifications."] = "Keine weiteren Pinnwand-Benachrichtigungen"; -$a->strings["Home Notifications"] = "Pinnwand Benachrichtigungen"; -$a->strings["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 Friendica.com to learn more about the Friendica project."] = "Bitte besuche Friendica.com, um mehr über das Friendica Projekt zu erfahren."; @@ -811,6 +734,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"; @@ -821,13 +745,17 @@ $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["Not Found"] = "Nicht gefunden"; +$a->strings["Page not found."] = "Seite nicht gefunden."; $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["Contact not found."] = "Kontakt nicht gefunden."; $a->strings["Friend suggestion sent."] = "Kontaktvorschlag gesendet."; $a->strings["Suggest Friends"] = "Kontakte vorschlagen"; $a->strings["Suggest a friend for %s"] = "Schlage %s einen Kontakt vor"; @@ -900,33 +828,13 @@ $a->strings["For more information about the Friendica project and why we feel it $a->strings["Contact Photos"] = "Kontaktbilder"; $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["WARNING: This is highly advanced and if you enter incorrect information your communications with this contact may stop working."] = "ACHTUNG: Das sind Experten-Einstellungen! Wenn Du etwas Falsches eingibst, funktioniert die Kommunikation mit diesem Kontakt evtl. nicht mehr."; -$a->strings["Please use your browser 'Back' button now if you are uncertain what to do on this page."] = "Bitte nutze den Zurück-Button Deines Browsers jetzt, wenn Du Dir unsicher bist, was Du tun willst."; -$a->strings["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["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["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["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: "; @@ -1180,6 +1088,7 @@ $a->strings["%s user deleted"] = array( $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["Name"] = "Name"; $a->strings["Register date"] = "Anmeldedatum"; $a->strings["Last login"] = "Letzte Anmeldung"; $a->strings["Last item"] = "Letzter Beitrag"; @@ -1190,6 +1099,7 @@ $a->strings["User registrations waiting for confirm"] = "Neuanmeldungen, die auf $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["Approve"] = "Genehmigen"; $a->strings["Deny"] = "Verwehren"; $a->strings["Block"] = "Sperren"; $a->strings["Unblock"] = "Entsperren"; @@ -1240,47 +1150,6 @@ $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"; @@ -1299,78 +1168,6 @@ $a->strings["Access to this item is restricted."] = "Zugriff zu diesem Eintrag w $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["Homepage"] = "Webseite"; -$a->strings["Interests"] = "Interessen"; -$a->strings["Address"] = "Adresse"; -$a->strings["Location"] = "Wohnort"; -$a->strings["Profile updated."] = "Profil aktualisiert."; -$a->strings[" and "] = " und "; -$a->strings["public profile"] = "öffentliches Profil"; -$a->strings["%1\$s changed %2\$s to “%3\$s”"] = "%1\$s hat %2\$s geändert auf “%3\$s”"; -$a->strings[" - Visit %1\$s's %2\$s"] = " – %1\$ss %2\$s besuchen"; -$a->strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s hat folgendes aktualisiert %2\$s, verändert wurde %3\$s."; -$a->strings["Hide contacts and friends:"] = "Kontakte und Freunde verbergen"; -$a->strings["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[" Marital Status:"] = " Beziehungsstatus:"; -$a->strings["Example: fishing photography software"] = "Beispiel: Fischen Fotografie Software"; -$a->strings["Profile Name:"] = "Profilname:"; -$a->strings["This is your public profile.
It may be visible to anybody using the internet."] = "Dies ist Dein öffentliches Profil.
Es könnte für jeden Nutzer des Internets sichtbar sein."; -$a->strings["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["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 -"; @@ -1379,50 +1176,6 @@ $a->strings["poke, prod or do other things to somebody"] = "Stupse Leute an oder $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."; @@ -1499,86 +1252,6 @@ $a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for t $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["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["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 may still be visible"] = "Antworten/Likes auf deine öffentlichen Beiträge könnten 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"] = ""; -$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."; @@ -1586,9 +1259,12 @@ $a->strings["OStatus support is disabled. Contact can't be added."] = "OStatus U $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["No"] = "Nein"; $a->strings["Add a personal note:"] = "Eine persönliche Notiz beifügen:"; $a->strings["Your Identity Address:"] = "Adresse Deines Profils:"; +$a->strings["Profile URL"] = "Profil URL"; $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?"; @@ -1597,6 +1273,7 @@ $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["Common Friends"] = "Gemeinsame 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."; @@ -1606,6 +1283,7 @@ $a->strings["On your Quick Start page - find a brief introduction to yo $a->strings["Go to Your Settings"] = "Gehe zu deinen Einstellungen"; $a->strings["On your Settings page - change your initial password. Also make a note of your Identity Address. This looks just like an email address - and will be useful in making friends on the free social web."] = "Ändere bitte unter Einstellungen dein Passwort. Außerdem merke dir deine Identifikationsadresse. Diese sieht aus wie eine E-Mail-Adresse und wird benötigt, um 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 default profile to your liking. Review the settings for hiding your list of friends and hiding the profile from unknown visitors."] = "Editiere Dein Standard Profil nach Deinen Vorlieben. Überprüfe die Einstellungen zum Verbergen Deiner Kontaktliste vor unbekannten Betrachtern des Profils."; @@ -1639,12 +1317,16 @@ $a->strings["Warning: This group contains %s member from an insecure network."] 1 => "Warnung: Diese Gruppe beinhaltet %s Personen aus unsicheren Netzwerken.", ); $a->strings["Private messages to this group are at risk of public disclosure."] = "Private Nachrichten an diese Gruppe könnten an die Öffentlichkeit geraten."; +$a->strings["No such group"] = "Es gibt keine solche Gruppe"; +$a->strings["Group is empty"] = "Gruppe ist leer"; +$a->strings["Group: %s"] = "Gruppe: %s"; $a->strings["Private messages to this person are at risk of public disclosure."] = "Private Nachrichten an diese Person könnten an die Öffentlichkeit gelangen."; $a->strings["Invalid contact."] = "Ungültiger Kontakt."; $a->strings["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["Personal"] = "Persönlich"; $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"; @@ -1670,40 +1352,7 @@ $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 this profile."] = "Momentan bist Du mit einer anderen Identität angemeldet. Bitte melde Dich mit diesem Profil an."; -$a->strings["Confirm"] = "Bestätigen"; -$a->strings["Hide this contact"] = "Verberge diesen Kontakt"; -$a->strings["Welcome home %s."] = "Willkommen zurück %s."; -$a->strings["Please confirm your introduction/connection request to %s."] = "Bitte bestätige Deine Kontaktanfrage bei %s."; -$a->strings["Please enter your 'Identity Address' from one of the following supported communications networks:"] = "Bitte gib die Adresse Deines Profils in einem der unterstützten sozialen Netzwerke an:"; -$a->strings["If you are not yet a member of the free social web, follow this link to find a public Friendica site and join us today."] = "Wenn du noch kein Mitglied dieses freien sozialen Netzwerks bist, folge diesem Link um einen öffentlichen Friendica-Server zu finden und beizutreten."; -$a->strings["Friend/Connection Request"] = "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["All Contacts"] = "Alle Kontakte"; $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."; @@ -1737,11 +1386,13 @@ $a->strings["Confirm:"] = "Bestätigen:"; $a->strings["Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be 'nickname@\$sitename'."] = "Wähle einen Spitznamen für Dein Profil. Dieser muss mit einem Buchstaben beginnen. Die Adresse Deines Profils auf dieser Seite wird 'spitzname@\$sitename' sein."; $a->strings["Choose a nickname: "] = "Spitznamen wählen: "; $a->strings["Import your profile to this friendica instance"] = "Importiere Dein Profil auf diese Friendica Instanz"; +$a->strings["everybody"] = "jeder"; $a->strings["Display"] = "Anzeige"; $a->strings["Social Networks"] = "Soziale Netzwerke"; $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"; @@ -1765,6 +1416,7 @@ $a->strings["Redirect"] = "Umleiten"; $a->strings["Icon url"] = "Icon URL"; $a->strings["You can't edit this application."] = "Du kannst dieses Programm nicht bearbeiten."; $a->strings["Connected Apps"] = "Verbundene Programme"; +$a->strings["Edit"] = "Bearbeiten"; $a->strings["Client key starts with"] = "Anwenderschlüssel beginnt mit"; $a->strings["No name"] = "Kein Name"; $a->strings["Remove authorization"] = "Autorisierung entziehen"; @@ -1868,6 +1520,8 @@ $a->strings["Maximum Friend Requests/Day:"] = "Maximale Anzahl vonKontaktanfrage $a->strings["(to prevent spam abuse)"] = "(um SPAM zu vermeiden)"; $a->strings["Default Post Permissions"] = "Standard-Zugriffsrechte für Beiträge"; $a->strings["(click to open/close)"] = "(klicke zum öffnen/schließen)"; +$a->strings["Show to Groups"] = "Zeige den Gruppen"; +$a->strings["Show to Contacts"] = "Zeige den Kontakten"; $a->strings["Default Private Post"] = "Privater Standardbeitrag"; $a->strings["Default Public Post"] = "Öffentlicher Standardbeitrag"; $a->strings["Default Permissions for New Posts"] = "Standardberechtigungen für neue Beiträge"; @@ -1936,6 +1590,7 @@ $a->strings["Couldn't fetch information for contact."] = "Konnte die Kontaktinfo $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["Tips for New Members"] = "Tipps für neue Nutzer"; $a->strings["Unable to locate contact information."] = "Konnte die Kontaktinformationen nicht finden."; @@ -1959,6 +1614,339 @@ $a->strings["%d message"] = array( $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["%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["Ignore"] = "Ignorieren"; +$a->strings["Currently blocked"] = "Derzeit geblockt"; +$a->strings["Currently ignored"] = "Derzeit ignoriert"; +$a->strings["Currently archived"] = "Momentan archiviert"; +$a->strings["Hide this contact from others"] = "Verbirg diesen Kontakt vor andere"; +$a->strings["Replies/likes to your public posts may still be visible"] = "Antworten/Likes auf deine öffentlichen Beiträge könnten 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["Contact settings applied."] = "Einstellungen zum Kontakt angewandt."; +$a->strings["Contact update failed."] = "Konnte den Kontakt nicht aktualisieren."; +$a->strings["WARNING: This is highly advanced and if you enter incorrect information your communications with this contact may stop working."] = "ACHTUNG: Das sind Experten-Einstellungen! Wenn Du etwas Falsches eingibst, funktioniert die Kommunikation mit diesem Kontakt evtl. nicht mehr."; +$a->strings["Please use your browser 'Back' button now if you are uncertain what to do on this page."] = "Bitte nutze den Zurück-Button Deines Browsers jetzt, wenn Du Dir unsicher bist, was Du tun willst."; +$a->strings["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["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["Profile not found."] = "Profil nicht gefunden."; +$a->strings["This may occasionally happen if contact was requested by both persons and it has already been approved."] = "Das kann passieren, wenn sich zwei Kontakte gegenseitig eingeladen haben und bereits einer angenommen wurde."; +$a->strings["Response from remote site was not understood."] = "Antwort der Gegenstelle unverständlich."; +$a->strings["Unexpected response from remote site: "] = "Unerwartete Antwort der Gegenstelle: "; +$a->strings["Confirmation completed successfully."] = "Bestätigung erfolgreich abgeschlossen."; +$a->strings["Remote site reported: "] = "Gegenstelle meldet: "; +$a->strings["Temporary failure. Please wait and try again."] = "Zeitweiser Fehler. Bitte warte einige Momente und versuche es dann noch einmal."; +$a->strings["Introduction failed or was revoked."] = "Kontaktanfrage schlug fehl oder wurde zurückgezogen."; +$a->strings["Unable to set contact photo."] = "Konnte das Bild des Kontakts nicht speichern."; +$a->strings["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 this profile."] = "Momentan bist Du mit einer anderen Identität angemeldet. Bitte melde Dich mit diesem Profil an."; +$a->strings["Confirm"] = "Bestätigen"; +$a->strings["Hide this contact"] = "Verberge diesen Kontakt"; +$a->strings["Welcome home %s."] = "Willkommen zurück %s."; +$a->strings["Please confirm your introduction/connection request to %s."] = "Bitte bestätige Deine Kontaktanfrage bei %s."; +$a->strings["Please enter your 'Identity Address' from one of the following supported communications networks:"] = "Bitte gib die Adresse Deines Profils in einem der unterstützten sozialen Netzwerke an:"; +$a->strings["If you are not yet a member of the free social web, follow this link to find a public Friendica site and join us today."] = "Wenn du noch kein Mitglied dieses freien sozialen Netzwerks bist, folge diesem Link um einen öffentlichen Friendica-Server zu finden und beizutreten."; +$a->strings["Friend/Connection Request"] = "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["Recent Photos"] = "Neueste Fotos"; +$a->strings["Upload New Photos"] = "Neue Fotos hochladen"; +$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["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["Private Message"] = "Private Nachricht"; +$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["I like this (toggle)"] = "Ich mag das (toggle)"; +$a->strings["I don't like this (toggle)"] = "Ich mag das nicht (toggle)"; +$a->strings["This is you"] = "Das bist Du"; +$a->strings["Comment"] = "Kommentar"; +$a->strings["Map"] = "Karte"; +$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["Homepage"] = "Webseite"; +$a->strings["Interests"] = "Interessen"; +$a->strings["Address"] = "Adresse"; +$a->strings["Location"] = "Wohnort"; +$a->strings["Profile updated."] = "Profil aktualisiert."; +$a->strings[" and "] = " und "; +$a->strings["public profile"] = "öffentliches Profil"; +$a->strings["%1\$s changed %2\$s to “%3\$s”"] = "%1\$s hat %2\$s geändert auf “%3\$s”"; +$a->strings[" - Visit %1\$s's %2\$s"] = " – %1\$ss %2\$s besuchen"; +$a->strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s hat folgendes aktualisiert %2\$s, verändert wurde %3\$s."; +$a->strings["Hide contacts and friends:"] = "Kontakte und Freunde verbergen"; +$a->strings["Hide your contact/friend list from viewers of this profile?"] = "Liste der Kontakte vor Betrachtern dieses Profils verbergen?"; +$a->strings["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[" Marital Status:"] = " Beziehungsstatus:"; +$a->strings["Example: fishing photography software"] = "Beispiel: Fischen Fotografie Software"; +$a->strings["Profile Name:"] = "Profilname:"; +$a->strings["This is your public profile.
It may be visible to anybody using the internet."] = "Dies ist Dein öffentliches Profil.
Es könnte für jeden Nutzer des Internets sichtbar sein."; +$a->strings["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["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["This entry was edited"] = "Dieser Beitrag wurde bearbeitet."; +$a->strings["%d comment"] = array( + 0 => "%d Kommentar", + 1 => "%d Kommentare", +); +$a->strings["like"] = "mag ich"; +$a->strings["dislike"] = "mag ich nicht"; +$a->strings["Share this"] = "Weitersagen"; +$a->strings["share"] = "Teilen"; +$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["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["Invalid request identifier."] = "Invalid request identifier."; +$a->strings["Discard"] = "Verwerfen"; +$a->strings["Show Ignored Requests"] = "Zeige ignorierte Anfragen"; +$a->strings["Hide Ignored Requests"] = "Verberge ignorierte Anfragen"; +$a->strings["Notification type: "] = "Benachrichtigungstyp: "; +$a->strings["Friend Suggestion"] = "Kontaktvorschlag"; +$a->strings["suggested by %s"] = "vorgeschlagen von %s"; +$a->strings["Post a new friend activity"] = "Neue-Kontakt Nachricht senden"; +$a->strings["if applicable"] = "falls anwendbar"; +$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["Friend/Connect Request"] = "Kontakt-/Freundschaftsanfrage"; +$a->strings["New Follower"] = "Neuer Bewunderer"; +$a->strings["No introductions."] = "Keine Kontaktanfragen."; +$a->strings["Network Notifications"] = "Netzwerk Benachrichtigungen"; +$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 now friends with %s"] = "%s ist jetzt mit %s befreundet"; +$a->strings["%s created a new post"] = "%s hat einen neuen Beitrag erstellt"; +$a->strings["%s commented on %s's post"] = "%s hat %ss Beitrag kommentiert"; +$a->strings["No more network notifications."] = "Keine weiteren Netzwerk-Benachrichtigungen."; +$a->strings["Personal Notifications"] = "Persönliche Benachrichtigungen"; +$a->strings["No more personal notifications."] = "Keine weiteren persönlichen Benachrichtigungen"; +$a->strings["Home Notifications"] = "Pinnwand Benachrichtigungen"; +$a->strings["No more home notifications."] = "Keine weiteren Pinnwand-Benachrichtigungen"; +$a->strings["System"] = "System"; $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."; @@ -2020,3 +2008,16 @@ $a->strings["darkzero"] = "darkzero"; $a->strings["comix"] = "comix"; $a->strings["slackr"] = "slackr"; $a->strings["Variations"] = "Variationen"; +$a->strings["toggle mobile"] = "auf/von Mobile Ansicht wechseln"; +$a->strings["Delete this item?"] = "Diesen Beitrag löschen?"; +$a->strings["show fewer"] = "weniger anzeigen"; +$a->strings["Update %s failed. See error logs."] = "Update %s fehlgeschlagen. Bitte Fehlerprotokoll überprüfen."; +$a->strings["Create a New Account"] = "Neues Konto erstellen"; +$a->strings["Password: "] = "Passwort: "; +$a->strings["Remember me"] = "Anmeldedaten merken"; +$a->strings["Or login using OpenID: "] = "Oder melde Dich mit Deiner OpenID an: "; +$a->strings["Forgot your password?"] = "Passwort vergessen?"; +$a->strings["Website Terms of Service"] = "Website Nutzungsbedingungen"; +$a->strings["terms of service"] = "Nutzungsbedingungen"; +$a->strings["Website Privacy Policy"] = "Website Datenschutzerklärung"; +$a->strings["privacy policy"] = "Datenschutzerklärung"; From d673f44c5bf4f57c89767f26077ce2092e12b9c5 Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Wed, 3 Aug 2016 10:03:05 +0200 Subject: [PATCH 22/23] Split cron jobs in cronjobs, introduce fastlane for high priority tasks --- include/cron.php | 82 +++++++++++++++++++++++++++----------------- include/cronjobs.php | 81 +++++++++++++++++++++++++++++++++++++++++++ include/poller.php | 18 ++++++++++ 3 files changed, 149 insertions(+), 32 deletions(-) create mode 100644 include/cronjobs.php diff --git a/include/cron.php b/include/cron.php index 82c8cc7a16..6afbeca1bd 100644 --- a/include/cron.php +++ b/include/cron.php @@ -80,43 +80,38 @@ function cron_run(&$argv, &$argc){ proc_run(PRIORITY_LOW,"include/discover_poco.php", "checkcontact"); - // expire any expired accounts + // Expire and remove user entries + cron_expire_and_remove_users(); - q("UPDATE user SET `account_expired` = 1 where `account_expired` = 0 - AND `account_expires_on` != '0000-00-00 00:00:00' - AND `account_expires_on` < UTC_TIMESTAMP() "); + // If the worker is active, split the jobs in several sub processes + if (get_config("system", "worker")) { + // Check OStatus conversations + proc_run(PRIORITY_MEDIUM, "include/cronjobs.php", "ostatus_mentions"); - // delete user and contact records for recently removed accounts + // Check every conversation + proc_run(PRIORITY_MEDIUM, "include/cronjobs.php", "ostatus_conversations"); - $r = q("SELECT * FROM `user` WHERE `account_removed` = 1 AND `account_expires_on` < UTC_TIMESTAMP() - INTERVAL 3 DAY"); - if ($r) { - foreach($r as $user) { - q("DELETE FROM `contact` WHERE `uid` = %d", intval($user['uid'])); - q("DELETE FROM `user` WHERE `uid` = %d", intval($user['uid'])); - } + // Call possible post update functions + proc_run(PRIORITY_LOW, "include/cronjobs.php", "post_update"); + + // update nodeinfo data + proc_run(PRIORITY_LOW, "include/cronjobs.php", "nodeinfo"); + } else { + // Check OStatus conversations + // Check only conversations with mentions (for a longer time) + ostatus::check_conversations(true); + + // Check every conversation + ostatus::check_conversations(false); + + // Call possible post update functions + // see include/post_update.php for more details + post_update(); + + // update nodeinfo data + nodeinfo_cron(); } - $abandon_days = intval(get_config('system','account_abandon_days')); - if($abandon_days < 1) - $abandon_days = 0; - - // Check OStatus conversations - // Check only conversations with mentions (for a longer time) - ostatus::check_conversations(true); - - // Check every conversation - ostatus::check_conversations(false); - - // Call possible post update functions - // see include/post_update.php for more details - post_update(); - - // update nodeinfo data - nodeinfo_cron(); - - /// @TODO Regenerate usage statistics - // q("ANALYZE TABLE `item`"); - // once daily run birthday_updates and then expire in background $d1 = get_config('system','last_expire_day'); @@ -152,6 +147,25 @@ function cron_run(&$argv, &$argc){ return; } +/** + * @brief Expire and remove user entries + */ +function cron_expire_and_remove_users() { + // expire any expired accounts + q("UPDATE user SET `account_expired` = 1 where `account_expired` = 0 + AND `account_expires_on` != '0000-00-00 00:00:00' + AND `account_expires_on` < UTC_TIMESTAMP() "); + + // delete user and contact records for recently removed accounts + $r = q("SELECT * FROM `user` WHERE `account_removed` AND `account_expires_on` < UTC_TIMESTAMP() - INTERVAL 3 DAY"); + if ($r) { + foreach($r as $user) { + q("DELETE FROM `contact` WHERE `uid` = %d", intval($user['uid'])); + q("DELETE FROM `user` WHERE `uid` = %d", intval($user['uid'])); + } + } +} + /** * @brief Poll contacts for unreceived messages * @@ -197,6 +211,10 @@ function cron_poll_contacts($argc, $argv) { // and which have a polling address and ignore Diaspora since // we are unable to match those posts with a Diaspora GUID and prevent duplicates. + $abandon_days = intval(get_config('system','account_abandon_days')); + if($abandon_days < 1) + $abandon_days = 0; + $abandon_sql = (($abandon_days) ? sprintf(" AND `user`.`login_date` > UTC_TIMESTAMP() - INTERVAL %d DAY ", intval($abandon_days)) : '' diff --git a/include/cronjobs.php b/include/cronjobs.php new file mode 100644 index 0000000000..ed27e23293 --- /dev/null +++ b/include/cronjobs.php @@ -0,0 +1,81 @@ +set_baseurl(get_config('system','url')); + + // No parameter set? So return + if ($argc <= 1) + return; + + // Check OStatus conversations + // Check only conversations with mentions (for a longer time) + if ($argv[1] == 'ostatus_mentions') { + ostatus::check_conversations(true); + return; + } + + // Check every conversation + if ($argv[1] == 'ostatus_conversations') { + ostatus::check_conversations(false); + return; + } + + // Call possible post update functions + // see include/post_update.php for more details + if ($argv[1] == 'post_update') { + post_update(); + return; + } + + // update nodeinfo data + if ($argv[1] == 'nodeinfo') { + nodeinfo_cron(); + return; + } + + return; +} + +if (array_search(__file__,get_included_files())===0){ + cronjobs_run($_SERVER["argv"],$_SERVER["argc"]); + killme(); +} diff --git a/include/poller.php b/include/poller.php index 811b81e174..622aa83bd7 100644 --- a/include/poller.php +++ b/include/poller.php @@ -270,6 +270,24 @@ function poller_too_much_workers() { $slope = $maxworkers / pow($maxsysload, $exponent); $queues = ceil($slope * pow(max(0, $maxsysload - $load), $exponent)); + if (Config::get("system", "worker_fastlane", false) AND ($queues > 0) AND ($active >= $queues)) { + $s = q("SELECT COUNT(*) AS `total` FROM `workerqueue` WHERE `priority` = %d AND `executed` = '0000-00-00 00:00:00'", + intval(PRIORITY_HIGH)); + $high_waiting = $s[0]["total"]; + + $s = q("SELECT COUNT(*) AS `total` FROM `workerqueue` WHERE `priority` = %d AND `executed` != '0000-00-00 00:00:00'", + intval(PRIORITY_HIGH)); + $high_running = $s[0]["total"]; + + logger("High waiting: ".$high_waiting." - high running: ".$high_running); + + /// @todo define maximum number of fastlanes + if (($high_waiting > 0) AND ($high_running == 0)) { + logger("There are ".$high_waiting." high priority jobs waiting but none is executed. Open a fastlane.", LOGGER_DEBUG); + $queue = $active + 1; + } + } + $s = q("SELECT COUNT(*) AS `total` FROM `workerqueue` WHERE `executed` = '0000-00-00 00:00:00'"); $entries = $s[0]["total"]; From ff430640c031373abb2688e31bff6bc9f8cb2bd2 Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Wed, 3 Aug 2016 10:19:46 +0200 Subject: [PATCH 23/23] Small variable type fixed, removed unused includes --- include/cronjobs.php | 7 ++----- include/poller.php | 4 +--- 2 files changed, 3 insertions(+), 8 deletions(-) diff --git a/include/cronjobs.php b/include/cronjobs.php index ed27e23293..3a6df698e1 100644 --- a/include/cronjobs.php +++ b/include/cronjobs.php @@ -30,12 +30,9 @@ function cronjobs_run(&$argv, &$argc){ require_once('include/session.php'); require_once('include/datetime.php'); - require_once('include/items.php'); - require_once('include/Contact.php'); - require_once('include/email.php'); - require_once('include/socgraph.php'); - require_once('mod/nodeinfo.php'); + require_once('include/ostatus.php'); require_once('include/post_update.php'); + require_once('mod/nodeinfo.php'); load_config('config'); load_config('system'); diff --git a/include/poller.php b/include/poller.php index 622aa83bd7..6dce81e717 100644 --- a/include/poller.php +++ b/include/poller.php @@ -279,12 +279,10 @@ function poller_too_much_workers() { intval(PRIORITY_HIGH)); $high_running = $s[0]["total"]; - logger("High waiting: ".$high_waiting." - high running: ".$high_running); - /// @todo define maximum number of fastlanes if (($high_waiting > 0) AND ($high_running == 0)) { logger("There are ".$high_waiting." high priority jobs waiting but none is executed. Open a fastlane.", LOGGER_DEBUG); - $queue = $active + 1; + $queues = $active + 1; } }