From 53417aaf39b4a1a0bd08c0bd71792f11df549f86 Mon Sep 17 00:00:00 2001 From: Michael Date: Thu, 15 Dec 2016 07:15:33 +0000 Subject: [PATCH 1/8] Create missing self contact --- include/cron.php | 11 ++++++++ include/user.php | 68 ++++++++++++++++++++++++++++++++---------------- 2 files changed, 57 insertions(+), 22 deletions(-) diff --git a/include/cron.php b/include/cron.php index c92396dc7a..730325ba8c 100644 --- a/include/cron.php +++ b/include/cron.php @@ -12,6 +12,7 @@ if (!file_exists("boot.php") AND (sizeof($_SERVER["argv"]) != 0)) { require_once("boot.php"); require_once("include/photos.php"); +require_once("include/user.php"); function cron_run(&$argv, &$argc){ @@ -454,6 +455,16 @@ function cron_repair_diaspora(&$a) { */ function cron_repair_database() { + // Sometimes there seem to be issues where the "self" contact vanishes. + // We haven't found the origin of the problem by now. + $r = q("SELECT `uid` FROM `user` WHERE NOT EXISTS (SELECT `uid` FROM `contact` WHERE `contact`.`uid` = `user`.`uid` AND `contact`.`self`)"); + if (dbm::is_result($r)) { + foreach ($r AS $user) { + logger('Create missing self contact for user '.$user['uid']); + user_create_self_contact($user['uid']); + } + } + // Set the parent if it wasn't set. (Shouldn't happen - but does sometimes) // This call is very "cheap" so we can do it at any time without a problem q("UPDATE `item` INNER JOIN `item` AS `parent` ON `parent`.`uri` = `item`.`parent-uri` AND `parent`.`uid` = `item`.`uid` SET `item`.`parent` = `parent`.`id` WHERE `item`.`parent` = 0"); diff --git a/include/user.php b/include/user.php index 5e8014abf8..989c8b0e04 100644 --- a/include/user.php +++ b/include/user.php @@ -269,28 +269,9 @@ function create_user($arr) { intval($newuid)); return $result; } - $r = q("INSERT INTO `contact` ( `uid`, `created`, `self`, `name`, `nick`, `photo`, `thumb`, `micro`, `blocked`, `pending`, `url`, `nurl`, - `addr`, `request`, `notify`, `poll`, `confirm`, `poco`, `name-date`, `uri-date`, `avatar-date`, `closeness` ) - VALUES ( %d, '%s', 1, '%s', '%s', '%s', '%s', '%s', 0, 0, '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', 0 ) ", - intval($newuid), - datetime_convert(), - dbesc($username), - dbesc($nickname), - dbesc(z_root() . "/photo/profile/{$newuid}.jpg"), - dbesc(z_root() . "/photo/avatar/{$newuid}.jpg"), - dbesc(z_root() . "/photo/micro/{$newuid}.jpg"), - dbesc(z_root() . "/profile/$nickname"), - dbesc(normalise_link(z_root() . "/profile/$nickname")), - dbesc($nickname . '@' . substr(z_root(), strpos(z_root(),'://') + 3 )), - dbesc(z_root() . "/dfrn_request/$nickname"), - dbesc(z_root() . "/dfrn_notify/$nickname"), - dbesc(z_root() . "/dfrn_poll/$nickname"), - dbesc(z_root() . "/dfrn_confirm/$nickname"), - dbesc(z_root() . "/poco/$nickname"), - dbesc(datetime_convert()), - dbesc(datetime_convert()), - dbesc(datetime_convert()) - ); + + // Create the self contact + user_create_self_contact($newuid); // Create a group with no members. This allows somebody to use it // right away as a default group for new contacts. @@ -377,6 +358,49 @@ function create_user($arr) { } +/** + * @brief create the "self" contact from data from the user table + * + * @param integer $uid + */ +function user_create_self_contact($uid) { + + // Only create the entry if it doesn't exist yet + $r = q("SELECT `id` FROM `contact` WHERE `uid` = %d AND `self`", intval($uid)); + if (dbm::is_result($r)) { + return; + } + + $r = q("SELECT `uid`, `username`, `nickname` FROM `user` WHERE `uid` = %d", intval($uid)); + if (!dbm::is_result($r)) { + return; + } + + $user = $r[0]; + + q("INSERT INTO `contact` (`uid`, `created`, `self`, `name`, `nick`, `photo`, `thumb`, `micro`, `blocked`, `pending`, `url`, `nurl`, + `addr`, `request`, `notify`, `poll`, `confirm`, `poco`, `name-date`, `uri-date`, `avatar-date`, `closeness`) + VALUES (%d, '%s', 1, '%s', '%s', '%s', '%s', '%s', 0, 0, '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', 0)", + intval($user['uid']), + datetime_convert(), + dbesc($user['username']), + dbesc($user['nickname']), + dbesc(z_root()."/photo/profile/".$user['uid'].".jpg"), + dbesc(z_root()."/photo/avatar/".$user['uid'].".jpg"), + dbesc(z_root()."/photo/micro/".$user['uid'].".jpg"), + dbesc(z_root()."/profile/".$user['nickname']), + dbesc(normalise_link(z_root()."/profile/".$user['nickname'])), + dbesc($user['nickname'].'@'.substr(z_root(), strpos(z_root(),'://') + 3)), + dbesc(z_root()."/dfrn_request/".$user['nickname']), + dbesc(z_root()."/dfrn_notify/".$user['nickname']), + dbesc(z_root()."/dfrn_poll/".$user['nickname']), + dbesc(z_root()."/dfrn_confirm/".$user['nickname']), + dbesc(z_root()."/poco/".$user['nickname']), + dbesc(datetime_convert()), + dbesc(datetime_convert()), + dbesc(datetime_convert()) + ); +} /** * @brief send registration confiƕmation with the intormation that reg is pending From bc323b0bfa70ad379aef69fa9f7ec64eb9d812a7 Mon Sep 17 00:00:00 2001 From: Michael Date: Sun, 18 Dec 2016 17:10:38 +0000 Subject: [PATCH 2/8] OStatus: Follow/Unfollow should now work again. --- include/Contact.php | 23 +++---- include/follow.php | 42 +++++------- include/ostatus.php | 113 +++++++++++++++++++++++++++++++-- view/templates/follow_slap.tpl | 26 -------- 4 files changed, 131 insertions(+), 73 deletions(-) delete mode 100644 view/templates/follow_slap.tpl diff --git a/include/Contact.php b/include/Contact.php index 8a33e3fe91..f03d14c701 100644 --- a/include/Contact.php +++ b/include/Contact.php @@ -93,20 +93,13 @@ function terminate_friendship($user,$self,$contact) { if($contact['network'] === NETWORK_OSTATUS) { - $slap = replace_macros(get_markup_template('follow_slap.tpl'), array( - '$name' => $user['username'], - '$profile_page' => $a->get_baseurl() . '/profile/' . $user['nickname'], - '$photo' => $self['photo'], - '$thumb' => $self['thumb'], - '$published' => datetime_convert('UTC','UTC', 'now', ATOM_TIME), - '$item_id' => 'urn:X-dfrn:' . $a->get_hostname() . ':unfollow:' . get_guid(32), - '$title' => '', - '$type' => 'text', - '$content' => t('stopped following'), - '$nick' => $user['nickname'], - '$verb' => 'http://ostatus.org/schema/1.0/unfollow', // ACTIVITY_UNFOLLOW, - '$ostat_follow' => '' // 'http://ostatus.org/schema/1.0/unfollow' . "\r\n" - )); + require_once('include/ostatus.php'); + + // create an unfollow slap + $item = array(); + $item['verb'] = NAMESPACE_OSTATUS."/unfollow"; + $item['follow'] = $contact["url"]; + $slap = ostatus::salmon($item, $user); if((x($contact,'notify')) && (strlen($contact['notify']))) { require_once('include/salmon.php'); @@ -159,7 +152,7 @@ function mark_for_death($contact) { /// @todo /// Check for contact vitality via probing - $expiry = $contact['term-date'] . ' + 32 days '; + $expiry = $contact['term-date'] . ' + 10 days '; if(datetime_convert() > datetime_convert('UTC','UTC',$expiry)) { // relationship is really truly dead. diff --git a/include/follow.php b/include/follow.php index 1c33edf80e..77f0bbe2f1 100644 --- a/include/follow.php +++ b/include/follow.php @@ -2,6 +2,10 @@ require_once("include/Scrape.php"); require_once("include/socgraph.php"); require_once('include/group.php'); +require_once('include/salmon.php'); +require_once('include/ostatus.php'); +require_once("include/Photo.php"); +require_once('include/diaspora.php'); function update_contact($id) { /* @@ -263,8 +267,6 @@ function new_contact($uid,$url,$interactive = false) { if (intval($def_gid)) group_add_member($uid, '', $contact_id, $def_gid); - require_once("include/Photo.php"); - // Update the avatar update_contact_avatar($ret['photo'],$uid,$contact_id); @@ -272,36 +274,22 @@ function new_contact($uid,$url,$interactive = false) { proc_run(PRIORITY_HIGH, "include/onepoll.php", $contact_id, "force"); - // create a follow slap - - $tpl = get_markup_template('follow_slap.tpl'); - $slap = replace_macros($tpl, array( - '$name' => $a->user['username'], - '$profile_page' => $a->get_baseurl() . '/profile/' . $a->user['nickname'], - '$photo' => $a->contact['photo'], - '$thumb' => $a->contact['thumb'], - '$published' => datetime_convert('UTC','UTC', 'now', ATOM_TIME), - '$item_id' => 'urn:X-dfrn:' . $a->get_hostname() . ':follow:' . get_guid(32), - '$title' => '', - '$type' => 'text', - '$content' => t('following'), - '$nick' => $a->user['nickname'], - '$verb' => ACTIVITY_FOLLOW, - '$ostat_follow' => '' - )); - $r = q("SELECT `contact`.*, `user`.* FROM `contact` INNER JOIN `user` ON `contact`.`uid` = `user`.`uid` - WHERE `user`.`uid` = %d AND `contact`.`self` = 1 LIMIT 1", + WHERE `user`.`uid` = %d AND `contact`.`self` LIMIT 1", intval($uid) ); - if(count($r)) { - if(($contact['network'] == NETWORK_OSTATUS) && (strlen($contact['notify']))) { - require_once('include/salmon.php'); - slapper($r[0],$contact['notify'],$slap); + if (dbm::is_result($r)) { + if (($contact['network'] == NETWORK_OSTATUS) && (strlen($contact['notify']))) { + + // create a follow slap + $item = array(); + $item['verb'] = ACTIVITY_FOLLOW; + $item['follow'] = $contact["url"]; + $slap = ostatus::salmon($item, $r[0]); + slapper($r[0], $contact['notify'], $slap); } - if($contact['network'] == NETWORK_DIASPORA) { - require_once('include/diaspora.php'); + if ($contact['network'] == NETWORK_DIASPORA) { $ret = diaspora::send_share($a->user,$contact); logger('share returns: '.$ret); } diff --git a/include/ostatus.php b/include/ostatus.php index bcd8fd6713..4f84c123d9 100644 --- a/include/ostatus.php +++ b/include/ostatus.php @@ -1561,10 +1561,13 @@ class ostatus { if ($xml) return $xml; - if ($item["verb"] == ACTIVITY_LIKE) + if ($item["verb"] == ACTIVITY_LIKE) { return self::like_entry($doc, $item, $owner, $toplevel); - else + } elseif (in_array($item["verb"], array(ACTIVITY_FOLLOW, NAMESPACE_OSTATUS."/unfollow"))) { + return self::follow_entry($doc, $item, $owner, $toplevel); + } else { return self::note_entry($doc, $item, $owner, $toplevel); + } } /** @@ -1740,6 +1743,97 @@ class ostatus { return $entry; } + /** + * @brief Adds the person object element to the XML document + * + * @param object $doc XML document + * @param array $owner Contact data of the poster + * @param array $contact Contact data of the target + * + * @return object author element + */ + private function add_person_object($doc, $owner, $contact) { + + $object = $doc->createElement("activity:object"); + xml::add_element($doc, $object, "activity:object-type", ACTIVITY_OBJ_PERSON); + + if ($contact['network'] == NETWORK_PHANTOM) { + xml::add_element($doc, $object, "id", $contact['url']); + return $object; + } + + xml::add_element($doc, $object, "id", $contact["alias"]); + xml::add_element($doc, $object, "title", $contact["nick"]); + + $attributes = array("rel" => "alternate", "type" => "text/html", "href" => $contact["url"]); + xml::add_element($doc, $object, "link", "", $attributes); + + $attributes = array( + "rel" => "avatar", + "type" => "image/jpeg", // To-Do? + "media:width" => 175, + "media:height" => 175, + "href" => $contact["photo"]); + xml::add_element($doc, $object, "link", "", $attributes); + + xml::add_element($doc, $object, "poco:preferredUsername", $contact["nick"]); + xml::add_element($doc, $object, "poco:displayName", $contact["name"]); + + if (trim($contact["location"]) != "") { + $element = $doc->createElement("poco:address"); + xml::add_element($doc, $element, "poco:formatted", $contact["location"]); + $object->appendChild($element); + } + + return $object; + } + + /** + * @brief Adds a follow/unfollow entry element + * + * @param object $doc XML document + * @param array $item Data of the follow/unfollow message + * @param array $owner Contact data of the poster + * @param bool $toplevel Is it for en entry element (false) or a feed entry (true)? + * + * @return object Entry element + */ + private function follow_entry($doc, $item, $owner, $toplevel) { + + $item["id"] = $item["parent"] = 0; + $item['guid'] = get_guid(32); + $item["uri"] = $item['parent-uri'] = $item['thr-parent'] = 'urn:X-dfrn:'.get_app()->get_hostname() . ':follow:'.$item['guid']; + $item["created"] = $item["edited"] = datetime_convert('UTC','UTC', 'now', ATOM_TIME); + $item["app"] = "activity"; + + $contact = Probe::uri($item['follow']); + + if ($contact['alias'] == '') { + $contact['alias'] = $contact["url"]; + } else { + $item['follow'] = $contact['alias']; + } + + if ($item['verb'] == ACTIVITY_FOLLOW) { + $message = t('%s is now following %s.'); + } else { + $message = t('%s stopped following %s.'); + } + + $item["body"] = sprintf($message, $owner["url"], $owner["nick"], $contact["url"], $contact["nick"]); + + $title = self::entry_header($doc, $entry, $owner, $toplevel); + + self::entry_content($doc, $entry, $item, $owner, ""); + + $object = self::add_person_object($doc, $owner, $contact); + $entry->appendChild($object); + + self::entry_footer($doc, $entry, $item, $owner); + + return $entry; + } + /** * @brief Adds a regular entry element * @@ -1881,9 +1975,14 @@ class ostatus { } } - xml::add_element($doc, $entry, "link", "", array("rel" => "ostatus:conversation", - "href" => App::get_baseurl()."/display/".$owner["nick"]."/".$item["parent"])); - xml::add_element($doc, $entry, "ostatus:conversation", App::get_baseurl()."/display/".$owner["nick"]."/".$item["parent"]); + if (intval($item["parent"]) > 0) { + $conversation = App::get_baseurl()."/display/".$owner["nick"]."/".$item["parent"]; + } else { + $conversation = "urn:X-dfrn:".App::get_baseurl().":conversation:".$item["guid"]; + } + + xml::add_element($doc, $entry, "link", "", array("rel" => "ostatus:conversation", "href" => $conversation)); + xml::add_element($doc, $entry, "ostatus:conversation", $conversation); $tags = item_getfeedtags($item); @@ -1892,6 +1991,10 @@ class ostatus { if ($t[0] == "@") $mentioned[$t[1]] = $t[1]; + if (isset($item['follow'])) { + $mentioned[$item['follow']] = $item['follow']; + } + // Make sure that mentions are accepted (GNU Social has problems with mixing HTTP and HTTPS) $newmentions = array(); foreach ($mentioned AS $mention) { diff --git a/view/templates/follow_slap.tpl b/view/templates/follow_slap.tpl deleted file mode 100644 index b0e1cbafda..0000000000 --- a/view/templates/follow_slap.tpl +++ /dev/null @@ -1,26 +0,0 @@ - - - - {{$name}} - {{$profile_page}} - - - - - {{$item_id}} - {{$title}} - {{$published}} - {{$content}} - - - http://activitystrea.ms/schema/1.0/person - {{$profile_page}} - - - - {{$nick}} - {{$name}} - - {{$verb}} - {{$ostat_follow}} - From 099f51c7b5698cfe0d8cddd4362dac10c041d929 Mon Sep 17 00:00:00 2001 From: Michael Date: Sun, 18 Dec 2016 17:36:48 +0000 Subject: [PATCH 3/8] Removal of test code --- include/Contact.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/Contact.php b/include/Contact.php index f03d14c701..58748e289a 100644 --- a/include/Contact.php +++ b/include/Contact.php @@ -152,7 +152,7 @@ function mark_for_death($contact) { /// @todo /// Check for contact vitality via probing - $expiry = $contact['term-date'] . ' + 10 days '; + $expiry = $contact['term-date'] . ' + 32 days '; if(datetime_convert() > datetime_convert('UTC','UTC',$expiry)) { // relationship is really truly dead. From a8e80ef0a61d5c6984e1fc4c8060a82a6ca26601 Mon Sep 17 00:00:00 2001 From: Michael Date: Sun, 18 Dec 2016 20:02:13 +0000 Subject: [PATCH 4/8] Ostatus: The follow/unfollow XML should now be even more compliant. --- include/ostatus.php | 49 +++++++++++++++++++++++++++------------------ 1 file changed, 29 insertions(+), 20 deletions(-) diff --git a/include/ostatus.php b/include/ostatus.php index 4f84c123d9..b38ad91d47 100644 --- a/include/ostatus.php +++ b/include/ostatus.php @@ -1801,10 +1801,8 @@ class ostatus { private function follow_entry($doc, $item, $owner, $toplevel) { $item["id"] = $item["parent"] = 0; - $item['guid'] = get_guid(32); - $item["uri"] = $item['parent-uri'] = $item['thr-parent'] = 'urn:X-dfrn:'.get_app()->get_hostname() . ':follow:'.$item['guid']; - $item["created"] = $item["edited"] = datetime_convert('UTC','UTC', 'now', ATOM_TIME); - $item["app"] = "activity"; + $item["created"] = $item["edited"] = date("c"); + $item["private"] = true; $contact = Probe::uri($item['follow']); @@ -1814,17 +1812,35 @@ class ostatus { $item['follow'] = $contact['alias']; } + $r = q("SELECT `id` FROM `contact` WHERE `uid` = %d AND `nurl` = '%s'", + intval($owner['uid']), dbesc(normalise_link($contact["url"]))); + + if (dbm::is_result($r)) { + $connect_id = $r[0]['id']; + } else { + $connect_id = 0; + } + if ($item['verb'] == ACTIVITY_FOLLOW) { - $message = t('%s is now following %s.'); + $message = t('%s is now following %s.'); + $title = t('following'); + $action = "subscription"; } else { - $message = t('%s stopped following %s.'); + $message = t('%s stopped following %s.'); + $title = t('stopped following'); + $action = "unfollow"; } - $item["body"] = sprintf($message, $owner["url"], $owner["nick"], $contact["url"], $contact["nick"]); + $item["uri"] = $item['parent-uri'] = $item['thr-parent'] = + 'tag:'.get_app()->get_hostname(). + ','.date('Y-m-d').':'.$action.':'.$owner['uid']. + ':person:'.$connect_id.':'.$item['created']; - $title = self::entry_header($doc, $entry, $owner, $toplevel); + $item["body"] = sprintf($message, $owner["nick"], $contact["nick"]); - self::entry_content($doc, $entry, $item, $owner, ""); + self::entry_header($doc, $entry, $owner, $toplevel); + + self::entry_content($doc, $entry, $item, $owner, $title); $object = self::add_person_object($doc, $owner, $contact); $entry->appendChild($object); @@ -1926,7 +1942,7 @@ class ostatus { xml::add_element($doc, $entry, "link", "", array("rel" => "alternate", "type" => "text/html", "href" => App::get_baseurl()."/display/".$item["guid"])); - if ($complete) + if ($complete AND ($item["id"] > 0)) xml::add_element($doc, $entry, "status_net", "", array("notice_id" => $item["id"])); xml::add_element($doc, $entry, "activity:verb", $verb); @@ -1977,13 +1993,10 @@ class ostatus { if (intval($item["parent"]) > 0) { $conversation = App::get_baseurl()."/display/".$owner["nick"]."/".$item["parent"]; - } else { - $conversation = "urn:X-dfrn:".App::get_baseurl().":conversation:".$item["guid"]; + xml::add_element($doc, $entry, "link", "", array("rel" => "ostatus:conversation", "href" => $conversation)); + xml::add_element($doc, $entry, "ostatus:conversation", $conversation); } - xml::add_element($doc, $entry, "link", "", array("rel" => "ostatus:conversation", "href" => $conversation)); - xml::add_element($doc, $entry, "ostatus:conversation", $conversation); - $tags = item_getfeedtags($item); if(count($tags)) @@ -1991,10 +2004,6 @@ class ostatus { if ($t[0] == "@") $mentioned[$t[1]] = $t[1]; - if (isset($item['follow'])) { - $mentioned[$item['follow']] = $item['follow']; - } - // Make sure that mentions are accepted (GNU Social has problems with mixing HTTP and HTTPS) $newmentions = array(); foreach ($mentioned AS $mention) { @@ -2032,7 +2041,7 @@ class ostatus { self::get_attachment($doc, $entry, $item); - if ($complete) { + if ($complete AND ($item["id"] > 0)) { $app = $item["app"]; if ($app == "") $app = "web"; From 3f6fd4bf8480e10594058b3deff1d527020c8d91 Mon Sep 17 00:00:00 2001 From: Michael Date: Sun, 18 Dec 2016 20:34:34 +0000 Subject: [PATCH 5/8] Mastodon: Hopefully we can now detect reshares better --- include/ostatus.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/ostatus.php b/include/ostatus.php index b38ad91d47..f9911bfaab 100644 --- a/include/ostatus.php +++ b/include/ostatus.php @@ -467,7 +467,7 @@ class ostatus { } // Is it a repeated post? - if ($repeat_of != "") { + if (($repeat_of != "") OR ($item["verb"] == ACTIVITY_SHARE)) { $activityobjects = $xpath->query('activity:object', $entry)->item(0); if (is_object($activityobjects)) { From 8cab220387d2cf32d0620ec178e13177b25710fe Mon Sep 17 00:00:00 2001 From: Michael Date: Sun, 18 Dec 2016 23:39:44 +0000 Subject: [PATCH 6/8] Bugfix: Reimported Friendica posts from pump.io had the links missing. --- include/plaintext.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/include/plaintext.php b/include/plaintext.php index d98d736550..8302728679 100644 --- a/include/plaintext.php +++ b/include/plaintext.php @@ -63,6 +63,10 @@ function get_old_attachment_data($body) { $post["url"] = $matches[1]; $post["title"] = $matches[2]; } + if (($post["url"] == "") AND (in_array($post["type"], array("link", "video"))) + AND preg_match("/\[url\=([$URLSearchString]*)\](.*?)\[\/url\]/ism", $attacheddata, $matches)) { + $post["url"] = $matches[1]; + } // Search for description if (preg_match("/\[quote\](.*?)\[\/quote\]/ism", $attacheddata, $matches)) From a58d8d2c71542c3443a98e8cf949a2ff2831674e Mon Sep 17 00:00:00 2001 From: Thomas Willingham Date: Mon, 19 Dec 2016 00:10:11 +0000 Subject: [PATCH 7/8] This error message had me confused for about twenty minutes. I couldn't figure out what was wrong with my imagick install that would make it give me an orange button if it was installed. Of course, the problem was that it wasn't installed, and the message was worded badly. This is a bit less confusing. --- mod/install.php | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/mod/install.php b/mod/install.php index d18d4ac3e2..97092c140f 100755 --- a/mod/install.php +++ b/mod/install.php @@ -548,9 +548,14 @@ function check_imagik(&$checks) { $gif = true; } } - check_add($checks, t('ImageMagick PHP extension is installed'), $imagick, false, ""); - if ($imagick) { - check_add($checks, t('ImageMagick supports GIF'), $gif, false, ""); + if ($imagick == false) { + check_add($checks, t('ImageMagick PHP extension is not installed'), $imagick, false, ""); + } + else { + check_add($checks, t('ImageMagick PHP extension is installed'), $imagick, false, ""); + if ($imagick) { + check_add($checks, t('ImageMagick supports GIF'), $gif, false, ""); + } } } From 5507a2caebad6cc3a440bb1b6d43e1618962b65d Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Mon, 19 Dec 2016 07:47:52 +0100 Subject: [PATCH 8/8] regenerated master messages.po file --- util/messages.po | 9469 +++++++++++++++++++++++----------------------- 1 file changed, 4744 insertions(+), 4725 deletions(-) diff --git a/util/messages.po b/util/messages.po index 7759370e1f..696fa565f1 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-12-06 08:42+0100\n" +"POT-Creation-Date: 2016-12-19 07:46+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -18,185 +18,6 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" -#: boot.php:970 -msgid "Delete this item?" -msgstr "" - -#: boot.php:971 mod/content.php:727 mod/content.php:945 mod/photos.php:1589 -#: mod/photos.php:1637 mod/photos.php:1723 object/Item.php:403 -#: object/Item.php:719 -msgid "Comment" -msgstr "" - -#: boot.php:972 include/contact_widgets.php:242 include/ForumManager.php:119 -#: include/items.php:2241 mod/content.php:624 object/Item.php:432 -#: view/theme/vier/theme.php:260 -msgid "show more" -msgstr "" - -#: boot.php:973 -msgid "show fewer" -msgstr "" - -#: boot.php:1655 -#, php-format -msgid "Update %s failed. See error logs." -msgstr "" - -#: boot.php:1767 -msgid "Create a New Account" -msgstr "" - -#: boot.php:1768 include/nav.php:109 mod/register.php:289 -msgid "Register" -msgstr "" - -#: boot.php:1792 include/nav.php:78 view/theme/frio/theme.php:246 -msgid "Logout" -msgstr "" - -#: boot.php:1793 include/nav.php:95 mod/bookmarklet.php:12 -msgid "Login" -msgstr "" - -#: boot.php:1795 mod/lostpass.php:161 -msgid "Nickname or Email: " -msgstr "" - -#: boot.php:1796 -msgid "Password: " -msgstr "" - -#: boot.php:1797 -msgid "Remember me" -msgstr "" - -#: boot.php:1800 -msgid "Or login using OpenID: " -msgstr "" - -#: boot.php:1806 -msgid "Forgot your password?" -msgstr "" - -#: boot.php:1807 mod/lostpass.php:109 -msgid "Password Reset" -msgstr "" - -#: boot.php:1809 -msgid "Website Terms of Service" -msgstr "" - -#: boot.php:1810 -msgid "terms of service" -msgstr "" - -#: boot.php:1812 -msgid "Website Privacy Policy" -msgstr "" - -#: boot.php:1813 -msgid "privacy policy" -msgstr "" - -#: include/datetime.php:57 include/datetime.php:59 mod/profiles.php:705 -msgid "Miscellaneous" -msgstr "" - -#: include/datetime.php:183 include/identity.php:629 -msgid "Birthday:" -msgstr "" - -#: include/datetime.php:185 mod/profiles.php:728 -msgid "Age: " -msgstr "" - -#: include/datetime.php:187 -msgid "YYYY-MM-DD or MM-DD" -msgstr "" - -#: include/datetime.php:341 -msgid "never" -msgstr "" - -#: include/datetime.php:347 -msgid "less than a second ago" -msgstr "" - -#: include/datetime.php:350 -msgid "year" -msgstr "" - -#: include/datetime.php:350 -msgid "years" -msgstr "" - -#: include/datetime.php:351 include/event.php:480 mod/events.php:389 -#: mod/cal.php:284 -msgid "month" -msgstr "" - -#: include/datetime.php:351 -msgid "months" -msgstr "" - -#: include/datetime.php:352 include/event.php:481 mod/events.php:390 -#: mod/cal.php:285 -msgid "week" -msgstr "" - -#: include/datetime.php:352 -msgid "weeks" -msgstr "" - -#: include/datetime.php:353 include/event.php:482 mod/events.php:391 -#: mod/cal.php:286 -msgid "day" -msgstr "" - -#: include/datetime.php:353 -msgid "days" -msgstr "" - -#: include/datetime.php:354 -msgid "hour" -msgstr "" - -#: include/datetime.php:354 -msgid "hours" -msgstr "" - -#: include/datetime.php:355 -msgid "minute" -msgstr "" - -#: include/datetime.php:355 -msgid "minutes" -msgstr "" - -#: include/datetime.php:356 -msgid "second" -msgstr "" - -#: include/datetime.php:356 -msgid "seconds" -msgstr "" - -#: include/datetime.php:365 -#, php-format -msgid "%1$d %2$s ago" -msgstr "" - -#: include/datetime.php:572 -#, php-format -msgid "%s's birthday" -msgstr "" - -#: include/datetime.php:573 include/dfrn.php:1109 -#, php-format -msgid "Happy Birthday %s" -msgstr "" - #: include/contact_widgets.php:6 msgid "Add New Contact" msgstr "" @@ -209,8 +30,9 @@ msgstr "" msgid "Example: bob@example.com, http://example.com/barbara" msgstr "" -#: include/contact_widgets.php:10 include/identity.php:218 mod/dirfind.php:201 -#: mod/match.php:87 mod/allfriends.php:82 mod/suggest.php:101 +#: include/contact_widgets.php:10 include/identity.php:218 +#: mod/allfriends.php:82 mod/dirfind.php:201 mod/match.php:87 +#: mod/suggest.php:101 msgid "Connect" msgstr "" @@ -229,10 +51,9 @@ msgstr "" msgid "Enter name or interest" msgstr "" -#: include/contact_widgets.php:32 include/conversation.php:981 -#: include/Contact.php:361 mod/dirfind.php:204 mod/match.php:72 -#: mod/allfriends.php:66 mod/contacts.php:602 mod/follow.php:103 -#: mod/suggest.php:83 +#: include/contact_widgets.php:32 include/Contact.php:354 +#: include/conversation.php:981 mod/allfriends.php:66 mod/dirfind.php:204 +#: mod/match.php:72 mod/suggest.php:83 mod/contacts.php:602 mod/follow.php:103 msgid "Connect/Follow" msgstr "" @@ -288,2417 +109,2098 @@ msgid_plural "%d contacts in common" msgstr[0] "" msgstr[1] "" -#: include/NotificationsManager.php:153 -msgid "System" +#: include/contact_widgets.php:242 include/ForumManager.php:119 +#: include/items.php:2245 mod/content.php:624 object/Item.php:432 +#: view/theme/vier/theme.php:260 boot.php:972 +msgid "show more" msgstr "" -#: include/NotificationsManager.php:160 include/nav.php:158 mod/admin.php:411 -#: view/theme/frio/theme.php:256 -msgid "Network" +#: include/ForumManager.php:114 include/nav.php:131 include/text.php:1025 +#: view/theme/vier/theme.php:255 +msgid "Forums" msgstr "" -#: include/NotificationsManager.php:167 mod/profiles.php:703 -#: mod/network.php:846 -msgid "Personal" +#: include/ForumManager.php:116 view/theme/vier/theme.php:257 +msgid "External link to forum" msgstr "" -#: include/NotificationsManager.php:174 include/nav.php:105 -#: include/nav.php:161 -msgid "Home" +#: include/profile_selectors.php:6 +msgid "Male" msgstr "" -#: include/NotificationsManager.php:181 include/nav.php:166 -msgid "Introductions" +#: include/profile_selectors.php:6 +msgid "Female" msgstr "" -#: include/NotificationsManager.php:234 include/NotificationsManager.php:244 -#, php-format -msgid "%s commented on %s's post" +#: include/profile_selectors.php:6 +msgid "Currently Male" msgstr "" -#: include/NotificationsManager.php:243 -#, php-format -msgid "%s created a new post" +#: include/profile_selectors.php:6 +msgid "Currently Female" msgstr "" -#: include/NotificationsManager.php:256 -#, php-format -msgid "%s liked %s's post" +#: include/profile_selectors.php:6 +msgid "Mostly Male" msgstr "" -#: include/NotificationsManager.php:267 -#, php-format -msgid "%s disliked %s's post" +#: include/profile_selectors.php:6 +msgid "Mostly Female" msgstr "" -#: include/NotificationsManager.php:278 -#, php-format -msgid "%s is attending %s's event" +#: include/profile_selectors.php:6 +msgid "Transgender" msgstr "" -#: include/NotificationsManager.php:289 -#, php-format -msgid "%s is not attending %s's event" +#: include/profile_selectors.php:6 +msgid "Intersex" msgstr "" -#: include/NotificationsManager.php:300 -#, php-format -msgid "%s may attend %s's event" +#: include/profile_selectors.php:6 +msgid "Transsexual" msgstr "" -#: include/NotificationsManager.php:315 -#, php-format -msgid "%s is now friends with %s" +#: include/profile_selectors.php:6 +msgid "Hermaphrodite" msgstr "" -#: include/NotificationsManager.php:748 -msgid "Friend Suggestion" +#: include/profile_selectors.php:6 +msgid "Neuter" msgstr "" -#: include/NotificationsManager.php:781 -msgid "Friend/Connect Request" +#: include/profile_selectors.php:6 +msgid "Non-specific" msgstr "" -#: include/NotificationsManager.php:781 -msgid "New Follower" +#: include/profile_selectors.php:6 +msgid "Other" msgstr "" -#: include/enotify.php:24 -msgid "Friendica Notification" +#: include/profile_selectors.php:6 include/conversation.php:1487 +msgid "Undecided" +msgid_plural "Undecided" +msgstr[0] "" +msgstr[1] "" + +#: include/profile_selectors.php:23 +msgid "Males" msgstr "" -#: include/enotify.php:27 -msgid "Thank You," +#: include/profile_selectors.php:23 +msgid "Females" msgstr "" -#: include/enotify.php:30 -#, php-format -msgid "%s Administrator" +#: include/profile_selectors.php:23 +msgid "Gay" msgstr "" -#: include/enotify.php:32 -#, php-format -msgid "%1$s, %2$s Administrator" +#: include/profile_selectors.php:23 +msgid "Lesbian" msgstr "" -#: include/enotify.php:43 include/delivery.php:457 -msgid "noreply" -msgstr "" - -#: include/enotify.php:70 -#, php-format -msgid "%s " -msgstr "" - -#: include/enotify.php:83 -#, php-format -msgid "[Friendica:Notify] New mail received at %s" +#: include/profile_selectors.php:23 +msgid "No Preference" msgstr "" -#: include/enotify.php:85 -#, php-format -msgid "%1$s sent you a new private message at %2$s." +#: include/profile_selectors.php:23 +msgid "Bisexual" msgstr "" -#: include/enotify.php:86 -#, php-format -msgid "%1$s sent you %2$s." +#: include/profile_selectors.php:23 +msgid "Autosexual" msgstr "" -#: include/enotify.php:86 -msgid "a private message" +#: include/profile_selectors.php:23 +msgid "Abstinent" msgstr "" -#: include/enotify.php:88 -#, php-format -msgid "Please visit %s to view and/or reply to your private messages." +#: include/profile_selectors.php:23 +msgid "Virgin" msgstr "" -#: include/enotify.php:134 -#, php-format -msgid "%1$s commented on [url=%2$s]a %3$s[/url]" +#: include/profile_selectors.php:23 +msgid "Deviant" msgstr "" -#: include/enotify.php:141 -#, php-format -msgid "%1$s commented on [url=%2$s]%3$s's %4$s[/url]" +#: include/profile_selectors.php:23 +msgid "Fetish" msgstr "" -#: include/enotify.php:149 -#, php-format -msgid "%1$s commented on [url=%2$s]your %3$s[/url]" +#: include/profile_selectors.php:23 +msgid "Oodles" msgstr "" -#: include/enotify.php:159 -#, php-format -msgid "[Friendica:Notify] Comment to conversation #%1$d by %2$s" +#: include/profile_selectors.php:23 +msgid "Nonsexual" msgstr "" -#: include/enotify.php:161 -#, php-format -msgid "%s commented on an item/conversation you have been following." +#: include/profile_selectors.php:42 +msgid "Single" msgstr "" -#: include/enotify.php:164 include/enotify.php:178 include/enotify.php:192 -#: include/enotify.php:206 include/enotify.php:224 include/enotify.php:238 -#, php-format -msgid "Please visit %s to view and/or reply to the conversation." +#: include/profile_selectors.php:42 +msgid "Lonely" msgstr "" -#: include/enotify.php:171 -#, php-format -msgid "[Friendica:Notify] %s posted to your profile wall" +#: include/profile_selectors.php:42 +msgid "Available" msgstr "" -#: include/enotify.php:173 -#, php-format -msgid "%1$s posted to your profile wall at %2$s" +#: include/profile_selectors.php:42 +msgid "Unavailable" msgstr "" -#: include/enotify.php:174 -#, php-format -msgid "%1$s posted to [url=%2$s]your wall[/url]" +#: include/profile_selectors.php:42 +msgid "Has crush" msgstr "" -#: include/enotify.php:185 -#, php-format -msgid "[Friendica:Notify] %s tagged you" +#: include/profile_selectors.php:42 +msgid "Infatuated" msgstr "" -#: include/enotify.php:187 -#, php-format -msgid "%1$s tagged you at %2$s" +#: include/profile_selectors.php:42 +msgid "Dating" msgstr "" -#: include/enotify.php:188 -#, php-format -msgid "%1$s [url=%2$s]tagged you[/url]." +#: include/profile_selectors.php:42 +msgid "Unfaithful" msgstr "" -#: include/enotify.php:199 -#, php-format -msgid "[Friendica:Notify] %s shared a new post" +#: include/profile_selectors.php:42 +msgid "Sex Addict" msgstr "" -#: include/enotify.php:201 -#, php-format -msgid "%1$s shared a new post at %2$s" +#: include/profile_selectors.php:42 include/user.php:280 include/user.php:284 +msgid "Friends" msgstr "" -#: include/enotify.php:202 -#, php-format -msgid "%1$s [url=%2$s]shared a post[/url]." +#: include/profile_selectors.php:42 +msgid "Friends/Benefits" msgstr "" -#: include/enotify.php:213 -#, php-format -msgid "[Friendica:Notify] %1$s poked you" +#: include/profile_selectors.php:42 +msgid "Casual" msgstr "" -#: include/enotify.php:215 -#, php-format -msgid "%1$s poked you at %2$s" +#: include/profile_selectors.php:42 +msgid "Engaged" msgstr "" -#: include/enotify.php:216 -#, php-format -msgid "%1$s [url=%2$s]poked you[/url]." +#: include/profile_selectors.php:42 +msgid "Married" msgstr "" -#: include/enotify.php:231 -#, php-format -msgid "[Friendica:Notify] %s tagged your post" +#: include/profile_selectors.php:42 +msgid "Imaginarily married" msgstr "" -#: include/enotify.php:233 -#, php-format -msgid "%1$s tagged your post at %2$s" +#: include/profile_selectors.php:42 +msgid "Partners" msgstr "" -#: include/enotify.php:234 -#, php-format -msgid "%1$s tagged [url=%2$s]your post[/url]" +#: include/profile_selectors.php:42 +msgid "Cohabiting" msgstr "" -#: include/enotify.php:245 -msgid "[Friendica:Notify] Introduction received" +#: include/profile_selectors.php:42 +msgid "Common law" msgstr "" -#: include/enotify.php:247 -#, php-format -msgid "You've received an introduction from '%1$s' at %2$s" +#: include/profile_selectors.php:42 +msgid "Happy" msgstr "" -#: include/enotify.php:248 -#, php-format -msgid "You've received [url=%1$s]an introduction[/url] from %2$s." +#: include/profile_selectors.php:42 +msgid "Not looking" msgstr "" -#: include/enotify.php:252 include/enotify.php:295 -#, php-format -msgid "You may visit their profile at %s" +#: include/profile_selectors.php:42 +msgid "Swinger" msgstr "" -#: include/enotify.php:254 -#, php-format -msgid "Please visit %s to approve or reject the introduction." +#: include/profile_selectors.php:42 +msgid "Betrayed" msgstr "" -#: include/enotify.php:262 -msgid "[Friendica:Notify] A new person is sharing with you" +#: include/profile_selectors.php:42 +msgid "Separated" msgstr "" -#: include/enotify.php:264 include/enotify.php:265 -#, php-format -msgid "%1$s is sharing with you at %2$s" +#: include/profile_selectors.php:42 +msgid "Unstable" msgstr "" -#: include/enotify.php:271 -msgid "[Friendica:Notify] You have a new follower" +#: include/profile_selectors.php:42 +msgid "Divorced" msgstr "" -#: include/enotify.php:273 include/enotify.php:274 -#, php-format -msgid "You have a new follower at %2$s : %1$s" +#: include/profile_selectors.php:42 +msgid "Imaginarily divorced" msgstr "" -#: include/enotify.php:285 -msgid "[Friendica:Notify] Friend suggestion received" +#: include/profile_selectors.php:42 +msgid "Widowed" msgstr "" -#: include/enotify.php:287 -#, php-format -msgid "You've received a friend suggestion from '%1$s' at %2$s" +#: include/profile_selectors.php:42 +msgid "Uncertain" msgstr "" -#: include/enotify.php:288 -#, php-format -msgid "You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s." +#: include/profile_selectors.php:42 +msgid "It's complicated" msgstr "" -#: include/enotify.php:293 -msgid "Name:" +#: include/profile_selectors.php:42 +msgid "Don't care" msgstr "" -#: include/enotify.php:294 -msgid "Photo:" +#: include/profile_selectors.php:42 +msgid "Ask me" msgstr "" -#: include/enotify.php:297 +#: include/dba_pdo.php:72 include/dba.php:56 #, php-format -msgid "Please visit %s to approve or reject the suggestion." -msgstr "" - -#: include/enotify.php:305 include/enotify.php:319 -msgid "[Friendica:Notify] Connection accepted" +msgid "Cannot locate DNS info for database server '%s'" msgstr "" -#: include/enotify.php:307 include/enotify.php:321 -#, php-format -msgid "'%1$s' has accepted your connection request at %2$s" +#: include/auth.php:45 +msgid "Logged out." msgstr "" -#: include/enotify.php:308 include/enotify.php:322 -#, php-format -msgid "%2$s has accepted your [url=%1$s]connection request[/url]." +#: include/auth.php:116 include/auth.php:178 mod/openid.php:100 +msgid "Login failed." msgstr "" -#: include/enotify.php:312 +#: include/auth.php:132 include/user.php:75 msgid "" -"You are now mutual friends and may exchange status updates, photos, and " -"email without restriction." +"We encountered a problem while logging in with the OpenID you provided. " +"Please check the correct spelling of the ID." msgstr "" -#: include/enotify.php:314 -#, php-format -msgid "Please visit %s if you wish to make any changes to this relationship." +#: include/auth.php:132 include/user.php:75 +msgid "The error message was:" msgstr "" -#: include/enotify.php:326 -#, php-format +#: include/group.php:25 msgid "" -"'%1$s' has chosen to accept you a \"fan\", which restricts some forms of " -"communication - such as private messaging and some profile interactions. If " -"this is a celebrity or community page, these settings were applied " -"automatically." +"A deleted group with this name was revived. Existing item permissions " +"may apply to this group and any future members. If this is " +"not what you intended, please create another group with a different name." msgstr "" -#: include/enotify.php:328 -#, php-format -msgid "" -"'%1$s' may choose to extend this into a two-way or more permissive " -"relationship in the future." +#: include/group.php:209 +msgid "Default privacy group for new contacts" msgstr "" -#: include/enotify.php:330 -#, php-format -msgid "Please visit %s if you wish to make any changes to this relationship." +#: include/group.php:242 +msgid "Everybody" msgstr "" -#: include/enotify.php:340 -msgid "[Friendica System:Notify] registration request" +#: include/group.php:265 +msgid "edit" msgstr "" -#: include/enotify.php:342 -#, php-format -msgid "You've received a registration request from '%1$s' at %2$s" +#: include/group.php:286 mod/newmember.php:61 +msgid "Groups" msgstr "" -#: include/enotify.php:343 -#, php-format -msgid "You've received a [url=%1$s]registration request[/url] from %2$s." +#: include/group.php:288 +msgid "Edit groups" msgstr "" -#: include/enotify.php:347 -#, php-format -msgid "Full Name:\t%1$s\\nSite Location:\t%2$s\\nLogin Name:\t%3$s (%4$s)" +#: include/group.php:290 +msgid "Edit group" msgstr "" -#: include/enotify.php:350 -#, php-format -msgid "Please visit %s to approve or reject the request." +#: include/group.php:291 +msgid "Create a new group" msgstr "" -#: include/plugin.php:526 include/plugin.php:528 -msgid "Click here to upgrade." +#: include/group.php:292 mod/group.php:94 mod/group.php:178 +msgid "Group Name: " msgstr "" -#: include/plugin.php:534 -msgid "This action exceeds the limits set by your subscription plan." +#: include/group.php:294 +msgid "Contacts not in any group" msgstr "" -#: include/plugin.php:539 -msgid "This action is not available under your subscription plan." +#: include/group.php:296 mod/network.php:201 +msgid "add" msgstr "" -#: include/ForumManager.php:114 include/text.php:1025 include/nav.php:131 -#: view/theme/vier/theme.php:255 -msgid "Forums" +#: include/contact_selectors.php:32 +msgid "Unknown | Not categorised" msgstr "" -#: include/ForumManager.php:116 view/theme/vier/theme.php:257 -msgid "External link to forum" +#: include/contact_selectors.php:33 +msgid "Block immediately" msgstr "" -#: include/diaspora.php:1402 include/conversation.php:141 include/like.php:182 -#, php-format -msgid "%1$s likes %2$s's %3$s" +#: include/contact_selectors.php:34 +msgid "Shady, spammer, self-marketer" msgstr "" -#: include/diaspora.php:1406 include/conversation.php:125 -#: include/conversation.php:134 include/conversation.php:261 -#: include/conversation.php:270 include/like.php:163 mod/tagger.php:62 -#: mod/subthread.php:87 -msgid "status" +#: include/contact_selectors.php:35 +msgid "Known to me, but no opinion" msgstr "" -#: include/diaspora.php:1958 -msgid "Sharing notification from Diaspora network" +#: include/contact_selectors.php:36 +msgid "OK, probably harmless" msgstr "" -#: include/diaspora.php:2864 -msgid "Attachments:" +#: include/contact_selectors.php:37 +msgid "Reputable, has my trust" msgstr "" -#: include/dfrn.php:1108 -#, php-format -msgid "%s\\'s birthday" +#: include/contact_selectors.php:56 mod/admin.php:890 +msgid "Frequently" msgstr "" -#: include/uimport.php:94 -msgid "Error decoding account file" +#: include/contact_selectors.php:57 mod/admin.php:891 +msgid "Hourly" msgstr "" -#: include/uimport.php:100 -msgid "Error! No version data in file! This is not a Friendica account file?" +#: include/contact_selectors.php:58 mod/admin.php:892 +msgid "Twice daily" msgstr "" -#: include/uimport.php:116 include/uimport.php:127 -msgid "Error! Cannot check nickname" +#: include/contact_selectors.php:59 mod/admin.php:893 +msgid "Daily" msgstr "" -#: include/uimport.php:120 include/uimport.php:131 -#, php-format -msgid "User '%s' already exists on this server!" +#: include/contact_selectors.php:60 +msgid "Weekly" msgstr "" -#: include/uimport.php:153 -msgid "User creation error" +#: include/contact_selectors.php:61 +msgid "Monthly" msgstr "" -#: include/uimport.php:173 -msgid "User profile creation error" +#: include/contact_selectors.php:76 mod/dfrn_request.php:868 +msgid "Friendica" msgstr "" -#: include/uimport.php:222 -#, php-format -msgid "%d contact not imported" -msgid_plural "%d contacts not imported" -msgstr[0] "" -msgstr[1] "" - -#: include/uimport.php:292 -msgid "Done. You can now login with your username and password" +#: include/contact_selectors.php:77 +msgid "OStatus" msgstr "" -#: include/dba.php:56 include/dba_pdo.php:72 -#, php-format -msgid "Cannot locate DNS info for database server '%s'" +#: include/contact_selectors.php:78 +msgid "RSS/Atom" msgstr "" -#: include/event.php:16 include/bb2diaspora.php:148 mod/localtime.php:12 -msgid "l F d, Y \\@ g:i A" +#: include/contact_selectors.php:79 include/contact_selectors.php:86 +#: mod/admin.php:1396 mod/admin.php:1409 mod/admin.php:1422 mod/admin.php:1440 +msgid "Email" msgstr "" -#: include/event.php:33 include/event.php:51 include/event.php:487 -#: include/bb2diaspora.php:154 -msgid "Starts:" +#: include/contact_selectors.php:80 mod/settings.php:842 +#: mod/dfrn_request.php:870 +msgid "Diaspora" msgstr "" -#: include/event.php:36 include/event.php:57 include/event.php:488 -#: include/bb2diaspora.php:162 -msgid "Finishes:" +#: include/contact_selectors.php:81 +msgid "Facebook" msgstr "" -#: include/event.php:39 include/event.php:63 include/event.php:489 -#: include/identity.php:328 include/bb2diaspora.php:170 -#: mod/notifications.php:232 mod/events.php:494 mod/directory.php:137 -#: mod/contacts.php:628 -msgid "Location:" +#: include/contact_selectors.php:82 +msgid "Zot!" msgstr "" -#: include/event.php:441 -msgid "Sun" +#: include/contact_selectors.php:83 +msgid "LinkedIn" msgstr "" -#: include/event.php:442 -msgid "Mon" +#: include/contact_selectors.php:84 +msgid "XMPP/IM" msgstr "" -#: include/event.php:443 -msgid "Tue" +#: include/contact_selectors.php:85 +msgid "MySpace" msgstr "" -#: include/event.php:444 -msgid "Wed" +#: include/contact_selectors.php:87 +msgid "Google+" msgstr "" -#: include/event.php:445 -msgid "Thu" +#: include/contact_selectors.php:88 +msgid "pump.io" msgstr "" -#: include/event.php:446 -msgid "Fri" +#: include/contact_selectors.php:89 +msgid "Twitter" msgstr "" -#: include/event.php:447 -msgid "Sat" +#: include/contact_selectors.php:90 +msgid "Diaspora Connector" msgstr "" -#: include/event.php:448 include/text.php:1130 mod/settings.php:972 -msgid "Sunday" +#: include/contact_selectors.php:91 +msgid "GNU Social" msgstr "" -#: include/event.php:449 include/text.php:1130 mod/settings.php:972 -msgid "Monday" +#: include/contact_selectors.php:92 +msgid "App.net" msgstr "" -#: include/event.php:450 include/text.php:1130 -msgid "Tuesday" +#: include/contact_selectors.php:103 +msgid "Hubzilla/Redmatrix" msgstr "" -#: include/event.php:451 include/text.php:1130 -msgid "Wednesday" +#: include/acl_selectors.php:327 +msgid "Post to Email" msgstr "" -#: include/event.php:452 include/text.php:1130 -msgid "Thursday" +#: include/acl_selectors.php:332 +#, php-format +msgid "Connectors disabled, since \"%s\" is enabled." msgstr "" -#: include/event.php:453 include/text.php:1130 -msgid "Friday" +#: include/acl_selectors.php:333 mod/settings.php:1181 +msgid "Hide your profile details from unknown viewers?" msgstr "" -#: include/event.php:454 include/text.php:1130 -msgid "Saturday" +#: include/acl_selectors.php:338 +msgid "Visible to everybody" msgstr "" -#: include/event.php:455 -msgid "Jan" +#: include/acl_selectors.php:339 view/theme/vier/config.php:103 +msgid "show" msgstr "" -#: include/event.php:456 -msgid "Feb" +#: include/acl_selectors.php:340 view/theme/vier/config.php:103 +msgid "don't show" msgstr "" -#: include/event.php:457 -msgid "Mar" +#: include/acl_selectors.php:346 mod/editpost.php:133 +msgid "CC: email addresses" msgstr "" -#: include/event.php:458 -msgid "Apr" +#: include/acl_selectors.php:347 mod/editpost.php:140 +msgid "Example: bob@example.com, mary@example.com" msgstr "" -#: include/event.php:459 include/event.php:471 include/text.php:1134 -msgid "May" +#: include/acl_selectors.php:349 mod/events.php:509 mod/photos.php:1156 +#: mod/photos.php:1535 +msgid "Permissions" msgstr "" -#: include/event.php:460 -msgid "Jun" +#: include/acl_selectors.php:350 +msgid "Close" msgstr "" -#: include/event.php:461 -msgid "Jul" +#: include/like.php:163 include/conversation.php:130 +#: include/conversation.php:266 include/text.php:1804 mod/subthread.php:87 +#: mod/tagger.php:62 +msgid "photo" msgstr "" -#: include/event.php:462 -msgid "Aug" +#: include/like.php:163 include/diaspora.php:1406 include/conversation.php:125 +#: include/conversation.php:134 include/conversation.php:261 +#: include/conversation.php:270 mod/subthread.php:87 mod/tagger.php:62 +msgid "status" msgstr "" -#: include/event.php:463 -msgid "Sept" +#: include/like.php:165 include/conversation.php:122 +#: include/conversation.php:258 include/text.php:1802 +msgid "event" msgstr "" -#: include/event.php:464 -msgid "Oct" +#: include/like.php:182 include/diaspora.php:1402 include/conversation.php:141 +#, php-format +msgid "%1$s likes %2$s's %3$s" msgstr "" -#: include/event.php:465 -msgid "Nov" +#: include/like.php:184 include/conversation.php:144 +#, php-format +msgid "%1$s doesn't like %2$s's %3$s" msgstr "" -#: include/event.php:466 -msgid "Dec" +#: include/like.php:186 +#, php-format +msgid "%1$s is attending %2$s's %3$s" msgstr "" -#: include/event.php:467 include/text.php:1134 -msgid "January" +#: include/like.php:188 +#, php-format +msgid "%1$s is not attending %2$s's %3$s" msgstr "" -#: include/event.php:468 include/text.php:1134 -msgid "February" +#: include/like.php:190 +#, php-format +msgid "%1$s may attend %2$s's %3$s" msgstr "" -#: include/event.php:469 include/text.php:1134 -msgid "March" +#: include/message.php:15 include/message.php:173 +msgid "[no subject]" msgstr "" -#: include/event.php:470 include/text.php:1134 -msgid "April" +#: include/message.php:145 include/Photo.php:1040 include/Photo.php:1056 +#: include/Photo.php:1064 include/Photo.php:1089 mod/wall_upload.php:218 +#: mod/wall_upload.php:232 mod/wall_upload.php:239 mod/item.php:478 +msgid "Wall Photos" msgstr "" -#: include/event.php:472 include/text.php:1134 -msgid "June" +#: include/plugin.php:526 include/plugin.php:528 +msgid "Click here to upgrade." msgstr "" -#: include/event.php:473 include/text.php:1134 -msgid "July" +#: include/plugin.php:534 +msgid "This action exceeds the limits set by your subscription plan." msgstr "" -#: include/event.php:474 include/text.php:1134 -msgid "August" +#: include/plugin.php:539 +msgid "This action is not available under your subscription plan." msgstr "" -#: include/event.php:475 include/text.php:1134 -msgid "September" +#: include/uimport.php:94 +msgid "Error decoding account file" msgstr "" -#: include/event.php:476 include/text.php:1134 -msgid "October" +#: include/uimport.php:100 +msgid "Error! No version data in file! This is not a Friendica account file?" msgstr "" -#: include/event.php:477 include/text.php:1134 -msgid "November" +#: include/uimport.php:116 include/uimport.php:127 +msgid "Error! Cannot check nickname" msgstr "" -#: include/event.php:478 include/text.php:1134 -msgid "December" +#: include/uimport.php:120 include/uimport.php:131 +#, php-format +msgid "User '%s' already exists on this server!" msgstr "" -#: include/event.php:479 mod/events.php:388 mod/cal.php:283 -msgid "today" +#: include/uimport.php:153 +msgid "User creation error" msgstr "" -#: include/event.php:483 -msgid "all-day" +#: include/uimport.php:173 +msgid "User profile creation error" msgstr "" -#: include/event.php:485 -msgid "No events to display" -msgstr "" +#: include/uimport.php:222 +#, php-format +msgid "%d contact not imported" +msgid_plural "%d contacts not imported" +msgstr[0] "" +msgstr[1] "" -#: include/event.php:574 -msgid "l, F j" +#: include/uimport.php:292 +msgid "Done. You can now login with your username and password" msgstr "" -#: include/event.php:593 -msgid "Edit event" +#: include/datetime.php:57 include/datetime.php:59 mod/profiles.php:705 +msgid "Miscellaneous" msgstr "" -#: include/event.php:615 include/text.php:1536 include/text.php:1543 -msgid "link to source" +#: include/datetime.php:183 include/identity.php:629 +msgid "Birthday:" msgstr "" -#: include/event.php:850 -msgid "Export" +#: include/datetime.php:185 mod/profiles.php:728 +msgid "Age: " msgstr "" -#: include/event.php:851 -msgid "Export calendar as ical" +#: include/datetime.php:187 +msgid "YYYY-MM-DD or MM-DD" msgstr "" -#: include/event.php:852 -msgid "Export calendar as csv" +#: include/datetime.php:341 +msgid "never" msgstr "" -#: include/security.php:22 -msgid "Welcome " +#: include/datetime.php:347 +msgid "less than a second ago" msgstr "" -#: include/security.php:23 -msgid "Please upload a profile photo." +#: include/datetime.php:350 +msgid "year" msgstr "" -#: include/security.php:26 -msgid "Welcome back " +#: include/datetime.php:350 +msgid "years" msgstr "" -#: include/security.php:373 -msgid "" -"The form security token was not correct. This probably happened because the " -"form has been opened for too long (>3 hours) before submitting it." +#: include/datetime.php:351 include/event.php:480 mod/cal.php:284 +#: mod/events.php:389 +msgid "month" msgstr "" -#: include/profile_selectors.php:6 -msgid "Male" +#: include/datetime.php:351 +msgid "months" msgstr "" -#: include/profile_selectors.php:6 -msgid "Female" +#: include/datetime.php:352 include/event.php:481 mod/cal.php:285 +#: mod/events.php:390 +msgid "week" msgstr "" -#: include/profile_selectors.php:6 -msgid "Currently Male" +#: include/datetime.php:352 +msgid "weeks" msgstr "" -#: include/profile_selectors.php:6 -msgid "Currently Female" +#: include/datetime.php:353 include/event.php:482 mod/cal.php:286 +#: mod/events.php:391 +msgid "day" msgstr "" -#: include/profile_selectors.php:6 -msgid "Mostly Male" +#: include/datetime.php:353 +msgid "days" msgstr "" -#: include/profile_selectors.php:6 -msgid "Mostly Female" +#: include/datetime.php:354 +msgid "hour" msgstr "" -#: include/profile_selectors.php:6 -msgid "Transgender" +#: include/datetime.php:354 +msgid "hours" msgstr "" -#: include/profile_selectors.php:6 -msgid "Intersex" +#: include/datetime.php:355 +msgid "minute" msgstr "" -#: include/profile_selectors.php:6 -msgid "Transsexual" +#: include/datetime.php:355 +msgid "minutes" msgstr "" -#: include/profile_selectors.php:6 -msgid "Hermaphrodite" +#: include/datetime.php:356 +msgid "second" msgstr "" -#: include/profile_selectors.php:6 -msgid "Neuter" +#: include/datetime.php:356 +msgid "seconds" msgstr "" -#: include/profile_selectors.php:6 -msgid "Non-specific" +#: include/datetime.php:365 +#, php-format +msgid "%1$d %2$s ago" msgstr "" -#: include/profile_selectors.php:6 -msgid "Other" +#: include/datetime.php:572 +#, php-format +msgid "%s's birthday" msgstr "" -#: include/profile_selectors.php:6 include/conversation.php:1487 -msgid "Undecided" -msgid_plural "Undecided" -msgstr[0] "" -msgstr[1] "" +#: include/datetime.php:573 include/dfrn.php:1109 +#, php-format +msgid "Happy Birthday %s" +msgstr "" -#: include/profile_selectors.php:23 -msgid "Males" +#: include/enotify.php:24 +msgid "Friendica Notification" msgstr "" -#: include/profile_selectors.php:23 -msgid "Females" +#: include/enotify.php:27 +msgid "Thank You," msgstr "" -#: include/profile_selectors.php:23 -msgid "Gay" +#: include/enotify.php:30 +#, php-format +msgid "%s Administrator" msgstr "" -#: include/profile_selectors.php:23 -msgid "Lesbian" +#: include/enotify.php:32 +#, php-format +msgid "%1$s, %2$s Administrator" msgstr "" -#: include/profile_selectors.php:23 -msgid "No Preference" +#: include/enotify.php:43 include/delivery.php:457 +msgid "noreply" msgstr "" -#: include/profile_selectors.php:23 -msgid "Bisexual" +#: include/enotify.php:70 +#, php-format +msgid "%s " msgstr "" -#: include/profile_selectors.php:23 -msgid "Autosexual" +#: include/enotify.php:83 +#, php-format +msgid "[Friendica:Notify] New mail received at %s" msgstr "" -#: include/profile_selectors.php:23 -msgid "Abstinent" +#: include/enotify.php:85 +#, php-format +msgid "%1$s sent you a new private message at %2$s." msgstr "" -#: include/profile_selectors.php:23 -msgid "Virgin" +#: include/enotify.php:86 +#, php-format +msgid "%1$s sent you %2$s." msgstr "" -#: include/profile_selectors.php:23 -msgid "Deviant" +#: include/enotify.php:86 +msgid "a private message" msgstr "" -#: include/profile_selectors.php:23 -msgid "Fetish" +#: include/enotify.php:88 +#, php-format +msgid "Please visit %s to view and/or reply to your private messages." msgstr "" -#: include/profile_selectors.php:23 -msgid "Oodles" +#: include/enotify.php:134 +#, php-format +msgid "%1$s commented on [url=%2$s]a %3$s[/url]" msgstr "" -#: include/profile_selectors.php:23 -msgid "Nonsexual" +#: include/enotify.php:141 +#, php-format +msgid "%1$s commented on [url=%2$s]%3$s's %4$s[/url]" msgstr "" -#: include/profile_selectors.php:42 -msgid "Single" +#: include/enotify.php:149 +#, php-format +msgid "%1$s commented on [url=%2$s]your %3$s[/url]" msgstr "" -#: include/profile_selectors.php:42 -msgid "Lonely" +#: include/enotify.php:159 +#, php-format +msgid "[Friendica:Notify] Comment to conversation #%1$d by %2$s" msgstr "" -#: include/profile_selectors.php:42 -msgid "Available" +#: include/enotify.php:161 +#, php-format +msgid "%s commented on an item/conversation you have been following." msgstr "" -#: include/profile_selectors.php:42 -msgid "Unavailable" +#: include/enotify.php:164 include/enotify.php:178 include/enotify.php:192 +#: include/enotify.php:206 include/enotify.php:224 include/enotify.php:238 +#, php-format +msgid "Please visit %s to view and/or reply to the conversation." msgstr "" -#: include/profile_selectors.php:42 -msgid "Has crush" +#: include/enotify.php:171 +#, php-format +msgid "[Friendica:Notify] %s posted to your profile wall" msgstr "" -#: include/profile_selectors.php:42 -msgid "Infatuated" +#: include/enotify.php:173 +#, php-format +msgid "%1$s posted to your profile wall at %2$s" msgstr "" -#: include/profile_selectors.php:42 -msgid "Dating" +#: include/enotify.php:174 +#, php-format +msgid "%1$s posted to [url=%2$s]your wall[/url]" msgstr "" -#: include/profile_selectors.php:42 -msgid "Unfaithful" +#: include/enotify.php:185 +#, php-format +msgid "[Friendica:Notify] %s tagged you" msgstr "" -#: include/profile_selectors.php:42 -msgid "Sex Addict" +#: include/enotify.php:187 +#, php-format +msgid "%1$s tagged you at %2$s" msgstr "" -#: include/profile_selectors.php:42 include/user.php:299 include/user.php:303 -msgid "Friends" +#: include/enotify.php:188 +#, php-format +msgid "%1$s [url=%2$s]tagged you[/url]." msgstr "" -#: include/profile_selectors.php:42 -msgid "Friends/Benefits" +#: include/enotify.php:199 +#, php-format +msgid "[Friendica:Notify] %s shared a new post" msgstr "" -#: include/profile_selectors.php:42 -msgid "Casual" +#: include/enotify.php:201 +#, php-format +msgid "%1$s shared a new post at %2$s" msgstr "" -#: include/profile_selectors.php:42 -msgid "Engaged" +#: include/enotify.php:202 +#, php-format +msgid "%1$s [url=%2$s]shared a post[/url]." msgstr "" -#: include/profile_selectors.php:42 -msgid "Married" -msgstr "" - -#: include/profile_selectors.php:42 -msgid "Imaginarily married" +#: include/enotify.php:213 +#, php-format +msgid "[Friendica:Notify] %1$s poked you" msgstr "" -#: include/profile_selectors.php:42 -msgid "Partners" +#: include/enotify.php:215 +#, php-format +msgid "%1$s poked you at %2$s" msgstr "" -#: include/profile_selectors.php:42 -msgid "Cohabiting" +#: include/enotify.php:216 +#, php-format +msgid "%1$s [url=%2$s]poked you[/url]." msgstr "" -#: include/profile_selectors.php:42 -msgid "Common law" +#: include/enotify.php:231 +#, php-format +msgid "[Friendica:Notify] %s tagged your post" msgstr "" -#: include/profile_selectors.php:42 -msgid "Happy" +#: include/enotify.php:233 +#, php-format +msgid "%1$s tagged your post at %2$s" msgstr "" -#: include/profile_selectors.php:42 -msgid "Not looking" +#: include/enotify.php:234 +#, php-format +msgid "%1$s tagged [url=%2$s]your post[/url]" msgstr "" -#: include/profile_selectors.php:42 -msgid "Swinger" +#: include/enotify.php:245 +msgid "[Friendica:Notify] Introduction received" msgstr "" -#: include/profile_selectors.php:42 -msgid "Betrayed" +#: include/enotify.php:247 +#, php-format +msgid "You've received an introduction from '%1$s' at %2$s" msgstr "" -#: include/profile_selectors.php:42 -msgid "Separated" +#: include/enotify.php:248 +#, php-format +msgid "You've received [url=%1$s]an introduction[/url] from %2$s." msgstr "" -#: include/profile_selectors.php:42 -msgid "Unstable" +#: include/enotify.php:252 include/enotify.php:295 +#, php-format +msgid "You may visit their profile at %s" msgstr "" -#: include/profile_selectors.php:42 -msgid "Divorced" +#: include/enotify.php:254 +#, php-format +msgid "Please visit %s to approve or reject the introduction." msgstr "" -#: include/profile_selectors.php:42 -msgid "Imaginarily divorced" +#: include/enotify.php:262 +msgid "[Friendica:Notify] A new person is sharing with you" msgstr "" -#: include/profile_selectors.php:42 -msgid "Widowed" +#: include/enotify.php:264 include/enotify.php:265 +#, php-format +msgid "%1$s is sharing with you at %2$s" msgstr "" -#: include/profile_selectors.php:42 -msgid "Uncertain" +#: include/enotify.php:271 +msgid "[Friendica:Notify] You have a new follower" msgstr "" -#: include/profile_selectors.php:42 -msgid "It's complicated" +#: include/enotify.php:273 include/enotify.php:274 +#, php-format +msgid "You have a new follower at %2$s : %1$s" msgstr "" -#: include/profile_selectors.php:42 -msgid "Don't care" +#: include/enotify.php:285 +msgid "[Friendica:Notify] Friend suggestion received" msgstr "" -#: include/profile_selectors.php:42 -msgid "Ask me" +#: include/enotify.php:287 +#, php-format +msgid "You've received a friend suggestion from '%1$s' at %2$s" msgstr "" -#: include/items.php:1571 mod/dfrn_confirm.php:730 mod/dfrn_request.php:746 -msgid "[Name Withheld]" +#: include/enotify.php:288 +#, php-format +msgid "You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s." msgstr "" -#: include/items.php:1926 mod/viewsrc.php:15 mod/admin.php:234 -#: mod/admin.php:1471 mod/admin.php:1705 mod/display.php:103 -#: mod/display.php:279 mod/display.php:478 mod/notice.php:15 -msgid "Item not found." +#: include/enotify.php:293 +msgid "Name:" msgstr "" -#: include/items.php:1965 -msgid "Do you really want to delete this item?" +#: include/enotify.php:294 +msgid "Photo:" msgstr "" -#: include/items.php:1967 mod/profiles.php:648 mod/profiles.php:651 -#: mod/profiles.php:677 mod/contacts.php:442 mod/follow.php:110 -#: mod/suggest.php:29 mod/dfrn_request.php:862 mod/register.php:245 -#: mod/settings.php:1163 mod/settings.php:1169 mod/settings.php:1177 -#: mod/settings.php:1181 mod/settings.php:1186 mod/settings.php:1192 -#: mod/settings.php:1198 mod/settings.php:1204 mod/settings.php:1230 -#: mod/settings.php:1231 mod/settings.php:1232 mod/settings.php:1233 -#: mod/settings.php:1234 mod/api.php:105 mod/message.php:217 -msgid "Yes" +#: include/enotify.php:297 +#, php-format +msgid "Please visit %s to approve or reject the suggestion." msgstr "" -#: include/items.php:1970 include/conversation.php:1283 mod/fbrowser.php:101 -#: mod/fbrowser.php:136 mod/tagrm.php:11 mod/tagrm.php:94 mod/videos.php:128 -#: mod/photos.php:235 mod/photos.php:322 mod/contacts.php:445 -#: mod/follow.php:121 mod/suggest.php:32 mod/editpost.php:148 -#: mod/dfrn_request.php:876 mod/settings.php:679 mod/settings.php:705 -#: mod/message.php:220 -msgid "Cancel" +#: include/enotify.php:305 include/enotify.php:319 +msgid "[Friendica:Notify] Connection accepted" msgstr "" -#: include/items.php:2130 index.php:401 mod/regmod.php:110 mod/dirfind.php:11 -#: mod/notifications.php:71 mod/dfrn_confirm.php:61 mod/wall_upload.php:77 -#: mod/wall_upload.php:80 mod/fsuggest.php:78 mod/notes.php:22 -#: mod/events.php:190 mod/uimport.php:23 mod/nogroup.php:25 mod/invite.php:15 -#: mod/invite.php:101 mod/viewcontacts.php:45 mod/crepair.php:100 -#: mod/wall_attach.php:67 mod/wall_attach.php:70 mod/allfriends.php:12 -#: mod/cal.php:304 mod/repair_ostatus.php:9 mod/delegate.php:12 -#: mod/profiles.php:166 mod/profiles.php:605 mod/poke.php:150 -#: mod/photos.php:159 mod/photos.php:1072 mod/attach.php:33 -#: mod/contacts.php:350 mod/follow.php:11 mod/follow.php:73 mod/follow.php:155 -#: mod/suggest.php:58 mod/display.php:475 mod/common.php:18 mod/mood.php:114 -#: mod/editpost.php:10 mod/network.php:4 mod/group.php:19 -#: mod/profile_photo.php:19 mod/profile_photo.php:175 -#: mod/profile_photo.php:186 mod/profile_photo.php:199 mod/register.php:42 -#: mod/settings.php:22 mod/settings.php:128 mod/settings.php:665 -#: mod/wallmessage.php:9 mod/wallmessage.php:33 mod/wallmessage.php:79 -#: mod/wallmessage.php:103 mod/api.php:26 mod/api.php:31 mod/item.php:198 -#: mod/item.php:210 mod/ostatus_subscribe.php:9 mod/message.php:46 -#: mod/message.php:182 mod/manage.php:96 -msgid "Permission denied." +#: include/enotify.php:307 include/enotify.php:321 +#, php-format +msgid "'%1$s' has accepted your connection request at %2$s" msgstr "" -#: include/items.php:2235 -msgid "Archives" +#: include/enotify.php:308 include/enotify.php:322 +#, php-format +msgid "%2$s has accepted your [url=%1$s]connection request[/url]." msgstr "" -#: include/text.php:304 -msgid "newer" +#: include/enotify.php:312 +msgid "" +"You are now mutual friends and may exchange status updates, photos, and " +"email without restriction." msgstr "" -#: include/text.php:306 -msgid "older" +#: include/enotify.php:314 +#, php-format +msgid "Please visit %s if you wish to make any changes to this relationship." msgstr "" -#: include/text.php:311 -msgid "prev" +#: include/enotify.php:326 +#, php-format +msgid "" +"'%1$s' has chosen to accept you a \"fan\", which restricts some forms of " +"communication - such as private messaging and some profile interactions. If " +"this is a celebrity or community page, these settings were applied " +"automatically." msgstr "" -#: include/text.php:313 -msgid "first" +#: include/enotify.php:328 +#, php-format +msgid "" +"'%1$s' may choose to extend this into a two-way or more permissive " +"relationship in the future." msgstr "" -#: include/text.php:345 -msgid "last" +#: include/enotify.php:330 +#, php-format +msgid "Please visit %s if you wish to make any changes to this relationship." msgstr "" -#: include/text.php:348 -msgid "next" +#: include/enotify.php:340 +msgid "[Friendica System:Notify] registration request" msgstr "" -#: include/text.php:403 -msgid "Loading more entries..." +#: include/enotify.php:342 +#, php-format +msgid "You've received a registration request from '%1$s' at %2$s" msgstr "" -#: include/text.php:404 -msgid "The end" +#: include/enotify.php:343 +#, php-format +msgid "You've received a [url=%1$s]registration request[/url] from %2$s." msgstr "" -#: include/text.php:889 -msgid "No contacts" +#: include/enotify.php:347 +#, php-format +msgid "Full Name:\t%1$s\\nSite Location:\t%2$s\\nLogin Name:\t%3$s (%4$s)" msgstr "" -#: include/text.php:912 +#: include/enotify.php:350 #, php-format -msgid "%d Contact" -msgid_plural "%d Contacts" -msgstr[0] "" -msgstr[1] "" - -#: include/text.php:925 -msgid "View Contacts" +msgid "Please visit %s to approve or reject the request." msgstr "" -#: include/text.php:1012 include/nav.php:123 mod/search.php:149 -msgid "Search" +#: include/event.php:16 include/bb2diaspora.php:152 mod/localtime.php:12 +msgid "l F d, Y \\@ g:i A" msgstr "" -#: include/text.php:1013 mod/notes.php:61 mod/filer.php:31 -#: mod/editpost.php:109 -msgid "Save" +#: include/event.php:33 include/event.php:51 include/event.php:487 +#: include/bb2diaspora.php:158 +msgid "Starts:" msgstr "" -#: include/text.php:1015 include/nav.php:40 -msgid "@name, !forum, #tags, content" +#: include/event.php:36 include/event.php:57 include/event.php:488 +#: include/bb2diaspora.php:166 +msgid "Finishes:" msgstr "" -#: include/text.php:1020 include/nav.php:126 -msgid "Full Text" +#: include/event.php:39 include/event.php:63 include/event.php:489 +#: include/bb2diaspora.php:174 include/identity.php:328 +#: mod/notifications.php:232 mod/directory.php:137 mod/events.php:494 +#: mod/contacts.php:628 +msgid "Location:" msgstr "" -#: include/text.php:1021 include/nav.php:127 -msgid "Tags" +#: include/event.php:441 +msgid "Sun" msgstr "" -#: include/text.php:1022 include/identity.php:783 include/identity.php:786 -#: include/nav.php:128 include/nav.php:192 mod/viewcontacts.php:116 -#: mod/contacts.php:792 mod/contacts.php:853 view/theme/frio/theme.php:260 -msgid "Contacts" +#: include/event.php:442 +msgid "Mon" msgstr "" -#: include/text.php:1076 -msgid "poke" +#: include/event.php:443 +msgid "Tue" msgstr "" -#: include/text.php:1076 -msgid "poked" +#: include/event.php:444 +msgid "Wed" msgstr "" -#: include/text.php:1077 -msgid "ping" +#: include/event.php:445 +msgid "Thu" msgstr "" -#: include/text.php:1077 -msgid "pinged" +#: include/event.php:446 +msgid "Fri" msgstr "" -#: include/text.php:1078 -msgid "prod" +#: include/event.php:447 +msgid "Sat" msgstr "" -#: include/text.php:1078 -msgid "prodded" +#: include/event.php:448 include/text.php:1130 mod/settings.php:972 +msgid "Sunday" msgstr "" -#: include/text.php:1079 -msgid "slap" +#: include/event.php:449 include/text.php:1130 mod/settings.php:972 +msgid "Monday" msgstr "" -#: include/text.php:1079 -msgid "slapped" +#: include/event.php:450 include/text.php:1130 +msgid "Tuesday" msgstr "" -#: include/text.php:1080 -msgid "finger" +#: include/event.php:451 include/text.php:1130 +msgid "Wednesday" msgstr "" -#: include/text.php:1080 -msgid "fingered" +#: include/event.php:452 include/text.php:1130 +msgid "Thursday" msgstr "" -#: include/text.php:1081 -msgid "rebuff" +#: include/event.php:453 include/text.php:1130 +msgid "Friday" msgstr "" -#: include/text.php:1081 -msgid "rebuffed" +#: include/event.php:454 include/text.php:1130 +msgid "Saturday" msgstr "" -#: include/text.php:1095 -msgid "happy" +#: include/event.php:455 +msgid "Jan" msgstr "" -#: include/text.php:1096 -msgid "sad" +#: include/event.php:456 +msgid "Feb" msgstr "" -#: include/text.php:1097 -msgid "mellow" +#: include/event.php:457 +msgid "Mar" msgstr "" -#: include/text.php:1098 -msgid "tired" +#: include/event.php:458 +msgid "Apr" msgstr "" -#: include/text.php:1099 -msgid "perky" +#: include/event.php:459 include/event.php:471 include/text.php:1134 +msgid "May" msgstr "" -#: include/text.php:1100 -msgid "angry" +#: include/event.php:460 +msgid "Jun" msgstr "" -#: include/text.php:1101 -msgid "stupified" +#: include/event.php:461 +msgid "Jul" msgstr "" -#: include/text.php:1102 -msgid "puzzled" +#: include/event.php:462 +msgid "Aug" msgstr "" -#: include/text.php:1103 -msgid "interested" +#: include/event.php:463 +msgid "Sept" msgstr "" -#: include/text.php:1104 -msgid "bitter" +#: include/event.php:464 +msgid "Oct" msgstr "" -#: include/text.php:1105 -msgid "cheerful" +#: include/event.php:465 +msgid "Nov" msgstr "" -#: include/text.php:1106 -msgid "alive" +#: include/event.php:466 +msgid "Dec" msgstr "" -#: include/text.php:1107 -msgid "annoyed" +#: include/event.php:467 include/text.php:1134 +msgid "January" msgstr "" -#: include/text.php:1108 -msgid "anxious" +#: include/event.php:468 include/text.php:1134 +msgid "February" msgstr "" -#: include/text.php:1109 -msgid "cranky" +#: include/event.php:469 include/text.php:1134 +msgid "March" msgstr "" -#: include/text.php:1110 -msgid "disturbed" +#: include/event.php:470 include/text.php:1134 +msgid "April" msgstr "" -#: include/text.php:1111 -msgid "frustrated" +#: include/event.php:472 include/text.php:1134 +msgid "June" msgstr "" -#: include/text.php:1112 -msgid "motivated" +#: include/event.php:473 include/text.php:1134 +msgid "July" msgstr "" -#: include/text.php:1113 -msgid "relaxed" +#: include/event.php:474 include/text.php:1134 +msgid "August" msgstr "" -#: include/text.php:1114 -msgid "surprised" +#: include/event.php:475 include/text.php:1134 +msgid "September" msgstr "" -#: include/text.php:1328 mod/videos.php:380 -msgid "View Video" +#: include/event.php:476 include/text.php:1134 +msgid "October" msgstr "" -#: include/text.php:1360 -msgid "bytes" +#: include/event.php:477 include/text.php:1134 +msgid "November" msgstr "" -#: include/text.php:1392 include/text.php:1404 -msgid "Click to open/close" +#: include/event.php:478 include/text.php:1134 +msgid "December" msgstr "" -#: include/text.php:1530 -msgid "View on separate page" +#: include/event.php:479 mod/cal.php:283 mod/events.php:388 +msgid "today" msgstr "" -#: include/text.php:1531 -msgid "view on separate page" +#: include/event.php:483 +msgid "all-day" msgstr "" -#: include/text.php:1806 include/conversation.php:122 -#: include/conversation.php:258 include/like.php:165 -msgid "event" +#: include/event.php:485 +msgid "No events to display" msgstr "" -#: include/text.php:1808 include/conversation.php:130 -#: include/conversation.php:266 include/like.php:163 mod/tagger.php:62 -#: mod/subthread.php:87 -msgid "photo" +#: include/event.php:574 +msgid "l, F j" msgstr "" -#: include/text.php:1810 -msgid "activity" +#: include/event.php:593 +msgid "Edit event" msgstr "" -#: include/text.php:1812 mod/content.php:623 object/Item.php:431 -#: object/Item.php:444 -msgid "comment" -msgid_plural "comments" -msgstr[0] "" -msgstr[1] "" - -#: include/text.php:1813 -msgid "post" +#: include/event.php:615 include/text.php:1532 include/text.php:1539 +msgid "link to source" msgstr "" -#: include/text.php:1981 -msgid "Item filed" +#: include/event.php:850 +msgid "Export" msgstr "" -#: include/conversation.php:144 include/like.php:184 -#, php-format -msgid "%1$s doesn't like %2$s's %3$s" +#: include/event.php:851 +msgid "Export calendar as ical" msgstr "" -#: include/conversation.php:147 -#, php-format -msgid "%1$s attends %2$s's %3$s" +#: include/event.php:852 +msgid "Export calendar as csv" msgstr "" -#: include/conversation.php:150 -#, php-format -msgid "%1$s doesn't attend %2$s's %3$s" +#: include/nav.php:35 mod/navigation.php:19 +msgid "Nothing new here" msgstr "" -#: include/conversation.php:153 -#, php-format -msgid "%1$s attends maybe %2$s's %3$s" +#: include/nav.php:39 mod/navigation.php:23 +msgid "Clear notifications" msgstr "" -#: include/conversation.php:185 mod/dfrn_confirm.php:477 -#, php-format -msgid "%1$s is now friends with %2$s" +#: include/nav.php:40 include/text.php:1015 +msgid "@name, !forum, #tags, content" msgstr "" -#: include/conversation.php:219 -#, php-format -msgid "%1$s poked %2$s" +#: include/nav.php:78 view/theme/frio/theme.php:246 boot.php:1792 +msgid "Logout" msgstr "" -#: include/conversation.php:239 mod/mood.php:62 -#, php-format -msgid "%1$s is currently %2$s" +#: include/nav.php:78 view/theme/frio/theme.php:246 +msgid "End this session" msgstr "" -#: include/conversation.php:278 mod/tagger.php:95 -#, php-format -msgid "%1$s tagged %2$s's %3$s with %4$s" +#: include/nav.php:81 include/identity.php:714 mod/contacts.php:637 +#: mod/contacts.php:833 view/theme/frio/theme.php:249 +msgid "Status" msgstr "" -#: include/conversation.php:303 -msgid "post/item" +#: include/nav.php:81 include/nav.php:161 view/theme/frio/theme.php:249 +msgid "Your posts and conversations" msgstr "" -#: include/conversation.php:304 -#, php-format -msgid "%1$s marked %2$s's %3$s as favorite" +#: include/nav.php:82 include/identity.php:605 include/identity.php:691 +#: include/identity.php:722 mod/profperm.php:104 mod/newmember.php:32 +#: mod/contacts.php:639 mod/contacts.php:841 view/theme/frio/theme.php:250 +msgid "Profile" msgstr "" -#: include/conversation.php:585 mod/content.php:372 mod/profiles.php:346 -#: mod/photos.php:1607 -msgid "Likes" +#: include/nav.php:82 view/theme/frio/theme.php:250 +msgid "Your profile page" msgstr "" -#: include/conversation.php:585 mod/content.php:372 mod/profiles.php:350 -#: mod/photos.php:1607 -msgid "Dislikes" +#: include/nav.php:83 include/identity.php:730 mod/fbrowser.php:32 +#: view/theme/frio/theme.php:251 +msgid "Photos" msgstr "" -#: include/conversation.php:586 include/conversation.php:1481 -#: mod/content.php:373 mod/photos.php:1608 -msgid "Attending" -msgid_plural "Attending" -msgstr[0] "" -msgstr[1] "" +#: include/nav.php:83 view/theme/frio/theme.php:251 +msgid "Your photos" +msgstr "" -#: include/conversation.php:586 mod/content.php:373 mod/photos.php:1608 -msgid "Not attending" +#: include/nav.php:84 include/identity.php:738 include/identity.php:741 +#: view/theme/frio/theme.php:252 +msgid "Videos" msgstr "" -#: include/conversation.php:586 mod/content.php:373 mod/photos.php:1608 -msgid "Might attend" +#: include/nav.php:84 view/theme/frio/theme.php:252 +msgid "Your videos" msgstr "" -#: include/conversation.php:708 mod/content.php:453 mod/content.php:758 -#: mod/photos.php:1681 object/Item.php:133 -msgid "Select" +#: include/nav.php:85 include/nav.php:149 include/identity.php:750 +#: include/identity.php:761 mod/cal.php:275 mod/events.php:379 +#: view/theme/frio/theme.php:253 view/theme/frio/theme.php:257 +msgid "Events" msgstr "" -#: include/conversation.php:709 mod/admin.php:1414 mod/content.php:454 -#: mod/content.php:759 mod/photos.php:1682 mod/contacts.php:808 -#: mod/contacts.php:1016 mod/group.php:171 mod/settings.php:741 -#: object/Item.php:134 -msgid "Delete" +#: include/nav.php:85 view/theme/frio/theme.php:253 +msgid "Your events" msgstr "" -#: include/conversation.php:753 mod/content.php:487 mod/content.php:910 -#: mod/content.php:911 object/Item.php:367 object/Item.php:368 -#, php-format -msgid "View %s's profile @ %s" +#: include/nav.php:86 +msgid "Personal notes" msgstr "" -#: include/conversation.php:765 object/Item.php:355 -msgid "Categories:" +#: include/nav.php:86 +msgid "Your personal notes" msgstr "" -#: include/conversation.php:766 object/Item.php:356 -msgid "Filed under:" +#: include/nav.php:95 mod/bookmarklet.php:12 boot.php:1793 +msgid "Login" msgstr "" -#: include/conversation.php:773 mod/content.php:497 mod/content.php:923 -#: object/Item.php:381 -#, php-format -msgid "%s from %s" +#: include/nav.php:95 +msgid "Sign in" msgstr "" -#: include/conversation.php:789 mod/content.php:513 -msgid "View in context" +#: include/nav.php:105 include/nav.php:161 +#: include/NotificationsManager.php:174 +msgid "Home" msgstr "" -#: include/conversation.php:791 include/conversation.php:1264 -#: mod/content.php:515 mod/content.php:948 mod/photos.php:1570 -#: mod/editpost.php:124 mod/wallmessage.php:156 mod/message.php:356 -#: mod/message.php:548 object/Item.php:406 -msgid "Please wait" +#: include/nav.php:105 +msgid "Home Page" msgstr "" -#: include/conversation.php:870 -msgid "remove" +#: include/nav.php:109 mod/register.php:289 boot.php:1768 +msgid "Register" msgstr "" -#: include/conversation.php:874 -msgid "Delete Selected Items" +#: include/nav.php:109 +msgid "Create an account" msgstr "" -#: include/conversation.php:966 -msgid "Follow Thread" +#: include/nav.php:115 mod/help.php:47 view/theme/vier/theme.php:298 +msgid "Help" msgstr "" -#: include/conversation.php:967 include/Contact.php:404 -msgid "View Status" +#: include/nav.php:115 +msgid "Help and documentation" msgstr "" -#: include/conversation.php:968 include/conversation.php:984 -#: include/Contact.php:347 include/Contact.php:360 include/Contact.php:405 -#: mod/dirfind.php:203 mod/directory.php:155 mod/match.php:71 -#: mod/allfriends.php:65 mod/suggest.php:82 -msgid "View Profile" +#: include/nav.php:119 +msgid "Apps" msgstr "" -#: include/conversation.php:969 include/Contact.php:406 -msgid "View Photos" +#: include/nav.php:119 +msgid "Addon applications, utilities, games" msgstr "" -#: include/conversation.php:970 include/Contact.php:407 -msgid "Network Posts" +#: include/nav.php:123 include/text.php:1012 mod/search.php:149 +msgid "Search" msgstr "" -#: include/conversation.php:971 include/Contact.php:408 -msgid "View Contact" +#: include/nav.php:123 +msgid "Search site content" msgstr "" -#: include/conversation.php:972 include/Contact.php:410 -msgid "Send PM" +#: include/nav.php:126 include/text.php:1020 +msgid "Full Text" msgstr "" -#: include/conversation.php:976 include/Contact.php:411 -msgid "Poke" +#: include/nav.php:127 include/text.php:1021 +msgid "Tags" msgstr "" -#: include/conversation.php:1097 -#, php-format -msgid "%s likes this." +#: include/nav.php:128 include/nav.php:192 include/identity.php:783 +#: include/identity.php:786 include/text.php:1022 mod/contacts.php:792 +#: mod/contacts.php:853 mod/viewcontacts.php:116 view/theme/frio/theme.php:260 +msgid "Contacts" msgstr "" -#: include/conversation.php:1100 -#, php-format -msgid "%s doesn't like this." +#: include/nav.php:143 include/nav.php:145 mod/community.php:36 +msgid "Community" msgstr "" -#: include/conversation.php:1103 -#, php-format -msgid "%s attends." +#: include/nav.php:143 +msgid "Conversations on this site" msgstr "" -#: include/conversation.php:1106 -#, php-format -msgid "%s doesn't attend." +#: include/nav.php:145 +msgid "Conversations on the network" msgstr "" -#: include/conversation.php:1109 -#, php-format -msgid "%s attends maybe." -msgstr "" - -#: include/conversation.php:1119 -msgid "and" -msgstr "" - -#: include/conversation.php:1125 -#, php-format -msgid ", and %d other people" +#: include/nav.php:149 include/identity.php:753 include/identity.php:764 +#: view/theme/frio/theme.php:257 +msgid "Events and Calendar" msgstr "" -#: include/conversation.php:1134 -#, php-format -msgid "%2$d people like this" +#: include/nav.php:152 +msgid "Directory" msgstr "" -#: include/conversation.php:1135 -#, php-format -msgid "%s like this." +#: include/nav.php:152 +msgid "People directory" msgstr "" -#: include/conversation.php:1138 -#, php-format -msgid "%2$d people don't like this" +#: include/nav.php:154 +msgid "Information" msgstr "" -#: include/conversation.php:1139 -#, php-format -msgid "%s don't like this." +#: include/nav.php:154 +msgid "Information about this friendica instance" msgstr "" -#: include/conversation.php:1142 -#, php-format -msgid "%2$d people attend" +#: include/nav.php:158 include/NotificationsManager.php:160 mod/admin.php:411 +#: view/theme/frio/theme.php:256 +msgid "Network" msgstr "" -#: include/conversation.php:1143 -#, php-format -msgid "%s attend." +#: include/nav.php:158 view/theme/frio/theme.php:256 +msgid "Conversations from your friends" msgstr "" -#: include/conversation.php:1146 -#, php-format -msgid "%2$d people don't attend" +#: include/nav.php:159 +msgid "Network Reset" msgstr "" -#: include/conversation.php:1147 -#, php-format -msgid "%s don't attend." +#: include/nav.php:159 +msgid "Load Network page with no filters" msgstr "" -#: include/conversation.php:1150 -#, php-format -msgid "%2$d people attend maybe" +#: include/nav.php:166 include/NotificationsManager.php:181 +msgid "Introductions" msgstr "" -#: include/conversation.php:1151 -#, php-format -msgid "%s anttend maybe." +#: include/nav.php:166 +msgid "Friend Requests" msgstr "" -#: include/conversation.php:1190 include/conversation.php:1208 -msgid "Visible to everybody" +#: include/nav.php:169 mod/notifications.php:96 +msgid "Notifications" msgstr "" -#: include/conversation.php:1191 include/conversation.php:1209 -#: mod/wallmessage.php:127 mod/wallmessage.php:135 mod/message.php:291 -#: mod/message.php:299 mod/message.php:442 mod/message.php:450 -msgid "Please enter a link URL:" +#: include/nav.php:170 +msgid "See all notifications" msgstr "" -#: include/conversation.php:1192 include/conversation.php:1210 -msgid "Please enter a video link/URL:" +#: include/nav.php:171 mod/settings.php:902 +msgid "Mark as seen" msgstr "" -#: include/conversation.php:1193 include/conversation.php:1211 -msgid "Please enter an audio link/URL:" +#: include/nav.php:171 +msgid "Mark all system notifications seen" msgstr "" -#: include/conversation.php:1194 include/conversation.php:1212 -msgid "Tag term:" +#: include/nav.php:175 mod/message.php:190 view/theme/frio/theme.php:258 +msgid "Messages" msgstr "" -#: include/conversation.php:1195 include/conversation.php:1213 -#: mod/filer.php:30 -msgid "Save to Folder:" +#: include/nav.php:175 view/theme/frio/theme.php:258 +msgid "Private mail" msgstr "" -#: include/conversation.php:1196 include/conversation.php:1214 -msgid "Where are you right now?" +#: include/nav.php:176 +msgid "Inbox" msgstr "" -#: include/conversation.php:1197 -msgid "Delete item(s)?" +#: include/nav.php:177 +msgid "Outbox" msgstr "" -#: include/conversation.php:1245 mod/photos.php:1569 -msgid "Share" +#: include/nav.php:178 mod/message.php:16 +msgid "New Message" msgstr "" -#: include/conversation.php:1246 mod/editpost.php:110 mod/wallmessage.php:154 -#: mod/message.php:354 mod/message.php:545 -msgid "Upload photo" +#: include/nav.php:181 +msgid "Manage" msgstr "" -#: include/conversation.php:1247 mod/editpost.php:111 -msgid "upload photo" +#: include/nav.php:181 +msgid "Manage other pages" msgstr "" -#: include/conversation.php:1248 mod/editpost.php:112 -msgid "Attach file" +#: include/nav.php:184 mod/settings.php:81 +msgid "Delegations" msgstr "" -#: include/conversation.php:1249 mod/editpost.php:113 -msgid "attach file" +#: include/nav.php:184 mod/delegate.php:130 +msgid "Delegate Page Management" msgstr "" -#: include/conversation.php:1250 mod/editpost.php:114 mod/wallmessage.php:155 -#: mod/message.php:355 mod/message.php:546 -msgid "Insert web link" +#: include/nav.php:186 mod/newmember.php:22 mod/settings.php:111 +#: mod/admin.php:1524 mod/admin.php:1782 view/theme/frio/theme.php:259 +msgid "Settings" msgstr "" -#: include/conversation.php:1251 mod/editpost.php:115 -msgid "web link" +#: include/nav.php:186 view/theme/frio/theme.php:259 +msgid "Account settings" msgstr "" -#: include/conversation.php:1252 mod/editpost.php:116 -msgid "Insert video link" +#: include/nav.php:189 include/identity.php:282 +msgid "Profiles" msgstr "" -#: include/conversation.php:1253 mod/editpost.php:117 -msgid "video link" +#: include/nav.php:189 +msgid "Manage/Edit Profiles" msgstr "" -#: include/conversation.php:1254 mod/editpost.php:118 -msgid "Insert audio link" +#: include/nav.php:192 view/theme/frio/theme.php:260 +msgid "Manage/edit friends and contacts" msgstr "" -#: include/conversation.php:1255 mod/editpost.php:119 -msgid "audio link" +#: include/nav.php:197 mod/admin.php:186 +msgid "Admin" msgstr "" -#: include/conversation.php:1256 mod/editpost.php:120 -msgid "Set your location" +#: include/nav.php:197 +msgid "Site setup and configuration" msgstr "" -#: include/conversation.php:1257 mod/editpost.php:121 -msgid "set location" +#: include/nav.php:200 +msgid "Navigation" msgstr "" -#: include/conversation.php:1258 mod/editpost.php:122 -msgid "Clear browser location" +#: include/nav.php:200 +msgid "Site map" msgstr "" -#: include/conversation.php:1259 mod/editpost.php:123 -msgid "clear location" +#: include/photos.php:53 mod/fbrowser.php:41 mod/fbrowser.php:62 +#: mod/photos.php:180 mod/photos.php:1086 mod/photos.php:1211 +#: mod/photos.php:1232 mod/photos.php:1795 mod/photos.php:1807 +msgid "Contact Photos" msgstr "" -#: include/conversation.php:1261 mod/editpost.php:137 -msgid "Set title" +#: include/security.php:22 +msgid "Welcome " msgstr "" -#: include/conversation.php:1263 mod/editpost.php:139 -msgid "Categories (comma-separated list)" +#: include/security.php:23 +msgid "Please upload a profile photo." msgstr "" -#: include/conversation.php:1265 mod/editpost.php:125 -msgid "Permission settings" +#: include/security.php:26 +msgid "Welcome back " msgstr "" -#: include/conversation.php:1266 mod/editpost.php:154 -msgid "permissions" +#: include/security.php:373 +msgid "" +"The form security token was not correct. This probably happened because the " +"form has been opened for too long (>3 hours) before submitting it." msgstr "" -#: include/conversation.php:1274 mod/editpost.php:134 -msgid "Public post" +#: include/NotificationsManager.php:153 +msgid "System" msgstr "" -#: include/conversation.php:1279 mod/events.php:504 mod/content.php:737 -#: mod/photos.php:1591 mod/photos.php:1639 mod/photos.php:1725 -#: mod/editpost.php:145 object/Item.php:729 -msgid "Preview" +#: include/NotificationsManager.php:167 mod/profiles.php:703 +#: mod/network.php:845 +msgid "Personal" msgstr "" -#: include/conversation.php:1289 -msgid "Post to Groups" +#: include/NotificationsManager.php:234 include/NotificationsManager.php:244 +#, php-format +msgid "%s commented on %s's post" msgstr "" -#: include/conversation.php:1290 -msgid "Post to Contacts" +#: include/NotificationsManager.php:243 +#, php-format +msgid "%s created a new post" msgstr "" -#: include/conversation.php:1291 -msgid "Private post" +#: include/NotificationsManager.php:256 +#, php-format +msgid "%s liked %s's post" msgstr "" -#: include/conversation.php:1296 include/identity.php:256 mod/editpost.php:152 -msgid "Message" +#: include/NotificationsManager.php:267 +#, php-format +msgid "%s disliked %s's post" msgstr "" -#: include/conversation.php:1297 mod/editpost.php:153 -msgid "Browser" +#: include/NotificationsManager.php:278 +#, php-format +msgid "%s is attending %s's event" msgstr "" -#: include/conversation.php:1453 -msgid "View all" +#: include/NotificationsManager.php:289 +#, php-format +msgid "%s is not attending %s's event" msgstr "" -#: include/conversation.php:1475 -msgid "Like" -msgid_plural "Likes" -msgstr[0] "" -msgstr[1] "" - -#: include/conversation.php:1478 -msgid "Dislike" -msgid_plural "Dislikes" -msgstr[0] "" -msgstr[1] "" - -#: include/conversation.php:1484 -msgid "Not Attending" -msgid_plural "Not Attending" -msgstr[0] "" -msgstr[1] "" - -#: include/photos.php:53 mod/fbrowser.php:41 mod/fbrowser.php:62 -#: mod/photos.php:180 mod/photos.php:1086 mod/photos.php:1211 -#: mod/photos.php:1232 mod/photos.php:1795 mod/photos.php:1807 -msgid "Contact Photos" +#: include/NotificationsManager.php:300 +#, php-format +msgid "%s may attend %s's event" msgstr "" -#: include/identity.php:42 -msgid "Requested account is not available." +#: include/NotificationsManager.php:315 +#, php-format +msgid "%s is now friends with %s" msgstr "" -#: include/identity.php:51 mod/profile.php:21 -msgid "Requested profile is not available." +#: include/NotificationsManager.php:748 +msgid "Friend Suggestion" msgstr "" -#: include/identity.php:95 include/identity.php:311 include/identity.php:688 -msgid "Edit profile" +#: include/NotificationsManager.php:781 +msgid "Friend/Connect Request" msgstr "" -#: include/identity.php:251 -msgid "Atom feed" +#: include/NotificationsManager.php:781 +msgid "New Follower" msgstr "" -#: include/identity.php:282 include/nav.php:189 -msgid "Profiles" +#: include/dbstructure.php:26 +#, php-format +msgid "" +"\n" +"\t\t\tThe friendica developers released update %s recently,\n" +"\t\t\tbut when I tried to install it, something went terribly wrong.\n" +"\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n" +"\t\t\tfriendica developer if you can not help me on your own. My database " +"might be invalid." msgstr "" -#: include/identity.php:282 -msgid "Manage/edit profiles" +#: include/dbstructure.php:31 +#, php-format +msgid "" +"The error message is\n" +"[pre]%s[/pre]" msgstr "" -#: include/identity.php:287 include/identity.php:313 mod/profiles.php:795 -msgid "Change profile photo" +#: include/dbstructure.php:183 +msgid "Errors encountered creating database tables." msgstr "" -#: include/identity.php:288 mod/profiles.php:796 -msgid "Create New Profile" +#: include/dbstructure.php:260 +msgid "Errors encountered performing database changes." msgstr "" -#: include/identity.php:298 mod/profiles.php:785 -msgid "Profile Image" +#: include/delivery.php:446 +msgid "(no subject)" msgstr "" -#: include/identity.php:301 mod/profiles.php:787 -msgid "visible to everybody" +#: include/diaspora.php:1958 +msgid "Sharing notification from Diaspora network" msgstr "" -#: include/identity.php:302 mod/profiles.php:691 mod/profiles.php:788 -msgid "Edit visibility" +#: include/diaspora.php:2864 +msgid "Attachments:" msgstr "" -#: include/identity.php:330 include/identity.php:616 mod/notifications.php:238 -#: mod/directory.php:139 -msgid "Gender:" +#: include/network.php:595 +msgid "view full size" msgstr "" -#: include/identity.php:333 include/identity.php:636 mod/directory.php:141 -msgid "Status:" +#: include/Contact.php:340 include/Contact.php:353 include/Contact.php:398 +#: include/conversation.php:968 include/conversation.php:984 +#: mod/allfriends.php:65 mod/directory.php:155 mod/dirfind.php:203 +#: mod/match.php:71 mod/suggest.php:82 +msgid "View Profile" msgstr "" -#: include/identity.php:335 include/identity.php:647 mod/directory.php:143 -msgid "Homepage:" +#: include/Contact.php:397 include/conversation.php:967 +msgid "View Status" msgstr "" -#: include/identity.php:337 include/identity.php:657 mod/notifications.php:234 -#: mod/directory.php:145 mod/contacts.php:632 -msgid "About:" +#: include/Contact.php:399 include/conversation.php:969 +msgid "View Photos" msgstr "" -#: include/identity.php:339 mod/contacts.php:630 -msgid "XMPP:" +#: include/Contact.php:400 include/conversation.php:970 +msgid "Network Posts" msgstr "" -#: include/identity.php:422 mod/notifications.php:246 mod/contacts.php:50 -msgid "Network:" +#: include/Contact.php:401 include/conversation.php:971 +msgid "View Contact" msgstr "" -#: include/identity.php:451 include/identity.php:535 -msgid "g A l F d" +#: include/Contact.php:402 +msgid "Drop Contact" msgstr "" -#: include/identity.php:452 include/identity.php:536 -msgid "F d" +#: include/Contact.php:403 include/conversation.php:972 +msgid "Send PM" msgstr "" -#: include/identity.php:497 include/identity.php:582 -msgid "[today]" +#: include/Contact.php:404 include/conversation.php:976 +msgid "Poke" msgstr "" -#: include/identity.php:509 -msgid "Birthday Reminders" +#: include/Contact.php:775 +msgid "Organisation" msgstr "" -#: include/identity.php:510 -msgid "Birthdays this week:" +#: include/Contact.php:778 +msgid "News" msgstr "" -#: include/identity.php:569 -msgid "[No description]" +#: include/Contact.php:781 +msgid "Forum" msgstr "" -#: include/identity.php:593 -msgid "Event Reminders" +#: include/api.php:1018 +#, php-format +msgid "Daily posting limit of %d posts reached. The post was rejected." msgstr "" -#: include/identity.php:594 -msgid "Events this week:" +#: include/api.php:1038 +#, php-format +msgid "Weekly posting limit of %d posts reached. The post was rejected." msgstr "" -#: include/identity.php:605 include/identity.php:691 include/identity.php:722 -#: include/nav.php:82 mod/profperm.php:104 mod/contacts.php:639 -#: mod/contacts.php:841 mod/newmember.php:32 view/theme/frio/theme.php:250 -msgid "Profile" +#: include/api.php:1059 +#, php-format +msgid "Monthly posting limit of %d posts reached. The post was rejected." msgstr "" -#: include/identity.php:614 mod/settings.php:1279 -msgid "Full Name:" +#: include/bbcode.php:350 include/bbcode.php:1057 include/bbcode.php:1058 +msgid "Image/photo" msgstr "" -#: include/identity.php:621 -msgid "j F, Y" +#: include/bbcode.php:467 +#, php-format +msgid "%2$s %3$s" msgstr "" -#: include/identity.php:622 -msgid "j F" +#: include/bbcode.php:1017 include/bbcode.php:1037 +msgid "$1 wrote:" msgstr "" -#: include/identity.php:633 -msgid "Age:" +#: include/bbcode.php:1066 include/bbcode.php:1067 +msgid "Encrypted content" msgstr "" -#: include/identity.php:642 -#, php-format -msgid "for %1$d %2$s" +#: include/bbcode.php:1169 +msgid "Invalid source protocol" msgstr "" -#: include/identity.php:645 mod/profiles.php:710 -msgid "Sexual Preference:" +#: include/bbcode.php:1179 +msgid "Invalid link protocol" msgstr "" -#: include/identity.php:649 mod/profiles.php:737 -msgid "Hometown:" +#: include/conversation.php:147 +#, php-format +msgid "%1$s attends %2$s's %3$s" msgstr "" -#: include/identity.php:651 mod/notifications.php:236 mod/contacts.php:634 -#: mod/follow.php:134 -msgid "Tags:" +#: include/conversation.php:150 +#, php-format +msgid "%1$s doesn't attend %2$s's %3$s" msgstr "" -#: include/identity.php:653 mod/profiles.php:738 -msgid "Political Views:" +#: include/conversation.php:153 +#, php-format +msgid "%1$s attends maybe %2$s's %3$s" msgstr "" -#: include/identity.php:655 -msgid "Religion:" +#: include/conversation.php:185 mod/dfrn_confirm.php:477 +#, php-format +msgid "%1$s is now friends with %2$s" msgstr "" -#: include/identity.php:659 -msgid "Hobbies/Interests:" +#: include/conversation.php:219 +#, php-format +msgid "%1$s poked %2$s" msgstr "" -#: include/identity.php:661 mod/profiles.php:742 -msgid "Likes:" +#: include/conversation.php:239 mod/mood.php:62 +#, php-format +msgid "%1$s is currently %2$s" msgstr "" -#: include/identity.php:663 mod/profiles.php:743 -msgid "Dislikes:" +#: include/conversation.php:278 mod/tagger.php:95 +#, php-format +msgid "%1$s tagged %2$s's %3$s with %4$s" msgstr "" -#: include/identity.php:666 -msgid "Contact information and Social Networks:" +#: include/conversation.php:303 +msgid "post/item" msgstr "" -#: include/identity.php:668 -msgid "Musical interests:" +#: include/conversation.php:304 +#, php-format +msgid "%1$s marked %2$s's %3$s as favorite" msgstr "" -#: include/identity.php:670 -msgid "Books, literature:" +#: include/conversation.php:585 mod/content.php:372 mod/profiles.php:346 +#: mod/photos.php:1607 +msgid "Likes" msgstr "" -#: include/identity.php:672 -msgid "Television:" +#: include/conversation.php:585 mod/content.php:372 mod/profiles.php:350 +#: mod/photos.php:1607 +msgid "Dislikes" msgstr "" -#: include/identity.php:674 -msgid "Film/dance/culture/entertainment:" +#: include/conversation.php:586 include/conversation.php:1481 +#: mod/content.php:373 mod/photos.php:1608 +msgid "Attending" +msgid_plural "Attending" +msgstr[0] "" +msgstr[1] "" + +#: include/conversation.php:586 mod/content.php:373 mod/photos.php:1608 +msgid "Not attending" msgstr "" -#: include/identity.php:676 -msgid "Love/Romance:" +#: include/conversation.php:586 mod/content.php:373 mod/photos.php:1608 +msgid "Might attend" msgstr "" -#: include/identity.php:678 -msgid "Work/employment:" +#: include/conversation.php:708 mod/content.php:453 mod/content.php:758 +#: mod/photos.php:1681 object/Item.php:133 +msgid "Select" msgstr "" -#: include/identity.php:680 -msgid "School/education:" +#: include/conversation.php:709 mod/group.php:171 mod/content.php:454 +#: mod/content.php:759 mod/photos.php:1682 mod/settings.php:741 +#: mod/admin.php:1414 mod/contacts.php:808 mod/contacts.php:1007 +#: object/Item.php:134 +msgid "Delete" msgstr "" -#: include/identity.php:684 -msgid "Forums:" +#: include/conversation.php:753 mod/content.php:487 mod/content.php:910 +#: mod/content.php:911 object/Item.php:367 object/Item.php:368 +#, php-format +msgid "View %s's profile @ %s" msgstr "" -#: include/identity.php:692 mod/events.php:507 -msgid "Basic" +#: include/conversation.php:765 object/Item.php:355 +msgid "Categories:" msgstr "" -#: include/identity.php:693 mod/events.php:508 mod/admin.php:959 -#: mod/contacts.php:870 -msgid "Advanced" +#: include/conversation.php:766 object/Item.php:356 +msgid "Filed under:" msgstr "" -#: include/identity.php:714 include/nav.php:81 mod/contacts.php:637 -#: mod/contacts.php:833 view/theme/frio/theme.php:249 -msgid "Status" +#: include/conversation.php:773 mod/content.php:497 mod/content.php:923 +#: object/Item.php:381 +#, php-format +msgid "%s from %s" msgstr "" -#: include/identity.php:717 mod/contacts.php:836 mod/follow.php:143 -msgid "Status Messages and Posts" +#: include/conversation.php:789 mod/content.php:513 +msgid "View in context" msgstr "" -#: include/identity.php:725 mod/contacts.php:844 -msgid "Profile Details" +#: include/conversation.php:791 include/conversation.php:1264 +#: mod/editpost.php:124 mod/wallmessage.php:156 mod/message.php:356 +#: mod/message.php:548 mod/content.php:515 mod/content.php:948 +#: mod/photos.php:1570 object/Item.php:406 +msgid "Please wait" msgstr "" -#: include/identity.php:730 include/nav.php:83 mod/fbrowser.php:32 -#: view/theme/frio/theme.php:251 -msgid "Photos" +#: include/conversation.php:870 +msgid "remove" msgstr "" -#: include/identity.php:733 mod/photos.php:87 -msgid "Photo Albums" +#: include/conversation.php:874 +msgid "Delete Selected Items" msgstr "" -#: include/identity.php:738 include/identity.php:741 include/nav.php:84 -#: view/theme/frio/theme.php:252 -msgid "Videos" +#: include/conversation.php:966 +msgid "Follow Thread" msgstr "" -#: include/identity.php:750 include/identity.php:761 include/nav.php:85 -#: include/nav.php:149 mod/events.php:379 mod/cal.php:275 -#: view/theme/frio/theme.php:253 view/theme/frio/theme.php:257 -msgid "Events" +#: include/conversation.php:1097 +#, php-format +msgid "%s likes this." msgstr "" -#: include/identity.php:753 include/identity.php:764 include/nav.php:149 -#: view/theme/frio/theme.php:257 -msgid "Events and Calendar" +#: include/conversation.php:1100 +#, php-format +msgid "%s doesn't like this." msgstr "" -#: include/identity.php:772 mod/notes.php:46 -msgid "Personal Notes" +#: include/conversation.php:1103 +#, php-format +msgid "%s attends." msgstr "" -#: include/identity.php:775 -msgid "Only You Can See This" +#: include/conversation.php:1106 +#, php-format +msgid "%s doesn't attend." msgstr "" -#: include/follow.php:77 mod/dfrn_request.php:509 -msgid "Disallowed profile URL." +#: include/conversation.php:1109 +#, php-format +msgid "%s attends maybe." msgstr "" -#: include/follow.php:82 -msgid "Connect URL missing." +#: include/conversation.php:1119 +msgid "and" msgstr "" -#: include/follow.php:109 -msgid "" -"This site is not configured to allow communications with other networks." +#: include/conversation.php:1125 +#, php-format +msgid ", and %d other people" msgstr "" -#: include/follow.php:110 include/follow.php:130 -msgid "No compatible communication protocols or feeds were discovered." +#: include/conversation.php:1134 +#, php-format +msgid "%2$d people like this" msgstr "" -#: include/follow.php:128 -msgid "The profile address specified does not provide adequate information." +#: include/conversation.php:1135 +#, php-format +msgid "%s like this." msgstr "" -#: include/follow.php:132 -msgid "An author or name was not found." +#: include/conversation.php:1138 +#, php-format +msgid "%2$d people don't like this" msgstr "" -#: include/follow.php:134 -msgid "No browser URL could be matched to this address." +#: include/conversation.php:1139 +#, php-format +msgid "%s don't like this." msgstr "" -#: include/follow.php:136 -msgid "" -"Unable to match @-style Identity Address with a known protocol or email " -"contact." +#: include/conversation.php:1142 +#, php-format +msgid "%2$d people attend" msgstr "" -#: include/follow.php:137 -msgid "Use mailto: in front of address to force email check." +#: include/conversation.php:1143 +#, php-format +msgid "%s attend." msgstr "" -#: include/follow.php:143 -msgid "" -"The profile address specified belongs to a network which has been disabled " -"on this site." +#: include/conversation.php:1146 +#, php-format +msgid "%2$d people don't attend" msgstr "" -#: include/follow.php:153 -msgid "" -"Limited profile. This person will be unable to receive direct/personal " -"notifications from you." +#: include/conversation.php:1147 +#, php-format +msgid "%s don't attend." msgstr "" -#: include/follow.php:254 -msgid "Unable to retrieve contact information." +#: include/conversation.php:1150 +#, php-format +msgid "%2$d people attend maybe" msgstr "" -#: include/follow.php:287 -msgid "following" +#: include/conversation.php:1151 +#, php-format +msgid "%s anttend maybe." msgstr "" -#: include/Contact.php:105 -msgid "stopped following" +#: include/conversation.php:1190 include/conversation.php:1208 +msgid "Visible to everybody" msgstr "" -#: include/Contact.php:409 -msgid "Drop Contact" +#: include/conversation.php:1191 include/conversation.php:1209 +#: mod/wallmessage.php:127 mod/wallmessage.php:135 mod/message.php:291 +#: mod/message.php:299 mod/message.php:442 mod/message.php:450 +msgid "Please enter a link URL:" msgstr "" -#: include/Contact.php:784 -msgid "Organisation" +#: include/conversation.php:1192 include/conversation.php:1210 +msgid "Please enter a video link/URL:" msgstr "" -#: include/Contact.php:787 -msgid "News" +#: include/conversation.php:1193 include/conversation.php:1211 +msgid "Please enter an audio link/URL:" msgstr "" -#: include/Contact.php:790 -msgid "Forum" +#: include/conversation.php:1194 include/conversation.php:1212 +msgid "Tag term:" msgstr "" -#: include/oembed.php:264 -msgid "Embedded content" +#: include/conversation.php:1195 include/conversation.php:1213 +#: mod/filer.php:30 +msgid "Save to Folder:" msgstr "" -#: include/oembed.php:272 -msgid "Embedding disabled" +#: include/conversation.php:1196 include/conversation.php:1214 +msgid "Where are you right now?" msgstr "" -#: include/bbcode.php:348 include/bbcode.php:1055 include/bbcode.php:1056 -msgid "Image/photo" +#: include/conversation.php:1197 +msgid "Delete item(s)?" msgstr "" -#: include/bbcode.php:465 -#, php-format -msgid "%2$s %3$s" +#: include/conversation.php:1245 mod/photos.php:1569 +msgid "Share" msgstr "" -#: include/bbcode.php:1015 include/bbcode.php:1035 -msgid "$1 wrote:" +#: include/conversation.php:1246 mod/editpost.php:110 mod/wallmessage.php:154 +#: mod/message.php:354 mod/message.php:545 +msgid "Upload photo" msgstr "" -#: include/bbcode.php:1064 include/bbcode.php:1065 -msgid "Encrypted content" +#: include/conversation.php:1247 mod/editpost.php:111 +msgid "upload photo" msgstr "" -#: include/contact_selectors.php:32 -msgid "Unknown | Not categorised" +#: include/conversation.php:1248 mod/editpost.php:112 +msgid "Attach file" msgstr "" -#: include/contact_selectors.php:33 -msgid "Block immediately" +#: include/conversation.php:1249 mod/editpost.php:113 +msgid "attach file" msgstr "" -#: include/contact_selectors.php:34 -msgid "Shady, spammer, self-marketer" +#: include/conversation.php:1250 mod/editpost.php:114 mod/wallmessage.php:155 +#: mod/message.php:355 mod/message.php:546 +msgid "Insert web link" msgstr "" -#: include/contact_selectors.php:35 -msgid "Known to me, but no opinion" +#: include/conversation.php:1251 mod/editpost.php:115 +msgid "web link" msgstr "" -#: include/contact_selectors.php:36 -msgid "OK, probably harmless" +#: include/conversation.php:1252 mod/editpost.php:116 +msgid "Insert video link" msgstr "" -#: include/contact_selectors.php:37 -msgid "Reputable, has my trust" +#: include/conversation.php:1253 mod/editpost.php:117 +msgid "video link" msgstr "" -#: include/contact_selectors.php:56 mod/admin.php:890 -msgid "Frequently" +#: include/conversation.php:1254 mod/editpost.php:118 +msgid "Insert audio link" msgstr "" -#: include/contact_selectors.php:57 mod/admin.php:891 -msgid "Hourly" +#: include/conversation.php:1255 mod/editpost.php:119 +msgid "audio link" msgstr "" -#: include/contact_selectors.php:58 mod/admin.php:892 -msgid "Twice daily" +#: include/conversation.php:1256 mod/editpost.php:120 +msgid "Set your location" msgstr "" -#: include/contact_selectors.php:59 mod/admin.php:893 -msgid "Daily" +#: include/conversation.php:1257 mod/editpost.php:121 +msgid "set location" msgstr "" -#: include/contact_selectors.php:60 -msgid "Weekly" +#: include/conversation.php:1258 mod/editpost.php:122 +msgid "Clear browser location" msgstr "" -#: include/contact_selectors.php:61 -msgid "Monthly" +#: include/conversation.php:1259 mod/editpost.php:123 +msgid "clear location" msgstr "" -#: include/contact_selectors.php:76 mod/dfrn_request.php:868 -msgid "Friendica" +#: include/conversation.php:1261 mod/editpost.php:137 +msgid "Set title" msgstr "" -#: include/contact_selectors.php:77 -msgid "OStatus" +#: include/conversation.php:1263 mod/editpost.php:139 +msgid "Categories (comma-separated list)" msgstr "" -#: include/contact_selectors.php:78 -msgid "RSS/Atom" +#: include/conversation.php:1265 mod/editpost.php:125 +msgid "Permission settings" msgstr "" -#: include/contact_selectors.php:79 include/contact_selectors.php:86 -#: mod/admin.php:1396 mod/admin.php:1409 mod/admin.php:1422 mod/admin.php:1440 -msgid "Email" +#: include/conversation.php:1266 mod/editpost.php:154 +msgid "permissions" msgstr "" -#: include/contact_selectors.php:80 mod/dfrn_request.php:870 -#: mod/settings.php:842 -msgid "Diaspora" +#: include/conversation.php:1274 mod/editpost.php:134 +msgid "Public post" msgstr "" -#: include/contact_selectors.php:81 -msgid "Facebook" +#: include/conversation.php:1279 mod/editpost.php:145 mod/content.php:737 +#: mod/events.php:504 mod/photos.php:1591 mod/photos.php:1639 +#: mod/photos.php:1725 object/Item.php:729 +msgid "Preview" msgstr "" -#: include/contact_selectors.php:82 -msgid "Zot!" +#: include/conversation.php:1283 include/items.php:1974 mod/fbrowser.php:101 +#: mod/fbrowser.php:136 mod/tagrm.php:11 mod/tagrm.php:94 mod/editpost.php:148 +#: mod/message.php:220 mod/suggest.php:32 mod/photos.php:235 +#: mod/photos.php:322 mod/settings.php:679 mod/settings.php:705 +#: mod/videos.php:128 mod/contacts.php:445 mod/dfrn_request.php:876 +#: mod/follow.php:121 +msgid "Cancel" msgstr "" -#: include/contact_selectors.php:83 -msgid "LinkedIn" +#: include/conversation.php:1289 +msgid "Post to Groups" msgstr "" -#: include/contact_selectors.php:84 -msgid "XMPP/IM" +#: include/conversation.php:1290 +msgid "Post to Contacts" msgstr "" -#: include/contact_selectors.php:85 -msgid "MySpace" +#: include/conversation.php:1291 +msgid "Private post" msgstr "" -#: include/contact_selectors.php:87 -msgid "Google+" +#: include/conversation.php:1296 include/identity.php:256 mod/editpost.php:152 +msgid "Message" msgstr "" -#: include/contact_selectors.php:88 -msgid "pump.io" +#: include/conversation.php:1297 mod/editpost.php:153 +msgid "Browser" msgstr "" -#: include/contact_selectors.php:89 -msgid "Twitter" +#: include/conversation.php:1453 +msgid "View all" msgstr "" -#: include/contact_selectors.php:90 -msgid "Diaspora Connector" +#: include/conversation.php:1475 +msgid "Like" +msgid_plural "Likes" +msgstr[0] "" +msgstr[1] "" + +#: include/conversation.php:1478 +msgid "Dislike" +msgid_plural "Dislikes" +msgstr[0] "" +msgstr[1] "" + +#: include/conversation.php:1484 +msgid "Not Attending" +msgid_plural "Not Attending" +msgstr[0] "" +msgstr[1] "" + +#: include/dfrn.php:1108 +#, php-format +msgid "%s\\'s birthday" msgstr "" -#: include/contact_selectors.php:91 -msgid "GNU Social" +#: include/features.php:70 +msgid "General Features" msgstr "" -#: include/contact_selectors.php:92 -msgid "App.net" +#: include/features.php:72 +msgid "Multiple Profiles" msgstr "" -#: include/contact_selectors.php:103 -msgid "Hubzilla/Redmatrix" +#: include/features.php:72 +msgid "Ability to create multiple profiles" msgstr "" -#: include/dbstructure.php:26 -#, php-format -msgid "" -"\n" -"\t\t\tThe friendica developers released update %s recently,\n" -"\t\t\tbut when I tried to install it, something went terribly wrong.\n" -"\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n" -"\t\t\tfriendica developer if you can not help me on your own. My database " -"might be invalid." +#: include/features.php:73 +msgid "Photo Location" msgstr "" -#: include/dbstructure.php:31 -#, php-format +#: include/features.php:73 msgid "" -"The error message is\n" -"[pre]%s[/pre]" +"Photo metadata is normally stripped. This extracts the location (if present) " +"prior to stripping metadata and links it to a map." msgstr "" -#: include/dbstructure.php:183 -msgid "Errors encountered creating database tables." +#: include/features.php:74 +msgid "Export Public Calendar" msgstr "" -#: include/dbstructure.php:260 -msgid "Errors encountered performing database changes." -msgstr "" - -#: include/auth.php:45 -msgid "Logged out." -msgstr "" - -#: include/auth.php:116 include/auth.php:178 mod/openid.php:100 -msgid "Login failed." -msgstr "" - -#: include/auth.php:132 include/user.php:75 -msgid "" -"We encountered a problem while logging in with the OpenID you provided. " -"Please check the correct spelling of the ID." -msgstr "" - -#: include/auth.php:132 include/user.php:75 -msgid "The error message was:" -msgstr "" - -#: include/network.php:595 -msgid "view full size" -msgstr "" - -#: include/group.php:25 -msgid "" -"A deleted group with this name was revived. Existing item permissions " -"may apply to this group and any future members. If this is " -"not what you intended, please create another group with a different name." -msgstr "" - -#: include/group.php:209 -msgid "Default privacy group for new contacts" -msgstr "" - -#: include/group.php:242 -msgid "Everybody" -msgstr "" - -#: include/group.php:265 -msgid "edit" -msgstr "" - -#: include/group.php:286 mod/newmember.php:61 -msgid "Groups" -msgstr "" - -#: include/group.php:288 -msgid "Edit groups" -msgstr "" - -#: include/group.php:290 -msgid "Edit group" -msgstr "" - -#: include/group.php:291 -msgid "Create a new group" -msgstr "" - -#: include/group.php:292 mod/group.php:94 mod/group.php:178 -msgid "Group Name: " -msgstr "" - -#: include/group.php:294 -msgid "Contacts not in any group" -msgstr "" - -#: include/group.php:296 mod/network.php:201 -msgid "add" -msgstr "" - -#: include/Photo.php:1040 include/Photo.php:1056 include/Photo.php:1064 -#: include/Photo.php:1089 include/message.php:145 mod/wall_upload.php:218 -#: mod/wall_upload.php:232 mod/wall_upload.php:239 mod/item.php:477 -msgid "Wall Photos" -msgstr "" - -#: include/delivery.php:446 -msgid "(no subject)" -msgstr "" - -#: include/user.php:39 mod/settings.php:373 -msgid "Passwords do not match. Password unchanged." -msgstr "" - -#: include/user.php:48 -msgid "An invitation is required." -msgstr "" - -#: include/user.php:53 -msgid "Invitation could not be verified." -msgstr "" - -#: include/user.php:61 -msgid "Invalid OpenID url" -msgstr "" - -#: include/user.php:82 -msgid "Please enter the required information." -msgstr "" - -#: include/user.php:96 -msgid "Please use a shorter name." -msgstr "" - -#: include/user.php:98 -msgid "Name too short." -msgstr "" - -#: include/user.php:113 -msgid "That doesn't appear to be your full (First Last) name." -msgstr "" - -#: include/user.php:118 -msgid "Your email domain is not among those allowed on this site." -msgstr "" - -#: include/user.php:121 -msgid "Not a valid email address." -msgstr "" - -#: include/user.php:134 -msgid "Cannot use that email." -msgstr "" - -#: include/user.php:140 -msgid "Your \"nickname\" can only contain \"a-z\", \"0-9\" and \"_\"." -msgstr "" - -#: include/user.php:147 include/user.php:245 -msgid "Nickname is already registered. Please choose another." -msgstr "" - -#: include/user.php:157 -msgid "" -"Nickname was once registered here and may not be re-used. Please choose " -"another." -msgstr "" - -#: include/user.php:173 -msgid "SERIOUS ERROR: Generation of security keys failed." -msgstr "" - -#: include/user.php:231 -msgid "An error occurred during registration. Please try again." -msgstr "" - -#: include/user.php:256 view/theme/duepuntozero/config.php:44 -msgid "default" -msgstr "" - -#: include/user.php:266 -msgid "An error occurred creating your default profile. Please try again." -msgstr "" - -#: include/user.php:345 include/user.php:352 include/user.php:359 -#: mod/photos.php:66 mod/photos.php:180 mod/photos.php:751 mod/photos.php:1211 -#: mod/photos.php:1232 mod/photos.php:1819 mod/profile_photo.php:74 -#: mod/profile_photo.php:81 mod/profile_photo.php:88 mod/profile_photo.php:210 -#: mod/profile_photo.php:302 mod/profile_photo.php:311 -msgid "Profile Photos" -msgstr "" - -#: include/user.php:390 -#, php-format -msgid "" -"\n" -"\t\tDear %1$s,\n" -"\t\t\tThank you for registering at %2$s. Your account is pending for " -"approval by the administrator.\n" -"\t" -msgstr "" - -#: include/user.php:400 -#, php-format -msgid "Registration at %s" -msgstr "" - -#: include/user.php:410 -#, php-format -msgid "" -"\n" -"\t\tDear %1$s,\n" -"\t\t\tThank you for registering at %2$s. Your account has been created.\n" -"\t" -msgstr "" - -#: include/user.php:414 -#, php-format -msgid "" -"\n" -"\t\tThe login details are as follows:\n" -"\t\t\tSite Location:\t%3$s\n" -"\t\t\tLogin Name:\t%1$s\n" -"\t\t\tPassword:\t%5$s\n" -"\n" -"\t\tYou may change your password from your account \"Settings\" page after " -"logging\n" -"\t\tin.\n" -"\n" -"\t\tPlease take a few moments to review the other account settings on that " -"page.\n" -"\n" -"\t\tYou may also wish to add some basic information to your default profile\n" -"\t\t(on the \"Profiles\" page) so that other people can easily find you.\n" -"\n" -"\t\tWe recommend setting your full name, adding a profile photo,\n" -"\t\tadding some profile \"keywords\" (very useful in making new friends) - " -"and\n" -"\t\tperhaps what country you live in; if you do not wish to be more " -"specific\n" -"\t\tthan that.\n" -"\n" -"\t\tWe fully respect your right to privacy, and none of these items are " -"necessary.\n" -"\t\tIf you are new and do not know anybody here, they may help\n" -"\t\tyou to make some new and interesting friends.\n" -"\n" -"\n" -"\t\tThank you and welcome to %2$s." -msgstr "" - -#: include/user.php:446 mod/admin.php:1213 -#, php-format -msgid "Registration details for %s" -msgstr "" - -#: include/api.php:1018 -#, php-format -msgid "Daily posting limit of %d posts reached. The post was rejected." -msgstr "" - -#: include/api.php:1038 -#, php-format -msgid "Weekly posting limit of %d posts reached. The post was rejected." -msgstr "" - -#: include/api.php:1059 -#, php-format -msgid "Monthly posting limit of %d posts reached. The post was rejected." -msgstr "" - -#: include/features.php:70 -msgid "General Features" -msgstr "" - -#: include/features.php:72 -msgid "Multiple Profiles" -msgstr "" - -#: include/features.php:72 -msgid "Ability to create multiple profiles" -msgstr "" - -#: include/features.php:73 -msgid "Photo Location" -msgstr "" - -#: include/features.php:73 -msgid "" -"Photo metadata is normally stripped. This extracts the location (if present) " -"prior to stripping metadata and links it to a map." -msgstr "" - -#: include/features.php:74 -msgid "Export Public Calendar" -msgstr "" - -#: include/features.php:74 -msgid "Ability for visitors to download the public calendar" +#: include/features.php:74 +msgid "Ability for visitors to download the public calendar" msgstr "" #: include/features.php:79 @@ -2874,581 +2376,776 @@ msgstr "" msgid "Show visitors public community forums at the Advanced Profile Page" msgstr "" -#: include/nav.php:35 mod/navigation.php:19 -msgid "Nothing new here" +#: include/follow.php:81 mod/dfrn_request.php:509 +msgid "Disallowed profile URL." msgstr "" -#: include/nav.php:39 mod/navigation.php:23 -msgid "Clear notifications" +#: include/follow.php:86 +msgid "Connect URL missing." msgstr "" -#: include/nav.php:78 view/theme/frio/theme.php:246 -msgid "End this session" +#: include/follow.php:113 +msgid "" +"This site is not configured to allow communications with other networks." msgstr "" -#: include/nav.php:81 include/nav.php:161 view/theme/frio/theme.php:249 -msgid "Your posts and conversations" +#: include/follow.php:114 include/follow.php:134 +msgid "No compatible communication protocols or feeds were discovered." msgstr "" -#: include/nav.php:82 view/theme/frio/theme.php:250 -msgid "Your profile page" +#: include/follow.php:132 +msgid "The profile address specified does not provide adequate information." msgstr "" -#: include/nav.php:83 view/theme/frio/theme.php:251 -msgid "Your photos" +#: include/follow.php:136 +msgid "An author or name was not found." msgstr "" -#: include/nav.php:84 view/theme/frio/theme.php:252 -msgid "Your videos" +#: include/follow.php:138 +msgid "No browser URL could be matched to this address." msgstr "" -#: include/nav.php:85 view/theme/frio/theme.php:253 -msgid "Your events" +#: include/follow.php:140 +msgid "" +"Unable to match @-style Identity Address with a known protocol or email " +"contact." msgstr "" -#: include/nav.php:86 -msgid "Personal notes" +#: include/follow.php:141 +msgid "Use mailto: in front of address to force email check." msgstr "" -#: include/nav.php:86 -msgid "Your personal notes" +#: include/follow.php:147 +msgid "" +"The profile address specified belongs to a network which has been disabled " +"on this site." msgstr "" -#: include/nav.php:95 -msgid "Sign in" +#: include/follow.php:157 +msgid "" +"Limited profile. This person will be unable to receive direct/personal " +"notifications from you." msgstr "" -#: include/nav.php:105 -msgid "Home Page" +#: include/follow.php:258 +msgid "Unable to retrieve contact information." msgstr "" -#: include/nav.php:109 -msgid "Create an account" +#: include/identity.php:42 +msgid "Requested account is not available." msgstr "" -#: include/nav.php:115 mod/help.php:47 view/theme/vier/theme.php:298 -msgid "Help" +#: include/identity.php:51 mod/profile.php:21 +msgid "Requested profile is not available." msgstr "" -#: include/nav.php:115 -msgid "Help and documentation" +#: include/identity.php:95 include/identity.php:311 include/identity.php:688 +msgid "Edit profile" msgstr "" -#: include/nav.php:119 -msgid "Apps" +#: include/identity.php:251 +msgid "Atom feed" msgstr "" -#: include/nav.php:119 -msgid "Addon applications, utilities, games" +#: include/identity.php:282 +msgid "Manage/edit profiles" msgstr "" -#: include/nav.php:123 -msgid "Search site content" +#: include/identity.php:287 include/identity.php:313 mod/profiles.php:795 +msgid "Change profile photo" msgstr "" -#: include/nav.php:143 include/nav.php:145 mod/community.php:36 -msgid "Community" +#: include/identity.php:288 mod/profiles.php:796 +msgid "Create New Profile" msgstr "" -#: include/nav.php:143 -msgid "Conversations on this site" +#: include/identity.php:298 mod/profiles.php:785 +msgid "Profile Image" msgstr "" -#: include/nav.php:145 -msgid "Conversations on the network" +#: include/identity.php:301 mod/profiles.php:787 +msgid "visible to everybody" msgstr "" -#: include/nav.php:152 -msgid "Directory" +#: include/identity.php:302 mod/profiles.php:691 mod/profiles.php:788 +msgid "Edit visibility" msgstr "" -#: include/nav.php:152 -msgid "People directory" +#: include/identity.php:330 include/identity.php:616 mod/notifications.php:238 +#: mod/directory.php:139 +msgid "Gender:" msgstr "" -#: include/nav.php:154 -msgid "Information" +#: include/identity.php:333 include/identity.php:636 mod/directory.php:141 +msgid "Status:" msgstr "" -#: include/nav.php:154 -msgid "Information about this friendica instance" +#: include/identity.php:335 include/identity.php:647 mod/directory.php:143 +msgid "Homepage:" msgstr "" -#: include/nav.php:158 view/theme/frio/theme.php:256 -msgid "Conversations from your friends" +#: include/identity.php:337 include/identity.php:657 mod/notifications.php:234 +#: mod/directory.php:145 mod/contacts.php:632 +msgid "About:" msgstr "" -#: include/nav.php:159 -msgid "Network Reset" +#: include/identity.php:339 mod/contacts.php:630 +msgid "XMPP:" msgstr "" -#: include/nav.php:159 -msgid "Load Network page with no filters" +#: include/identity.php:422 mod/notifications.php:246 mod/contacts.php:50 +msgid "Network:" msgstr "" -#: include/nav.php:166 -msgid "Friend Requests" +#: include/identity.php:451 include/identity.php:535 +msgid "g A l F d" msgstr "" -#: include/nav.php:169 mod/notifications.php:96 -msgid "Notifications" +#: include/identity.php:452 include/identity.php:536 +msgid "F d" msgstr "" -#: include/nav.php:170 -msgid "See all notifications" +#: include/identity.php:497 include/identity.php:582 +msgid "[today]" msgstr "" -#: include/nav.php:171 mod/settings.php:902 -msgid "Mark as seen" +#: include/identity.php:509 +msgid "Birthday Reminders" msgstr "" -#: include/nav.php:171 -msgid "Mark all system notifications seen" +#: include/identity.php:510 +msgid "Birthdays this week:" msgstr "" -#: include/nav.php:175 mod/message.php:190 view/theme/frio/theme.php:258 -msgid "Messages" +#: include/identity.php:569 +msgid "[No description]" msgstr "" -#: include/nav.php:175 view/theme/frio/theme.php:258 -msgid "Private mail" +#: include/identity.php:593 +msgid "Event Reminders" msgstr "" -#: include/nav.php:176 -msgid "Inbox" +#: include/identity.php:594 +msgid "Events this week:" msgstr "" -#: include/nav.php:177 -msgid "Outbox" +#: include/identity.php:614 mod/settings.php:1279 +msgid "Full Name:" msgstr "" -#: include/nav.php:178 mod/message.php:16 -msgid "New Message" +#: include/identity.php:621 +msgid "j F, Y" msgstr "" -#: include/nav.php:181 -msgid "Manage" +#: include/identity.php:622 +msgid "j F" msgstr "" -#: include/nav.php:181 -msgid "Manage other pages" +#: include/identity.php:633 +msgid "Age:" msgstr "" -#: include/nav.php:184 mod/settings.php:81 -msgid "Delegations" +#: include/identity.php:642 +#, php-format +msgid "for %1$d %2$s" msgstr "" -#: include/nav.php:184 mod/delegate.php:130 -msgid "Delegate Page Management" +#: include/identity.php:645 mod/profiles.php:710 +msgid "Sexual Preference:" msgstr "" -#: include/nav.php:186 mod/admin.php:1524 mod/admin.php:1782 -#: mod/newmember.php:22 mod/settings.php:111 view/theme/frio/theme.php:259 -msgid "Settings" +#: include/identity.php:649 mod/profiles.php:737 +msgid "Hometown:" msgstr "" -#: include/nav.php:186 view/theme/frio/theme.php:259 -msgid "Account settings" +#: include/identity.php:651 mod/notifications.php:236 mod/contacts.php:634 +#: mod/follow.php:134 +msgid "Tags:" msgstr "" -#: include/nav.php:189 -msgid "Manage/Edit Profiles" +#: include/identity.php:653 mod/profiles.php:738 +msgid "Political Views:" msgstr "" -#: include/nav.php:192 view/theme/frio/theme.php:260 -msgid "Manage/edit friends and contacts" +#: include/identity.php:655 +msgid "Religion:" msgstr "" -#: include/nav.php:197 mod/admin.php:186 -msgid "Admin" +#: include/identity.php:659 +msgid "Hobbies/Interests:" msgstr "" -#: include/nav.php:197 -msgid "Site setup and configuration" +#: include/identity.php:661 mod/profiles.php:742 +msgid "Likes:" msgstr "" -#: include/nav.php:200 -msgid "Navigation" +#: include/identity.php:663 mod/profiles.php:743 +msgid "Dislikes:" msgstr "" -#: include/nav.php:200 -msgid "Site map" +#: include/identity.php:666 +msgid "Contact information and Social Networks:" msgstr "" -#: include/like.php:186 -#, php-format -msgid "%1$s is attending %2$s's %3$s" +#: include/identity.php:668 +msgid "Musical interests:" msgstr "" -#: include/like.php:188 -#, php-format -msgid "%1$s is not attending %2$s's %3$s" +#: include/identity.php:670 +msgid "Books, literature:" msgstr "" -#: include/like.php:190 -#, php-format -msgid "%1$s may attend %2$s's %3$s" +#: include/identity.php:672 +msgid "Television:" msgstr "" -#: include/acl_selectors.php:327 -msgid "Post to Email" +#: include/identity.php:674 +msgid "Film/dance/culture/entertainment:" msgstr "" -#: include/acl_selectors.php:332 -#, php-format -msgid "Connectors disabled, since \"%s\" is enabled." +#: include/identity.php:676 +msgid "Love/Romance:" msgstr "" -#: include/acl_selectors.php:333 mod/settings.php:1181 -msgid "Hide your profile details from unknown viewers?" +#: include/identity.php:678 +msgid "Work/employment:" msgstr "" -#: include/acl_selectors.php:338 -msgid "Visible to everybody" +#: include/identity.php:680 +msgid "School/education:" msgstr "" -#: include/acl_selectors.php:339 view/theme/vier/config.php:103 -msgid "show" +#: include/identity.php:684 +msgid "Forums:" msgstr "" -#: include/acl_selectors.php:340 view/theme/vier/config.php:103 -msgid "don't show" +#: include/identity.php:692 mod/events.php:507 +msgid "Basic" msgstr "" -#: include/acl_selectors.php:346 mod/editpost.php:133 -msgid "CC: email addresses" +#: include/identity.php:693 mod/events.php:508 mod/admin.php:959 +#: mod/contacts.php:870 +msgid "Advanced" msgstr "" -#: include/acl_selectors.php:347 mod/editpost.php:140 -msgid "Example: bob@example.com, mary@example.com" +#: include/identity.php:717 mod/contacts.php:836 mod/follow.php:142 +msgid "Status Messages and Posts" msgstr "" -#: include/acl_selectors.php:349 mod/events.php:509 mod/photos.php:1156 -#: mod/photos.php:1535 -msgid "Permissions" +#: include/identity.php:725 mod/contacts.php:844 +msgid "Profile Details" msgstr "" -#: include/acl_selectors.php:350 -msgid "Close" +#: include/identity.php:733 mod/photos.php:87 +msgid "Photo Albums" msgstr "" -#: include/message.php:15 include/message.php:173 -msgid "[no subject]" -msgstr "" - -#: index.php:244 mod/apps.php:7 -msgid "You must be logged in to use addons. " +#: include/identity.php:772 mod/notes.php:46 +msgid "Personal Notes" msgstr "" -#: index.php:288 mod/help.php:53 mod/p.php:16 mod/p.php:43 mod/p.php:52 -#: mod/fetch.php:12 mod/fetch.php:39 mod/fetch.php:48 -msgid "Not Found" +#: include/identity.php:775 +msgid "Only You Can See This" msgstr "" -#: index.php:291 mod/help.php:56 -msgid "Page not found." +#: include/items.php:1575 mod/dfrn_confirm.php:730 mod/dfrn_request.php:746 +msgid "[Name Withheld]" msgstr "" -#: index.php:400 mod/profperm.php:19 mod/group.php:72 -msgid "Permission denied" +#: include/items.php:1930 mod/viewsrc.php:15 mod/notice.php:15 +#: mod/display.php:103 mod/display.php:279 mod/display.php:478 +#: mod/admin.php:234 mod/admin.php:1471 mod/admin.php:1705 +msgid "Item not found." msgstr "" -#: index.php:451 -msgid "toggle mobile" +#: include/items.php:1969 +msgid "Do you really want to delete this item?" msgstr "" -#: mod/regmod.php:55 -msgid "Account approved." +#: include/items.php:1971 mod/api.php:105 mod/message.php:217 +#: mod/profiles.php:648 mod/profiles.php:651 mod/profiles.php:677 +#: mod/suggest.php:29 mod/register.php:245 mod/settings.php:1163 +#: mod/settings.php:1169 mod/settings.php:1177 mod/settings.php:1181 +#: mod/settings.php:1186 mod/settings.php:1192 mod/settings.php:1198 +#: mod/settings.php:1204 mod/settings.php:1230 mod/settings.php:1231 +#: mod/settings.php:1232 mod/settings.php:1233 mod/settings.php:1234 +#: mod/contacts.php:442 mod/dfrn_request.php:862 mod/follow.php:110 +msgid "Yes" msgstr "" -#: mod/regmod.php:92 -#, php-format -msgid "Registration revoked for %s" +#: include/items.php:2134 mod/notes.php:22 mod/uimport.php:23 +#: mod/nogroup.php:25 mod/invite.php:15 mod/invite.php:101 +#: mod/repair_ostatus.php:9 mod/delegate.php:12 mod/attach.php:33 +#: mod/editpost.php:10 mod/group.php:19 mod/wallmessage.php:9 +#: mod/wallmessage.php:33 mod/wallmessage.php:79 mod/wallmessage.php:103 +#: mod/api.php:26 mod/api.php:31 mod/ostatus_subscribe.php:9 +#: mod/message.php:46 mod/message.php:182 mod/manage.php:96 +#: mod/crepair.php:100 mod/fsuggest.php:78 mod/mood.php:114 mod/poke.php:150 +#: mod/profile_photo.php:19 mod/profile_photo.php:175 +#: mod/profile_photo.php:186 mod/profile_photo.php:199 mod/regmod.php:110 +#: mod/notifications.php:71 mod/profiles.php:166 mod/profiles.php:605 +#: mod/allfriends.php:12 mod/cal.php:304 mod/common.php:18 mod/dirfind.php:11 +#: mod/display.php:475 mod/events.php:190 mod/suggest.php:58 +#: mod/photos.php:159 mod/photos.php:1072 mod/register.php:42 +#: mod/settings.php:22 mod/settings.php:128 mod/settings.php:665 +#: mod/wall_attach.php:67 mod/wall_attach.php:70 mod/wall_upload.php:77 +#: mod/wall_upload.php:80 mod/contacts.php:350 mod/dfrn_confirm.php:61 +#: mod/follow.php:11 mod/follow.php:73 mod/follow.php:155 mod/item.php:199 +#: mod/item.php:211 mod/network.php:4 mod/viewcontacts.php:45 index.php:401 +msgid "Permission denied." msgstr "" -#: mod/regmod.php:104 -msgid "Please login." +#: include/items.php:2239 +msgid "Archives" msgstr "" -#: mod/oexchange.php:25 -msgid "Post successful." +#: include/oembed.php:264 +msgid "Embedded content" msgstr "" -#: mod/update_community.php:19 mod/update_notes.php:36 -#: mod/update_display.php:23 mod/update_profile.php:35 -#: mod/update_network.php:27 -msgid "[Embedded content - reload page to view]" +#: include/oembed.php:272 +msgid "Embedding disabled" msgstr "" -#: mod/dirfind.php:36 +#: include/ostatus.php:1825 #, php-format -msgid "People Search - %s" +msgid "%s is now following %s." msgstr "" -#: mod/dirfind.php:47 -#, php-format -msgid "Forum Search - %s" +#: include/ostatus.php:1826 +msgid "following" msgstr "" -#: mod/dirfind.php:240 mod/match.php:107 -msgid "No matches" +#: include/ostatus.php:1829 +#, php-format +msgid "%s stopped following %s." msgstr "" -#: mod/viewsrc.php:7 -msgid "Access denied." +#: include/ostatus.php:1830 +msgid "stopped following" msgstr "" -#: mod/home.php:35 -#, php-format -msgid "Welcome to %s" +#: include/text.php:304 +msgid "newer" msgstr "" -#: mod/notify.php:60 -msgid "No more system notifications." +#: include/text.php:306 +msgid "older" msgstr "" -#: mod/notify.php:64 mod/notifications.php:111 -msgid "System Notifications" +#: include/text.php:311 +msgid "prev" msgstr "" -#: mod/search.php:25 mod/network.php:191 -msgid "Remove term" +#: include/text.php:313 +msgid "first" msgstr "" -#: mod/search.php:93 mod/search.php:99 mod/directory.php:37 -#: mod/viewcontacts.php:35 mod/videos.php:194 mod/photos.php:944 -#: mod/display.php:200 mod/community.php:22 mod/dfrn_request.php:791 -msgid "Public access denied." +#: include/text.php:345 +msgid "last" msgstr "" -#: mod/search.php:100 -msgid "Only logged in users are permitted to perform a search." +#: include/text.php:348 +msgid "next" msgstr "" -#: mod/search.php:124 -msgid "Too Many Requests" +#: include/text.php:403 +msgid "Loading more entries..." msgstr "" -#: mod/search.php:125 -msgid "Only one search per minute is permitted for not logged in users." +#: include/text.php:404 +msgid "The end" msgstr "" -#: mod/search.php:224 mod/community.php:66 mod/community.php:75 -msgid "No results." +#: include/text.php:889 +msgid "No contacts" msgstr "" -#: mod/search.php:230 +#: include/text.php:912 #, php-format -msgid "Items tagged with: %s" -msgstr "" +msgid "%d Contact" +msgid_plural "%d Contacts" +msgstr[0] "" +msgstr[1] "" -#: mod/search.php:232 mod/contacts.php:797 mod/network.php:146 -#, php-format -msgid "Results for: %s" +#: include/text.php:925 +msgid "View Contacts" msgstr "" -#: mod/notifications.php:35 -msgid "Invalid request identifier." +#: include/text.php:1013 mod/notes.php:61 mod/filer.php:31 +#: mod/editpost.php:109 +msgid "Save" msgstr "" -#: mod/notifications.php:44 mod/notifications.php:180 -#: mod/notifications.php:252 -msgid "Discard" +#: include/text.php:1076 +msgid "poke" msgstr "" -#: mod/notifications.php:60 mod/notifications.php:179 -#: mod/notifications.php:251 mod/contacts.php:606 mod/contacts.php:806 -#: mod/contacts.php:1000 -msgid "Ignore" +#: include/text.php:1076 +msgid "poked" msgstr "" -#: mod/notifications.php:105 -msgid "Network Notifications" +#: include/text.php:1077 +msgid "ping" msgstr "" -#: mod/notifications.php:117 -msgid "Personal Notifications" +#: include/text.php:1077 +msgid "pinged" msgstr "" -#: mod/notifications.php:123 -msgid "Home Notifications" +#: include/text.php:1078 +msgid "prod" msgstr "" -#: mod/notifications.php:152 -msgid "Show Ignored Requests" +#: include/text.php:1078 +msgid "prodded" msgstr "" -#: mod/notifications.php:152 -msgid "Hide Ignored Requests" +#: include/text.php:1079 +msgid "slap" msgstr "" -#: mod/notifications.php:164 mod/notifications.php:222 -msgid "Notification type: " +#: include/text.php:1079 +msgid "slapped" msgstr "" -#: mod/notifications.php:167 -#, php-format -msgid "suggested by %s" +#: include/text.php:1080 +msgid "finger" msgstr "" -#: mod/notifications.php:172 mod/notifications.php:239 mod/contacts.php:613 -msgid "Hide this contact from others" +#: include/text.php:1080 +msgid "fingered" msgstr "" -#: mod/notifications.php:173 mod/notifications.php:240 -msgid "Post a new friend activity" +#: include/text.php:1081 +msgid "rebuff" msgstr "" -#: mod/notifications.php:173 mod/notifications.php:240 -msgid "if applicable" +#: include/text.php:1081 +msgid "rebuffed" msgstr "" -#: mod/notifications.php:176 mod/notifications.php:249 mod/admin.php:1412 -msgid "Approve" +#: include/text.php:1095 +msgid "happy" msgstr "" -#: mod/notifications.php:195 -msgid "Claims to be known to you: " +#: include/text.php:1096 +msgid "sad" msgstr "" -#: mod/notifications.php:196 -msgid "yes" +#: include/text.php:1097 +msgid "mellow" msgstr "" -#: mod/notifications.php:196 -msgid "no" +#: include/text.php:1098 +msgid "tired" msgstr "" -#: mod/notifications.php:197 -msgid "" -"Shall your connection be bidirectional or not? \"Friend\" implies that you " -"allow to read and you subscribe to their posts. \"Fan/Admirer\" means that " -"you allow to read but you do not want to read theirs. Approve as: " +#: include/text.php:1099 +msgid "perky" msgstr "" -#: mod/notifications.php:200 -msgid "" -"Shall your connection be bidirectional or not? \"Friend\" implies that you " -"allow to read and you subscribe to their posts. \"Sharer\" means that you " -"allow to read but you do not want to read theirs. Approve as: " +#: include/text.php:1100 +msgid "angry" msgstr "" -#: mod/notifications.php:209 -msgid "Friend" +#: include/text.php:1101 +msgid "stupified" msgstr "" -#: mod/notifications.php:210 -msgid "Sharer" +#: include/text.php:1102 +msgid "puzzled" msgstr "" -#: mod/notifications.php:210 -msgid "Fan/Admirer" +#: include/text.php:1103 +msgid "interested" msgstr "" -#: mod/notifications.php:243 mod/contacts.php:624 mod/follow.php:126 -msgid "Profile URL" +#: include/text.php:1104 +msgid "bitter" msgstr "" -#: mod/notifications.php:260 -msgid "No introductions." +#: include/text.php:1105 +msgid "cheerful" msgstr "" -#: mod/notifications.php:299 -msgid "Show unread" +#: include/text.php:1106 +msgid "alive" msgstr "" -#: mod/notifications.php:299 -msgid "Show all" +#: include/text.php:1107 +msgid "annoyed" msgstr "" -#: mod/notifications.php:305 -#, php-format -msgid "No more %s notifications." +#: include/text.php:1108 +msgid "anxious" msgstr "" -#: mod/dfrn_confirm.php:70 mod/profiles.php:19 mod/profiles.php:134 -#: mod/profiles.php:180 mod/profiles.php:617 -msgid "Profile not found." +#: include/text.php:1109 +msgid "cranky" msgstr "" -#: mod/dfrn_confirm.php:126 mod/fsuggest.php:20 mod/fsuggest.php:92 -#: mod/crepair.php:114 -msgid "Contact not found." +#: include/text.php:1110 +msgid "disturbed" msgstr "" -#: mod/dfrn_confirm.php:127 -msgid "" -"This may occasionally happen if contact was requested by both persons and it " -"has already been approved." +#: include/text.php:1111 +msgid "frustrated" msgstr "" -#: mod/dfrn_confirm.php:246 -msgid "Response from remote site was not understood." +#: include/text.php:1112 +msgid "motivated" msgstr "" -#: mod/dfrn_confirm.php:255 mod/dfrn_confirm.php:260 -msgid "Unexpected response from remote site: " +#: include/text.php:1113 +msgid "relaxed" msgstr "" -#: mod/dfrn_confirm.php:269 -msgid "Confirmation completed successfully." +#: include/text.php:1114 +msgid "surprised" msgstr "" -#: mod/dfrn_confirm.php:271 mod/dfrn_confirm.php:285 mod/dfrn_confirm.php:292 -msgid "Remote site reported: " +#: include/text.php:1324 mod/videos.php:380 +msgid "View Video" msgstr "" -#: mod/dfrn_confirm.php:283 -msgid "Temporary failure. Please wait and try again." +#: include/text.php:1356 +msgid "bytes" msgstr "" -#: mod/dfrn_confirm.php:290 -msgid "Introduction failed or was revoked." +#: include/text.php:1388 include/text.php:1400 +msgid "Click to open/close" msgstr "" -#: mod/dfrn_confirm.php:419 -msgid "Unable to set contact photo." +#: include/text.php:1526 +msgid "View on separate page" msgstr "" -#: mod/dfrn_confirm.php:557 -#, php-format -msgid "No user record found for '%s' " +#: include/text.php:1527 +msgid "view on separate page" msgstr "" -#: mod/dfrn_confirm.php:567 -msgid "Our site encryption key is apparently messed up." +#: include/text.php:1806 +msgid "activity" msgstr "" -#: mod/dfrn_confirm.php:578 -msgid "Empty site URL was provided or URL could not be decrypted by us." +#: include/text.php:1808 mod/content.php:623 object/Item.php:431 +#: object/Item.php:444 +msgid "comment" +msgid_plural "comments" +msgstr[0] "" +msgstr[1] "" + +#: include/text.php:1809 +msgid "post" msgstr "" -#: mod/dfrn_confirm.php:599 -msgid "Contact record was not found for you on our site." +#: include/text.php:1977 +msgid "Item filed" msgstr "" -#: mod/dfrn_confirm.php:613 +#: include/user.php:39 mod/settings.php:373 +msgid "Passwords do not match. Password unchanged." +msgstr "" + +#: include/user.php:48 +msgid "An invitation is required." +msgstr "" + +#: include/user.php:53 +msgid "Invitation could not be verified." +msgstr "" + +#: include/user.php:61 +msgid "Invalid OpenID url" +msgstr "" + +#: include/user.php:82 +msgid "Please enter the required information." +msgstr "" + +#: include/user.php:96 +msgid "Please use a shorter name." +msgstr "" + +#: include/user.php:98 +msgid "Name too short." +msgstr "" + +#: include/user.php:113 +msgid "That doesn't appear to be your full (First Last) name." +msgstr "" + +#: include/user.php:118 +msgid "Your email domain is not among those allowed on this site." +msgstr "" + +#: include/user.php:121 +msgid "Not a valid email address." +msgstr "" + +#: include/user.php:134 +msgid "Cannot use that email." +msgstr "" + +#: include/user.php:140 +msgid "Your \"nickname\" can only contain \"a-z\", \"0-9\" and \"_\"." +msgstr "" + +#: include/user.php:147 include/user.php:245 +msgid "Nickname is already registered. Please choose another." +msgstr "" + +#: include/user.php:157 +msgid "" +"Nickname was once registered here and may not be re-used. Please choose " +"another." +msgstr "" + +#: include/user.php:173 +msgid "SERIOUS ERROR: Generation of security keys failed." +msgstr "" + +#: include/user.php:231 +msgid "An error occurred during registration. Please try again." +msgstr "" + +#: include/user.php:256 view/theme/duepuntozero/config.php:44 +msgid "default" +msgstr "" + +#: include/user.php:266 +msgid "An error occurred creating your default profile. Please try again." +msgstr "" + +#: include/user.php:326 include/user.php:333 include/user.php:340 +#: mod/profile_photo.php:74 mod/profile_photo.php:81 mod/profile_photo.php:88 +#: mod/profile_photo.php:210 mod/profile_photo.php:302 +#: mod/profile_photo.php:311 mod/photos.php:66 mod/photos.php:180 +#: mod/photos.php:751 mod/photos.php:1211 mod/photos.php:1232 +#: mod/photos.php:1819 +msgid "Profile Photos" +msgstr "" + +#: include/user.php:414 #, php-format -msgid "Site public key not available in contact record for URL %s." +msgid "" +"\n" +"\t\tDear %1$s,\n" +"\t\t\tThank you for registering at %2$s. Your account is pending for " +"approval by the administrator.\n" +"\t" msgstr "" -#: mod/dfrn_confirm.php:633 +#: include/user.php:424 +#, php-format +msgid "Registration at %s" +msgstr "" + +#: include/user.php:434 +#, php-format msgid "" -"The ID provided by your system is a duplicate on our system. It should work " -"if you try again." +"\n" +"\t\tDear %1$s,\n" +"\t\t\tThank you for registering at %2$s. Your account has been created.\n" +"\t" msgstr "" -#: mod/dfrn_confirm.php:644 -msgid "Unable to set your contact credentials on our system." +#: include/user.php:438 +#, php-format +msgid "" +"\n" +"\t\tThe login details are as follows:\n" +"\t\t\tSite Location:\t%3$s\n" +"\t\t\tLogin Name:\t%1$s\n" +"\t\t\tPassword:\t%5$s\n" +"\n" +"\t\tYou may change your password from your account \"Settings\" page after " +"logging\n" +"\t\tin.\n" +"\n" +"\t\tPlease take a few moments to review the other account settings on that " +"page.\n" +"\n" +"\t\tYou may also wish to add some basic information to your default profile\n" +"\t\t(on the \"Profiles\" page) so that other people can easily find you.\n" +"\n" +"\t\tWe recommend setting your full name, adding a profile photo,\n" +"\t\tadding some profile \"keywords\" (very useful in making new friends) - " +"and\n" +"\t\tperhaps what country you live in; if you do not wish to be more " +"specific\n" +"\t\tthan that.\n" +"\n" +"\t\tWe fully respect your right to privacy, and none of these items are " +"necessary.\n" +"\t\tIf you are new and do not know anybody here, they may help\n" +"\t\tyou to make some new and interesting friends.\n" +"\n" +"\n" +"\t\tThank you and welcome to %2$s." msgstr "" -#: mod/dfrn_confirm.php:703 -msgid "Unable to update your contact profile details on our system" +#: include/user.php:470 mod/admin.php:1213 +#, php-format +msgid "Registration details for %s" msgstr "" -#: mod/dfrn_confirm.php:775 +#: mod/oexchange.php:25 +msgid "Post successful." +msgstr "" + +#: mod/viewsrc.php:7 +msgid "Access denied." +msgstr "" + +#: mod/home.php:35 #, php-format -msgid "%1$s has joined %2$s" +msgid "Welcome to %s" +msgstr "" + +#: mod/notify.php:60 +msgid "No more system notifications." +msgstr "" + +#: mod/notify.php:64 mod/notifications.php:111 +msgid "System Notifications" +msgstr "" + +#: mod/search.php:25 mod/network.php:191 +msgid "Remove term" +msgstr "" + +#: mod/search.php:93 mod/search.php:99 mod/community.php:22 +#: mod/directory.php:37 mod/display.php:200 mod/photos.php:944 +#: mod/videos.php:194 mod/dfrn_request.php:791 mod/viewcontacts.php:35 +msgid "Public access denied." +msgstr "" + +#: mod/search.php:100 +msgid "Only logged in users are permitted to perform a search." +msgstr "" + +#: mod/search.php:124 +msgid "Too Many Requests" +msgstr "" + +#: mod/search.php:125 +msgid "Only one search per minute is permitted for not logged in users." +msgstr "" + +#: mod/search.php:224 mod/community.php:66 mod/community.php:75 +msgid "No results." +msgstr "" + +#: mod/search.php:230 +#, php-format +msgid "Items tagged with: %s" +msgstr "" + +#: mod/search.php:232 mod/contacts.php:797 mod/network.php:146 +#, php-format +msgid "Results for: %s" msgstr "" #: mod/friendica.php:70 @@ -3541,6 +3238,10 @@ msgid "" "Password reset failed." msgstr "" +#: mod/lostpass.php:109 boot.php:1807 +msgid "Password Reset" +msgstr "" + #: mod/lostpass.php:110 msgid "Your password has been reset as requested." msgstr "" @@ -3605,6 +3306,10 @@ msgid "" "your email for further instructions." msgstr "" +#: mod/lostpass.php:161 boot.php:1795 +msgid "Nickname or Email: " +msgstr "" + #: mod/lostpass.php:162 msgid "Reset" msgstr "" @@ -3617,179 +3322,55 @@ msgstr "" msgid "Help:" msgstr "" -#: mod/wall_upload.php:20 mod/wall_upload.php:33 mod/wall_upload.php:86 -#: mod/wall_upload.php:122 mod/wall_upload.php:125 mod/wall_attach.php:17 -#: mod/wall_attach.php:25 mod/wall_attach.php:76 -msgid "Invalid request." +#: mod/help.php:53 mod/p.php:16 mod/p.php:43 mod/p.php:52 mod/fetch.php:12 +#: mod/fetch.php:39 mod/fetch.php:48 index.php:288 +msgid "Not Found" msgstr "" -#: mod/wall_upload.php:151 mod/photos.php:786 mod/profile_photo.php:150 -#, php-format -msgid "Image exceeds size limit of %s" +#: mod/help.php:56 index.php:291 +msgid "Page not found." msgstr "" -#: mod/wall_upload.php:188 mod/photos.php:826 mod/profile_photo.php:159 -msgid "Unable to process image." +#: mod/lockview.php:31 mod/lockview.php:39 +msgid "Remote privacy information not available." msgstr "" -#: mod/wall_upload.php:221 mod/photos.php:853 mod/profile_photo.php:307 -msgid "Image upload failed." +#: mod/lockview.php:48 +msgid "Visible to:" msgstr "" -#: mod/fsuggest.php:63 -msgid "Friend suggestion sent." +#: mod/openid.php:24 +msgid "OpenID protocol error. No ID returned." msgstr "" -#: mod/fsuggest.php:97 -msgid "Suggest Friends" +#: mod/openid.php:60 +msgid "" +"Account not found and OpenID registration is not permitted on this site." msgstr "" -#: mod/fsuggest.php:99 -#, php-format -msgid "Suggest a friend for %s" +#: mod/uimport.php:50 mod/register.php:198 +msgid "" +"This site has exceeded the number of allowed daily account registrations. " +"Please try again tomorrow." msgstr "" -#: mod/fsuggest.php:107 mod/events.php:506 mod/invite.php:140 -#: mod/crepair.php:154 mod/content.php:728 mod/profiles.php:688 -#: mod/poke.php:199 mod/photos.php:1104 mod/photos.php:1226 -#: mod/photos.php:1539 mod/photos.php:1590 mod/photos.php:1638 -#: mod/photos.php:1724 mod/install.php:272 mod/install.php:312 -#: mod/contacts.php:577 mod/mood.php:137 mod/localtime.php:45 -#: mod/message.php:357 mod/message.php:547 mod/manage.php:143 -#: object/Item.php:720 view/theme/frio/config.php:59 -#: view/theme/quattro/config.php:64 view/theme/vier/config.php:107 -#: view/theme/duepuntozero/config.php:59 -msgid "Submit" +#: mod/uimport.php:64 mod/register.php:295 +msgid "Import" msgstr "" -#: mod/lockview.php:31 mod/lockview.php:39 -msgid "Remote privacy information not available." +#: mod/uimport.php:66 +msgid "Move account" msgstr "" -#: mod/lockview.php:48 -msgid "Visible to:" +#: mod/uimport.php:67 +msgid "You can import an account from another Friendica server." msgstr "" -#: mod/events.php:95 mod/events.php:97 -msgid "Event can not end before it has started." -msgstr "" - -#: mod/events.php:104 mod/events.php:106 -msgid "Event title and start time are required." -msgstr "" - -#: mod/events.php:380 mod/cal.php:276 -msgid "View" -msgstr "" - -#: mod/events.php:381 -msgid "Create New Event" -msgstr "" - -#: mod/events.php:382 mod/cal.php:277 -msgid "Previous" -msgstr "" - -#: mod/events.php:383 mod/cal.php:278 mod/install.php:231 -msgid "Next" -msgstr "" - -#: mod/events.php:392 mod/cal.php:287 -msgid "list" -msgstr "" - -#: mod/events.php:482 -msgid "Event details" -msgstr "" - -#: mod/events.php:483 -msgid "Starting date and Title are required." -msgstr "" - -#: mod/events.php:484 mod/events.php:485 -msgid "Event Starts:" -msgstr "" - -#: mod/events.php:484 mod/events.php:496 mod/profiles.php:716 -msgid "Required" -msgstr "" - -#: mod/events.php:486 mod/events.php:502 -msgid "Finish date/time is not known or not relevant" -msgstr "" - -#: mod/events.php:488 mod/events.php:489 -msgid "Event Finishes:" -msgstr "" - -#: mod/events.php:490 mod/events.php:503 -msgid "Adjust for viewer timezone" -msgstr "" - -#: mod/events.php:492 -msgid "Description:" -msgstr "" - -#: mod/events.php:496 mod/events.php:498 -msgid "Title:" -msgstr "" - -#: mod/events.php:499 mod/events.php:500 -msgid "Share this event" -msgstr "" - -#: mod/directory.php:197 view/theme/vier/theme.php:201 -msgid "Global Directory" -msgstr "" - -#: mod/directory.php:199 -msgid "Find on this site" -msgstr "" - -#: mod/directory.php:201 -msgid "Results for:" -msgstr "" - -#: mod/directory.php:203 -msgid "Site Directory" -msgstr "" - -#: mod/directory.php:210 -msgid "No entries (some entries may be hidden)." -msgstr "" - -#: mod/openid.php:24 -msgid "OpenID protocol error. No ID returned." -msgstr "" - -#: mod/openid.php:60 -msgid "" -"Account not found and OpenID registration is not permitted on this site." -msgstr "" - -#: mod/uimport.php:50 mod/register.php:198 -msgid "" -"This site has exceeded the number of allowed daily account registrations. " -"Please try again tomorrow." -msgstr "" - -#: mod/uimport.php:64 mod/register.php:295 -msgid "Import" -msgstr "" - -#: mod/uimport.php:66 -msgid "Move account" -msgstr "" - -#: mod/uimport.php:67 -msgid "You can import an account from another Friendica server." -msgstr "" - -#: mod/uimport.php:68 -msgid "" -"You need to export your account from the old server and upload it here. We " -"will recreate your old account here with all your contacts. We will try also " -"to inform your friends that you moved here." +#: mod/uimport.php:68 +msgid "" +"You need to export your account from the old server and upload it here. We " +"will recreate your old account here with all your contacts. We will try also " +"to inform your friends that you moved here." msgstr "" #: mod/uimport.php:69 @@ -3808,13 +3389,13 @@ msgid "" "select \"Export account\"" msgstr "" -#: mod/nogroup.php:41 mod/viewcontacts.php:97 mod/contacts.php:586 -#: mod/contacts.php:939 +#: mod/nogroup.php:41 mod/contacts.php:586 mod/contacts.php:930 +#: mod/viewcontacts.php:97 #, php-format msgid "Visit %s's profile [%s]" msgstr "" -#: mod/nogroup.php:42 mod/contacts.php:940 +#: mod/nogroup.php:42 mod/contacts.php:931 msgid "Edit contact" msgstr "" @@ -3822,18 +3403,6 @@ msgstr "" msgid "Contacts who are not members of a group" msgstr "" -#: mod/match.php:33 -msgid "No keywords to match. Please add keywords to your default profile." -msgstr "" - -#: mod/match.php:86 -msgid "is interested in:" -msgstr "" - -#: mod/match.php:100 -msgid "Profile Match" -msgstr "" - #: mod/uexport.php:29 msgid "Export account" msgstr "" @@ -3956,12 +3525,24 @@ msgid "" "important, please visit http://friendica.com" msgstr "" +#: mod/invite.php:140 mod/localtime.php:45 mod/message.php:357 +#: mod/message.php:547 mod/manage.php:143 mod/crepair.php:154 +#: mod/content.php:728 mod/fsuggest.php:107 mod/mood.php:137 mod/poke.php:199 +#: mod/profiles.php:688 mod/events.php:506 mod/photos.php:1104 +#: mod/photos.php:1226 mod/photos.php:1539 mod/photos.php:1590 +#: mod/photos.php:1638 mod/photos.php:1724 mod/contacts.php:577 +#: mod/install.php:272 mod/install.php:312 object/Item.php:720 +#: view/theme/frio/config.php:59 view/theme/quattro/config.php:64 +#: view/theme/vier/config.php:107 view/theme/duepuntozero/config.php:59 +msgid "Submit" +msgstr "" + #: mod/fbrowser.php:133 msgid "Files" msgstr "" -#: mod/maintenance.php:9 -msgid "System down for maintenance" +#: mod/profperm.php:19 mod/group.php:72 index.php:400 +msgid "Permission denied" msgstr "" #: mod/profperm.php:25 mod/profperm.php:56 @@ -3984,1572 +3565,1456 @@ msgstr "" msgid "All Contacts (with secure profile access)" msgstr "" -#: mod/viewcontacts.php:72 -msgid "No contacts." -msgstr "" - -#: mod/crepair.php:87 -msgid "Contact settings applied." +#: mod/tagrm.php:41 +msgid "Tag removed" msgstr "" -#: mod/crepair.php:89 -msgid "Contact update failed." +#: mod/tagrm.php:79 +msgid "Remove Item Tag" msgstr "" -#: mod/crepair.php:120 -msgid "" -"WARNING: This is highly advanced and if you enter incorrect " -"information your communications with this contact may stop working." +#: mod/tagrm.php:81 +msgid "Select a tag to remove: " msgstr "" -#: mod/crepair.php:121 -msgid "" -"Please use your browser 'Back' button now if you are " -"uncertain what to do on this page." +#: mod/tagrm.php:93 mod/delegate.php:139 +msgid "Remove" msgstr "" -#: mod/crepair.php:134 mod/crepair.php:136 -msgid "No mirroring" +#: mod/repair_ostatus.php:14 +msgid "Resubscribing to OStatus contacts" msgstr "" -#: mod/crepair.php:134 -msgid "Mirror as forwarded posting" +#: mod/repair_ostatus.php:30 +msgid "Error" msgstr "" -#: mod/crepair.php:134 mod/crepair.php:136 -msgid "Mirror as my own posting" +#: mod/repair_ostatus.php:44 mod/ostatus_subscribe.php:51 +msgid "Done" msgstr "" -#: mod/crepair.php:150 -msgid "Return to contact editor" +#: mod/repair_ostatus.php:50 mod/ostatus_subscribe.php:73 +msgid "Keep this window open until done." msgstr "" -#: mod/crepair.php:152 -msgid "Refetch contact data" +#: mod/delegate.php:101 +msgid "No potential page delegates located." msgstr "" -#: mod/crepair.php:156 -msgid "Remote Self" +#: mod/delegate.php:132 +msgid "" +"Delegates are able to manage all aspects of this account/page except for " +"basic account settings. Please do not delegate your personal account to " +"anybody that you do not trust completely." msgstr "" -#: mod/crepair.php:159 -msgid "Mirror postings from this contact" +#: mod/delegate.php:133 +msgid "Existing Page Managers" msgstr "" -#: mod/crepair.php:161 -msgid "" -"Mark this contact as remote_self, this will cause friendica to repost new " -"entries from this contact." +#: mod/delegate.php:135 +msgid "Existing Page Delegates" msgstr "" -#: mod/crepair.php:165 mod/admin.php:1396 mod/admin.php:1409 -#: mod/admin.php:1422 mod/admin.php:1438 mod/settings.php:680 -#: mod/settings.php:706 -msgid "Name" +#: mod/delegate.php:137 +msgid "Potential Delegates" msgstr "" -#: mod/crepair.php:166 -msgid "Account Nickname" +#: mod/delegate.php:140 +msgid "Add" msgstr "" -#: mod/crepair.php:167 -msgid "@Tagname - overrides Name/Nickname" +#: mod/delegate.php:141 +msgid "No entries." msgstr "" -#: mod/crepair.php:168 -msgid "Account URL" +#: mod/credits.php:16 +msgid "Credits" msgstr "" -#: mod/crepair.php:169 -msgid "Friend Request URL" +#: mod/credits.php:17 +msgid "" +"Friendica is a community project, that would not be possible without the " +"help of many people. Here is a list of those who have contributed to the " +"code or the translation of Friendica. Thank you all!" msgstr "" -#: mod/crepair.php:170 -msgid "Friend Confirm URL" +#: mod/filer.php:30 +msgid "- select -" msgstr "" -#: mod/crepair.php:171 -msgid "Notification Endpoint URL" +#: mod/subthread.php:103 +#, php-format +msgid "%1$s is following %2$s's %3$s" msgstr "" -#: mod/crepair.php:172 -msgid "Poll/Feed URL" +#: mod/attach.php:8 +msgid "Item not available." msgstr "" -#: mod/crepair.php:173 -msgid "New photo from this URL" +#: mod/attach.php:20 +msgid "Item was not found." msgstr "" -#: mod/tagrm.php:41 -msgid "Tag removed" +#: mod/apps.php:7 index.php:244 +msgid "You must be logged in to use addons. " msgstr "" -#: mod/tagrm.php:79 -msgid "Remove Item Tag" +#: mod/apps.php:11 +msgid "Applications" msgstr "" -#: mod/tagrm.php:81 -msgid "Select a tag to remove: " +#: mod/apps.php:14 +msgid "No installed applications." msgstr "" -#: mod/tagrm.php:93 mod/delegate.php:139 -msgid "Remove" +#: mod/p.php:9 +msgid "Not Extended" msgstr "" -#: mod/ping.php:261 -msgid "{0} wants to be your friend" +#: mod/newmember.php:6 +msgid "Welcome to Friendica" msgstr "" -#: mod/ping.php:276 -msgid "{0} sent you a message" +#: mod/newmember.php:8 +msgid "New Member Checklist" msgstr "" -#: mod/ping.php:291 -msgid "{0} requested registration" +#: mod/newmember.php:12 +msgid "" +"We would like to offer some tips and links to help make your experience " +"enjoyable. Click any item to visit the relevant page. A link to this page " +"will be visible from your home page for two weeks after your initial " +"registration and then will quietly disappear." msgstr "" -#: mod/admin.php:92 -msgid "Theme settings updated." +#: mod/newmember.php:14 +msgid "Getting Started" msgstr "" -#: mod/admin.php:156 mod/admin.php:954 -msgid "Site" +#: mod/newmember.php:18 +msgid "Friendica Walk-Through" msgstr "" -#: mod/admin.php:157 mod/admin.php:898 mod/admin.php:1404 mod/admin.php:1420 -msgid "Users" +#: mod/newmember.php:18 +msgid "" +"On your 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/admin.php:158 mod/admin.php:1522 mod/admin.php:1582 mod/settings.php:74 -msgid "Plugins" +#: mod/newmember.php:26 +msgid "Go to Your Settings" msgstr "" -#: mod/admin.php:159 mod/admin.php:1780 mod/admin.php:1830 -msgid "Themes" +#: mod/newmember.php:26 +msgid "" +"On your 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/admin.php:160 mod/settings.php:52 -msgid "Additional features" +#: mod/newmember.php:28 +msgid "" +"Review the other settings, particularly the privacy settings. An unpublished " +"directory listing is like having an unlisted phone number. In general, you " +"should probably publish your listing - unless all of your friends and " +"potential friends know exactly how to find you." msgstr "" -#: mod/admin.php:161 -msgid "DB updates" +#: mod/newmember.php:36 mod/profile_photo.php:250 mod/profiles.php:707 +msgid "Upload Profile Photo" msgstr "" -#: mod/admin.php:162 mod/admin.php:406 -msgid "Inspect Queue" +#: mod/newmember.php:36 +msgid "" +"Upload a profile photo if you have not done so already. Studies have shown " +"that people with real photos of themselves are ten times more likely to make " +"friends than people who do not." msgstr "" -#: mod/admin.php:163 mod/admin.php:372 -msgid "Federation Statistics" +#: mod/newmember.php:38 +msgid "Edit Your Profile" msgstr "" -#: mod/admin.php:177 mod/admin.php:188 mod/admin.php:1904 -msgid "Logs" +#: mod/newmember.php:38 +msgid "" +"Edit your default profile to your liking. Review the " +"settings for hiding your list of friends and hiding the profile from unknown " +"visitors." msgstr "" -#: mod/admin.php:178 mod/admin.php:1972 -msgid "View Logs" +#: mod/newmember.php:40 +msgid "Profile Keywords" msgstr "" -#: mod/admin.php:179 -msgid "probe address" +#: mod/newmember.php:40 +msgid "" +"Set some public keywords for your default profile which describe your " +"interests. We may be able to find other people with similar interests and " +"suggest friendships." msgstr "" -#: mod/admin.php:180 -msgid "check webfinger" +#: mod/newmember.php:44 +msgid "Connecting" msgstr "" -#: mod/admin.php:187 -msgid "Plugin Features" +#: mod/newmember.php:51 +msgid "Importing Emails" msgstr "" -#: mod/admin.php:189 -msgid "diagnostics" +#: mod/newmember.php:51 +msgid "" +"Enter your email access information on your Connector Settings page if you " +"wish to import and interact with friends or mailing lists from your email " +"INBOX" msgstr "" -#: mod/admin.php:190 -msgid "User registrations waiting for confirmation" +#: mod/newmember.php:53 +msgid "Go to Your Contacts Page" msgstr "" -#: mod/admin.php:306 -msgid "unknown" +#: mod/newmember.php:53 +msgid "" +"Your Contacts page is your gateway to managing friendships and connecting " +"with friends on other networks. Typically you enter their address or site " +"URL in the Add New Contact dialog." msgstr "" -#: mod/admin.php:365 -msgid "" -"This page offers you some numbers to the known part of the federated social " -"network your Friendica node is part of. These numbers are not complete but " -"only reflect the part of the network your node is aware of." +#: mod/newmember.php:55 +msgid "Go to Your Site's Directory" msgstr "" -#: mod/admin.php:366 +#: mod/newmember.php:55 msgid "" -"The Auto Discovered Contact Directory feature is not enabled, it " -"will improve the data displayed here." +"The Directory page lets you find other people in this network or other " +"federated sites. Look for a Connect or Follow link on " +"their profile page. Provide your own Identity Address if requested." msgstr "" -#: mod/admin.php:371 mod/admin.php:405 mod/admin.php:484 mod/admin.php:953 -#: mod/admin.php:1403 mod/admin.php:1521 mod/admin.php:1581 mod/admin.php:1779 -#: mod/admin.php:1829 mod/admin.php:1903 mod/admin.php:1971 -msgid "Administration" +#: mod/newmember.php:57 +msgid "Finding New People" msgstr "" -#: mod/admin.php:378 -#, php-format -msgid "Currently this node is aware of %d nodes from the following platforms:" +#: mod/newmember.php:57 +msgid "" +"On the side panel of the Contacts page are several tools to find new " +"friends. We can match people by interest, look up people by name or " +"interest, and provide suggestions based on network relationships. On a brand " +"new site, friend suggestions will usually begin to be populated within 24 " +"hours." msgstr "" -#: mod/admin.php:408 -msgid "ID" +#: mod/newmember.php:65 +msgid "Group Your Contacts" msgstr "" -#: mod/admin.php:409 -msgid "Recipient Name" +#: mod/newmember.php:65 +msgid "" +"Once you have made some friends, organize them into private conversation " +"groups from the sidebar of your Contacts page and then you can interact with " +"each group privately on your Network page." msgstr "" -#: mod/admin.php:410 -msgid "Recipient Profile" +#: mod/newmember.php:68 +msgid "Why Aren't My Posts Public?" msgstr "" -#: mod/admin.php:412 -msgid "Created" +#: mod/newmember.php:68 +msgid "" +"Friendica respects your privacy. By default, your posts will only show up to " +"people you've added as friends. For more information, see the help section " +"from the link above." msgstr "" -#: mod/admin.php:413 -msgid "Last Tried" +#: mod/newmember.php:73 +msgid "Getting Help" msgstr "" -#: mod/admin.php:414 -msgid "" -"This page lists the content of the queue for outgoing postings. These are " -"postings the initial delivery failed for. They will be resend later and " -"eventually deleted if the delivery fails permanently." +#: mod/newmember.php:77 +msgid "Go to the Help Section" msgstr "" -#: mod/admin.php:439 -#, php-format +#: mod/newmember.php:77 msgid "" -"Your DB still runs with MyISAM tables. You should change the engine type to " -"InnoDB. As Friendica will use InnoDB only features in the future, you should " -"change this! See here for a guide that may be helpful " -"converting the table engines. You may also use the convert_innodb.sql in the /util directory of your Friendica installation.
" +"Our help pages may be consulted for detail on other program " +"features and resources." msgstr "" -#: mod/admin.php:444 +#: mod/removeme.php:46 mod/removeme.php:49 +msgid "Remove My Account" +msgstr "" + +#: mod/removeme.php:47 msgid "" -"You are using a MySQL version which does not support all features that " -"Friendica uses. You should consider switching to MariaDB." +"This will completely remove your account. Once this has been done it is not " +"recoverable." msgstr "" -#: mod/admin.php:448 mod/admin.php:1352 -msgid "Normal Account" +#: mod/removeme.php:48 +msgid "Please enter your password for verification:" msgstr "" -#: mod/admin.php:449 mod/admin.php:1353 -msgid "Soapbox Account" +#: mod/editpost.php:17 mod/editpost.php:27 +msgid "Item not found" msgstr "" -#: mod/admin.php:450 mod/admin.php:1354 -msgid "Community/Celebrity Account" +#: mod/editpost.php:40 +msgid "Edit post" msgstr "" -#: mod/admin.php:451 mod/admin.php:1355 -msgid "Automatic Friend Account" +#: mod/localtime.php:24 +msgid "Time Conversion" msgstr "" -#: mod/admin.php:452 -msgid "Blog Account" +#: mod/localtime.php:26 +msgid "" +"Friendica provides this service for sharing events with other networks and " +"friends in unknown timezones." msgstr "" -#: mod/admin.php:453 -msgid "Private Forum" +#: mod/localtime.php:30 +#, php-format +msgid "UTC time: %s" msgstr "" -#: mod/admin.php:479 -msgid "Message queues" +#: mod/localtime.php:33 +#, php-format +msgid "Current timezone: %s" msgstr "" -#: mod/admin.php:485 -msgid "Summary" +#: mod/localtime.php:36 +#, php-format +msgid "Converted localtime: %s" msgstr "" -#: mod/admin.php:488 -msgid "Registered users" +#: mod/localtime.php:41 +msgid "Please select your timezone:" msgstr "" -#: mod/admin.php:490 -msgid "Pending registrations" +#: mod/bookmarklet.php:41 +msgid "The post was created" msgstr "" -#: mod/admin.php:491 -msgid "Version" +#: mod/group.php:29 +msgid "Group created." msgstr "" -#: mod/admin.php:496 -msgid "Active plugins" +#: mod/group.php:35 +msgid "Could not create group." msgstr "" -#: mod/admin.php:521 -msgid "Can not parse base url. Must have at least ://" +#: mod/group.php:47 mod/group.php:140 +msgid "Group not found." msgstr "" -#: mod/admin.php:826 -msgid "RINO2 needs mcrypt php extension to work." +#: mod/group.php:60 +msgid "Group name changed." msgstr "" -#: mod/admin.php:834 -msgid "Site settings updated." +#: mod/group.php:87 +msgid "Save Group" msgstr "" -#: mod/admin.php:862 mod/settings.php:934 -msgid "No special theme for mobile devices" +#: mod/group.php:93 +msgid "Create a group of contacts/friends." msgstr "" -#: mod/admin.php:881 -msgid "No community page" +#: mod/group.php:113 +msgid "Group removed." msgstr "" -#: mod/admin.php:882 -msgid "Public postings from users of this site" +#: mod/group.php:115 +msgid "Unable to remove group." msgstr "" -#: mod/admin.php:883 -msgid "Global community page" +#: mod/group.php:177 +msgid "Group Editor" msgstr "" -#: mod/admin.php:888 mod/contacts.php:530 -msgid "Never" +#: mod/group.php:190 +msgid "Members" msgstr "" -#: mod/admin.php:889 -msgid "At post arrival" +#: mod/group.php:192 mod/contacts.php:692 +msgid "All Contacts" msgstr "" -#: mod/admin.php:897 mod/contacts.php:557 -msgid "Disabled" +#: mod/group.php:193 mod/content.php:130 mod/network.php:496 +msgid "Group is empty" msgstr "" -#: mod/admin.php:899 -msgid "Users, Global Contacts" +#: mod/wallmessage.php:42 mod/wallmessage.php:112 +#, php-format +msgid "Number of daily wall messages for %s exceeded. Message failed." msgstr "" -#: mod/admin.php:900 -msgid "Users, Global Contacts/fallback" +#: mod/wallmessage.php:56 mod/message.php:71 +msgid "No recipient selected." msgstr "" -#: mod/admin.php:904 -msgid "One month" +#: mod/wallmessage.php:59 +msgid "Unable to check your home location." msgstr "" -#: mod/admin.php:905 -msgid "Three months" +#: mod/wallmessage.php:62 mod/message.php:78 +msgid "Message could not be sent." msgstr "" -#: mod/admin.php:906 -msgid "Half a year" +#: mod/wallmessage.php:65 mod/message.php:81 +msgid "Message collection failure." msgstr "" -#: mod/admin.php:907 -msgid "One year" +#: mod/wallmessage.php:68 mod/message.php:84 +msgid "Message sent." msgstr "" -#: mod/admin.php:912 -msgid "Multi user instance" +#: mod/wallmessage.php:86 mod/wallmessage.php:95 +msgid "No recipient." msgstr "" -#: mod/admin.php:935 -msgid "Closed" +#: mod/wallmessage.php:142 mod/message.php:341 +msgid "Send Private Message" msgstr "" -#: mod/admin.php:936 -msgid "Requires approval" +#: mod/wallmessage.php:143 +#, php-format +msgid "" +"If you wish for %s to respond, please check that the privacy settings on " +"your site allow private mail from unknown senders." msgstr "" -#: mod/admin.php:937 -msgid "Open" +#: mod/wallmessage.php:144 mod/message.php:342 mod/message.php:536 +msgid "To:" msgstr "" -#: mod/admin.php:941 -msgid "No SSL policy, links will track page SSL state" +#: mod/wallmessage.php:145 mod/message.php:347 mod/message.php:538 +msgid "Subject:" msgstr "" -#: mod/admin.php:942 -msgid "Force all links to use SSL" +#: mod/share.php:38 +msgid "link" msgstr "" -#: mod/admin.php:943 -msgid "Self-signed certificate, use SSL for local links only (discouraged)" +#: mod/api.php:76 mod/api.php:102 +msgid "Authorize application connection" msgstr "" -#: mod/admin.php:955 mod/admin.php:1583 mod/admin.php:1831 mod/admin.php:1905 -#: mod/admin.php:2055 mod/settings.php:678 mod/settings.php:788 -#: mod/settings.php:835 mod/settings.php:904 mod/settings.php:996 -#: mod/settings.php:1264 -msgid "Save Settings" +#: mod/api.php:77 +msgid "Return to your app and insert this Securty Code:" msgstr "" -#: mod/admin.php:956 mod/register.php:272 -msgid "Registration" +#: mod/api.php:89 +msgid "Please login to continue." msgstr "" -#: mod/admin.php:957 -msgid "File upload" +#: mod/api.php:104 +msgid "" +"Do you want to authorize this application to access your posts and contacts, " +"and/or create new posts for you?" msgstr "" -#: mod/admin.php:958 -msgid "Policies" +#: mod/api.php:106 mod/profiles.php:648 mod/profiles.php:652 +#: mod/profiles.php:677 mod/register.php:246 mod/settings.php:1163 +#: mod/settings.php:1169 mod/settings.php:1177 mod/settings.php:1181 +#: mod/settings.php:1186 mod/settings.php:1192 mod/settings.php:1198 +#: mod/settings.php:1204 mod/settings.php:1230 mod/settings.php:1231 +#: mod/settings.php:1232 mod/settings.php:1233 mod/settings.php:1234 +#: mod/dfrn_request.php:862 mod/follow.php:110 +msgid "No" msgstr "" -#: mod/admin.php:960 -msgid "Auto Discovered Contact Directory" +#: mod/babel.php:17 +msgid "Source (bbcode) text:" msgstr "" -#: mod/admin.php:961 -msgid "Performance" +#: mod/babel.php:23 +msgid "Source (Diaspora) text to convert to BBcode:" msgstr "" -#: mod/admin.php:962 -msgid "Worker" +#: mod/babel.php:31 +msgid "Source input: " msgstr "" -#: mod/admin.php:963 -msgid "" -"Relocate - WARNING: advanced function. Could make this server unreachable." +#: mod/babel.php:35 +msgid "bb2html (raw HTML): " msgstr "" -#: mod/admin.php:966 -msgid "Site name" +#: mod/babel.php:39 +msgid "bb2html: " msgstr "" -#: mod/admin.php:967 -msgid "Host name" +#: mod/babel.php:43 +msgid "bb2html2bb: " msgstr "" -#: mod/admin.php:968 -msgid "Sender Email" +#: mod/babel.php:47 +msgid "bb2md: " msgstr "" -#: mod/admin.php:968 -msgid "" -"The email address your server shall use to send notification emails from." +#: mod/babel.php:51 +msgid "bb2md2html: " msgstr "" -#: mod/admin.php:969 -msgid "Banner/Logo" +#: mod/babel.php:55 +msgid "bb2dia2bb: " msgstr "" -#: mod/admin.php:970 -msgid "Shortcut icon" +#: mod/babel.php:59 +msgid "bb2md2html2bb: " msgstr "" -#: mod/admin.php:970 -msgid "Link to an icon that will be used for browsers." +#: mod/babel.php:69 +msgid "Source input (Diaspora format): " msgstr "" -#: mod/admin.php:971 -msgid "Touch icon" +#: mod/babel.php:74 +msgid "diaspora2bb: " msgstr "" -#: mod/admin.php:971 -msgid "Link to an icon that will be used for tablets and mobiles." +#: mod/ostatus_subscribe.php:14 +msgid "Subscribing to OStatus contacts" msgstr "" -#: mod/admin.php:972 -msgid "Additional Info" +#: mod/ostatus_subscribe.php:25 +msgid "No contact provided." msgstr "" -#: mod/admin.php:972 -#, php-format -msgid "" -"For public servers: you can add additional information here that will be " -"listed at %s/siteinfo." +#: mod/ostatus_subscribe.php:30 +msgid "Couldn't fetch information for contact." msgstr "" -#: mod/admin.php:973 -msgid "System language" +#: mod/ostatus_subscribe.php:38 +msgid "Couldn't fetch friends for contact." msgstr "" -#: mod/admin.php:974 -msgid "System theme" +#: mod/ostatus_subscribe.php:65 +msgid "success" msgstr "" -#: mod/admin.php:974 -msgid "" -"Default system theme - may be over-ridden by user profiles - change theme settings" +#: mod/ostatus_subscribe.php:67 +msgid "failed" msgstr "" -#: mod/admin.php:975 -msgid "Mobile system theme" +#: mod/ostatus_subscribe.php:69 mod/content.php:792 object/Item.php:245 +msgid "ignored" msgstr "" -#: mod/admin.php:975 -msgid "Theme for mobile devices" +#: mod/dfrn_poll.php:104 mod/dfrn_poll.php:537 +#, php-format +msgid "%1$s welcomes %2$s" msgstr "" -#: mod/admin.php:976 -msgid "SSL link policy" +#: mod/message.php:75 +msgid "Unable to locate contact information." msgstr "" -#: mod/admin.php:976 -msgid "Determines whether generated links should be forced to use SSL" +#: mod/message.php:215 +msgid "Do you really want to delete this message?" msgstr "" -#: mod/admin.php:977 -msgid "Force SSL" +#: mod/message.php:235 +msgid "Message deleted." msgstr "" -#: mod/admin.php:977 -msgid "" -"Force all Non-SSL requests to SSL - Attention: on some systems it could lead " -"to endless loops." +#: mod/message.php:266 +msgid "Conversation removed." msgstr "" -#: mod/admin.php:978 -msgid "Old style 'Share'" +#: mod/message.php:383 +msgid "No messages." msgstr "" -#: mod/admin.php:978 -msgid "Deactivates the bbcode element 'share' for repeating items." +#: mod/message.php:426 +msgid "Message not available." msgstr "" -#: mod/admin.php:979 -msgid "Hide help entry from navigation menu" +#: mod/message.php:503 +msgid "Delete message" msgstr "" -#: mod/admin.php:979 -msgid "" -"Hides the menu entry for the Help pages from the navigation menu. You can " -"still access it calling /help directly." +#: mod/message.php:529 mod/message.php:609 +msgid "Delete conversation" msgstr "" -#: mod/admin.php:980 -msgid "Single user instance" +#: mod/message.php:531 +msgid "" +"No secure communications available. You may be able to " +"respond from the sender's profile page." msgstr "" -#: mod/admin.php:980 -msgid "Make this instance multi-user or single-user for the named user" +#: mod/message.php:535 +msgid "Send Reply" msgstr "" -#: mod/admin.php:981 -msgid "Maximum image size" +#: mod/message.php:579 +#, php-format +msgid "Unknown sender - %s" msgstr "" -#: mod/admin.php:981 -msgid "" -"Maximum size in bytes of uploaded images. Default is 0, which means no " -"limits." +#: mod/message.php:581 +#, php-format +msgid "You and %s" msgstr "" -#: mod/admin.php:982 -msgid "Maximum image length" +#: mod/message.php:583 +#, php-format +msgid "%s and You" msgstr "" -#: mod/admin.php:982 -msgid "" -"Maximum length in pixels of the longest side of uploaded images. Default is " -"-1, which means no limits." +#: mod/message.php:612 +msgid "D, d M Y - g:i A" msgstr "" -#: mod/admin.php:983 -msgid "JPEG image quality" -msgstr "" +#: mod/message.php:615 +#, php-format +msgid "%d message" +msgid_plural "%d messages" +msgstr[0] "" +msgstr[1] "" -#: mod/admin.php:983 -msgid "" -"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is " -"100, which is full quality." +#: mod/manage.php:139 +msgid "Manage Identities and/or Pages" msgstr "" -#: mod/admin.php:985 -msgid "Register policy" +#: mod/manage.php:140 +msgid "" +"Toggle between different identities or community/group pages which share " +"your account details or which you have been granted \"manage\" permissions" msgstr "" -#: mod/admin.php:986 -msgid "Maximum Daily Registrations" +#: mod/manage.php:141 +msgid "Select an identity to manage: " msgstr "" -#: mod/admin.php:986 -msgid "" -"If registration is permitted above, this sets the maximum number of new user " -"registrations to accept per day. If register is set to closed, this setting " -"has no effect." +#: mod/crepair.php:87 +msgid "Contact settings applied." msgstr "" -#: mod/admin.php:987 -msgid "Register text" +#: mod/crepair.php:89 +msgid "Contact update failed." msgstr "" -#: mod/admin.php:987 -msgid "Will be displayed prominently on the registration page." +#: mod/crepair.php:114 mod/fsuggest.php:20 mod/fsuggest.php:92 +#: mod/dfrn_confirm.php:126 +msgid "Contact not found." msgstr "" -#: mod/admin.php:988 -msgid "Accounts abandoned after x days" +#: mod/crepair.php:120 +msgid "" +"WARNING: This is highly advanced and if you enter incorrect " +"information your communications with this contact may stop working." msgstr "" -#: mod/admin.php:988 +#: mod/crepair.php:121 msgid "" -"Will not waste system resources polling external sites for abandonded " -"accounts. Enter 0 for no time limit." +"Please use your browser 'Back' button now if you are " +"uncertain what to do on this page." msgstr "" -#: mod/admin.php:989 -msgid "Allowed friend domains" +#: mod/crepair.php:134 mod/crepair.php:136 +msgid "No mirroring" msgstr "" -#: mod/admin.php:989 -msgid "" -"Comma separated list of domains which are allowed to establish friendships " -"with this site. Wildcards are accepted. Empty to allow any domains" +#: mod/crepair.php:134 +msgid "Mirror as forwarded posting" msgstr "" -#: mod/admin.php:990 -msgid "Allowed email domains" +#: mod/crepair.php:134 mod/crepair.php:136 +msgid "Mirror as my own posting" msgstr "" -#: mod/admin.php:990 -msgid "" -"Comma separated list of domains which are allowed in email addresses for " -"registrations to this site. Wildcards are accepted. Empty to allow any " -"domains" +#: mod/crepair.php:150 +msgid "Return to contact editor" msgstr "" -#: mod/admin.php:991 -msgid "Block public" +#: mod/crepair.php:152 +msgid "Refetch contact data" msgstr "" -#: mod/admin.php:991 -msgid "" -"Check to block public access to all otherwise public personal pages on this " -"site unless you are currently logged in." +#: mod/crepair.php:156 +msgid "Remote Self" msgstr "" -#: mod/admin.php:992 -msgid "Force publish" +#: mod/crepair.php:159 +msgid "Mirror postings from this contact" msgstr "" -#: mod/admin.php:992 +#: mod/crepair.php:161 msgid "" -"Check to force all profiles on this site to be listed in the site directory." +"Mark this contact as remote_self, this will cause friendica to repost new " +"entries from this contact." msgstr "" -#: mod/admin.php:993 -msgid "Global directory URL" +#: mod/crepair.php:165 mod/settings.php:680 mod/settings.php:706 +#: mod/admin.php:1396 mod/admin.php:1409 mod/admin.php:1422 mod/admin.php:1438 +msgid "Name" msgstr "" -#: mod/admin.php:993 -msgid "" -"URL to the global directory. If this is not set, the global directory is " -"completely unavailable to the application." +#: mod/crepair.php:166 +msgid "Account Nickname" msgstr "" -#: mod/admin.php:994 -msgid "Allow threaded items" +#: mod/crepair.php:167 +msgid "@Tagname - overrides Name/Nickname" msgstr "" -#: mod/admin.php:994 -msgid "Allow infinite level threading for items on this site." +#: mod/crepair.php:168 +msgid "Account URL" msgstr "" -#: mod/admin.php:995 -msgid "Private posts by default for new users" +#: mod/crepair.php:169 +msgid "Friend Request URL" msgstr "" -#: mod/admin.php:995 -msgid "" -"Set default post permissions for all new members to the default privacy " -"group rather than public." +#: mod/crepair.php:170 +msgid "Friend Confirm URL" msgstr "" -#: mod/admin.php:996 -msgid "Don't include post content in email notifications" +#: mod/crepair.php:171 +msgid "Notification Endpoint URL" msgstr "" -#: mod/admin.php:996 -msgid "" -"Don't include the content of a post/comment/private message/etc. in the " -"email notifications that are sent out from this site, as a privacy measure." +#: mod/crepair.php:172 +msgid "Poll/Feed URL" msgstr "" -#: mod/admin.php:997 -msgid "Disallow public access to addons listed in the apps menu." +#: mod/crepair.php:173 +msgid "New photo from this URL" msgstr "" -#: mod/admin.php:997 -msgid "" -"Checking this box will restrict addons listed in the apps menu to members " -"only." +#: mod/content.php:119 mod/network.php:469 +msgid "No such group" msgstr "" -#: mod/admin.php:998 -msgid "Don't embed private images in posts" +#: mod/content.php:135 mod/network.php:500 +#, php-format +msgid "Group: %s" msgstr "" -#: mod/admin.php:998 -msgid "" -"Don't replace locally-hosted private photos in posts with an embedded copy " -"of the image. This means that contacts who receive posts containing private " -"photos will have to authenticate and load each image, which may take a while." +#: mod/content.php:325 object/Item.php:95 +msgid "This entry was edited" msgstr "" -#: mod/admin.php:999 -msgid "Allow Users to set remote_self" +#: mod/content.php:621 object/Item.php:429 +#, php-format +msgid "%d comment" +msgid_plural "%d comments" +msgstr[0] "" +msgstr[1] "" + +#: mod/content.php:638 mod/photos.php:1379 object/Item.php:117 +msgid "Private Message" msgstr "" -#: mod/admin.php:999 -msgid "" -"With checking this, every user is allowed to mark every contact as a " -"remote_self in the repair contact dialog. Setting this flag on a contact " -"causes mirroring every posting of that contact in the users stream." +#: mod/content.php:702 mod/photos.php:1567 object/Item.php:263 +msgid "I like this (toggle)" msgstr "" -#: mod/admin.php:1000 -msgid "Block multiple registrations" +#: mod/content.php:702 object/Item.php:263 +msgid "like" msgstr "" -#: mod/admin.php:1000 -msgid "Disallow users to register additional accounts for use as pages." +#: mod/content.php:703 mod/photos.php:1568 object/Item.php:264 +msgid "I don't like this (toggle)" msgstr "" -#: mod/admin.php:1001 -msgid "OpenID support" +#: mod/content.php:703 object/Item.php:264 +msgid "dislike" msgstr "" -#: mod/admin.php:1001 -msgid "OpenID support for registration and logins." +#: mod/content.php:705 object/Item.php:266 +msgid "Share this" msgstr "" -#: mod/admin.php:1002 -msgid "Fullname check" +#: mod/content.php:705 object/Item.php:266 +msgid "share" msgstr "" -#: mod/admin.php:1002 -msgid "" -"Force users to register with a space between firstname and lastname in Full " -"name, as an antispam measure" +#: mod/content.php:725 mod/photos.php:1587 mod/photos.php:1635 +#: mod/photos.php:1721 object/Item.php:717 +msgid "This is you" msgstr "" -#: mod/admin.php:1003 -msgid "UTF-8 Regular expressions" +#: mod/content.php:727 mod/content.php:945 mod/photos.php:1589 +#: mod/photos.php:1637 mod/photos.php:1723 object/Item.php:403 +#: object/Item.php:719 boot.php:971 +msgid "Comment" msgstr "" -#: mod/admin.php:1003 -msgid "Use PHP UTF8 regular expressions" +#: mod/content.php:729 object/Item.php:721 +msgid "Bold" msgstr "" -#: mod/admin.php:1004 -msgid "Community Page Style" +#: mod/content.php:730 object/Item.php:722 +msgid "Italic" msgstr "" -#: mod/admin.php:1004 -msgid "" -"Type of community page to show. 'Global community' shows every public " -"posting from an open distributed network that arrived on this server." +#: mod/content.php:731 object/Item.php:723 +msgid "Underline" msgstr "" -#: mod/admin.php:1005 -msgid "Posts per user on community page" +#: mod/content.php:732 object/Item.php:724 +msgid "Quote" msgstr "" -#: mod/admin.php:1005 -msgid "" -"The maximum number of posts per user on the community page. (Not valid for " -"'Global Community')" +#: mod/content.php:733 object/Item.php:725 +msgid "Code" msgstr "" -#: mod/admin.php:1006 -msgid "Enable OStatus support" +#: mod/content.php:734 object/Item.php:726 +msgid "Image" msgstr "" -#: mod/admin.php:1006 -msgid "" -"Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All " -"communications in OStatus are public, so privacy warnings will be " -"occasionally displayed." +#: mod/content.php:735 object/Item.php:727 +msgid "Link" msgstr "" -#: mod/admin.php:1007 -msgid "OStatus conversation completion interval" +#: mod/content.php:736 object/Item.php:728 +msgid "Video" msgstr "" -#: mod/admin.php:1007 -msgid "" -"How often shall the poller check for new entries in OStatus conversations? " -"This can be a very ressource task." +#: mod/content.php:746 mod/settings.php:740 object/Item.php:122 +#: object/Item.php:124 +msgid "Edit" msgstr "" -#: mod/admin.php:1008 -msgid "Only import OStatus threads from our contacts" +#: mod/content.php:771 object/Item.php:227 +msgid "add star" msgstr "" -#: mod/admin.php:1008 -msgid "" -"Normally we import every content from our OStatus contacts. With this option " -"we only store threads that are started by a contact that is known on our " -"system." +#: mod/content.php:772 object/Item.php:228 +msgid "remove star" msgstr "" -#: mod/admin.php:1009 -msgid "OStatus support can only be enabled if threading is enabled." +#: mod/content.php:773 object/Item.php:229 +msgid "toggle star status" msgstr "" -#: mod/admin.php:1011 -msgid "" -"Diaspora support can't be enabled because Friendica was installed into a sub " -"directory." +#: mod/content.php:776 object/Item.php:232 +msgid "starred" msgstr "" -#: mod/admin.php:1012 -msgid "Enable Diaspora support" +#: mod/content.php:777 mod/content.php:798 object/Item.php:252 +msgid "add tag" msgstr "" -#: mod/admin.php:1012 -msgid "Provide built-in Diaspora network compatibility." +#: mod/content.php:787 object/Item.php:240 +msgid "ignore thread" msgstr "" -#: mod/admin.php:1013 -msgid "Only allow Friendica contacts" +#: mod/content.php:788 object/Item.php:241 +msgid "unignore thread" msgstr "" -#: mod/admin.php:1013 -msgid "" -"All contacts must use Friendica protocols. All other built-in communication " -"protocols disabled." +#: mod/content.php:789 object/Item.php:242 +msgid "toggle ignore status" msgstr "" -#: mod/admin.php:1014 -msgid "Verify SSL" +#: mod/content.php:803 object/Item.php:137 +msgid "save to folder" msgstr "" -#: mod/admin.php:1014 -msgid "" -"If you wish, you can turn on strict certificate checking. This will mean you " -"cannot connect (at all) to self-signed SSL sites." +#: mod/content.php:848 object/Item.php:201 +msgid "I will attend" msgstr "" -#: mod/admin.php:1015 -msgid "Proxy user" +#: mod/content.php:848 object/Item.php:201 +msgid "I will not attend" msgstr "" -#: mod/admin.php:1016 -msgid "Proxy URL" +#: mod/content.php:848 object/Item.php:201 +msgid "I might attend" msgstr "" -#: mod/admin.php:1017 -msgid "Network timeout" +#: mod/content.php:912 object/Item.php:369 +msgid "to" msgstr "" -#: mod/admin.php:1017 -msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." +#: mod/content.php:913 object/Item.php:371 +msgid "Wall-to-Wall" msgstr "" -#: mod/admin.php:1018 -msgid "Delivery interval" +#: mod/content.php:914 object/Item.php:372 +msgid "via Wall-To-Wall:" msgstr "" -#: mod/admin.php:1018 -msgid "" -"Delay background delivery processes by this many seconds to reduce system " -"load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 " -"for large dedicated servers." +#: mod/fsuggest.php:63 +msgid "Friend suggestion sent." msgstr "" -#: mod/admin.php:1019 -msgid "Poll interval" +#: mod/fsuggest.php:97 +msgid "Suggest Friends" msgstr "" -#: mod/admin.php:1019 -msgid "" -"Delay background polling processes by this many seconds to reduce system " -"load. If 0, use delivery interval." +#: mod/fsuggest.php:99 +#, php-format +msgid "Suggest a friend for %s" msgstr "" -#: mod/admin.php:1020 -msgid "Maximum Load Average" +#: mod/mood.php:133 +msgid "Mood" msgstr "" -#: mod/admin.php:1020 -msgid "" -"Maximum system load before delivery and poll processes are deferred - " -"default 50." +#: mod/mood.php:134 +msgid "Set your current mood and tell your friends" msgstr "" -#: mod/admin.php:1021 -msgid "Maximum Load Average (Frontend)" +#: mod/poke.php:192 +msgid "Poke/Prod" msgstr "" -#: mod/admin.php:1021 -msgid "Maximum system load before the frontend quits service - default 50." +#: mod/poke.php:193 +msgid "poke, prod or do other things to somebody" msgstr "" -#: mod/admin.php:1022 -msgid "Maximum table size for optimization" +#: mod/poke.php:194 +msgid "Recipient" msgstr "" -#: mod/admin.php:1022 -msgid "" -"Maximum table size (in MB) for the automatic optimization - default 100 MB. " -"Enter -1 to disable it." +#: mod/poke.php:195 +msgid "Choose what you wish to do to recipient" msgstr "" -#: mod/admin.php:1023 -msgid "Minimum level of fragmentation" +#: mod/poke.php:198 +msgid "Make this post private" msgstr "" -#: mod/admin.php:1023 -msgid "" -"Minimum fragmenation level to start the automatic optimization - default " -"value is 30%." +#: mod/profile_photo.php:44 +msgid "Image uploaded but image cropping failed." msgstr "" -#: mod/admin.php:1025 -msgid "Periodical check of global contacts" +#: mod/profile_photo.php:77 mod/profile_photo.php:84 mod/profile_photo.php:91 +#: mod/profile_photo.php:314 +#, php-format +msgid "Image size reduction [%s] failed." msgstr "" -#: mod/admin.php:1025 +#: mod/profile_photo.php:124 msgid "" -"If enabled, the global contacts are checked periodically for missing or " -"outdated data and the vitality of the contacts and servers." +"Shift-reload the page or clear browser cache if the new photo does not " +"display immediately." msgstr "" -#: mod/admin.php:1026 -msgid "Days between requery" +#: mod/profile_photo.php:134 +msgid "Unable to process image" msgstr "" -#: mod/admin.php:1026 -msgid "Number of days after which a server is requeried for his contacts." +#: mod/profile_photo.php:150 mod/photos.php:786 mod/wall_upload.php:151 +#, php-format +msgid "Image exceeds size limit of %s" msgstr "" -#: mod/admin.php:1027 -msgid "Discover contacts from other servers" +#: mod/profile_photo.php:159 mod/photos.php:826 mod/wall_upload.php:188 +msgid "Unable to process image." msgstr "" -#: mod/admin.php:1027 -msgid "" -"Periodically query other servers for contacts. You can choose between " -"'users': the users on the remote system, 'Global Contacts': active contacts " -"that are known on the system. The fallback is meant for Redmatrix servers " -"and older friendica servers, where global contacts weren't available. The " -"fallback increases the server load, so the recommened setting is 'Users, " -"Global Contacts'." +#: mod/profile_photo.php:248 +msgid "Upload File:" msgstr "" -#: mod/admin.php:1028 -msgid "Timeframe for fetching global contacts" +#: mod/profile_photo.php:249 +msgid "Select a profile:" msgstr "" -#: mod/admin.php:1028 -msgid "" -"When the discovery is activated, this value defines the timeframe for the " -"activity of the global contacts that are fetched from other servers." +#: mod/profile_photo.php:251 +msgid "Upload" msgstr "" -#: mod/admin.php:1029 -msgid "Search the local directory" +#: mod/profile_photo.php:254 +msgid "or" msgstr "" -#: mod/admin.php:1029 -msgid "" -"Search the local directory instead of the global directory. When searching " -"locally, every search will be executed on the global directory in the " -"background. This improves the search results when the search is repeated." +#: mod/profile_photo.php:254 +msgid "skip this step" msgstr "" -#: mod/admin.php:1031 -msgid "Publish server information" +#: mod/profile_photo.php:254 +msgid "select a photo from your photo albums" msgstr "" -#: mod/admin.php:1031 -msgid "" -"If enabled, general server and usage data will be published. The data " -"contains the name and version of the server, number of users with public " -"profiles, number of posts and the activated protocols and connectors. See the-federation.info for details." +#: mod/profile_photo.php:268 +msgid "Crop Image" msgstr "" -#: mod/admin.php:1033 -msgid "Use MySQL full text engine" +#: mod/profile_photo.php:269 +msgid "Please adjust the image cropping for optimum viewing." msgstr "" -#: mod/admin.php:1033 -msgid "" -"Activates the full text engine. Speeds up search - but can only search for " -"four and more characters." +#: mod/profile_photo.php:271 +msgid "Done Editing" msgstr "" -#: mod/admin.php:1034 -msgid "Suppress Language" +#: mod/profile_photo.php:305 +msgid "Image uploaded successfully." msgstr "" -#: mod/admin.php:1034 -msgid "Suppress language information in meta information about a posting." +#: mod/profile_photo.php:307 mod/photos.php:853 mod/wall_upload.php:221 +msgid "Image upload failed." msgstr "" -#: mod/admin.php:1035 -msgid "Suppress Tags" +#: mod/regmod.php:55 +msgid "Account approved." msgstr "" -#: mod/admin.php:1035 -msgid "Suppress showing a list of hashtags at the end of the posting." +#: mod/regmod.php:92 +#, php-format +msgid "Registration revoked for %s" msgstr "" -#: mod/admin.php:1036 -msgid "Path to item cache" +#: mod/regmod.php:104 +msgid "Please login." msgstr "" -#: mod/admin.php:1036 -msgid "The item caches buffers generated bbcode and external images." +#: mod/notifications.php:35 +msgid "Invalid request identifier." msgstr "" -#: mod/admin.php:1037 -msgid "Cache duration in seconds" +#: mod/notifications.php:44 mod/notifications.php:180 +#: mod/notifications.php:252 +msgid "Discard" msgstr "" -#: mod/admin.php:1037 -msgid "" -"How long should the cache files be hold? Default value is 86400 seconds (One " -"day). To disable the item cache, set the value to -1." +#: mod/notifications.php:60 mod/notifications.php:179 +#: mod/notifications.php:251 mod/contacts.php:606 mod/contacts.php:806 +#: mod/contacts.php:991 +msgid "Ignore" msgstr "" -#: mod/admin.php:1038 -msgid "Maximum numbers of comments per post" +#: mod/notifications.php:105 +msgid "Network Notifications" msgstr "" -#: mod/admin.php:1038 -msgid "How much comments should be shown for each post? Default value is 100." +#: mod/notifications.php:117 +msgid "Personal Notifications" msgstr "" -#: mod/admin.php:1039 -msgid "Path for lock file" +#: mod/notifications.php:123 +msgid "Home Notifications" msgstr "" -#: mod/admin.php:1039 -msgid "" -"The lock file is used to avoid multiple pollers at one time. Only define a " -"folder here." +#: mod/notifications.php:152 +msgid "Show Ignored Requests" msgstr "" -#: mod/admin.php:1040 -msgid "Temp path" +#: mod/notifications.php:152 +msgid "Hide Ignored Requests" msgstr "" -#: mod/admin.php:1040 -msgid "" -"If you have a restricted system where the webserver can't access the system " -"temp path, enter another path here." +#: mod/notifications.php:164 mod/notifications.php:222 +msgid "Notification type: " msgstr "" -#: mod/admin.php:1041 -msgid "Base path to installation" +#: mod/notifications.php:167 +#, php-format +msgid "suggested by %s" msgstr "" -#: mod/admin.php:1041 -msgid "" -"If the system cannot detect the correct path to your installation, enter the " -"correct path here. This setting should only be set if you are using a " -"restricted system and symbolic links to your webroot." +#: mod/notifications.php:172 mod/notifications.php:239 mod/contacts.php:613 +msgid "Hide this contact from others" msgstr "" -#: mod/admin.php:1042 -msgid "Disable picture proxy" +#: mod/notifications.php:173 mod/notifications.php:240 +msgid "Post a new friend activity" msgstr "" -#: mod/admin.php:1042 -msgid "" -"The picture proxy increases performance and privacy. It shouldn't be used on " -"systems with very low bandwith." +#: mod/notifications.php:173 mod/notifications.php:240 +msgid "if applicable" msgstr "" -#: mod/admin.php:1043 -msgid "Enable old style pager" +#: mod/notifications.php:176 mod/notifications.php:249 mod/admin.php:1412 +msgid "Approve" msgstr "" -#: mod/admin.php:1043 -msgid "" -"The old style pager has page numbers but slows down massively the page speed." +#: mod/notifications.php:195 +msgid "Claims to be known to you: " msgstr "" -#: mod/admin.php:1044 -msgid "Only search in tags" +#: mod/notifications.php:196 +msgid "yes" msgstr "" -#: mod/admin.php:1044 -msgid "On large systems the text search can slow down the system extremely." +#: mod/notifications.php:196 +msgid "no" msgstr "" -#: mod/admin.php:1046 -msgid "New base url" +#: mod/notifications.php:197 +msgid "" +"Shall your connection be bidirectional or not? \"Friend\" implies that you " +"allow to read and you subscribe to their posts. \"Fan/Admirer\" means that " +"you allow to read but you do not want to read theirs. Approve as: " msgstr "" -#: mod/admin.php:1046 +#: mod/notifications.php:200 msgid "" -"Change base url for this server. Sends relocate message to all DFRN contacts " -"of all users." +"Shall your connection be bidirectional or not? \"Friend\" implies that you " +"allow to read and you subscribe to their posts. \"Sharer\" means that you " +"allow to read but you do not want to read theirs. Approve as: " msgstr "" -#: mod/admin.php:1048 -msgid "RINO Encryption" +#: mod/notifications.php:209 +msgid "Friend" msgstr "" -#: mod/admin.php:1048 -msgid "Encryption layer between nodes." +#: mod/notifications.php:210 +msgid "Sharer" msgstr "" -#: mod/admin.php:1049 -msgid "Embedly API key" +#: mod/notifications.php:210 +msgid "Fan/Admirer" msgstr "" -#: mod/admin.php:1049 -msgid "" -"Embedly is used to fetch additional data for " -"web pages. This is an optional parameter." +#: mod/notifications.php:243 mod/contacts.php:624 mod/follow.php:126 +msgid "Profile URL" msgstr "" -#: mod/admin.php:1051 -msgid "Enable 'worker' background processing" +#: mod/notifications.php:260 +msgid "No introductions." msgstr "" -#: mod/admin.php:1051 -msgid "" -"The worker background processing limits the number of parallel background " -"jobs to a maximum number and respects the system load." +#: mod/notifications.php:299 +msgid "Show unread" msgstr "" -#: mod/admin.php:1052 -msgid "Maximum number of parallel workers" +#: mod/notifications.php:299 +msgid "Show all" msgstr "" -#: mod/admin.php:1052 -msgid "" -"On shared hosters set this to 2. On larger systems, values of 10 are great. " -"Default value is 4." +#: mod/notifications.php:305 +#, php-format +msgid "No more %s notifications." msgstr "" -#: mod/admin.php:1053 -msgid "Don't use 'proc_open' with the worker" +#: mod/profiles.php:19 mod/profiles.php:134 mod/profiles.php:180 +#: mod/profiles.php:617 mod/dfrn_confirm.php:70 +msgid "Profile not found." msgstr "" -#: mod/admin.php:1053 -msgid "" -"Enable this if your system doesn't allow the use of 'proc_open'. This can " -"happen on shared hosters. If this is enabled you should increase the " -"frequency of poller calls in your crontab." +#: mod/profiles.php:38 +msgid "Profile deleted." msgstr "" -#: mod/admin.php:1054 -msgid "Enable fastlane" +#: mod/profiles.php:56 mod/profiles.php:90 +msgid "Profile-" msgstr "" -#: mod/admin.php:1054 -msgid "" -"When enabed, the fastlane mechanism starts an additional worker if processes " -"with higher priority are blocked by processes of lower priority." +#: mod/profiles.php:75 mod/profiles.php:118 +msgid "New profile created." msgstr "" -#: mod/admin.php:1055 -msgid "Enable frontend worker" +#: mod/profiles.php:96 +msgid "Profile unavailable to clone." msgstr "" -#: mod/admin.php:1055 -msgid "" -"When enabled the Worker process is triggered when backend access is " -"performed (e.g. messages being delivered). On smaller sites you might want " -"to call yourdomain.tld/worker on a regular basis via an external cron job. " -"You should only enable this option if you cannot utilize cron/scheduled jobs " -"on your server. The worker background process needs to be activated for this." +#: mod/profiles.php:190 +msgid "Profile Name is required." msgstr "" -#: mod/admin.php:1084 -msgid "Update has been marked successful" +#: mod/profiles.php:338 +msgid "Marital Status" msgstr "" -#: mod/admin.php:1092 -#, php-format -msgid "Database structure update %s was successfully applied." +#: mod/profiles.php:342 +msgid "Romantic Partner" msgstr "" -#: mod/admin.php:1095 -#, php-format -msgid "Executing of database structure update %s failed with error: %s" +#: mod/profiles.php:354 +msgid "Work/Employment" msgstr "" -#: mod/admin.php:1107 -#, php-format -msgid "Executing %s failed with error: %s" +#: mod/profiles.php:357 +msgid "Religion" msgstr "" -#: mod/admin.php:1110 -#, php-format -msgid "Update %s was successfully applied." +#: mod/profiles.php:361 +msgid "Political Views" msgstr "" -#: mod/admin.php:1114 -#, php-format -msgid "Update %s did not return a status. Unknown if it succeeded." +#: mod/profiles.php:365 +msgid "Gender" msgstr "" -#: mod/admin.php:1116 -#, php-format -msgid "There was no additional update function %s that needed to be called." +#: mod/profiles.php:369 +msgid "Sexual Preference" msgstr "" -#: mod/admin.php:1135 -msgid "No failed updates." +#: mod/profiles.php:373 +msgid "XMPP" msgstr "" -#: mod/admin.php:1136 -msgid "Check database structure" +#: mod/profiles.php:377 +msgid "Homepage" msgstr "" -#: mod/admin.php:1141 -msgid "Failed Updates" +#: mod/profiles.php:381 mod/profiles.php:702 +msgid "Interests" msgstr "" -#: mod/admin.php:1142 -msgid "" -"This does not include updates prior to 1139, which did not return a status." +#: mod/profiles.php:385 +msgid "Address" msgstr "" -#: mod/admin.php:1143 -msgid "Mark success (if update was manually applied)" +#: mod/profiles.php:392 mod/profiles.php:698 +msgid "Location" msgstr "" -#: mod/admin.php:1144 -msgid "Attempt to execute this update step automatically" +#: mod/profiles.php:477 +msgid "Profile updated." msgstr "" -#: mod/admin.php:1178 -#, php-format -msgid "" -"\n" -"\t\t\tDear %1$s,\n" -"\t\t\t\tthe administrator of %2$s has set up an account for you." +#: mod/profiles.php:564 +msgid " and " msgstr "" -#: mod/admin.php:1181 -#, php-format -msgid "" -"\n" -"\t\t\tThe login details are as follows:\n" -"\n" -"\t\t\tSite Location:\t%1$s\n" -"\t\t\tLogin Name:\t\t%2$s\n" -"\t\t\tPassword:\t\t%3$s\n" -"\n" -"\t\t\tYou may change your password from your account \"Settings\" page after " -"logging\n" -"\t\t\tin.\n" -"\n" -"\t\t\tPlease take a few moments to review the other account settings on that " -"page.\n" -"\n" -"\t\t\tYou may also wish to add some basic information to your default " -"profile\n" -"\t\t\t(on the \"Profiles\" page) so that other people can easily find you.\n" -"\n" -"\t\t\tWe recommend setting your full name, adding a profile photo,\n" -"\t\t\tadding some profile \"keywords\" (very useful in making new friends) - " -"and\n" -"\t\t\tperhaps what country you live in; if you do not wish to be more " -"specific\n" -"\t\t\tthan that.\n" -"\n" -"\t\t\tWe fully respect your right to privacy, and none of these items are " -"necessary.\n" -"\t\t\tIf you are new and do not know anybody here, they may help\n" -"\t\t\tyou to make some new and interesting friends.\n" -"\n" -"\t\t\tThank you and welcome to %4$s." +#: mod/profiles.php:572 +msgid "public profile" msgstr "" -#: mod/admin.php:1225 -#, php-format -msgid "%s user blocked/unblocked" -msgid_plural "%s users blocked/unblocked" -msgstr[0] "" -msgstr[1] "" - -#: mod/admin.php:1232 -#, php-format -msgid "%s user deleted" -msgid_plural "%s users deleted" -msgstr[0] "" -msgstr[1] "" - -#: mod/admin.php:1279 +#: mod/profiles.php:575 #, php-format -msgid "User '%s' deleted" +msgid "%1$s changed %2$s to “%3$s”" msgstr "" -#: mod/admin.php:1287 +#: mod/profiles.php:576 #, php-format -msgid "User '%s' unblocked" +msgid " - Visit %1$s's %2$s" msgstr "" -#: mod/admin.php:1287 +#: mod/profiles.php:579 #, php-format -msgid "User '%s' blocked" +msgid "%1$s has an updated %2$s, changing %3$s." msgstr "" -#: mod/admin.php:1396 mod/admin.php:1422 -msgid "Register date" +#: mod/profiles.php:645 +msgid "Hide contacts and friends:" msgstr "" -#: mod/admin.php:1396 mod/admin.php:1422 -msgid "Last login" +#: mod/profiles.php:650 +msgid "Hide your contact/friend list from viewers of this profile?" msgstr "" -#: mod/admin.php:1396 mod/admin.php:1422 -msgid "Last item" +#: mod/profiles.php:674 +msgid "Show more profile fields:" msgstr "" -#: mod/admin.php:1396 mod/settings.php:43 -msgid "Account" +#: mod/profiles.php:686 +msgid "Profile Actions" msgstr "" -#: mod/admin.php:1405 -msgid "Add User" +#: mod/profiles.php:687 +msgid "Edit Profile Details" msgstr "" -#: mod/admin.php:1406 -msgid "select all" -msgstr "" - -#: mod/admin.php:1407 -msgid "User registrations waiting for confirm" -msgstr "" - -#: mod/admin.php:1408 -msgid "User waiting for permanent deletion" +#: mod/profiles.php:689 +msgid "Change Profile Photo" msgstr "" -#: mod/admin.php:1409 -msgid "Request date" +#: mod/profiles.php:690 +msgid "View this profile" msgstr "" -#: mod/admin.php:1410 -msgid "No registrations." +#: mod/profiles.php:692 +msgid "Create a new profile using these settings" msgstr "" -#: mod/admin.php:1411 -msgid "Note from the user" +#: mod/profiles.php:693 +msgid "Clone this profile" msgstr "" -#: mod/admin.php:1413 -msgid "Deny" +#: mod/profiles.php:694 +msgid "Delete this profile" msgstr "" -#: mod/admin.php:1415 mod/contacts.php:605 mod/contacts.php:805 -#: mod/contacts.php:992 -msgid "Block" +#: mod/profiles.php:696 +msgid "Basic information" msgstr "" -#: mod/admin.php:1416 mod/contacts.php:605 mod/contacts.php:805 -#: mod/contacts.php:992 -msgid "Unblock" +#: mod/profiles.php:697 +msgid "Profile picture" msgstr "" -#: mod/admin.php:1417 -msgid "Site admin" +#: mod/profiles.php:699 +msgid "Preferences" msgstr "" -#: mod/admin.php:1418 -msgid "Account expired" +#: mod/profiles.php:700 +msgid "Status information" msgstr "" -#: mod/admin.php:1421 -msgid "New User" +#: mod/profiles.php:701 +msgid "Additional information" msgstr "" -#: mod/admin.php:1422 -msgid "Deleted since" +#: mod/profiles.php:704 +msgid "Relation" msgstr "" -#: mod/admin.php:1427 -msgid "" -"Selected users will be deleted!\\n\\nEverything these users had posted on " -"this site will be permanently deleted!\\n\\nAre you sure?" +#: mod/profiles.php:708 +msgid "Your Gender:" msgstr "" -#: mod/admin.php:1428 -msgid "" -"The user {0} will be deleted!\\n\\nEverything this user has posted on this " -"site will be permanently deleted!\\n\\nAre you sure?" +#: mod/profiles.php:709 +msgid " Marital Status:" msgstr "" -#: mod/admin.php:1438 -msgid "Name of the new user." +#: mod/profiles.php:711 +msgid "Example: fishing photography software" msgstr "" -#: mod/admin.php:1439 -msgid "Nickname" +#: mod/profiles.php:716 +msgid "Profile Name:" msgstr "" -#: mod/admin.php:1439 -msgid "Nickname of the new user." +#: mod/profiles.php:716 mod/events.php:484 mod/events.php:496 +msgid "Required" msgstr "" -#: mod/admin.php:1440 -msgid "Email address of the new user." +#: mod/profiles.php:718 +msgid "" +"This is your public profile.
It may " +"be visible to anybody using the internet." msgstr "" -#: mod/admin.php:1483 -#, php-format -msgid "Plugin %s disabled." +#: mod/profiles.php:719 +msgid "Your Full Name:" msgstr "" -#: mod/admin.php:1487 -#, php-format -msgid "Plugin %s enabled." +#: mod/profiles.php:720 +msgid "Title/Description:" msgstr "" -#: mod/admin.php:1498 mod/admin.php:1734 -msgid "Disable" +#: mod/profiles.php:723 +msgid "Street Address:" msgstr "" -#: mod/admin.php:1500 mod/admin.php:1736 -msgid "Enable" +#: mod/profiles.php:724 +msgid "Locality/City:" msgstr "" -#: mod/admin.php:1523 mod/admin.php:1781 -msgid "Toggle" +#: mod/profiles.php:725 +msgid "Region/State:" msgstr "" -#: mod/admin.php:1531 mod/admin.php:1790 -msgid "Author: " +#: mod/profiles.php:726 +msgid "Postal/Zip Code:" msgstr "" -#: mod/admin.php:1532 mod/admin.php:1791 -msgid "Maintainer: " +#: mod/profiles.php:727 +msgid "Country:" msgstr "" -#: mod/admin.php:1584 -msgid "Reload active plugins" +#: mod/profiles.php:731 +msgid "Who: (if applicable)" msgstr "" -#: mod/admin.php:1589 -#, php-format -msgid "" -"There are currently no plugins available on your node. You can find the " -"official plugin repository at %1$s and might find other interesting plugins " -"in the open plugin registry at %2$s" +#: mod/profiles.php:731 +msgid "Examples: cathy123, Cathy Williams, cathy@example.com" msgstr "" -#: mod/admin.php:1694 -msgid "No themes found." +#: mod/profiles.php:732 +msgid "Since [date]:" msgstr "" -#: mod/admin.php:1772 -msgid "Screenshot" +#: mod/profiles.php:734 +msgid "Tell us about yourself..." msgstr "" -#: mod/admin.php:1832 -msgid "Reload active themes" +#: mod/profiles.php:735 +msgid "XMPP (Jabber) address:" msgstr "" -#: mod/admin.php:1837 -#, php-format -msgid "No themes found on the system. They should be paced in %1$s" +#: mod/profiles.php:735 +msgid "" +"The XMPP address will be propagated to your contacts so that they can follow " +"you." msgstr "" -#: mod/admin.php:1838 -msgid "[Experimental]" +#: mod/profiles.php:736 +msgid "Homepage URL:" msgstr "" -#: mod/admin.php:1839 -msgid "[Unsupported]" +#: mod/profiles.php:739 +msgid "Religious Views:" msgstr "" -#: mod/admin.php:1863 -msgid "Log settings updated." +#: mod/profiles.php:740 +msgid "Public Keywords:" msgstr "" -#: mod/admin.php:1895 -msgid "PHP log currently enabled." +#: mod/profiles.php:740 +msgid "(Used for suggesting potential friends, can be seen by others)" msgstr "" -#: mod/admin.php:1897 -msgid "PHP log currently disabled." +#: mod/profiles.php:741 +msgid "Private Keywords:" msgstr "" -#: mod/admin.php:1906 -msgid "Clear" +#: mod/profiles.php:741 +msgid "(Used for searching profiles, never shown to others)" msgstr "" -#: mod/admin.php:1911 -msgid "Enable Debugging" +#: mod/profiles.php:744 +msgid "Musical interests" msgstr "" -#: mod/admin.php:1912 -msgid "Log file" +#: mod/profiles.php:745 +msgid "Books, literature" msgstr "" -#: mod/admin.php:1912 -msgid "" -"Must be writable by web server. Relative to your Friendica top-level " -"directory." +#: mod/profiles.php:746 +msgid "Television" msgstr "" -#: mod/admin.php:1913 -msgid "Log level" +#: mod/profiles.php:747 +msgid "Film/dance/culture/entertainment" msgstr "" -#: mod/admin.php:1916 -msgid "PHP logging" +#: mod/profiles.php:748 +msgid "Hobbies/Interests" msgstr "" -#: mod/admin.php:1917 -msgid "" -"To enable logging of PHP errors and warnings you can add the following to " -"the .htconfig.php file of your installation. The filename set in the " -"'error_log' line is relative to the friendica top-level directory and must " -"be writeable by the web server. The option '1' for 'log_errors' and " -"'display_errors' is to enable these options, set to '0' to disable them." +#: mod/profiles.php:749 +msgid "Love/romance" msgstr "" -#: mod/admin.php:2044 mod/admin.php:2045 mod/settings.php:778 -msgid "Off" +#: mod/profiles.php:750 +msgid "Work/employment" msgstr "" -#: mod/admin.php:2044 mod/admin.php:2045 mod/settings.php:778 -msgid "On" +#: mod/profiles.php:751 +msgid "School/education" msgstr "" -#: mod/admin.php:2045 -#, php-format -msgid "Lock feature %s" +#: mod/profiles.php:752 +msgid "Contact information and Social Networks" msgstr "" -#: mod/admin.php:2053 -msgid "Manage Additional Features" +#: mod/profiles.php:794 +msgid "Edit/Manage Profiles" msgstr "" -#: mod/wall_attach.php:94 -msgid "Sorry, maybe your upload is bigger than the PHP configuration allows" +#: mod/allfriends.php:43 +msgid "No friends to display." msgstr "" -#: mod/wall_attach.php:94 -msgid "Or - did you try to upload an empty file?" +#: mod/cal.php:149 mod/display.php:328 mod/profile.php:155 +msgid "Access to this profile has been restricted." msgstr "" -#: mod/wall_attach.php:105 -#, php-format -msgid "File exceeds size limit of %s" +#: mod/cal.php:276 mod/events.php:380 +msgid "View" msgstr "" -#: mod/wall_attach.php:156 mod/wall_attach.php:172 -msgid "File upload failed." +#: mod/cal.php:277 mod/events.php:382 +msgid "Previous" msgstr "" -#: mod/allfriends.php:43 -msgid "No friends to display." +#: mod/cal.php:278 mod/events.php:383 mod/install.php:231 +msgid "Next" msgstr "" -#: mod/cal.php:149 mod/display.php:328 mod/profile.php:155 -msgid "Access to this profile has been restricted." +#: mod/cal.php:287 mod/events.php:392 +msgid "list" msgstr "" #: mod/cal.php:297 @@ -5568,3148 +5033,3649 @@ msgstr "" msgid "calendar" msgstr "" -#: mod/content.php:119 mod/network.php:469 -msgid "No such group" +#: mod/common.php:86 +msgid "No contacts in common." msgstr "" -#: mod/content.php:130 mod/network.php:496 mod/group.php:193 -msgid "Group is empty" +#: mod/common.php:134 mod/contacts.php:863 +msgid "Common Friends" msgstr "" -#: mod/content.php:135 mod/network.php:500 -#, php-format -msgid "Group: %s" +#: mod/community.php:27 +msgid "Not available." msgstr "" -#: mod/content.php:325 object/Item.php:95 -msgid "This entry was edited" +#: mod/directory.php:197 view/theme/vier/theme.php:201 +msgid "Global Directory" msgstr "" -#: mod/content.php:621 object/Item.php:429 -#, php-format -msgid "%d comment" -msgid_plural "%d comments" -msgstr[0] "" -msgstr[1] "" - -#: mod/content.php:638 mod/photos.php:1379 object/Item.php:117 -msgid "Private Message" +#: mod/directory.php:199 +msgid "Find on this site" msgstr "" -#: mod/content.php:702 mod/photos.php:1567 object/Item.php:263 -msgid "I like this (toggle)" +#: mod/directory.php:201 +msgid "Results for:" msgstr "" -#: mod/content.php:702 object/Item.php:263 -msgid "like" +#: mod/directory.php:203 +msgid "Site Directory" msgstr "" -#: mod/content.php:703 mod/photos.php:1568 object/Item.php:264 -msgid "I don't like this (toggle)" +#: mod/directory.php:210 +msgid "No entries (some entries may be hidden)." msgstr "" -#: mod/content.php:703 object/Item.php:264 -msgid "dislike" +#: mod/dirfind.php:36 +#, php-format +msgid "People Search - %s" msgstr "" -#: mod/content.php:705 object/Item.php:266 -msgid "Share this" +#: mod/dirfind.php:47 +#, php-format +msgid "Forum Search - %s" msgstr "" -#: mod/content.php:705 object/Item.php:266 -msgid "share" +#: mod/dirfind.php:240 mod/match.php:107 +msgid "No matches" msgstr "" -#: mod/content.php:725 mod/photos.php:1587 mod/photos.php:1635 -#: mod/photos.php:1721 object/Item.php:717 -msgid "This is you" +#: mod/display.php:473 +msgid "Item has been removed." msgstr "" -#: mod/content.php:729 object/Item.php:721 -msgid "Bold" +#: mod/events.php:95 mod/events.php:97 +msgid "Event can not end before it has started." msgstr "" -#: mod/content.php:730 object/Item.php:722 -msgid "Italic" +#: mod/events.php:104 mod/events.php:106 +msgid "Event title and start time are required." msgstr "" -#: mod/content.php:731 object/Item.php:723 -msgid "Underline" +#: mod/events.php:381 +msgid "Create New Event" msgstr "" -#: mod/content.php:732 object/Item.php:724 -msgid "Quote" +#: mod/events.php:482 +msgid "Event details" msgstr "" -#: mod/content.php:733 object/Item.php:725 -msgid "Code" +#: mod/events.php:483 +msgid "Starting date and Title are required." msgstr "" -#: mod/content.php:734 object/Item.php:726 -msgid "Image" +#: mod/events.php:484 mod/events.php:485 +msgid "Event Starts:" msgstr "" -#: mod/content.php:735 object/Item.php:727 -msgid "Link" +#: mod/events.php:486 mod/events.php:502 +msgid "Finish date/time is not known or not relevant" msgstr "" -#: mod/content.php:736 object/Item.php:728 -msgid "Video" +#: mod/events.php:488 mod/events.php:489 +msgid "Event Finishes:" msgstr "" -#: mod/content.php:746 mod/settings.php:740 object/Item.php:122 -#: object/Item.php:124 -msgid "Edit" +#: mod/events.php:490 mod/events.php:503 +msgid "Adjust for viewer timezone" msgstr "" -#: mod/content.php:771 object/Item.php:227 -msgid "add star" +#: mod/events.php:492 +msgid "Description:" msgstr "" -#: mod/content.php:772 object/Item.php:228 -msgid "remove star" +#: mod/events.php:496 mod/events.php:498 +msgid "Title:" msgstr "" -#: mod/content.php:773 object/Item.php:229 -msgid "toggle star status" +#: mod/events.php:499 mod/events.php:500 +msgid "Share this event" msgstr "" -#: mod/content.php:776 object/Item.php:232 -msgid "starred" +#: mod/maintenance.php:9 +msgid "System down for maintenance" msgstr "" -#: mod/content.php:777 mod/content.php:798 object/Item.php:252 -msgid "add tag" +#: mod/match.php:33 +msgid "No keywords to match. Please add keywords to your default profile." msgstr "" -#: mod/content.php:787 object/Item.php:240 -msgid "ignore thread" +#: mod/match.php:86 +msgid "is interested in:" msgstr "" -#: mod/content.php:788 object/Item.php:241 -msgid "unignore thread" +#: mod/match.php:100 +msgid "Profile Match" msgstr "" -#: mod/content.php:789 object/Item.php:242 -msgid "toggle ignore status" +#: mod/profile.php:179 +msgid "Tips for New Members" msgstr "" -#: mod/content.php:792 mod/ostatus_subscribe.php:69 object/Item.php:245 -msgid "ignored" +#: mod/suggest.php:27 +msgid "Do you really want to delete this suggestion?" msgstr "" -#: mod/content.php:803 object/Item.php:137 -msgid "save to folder" +#: mod/suggest.php:71 +msgid "" +"No suggestions available. If this is a new site, please try again in 24 " +"hours." msgstr "" -#: mod/content.php:848 object/Item.php:201 -msgid "I will attend" +#: mod/suggest.php:84 mod/suggest.php:104 +msgid "Ignore/Hide" msgstr "" -#: mod/content.php:848 object/Item.php:201 -msgid "I will not attend" +#: mod/update_community.php:19 mod/update_display.php:23 +#: mod/update_network.php:27 mod/update_notes.php:36 mod/update_profile.php:35 +msgid "[Embedded content - reload page to view]" msgstr "" -#: mod/content.php:848 object/Item.php:201 -msgid "I might attend" +#: mod/photos.php:88 mod/photos.php:1856 +msgid "Recent Photos" msgstr "" -#: mod/content.php:912 object/Item.php:369 -msgid "to" +#: mod/photos.php:91 mod/photos.php:1283 mod/photos.php:1858 +msgid "Upload New Photos" msgstr "" -#: mod/content.php:913 object/Item.php:371 -msgid "Wall-to-Wall" +#: mod/photos.php:105 mod/settings.php:36 +msgid "everybody" msgstr "" -#: mod/content.php:914 object/Item.php:372 -msgid "via Wall-To-Wall:" +#: mod/photos.php:169 +msgid "Contact information unavailable" msgstr "" -#: mod/repair_ostatus.php:14 -msgid "Resubscribing to OStatus contacts" +#: mod/photos.php:190 +msgid "Album not found." msgstr "" -#: mod/repair_ostatus.php:30 -msgid "Error" +#: mod/photos.php:220 mod/photos.php:232 mod/photos.php:1227 +msgid "Delete Album" msgstr "" -#: mod/repair_ostatus.php:44 mod/ostatus_subscribe.php:51 -msgid "Done" +#: mod/photos.php:230 +msgid "Do you really want to delete this photo album and all its photos?" msgstr "" -#: mod/repair_ostatus.php:50 mod/ostatus_subscribe.php:73 -msgid "Keep this window open until done." +#: mod/photos.php:308 mod/photos.php:319 mod/photos.php:1540 +msgid "Delete Photo" msgstr "" -#: mod/delegate.php:101 -msgid "No potential page delegates located." +#: mod/photos.php:317 +msgid "Do you really want to delete this photo?" msgstr "" -#: mod/delegate.php:132 -msgid "" -"Delegates are able to manage all aspects of this account/page except for " -"basic account settings. Please do not delegate your personal account to " -"anybody that you do not trust completely." +#: mod/photos.php:688 +#, php-format +msgid "%1$s was tagged in %2$s by %3$s" msgstr "" -#: mod/delegate.php:133 -msgid "Existing Page Managers" +#: mod/photos.php:688 +msgid "a photo" msgstr "" -#: mod/delegate.php:135 -msgid "Existing Page Delegates" +#: mod/photos.php:794 +msgid "Image file is empty." msgstr "" -#: mod/delegate.php:137 -msgid "Potential Delegates" +#: mod/photos.php:954 +msgid "No photos selected" msgstr "" -#: mod/delegate.php:140 -msgid "Add" +#: mod/photos.php:1054 mod/videos.php:305 +msgid "Access to this item is restricted." msgstr "" -#: mod/delegate.php:141 -msgid "No entries." +#: mod/photos.php:1114 +#, php-format +msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage." msgstr "" -#: mod/videos.php:120 -msgid "Do you really want to delete this video?" +#: mod/photos.php:1148 +msgid "Upload Photos" msgstr "" -#: mod/videos.php:125 -msgid "Delete Video" +#: mod/photos.php:1152 mod/photos.php:1222 +msgid "New album name: " msgstr "" -#: mod/videos.php:204 -msgid "No videos selected" +#: mod/photos.php:1153 +msgid "or existing album name: " msgstr "" -#: mod/videos.php:305 mod/photos.php:1054 -msgid "Access to this item is restricted." +#: mod/photos.php:1154 +msgid "Do not show a status post for this upload" msgstr "" -#: mod/videos.php:387 mod/photos.php:1847 -msgid "View Album" +#: mod/photos.php:1165 mod/photos.php:1544 mod/settings.php:1300 +msgid "Show to Groups" msgstr "" -#: mod/videos.php:396 -msgid "Recent Videos" +#: mod/photos.php:1166 mod/photos.php:1545 mod/settings.php:1301 +msgid "Show to Contacts" msgstr "" -#: mod/videos.php:398 -msgid "Upload New Videos" +#: mod/photos.php:1167 +msgid "Private Photo" msgstr "" -#: mod/profiles.php:38 -msgid "Profile deleted." +#: mod/photos.php:1168 +msgid "Public Photo" msgstr "" -#: mod/profiles.php:56 mod/profiles.php:90 -msgid "Profile-" +#: mod/photos.php:1234 +msgid "Edit Album" msgstr "" -#: mod/profiles.php:75 mod/profiles.php:118 -msgid "New profile created." +#: mod/photos.php:1240 +msgid "Show Newest First" msgstr "" -#: mod/profiles.php:96 -msgid "Profile unavailable to clone." +#: mod/photos.php:1242 +msgid "Show Oldest First" msgstr "" -#: mod/profiles.php:190 -msgid "Profile Name is required." +#: mod/photos.php:1269 mod/photos.php:1841 +msgid "View Photo" msgstr "" -#: mod/profiles.php:338 -msgid "Marital Status" +#: mod/photos.php:1315 +msgid "Permission denied. Access to this item may be restricted." msgstr "" -#: mod/profiles.php:342 -msgid "Romantic Partner" +#: mod/photos.php:1317 +msgid "Photo not available" msgstr "" -#: mod/profiles.php:354 -msgid "Work/Employment" +#: mod/photos.php:1372 +msgid "View photo" msgstr "" -#: mod/profiles.php:357 -msgid "Religion" +#: mod/photos.php:1372 +msgid "Edit photo" msgstr "" -#: mod/profiles.php:361 -msgid "Political Views" +#: mod/photos.php:1373 +msgid "Use as profile photo" msgstr "" -#: mod/profiles.php:365 -msgid "Gender" +#: mod/photos.php:1398 +msgid "View Full Size" msgstr "" -#: mod/profiles.php:369 -msgid "Sexual Preference" -msgstr "" - -#: mod/profiles.php:373 -msgid "XMPP" +#: mod/photos.php:1484 +msgid "Tags: " msgstr "" -#: mod/profiles.php:377 -msgid "Homepage" +#: mod/photos.php:1487 +msgid "[Remove any tag]" msgstr "" -#: mod/profiles.php:381 mod/profiles.php:702 -msgid "Interests" +#: mod/photos.php:1526 +msgid "New album name" msgstr "" -#: mod/profiles.php:385 -msgid "Address" +#: mod/photos.php:1527 +msgid "Caption" msgstr "" -#: mod/profiles.php:392 mod/profiles.php:698 -msgid "Location" +#: mod/photos.php:1528 +msgid "Add a Tag" msgstr "" -#: mod/profiles.php:477 -msgid "Profile updated." +#: mod/photos.php:1528 +msgid "Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" msgstr "" -#: mod/profiles.php:564 -msgid " and " +#: mod/photos.php:1529 +msgid "Do not rotate" msgstr "" -#: mod/profiles.php:572 -msgid "public profile" +#: mod/photos.php:1530 +msgid "Rotate CW (right)" msgstr "" -#: mod/profiles.php:575 -#, php-format -msgid "%1$s changed %2$s to “%3$s”" +#: mod/photos.php:1531 +msgid "Rotate CCW (left)" msgstr "" -#: mod/profiles.php:576 -#, php-format -msgid " - Visit %1$s's %2$s" +#: mod/photos.php:1546 +msgid "Private photo" msgstr "" -#: mod/profiles.php:579 -#, php-format -msgid "%1$s has an updated %2$s, changing %3$s." +#: mod/photos.php:1547 +msgid "Public photo" msgstr "" -#: mod/profiles.php:645 -msgid "Hide contacts and friends:" +#: mod/photos.php:1770 +msgid "Map" msgstr "" -#: mod/profiles.php:648 mod/profiles.php:652 mod/profiles.php:677 -#: mod/follow.php:110 mod/dfrn_request.php:862 mod/register.php:246 -#: mod/settings.php:1163 mod/settings.php:1169 mod/settings.php:1177 -#: mod/settings.php:1181 mod/settings.php:1186 mod/settings.php:1192 -#: mod/settings.php:1198 mod/settings.php:1204 mod/settings.php:1230 -#: mod/settings.php:1231 mod/settings.php:1232 mod/settings.php:1233 -#: mod/settings.php:1234 mod/api.php:106 -msgid "No" +#: mod/photos.php:1847 mod/videos.php:387 +msgid "View Album" msgstr "" -#: mod/profiles.php:650 -msgid "Hide your contact/friend list from viewers of this profile?" +#: mod/register.php:93 +msgid "" +"Registration successful. Please check your email for further instructions." msgstr "" -#: mod/profiles.php:674 -msgid "Show more profile fields:" +#: mod/register.php:98 +#, php-format +msgid "" +"Failed to send email message. Here your accout details:
login: %s
" +"password: %s

You can change your password after login." msgstr "" -#: mod/profiles.php:686 -msgid "Profile Actions" +#: mod/register.php:105 +msgid "Registration successful." msgstr "" -#: mod/profiles.php:687 -msgid "Edit Profile Details" +#: mod/register.php:111 +msgid "Your registration can not be processed." msgstr "" -#: mod/profiles.php:689 -msgid "Change Profile Photo" +#: mod/register.php:160 +msgid "Your registration is pending approval by the site owner." msgstr "" -#: mod/profiles.php:690 -msgid "View this profile" +#: mod/register.php:226 +msgid "" +"You may (optionally) fill in this form via OpenID by supplying your OpenID " +"and clicking 'Register'." msgstr "" -#: mod/profiles.php:692 -msgid "Create a new profile using these settings" +#: mod/register.php:227 +msgid "" +"If you are not familiar with OpenID, please leave that field blank and fill " +"in the rest of the items." msgstr "" -#: mod/profiles.php:693 -msgid "Clone this profile" +#: mod/register.php:228 +msgid "Your OpenID (optional): " msgstr "" -#: mod/profiles.php:694 -msgid "Delete this profile" +#: mod/register.php:242 +msgid "Include your profile in member directory?" msgstr "" -#: mod/profiles.php:696 -msgid "Basic information" +#: mod/register.php:267 +msgid "Note for the admin" msgstr "" -#: mod/profiles.php:697 -msgid "Profile picture" +#: mod/register.php:267 +msgid "Leave a message for the admin, why you want to join this node" msgstr "" -#: mod/profiles.php:699 -msgid "Preferences" +#: mod/register.php:268 +msgid "Membership on this site is by invitation only." msgstr "" -#: mod/profiles.php:700 -msgid "Status information" +#: mod/register.php:269 +msgid "Your invitation ID: " msgstr "" -#: mod/profiles.php:701 -msgid "Additional information" +#: mod/register.php:272 mod/admin.php:956 +msgid "Registration" msgstr "" -#: mod/profiles.php:704 -msgid "Relation" +#: mod/register.php:280 +msgid "Your Full Name (e.g. Joe Smith, real or real-looking): " msgstr "" -#: mod/profiles.php:707 mod/newmember.php:36 mod/profile_photo.php:250 -msgid "Upload Profile Photo" +#: mod/register.php:281 +msgid "Your Email Address: " msgstr "" -#: mod/profiles.php:708 -msgid "Your Gender:" +#: mod/register.php:283 mod/settings.php:1271 +msgid "New Password:" msgstr "" -#: mod/profiles.php:709 -msgid " Marital Status:" +#: mod/register.php:283 +msgid "Leave empty for an auto generated password." msgstr "" -#: mod/profiles.php:711 -msgid "Example: fishing photography software" +#: mod/register.php:284 mod/settings.php:1272 +msgid "Confirm:" msgstr "" -#: mod/profiles.php:716 -msgid "Profile Name:" +#: mod/register.php:285 +msgid "" +"Choose a profile nickname. This must begin with a text character. Your " +"profile address on this site will then be 'nickname@$sitename'." msgstr "" -#: mod/profiles.php:718 -msgid "" -"This is your public profile.
It may " -"be visible to anybody using the internet." +#: mod/register.php:286 +msgid "Choose a nickname: " msgstr "" -#: mod/profiles.php:719 -msgid "Your Full Name:" +#: mod/register.php:296 +msgid "Import your profile to this friendica instance" msgstr "" -#: mod/profiles.php:720 -msgid "Title/Description:" +#: mod/settings.php:43 mod/admin.php:1396 +msgid "Account" msgstr "" -#: mod/profiles.php:723 -msgid "Street Address:" +#: mod/settings.php:52 mod/admin.php:160 +msgid "Additional features" msgstr "" -#: mod/profiles.php:724 -msgid "Locality/City:" +#: mod/settings.php:60 +msgid "Display" msgstr "" -#: mod/profiles.php:725 -msgid "Region/State:" +#: mod/settings.php:67 mod/settings.php:886 +msgid "Social Networks" msgstr "" -#: mod/profiles.php:726 -msgid "Postal/Zip Code:" +#: mod/settings.php:74 mod/admin.php:158 mod/admin.php:1522 mod/admin.php:1582 +msgid "Plugins" msgstr "" -#: mod/profiles.php:727 -msgid "Country:" +#: mod/settings.php:88 +msgid "Connected apps" msgstr "" -#: mod/profiles.php:731 -msgid "Who: (if applicable)" +#: mod/settings.php:102 +msgid "Remove account" msgstr "" -#: mod/profiles.php:731 -msgid "Examples: cathy123, Cathy Williams, cathy@example.com" +#: mod/settings.php:155 +msgid "Missing some important data!" msgstr "" -#: mod/profiles.php:732 -msgid "Since [date]:" +#: mod/settings.php:158 mod/settings.php:704 mod/contacts.php:804 +msgid "Update" msgstr "" -#: mod/profiles.php:734 -msgid "Tell us about yourself..." +#: mod/settings.php:269 +msgid "Failed to connect with email account using the settings provided." msgstr "" -#: mod/profiles.php:735 -msgid "XMPP (Jabber) address:" +#: mod/settings.php:274 +msgid "Email settings updated." msgstr "" -#: mod/profiles.php:735 -msgid "" -"The XMPP address will be propagated to your contacts so that they can follow " -"you." +#: mod/settings.php:289 +msgid "Features updated" msgstr "" -#: mod/profiles.php:736 -msgid "Homepage URL:" +#: mod/settings.php:359 +msgid "Relocate message has been send to your contacts" msgstr "" -#: mod/profiles.php:739 -msgid "Religious Views:" +#: mod/settings.php:378 +msgid "Empty passwords are not allowed. Password unchanged." msgstr "" -#: mod/profiles.php:740 -msgid "Public Keywords:" +#: mod/settings.php:386 +msgid "Wrong password." msgstr "" -#: mod/profiles.php:740 -msgid "(Used for suggesting potential friends, can be seen by others)" +#: mod/settings.php:397 +msgid "Password changed." msgstr "" -#: mod/profiles.php:741 -msgid "Private Keywords:" +#: mod/settings.php:399 +msgid "Password update failed. Please try again." msgstr "" -#: mod/profiles.php:741 -msgid "(Used for searching profiles, never shown to others)" +#: mod/settings.php:479 +msgid " Please use a shorter name." msgstr "" -#: mod/profiles.php:744 -msgid "Musical interests" +#: mod/settings.php:481 +msgid " Name too short." msgstr "" -#: mod/profiles.php:745 -msgid "Books, literature" +#: mod/settings.php:490 +msgid "Wrong Password" msgstr "" -#: mod/profiles.php:746 -msgid "Television" +#: mod/settings.php:495 +msgid " Not valid email." msgstr "" -#: mod/profiles.php:747 -msgid "Film/dance/culture/entertainment" +#: mod/settings.php:501 +msgid " Cannot change to that email." msgstr "" -#: mod/profiles.php:748 -msgid "Hobbies/Interests" +#: mod/settings.php:557 +msgid "Private forum has no privacy permissions. Using default privacy group." msgstr "" -#: mod/profiles.php:749 -msgid "Love/romance" +#: mod/settings.php:561 +msgid "Private forum has no privacy permissions and no default privacy group." msgstr "" -#: mod/profiles.php:750 -msgid "Work/employment" +#: mod/settings.php:601 +msgid "Settings updated." msgstr "" -#: mod/profiles.php:751 -msgid "School/education" +#: mod/settings.php:677 mod/settings.php:703 mod/settings.php:739 +msgid "Add application" msgstr "" -#: mod/profiles.php:752 -msgid "Contact information and Social Networks" +#: mod/settings.php:678 mod/settings.php:788 mod/settings.php:835 +#: mod/settings.php:904 mod/settings.php:996 mod/settings.php:1264 +#: mod/admin.php:955 mod/admin.php:1583 mod/admin.php:1831 mod/admin.php:1905 +#: mod/admin.php:2055 +msgid "Save Settings" msgstr "" -#: mod/profiles.php:794 -msgid "Edit/Manage Profiles" +#: mod/settings.php:681 mod/settings.php:707 +msgid "Consumer Key" msgstr "" -#: mod/credits.php:16 -msgid "Credits" +#: mod/settings.php:682 mod/settings.php:708 +msgid "Consumer Secret" msgstr "" -#: mod/credits.php:17 -msgid "" -"Friendica is a community project, that would not be possible without the " -"help of many people. Here is a list of those who have contributed to the " -"code or the translation of Friendica. Thank you all!" +#: mod/settings.php:683 mod/settings.php:709 +msgid "Redirect" msgstr "" -#: mod/filer.php:30 -msgid "- select -" +#: mod/settings.php:684 mod/settings.php:710 +msgid "Icon url" msgstr "" -#: mod/poke.php:192 -msgid "Poke/Prod" +#: mod/settings.php:695 +msgid "You can't edit this application." msgstr "" -#: mod/poke.php:193 -msgid "poke, prod or do other things to somebody" +#: mod/settings.php:738 +msgid "Connected Apps" msgstr "" -#: mod/poke.php:194 -msgid "Recipient" +#: mod/settings.php:742 +msgid "Client key starts with" msgstr "" -#: mod/poke.php:195 -msgid "Choose what you wish to do to recipient" +#: mod/settings.php:743 +msgid "No name" msgstr "" -#: mod/poke.php:198 -msgid "Make this post private" +#: mod/settings.php:744 +msgid "Remove authorization" msgstr "" -#: mod/photos.php:88 mod/photos.php:1856 -msgid "Recent Photos" +#: mod/settings.php:756 +msgid "No Plugin settings configured" msgstr "" -#: mod/photos.php:91 mod/photos.php:1283 mod/photos.php:1858 -msgid "Upload New Photos" +#: mod/settings.php:764 +msgid "Plugin Settings" msgstr "" -#: mod/photos.php:105 mod/settings.php:36 -msgid "everybody" +#: mod/settings.php:778 mod/admin.php:2044 mod/admin.php:2045 +msgid "Off" msgstr "" -#: mod/photos.php:169 -msgid "Contact information unavailable" +#: mod/settings.php:778 mod/admin.php:2044 mod/admin.php:2045 +msgid "On" msgstr "" -#: mod/photos.php:190 -msgid "Album not found." +#: mod/settings.php:786 +msgid "Additional Features" msgstr "" -#: mod/photos.php:220 mod/photos.php:232 mod/photos.php:1227 -msgid "Delete Album" +#: mod/settings.php:796 mod/settings.php:800 +msgid "General Social Media Settings" msgstr "" -#: mod/photos.php:230 -msgid "Do you really want to delete this photo album and all its photos?" +#: mod/settings.php:806 +msgid "Disable intelligent shortening" msgstr "" -#: mod/photos.php:308 mod/photos.php:319 mod/photos.php:1540 -msgid "Delete Photo" +#: mod/settings.php:808 +msgid "" +"Normally the system tries to find the best link to add to shortened posts. " +"If this option is enabled then every shortened post will always point to the " +"original friendica post." msgstr "" -#: mod/photos.php:317 -msgid "Do you really want to delete this photo?" +#: mod/settings.php:814 +msgid "Automatically follow any GNU Social (OStatus) followers/mentioners" msgstr "" -#: mod/photos.php:688 -#, php-format -msgid "%1$s was tagged in %2$s by %3$s" +#: mod/settings.php:816 +msgid "" +"If you receive a message from an unknown OStatus user, this option decides " +"what to do. If it is checked, a new contact will be created for every " +"unknown user." msgstr "" -#: mod/photos.php:688 -msgid "a photo" +#: mod/settings.php:822 +msgid "Default group for OStatus contacts" msgstr "" -#: mod/photos.php:794 -msgid "Image file is empty." +#: mod/settings.php:828 +msgid "Your legacy GNU Social account" msgstr "" -#: mod/photos.php:954 -msgid "No photos selected" +#: mod/settings.php:830 +msgid "" +"If you enter your old GNU Social/Statusnet account name here (in the format " +"user@domain.tld), your contacts will be added automatically. The field will " +"be emptied when done." msgstr "" -#: mod/photos.php:1114 -#, php-format -msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage." +#: mod/settings.php:833 +msgid "Repair OStatus subscriptions" msgstr "" -#: mod/photos.php:1148 -msgid "Upload Photos" +#: mod/settings.php:842 mod/settings.php:843 +#, php-format +msgid "Built-in support for %s connectivity is %s" msgstr "" -#: mod/photos.php:1152 mod/photos.php:1222 -msgid "New album name: " +#: mod/settings.php:842 mod/settings.php:843 +msgid "enabled" msgstr "" -#: mod/photos.php:1153 -msgid "or existing album name: " +#: mod/settings.php:842 mod/settings.php:843 +msgid "disabled" msgstr "" -#: mod/photos.php:1154 -msgid "Do not show a status post for this upload" +#: mod/settings.php:843 +msgid "GNU Social (OStatus)" msgstr "" -#: mod/photos.php:1165 mod/photos.php:1544 mod/settings.php:1300 -msgid "Show to Groups" +#: mod/settings.php:879 +msgid "Email access is disabled on this site." msgstr "" -#: mod/photos.php:1166 mod/photos.php:1545 mod/settings.php:1301 -msgid "Show to Contacts" +#: mod/settings.php:891 +msgid "Email/Mailbox Setup" msgstr "" -#: mod/photos.php:1167 -msgid "Private Photo" +#: mod/settings.php:892 +msgid "" +"If you wish to communicate with email contacts using this service " +"(optional), please specify how to connect to your mailbox." msgstr "" -#: mod/photos.php:1168 -msgid "Public Photo" +#: mod/settings.php:893 +msgid "Last successful email check:" msgstr "" -#: mod/photos.php:1234 -msgid "Edit Album" +#: mod/settings.php:895 +msgid "IMAP server name:" msgstr "" -#: mod/photos.php:1240 -msgid "Show Newest First" +#: mod/settings.php:896 +msgid "IMAP port:" msgstr "" -#: mod/photos.php:1242 -msgid "Show Oldest First" +#: mod/settings.php:897 +msgid "Security:" msgstr "" -#: mod/photos.php:1269 mod/photos.php:1841 -msgid "View Photo" +#: mod/settings.php:897 mod/settings.php:902 +msgid "None" msgstr "" -#: mod/photos.php:1315 -msgid "Permission denied. Access to this item may be restricted." +#: mod/settings.php:898 +msgid "Email login name:" msgstr "" -#: mod/photos.php:1317 -msgid "Photo not available" +#: mod/settings.php:899 +msgid "Email password:" msgstr "" -#: mod/photos.php:1372 -msgid "View photo" +#: mod/settings.php:900 +msgid "Reply-to address:" msgstr "" -#: mod/photos.php:1372 -msgid "Edit photo" +#: mod/settings.php:901 +msgid "Send public posts to all email contacts:" msgstr "" -#: mod/photos.php:1373 -msgid "Use as profile photo" +#: mod/settings.php:902 +msgid "Action after import:" msgstr "" -#: mod/photos.php:1398 -msgid "View Full Size" +#: mod/settings.php:902 +msgid "Move to folder" msgstr "" -#: mod/photos.php:1484 -msgid "Tags: " +#: mod/settings.php:903 +msgid "Move to folder:" msgstr "" -#: mod/photos.php:1487 -msgid "[Remove any tag]" +#: mod/settings.php:934 mod/admin.php:862 +msgid "No special theme for mobile devices" msgstr "" -#: mod/photos.php:1526 -msgid "New album name" +#: mod/settings.php:994 +msgid "Display Settings" msgstr "" -#: mod/photos.php:1527 -msgid "Caption" +#: mod/settings.php:1000 mod/settings.php:1023 +msgid "Display Theme:" msgstr "" -#: mod/photos.php:1528 -msgid "Add a Tag" +#: mod/settings.php:1001 +msgid "Mobile Theme:" msgstr "" -#: mod/photos.php:1528 -msgid "Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" +#: mod/settings.php:1002 +msgid "Suppress warning of insecure networks" msgstr "" -#: mod/photos.php:1529 -msgid "Do not rotate" +#: mod/settings.php:1002 +msgid "" +"Should the system suppress the warning that the current group contains " +"members of networks that can't receive non public postings." msgstr "" -#: mod/photos.php:1530 -msgid "Rotate CW (right)" +#: mod/settings.php:1003 +msgid "Update browser every xx seconds" msgstr "" -#: mod/photos.php:1531 -msgid "Rotate CCW (left)" +#: mod/settings.php:1003 +msgid "Minimum of 10 seconds. Enter -1 to disable it." msgstr "" -#: mod/photos.php:1546 -msgid "Private photo" +#: mod/settings.php:1004 +msgid "Number of items to display per page:" msgstr "" -#: mod/photos.php:1547 -msgid "Public photo" +#: mod/settings.php:1004 mod/settings.php:1005 +msgid "Maximum of 100 items" msgstr "" -#: mod/photos.php:1770 -msgid "Map" +#: mod/settings.php:1005 +msgid "Number of items to display per page when viewed from mobile device:" msgstr "" -#: mod/install.php:139 -msgid "Friendica Communications Server - Setup" +#: mod/settings.php:1006 +msgid "Don't show emoticons" msgstr "" -#: mod/install.php:145 -msgid "Could not connect to database." +#: mod/settings.php:1007 +msgid "Calendar" msgstr "" -#: mod/install.php:149 -msgid "Could not create table." +#: mod/settings.php:1008 +msgid "Beginning of week:" msgstr "" -#: mod/install.php:155 -msgid "Your Friendica site database has been installed." +#: mod/settings.php:1009 +msgid "Don't show notices" msgstr "" -#: mod/install.php:160 -msgid "" -"You may need to import the file \"database.sql\" manually using phpmyadmin " -"or mysql." +#: mod/settings.php:1010 +msgid "Infinite scroll" msgstr "" -#: mod/install.php:161 mod/install.php:230 mod/install.php:602 -msgid "Please see the file \"INSTALL.txt\"." +#: mod/settings.php:1011 +msgid "Automatic updates only at the top of the network page" msgstr "" -#: mod/install.php:173 -msgid "Database already in use." +#: mod/settings.php:1012 +msgid "Bandwith Saver Mode" msgstr "" -#: mod/install.php:227 -msgid "System check" +#: mod/settings.php:1012 +msgid "" +"When enabled, embedded content is not displayed on automatic updates, they " +"only show on page reload." msgstr "" -#: mod/install.php:232 -msgid "Check again" +#: mod/settings.php:1014 +msgid "General Theme Settings" msgstr "" -#: mod/install.php:251 -msgid "Database connection" +#: mod/settings.php:1015 +msgid "Custom Theme Settings" msgstr "" -#: mod/install.php:252 -msgid "" -"In order to install Friendica we need to know how to connect to your " -"database." +#: mod/settings.php:1016 +msgid "Content Settings" msgstr "" -#: mod/install.php:253 -msgid "" -"Please contact your hosting provider or site administrator if you have " -"questions about these settings." +#: mod/settings.php:1017 view/theme/frio/config.php:61 +#: view/theme/quattro/config.php:66 view/theme/vier/config.php:109 +#: view/theme/duepuntozero/config.php:61 +msgid "Theme settings" msgstr "" -#: mod/install.php:254 -msgid "" -"The database you specify below should already exist. If it does not, please " -"create it before continuing." +#: mod/settings.php:1099 +msgid "Account Types" msgstr "" -#: mod/install.php:258 -msgid "Database Server Name" +#: mod/settings.php:1100 +msgid "Personal Page Subtypes" msgstr "" -#: mod/install.php:259 -msgid "Database Login Name" +#: mod/settings.php:1101 +msgid "Community Forum Subtypes" msgstr "" -#: mod/install.php:260 -msgid "Database Login Password" +#: mod/settings.php:1108 +msgid "Personal Page" msgstr "" -#: mod/install.php:261 -msgid "Database Name" +#: mod/settings.php:1109 +msgid "This account is a regular personal profile" msgstr "" -#: mod/install.php:262 mod/install.php:303 -msgid "Site administrator email address" +#: mod/settings.php:1112 +msgid "Organisation Page" msgstr "" -#: mod/install.php:262 mod/install.php:303 -msgid "" -"Your account email address must match this in order to use the web admin " -"panel." +#: mod/settings.php:1113 +msgid "This account is a profile for an organisation" msgstr "" -#: mod/install.php:266 mod/install.php:306 -msgid "Please select a default timezone for your website" +#: mod/settings.php:1116 +msgid "News Page" msgstr "" -#: mod/install.php:293 -msgid "Site settings" +#: mod/settings.php:1117 +msgid "This account is a news account/reflector" msgstr "" -#: mod/install.php:307 -msgid "System Language:" +#: mod/settings.php:1120 +msgid "Community Forum" msgstr "" -#: mod/install.php:307 +#: mod/settings.php:1121 msgid "" -"Set the default language for your Friendica installation interface and to " -"send emails." +"This account is a community forum where people can discuss with each other" msgstr "" -#: mod/install.php:347 -msgid "Could not find a command line version of PHP in the web server PATH." +#: mod/settings.php:1124 +msgid "Normal Account Page" msgstr "" -#: mod/install.php:348 -msgid "" -"If you don't have a command line version of PHP installed on server, you " -"will not be able to run background polling via cron. See 'Setup the poller'" +#: mod/settings.php:1125 +msgid "This account is a normal personal profile" msgstr "" -#: mod/install.php:352 -msgid "PHP executable path" +#: mod/settings.php:1128 +msgid "Soapbox Page" msgstr "" -#: mod/install.php:352 -msgid "" -"Enter full path to php executable. You can leave this blank to continue the " -"installation." +#: mod/settings.php:1129 +msgid "Automatically approve all connection/friend requests as read-only fans" msgstr "" -#: mod/install.php:357 -msgid "Command line PHP" +#: mod/settings.php:1132 +msgid "Public Forum" msgstr "" -#: mod/install.php:366 -msgid "PHP executable is not the php cli binary (could be cgi-fgci version)" +#: mod/settings.php:1133 +msgid "Automatically approve all contact requests" msgstr "" -#: mod/install.php:367 -msgid "Found PHP version: " +#: mod/settings.php:1136 +msgid "Automatic Friend Page" msgstr "" -#: mod/install.php:369 -msgid "PHP cli binary" +#: mod/settings.php:1137 +msgid "Automatically approve all connection/friend requests as friends" msgstr "" -#: mod/install.php:380 -msgid "" -"The command line version of PHP on your system does not have " -"\"register_argc_argv\" enabled." +#: mod/settings.php:1140 +msgid "Private Forum [Experimental]" msgstr "" -#: mod/install.php:381 -msgid "This is required for message delivery to work." +#: mod/settings.php:1141 +msgid "Private forum - approved members only" msgstr "" -#: mod/install.php:383 -msgid "PHP register_argc_argv" +#: mod/settings.php:1153 +msgid "OpenID:" msgstr "" -#: mod/install.php:404 -msgid "" -"Error: the \"openssl_pkey_new\" function on this system is not able to " -"generate encryption keys" +#: mod/settings.php:1153 +msgid "(Optional) Allow this OpenID to login to this account." msgstr "" -#: mod/install.php:405 -msgid "" -"If running under Windows, please see \"http://www.php.net/manual/en/openssl." -"installation.php\"." +#: mod/settings.php:1163 +msgid "Publish your default profile in your local site directory?" msgstr "" -#: mod/install.php:407 -msgid "Generate encryption keys" +#: mod/settings.php:1169 +msgid "Publish your default profile in the global social directory?" msgstr "" -#: mod/install.php:414 -msgid "libCurl PHP module" +#: mod/settings.php:1177 +msgid "Hide your contact/friend list from viewers of your default profile?" msgstr "" -#: mod/install.php:415 -msgid "GD graphics PHP module" +#: mod/settings.php:1181 +msgid "" +"If enabled, posting public messages to Diaspora and other networks isn't " +"possible." msgstr "" -#: mod/install.php:416 -msgid "OpenSSL PHP module" +#: mod/settings.php:1186 +msgid "Allow friends to post to your profile page?" msgstr "" -#: mod/install.php:417 -msgid "mysqli PHP module" +#: mod/settings.php:1192 +msgid "Allow friends to tag your posts?" msgstr "" -#: mod/install.php:418 -msgid "mb_string PHP module" +#: mod/settings.php:1198 +msgid "Allow us to suggest you as a potential friend to new members?" msgstr "" -#: mod/install.php:419 -msgid "mcrypt PHP module" +#: mod/settings.php:1204 +msgid "Permit unknown people to send you private mail?" msgstr "" -#: mod/install.php:420 -msgid "XML PHP module" +#: mod/settings.php:1212 +msgid "Profile is not published." msgstr "" -#: mod/install.php:421 -msgid "iconv module" +#: mod/settings.php:1220 +#, php-format +msgid "Your Identity Address is '%s' or '%s'." msgstr "" -#: mod/install.php:425 mod/install.php:427 -msgid "Apache mod_rewrite module" +#: mod/settings.php:1227 +msgid "Automatically expire posts after this many days:" msgstr "" -#: mod/install.php:425 -msgid "" -"Error: Apache webserver mod-rewrite module is required but not installed." +#: mod/settings.php:1227 +msgid "If empty, posts will not expire. Expired posts will be deleted" msgstr "" -#: mod/install.php:433 -msgid "Error: libCURL PHP module required but not installed." +#: mod/settings.php:1228 +msgid "Advanced expiration settings" msgstr "" -#: mod/install.php:437 -msgid "" -"Error: GD graphics PHP module with JPEG support required but not installed." +#: mod/settings.php:1229 +msgid "Advanced Expiration" msgstr "" -#: mod/install.php:441 -msgid "Error: openssl PHP module required but not installed." +#: mod/settings.php:1230 +msgid "Expire posts:" msgstr "" -#: mod/install.php:445 -msgid "Error: mysqli PHP module required but not installed." +#: mod/settings.php:1231 +msgid "Expire personal notes:" msgstr "" -#: mod/install.php:449 -msgid "Error: mb_string PHP module required but not installed." +#: mod/settings.php:1232 +msgid "Expire starred posts:" msgstr "" -#: mod/install.php:453 -msgid "Error: mcrypt PHP module required but not installed." +#: mod/settings.php:1233 +msgid "Expire photos:" msgstr "" -#: mod/install.php:457 -msgid "Error: iconv PHP module required but not installed." +#: mod/settings.php:1234 +msgid "Only expire posts by others:" msgstr "" -#: mod/install.php:466 -msgid "" -"If you are using php_cli, please make sure that mcrypt module is enabled in " -"its config file" +#: mod/settings.php:1262 +msgid "Account Settings" msgstr "" -#: mod/install.php:469 -msgid "" -"Function mcrypt_create_iv() is not defined. This is needed to enable RINO2 " -"encryption layer." +#: mod/settings.php:1270 +msgid "Password Settings" msgstr "" -#: mod/install.php:471 -msgid "mcrypt_create_iv() function" +#: mod/settings.php:1272 +msgid "Leave password fields blank unless changing" msgstr "" -#: mod/install.php:479 -msgid "Error, XML PHP module required but not installed." +#: mod/settings.php:1273 +msgid "Current Password:" msgstr "" -#: mod/install.php:494 -msgid "" -"The web installer needs to be able to create a file called \".htconfig.php\" " -"in the top folder of your web server and it is unable to do so." +#: mod/settings.php:1273 mod/settings.php:1274 +msgid "Your current password to confirm the changes" msgstr "" -#: mod/install.php:495 -msgid "" -"This is most often a permission setting, as the web server may not be able " -"to write files in your folder - even if you can." +#: mod/settings.php:1274 +msgid "Password:" msgstr "" -#: mod/install.php:496 -msgid "" -"At the end of this procedure, we will give you a text to save in a file " -"named .htconfig.php in your Friendica top folder." +#: mod/settings.php:1278 +msgid "Basic Settings" msgstr "" -#: mod/install.php:497 -msgid "" -"You can alternatively skip this procedure and perform a manual installation. " -"Please see the file \"INSTALL.txt\" for instructions." +#: mod/settings.php:1280 +msgid "Email Address:" msgstr "" -#: mod/install.php:500 -msgid ".htconfig.php is writable" +#: mod/settings.php:1281 +msgid "Your Timezone:" msgstr "" -#: mod/install.php:510 -msgid "" -"Friendica uses the Smarty3 template engine to render its web views. Smarty3 " -"compiles templates to PHP to speed up rendering." +#: mod/settings.php:1282 +msgid "Your Language:" msgstr "" -#: mod/install.php:511 +#: mod/settings.php:1282 msgid "" -"In order to store these compiled templates, the web server needs to have " -"write access to the directory view/smarty3/ under the Friendica top level " -"folder." +"Set the language we use to show you friendica interface and to send you " +"emails" msgstr "" -#: mod/install.php:512 -msgid "" -"Please ensure that the user that your web server runs as (e.g. www-data) has " -"write access to this folder." +#: mod/settings.php:1283 +msgid "Default Post Location:" msgstr "" -#: mod/install.php:513 -msgid "" -"Note: as a security measure, you should give the web server write access to " -"view/smarty3/ only--not the template files (.tpl) that it contains." +#: mod/settings.php:1284 +msgid "Use Browser Location:" msgstr "" -#: mod/install.php:516 -msgid "view/smarty3 is writable" +#: mod/settings.php:1287 +msgid "Security and Privacy Settings" msgstr "" -#: mod/install.php:532 -msgid "" -"Url rewrite in .htaccess is not working. Check your server configuration." +#: mod/settings.php:1289 +msgid "Maximum Friend Requests/Day:" msgstr "" -#: mod/install.php:534 -msgid "Url rewrite is working" +#: mod/settings.php:1289 mod/settings.php:1319 +msgid "(to prevent spam abuse)" msgstr "" -#: mod/install.php:551 -msgid "ImageMagick PHP extension is installed" +#: mod/settings.php:1290 +msgid "Default Post Permissions" msgstr "" -#: mod/install.php:553 -msgid "ImageMagick supports GIF" +#: mod/settings.php:1291 +msgid "(click to open/close)" msgstr "" -#: mod/install.php:561 -msgid "" -"The database configuration file \".htconfig.php\" could not be written. " -"Please use the enclosed text to create a configuration file in your web " -"server root." +#: mod/settings.php:1302 +msgid "Default Private Post" msgstr "" -#: mod/install.php:600 -msgid "

What next

" +#: mod/settings.php:1303 +msgid "Default Public Post" msgstr "" -#: mod/install.php:601 -msgid "" -"IMPORTANT: You will need to [manually] setup a scheduled task for the poller." +#: mod/settings.php:1307 +msgid "Default Permissions for New Posts" msgstr "" -#: mod/subthread.php:103 -#, php-format -msgid "%1$s is following %2$s's %3$s" +#: mod/settings.php:1319 +msgid "Maximum private messages per day from unknown people:" msgstr "" -#: mod/attach.php:8 -msgid "Item not available." +#: mod/settings.php:1322 +msgid "Notification Settings" msgstr "" -#: mod/attach.php:20 -msgid "Item was not found." +#: mod/settings.php:1323 +msgid "By default post a status message when:" msgstr "" -#: mod/contacts.php:128 -#, php-format -msgid "%d contact edited." -msgid_plural "%d contacts edited." -msgstr[0] "" -msgstr[1] "" +#: mod/settings.php:1324 +msgid "accepting a friend request" +msgstr "" -#: mod/contacts.php:159 mod/contacts.php:368 -msgid "Could not access contact record." +#: mod/settings.php:1325 +msgid "joining a forum/community" msgstr "" -#: mod/contacts.php:173 -msgid "Could not locate selected profile." +#: mod/settings.php:1326 +msgid "making an interesting profile change" msgstr "" -#: mod/contacts.php:206 -msgid "Contact updated." +#: mod/settings.php:1327 +msgid "Send a notification email when:" msgstr "" -#: mod/contacts.php:208 mod/dfrn_request.php:583 -msgid "Failed to update contact record." +#: mod/settings.php:1328 +msgid "You receive an introduction" msgstr "" -#: mod/contacts.php:389 -msgid "Contact has been blocked" +#: mod/settings.php:1329 +msgid "Your introductions are confirmed" msgstr "" -#: mod/contacts.php:389 -msgid "Contact has been unblocked" +#: mod/settings.php:1330 +msgid "Someone writes on your profile wall" msgstr "" -#: mod/contacts.php:400 -msgid "Contact has been ignored" +#: mod/settings.php:1331 +msgid "Someone writes a followup comment" msgstr "" -#: mod/contacts.php:400 -msgid "Contact has been unignored" +#: mod/settings.php:1332 +msgid "You receive a private message" msgstr "" -#: mod/contacts.php:412 -msgid "Contact has been archived" +#: mod/settings.php:1333 +msgid "You receive a friend suggestion" msgstr "" -#: mod/contacts.php:412 -msgid "Contact has been unarchived" +#: mod/settings.php:1334 +msgid "You are tagged in a post" msgstr "" -#: mod/contacts.php:437 -msgid "Drop contact" +#: mod/settings.php:1335 +msgid "You are poked/prodded/etc. in a post" msgstr "" -#: mod/contacts.php:440 mod/contacts.php:801 -msgid "Do you really want to delete this contact?" +#: mod/settings.php:1337 +msgid "Activate desktop notifications" msgstr "" -#: mod/contacts.php:457 -msgid "Contact has been removed." +#: mod/settings.php:1337 +msgid "Show desktop popup on new notifications" msgstr "" -#: mod/contacts.php:498 -#, php-format -msgid "You are mutual friends with %s" +#: mod/settings.php:1339 +msgid "Text-only notification emails" msgstr "" -#: mod/contacts.php:502 -#, php-format -msgid "You are sharing with %s" +#: mod/settings.php:1341 +msgid "Send text only notification emails, without the html part" msgstr "" -#: mod/contacts.php:507 -#, php-format -msgid "%s is sharing with you" +#: mod/settings.php:1343 +msgid "Advanced Account/Page Type Settings" msgstr "" -#: mod/contacts.php:527 -msgid "Private communications are not available for this contact." +#: mod/settings.php:1344 +msgid "Change the behaviour of this account for special situations" msgstr "" -#: mod/contacts.php:534 -msgid "(Update was successful)" +#: mod/settings.php:1347 +msgid "Relocate" msgstr "" -#: mod/contacts.php:534 -msgid "(Update was not successful)" +#: mod/settings.php:1348 +msgid "" +"If you have moved this profile from another server, and some of your " +"contacts don't receive your updates, try pushing this button." msgstr "" -#: mod/contacts.php:536 mod/contacts.php:973 -msgid "Suggest friends" +#: mod/settings.php:1349 +msgid "Resend relocate message to contacts" msgstr "" -#: mod/contacts.php:540 -#, php-format -msgid "Network type: %s" +#: mod/videos.php:120 +msgid "Do you really want to delete this video?" msgstr "" -#: mod/contacts.php:553 -msgid "Communications lost with this contact!" +#: mod/videos.php:125 +msgid "Delete Video" msgstr "" -#: mod/contacts.php:556 -msgid "Fetch further information for feeds" +#: mod/videos.php:204 +msgid "No videos selected" msgstr "" -#: mod/contacts.php:557 -msgid "Fetch information" +#: mod/videos.php:396 +msgid "Recent Videos" msgstr "" -#: mod/contacts.php:557 -msgid "Fetch information and keywords" +#: mod/videos.php:398 +msgid "Upload New Videos" msgstr "" -#: mod/contacts.php:575 -msgid "Contact" +#: mod/wall_attach.php:17 mod/wall_attach.php:25 mod/wall_attach.php:76 +#: mod/wall_upload.php:20 mod/wall_upload.php:33 mod/wall_upload.php:86 +#: mod/wall_upload.php:122 mod/wall_upload.php:125 +msgid "Invalid request." msgstr "" -#: mod/contacts.php:578 -msgid "Profile Visibility" +#: mod/wall_attach.php:94 +msgid "Sorry, maybe your upload is bigger than the PHP configuration allows" msgstr "" -#: mod/contacts.php:579 -#, php-format -msgid "" -"Please choose the profile you would like to display to %s when viewing your " -"profile securely." +#: mod/wall_attach.php:94 +msgid "Or - did you try to upload an empty file?" msgstr "" -#: mod/contacts.php:580 -msgid "Contact Information / Notes" +#: mod/wall_attach.php:105 +#, php-format +msgid "File exceeds size limit of %s" msgstr "" -#: mod/contacts.php:581 -msgid "Edit contact notes" +#: mod/wall_attach.php:156 mod/wall_attach.php:172 +msgid "File upload failed." msgstr "" -#: mod/contacts.php:587 -msgid "Block/Unblock contact" +#: mod/admin.php:92 +msgid "Theme settings updated." msgstr "" -#: mod/contacts.php:588 -msgid "Ignore contact" +#: mod/admin.php:156 mod/admin.php:954 +msgid "Site" msgstr "" -#: mod/contacts.php:589 -msgid "Repair URL settings" +#: mod/admin.php:157 mod/admin.php:898 mod/admin.php:1404 mod/admin.php:1420 +msgid "Users" msgstr "" -#: mod/contacts.php:590 -msgid "View conversations" +#: mod/admin.php:159 mod/admin.php:1780 mod/admin.php:1830 +msgid "Themes" msgstr "" -#: mod/contacts.php:596 -msgid "Last update:" +#: mod/admin.php:161 +msgid "DB updates" msgstr "" -#: mod/contacts.php:598 -msgid "Update public posts" +#: mod/admin.php:162 mod/admin.php:406 +msgid "Inspect Queue" msgstr "" -#: mod/contacts.php:600 mod/contacts.php:983 -msgid "Update now" +#: mod/admin.php:163 mod/admin.php:372 +msgid "Federation Statistics" msgstr "" -#: mod/contacts.php:606 mod/contacts.php:806 mod/contacts.php:1000 -msgid "Unignore" +#: mod/admin.php:177 mod/admin.php:188 mod/admin.php:1904 +msgid "Logs" msgstr "" -#: mod/contacts.php:610 -msgid "Currently blocked" +#: mod/admin.php:178 mod/admin.php:1972 +msgid "View Logs" msgstr "" -#: mod/contacts.php:611 -msgid "Currently ignored" +#: mod/admin.php:179 +msgid "probe address" msgstr "" -#: mod/contacts.php:612 -msgid "Currently archived" +#: mod/admin.php:180 +msgid "check webfinger" msgstr "" -#: mod/contacts.php:613 -msgid "" -"Replies/likes to your public posts may still be visible" +#: mod/admin.php:187 +msgid "Plugin Features" msgstr "" -#: mod/contacts.php:614 -msgid "Notification for new posts" +#: mod/admin.php:189 +msgid "diagnostics" msgstr "" -#: mod/contacts.php:614 -msgid "Send a notification of every new post of this contact" +#: mod/admin.php:190 +msgid "User registrations waiting for confirmation" msgstr "" -#: mod/contacts.php:617 -msgid "Blacklisted keywords" +#: mod/admin.php:306 +msgid "unknown" msgstr "" -#: mod/contacts.php:617 +#: mod/admin.php:365 msgid "" -"Comma separated list of keywords that should not be converted to hashtags, " -"when \"Fetch information and keywords\" is selected" +"This page offers you some numbers to the known part of the federated social " +"network your Friendica node is part of. These numbers are not complete but " +"only reflect the part of the network your node is aware of." msgstr "" -#: mod/contacts.php:635 -msgid "Actions" +#: mod/admin.php:366 +msgid "" +"The Auto Discovered Contact Directory feature is not enabled, it " +"will improve the data displayed here." msgstr "" -#: mod/contacts.php:638 -msgid "Contact Settings" +#: mod/admin.php:371 mod/admin.php:405 mod/admin.php:484 mod/admin.php:953 +#: mod/admin.php:1403 mod/admin.php:1521 mod/admin.php:1581 mod/admin.php:1779 +#: mod/admin.php:1829 mod/admin.php:1903 mod/admin.php:1971 +msgid "Administration" msgstr "" -#: mod/contacts.php:684 -msgid "Suggestions" +#: mod/admin.php:378 +#, php-format +msgid "Currently this node is aware of %d nodes from the following platforms:" msgstr "" -#: mod/contacts.php:687 -msgid "Suggest potential friends" +#: mod/admin.php:408 +msgid "ID" msgstr "" -#: mod/contacts.php:692 mod/group.php:192 -msgid "All Contacts" +#: mod/admin.php:409 +msgid "Recipient Name" msgstr "" -#: mod/contacts.php:695 -msgid "Show all contacts" +#: mod/admin.php:410 +msgid "Recipient Profile" msgstr "" -#: mod/contacts.php:700 -msgid "Unblocked" +#: mod/admin.php:412 +msgid "Created" msgstr "" -#: mod/contacts.php:703 -msgid "Only show unblocked contacts" +#: mod/admin.php:413 +msgid "Last Tried" msgstr "" -#: mod/contacts.php:709 -msgid "Blocked" +#: mod/admin.php:414 +msgid "" +"This page lists the content of the queue for outgoing postings. These are " +"postings the initial delivery failed for. They will be resend later and " +"eventually deleted if the delivery fails permanently." msgstr "" -#: mod/contacts.php:712 -msgid "Only show blocked contacts" +#: mod/admin.php:439 +#, php-format +msgid "" +"Your DB still runs with MyISAM tables. You should change the engine type to " +"InnoDB. As Friendica will use InnoDB only features in the future, you should " +"change this! See here for a guide that may be helpful " +"converting the table engines. You may also use the convert_innodb.sql in the /util directory of your Friendica installation.
" msgstr "" -#: mod/contacts.php:718 -msgid "Ignored" +#: mod/admin.php:444 +msgid "" +"You are using a MySQL version which does not support all features that " +"Friendica uses. You should consider switching to MariaDB." msgstr "" -#: mod/contacts.php:721 -msgid "Only show ignored contacts" +#: mod/admin.php:448 mod/admin.php:1352 +msgid "Normal Account" msgstr "" -#: mod/contacts.php:727 -msgid "Archived" +#: mod/admin.php:449 mod/admin.php:1353 +msgid "Soapbox Account" msgstr "" -#: mod/contacts.php:730 -msgid "Only show archived contacts" +#: mod/admin.php:450 mod/admin.php:1354 +msgid "Community/Celebrity Account" msgstr "" -#: mod/contacts.php:736 -msgid "Hidden" +#: mod/admin.php:451 mod/admin.php:1355 +msgid "Automatic Friend Account" msgstr "" -#: mod/contacts.php:739 -msgid "Only show hidden contacts" +#: mod/admin.php:452 +msgid "Blog Account" msgstr "" -#: mod/contacts.php:796 -msgid "Search your contacts" +#: mod/admin.php:453 +msgid "Private Forum" msgstr "" -#: mod/contacts.php:804 mod/settings.php:158 mod/settings.php:704 -msgid "Update" +#: mod/admin.php:479 +msgid "Message queues" msgstr "" -#: mod/contacts.php:807 mod/contacts.php:1008 -msgid "Archive" +#: mod/admin.php:485 +msgid "Summary" msgstr "" -#: mod/contacts.php:807 mod/contacts.php:1008 -msgid "Unarchive" +#: mod/admin.php:488 +msgid "Registered users" msgstr "" -#: mod/contacts.php:810 -msgid "Batch Actions" +#: mod/admin.php:490 +msgid "Pending registrations" msgstr "" -#: mod/contacts.php:856 -msgid "View all contacts" +#: mod/admin.php:491 +msgid "Version" msgstr "" -#: mod/contacts.php:863 mod/common.php:134 -msgid "Common Friends" +#: mod/admin.php:496 +msgid "Active plugins" msgstr "" -#: mod/contacts.php:866 -msgid "View all common friends" +#: mod/admin.php:521 +msgid "Can not parse base url. Must have at least ://" msgstr "" -#: mod/contacts.php:873 -msgid "Advanced Contact Settings" +#: mod/admin.php:826 +msgid "RINO2 needs mcrypt php extension to work." msgstr "" -#: mod/contacts.php:916 -msgid "Mutual Friendship" +#: mod/admin.php:834 +msgid "Site settings updated." msgstr "" -#: mod/contacts.php:920 -msgid "is a fan of yours" +#: mod/admin.php:881 +msgid "No community page" msgstr "" -#: mod/contacts.php:924 -msgid "you are a fan of" +#: mod/admin.php:882 +msgid "Public postings from users of this site" msgstr "" -#: mod/contacts.php:994 -msgid "Toggle Blocked status" +#: mod/admin.php:883 +msgid "Global community page" msgstr "" -#: mod/contacts.php:1002 -msgid "Toggle Ignored status" +#: mod/admin.php:888 mod/contacts.php:530 +msgid "Never" msgstr "" -#: mod/contacts.php:1010 -msgid "Toggle Archive status" +#: mod/admin.php:889 +msgid "At post arrival" msgstr "" -#: mod/contacts.php:1018 -msgid "Delete contact" +#: mod/admin.php:897 mod/contacts.php:557 +msgid "Disabled" msgstr "" -#: mod/follow.php:19 mod/dfrn_request.php:875 -msgid "Submit Request" +#: mod/admin.php:899 +msgid "Users, Global Contacts" msgstr "" -#: mod/follow.php:30 -msgid "You already added this contact." +#: mod/admin.php:900 +msgid "Users, Global Contacts/fallback" msgstr "" -#: mod/follow.php:39 -msgid "Diaspora support isn't enabled. Contact can't be added." +#: mod/admin.php:904 +msgid "One month" msgstr "" -#: mod/follow.php:46 -msgid "OStatus support is disabled. Contact can't be added." +#: mod/admin.php:905 +msgid "Three months" msgstr "" -#: mod/follow.php:53 -msgid "The network type couldn't be detected. Contact can't be added." +#: mod/admin.php:906 +msgid "Half a year" msgstr "" -#: mod/follow.php:109 mod/dfrn_request.php:861 -msgid "Please answer the following:" +#: mod/admin.php:907 +msgid "One year" msgstr "" -#: mod/follow.php:110 mod/dfrn_request.php:862 -#, php-format -msgid "Does %s know you?" +#: mod/admin.php:912 +msgid "Multi user instance" msgstr "" -#: mod/follow.php:111 mod/dfrn_request.php:866 -msgid "Add a personal note:" +#: mod/admin.php:935 +msgid "Closed" msgstr "" -#: mod/follow.php:117 mod/dfrn_request.php:872 -msgid "Your Identity Address:" +#: mod/admin.php:936 +msgid "Requires approval" msgstr "" -#: mod/follow.php:180 -msgid "Contact added" +#: mod/admin.php:937 +msgid "Open" msgstr "" -#: mod/apps.php:11 -msgid "Applications" +#: mod/admin.php:941 +msgid "No SSL policy, links will track page SSL state" msgstr "" -#: mod/apps.php:14 -msgid "No installed applications." +#: mod/admin.php:942 +msgid "Force all links to use SSL" msgstr "" -#: mod/suggest.php:27 -msgid "Do you really want to delete this suggestion?" +#: mod/admin.php:943 +msgid "Self-signed certificate, use SSL for local links only (discouraged)" msgstr "" -#: mod/suggest.php:71 -msgid "" -"No suggestions available. If this is a new site, please try again in 24 " -"hours." +#: mod/admin.php:957 +msgid "File upload" msgstr "" -#: mod/suggest.php:84 mod/suggest.php:104 -msgid "Ignore/Hide" +#: mod/admin.php:958 +msgid "Policies" msgstr "" -#: mod/p.php:9 -msgid "Not Extended" +#: mod/admin.php:960 +msgid "Auto Discovered Contact Directory" msgstr "" -#: mod/display.php:473 -msgid "Item has been removed." +#: mod/admin.php:961 +msgid "Performance" msgstr "" -#: mod/common.php:86 -msgid "No contacts in common." +#: mod/admin.php:962 +msgid "Worker" msgstr "" -#: mod/newmember.php:6 -msgid "Welcome to Friendica" +#: mod/admin.php:963 +msgid "" +"Relocate - WARNING: advanced function. Could make this server unreachable." msgstr "" -#: mod/newmember.php:8 -msgid "New Member Checklist" +#: mod/admin.php:966 +msgid "Site name" msgstr "" -#: mod/newmember.php:12 -msgid "" -"We would like to offer some tips and links to help make your experience " -"enjoyable. Click any item to visit the relevant page. A link to this page " -"will be visible from your home page for two weeks after your initial " -"registration and then will quietly disappear." +#: mod/admin.php:967 +msgid "Host name" msgstr "" -#: mod/newmember.php:14 -msgid "Getting Started" +#: mod/admin.php:968 +msgid "Sender Email" msgstr "" -#: mod/newmember.php:18 -msgid "Friendica Walk-Through" -msgstr "" - -#: mod/newmember.php:18 +#: mod/admin.php:968 msgid "" -"On your 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" +"The email address your server shall use to send notification emails from." 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." +#: mod/admin.php:969 +msgid "Banner/Logo" msgstr "" -#: mod/newmember.php:28 -msgid "" -"Review the other settings, particularly the privacy settings. An unpublished " -"directory listing is like having an unlisted phone number. In general, you " -"should probably publish your listing - unless all of your friends and " -"potential friends know exactly how to find you." +#: mod/admin.php:970 +msgid "Shortcut icon" msgstr "" -#: mod/newmember.php:36 -msgid "" -"Upload a profile photo if you have not done so already. Studies have shown " -"that people with real photos of themselves are ten times more likely to make " -"friends than people who do not." +#: mod/admin.php:970 +msgid "Link to an icon that will be used for browsers." msgstr "" -#: mod/newmember.php:38 -msgid "Edit Your Profile" +#: mod/admin.php:971 +msgid "Touch icon" msgstr "" -#: mod/newmember.php:38 -msgid "" -"Edit your default profile to your liking. Review the " -"settings for hiding your list of friends and hiding the profile from unknown " -"visitors." +#: mod/admin.php:971 +msgid "Link to an icon that will be used for tablets and mobiles." msgstr "" -#: mod/newmember.php:40 -msgid "Profile Keywords" +#: mod/admin.php:972 +msgid "Additional Info" msgstr "" -#: mod/newmember.php:40 +#: mod/admin.php:972 +#, php-format msgid "" -"Set some public keywords for your default profile which describe your " -"interests. We may be able to find other people with similar interests and " -"suggest friendships." +"For public servers: you can add additional information here that will be " +"listed at %s/siteinfo." msgstr "" -#: mod/newmember.php:44 -msgid "Connecting" +#: mod/admin.php:973 +msgid "System language" msgstr "" -#: mod/newmember.php:51 -msgid "Importing Emails" +#: mod/admin.php:974 +msgid "System theme" msgstr "" -#: mod/newmember.php:51 +#: mod/admin.php:974 msgid "" -"Enter your email access information on your Connector Settings page if you " -"wish to import and interact with friends or mailing lists from your email " -"INBOX" +"Default system theme - may be over-ridden by user profiles - change theme settings" msgstr "" -#: mod/newmember.php:53 -msgid "Go to Your Contacts Page" +#: mod/admin.php:975 +msgid "Mobile system theme" msgstr "" -#: mod/newmember.php:53 -msgid "" -"Your Contacts page is your gateway to managing friendships and connecting " -"with friends on other networks. Typically you enter their address or site " -"URL in the Add New Contact dialog." +#: mod/admin.php:975 +msgid "Theme for mobile devices" msgstr "" -#: mod/newmember.php:55 -msgid "Go to Your Site's Directory" +#: mod/admin.php:976 +msgid "SSL link policy" msgstr "" -#: mod/newmember.php:55 -msgid "" -"The Directory page lets you find other people in this network or other " -"federated sites. Look for a Connect or Follow link on " -"their profile page. Provide your own Identity Address if requested." +#: mod/admin.php:976 +msgid "Determines whether generated links should be forced to use SSL" msgstr "" -#: mod/newmember.php:57 -msgid "Finding New People" +#: mod/admin.php:977 +msgid "Force SSL" msgstr "" -#: mod/newmember.php:57 +#: mod/admin.php:977 msgid "" -"On the side panel of the Contacts page are several tools to find new " -"friends. We can match people by interest, look up people by name or " -"interest, and provide suggestions based on network relationships. On a brand " -"new site, friend suggestions will usually begin to be populated within 24 " -"hours." +"Force all Non-SSL requests to SSL - Attention: on some systems it could lead " +"to endless loops." msgstr "" -#: mod/newmember.php:65 -msgid "Group Your Contacts" +#: mod/admin.php:978 +msgid "Old style 'Share'" msgstr "" -#: mod/newmember.php:65 -msgid "" -"Once you have made some friends, organize them into private conversation " -"groups from the sidebar of your Contacts page and then you can interact with " -"each group privately on your Network page." +#: mod/admin.php:978 +msgid "Deactivates the bbcode element 'share' for repeating items." msgstr "" -#: mod/newmember.php:68 -msgid "Why Aren't My Posts Public?" +#: mod/admin.php:979 +msgid "Hide help entry from navigation menu" msgstr "" -#: mod/newmember.php:68 +#: mod/admin.php:979 msgid "" -"Friendica respects your privacy. By default, your posts will only show up to " -"people you've added as friends. For more information, see the help section " -"from the link above." +"Hides the menu entry for the Help pages from the navigation menu. You can " +"still access it calling /help directly." msgstr "" -#: mod/newmember.php:73 -msgid "Getting Help" +#: mod/admin.php:980 +msgid "Single user instance" msgstr "" -#: mod/newmember.php:77 -msgid "Go to the Help Section" +#: mod/admin.php:980 +msgid "Make this instance multi-user or single-user for the named user" msgstr "" -#: mod/newmember.php:77 -msgid "" -"Our help pages may be consulted for detail on other program " -"features and resources." +#: mod/admin.php:981 +msgid "Maximum image size" msgstr "" -#: mod/removeme.php:46 mod/removeme.php:49 -msgid "Remove My Account" +#: mod/admin.php:981 +msgid "" +"Maximum size in bytes of uploaded images. Default is 0, which means no " +"limits." msgstr "" -#: mod/removeme.php:47 -msgid "" -"This will completely remove your account. Once this has been done it is not " -"recoverable." +#: mod/admin.php:982 +msgid "Maximum image length" msgstr "" -#: mod/removeme.php:48 -msgid "Please enter your password for verification:" +#: mod/admin.php:982 +msgid "" +"Maximum length in pixels of the longest side of uploaded images. Default is " +"-1, which means no limits." msgstr "" -#: mod/mood.php:133 -msgid "Mood" +#: mod/admin.php:983 +msgid "JPEG image quality" msgstr "" -#: mod/mood.php:134 -msgid "Set your current mood and tell your friends" +#: mod/admin.php:983 +msgid "" +"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is " +"100, which is full quality." msgstr "" -#: mod/editpost.php:17 mod/editpost.php:27 -msgid "Item not found" +#: mod/admin.php:985 +msgid "Register policy" msgstr "" -#: mod/editpost.php:40 -msgid "Edit post" +#: mod/admin.php:986 +msgid "Maximum Daily Registrations" msgstr "" -#: mod/network.php:398 -#, php-format +#: mod/admin.php:986 msgid "" -"Warning: This group contains %s member from a network that doesn't allow non " -"public messages." -msgid_plural "" -"Warning: This group contains %s members from a network that doesn't allow " -"non public messages." -msgstr[0] "" -msgstr[1] "" +"If registration is permitted above, this sets the maximum number of new user " +"registrations to accept per day. If register is set to closed, this setting " +"has no effect." +msgstr "" -#: mod/network.php:401 -msgid "Messages in this group won't be send to these receivers." +#: mod/admin.php:987 +msgid "Register text" msgstr "" -#: mod/network.php:529 -msgid "Private messages to this person are at risk of public disclosure." +#: mod/admin.php:987 +msgid "Will be displayed prominently on the registration page." msgstr "" -#: mod/network.php:534 -msgid "Invalid contact." +#: mod/admin.php:988 +msgid "Accounts abandoned after x days" msgstr "" -#: mod/network.php:827 -msgid "Commented Order" +#: mod/admin.php:988 +msgid "" +"Will not waste system resources polling external sites for abandonded " +"accounts. Enter 0 for no time limit." msgstr "" -#: mod/network.php:830 -msgid "Sort by Comment Date" +#: mod/admin.php:989 +msgid "Allowed friend domains" msgstr "" -#: mod/network.php:835 -msgid "Posted Order" +#: mod/admin.php:989 +msgid "" +"Comma separated list of domains which are allowed to establish friendships " +"with this site. Wildcards are accepted. Empty to allow any domains" msgstr "" -#: mod/network.php:838 -msgid "Sort by Post Date" +#: mod/admin.php:990 +msgid "Allowed email domains" msgstr "" -#: mod/network.php:849 -msgid "Posts that mention or involve you" +#: mod/admin.php:990 +msgid "" +"Comma separated list of domains which are allowed in email addresses for " +"registrations to this site. Wildcards are accepted. Empty to allow any " +"domains" msgstr "" -#: mod/network.php:857 -msgid "New" +#: mod/admin.php:991 +msgid "Block public" msgstr "" -#: mod/network.php:860 -msgid "Activity Stream - by date" +#: mod/admin.php:991 +msgid "" +"Check to block public access to all otherwise public personal pages on this " +"site unless you are currently logged in." msgstr "" -#: mod/network.php:868 -msgid "Shared Links" +#: mod/admin.php:992 +msgid "Force publish" msgstr "" -#: mod/network.php:871 -msgid "Interesting Links" +#: mod/admin.php:992 +msgid "" +"Check to force all profiles on this site to be listed in the site directory." msgstr "" -#: mod/network.php:879 -msgid "Starred" +#: mod/admin.php:993 +msgid "Global directory URL" msgstr "" -#: mod/network.php:882 -msgid "Favourite Posts" +#: mod/admin.php:993 +msgid "" +"URL to the global directory. If this is not set, the global directory is " +"completely unavailable to the application." msgstr "" -#: mod/community.php:27 -msgid "Not available." +#: mod/admin.php:994 +msgid "Allow threaded items" msgstr "" -#: mod/localtime.php:24 -msgid "Time Conversion" +#: mod/admin.php:994 +msgid "Allow infinite level threading for items on this site." +msgstr "" + +#: mod/admin.php:995 +msgid "Private posts by default for new users" +msgstr "" + +#: mod/admin.php:995 +msgid "" +"Set default post permissions for all new members to the default privacy " +"group rather than public." +msgstr "" + +#: mod/admin.php:996 +msgid "Don't include post content in email notifications" +msgstr "" + +#: mod/admin.php:996 +msgid "" +"Don't include the content of a post/comment/private message/etc. in the " +"email notifications that are sent out from this site, as a privacy measure." +msgstr "" + +#: mod/admin.php:997 +msgid "Disallow public access to addons listed in the apps menu." +msgstr "" + +#: mod/admin.php:997 +msgid "" +"Checking this box will restrict addons listed in the apps menu to members " +"only." +msgstr "" + +#: mod/admin.php:998 +msgid "Don't embed private images in posts" +msgstr "" + +#: mod/admin.php:998 +msgid "" +"Don't replace locally-hosted private photos in posts with an embedded copy " +"of the image. This means that contacts who receive posts containing private " +"photos will have to authenticate and load each image, which may take a while." +msgstr "" + +#: mod/admin.php:999 +msgid "Allow Users to set remote_self" +msgstr "" + +#: mod/admin.php:999 +msgid "" +"With checking this, every user is allowed to mark every contact as a " +"remote_self in the repair contact dialog. Setting this flag on a contact " +"causes mirroring every posting of that contact in the users stream." +msgstr "" + +#: mod/admin.php:1000 +msgid "Block multiple registrations" +msgstr "" + +#: mod/admin.php:1000 +msgid "Disallow users to register additional accounts for use as pages." +msgstr "" + +#: mod/admin.php:1001 +msgid "OpenID support" +msgstr "" + +#: mod/admin.php:1001 +msgid "OpenID support for registration and logins." +msgstr "" + +#: mod/admin.php:1002 +msgid "Fullname check" +msgstr "" + +#: mod/admin.php:1002 +msgid "" +"Force users to register with a space between firstname and lastname in Full " +"name, as an antispam measure" +msgstr "" + +#: mod/admin.php:1003 +msgid "UTF-8 Regular expressions" +msgstr "" + +#: mod/admin.php:1003 +msgid "Use PHP UTF8 regular expressions" +msgstr "" + +#: mod/admin.php:1004 +msgid "Community Page Style" +msgstr "" + +#: mod/admin.php:1004 +msgid "" +"Type of community page to show. 'Global community' shows every public " +"posting from an open distributed network that arrived on this server." +msgstr "" + +#: mod/admin.php:1005 +msgid "Posts per user on community page" +msgstr "" + +#: mod/admin.php:1005 +msgid "" +"The maximum number of posts per user on the community page. (Not valid for " +"'Global Community')" +msgstr "" + +#: mod/admin.php:1006 +msgid "Enable OStatus support" +msgstr "" + +#: mod/admin.php:1006 +msgid "" +"Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All " +"communications in OStatus are public, so privacy warnings will be " +"occasionally displayed." +msgstr "" + +#: mod/admin.php:1007 +msgid "OStatus conversation completion interval" +msgstr "" + +#: mod/admin.php:1007 +msgid "" +"How often shall the poller check for new entries in OStatus conversations? " +"This can be a very ressource task." +msgstr "" + +#: mod/admin.php:1008 +msgid "Only import OStatus threads from our contacts" +msgstr "" + +#: mod/admin.php:1008 +msgid "" +"Normally we import every content from our OStatus contacts. With this option " +"we only store threads that are started by a contact that is known on our " +"system." +msgstr "" + +#: mod/admin.php:1009 +msgid "OStatus support can only be enabled if threading is enabled." +msgstr "" + +#: mod/admin.php:1011 +msgid "" +"Diaspora support can't be enabled because Friendica was installed into a sub " +"directory." +msgstr "" + +#: mod/admin.php:1012 +msgid "Enable Diaspora support" +msgstr "" + +#: mod/admin.php:1012 +msgid "Provide built-in Diaspora network compatibility." +msgstr "" + +#: mod/admin.php:1013 +msgid "Only allow Friendica contacts" +msgstr "" + +#: mod/admin.php:1013 +msgid "" +"All contacts must use Friendica protocols. All other built-in communication " +"protocols disabled." +msgstr "" + +#: mod/admin.php:1014 +msgid "Verify SSL" +msgstr "" + +#: mod/admin.php:1014 +msgid "" +"If you wish, you can turn on strict certificate checking. This will mean you " +"cannot connect (at all) to self-signed SSL sites." +msgstr "" + +#: mod/admin.php:1015 +msgid "Proxy user" +msgstr "" + +#: mod/admin.php:1016 +msgid "Proxy URL" +msgstr "" + +#: mod/admin.php:1017 +msgid "Network timeout" +msgstr "" + +#: mod/admin.php:1017 +msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." +msgstr "" + +#: mod/admin.php:1018 +msgid "Delivery interval" +msgstr "" + +#: mod/admin.php:1018 +msgid "" +"Delay background delivery processes by this many seconds to reduce system " +"load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 " +"for large dedicated servers." +msgstr "" + +#: mod/admin.php:1019 +msgid "Poll interval" +msgstr "" + +#: mod/admin.php:1019 +msgid "" +"Delay background polling processes by this many seconds to reduce system " +"load. If 0, use delivery interval." +msgstr "" + +#: mod/admin.php:1020 +msgid "Maximum Load Average" +msgstr "" + +#: mod/admin.php:1020 +msgid "" +"Maximum system load before delivery and poll processes are deferred - " +"default 50." +msgstr "" + +#: mod/admin.php:1021 +msgid "Maximum Load Average (Frontend)" +msgstr "" + +#: mod/admin.php:1021 +msgid "Maximum system load before the frontend quits service - default 50." +msgstr "" + +#: mod/admin.php:1022 +msgid "Maximum table size for optimization" +msgstr "" + +#: mod/admin.php:1022 +msgid "" +"Maximum table size (in MB) for the automatic optimization - default 100 MB. " +"Enter -1 to disable it." +msgstr "" + +#: mod/admin.php:1023 +msgid "Minimum level of fragmentation" +msgstr "" + +#: mod/admin.php:1023 +msgid "" +"Minimum fragmenation level to start the automatic optimization - default " +"value is 30%." +msgstr "" + +#: mod/admin.php:1025 +msgid "Periodical check of global contacts" +msgstr "" + +#: mod/admin.php:1025 +msgid "" +"If enabled, the global contacts are checked periodically for missing or " +"outdated data and the vitality of the contacts and servers." +msgstr "" + +#: mod/admin.php:1026 +msgid "Days between requery" +msgstr "" + +#: mod/admin.php:1026 +msgid "Number of days after which a server is requeried for his contacts." +msgstr "" + +#: mod/admin.php:1027 +msgid "Discover contacts from other servers" +msgstr "" + +#: mod/admin.php:1027 +msgid "" +"Periodically query other servers for contacts. You can choose between " +"'users': the users on the remote system, 'Global Contacts': active contacts " +"that are known on the system. The fallback is meant for Redmatrix servers " +"and older friendica servers, where global contacts weren't available. The " +"fallback increases the server load, so the recommened setting is 'Users, " +"Global Contacts'." +msgstr "" + +#: mod/admin.php:1028 +msgid "Timeframe for fetching global contacts" +msgstr "" + +#: mod/admin.php:1028 +msgid "" +"When the discovery is activated, this value defines the timeframe for the " +"activity of the global contacts that are fetched from other servers." +msgstr "" + +#: mod/admin.php:1029 +msgid "Search the local directory" +msgstr "" + +#: mod/admin.php:1029 +msgid "" +"Search the local directory instead of the global directory. When searching " +"locally, every search will be executed on the global directory in the " +"background. This improves the search results when the search is repeated." +msgstr "" + +#: mod/admin.php:1031 +msgid "Publish server information" +msgstr "" + +#: mod/admin.php:1031 +msgid "" +"If enabled, general server and usage data will be published. The data " +"contains the name and version of the server, number of users with public " +"profiles, number of posts and the activated protocols and connectors. See the-federation.info for details." +msgstr "" + +#: mod/admin.php:1033 +msgid "Use MySQL full text engine" +msgstr "" + +#: mod/admin.php:1033 +msgid "" +"Activates the full text engine. Speeds up search - but can only search for " +"four and more characters." +msgstr "" + +#: mod/admin.php:1034 +msgid "Suppress Language" +msgstr "" + +#: mod/admin.php:1034 +msgid "Suppress language information in meta information about a posting." +msgstr "" + +#: mod/admin.php:1035 +msgid "Suppress Tags" +msgstr "" + +#: mod/admin.php:1035 +msgid "Suppress showing a list of hashtags at the end of the posting." +msgstr "" + +#: mod/admin.php:1036 +msgid "Path to item cache" +msgstr "" + +#: mod/admin.php:1036 +msgid "The item caches buffers generated bbcode and external images." +msgstr "" + +#: mod/admin.php:1037 +msgid "Cache duration in seconds" +msgstr "" + +#: mod/admin.php:1037 +msgid "" +"How long should the cache files be hold? Default value is 86400 seconds (One " +"day). To disable the item cache, set the value to -1." +msgstr "" + +#: mod/admin.php:1038 +msgid "Maximum numbers of comments per post" +msgstr "" + +#: mod/admin.php:1038 +msgid "How much comments should be shown for each post? Default value is 100." +msgstr "" + +#: mod/admin.php:1039 +msgid "Path for lock file" +msgstr "" + +#: mod/admin.php:1039 +msgid "" +"The lock file is used to avoid multiple pollers at one time. Only define a " +"folder here." +msgstr "" + +#: mod/admin.php:1040 +msgid "Temp path" +msgstr "" + +#: mod/admin.php:1040 +msgid "" +"If you have a restricted system where the webserver can't access the system " +"temp path, enter another path here." +msgstr "" + +#: mod/admin.php:1041 +msgid "Base path to installation" +msgstr "" + +#: mod/admin.php:1041 +msgid "" +"If the system cannot detect the correct path to your installation, enter the " +"correct path here. This setting should only be set if you are using a " +"restricted system and symbolic links to your webroot." +msgstr "" + +#: mod/admin.php:1042 +msgid "Disable picture proxy" +msgstr "" + +#: mod/admin.php:1042 +msgid "" +"The picture proxy increases performance and privacy. It shouldn't be used on " +"systems with very low bandwith." +msgstr "" + +#: mod/admin.php:1043 +msgid "Enable old style pager" +msgstr "" + +#: mod/admin.php:1043 +msgid "" +"The old style pager has page numbers but slows down massively the page speed." +msgstr "" + +#: mod/admin.php:1044 +msgid "Only search in tags" +msgstr "" + +#: mod/admin.php:1044 +msgid "On large systems the text search can slow down the system extremely." +msgstr "" + +#: mod/admin.php:1046 +msgid "New base url" +msgstr "" + +#: mod/admin.php:1046 +msgid "" +"Change base url for this server. Sends relocate message to all DFRN contacts " +"of all users." +msgstr "" + +#: mod/admin.php:1048 +msgid "RINO Encryption" +msgstr "" + +#: mod/admin.php:1048 +msgid "Encryption layer between nodes." +msgstr "" + +#: mod/admin.php:1049 +msgid "Embedly API key" +msgstr "" + +#: mod/admin.php:1049 +msgid "" +"Embedly is used to fetch additional data for " +"web pages. This is an optional parameter." +msgstr "" + +#: mod/admin.php:1051 +msgid "Enable 'worker' background processing" +msgstr "" + +#: mod/admin.php:1051 +msgid "" +"The worker background processing limits the number of parallel background " +"jobs to a maximum number and respects the system load." +msgstr "" + +#: mod/admin.php:1052 +msgid "Maximum number of parallel workers" msgstr "" -#: mod/localtime.php:26 +#: mod/admin.php:1052 msgid "" -"Friendica provides this service for sharing events with other networks and " -"friends in unknown timezones." +"On shared hosters set this to 2. On larger systems, values of 10 are great. " +"Default value is 4." msgstr "" -#: mod/localtime.php:30 -#, php-format -msgid "UTC time: %s" +#: mod/admin.php:1053 +msgid "Don't use 'proc_open' with the worker" msgstr "" -#: mod/localtime.php:33 -#, php-format -msgid "Current timezone: %s" +#: mod/admin.php:1053 +msgid "" +"Enable this if your system doesn't allow the use of 'proc_open'. This can " +"happen on shared hosters. If this is enabled you should increase the " +"frequency of poller calls in your crontab." msgstr "" -#: mod/localtime.php:36 -#, php-format -msgid "Converted localtime: %s" +#: mod/admin.php:1054 +msgid "Enable fastlane" msgstr "" -#: mod/localtime.php:41 -msgid "Please select your timezone:" +#: mod/admin.php:1054 +msgid "" +"When enabed, the fastlane mechanism starts an additional worker if processes " +"with higher priority are blocked by processes of lower priority." msgstr "" -#: mod/bookmarklet.php:41 -msgid "The post was created" +#: mod/admin.php:1055 +msgid "Enable frontend worker" msgstr "" -#: mod/group.php:29 -msgid "Group created." +#: mod/admin.php:1055 +msgid "" +"When enabled the Worker process is triggered when backend access is " +"performed (e.g. messages being delivered). On smaller sites you might want " +"to call yourdomain.tld/worker on a regular basis via an external cron job. " +"You should only enable this option if you cannot utilize cron/scheduled jobs " +"on your server. The worker background process needs to be activated for this." msgstr "" -#: mod/group.php:35 -msgid "Could not create group." +#: mod/admin.php:1084 +msgid "Update has been marked successful" msgstr "" -#: mod/group.php:47 mod/group.php:140 -msgid "Group not found." +#: mod/admin.php:1092 +#, php-format +msgid "Database structure update %s was successfully applied." msgstr "" -#: mod/group.php:60 -msgid "Group name changed." +#: mod/admin.php:1095 +#, php-format +msgid "Executing of database structure update %s failed with error: %s" msgstr "" -#: mod/group.php:87 -msgid "Save Group" +#: mod/admin.php:1107 +#, php-format +msgid "Executing %s failed with error: %s" msgstr "" -#: mod/group.php:93 -msgid "Create a group of contacts/friends." +#: mod/admin.php:1110 +#, php-format +msgid "Update %s was successfully applied." msgstr "" -#: mod/group.php:113 -msgid "Group removed." +#: mod/admin.php:1114 +#, php-format +msgid "Update %s did not return a status. Unknown if it succeeded." msgstr "" -#: mod/group.php:115 -msgid "Unable to remove group." +#: mod/admin.php:1116 +#, php-format +msgid "There was no additional update function %s that needed to be called." msgstr "" -#: mod/group.php:177 -msgid "Group Editor" +#: mod/admin.php:1135 +msgid "No failed updates." msgstr "" -#: mod/group.php:190 -msgid "Members" +#: mod/admin.php:1136 +msgid "Check database structure" msgstr "" -#: mod/dfrn_request.php:101 -msgid "This introduction has already been accepted." +#: mod/admin.php:1141 +msgid "Failed Updates" msgstr "" -#: mod/dfrn_request.php:124 mod/dfrn_request.php:520 -msgid "Profile location is not valid or does not contain profile information." +#: mod/admin.php:1142 +msgid "" +"This does not include updates prior to 1139, which did not return a status." msgstr "" -#: mod/dfrn_request.php:129 mod/dfrn_request.php:525 -msgid "Warning: profile location has no identifiable owner name." +#: mod/admin.php:1143 +msgid "Mark success (if update was manually applied)" msgstr "" -#: mod/dfrn_request.php:131 mod/dfrn_request.php:527 -msgid "Warning: profile location has no profile photo." +#: mod/admin.php:1144 +msgid "Attempt to execute this update step automatically" msgstr "" -#: mod/dfrn_request.php:134 mod/dfrn_request.php:530 +#: mod/admin.php:1178 #, php-format -msgid "%d required parameter was not found at the given location" -msgid_plural "%d required parameters were not found at the given location" +msgid "" +"\n" +"\t\t\tDear %1$s,\n" +"\t\t\t\tthe administrator of %2$s has set up an account for you." +msgstr "" + +#: mod/admin.php:1181 +#, php-format +msgid "" +"\n" +"\t\t\tThe login details are as follows:\n" +"\n" +"\t\t\tSite Location:\t%1$s\n" +"\t\t\tLogin Name:\t\t%2$s\n" +"\t\t\tPassword:\t\t%3$s\n" +"\n" +"\t\t\tYou may change your password from your account \"Settings\" page after " +"logging\n" +"\t\t\tin.\n" +"\n" +"\t\t\tPlease take a few moments to review the other account settings on that " +"page.\n" +"\n" +"\t\t\tYou may also wish to add some basic information to your default " +"profile\n" +"\t\t\t(on the \"Profiles\" page) so that other people can easily find you.\n" +"\n" +"\t\t\tWe recommend setting your full name, adding a profile photo,\n" +"\t\t\tadding some profile \"keywords\" (very useful in making new friends) - " +"and\n" +"\t\t\tperhaps what country you live in; if you do not wish to be more " +"specific\n" +"\t\t\tthan that.\n" +"\n" +"\t\t\tWe fully respect your right to privacy, and none of these items are " +"necessary.\n" +"\t\t\tIf you are new and do not know anybody here, they may help\n" +"\t\t\tyou to make some new and interesting friends.\n" +"\n" +"\t\t\tThank you and welcome to %4$s." +msgstr "" + +#: mod/admin.php:1225 +#, php-format +msgid "%s user blocked/unblocked" +msgid_plural "%s users blocked/unblocked" msgstr[0] "" msgstr[1] "" -#: mod/dfrn_request.php:180 -msgid "Introduction complete." -msgstr "" +#: mod/admin.php:1232 +#, php-format +msgid "%s user deleted" +msgid_plural "%s users deleted" +msgstr[0] "" +msgstr[1] "" -#: mod/dfrn_request.php:222 -msgid "Unrecoverable protocol error." +#: mod/admin.php:1279 +#, php-format +msgid "User '%s' deleted" msgstr "" -#: mod/dfrn_request.php:250 -msgid "Profile unavailable." +#: mod/admin.php:1287 +#, php-format +msgid "User '%s' unblocked" msgstr "" -#: mod/dfrn_request.php:277 +#: mod/admin.php:1287 #, php-format -msgid "%s has received too many connection requests today." +msgid "User '%s' blocked" msgstr "" -#: mod/dfrn_request.php:278 -msgid "Spam protection measures have been invoked." +#: mod/admin.php:1396 mod/admin.php:1422 +msgid "Register date" msgstr "" -#: mod/dfrn_request.php:279 -msgid "Friends are advised to please try again in 24 hours." +#: mod/admin.php:1396 mod/admin.php:1422 +msgid "Last login" msgstr "" -#: mod/dfrn_request.php:341 -msgid "Invalid locator" +#: mod/admin.php:1396 mod/admin.php:1422 +msgid "Last item" msgstr "" -#: mod/dfrn_request.php:350 -msgid "Invalid email address." +#: mod/admin.php:1405 +msgid "Add User" msgstr "" -#: mod/dfrn_request.php:375 -msgid "This account has not been configured for email. Request failed." +#: mod/admin.php:1406 +msgid "select all" msgstr "" -#: mod/dfrn_request.php:478 -msgid "You have already introduced yourself here." +#: mod/admin.php:1407 +msgid "User registrations waiting for confirm" msgstr "" -#: mod/dfrn_request.php:482 -#, php-format -msgid "Apparently you are already friends with %s." +#: mod/admin.php:1408 +msgid "User waiting for permanent deletion" msgstr "" -#: mod/dfrn_request.php:503 -msgid "Invalid profile URL." +#: mod/admin.php:1409 +msgid "Request date" msgstr "" -#: mod/dfrn_request.php:604 -msgid "Your introduction has been sent." +#: mod/admin.php:1410 +msgid "No registrations." msgstr "" -#: mod/dfrn_request.php:644 -msgid "" -"Remote subscription can't be done for your network. Please subscribe " -"directly on your system." +#: mod/admin.php:1411 +msgid "Note from the user" msgstr "" -#: mod/dfrn_request.php:664 -msgid "Please login to confirm introduction." +#: mod/admin.php:1413 +msgid "Deny" msgstr "" -#: mod/dfrn_request.php:674 -msgid "" -"Incorrect identity currently logged in. Please login to this profile." +#: mod/admin.php:1415 mod/contacts.php:605 mod/contacts.php:805 +#: mod/contacts.php:983 +msgid "Block" msgstr "" -#: mod/dfrn_request.php:688 mod/dfrn_request.php:705 -msgid "Confirm" +#: mod/admin.php:1416 mod/contacts.php:605 mod/contacts.php:805 +#: mod/contacts.php:983 +msgid "Unblock" msgstr "" -#: mod/dfrn_request.php:700 -msgid "Hide this contact" +#: mod/admin.php:1417 +msgid "Site admin" msgstr "" -#: mod/dfrn_request.php:703 -#, php-format -msgid "Welcome home %s." +#: mod/admin.php:1418 +msgid "Account expired" msgstr "" -#: mod/dfrn_request.php:704 -#, php-format -msgid "Please confirm your introduction/connection request to %s." +#: mod/admin.php:1421 +msgid "New User" +msgstr "" + +#: mod/admin.php:1422 +msgid "Deleted since" +msgstr "" + +#: mod/admin.php:1427 +msgid "" +"Selected users will be deleted!\\n\\nEverything these users had posted on " +"this site will be permanently deleted!\\n\\nAre you sure?" msgstr "" -#: mod/dfrn_request.php:833 +#: mod/admin.php:1428 msgid "" -"Please enter your 'Identity Address' from one of the following supported " -"communications networks:" +"The user {0} will be deleted!\\n\\nEverything this user has posted on this " +"site will be permanently deleted!\\n\\nAre you sure?" msgstr "" -#: mod/dfrn_request.php:854 -#, php-format -msgid "" -"If you are not yet a member of the free social web, follow this link to find a public Friendica site and join us today." +#: mod/admin.php:1438 +msgid "Name of the new user." msgstr "" -#: mod/dfrn_request.php:859 -msgid "Friend/Connection Request" +#: mod/admin.php:1439 +msgid "Nickname" msgstr "" -#: mod/dfrn_request.php:860 -msgid "" -"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, " -"testuser@identi.ca" +#: mod/admin.php:1439 +msgid "Nickname of the new user." msgstr "" -#: mod/dfrn_request.php:869 -msgid "StatusNet/Federated Social Web" +#: mod/admin.php:1440 +msgid "Email address of the new user." msgstr "" -#: mod/dfrn_request.php:871 +#: mod/admin.php:1483 #, php-format -msgid "" -" - please do not use this form. Instead, enter %s into your Diaspora search " -"bar." +msgid "Plugin %s disabled." msgstr "" -#: mod/profile_photo.php:44 -msgid "Image uploaded but image cropping failed." +#: mod/admin.php:1487 +#, php-format +msgid "Plugin %s enabled." msgstr "" -#: mod/profile_photo.php:77 mod/profile_photo.php:84 mod/profile_photo.php:91 -#: mod/profile_photo.php:314 -#, php-format -msgid "Image size reduction [%s] failed." +#: mod/admin.php:1498 mod/admin.php:1734 +msgid "Disable" msgstr "" -#: mod/profile_photo.php:124 -msgid "" -"Shift-reload the page or clear browser cache if the new photo does not " -"display immediately." +#: mod/admin.php:1500 mod/admin.php:1736 +msgid "Enable" msgstr "" -#: mod/profile_photo.php:134 -msgid "Unable to process image" +#: mod/admin.php:1523 mod/admin.php:1781 +msgid "Toggle" msgstr "" -#: mod/profile_photo.php:248 -msgid "Upload File:" +#: mod/admin.php:1531 mod/admin.php:1790 +msgid "Author: " msgstr "" -#: mod/profile_photo.php:249 -msgid "Select a profile:" +#: mod/admin.php:1532 mod/admin.php:1791 +msgid "Maintainer: " msgstr "" -#: mod/profile_photo.php:251 -msgid "Upload" +#: mod/admin.php:1584 +msgid "Reload active plugins" msgstr "" -#: mod/profile_photo.php:254 -msgid "or" +#: mod/admin.php:1589 +#, php-format +msgid "" +"There are currently no plugins available on your node. You can find the " +"official plugin repository at %1$s and might find other interesting plugins " +"in the open plugin registry at %2$s" msgstr "" -#: mod/profile_photo.php:254 -msgid "skip this step" +#: mod/admin.php:1694 +msgid "No themes found." msgstr "" -#: mod/profile_photo.php:254 -msgid "select a photo from your photo albums" +#: mod/admin.php:1772 +msgid "Screenshot" msgstr "" -#: mod/profile_photo.php:268 -msgid "Crop Image" +#: mod/admin.php:1832 +msgid "Reload active themes" msgstr "" -#: mod/profile_photo.php:269 -msgid "Please adjust the image cropping for optimum viewing." +#: mod/admin.php:1837 +#, php-format +msgid "No themes found on the system. They should be paced in %1$s" msgstr "" -#: mod/profile_photo.php:271 -msgid "Done Editing" +#: mod/admin.php:1838 +msgid "[Experimental]" msgstr "" -#: mod/profile_photo.php:305 -msgid "Image uploaded successfully." +#: mod/admin.php:1839 +msgid "[Unsupported]" msgstr "" -#: mod/register.php:93 -msgid "" -"Registration successful. Please check your email for further instructions." +#: mod/admin.php:1863 +msgid "Log settings updated." msgstr "" -#: mod/register.php:98 -#, php-format -msgid "" -"Failed to send email message. Here your accout details:
login: %s
" -"password: %s

You can change your password after login." +#: mod/admin.php:1895 +msgid "PHP log currently enabled." msgstr "" -#: mod/register.php:105 -msgid "Registration successful." +#: mod/admin.php:1897 +msgid "PHP log currently disabled." msgstr "" -#: mod/register.php:111 -msgid "Your registration can not be processed." +#: mod/admin.php:1906 +msgid "Clear" msgstr "" -#: mod/register.php:160 -msgid "Your registration is pending approval by the site owner." +#: mod/admin.php:1911 +msgid "Enable Debugging" msgstr "" -#: mod/register.php:226 -msgid "" -"You may (optionally) fill in this form via OpenID by supplying your OpenID " -"and clicking 'Register'." +#: mod/admin.php:1912 +msgid "Log file" msgstr "" -#: mod/register.php:227 +#: mod/admin.php:1912 msgid "" -"If you are not familiar with OpenID, please leave that field blank and fill " -"in the rest of the items." +"Must be writable by web server. Relative to your Friendica top-level " +"directory." msgstr "" -#: mod/register.php:228 -msgid "Your OpenID (optional): " +#: mod/admin.php:1913 +msgid "Log level" msgstr "" -#: mod/register.php:242 -msgid "Include your profile in member directory?" +#: mod/admin.php:1916 +msgid "PHP logging" msgstr "" -#: mod/register.php:267 -msgid "Note for the admin" +#: mod/admin.php:1917 +msgid "" +"To enable logging of PHP errors and warnings you can add the following to " +"the .htconfig.php file of your installation. The filename set in the " +"'error_log' line is relative to the friendica top-level directory and must " +"be writeable by the web server. The option '1' for 'log_errors' and " +"'display_errors' is to enable these options, set to '0' to disable them." msgstr "" -#: mod/register.php:267 -msgid "Leave a message for the admin, why you want to join this node" +#: mod/admin.php:2045 +#, php-format +msgid "Lock feature %s" msgstr "" -#: mod/register.php:268 -msgid "Membership on this site is by invitation only." +#: mod/admin.php:2053 +msgid "Manage Additional Features" msgstr "" -#: mod/register.php:269 -msgid "Your invitation ID: " -msgstr "" +#: mod/contacts.php:128 +#, php-format +msgid "%d contact edited." +msgid_plural "%d contacts edited." +msgstr[0] "" +msgstr[1] "" -#: mod/register.php:280 -msgid "Your Full Name (e.g. Joe Smith, real or real-looking): " +#: mod/contacts.php:159 mod/contacts.php:368 +msgid "Could not access contact record." msgstr "" -#: mod/register.php:281 -msgid "Your Email Address: " +#: mod/contacts.php:173 +msgid "Could not locate selected profile." msgstr "" -#: mod/register.php:283 mod/settings.php:1271 -msgid "New Password:" +#: mod/contacts.php:206 +msgid "Contact updated." msgstr "" -#: mod/register.php:283 -msgid "Leave empty for an auto generated password." +#: mod/contacts.php:208 mod/dfrn_request.php:583 +msgid "Failed to update contact record." msgstr "" -#: mod/register.php:284 mod/settings.php:1272 -msgid "Confirm:" +#: mod/contacts.php:389 +msgid "Contact has been blocked" msgstr "" -#: mod/register.php:285 -msgid "" -"Choose a profile nickname. This must begin with a text character. Your " -"profile address on this site will then be 'nickname@$sitename'." +#: mod/contacts.php:389 +msgid "Contact has been unblocked" msgstr "" -#: mod/register.php:286 -msgid "Choose a nickname: " +#: mod/contacts.php:400 +msgid "Contact has been ignored" msgstr "" -#: mod/register.php:296 -msgid "Import your profile to this friendica instance" +#: mod/contacts.php:400 +msgid "Contact has been unignored" msgstr "" -#: mod/settings.php:60 -msgid "Display" +#: mod/contacts.php:412 +msgid "Contact has been archived" msgstr "" -#: mod/settings.php:67 mod/settings.php:886 -msgid "Social Networks" +#: mod/contacts.php:412 +msgid "Contact has been unarchived" msgstr "" -#: mod/settings.php:88 -msgid "Connected apps" +#: mod/contacts.php:437 +msgid "Drop contact" msgstr "" -#: mod/settings.php:102 -msgid "Remove account" +#: mod/contacts.php:440 mod/contacts.php:801 +msgid "Do you really want to delete this contact?" msgstr "" -#: mod/settings.php:155 -msgid "Missing some important data!" +#: mod/contacts.php:457 +msgid "Contact has been removed." msgstr "" -#: mod/settings.php:269 -msgid "Failed to connect with email account using the settings provided." +#: mod/contacts.php:498 +#, php-format +msgid "You are mutual friends with %s" msgstr "" -#: mod/settings.php:274 -msgid "Email settings updated." +#: mod/contacts.php:502 +#, php-format +msgid "You are sharing with %s" msgstr "" -#: mod/settings.php:289 -msgid "Features updated" +#: mod/contacts.php:507 +#, php-format +msgid "%s is sharing with you" msgstr "" -#: mod/settings.php:359 -msgid "Relocate message has been send to your contacts" +#: mod/contacts.php:527 +msgid "Private communications are not available for this contact." msgstr "" -#: mod/settings.php:378 -msgid "Empty passwords are not allowed. Password unchanged." +#: mod/contacts.php:534 +msgid "(Update was successful)" msgstr "" -#: mod/settings.php:386 -msgid "Wrong password." +#: mod/contacts.php:534 +msgid "(Update was not successful)" +msgstr "" + +#: mod/contacts.php:536 mod/contacts.php:964 +msgid "Suggest friends" msgstr "" -#: mod/settings.php:397 -msgid "Password changed." +#: mod/contacts.php:540 +#, php-format +msgid "Network type: %s" msgstr "" -#: mod/settings.php:399 -msgid "Password update failed. Please try again." +#: mod/contacts.php:553 +msgid "Communications lost with this contact!" msgstr "" -#: mod/settings.php:479 -msgid " Please use a shorter name." +#: mod/contacts.php:556 +msgid "Fetch further information for feeds" msgstr "" -#: mod/settings.php:481 -msgid " Name too short." +#: mod/contacts.php:557 +msgid "Fetch information" msgstr "" -#: mod/settings.php:490 -msgid "Wrong Password" +#: mod/contacts.php:557 +msgid "Fetch information and keywords" msgstr "" -#: mod/settings.php:495 -msgid " Not valid email." +#: mod/contacts.php:575 +msgid "Contact" msgstr "" -#: mod/settings.php:501 -msgid " Cannot change to that email." +#: mod/contacts.php:578 +msgid "Profile Visibility" msgstr "" -#: mod/settings.php:557 -msgid "Private forum has no privacy permissions. Using default privacy group." +#: mod/contacts.php:579 +#, php-format +msgid "" +"Please choose the profile you would like to display to %s when viewing your " +"profile securely." msgstr "" -#: mod/settings.php:561 -msgid "Private forum has no privacy permissions and no default privacy group." +#: mod/contacts.php:580 +msgid "Contact Information / Notes" msgstr "" -#: mod/settings.php:601 -msgid "Settings updated." +#: mod/contacts.php:581 +msgid "Edit contact notes" msgstr "" -#: mod/settings.php:677 mod/settings.php:703 mod/settings.php:739 -msgid "Add application" +#: mod/contacts.php:587 +msgid "Block/Unblock contact" msgstr "" -#: mod/settings.php:681 mod/settings.php:707 -msgid "Consumer Key" +#: mod/contacts.php:588 +msgid "Ignore contact" msgstr "" -#: mod/settings.php:682 mod/settings.php:708 -msgid "Consumer Secret" +#: mod/contacts.php:589 +msgid "Repair URL settings" msgstr "" -#: mod/settings.php:683 mod/settings.php:709 -msgid "Redirect" +#: mod/contacts.php:590 +msgid "View conversations" msgstr "" -#: mod/settings.php:684 mod/settings.php:710 -msgid "Icon url" +#: mod/contacts.php:596 +msgid "Last update:" msgstr "" -#: mod/settings.php:695 -msgid "You can't edit this application." +#: mod/contacts.php:598 +msgid "Update public posts" msgstr "" -#: mod/settings.php:738 -msgid "Connected Apps" +#: mod/contacts.php:600 mod/contacts.php:974 +msgid "Update now" msgstr "" -#: mod/settings.php:742 -msgid "Client key starts with" +#: mod/contacts.php:606 mod/contacts.php:806 mod/contacts.php:991 +msgid "Unignore" msgstr "" -#: mod/settings.php:743 -msgid "No name" +#: mod/contacts.php:610 +msgid "Currently blocked" msgstr "" -#: mod/settings.php:744 -msgid "Remove authorization" +#: mod/contacts.php:611 +msgid "Currently ignored" msgstr "" -#: mod/settings.php:756 -msgid "No Plugin settings configured" +#: mod/contacts.php:612 +msgid "Currently archived" msgstr "" -#: mod/settings.php:764 -msgid "Plugin Settings" +#: mod/contacts.php:613 +msgid "" +"Replies/likes to your public posts may still be visible" msgstr "" -#: mod/settings.php:786 -msgid "Additional Features" +#: mod/contacts.php:614 +msgid "Notification for new posts" msgstr "" -#: mod/settings.php:796 mod/settings.php:800 -msgid "General Social Media Settings" +#: mod/contacts.php:614 +msgid "Send a notification of every new post of this contact" msgstr "" -#: mod/settings.php:806 -msgid "Disable intelligent shortening" +#: mod/contacts.php:617 +msgid "Blacklisted keywords" msgstr "" -#: mod/settings.php:808 +#: mod/contacts.php:617 msgid "" -"Normally the system tries to find the best link to add to shortened posts. " -"If this option is enabled then every shortened post will always point to the " -"original friendica post." +"Comma separated list of keywords that should not be converted to hashtags, " +"when \"Fetch information and keywords\" is selected" msgstr "" -#: mod/settings.php:814 -msgid "Automatically follow any GNU Social (OStatus) followers/mentioners" +#: mod/contacts.php:635 +msgid "Actions" msgstr "" -#: mod/settings.php:816 -msgid "" -"If you receive a message from an unknown OStatus user, this option decides " -"what to do. If it is checked, a new contact will be created for every " -"unknown user." +#: mod/contacts.php:638 +msgid "Contact Settings" msgstr "" -#: mod/settings.php:822 -msgid "Default group for OStatus contacts" +#: mod/contacts.php:684 +msgid "Suggestions" msgstr "" -#: mod/settings.php:828 -msgid "Your legacy GNU Social account" +#: mod/contacts.php:687 +msgid "Suggest potential friends" msgstr "" -#: mod/settings.php:830 -msgid "" -"If you enter your old GNU Social/Statusnet account name here (in the format " -"user@domain.tld), your contacts will be added automatically. The field will " -"be emptied when done." +#: mod/contacts.php:695 +msgid "Show all contacts" msgstr "" -#: mod/settings.php:833 -msgid "Repair OStatus subscriptions" +#: mod/contacts.php:700 +msgid "Unblocked" msgstr "" -#: mod/settings.php:842 mod/settings.php:843 -#, php-format -msgid "Built-in support for %s connectivity is %s" +#: mod/contacts.php:703 +msgid "Only show unblocked contacts" msgstr "" -#: mod/settings.php:842 mod/settings.php:843 -msgid "enabled" +#: mod/contacts.php:709 +msgid "Blocked" msgstr "" -#: mod/settings.php:842 mod/settings.php:843 -msgid "disabled" +#: mod/contacts.php:712 +msgid "Only show blocked contacts" msgstr "" -#: mod/settings.php:843 -msgid "GNU Social (OStatus)" +#: mod/contacts.php:718 +msgid "Ignored" msgstr "" -#: mod/settings.php:879 -msgid "Email access is disabled on this site." +#: mod/contacts.php:721 +msgid "Only show ignored contacts" msgstr "" -#: mod/settings.php:891 -msgid "Email/Mailbox Setup" +#: mod/contacts.php:727 +msgid "Archived" msgstr "" -#: mod/settings.php:892 -msgid "" -"If you wish to communicate with email contacts using this service " -"(optional), please specify how to connect to your mailbox." +#: mod/contacts.php:730 +msgid "Only show archived contacts" msgstr "" -#: mod/settings.php:893 -msgid "Last successful email check:" +#: mod/contacts.php:736 +msgid "Hidden" msgstr "" -#: mod/settings.php:895 -msgid "IMAP server name:" +#: mod/contacts.php:739 +msgid "Only show hidden contacts" msgstr "" -#: mod/settings.php:896 -msgid "IMAP port:" +#: mod/contacts.php:796 +msgid "Search your contacts" msgstr "" -#: mod/settings.php:897 -msgid "Security:" +#: mod/contacts.php:807 mod/contacts.php:999 +msgid "Archive" msgstr "" -#: mod/settings.php:897 mod/settings.php:902 -msgid "None" +#: mod/contacts.php:807 mod/contacts.php:999 +msgid "Unarchive" msgstr "" -#: mod/settings.php:898 -msgid "Email login name:" +#: mod/contacts.php:810 +msgid "Batch Actions" msgstr "" -#: mod/settings.php:899 -msgid "Email password:" +#: mod/contacts.php:856 +msgid "View all contacts" msgstr "" -#: mod/settings.php:900 -msgid "Reply-to address:" +#: mod/contacts.php:866 +msgid "View all common friends" msgstr "" -#: mod/settings.php:901 -msgid "Send public posts to all email contacts:" +#: mod/contacts.php:873 +msgid "Advanced Contact Settings" msgstr "" -#: mod/settings.php:902 -msgid "Action after import:" +#: mod/contacts.php:907 +msgid "Mutual Friendship" msgstr "" -#: mod/settings.php:902 -msgid "Move to folder" +#: mod/contacts.php:911 +msgid "is a fan of yours" msgstr "" -#: mod/settings.php:903 -msgid "Move to folder:" +#: mod/contacts.php:915 +msgid "you are a fan of" msgstr "" -#: mod/settings.php:994 -msgid "Display Settings" +#: mod/contacts.php:985 +msgid "Toggle Blocked status" msgstr "" -#: mod/settings.php:1000 mod/settings.php:1023 -msgid "Display Theme:" +#: mod/contacts.php:993 +msgid "Toggle Ignored status" msgstr "" -#: mod/settings.php:1001 -msgid "Mobile Theme:" +#: mod/contacts.php:1001 +msgid "Toggle Archive status" msgstr "" -#: mod/settings.php:1002 -msgid "Suppress warning of insecure networks" +#: mod/contacts.php:1009 +msgid "Delete contact" msgstr "" -#: mod/settings.php:1002 +#: mod/dfrn_confirm.php:127 msgid "" -"Should the system suppress the warning that the current group contains " -"members of networks that can't receive non public postings." +"This may occasionally happen if contact was requested by both persons and it " +"has already been approved." msgstr "" -#: mod/settings.php:1003 -msgid "Update browser every xx seconds" +#: mod/dfrn_confirm.php:246 +msgid "Response from remote site was not understood." msgstr "" -#: mod/settings.php:1003 -msgid "Minimum of 10 seconds. Enter -1 to disable it." +#: mod/dfrn_confirm.php:255 mod/dfrn_confirm.php:260 +msgid "Unexpected response from remote site: " msgstr "" -#: mod/settings.php:1004 -msgid "Number of items to display per page:" +#: mod/dfrn_confirm.php:269 +msgid "Confirmation completed successfully." msgstr "" -#: mod/settings.php:1004 mod/settings.php:1005 -msgid "Maximum of 100 items" +#: mod/dfrn_confirm.php:271 mod/dfrn_confirm.php:285 mod/dfrn_confirm.php:292 +msgid "Remote site reported: " msgstr "" -#: mod/settings.php:1005 -msgid "Number of items to display per page when viewed from mobile device:" +#: mod/dfrn_confirm.php:283 +msgid "Temporary failure. Please wait and try again." msgstr "" -#: mod/settings.php:1006 -msgid "Don't show emoticons" +#: mod/dfrn_confirm.php:290 +msgid "Introduction failed or was revoked." msgstr "" -#: mod/settings.php:1007 -msgid "Calendar" +#: mod/dfrn_confirm.php:419 +msgid "Unable to set contact photo." msgstr "" -#: mod/settings.php:1008 -msgid "Beginning of week:" +#: mod/dfrn_confirm.php:557 +#, php-format +msgid "No user record found for '%s' " msgstr "" -#: mod/settings.php:1009 -msgid "Don't show notices" +#: mod/dfrn_confirm.php:567 +msgid "Our site encryption key is apparently messed up." msgstr "" -#: mod/settings.php:1010 -msgid "Infinite scroll" +#: mod/dfrn_confirm.php:578 +msgid "Empty site URL was provided or URL could not be decrypted by us." msgstr "" -#: mod/settings.php:1011 -msgid "Automatic updates only at the top of the network page" +#: mod/dfrn_confirm.php:599 +msgid "Contact record was not found for you on our site." msgstr "" -#: mod/settings.php:1012 -msgid "Bandwith Saver Mode" +#: mod/dfrn_confirm.php:613 +#, php-format +msgid "Site public key not available in contact record for URL %s." msgstr "" -#: mod/settings.php:1012 +#: mod/dfrn_confirm.php:633 msgid "" -"When enabled, embedded content is not displayed on automatic updates, they " -"only show on page reload." +"The ID provided by your system is a duplicate on our system. It should work " +"if you try again." msgstr "" -#: mod/settings.php:1014 -msgid "General Theme Settings" +#: mod/dfrn_confirm.php:644 +msgid "Unable to set your contact credentials on our system." msgstr "" -#: mod/settings.php:1015 -msgid "Custom Theme Settings" +#: mod/dfrn_confirm.php:703 +msgid "Unable to update your contact profile details on our system" msgstr "" -#: mod/settings.php:1016 -msgid "Content Settings" +#: mod/dfrn_confirm.php:775 +#, php-format +msgid "%1$s has joined %2$s" msgstr "" -#: mod/settings.php:1017 view/theme/frio/config.php:61 -#: view/theme/quattro/config.php:66 view/theme/vier/config.php:109 -#: view/theme/duepuntozero/config.php:61 -msgid "Theme settings" +#: mod/dfrn_request.php:101 +msgid "This introduction has already been accepted." msgstr "" -#: mod/settings.php:1099 -msgid "Account Types" +#: mod/dfrn_request.php:124 mod/dfrn_request.php:520 +msgid "Profile location is not valid or does not contain profile information." msgstr "" -#: mod/settings.php:1100 -msgid "Personal Page Subtypes" +#: mod/dfrn_request.php:129 mod/dfrn_request.php:525 +msgid "Warning: profile location has no identifiable owner name." msgstr "" -#: mod/settings.php:1101 -msgid "Community Forum Subtypes" +#: mod/dfrn_request.php:131 mod/dfrn_request.php:527 +msgid "Warning: profile location has no profile photo." msgstr "" -#: mod/settings.php:1108 -msgid "Personal Page" -msgstr "" +#: mod/dfrn_request.php:134 mod/dfrn_request.php:530 +#, php-format +msgid "%d required parameter was not found at the given location" +msgid_plural "%d required parameters were not found at the given location" +msgstr[0] "" +msgstr[1] "" -#: mod/settings.php:1109 -msgid "This account is a regular personal profile" +#: mod/dfrn_request.php:180 +msgid "Introduction complete." msgstr "" -#: mod/settings.php:1112 -msgid "Organisation Page" +#: mod/dfrn_request.php:222 +msgid "Unrecoverable protocol error." msgstr "" -#: mod/settings.php:1113 -msgid "This account is a profile for an organisation" +#: mod/dfrn_request.php:250 +msgid "Profile unavailable." msgstr "" -#: mod/settings.php:1116 -msgid "News Page" +#: mod/dfrn_request.php:277 +#, php-format +msgid "%s has received too many connection requests today." msgstr "" -#: mod/settings.php:1117 -msgid "This account is a news account/reflector" +#: mod/dfrn_request.php:278 +msgid "Spam protection measures have been invoked." msgstr "" -#: mod/settings.php:1120 -msgid "Community Forum" +#: mod/dfrn_request.php:279 +msgid "Friends are advised to please try again in 24 hours." msgstr "" -#: mod/settings.php:1121 -msgid "" -"This account is a community forum where people can discuss with each other" +#: mod/dfrn_request.php:341 +msgid "Invalid locator" msgstr "" -#: mod/settings.php:1124 -msgid "Normal Account Page" +#: mod/dfrn_request.php:350 +msgid "Invalid email address." msgstr "" -#: mod/settings.php:1125 -msgid "This account is a normal personal profile" +#: mod/dfrn_request.php:375 +msgid "This account has not been configured for email. Request failed." msgstr "" -#: mod/settings.php:1128 -msgid "Soapbox Page" +#: mod/dfrn_request.php:478 +msgid "You have already introduced yourself here." msgstr "" -#: mod/settings.php:1129 -msgid "Automatically approve all connection/friend requests as read-only fans" +#: mod/dfrn_request.php:482 +#, php-format +msgid "Apparently you are already friends with %s." msgstr "" -#: mod/settings.php:1132 -msgid "Public Forum" +#: mod/dfrn_request.php:503 +msgid "Invalid profile URL." msgstr "" -#: mod/settings.php:1133 -msgid "Automatically approve all contact requests" +#: mod/dfrn_request.php:604 +msgid "Your introduction has been sent." msgstr "" -#: mod/settings.php:1136 -msgid "Automatic Friend Page" +#: mod/dfrn_request.php:644 +msgid "" +"Remote subscription can't be done for your network. Please subscribe " +"directly on your system." msgstr "" -#: mod/settings.php:1137 -msgid "Automatically approve all connection/friend requests as friends" +#: mod/dfrn_request.php:664 +msgid "Please login to confirm introduction." msgstr "" -#: mod/settings.php:1140 -msgid "Private Forum [Experimental]" +#: mod/dfrn_request.php:674 +msgid "" +"Incorrect identity currently logged in. Please login to this profile." msgstr "" -#: mod/settings.php:1141 -msgid "Private forum - approved members only" +#: mod/dfrn_request.php:688 mod/dfrn_request.php:705 +msgid "Confirm" msgstr "" -#: mod/settings.php:1153 -msgid "OpenID:" +#: mod/dfrn_request.php:700 +msgid "Hide this contact" msgstr "" -#: mod/settings.php:1153 -msgid "(Optional) Allow this OpenID to login to this account." +#: mod/dfrn_request.php:703 +#, php-format +msgid "Welcome home %s." msgstr "" -#: mod/settings.php:1163 -msgid "Publish your default profile in your local site directory?" +#: mod/dfrn_request.php:704 +#, php-format +msgid "Please confirm your introduction/connection request to %s." msgstr "" -#: mod/settings.php:1169 -msgid "Publish your default profile in the global social directory?" +#: mod/dfrn_request.php:833 +msgid "" +"Please enter your 'Identity Address' from one of the following supported " +"communications networks:" msgstr "" -#: mod/settings.php:1177 -msgid "Hide your contact/friend list from viewers of your default profile?" +#: mod/dfrn_request.php:854 +#, php-format +msgid "" +"If you are not yet a member of the free social web, follow this link to find a public Friendica site and join us today." msgstr "" -#: mod/settings.php:1181 -msgid "" -"If enabled, posting public messages to Diaspora and other networks isn't " -"possible." +#: mod/dfrn_request.php:859 +msgid "Friend/Connection Request" msgstr "" -#: mod/settings.php:1186 -msgid "Allow friends to post to your profile page?" +#: mod/dfrn_request.php:860 +msgid "" +"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, " +"testuser@identi.ca" msgstr "" -#: mod/settings.php:1192 -msgid "Allow friends to tag your posts?" +#: mod/dfrn_request.php:861 mod/follow.php:109 +msgid "Please answer the following:" msgstr "" -#: mod/settings.php:1198 -msgid "Allow us to suggest you as a potential friend to new members?" +#: mod/dfrn_request.php:862 mod/follow.php:110 +#, php-format +msgid "Does %s know you?" msgstr "" -#: mod/settings.php:1204 -msgid "Permit unknown people to send you private mail?" +#: mod/dfrn_request.php:866 mod/follow.php:111 +msgid "Add a personal note:" msgstr "" -#: mod/settings.php:1212 -msgid "Profile is not published." +#: mod/dfrn_request.php:869 +msgid "StatusNet/Federated Social Web" msgstr "" -#: mod/settings.php:1220 +#: mod/dfrn_request.php:871 #, php-format -msgid "Your Identity Address is '%s' or '%s'." +msgid "" +" - please do not use this form. Instead, enter %s into your Diaspora search " +"bar." msgstr "" -#: mod/settings.php:1227 -msgid "Automatically expire posts after this many days:" +#: mod/dfrn_request.php:872 mod/follow.php:117 +msgid "Your Identity Address:" msgstr "" -#: mod/settings.php:1227 -msgid "If empty, posts will not expire. Expired posts will be deleted" +#: mod/dfrn_request.php:875 mod/follow.php:19 +msgid "Submit Request" msgstr "" -#: mod/settings.php:1228 -msgid "Advanced expiration settings" +#: mod/follow.php:30 +msgid "You already added this contact." msgstr "" -#: mod/settings.php:1229 -msgid "Advanced Expiration" +#: mod/follow.php:39 +msgid "Diaspora support isn't enabled. Contact can't be added." msgstr "" -#: mod/settings.php:1230 -msgid "Expire posts:" +#: mod/follow.php:46 +msgid "OStatus support is disabled. Contact can't be added." msgstr "" -#: mod/settings.php:1231 -msgid "Expire personal notes:" +#: mod/follow.php:53 +msgid "The network type couldn't be detected. Contact can't be added." msgstr "" -#: mod/settings.php:1232 -msgid "Expire starred posts:" +#: mod/follow.php:180 +msgid "Contact added" msgstr "" -#: mod/settings.php:1233 -msgid "Expire photos:" +#: mod/install.php:139 +msgid "Friendica Communications Server - Setup" msgstr "" -#: mod/settings.php:1234 -msgid "Only expire posts by others:" +#: mod/install.php:145 +msgid "Could not connect to database." msgstr "" -#: mod/settings.php:1262 -msgid "Account Settings" +#: mod/install.php:149 +msgid "Could not create table." msgstr "" -#: mod/settings.php:1270 -msgid "Password Settings" +#: mod/install.php:155 +msgid "Your Friendica site database has been installed." msgstr "" -#: mod/settings.php:1272 -msgid "Leave password fields blank unless changing" +#: mod/install.php:160 +msgid "" +"You may need to import the file \"database.sql\" manually using phpmyadmin " +"or mysql." msgstr "" -#: mod/settings.php:1273 -msgid "Current Password:" +#: mod/install.php:161 mod/install.php:230 mod/install.php:607 +msgid "Please see the file \"INSTALL.txt\"." msgstr "" -#: mod/settings.php:1273 mod/settings.php:1274 -msgid "Your current password to confirm the changes" +#: mod/install.php:173 +msgid "Database already in use." msgstr "" -#: mod/settings.php:1274 -msgid "Password:" +#: mod/install.php:227 +msgid "System check" msgstr "" -#: mod/settings.php:1278 -msgid "Basic Settings" +#: mod/install.php:232 +msgid "Check again" msgstr "" -#: mod/settings.php:1280 -msgid "Email Address:" +#: mod/install.php:251 +msgid "Database connection" msgstr "" -#: mod/settings.php:1281 -msgid "Your Timezone:" +#: mod/install.php:252 +msgid "" +"In order to install Friendica we need to know how to connect to your " +"database." msgstr "" -#: mod/settings.php:1282 -msgid "Your Language:" +#: mod/install.php:253 +msgid "" +"Please contact your hosting provider or site administrator if you have " +"questions about these settings." msgstr "" -#: mod/settings.php:1282 +#: mod/install.php:254 msgid "" -"Set the language we use to show you friendica interface and to send you " -"emails" +"The database you specify below should already exist. If it does not, please " +"create it before continuing." msgstr "" -#: mod/settings.php:1283 -msgid "Default Post Location:" +#: mod/install.php:258 +msgid "Database Server Name" msgstr "" -#: mod/settings.php:1284 -msgid "Use Browser Location:" +#: mod/install.php:259 +msgid "Database Login Name" msgstr "" -#: mod/settings.php:1287 -msgid "Security and Privacy Settings" +#: mod/install.php:260 +msgid "Database Login Password" msgstr "" -#: mod/settings.php:1289 -msgid "Maximum Friend Requests/Day:" +#: mod/install.php:261 +msgid "Database Name" msgstr "" -#: mod/settings.php:1289 mod/settings.php:1319 -msgid "(to prevent spam abuse)" +#: mod/install.php:262 mod/install.php:303 +msgid "Site administrator email address" msgstr "" -#: mod/settings.php:1290 -msgid "Default Post Permissions" +#: mod/install.php:262 mod/install.php:303 +msgid "" +"Your account email address must match this in order to use the web admin " +"panel." msgstr "" -#: mod/settings.php:1291 -msgid "(click to open/close)" +#: mod/install.php:266 mod/install.php:306 +msgid "Please select a default timezone for your website" msgstr "" -#: mod/settings.php:1302 -msgid "Default Private Post" +#: mod/install.php:293 +msgid "Site settings" msgstr "" -#: mod/settings.php:1303 -msgid "Default Public Post" +#: mod/install.php:307 +msgid "System Language:" msgstr "" -#: mod/settings.php:1307 -msgid "Default Permissions for New Posts" +#: mod/install.php:307 +msgid "" +"Set the default language for your Friendica installation interface and to " +"send emails." msgstr "" -#: mod/settings.php:1319 -msgid "Maximum private messages per day from unknown people:" +#: mod/install.php:347 +msgid "Could not find a command line version of PHP in the web server PATH." msgstr "" -#: mod/settings.php:1322 -msgid "Notification Settings" +#: mod/install.php:348 +msgid "" +"If you don't have a command line version of PHP installed on server, you " +"will not be able to run background polling via cron. See 'Setup the poller'" msgstr "" -#: mod/settings.php:1323 -msgid "By default post a status message when:" +#: mod/install.php:352 +msgid "PHP executable path" msgstr "" -#: mod/settings.php:1324 -msgid "accepting a friend request" +#: mod/install.php:352 +msgid "" +"Enter full path to php executable. You can leave this blank to continue the " +"installation." msgstr "" -#: mod/settings.php:1325 -msgid "joining a forum/community" +#: mod/install.php:357 +msgid "Command line PHP" msgstr "" -#: mod/settings.php:1326 -msgid "making an interesting profile change" +#: mod/install.php:366 +msgid "PHP executable is not the php cli binary (could be cgi-fgci version)" msgstr "" -#: mod/settings.php:1327 -msgid "Send a notification email when:" +#: mod/install.php:367 +msgid "Found PHP version: " msgstr "" -#: mod/settings.php:1328 -msgid "You receive an introduction" +#: mod/install.php:369 +msgid "PHP cli binary" msgstr "" -#: mod/settings.php:1329 -msgid "Your introductions are confirmed" +#: mod/install.php:380 +msgid "" +"The command line version of PHP on your system does not have " +"\"register_argc_argv\" enabled." msgstr "" -#: mod/settings.php:1330 -msgid "Someone writes on your profile wall" +#: mod/install.php:381 +msgid "This is required for message delivery to work." msgstr "" -#: mod/settings.php:1331 -msgid "Someone writes a followup comment" +#: mod/install.php:383 +msgid "PHP register_argc_argv" msgstr "" -#: mod/settings.php:1332 -msgid "You receive a private message" +#: mod/install.php:404 +msgid "" +"Error: the \"openssl_pkey_new\" function on this system is not able to " +"generate encryption keys" msgstr "" -#: mod/settings.php:1333 -msgid "You receive a friend suggestion" +#: mod/install.php:405 +msgid "" +"If running under Windows, please see \"http://www.php.net/manual/en/openssl." +"installation.php\"." msgstr "" -#: mod/settings.php:1334 -msgid "You are tagged in a post" +#: mod/install.php:407 +msgid "Generate encryption keys" msgstr "" -#: mod/settings.php:1335 -msgid "You are poked/prodded/etc. in a post" +#: mod/install.php:414 +msgid "libCurl PHP module" msgstr "" -#: mod/settings.php:1337 -msgid "Activate desktop notifications" +#: mod/install.php:415 +msgid "GD graphics PHP module" msgstr "" -#: mod/settings.php:1337 -msgid "Show desktop popup on new notifications" +#: mod/install.php:416 +msgid "OpenSSL PHP module" msgstr "" -#: mod/settings.php:1339 -msgid "Text-only notification emails" +#: mod/install.php:417 +msgid "mysqli PHP module" msgstr "" -#: mod/settings.php:1341 -msgid "Send text only notification emails, without the html part" +#: mod/install.php:418 +msgid "mb_string PHP module" msgstr "" -#: mod/settings.php:1343 -msgid "Advanced Account/Page Type Settings" +#: mod/install.php:419 +msgid "mcrypt PHP module" msgstr "" -#: mod/settings.php:1344 -msgid "Change the behaviour of this account for special situations" +#: mod/install.php:420 +msgid "XML PHP module" msgstr "" -#: mod/settings.php:1347 -msgid "Relocate" +#: mod/install.php:421 +msgid "iconv module" msgstr "" -#: mod/settings.php:1348 -msgid "" -"If you have moved this profile from another server, and some of your " -"contacts don't receive your updates, try pushing this button." +#: mod/install.php:425 mod/install.php:427 +msgid "Apache mod_rewrite module" msgstr "" -#: mod/settings.php:1349 -msgid "Resend relocate message to contacts" +#: mod/install.php:425 +msgid "" +"Error: Apache webserver mod-rewrite module is required but not installed." msgstr "" -#: mod/wallmessage.php:42 mod/wallmessage.php:112 -#, php-format -msgid "Number of daily wall messages for %s exceeded. Message failed." +#: mod/install.php:433 +msgid "Error: libCURL PHP module required but not installed." msgstr "" -#: mod/wallmessage.php:56 mod/message.php:71 -msgid "No recipient selected." +#: mod/install.php:437 +msgid "" +"Error: GD graphics PHP module with JPEG support required but not installed." msgstr "" -#: mod/wallmessage.php:59 -msgid "Unable to check your home location." +#: mod/install.php:441 +msgid "Error: openssl PHP module required but not installed." msgstr "" -#: mod/wallmessage.php:62 mod/message.php:78 -msgid "Message could not be sent." +#: mod/install.php:445 +msgid "Error: mysqli PHP module required but not installed." msgstr "" -#: mod/wallmessage.php:65 mod/message.php:81 -msgid "Message collection failure." +#: mod/install.php:449 +msgid "Error: mb_string PHP module required but not installed." msgstr "" -#: mod/wallmessage.php:68 mod/message.php:84 -msgid "Message sent." +#: mod/install.php:453 +msgid "Error: mcrypt PHP module required but not installed." msgstr "" -#: mod/wallmessage.php:86 mod/wallmessage.php:95 -msgid "No recipient." +#: mod/install.php:457 +msgid "Error: iconv PHP module required but not installed." msgstr "" -#: mod/wallmessage.php:142 mod/message.php:341 -msgid "Send Private Message" +#: mod/install.php:466 +msgid "" +"If you are using php_cli, please make sure that mcrypt module is enabled in " +"its config file" msgstr "" -#: mod/wallmessage.php:143 -#, php-format +#: mod/install.php:469 msgid "" -"If you wish for %s to respond, please check that the privacy settings on " -"your site allow private mail from unknown senders." +"Function mcrypt_create_iv() is not defined. This is needed to enable RINO2 " +"encryption layer." msgstr "" -#: mod/wallmessage.php:144 mod/message.php:342 mod/message.php:536 -msgid "To:" +#: mod/install.php:471 +msgid "mcrypt_create_iv() function" msgstr "" -#: mod/wallmessage.php:145 mod/message.php:347 mod/message.php:538 -msgid "Subject:" +#: mod/install.php:479 +msgid "Error, XML PHP module required but not installed." msgstr "" -#: mod/share.php:38 -msgid "link" +#: mod/install.php:494 +msgid "" +"The web installer needs to be able to create a file called \".htconfig.php\" " +"in the top folder of your web server and it is unable to do so." msgstr "" -#: mod/api.php:76 mod/api.php:102 -msgid "Authorize application connection" +#: mod/install.php:495 +msgid "" +"This is most often a permission setting, as the web server may not be able " +"to write files in your folder - even if you can." +msgstr "" + +#: mod/install.php:496 +msgid "" +"At the end of this procedure, we will give you a text to save in a file " +"named .htconfig.php in your Friendica top folder." msgstr "" -#: mod/api.php:77 -msgid "Return to your app and insert this Securty Code:" +#: mod/install.php:497 +msgid "" +"You can alternatively skip this procedure and perform a manual installation. " +"Please see the file \"INSTALL.txt\" for instructions." msgstr "" -#: mod/api.php:89 -msgid "Please login to continue." +#: mod/install.php:500 +msgid ".htconfig.php is writable" msgstr "" -#: mod/api.php:104 +#: mod/install.php:510 msgid "" -"Do you want to authorize this application to access your posts and contacts, " -"and/or create new posts for you?" +"Friendica uses the Smarty3 template engine to render its web views. Smarty3 " +"compiles templates to PHP to speed up rendering." msgstr "" -#: mod/babel.php:17 -msgid "Source (bbcode) text:" +#: mod/install.php:511 +msgid "" +"In order to store these compiled templates, the web server needs to have " +"write access to the directory view/smarty3/ under the Friendica top level " +"folder." msgstr "" -#: mod/babel.php:23 -msgid "Source (Diaspora) text to convert to BBcode:" +#: mod/install.php:512 +msgid "" +"Please ensure that the user that your web server runs as (e.g. www-data) has " +"write access to this folder." msgstr "" -#: mod/babel.php:31 -msgid "Source input: " +#: mod/install.php:513 +msgid "" +"Note: as a security measure, you should give the web server write access to " +"view/smarty3/ only--not the template files (.tpl) that it contains." msgstr "" -#: mod/babel.php:35 -msgid "bb2html (raw HTML): " +#: mod/install.php:516 +msgid "view/smarty3 is writable" msgstr "" -#: mod/babel.php:39 -msgid "bb2html: " +#: mod/install.php:532 +msgid "" +"Url rewrite in .htaccess is not working. Check your server configuration." msgstr "" -#: mod/babel.php:43 -msgid "bb2html2bb: " +#: mod/install.php:534 +msgid "Url rewrite is working" msgstr "" -#: mod/babel.php:47 -msgid "bb2md: " +#: mod/install.php:552 +msgid "ImageMagick PHP extension is not installed" msgstr "" -#: mod/babel.php:51 -msgid "bb2md2html: " +#: mod/install.php:555 +msgid "ImageMagick PHP extension is installed" msgstr "" -#: mod/babel.php:55 -msgid "bb2dia2bb: " +#: mod/install.php:557 +msgid "ImageMagick supports GIF" msgstr "" -#: mod/babel.php:59 -msgid "bb2md2html2bb: " +#: mod/install.php:566 +msgid "" +"The database configuration file \".htconfig.php\" could not be written. " +"Please use the enclosed text to create a configuration file in your web " +"server root." msgstr "" -#: mod/babel.php:69 -msgid "Source input (Diaspora format): " +#: mod/install.php:605 +msgid "

What next

" msgstr "" -#: mod/babel.php:74 -msgid "diaspora2bb: " +#: mod/install.php:606 +msgid "" +"IMPORTANT: You will need to [manually] setup a scheduled task for the poller." msgstr "" #: mod/item.php:116 msgid "Unable to locate original post." msgstr "" -#: mod/item.php:340 +#: mod/item.php:341 msgid "Empty post discarded." msgstr "" -#: mod/item.php:898 +#: mod/item.php:902 msgid "System error. Post not saved." msgstr "" -#: mod/item.php:988 +#: mod/item.php:992 #, php-format msgid "" "This message was sent to you by %s, a member of the Friendica social network." msgstr "" -#: mod/item.php:990 +#: mod/item.php:994 #, php-format msgid "You may visit them online at %s" msgstr "" -#: mod/item.php:991 +#: mod/item.php:995 msgid "" "Please contact the sender by replying to this post if you do not wish to " "receive these messages." msgstr "" -#: mod/item.php:995 +#: mod/item.php:999 #, php-format msgid "%s posted an update." msgstr "" -#: mod/ostatus_subscribe.php:14 -msgid "Subscribing to OStatus contacts" -msgstr "" - -#: mod/ostatus_subscribe.php:25 -msgid "No contact provided." -msgstr "" - -#: mod/ostatus_subscribe.php:30 -msgid "Couldn't fetch information for contact." -msgstr "" - -#: mod/ostatus_subscribe.php:38 -msgid "Couldn't fetch friends for contact." -msgstr "" - -#: mod/ostatus_subscribe.php:65 -msgid "success" -msgstr "" - -#: mod/ostatus_subscribe.php:67 -msgid "failed" -msgstr "" - -#: mod/dfrn_poll.php:104 mod/dfrn_poll.php:537 +#: mod/network.php:398 #, php-format -msgid "%1$s welcomes %2$s" -msgstr "" +msgid "" +"Warning: This group contains %s member from a network that doesn't allow non " +"public messages." +msgid_plural "" +"Warning: This group contains %s members from a network that doesn't allow " +"non public messages." +msgstr[0] "" +msgstr[1] "" -#: mod/profile.php:179 -msgid "Tips for New Members" +#: mod/network.php:401 +msgid "Messages in this group won't be send to these receivers." msgstr "" -#: mod/message.php:75 -msgid "Unable to locate contact information." +#: mod/network.php:529 +msgid "Private messages to this person are at risk of public disclosure." msgstr "" -#: mod/message.php:215 -msgid "Do you really want to delete this message?" +#: mod/network.php:534 +msgid "Invalid contact." msgstr "" -#: mod/message.php:235 -msgid "Message deleted." +#: mod/network.php:826 +msgid "Commented Order" msgstr "" -#: mod/message.php:266 -msgid "Conversation removed." +#: mod/network.php:829 +msgid "Sort by Comment Date" msgstr "" -#: mod/message.php:383 -msgid "No messages." +#: mod/network.php:834 +msgid "Posted Order" msgstr "" -#: mod/message.php:426 -msgid "Message not available." +#: mod/network.php:837 +msgid "Sort by Post Date" msgstr "" -#: mod/message.php:503 -msgid "Delete message" +#: mod/network.php:848 +msgid "Posts that mention or involve you" msgstr "" -#: mod/message.php:529 mod/message.php:609 -msgid "Delete conversation" +#: mod/network.php:856 +msgid "New" msgstr "" -#: mod/message.php:531 -msgid "" -"No secure communications available. You may be able to " -"respond from the sender's profile page." +#: mod/network.php:859 +msgid "Activity Stream - by date" msgstr "" -#: mod/message.php:535 -msgid "Send Reply" +#: mod/network.php:867 +msgid "Shared Links" msgstr "" -#: mod/message.php:579 -#, php-format -msgid "Unknown sender - %s" +#: mod/network.php:870 +msgid "Interesting Links" msgstr "" -#: mod/message.php:581 -#, php-format -msgid "You and %s" +#: mod/network.php:878 +msgid "Starred" msgstr "" -#: mod/message.php:583 -#, php-format -msgid "%s and You" +#: mod/network.php:881 +msgid "Favourite Posts" msgstr "" -#: mod/message.php:612 -msgid "D, d M Y - g:i A" +#: mod/ping.php:261 +msgid "{0} wants to be your friend" msgstr "" -#: mod/message.php:615 -#, php-format -msgid "%d message" -msgid_plural "%d messages" -msgstr[0] "" -msgstr[1] "" - -#: mod/manage.php:139 -msgid "Manage Identities and/or Pages" +#: mod/ping.php:276 +msgid "{0} sent you a message" msgstr "" -#: mod/manage.php:140 -msgid "" -"Toggle between different identities or community/group pages which share " -"your account details or which you have been granted \"manage\" permissions" +#: mod/ping.php:291 +msgid "{0} requested registration" msgstr "" -#: mod/manage.php:141 -msgid "Select an identity to manage: " +#: mod/viewcontacts.php:72 +msgid "No contacts." msgstr "" #: object/Item.php:370 @@ -8748,14 +8714,6 @@ msgstr "" msgid "Resize to best fit and retain aspect ratio." msgstr "" -#: view/theme/frio/theme.php:229 -msgid "Guest" -msgstr "" - -#: view/theme/frio/theme.php:235 -msgid "Visitor" -msgstr "" - #: view/theme/frio/config.php:42 msgid "Default" msgstr "" @@ -8796,6 +8754,14 @@ msgstr "" msgid "Set the background image" msgstr "" +#: view/theme/frio/theme.php:229 +msgid "Guest" +msgstr "" + +#: view/theme/frio/theme.php:235 +msgid "Visitor" +msgstr "" + #: view/theme/quattro/config.php:67 msgid "Alignment" msgstr "" @@ -8887,3 +8853,56 @@ msgstr "" #: view/theme/duepuntozero/config.php:62 msgid "Variations" msgstr "" + +#: boot.php:970 +msgid "Delete this item?" +msgstr "" + +#: boot.php:973 +msgid "show fewer" +msgstr "" + +#: boot.php:1655 +#, php-format +msgid "Update %s failed. See error logs." +msgstr "" + +#: boot.php:1767 +msgid "Create a New Account" +msgstr "" + +#: boot.php:1796 +msgid "Password: " +msgstr "" + +#: boot.php:1797 +msgid "Remember me" +msgstr "" + +#: boot.php:1800 +msgid "Or login using OpenID: " +msgstr "" + +#: boot.php:1806 +msgid "Forgot your password?" +msgstr "" + +#: boot.php:1809 +msgid "Website Terms of Service" +msgstr "" + +#: boot.php:1810 +msgid "terms of service" +msgstr "" + +#: boot.php:1812 +msgid "Website Privacy Policy" +msgstr "" + +#: boot.php:1813 +msgid "privacy policy" +msgstr "" + +#: index.php:451 +msgid "toggle mobile" +msgstr ""