Support for stacked profiler analysis
This commit is contained in:
parent
3cef3ab107
commit
c89533a70b
17 changed files with 763 additions and 611 deletions
|
|
@ -22,7 +22,6 @@
|
||||||
use Friendica\App;
|
use Friendica\App;
|
||||||
use Friendica\Content\ContactSelector;
|
use Friendica\Content\ContactSelector;
|
||||||
use Friendica\Content\Feature;
|
use Friendica\Content\Feature;
|
||||||
use Friendica\Content\Text\BBCode;
|
|
||||||
use Friendica\Core\Hook;
|
use Friendica\Core\Hook;
|
||||||
use Friendica\Core\Logger;
|
use Friendica\Core\Logger;
|
||||||
use Friendica\Core\Protocol;
|
use Friendica\Core\Protocol;
|
||||||
|
|
@ -34,7 +33,6 @@ use Friendica\DI;
|
||||||
use Friendica\Model\Contact;
|
use Friendica\Model\Contact;
|
||||||
use Friendica\Model\Item;
|
use Friendica\Model\Item;
|
||||||
use Friendica\Model\Post;
|
use Friendica\Model\Post;
|
||||||
use Friendica\Model\Profile;
|
|
||||||
use Friendica\Model\Tag;
|
use Friendica\Model\Tag;
|
||||||
use Friendica\Model\Verb;
|
use Friendica\Model\Verb;
|
||||||
use Friendica\Object\Post as PostObject;
|
use Friendica\Object\Post as PostObject;
|
||||||
|
|
@ -56,6 +54,7 @@ use Friendica\Util\XML;
|
||||||
*/
|
*/
|
||||||
function localize_item(&$item)
|
function localize_item(&$item)
|
||||||
{
|
{
|
||||||
|
DI::profiler()->startRecording('rendering');
|
||||||
/// @todo The following functionality needs to be cleaned up.
|
/// @todo The following functionality needs to be cleaned up.
|
||||||
if (!empty($item['verb'])) {
|
if (!empty($item['verb'])) {
|
||||||
$activity = DI::activity();
|
$activity = DI::activity();
|
||||||
|
|
@ -65,9 +64,11 @@ function localize_item(&$item)
|
||||||
if (stristr($item['verb'], Activity::POKE)) {
|
if (stristr($item['verb'], Activity::POKE)) {
|
||||||
$verb = urldecode(substr($item['verb'], strpos($item['verb'],'#') + 1));
|
$verb = urldecode(substr($item['verb'], strpos($item['verb'],'#') + 1));
|
||||||
if (!$verb) {
|
if (!$verb) {
|
||||||
|
DI::profiler()->stopRecording();
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
if ($item['object-type'] == "" || $item['object-type'] !== Activity\ObjectType::PERSON) {
|
if ($item['object-type'] == "" || $item['object-type'] !== Activity\ObjectType::PERSON) {
|
||||||
|
DI::profiler()->stopRecording();
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -120,6 +121,7 @@ function localize_item(&$item)
|
||||||
'verb', 'object-type', 'resource-id', 'body', 'plink'];
|
'verb', 'object-type', 'resource-id', 'body', 'plink'];
|
||||||
$obj = Post::selectFirst($fields, ['uri' => $item['parent-uri']]);
|
$obj = Post::selectFirst($fields, ['uri' => $item['parent-uri']]);
|
||||||
if (!DBA::isResult($obj)) {
|
if (!DBA::isResult($obj)) {
|
||||||
|
DI::profiler()->stopRecording();
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -177,6 +179,7 @@ function localize_item(&$item)
|
||||||
'network' => $item['author-network'], 'url' => $item['author-link']];
|
'network' => $item['author-network'], 'url' => $item['author-link']];
|
||||||
$item['plink'] = Contact::magicLinkByContact($author, $item['plink']);
|
$item['plink'] = Contact::magicLinkByContact($author, $item['plink']);
|
||||||
}
|
}
|
||||||
|
DI::profiler()->stopRecording();
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
@ -263,6 +266,7 @@ function conv_get_blocklist()
|
||||||
*/
|
*/
|
||||||
function conversation(App $a, array $items, $mode, $update, $preview = false, $order = 'commented', $uid = 0)
|
function conversation(App $a, array $items, $mode, $update, $preview = false, $order = 'commented', $uid = 0)
|
||||||
{
|
{
|
||||||
|
DI::profiler()->startRecording('rendering');
|
||||||
$page = DI::page();
|
$page = DI::page();
|
||||||
|
|
||||||
$page->registerFooterScript(Theme::getPathForFile('asset/typeahead.js/dist/typeahead.bundle.js'));
|
$page->registerFooterScript(Theme::getPathForFile('asset/typeahead.js/dist/typeahead.bundle.js'));
|
||||||
|
|
@ -603,6 +607,7 @@ function conversation(App $a, array $items, $mode, $update, $preview = false, $o
|
||||||
'$dropping' => ($page_dropping ? DI::l10n()->t('Delete Selected Items') : False),
|
'$dropping' => ($page_dropping ? DI::l10n()->t('Delete Selected Items') : False),
|
||||||
]);
|
]);
|
||||||
|
|
||||||
|
DI::profiler()->stopRecording();
|
||||||
return $o;
|
return $o;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -616,6 +621,7 @@ function conversation(App $a, array $items, $mode, $update, $preview = false, $o
|
||||||
* @return array items with parents and comments
|
* @return array items with parents and comments
|
||||||
*/
|
*/
|
||||||
function conversation_fetch_comments($thread_items, bool $pinned, array $activity) {
|
function conversation_fetch_comments($thread_items, bool $pinned, array $activity) {
|
||||||
|
DI::profiler()->startRecording('rendering');
|
||||||
$comments = [];
|
$comments = [];
|
||||||
|
|
||||||
while ($row = Post::fetch($thread_items)) {
|
while ($row = Post::fetch($thread_items)) {
|
||||||
|
|
@ -693,6 +699,7 @@ function conversation_fetch_comments($thread_items, bool $pinned, array $activit
|
||||||
|
|
||||||
DBA::close($thread_items);
|
DBA::close($thread_items);
|
||||||
|
|
||||||
|
DI::profiler()->stopRecording();
|
||||||
return $comments;
|
return $comments;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -711,6 +718,7 @@ function conversation_fetch_comments($thread_items, bool $pinned, array $activit
|
||||||
* @throws \Friendica\Network\HTTPException\InternalServerErrorException
|
* @throws \Friendica\Network\HTTPException\InternalServerErrorException
|
||||||
*/
|
*/
|
||||||
function conversation_add_children(array $parents, $block_authors, $order, $uid) {
|
function conversation_add_children(array $parents, $block_authors, $order, $uid) {
|
||||||
|
DI::profiler()->startRecording('rendering');
|
||||||
if (count($parents) > 1) {
|
if (count($parents) > 1) {
|
||||||
$max_comments = DI::config()->get('system', 'max_comments', 100);
|
$max_comments = DI::config()->get('system', 'max_comments', 100);
|
||||||
} else {
|
} else {
|
||||||
|
|
@ -753,6 +761,7 @@ function conversation_add_children(array $parents, $block_authors, $order, $uid)
|
||||||
|
|
||||||
$items = conv_sort($items, $order);
|
$items = conv_sort($items, $order);
|
||||||
|
|
||||||
|
DI::profiler()->stopRecording();
|
||||||
return $items;
|
return $items;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -768,6 +777,7 @@ function conversation_add_children(array $parents, $block_authors, $order, $uid)
|
||||||
* @return array
|
* @return array
|
||||||
*/
|
*/
|
||||||
function conversation_fetch_items(array $parent, array $items, array $condition, bool $block_authors, array $params, array $activity) {
|
function conversation_fetch_items(array $parent, array $items, array $condition, bool $block_authors, array $params, array $activity) {
|
||||||
|
DI::profiler()->startRecording('rendering');
|
||||||
if ($block_authors) {
|
if ($block_authors) {
|
||||||
$condition[0] .= " AND NOT `author-hidden`";
|
$condition[0] .= " AND NOT `author-hidden`";
|
||||||
}
|
}
|
||||||
|
|
@ -779,11 +789,13 @@ function conversation_fetch_items(array $parent, array $items, array $condition,
|
||||||
if (count($comments) != 0) {
|
if (count($comments) != 0) {
|
||||||
$items = array_merge($items, $comments);
|
$items = array_merge($items, $comments);
|
||||||
}
|
}
|
||||||
|
DI::profiler()->stopRecording();
|
||||||
return $items;
|
return $items;
|
||||||
}
|
}
|
||||||
|
|
||||||
function item_photo_menu($item)
|
function item_photo_menu($item)
|
||||||
{
|
{
|
||||||
|
DI::profiler()->startRecording('rendering');
|
||||||
$sub_link = '';
|
$sub_link = '';
|
||||||
$poke_link = '';
|
$poke_link = '';
|
||||||
$contact_url = '';
|
$contact_url = '';
|
||||||
|
|
@ -882,6 +894,7 @@ function item_photo_menu($item)
|
||||||
$o .= '<li role="menuitem"><a href="' . $v . '">' . $k . '</a></li>' . PHP_EOL;
|
$o .= '<li role="menuitem"><a href="' . $v . '">' . $k . '</a></li>' . PHP_EOL;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
DI::profiler()->stopRecording();
|
||||||
return $o;
|
return $o;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -980,6 +993,7 @@ function builtin_activity_puller(array $activity, array &$conv_responses)
|
||||||
* @throws \Friendica\Network\HTTPException\InternalServerErrorException
|
* @throws \Friendica\Network\HTTPException\InternalServerErrorException
|
||||||
*/
|
*/
|
||||||
function format_activity(array $links, $verb, $id) {
|
function format_activity(array $links, $verb, $id) {
|
||||||
|
DI::profiler()->startRecording('rendering');
|
||||||
$o = '';
|
$o = '';
|
||||||
$expanded = '';
|
$expanded = '';
|
||||||
$phrase = '';
|
$phrase = '';
|
||||||
|
|
@ -1059,11 +1073,13 @@ function format_activity(array $links, $verb, $id) {
|
||||||
]);
|
]);
|
||||||
$o .= $expanded;
|
$o .= $expanded;
|
||||||
|
|
||||||
|
DI::profiler()->stopRecording();
|
||||||
return $o;
|
return $o;
|
||||||
}
|
}
|
||||||
|
|
||||||
function status_editor(App $a, $x, $notes_cid = 0, $popup = false)
|
function status_editor(App $a, $x, $notes_cid = 0, $popup = false)
|
||||||
{
|
{
|
||||||
|
DI::profiler()->startRecording('rendering');
|
||||||
$o = '';
|
$o = '';
|
||||||
|
|
||||||
$geotag = !empty($x['allow_location']) ? Renderer::replaceMacros(Renderer::getMarkupTemplate('jot_geotag.tpl'), []) : '';
|
$geotag = !empty($x['allow_location']) ? Renderer::replaceMacros(Renderer::getMarkupTemplate('jot_geotag.tpl'), []) : '';
|
||||||
|
|
@ -1151,6 +1167,7 @@ function status_editor(App $a, $x, $notes_cid = 0, $popup = false)
|
||||||
$o = '<div id="jot-popup" style="display: none;">' . $o . '</div>';
|
$o = '<div id="jot-popup" style="display: none;">' . $o . '</div>';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
DI::profiler()->stopRecording();
|
||||||
return $o;
|
return $o;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -1164,6 +1181,7 @@ function status_editor(App $a, $x, $notes_cid = 0, $popup = false)
|
||||||
*/
|
*/
|
||||||
function get_item_children(array &$item_list, array $parent, $recursive = true)
|
function get_item_children(array &$item_list, array $parent, $recursive = true)
|
||||||
{
|
{
|
||||||
|
DI::profiler()->startRecording('rendering');
|
||||||
$children = [];
|
$children = [];
|
||||||
foreach ($item_list as $i => $item) {
|
foreach ($item_list as $i => $item) {
|
||||||
if ($item['gravity'] != GRAVITY_PARENT) {
|
if ($item['gravity'] != GRAVITY_PARENT) {
|
||||||
|
|
@ -1185,6 +1203,7 @@ function get_item_children(array &$item_list, array $parent, $recursive = true)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
DI::profiler()->stopRecording();
|
||||||
return $children;
|
return $children;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -1196,6 +1215,7 @@ function get_item_children(array &$item_list, array $parent, $recursive = true)
|
||||||
*/
|
*/
|
||||||
function sort_item_children(array $items)
|
function sort_item_children(array $items)
|
||||||
{
|
{
|
||||||
|
DI::profiler()->startRecording('rendering');
|
||||||
$result = $items;
|
$result = $items;
|
||||||
usort($result, 'sort_thr_received_rev');
|
usort($result, 'sort_thr_received_rev');
|
||||||
foreach ($result as $k => $i) {
|
foreach ($result as $k => $i) {
|
||||||
|
|
@ -1203,6 +1223,7 @@ function sort_item_children(array $items)
|
||||||
$result[$k]['children'] = sort_item_children($result[$k]['children']);
|
$result[$k]['children'] = sort_item_children($result[$k]['children']);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
DI::profiler()->stopRecording();
|
||||||
return $result;
|
return $result;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -1240,7 +1261,9 @@ function add_children_to_list(array $children, array &$item_list)
|
||||||
*/
|
*/
|
||||||
function smart_flatten_conversation(array $parent)
|
function smart_flatten_conversation(array $parent)
|
||||||
{
|
{
|
||||||
|
DI::profiler()->startRecording('rendering');
|
||||||
if (!isset($parent['children']) || count($parent['children']) == 0) {
|
if (!isset($parent['children']) || count($parent['children']) == 0) {
|
||||||
|
DI::profiler()->stopRecording();
|
||||||
return $parent;
|
return $parent;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -1251,6 +1274,7 @@ function smart_flatten_conversation(array $parent)
|
||||||
if (isset($child['children']) && count($child['children'])) {
|
if (isset($child['children']) && count($child['children'])) {
|
||||||
// This helps counting only the regular posts
|
// This helps counting only the regular posts
|
||||||
$count_post_closure = function($var) {
|
$count_post_closure = function($var) {
|
||||||
|
DI::profiler()->stopRecording();
|
||||||
return $var['verb'] === Activity::POST;
|
return $var['verb'] === Activity::POST;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
@ -1276,6 +1300,7 @@ function smart_flatten_conversation(array $parent)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
DI::profiler()->stopRecording();
|
||||||
return $parent;
|
return $parent;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -1293,9 +1318,11 @@ function smart_flatten_conversation(array $parent)
|
||||||
*/
|
*/
|
||||||
function conv_sort(array $item_list, $order)
|
function conv_sort(array $item_list, $order)
|
||||||
{
|
{
|
||||||
|
DI::profiler()->startRecording('rendering');
|
||||||
$parents = [];
|
$parents = [];
|
||||||
|
|
||||||
if (!(is_array($item_list) && count($item_list))) {
|
if (!(is_array($item_list) && count($item_list))) {
|
||||||
|
DI::profiler()->stopRecording();
|
||||||
return $parents;
|
return $parents;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -1355,6 +1382,7 @@ function conv_sort(array $item_list, $order)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
DI::profiler()->stopRecording();
|
||||||
return $parents;
|
return $parents;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -152,6 +152,7 @@ class BBCode
|
||||||
*/
|
*/
|
||||||
public static function getAttachmentData($body)
|
public static function getAttachmentData($body)
|
||||||
{
|
{
|
||||||
|
DI::profiler()->startRecording('rendering');
|
||||||
$data = [
|
$data = [
|
||||||
'type' => '',
|
'type' => '',
|
||||||
'text' => '',
|
'text' => '',
|
||||||
|
|
@ -167,6 +168,7 @@ class BBCode
|
||||||
];
|
];
|
||||||
|
|
||||||
if (!preg_match("/(.*)\[attachment(.*?)\](.*?)\[\/attachment\](.*)/ism", $body, $match)) {
|
if (!preg_match("/(.*)\[attachment(.*?)\](.*?)\[\/attachment\](.*)/ism", $body, $match)) {
|
||||||
|
DI::profiler()->stopRecording();
|
||||||
return self::getOldAttachmentData($body);
|
return self::getOldAttachmentData($body);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -211,6 +213,7 @@ class BBCode
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!in_array($data['type'], ['link', 'audio', 'photo', 'video'])) {
|
if (!in_array($data['type'], ['link', 'audio', 'photo', 'video'])) {
|
||||||
|
DI::profiler()->stopRecording();
|
||||||
return [];
|
return [];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -232,6 +235,7 @@ class BBCode
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
DI::profiler()->stopRecording();
|
||||||
return $data;
|
return $data;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -247,6 +251,7 @@ class BBCode
|
||||||
- (thumbnail)
|
- (thumbnail)
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
DI::profiler()->startRecording('rendering');
|
||||||
$has_title = !empty($item['title']);
|
$has_title = !empty($item['title']);
|
||||||
$plink = $item['plink'] ?? '';
|
$plink = $item['plink'] ?? '';
|
||||||
$post = self::getAttachmentData($body);
|
$post = self::getAttachmentData($body);
|
||||||
|
|
@ -398,6 +403,7 @@ class BBCode
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
DI::profiler()->stopRecording();
|
||||||
return $post;
|
return $post;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -434,6 +440,7 @@ class BBCode
|
||||||
*/
|
*/
|
||||||
public static function toPlaintext($text, $keep_urls = true)
|
public static function toPlaintext($text, $keep_urls = true)
|
||||||
{
|
{
|
||||||
|
DI::profiler()->startRecording('rendering');
|
||||||
// Remove pictures in advance to avoid unneeded proxy calls
|
// Remove pictures in advance to avoid unneeded proxy calls
|
||||||
$text = preg_replace("/\[img\=(.*?)\](.*?)\[\/img\]/ism", ' $2 ', $text);
|
$text = preg_replace("/\[img\=(.*?)\](.*?)\[\/img\]/ism", ' $2 ', $text);
|
||||||
$text = preg_replace("/\[img.*?\[\/img\]/ism", ' ', $text);
|
$text = preg_replace("/\[img.*?\[\/img\]/ism", ' ', $text);
|
||||||
|
|
@ -443,6 +450,7 @@ class BBCode
|
||||||
|
|
||||||
$naked_text = HTML::toPlaintext(self::convert($text, false, 0, true), 0, !$keep_urls);
|
$naked_text = HTML::toPlaintext(self::convert($text, false, 0, true), 0, !$keep_urls);
|
||||||
|
|
||||||
|
DI::profiler()->stopRecording();
|
||||||
return $naked_text;
|
return $naked_text;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -468,6 +476,7 @@ class BBCode
|
||||||
*/
|
*/
|
||||||
public static function scaleExternalImages(string $srctext)
|
public static function scaleExternalImages(string $srctext)
|
||||||
{
|
{
|
||||||
|
DI::profiler()->startRecording('rendering');
|
||||||
$s = $srctext;
|
$s = $srctext;
|
||||||
|
|
||||||
// Simplify image links
|
// Simplify image links
|
||||||
|
|
@ -517,6 +526,7 @@ class BBCode
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
DI::profiler()->stopRecording();
|
||||||
return $s;
|
return $s;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -532,6 +542,7 @@ class BBCode
|
||||||
*/
|
*/
|
||||||
public static function limitBodySize($body)
|
public static function limitBodySize($body)
|
||||||
{
|
{
|
||||||
|
DI::profiler()->startRecording('rendering');
|
||||||
$maxlen = DI::config()->get('config', 'max_import_size', 0);
|
$maxlen = DI::config()->get('config', 'max_import_size', 0);
|
||||||
|
|
||||||
// If the length of the body, including the embedded images, is smaller
|
// If the length of the body, including the embedded images, is smaller
|
||||||
|
|
@ -603,8 +614,10 @@ class BBCode
|
||||||
$new_body = $new_body . $orig_body;
|
$new_body = $new_body . $orig_body;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
DI::profiler()->stopRecording();
|
||||||
return $new_body;
|
return $new_body;
|
||||||
} else {
|
} else {
|
||||||
|
DI::profiler()->stopRecording();
|
||||||
return $body;
|
return $body;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -624,13 +637,13 @@ class BBCode
|
||||||
*/
|
*/
|
||||||
public static function convertAttachment($text, $simplehtml = self::INTERNAL, $tryoembed = true, array $data = [], $uriid = 0)
|
public static function convertAttachment($text, $simplehtml = self::INTERNAL, $tryoembed = true, array $data = [], $uriid = 0)
|
||||||
{
|
{
|
||||||
|
DI::profiler()->startRecording('rendering');
|
||||||
$data = $data ?: self::getAttachmentData($text);
|
$data = $data ?: self::getAttachmentData($text);
|
||||||
if (empty($data) || empty($data['url'])) {
|
if (empty($data) || empty($data['url'])) {
|
||||||
|
DI::profiler()->stopRecording();
|
||||||
return $text;
|
return $text;
|
||||||
}
|
}
|
||||||
|
|
||||||
$stamp1 = microtime(true);
|
|
||||||
|
|
||||||
if (isset($data['title'])) {
|
if (isset($data['title'])) {
|
||||||
$data['title'] = strip_tags($data['title']);
|
$data['title'] = strip_tags($data['title']);
|
||||||
$data['title'] = str_replace(['http://', 'https://'], '', $data['title']);
|
$data['title'] = str_replace(['http://', 'https://'], '', $data['title']);
|
||||||
|
|
@ -688,17 +701,20 @@ class BBCode
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
DI::profiler()->saveTimestamp($stamp1, 'rendering');
|
DI::profiler()->stopRecording();
|
||||||
return trim(($data['text'] ?? '') . ' ' . $return . ' ' . ($data['after'] ?? ''));
|
return trim(($data['text'] ?? '') . ' ' . $return . ' ' . ($data['after'] ?? ''));
|
||||||
}
|
}
|
||||||
|
|
||||||
public static function removeShareInformation($Text, $plaintext = false, $nolink = false)
|
public static function removeShareInformation($Text, $plaintext = false, $nolink = false)
|
||||||
{
|
{
|
||||||
|
DI::profiler()->startRecording('rendering');
|
||||||
$data = self::getAttachmentData($Text);
|
$data = self::getAttachmentData($Text);
|
||||||
|
|
||||||
if (!$data) {
|
if (!$data) {
|
||||||
|
DI::profiler()->stopRecording();
|
||||||
return $Text;
|
return $Text;
|
||||||
} elseif ($nolink) {
|
} elseif ($nolink) {
|
||||||
|
DI::profiler()->stopRecording();
|
||||||
return $data['text'] . ($data['after'] ?? '');
|
return $data['text'] . ($data['after'] ?? '');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -712,11 +728,13 @@ class BBCode
|
||||||
}
|
}
|
||||||
|
|
||||||
if (empty($data['text']) && !empty($data['title']) && empty($data['url'])) {
|
if (empty($data['text']) && !empty($data['title']) && empty($data['url'])) {
|
||||||
|
DI::profiler()->stopRecording();
|
||||||
return $data['title'] . $data['after'];
|
return $data['title'] . $data['after'];
|
||||||
}
|
}
|
||||||
|
|
||||||
// If the link already is included in the post, don't add it again
|
// If the link already is included in the post, don't add it again
|
||||||
if (!empty($data['url']) && strpos($data['text'], $data['url'])) {
|
if (!empty($data['url']) && strpos($data['text'], $data['url'])) {
|
||||||
|
DI::profiler()->stopRecording();
|
||||||
return $data['text'] . $data['after'];
|
return $data['text'] . $data['after'];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -728,6 +746,7 @@ class BBCode
|
||||||
$text .= "\n[url]" . $data['url'] . '[/url]';
|
$text .= "\n[url]" . $data['url'] . '[/url]';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
DI::profiler()->stopRecording();
|
||||||
return $text . "\n" . $data['after'];
|
return $text . "\n" . $data['after'];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -821,6 +840,7 @@ class BBCode
|
||||||
*/
|
*/
|
||||||
public static function getTagPosition($text, $name, $occurrences = 0)
|
public static function getTagPosition($text, $name, $occurrences = 0)
|
||||||
{
|
{
|
||||||
|
DI::profiler()->startRecording('rendering');
|
||||||
if ($occurrences < 0) {
|
if ($occurrences < 0) {
|
||||||
$occurrences = 0;
|
$occurrences = 0;
|
||||||
}
|
}
|
||||||
|
|
@ -833,6 +853,7 @@ class BBCode
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($start_open === false) {
|
if ($start_open === false) {
|
||||||
|
DI::profiler()->stopRecording();
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -840,6 +861,7 @@ class BBCode
|
||||||
$start_close = strpos($text, ']', $start_open);
|
$start_close = strpos($text, ']', $start_open);
|
||||||
|
|
||||||
if ($start_close === false) {
|
if ($start_close === false) {
|
||||||
|
DI::profiler()->stopRecording();
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -848,6 +870,7 @@ class BBCode
|
||||||
$end_open = strpos($text, '[/' . $name . ']', $start_close);
|
$end_open = strpos($text, '[/' . $name . ']', $start_close);
|
||||||
|
|
||||||
if ($end_open === false) {
|
if ($end_open === false) {
|
||||||
|
DI::profiler()->stopRecording();
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -866,6 +889,7 @@ class BBCode
|
||||||
$res['start']['equal'] = $start_equal + 1;
|
$res['start']['equal'] = $start_equal + 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
DI::profiler()->stopRecording();
|
||||||
return $res;
|
return $res;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -880,6 +904,7 @@ class BBCode
|
||||||
*/
|
*/
|
||||||
public static function pregReplaceInTag($pattern, $replace, $name, $text)
|
public static function pregReplaceInTag($pattern, $replace, $name, $text)
|
||||||
{
|
{
|
||||||
|
DI::profiler()->startRecording('rendering');
|
||||||
$occurrences = 0;
|
$occurrences = 0;
|
||||||
$pos = self::getTagPosition($text, $name, $occurrences);
|
$pos = self::getTagPosition($text, $name, $occurrences);
|
||||||
while ($pos !== false && $occurrences++ < 1000) {
|
while ($pos !== false && $occurrences++ < 1000) {
|
||||||
|
|
@ -896,6 +921,7 @@ class BBCode
|
||||||
$pos = self::getTagPosition($text, $name, $occurrences);
|
$pos = self::getTagPosition($text, $name, $occurrences);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
DI::profiler()->stopRecording();
|
||||||
return $text;
|
return $text;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -964,12 +990,14 @@ class BBCode
|
||||||
*/
|
*/
|
||||||
public static function fetchShareAttributes($text)
|
public static function fetchShareAttributes($text)
|
||||||
{
|
{
|
||||||
|
DI::profiler()->startRecording('rendering');
|
||||||
// See Issue https://github.com/friendica/friendica/issues/10454
|
// See Issue https://github.com/friendica/friendica/issues/10454
|
||||||
// Hashtags in usernames are expanded to links. This here is a quick fix.
|
// Hashtags in usernames are expanded to links. This here is a quick fix.
|
||||||
$text = preg_replace('/([@!#])\[url\=.*?\](.*?)\[\/url\]/ism', '$1$2', $text);
|
$text = preg_replace('/([@!#])\[url\=.*?\](.*?)\[\/url\]/ism', '$1$2', $text);
|
||||||
|
|
||||||
$attributes = [];
|
$attributes = [];
|
||||||
if (!preg_match("/(.*?)\[share(.*?)\](.*)\[\/share\]/ism", $text, $matches)) {
|
if (!preg_match("/(.*?)\[share(.*?)\](.*)\[\/share\]/ism", $text, $matches)) {
|
||||||
|
DI::profiler()->stopRecording();
|
||||||
return $attributes;
|
return $attributes;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -978,6 +1006,7 @@ class BBCode
|
||||||
preg_match("/$field=(['\"])(.+?)\\1/ism", $attribute_string, $matches);
|
preg_match("/$field=(['\"])(.+?)\\1/ism", $attribute_string, $matches);
|
||||||
$attributes[$field] = html_entity_decode($matches[2] ?? '', ENT_QUOTES, 'UTF-8');
|
$attributes[$field] = html_entity_decode($matches[2] ?? '', ENT_QUOTES, 'UTF-8');
|
||||||
}
|
}
|
||||||
|
DI::profiler()->stopRecording();
|
||||||
return $attributes;
|
return $attributes;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -1002,6 +1031,7 @@ class BBCode
|
||||||
*/
|
*/
|
||||||
public static function convertShare($text, callable $callback, int $uriid = 0)
|
public static function convertShare($text, callable $callback, int $uriid = 0)
|
||||||
{
|
{
|
||||||
|
DI::profiler()->startRecording('rendering');
|
||||||
$return = preg_replace_callback(
|
$return = preg_replace_callback(
|
||||||
"/(.*?)\[share(.*?)\](.*)\[\/share\]/ism",
|
"/(.*?)\[share(.*?)\](.*)\[\/share\]/ism",
|
||||||
function ($match) use ($callback, $uriid) {
|
function ($match) use ($callback, $uriid) {
|
||||||
|
|
@ -1033,6 +1063,7 @@ class BBCode
|
||||||
$text
|
$text
|
||||||
);
|
);
|
||||||
|
|
||||||
|
DI::profiler()->stopRecording();
|
||||||
return $return;
|
return $return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -1052,6 +1083,7 @@ class BBCode
|
||||||
*/
|
*/
|
||||||
private static function convertShareCallback(array $attributes, array $author_contact, $content, $is_quote_share, $simplehtml)
|
private static function convertShareCallback(array $attributes, array $author_contact, $content, $is_quote_share, $simplehtml)
|
||||||
{
|
{
|
||||||
|
DI::profiler()->startRecording('rendering');
|
||||||
$mention = Protocol::formatMention($attributes['profile'], $attributes['author']);
|
$mention = Protocol::formatMention($attributes['profile'], $attributes['author']);
|
||||||
|
|
||||||
switch ($simplehtml) {
|
switch ($simplehtml) {
|
||||||
|
|
@ -1247,19 +1279,23 @@ class BBCode
|
||||||
|
|
||||||
public static function cleanPictureLinks($text)
|
public static function cleanPictureLinks($text)
|
||||||
{
|
{
|
||||||
|
DI::profiler()->startRecording('rendering');
|
||||||
$return = preg_replace_callback("&\[url=([^\[\]]*)\]\[img=(.*)\](.*)\[\/img\]\[\/url\]&Usi", 'self::cleanPictureLinksCallback', $text);
|
$return = preg_replace_callback("&\[url=([^\[\]]*)\]\[img=(.*)\](.*)\[\/img\]\[\/url\]&Usi", 'self::cleanPictureLinksCallback', $text);
|
||||||
$return = preg_replace_callback("&\[url=([^\[\]]*)\]\[img\](.*)\[\/img\]\[\/url\]&Usi", 'self::cleanPictureLinksCallback', $return);
|
$return = preg_replace_callback("&\[url=([^\[\]]*)\]\[img\](.*)\[\/img\]\[\/url\]&Usi", 'self::cleanPictureLinksCallback', $return);
|
||||||
|
DI::profiler()->stopRecording();
|
||||||
return $return;
|
return $return;
|
||||||
}
|
}
|
||||||
|
|
||||||
public static function removeLinks(string $bbcode)
|
public static function removeLinks(string $bbcode)
|
||||||
{
|
{
|
||||||
|
DI::profiler()->startRecording('rendering');
|
||||||
$bbcode = preg_replace("/\[img\=(.*?)\](.*?)\[\/img\]/ism", ' $1 ', $bbcode);
|
$bbcode = preg_replace("/\[img\=(.*?)\](.*?)\[\/img\]/ism", ' $1 ', $bbcode);
|
||||||
$bbcode = preg_replace("/\[img.*?\[\/img\]/ism", ' ', $bbcode);
|
$bbcode = preg_replace("/\[img.*?\[\/img\]/ism", ' ', $bbcode);
|
||||||
|
|
||||||
$bbcode = preg_replace('/[@!#]\[url\=.*?\].*?\[\/url\]/ism', '', $bbcode);
|
$bbcode = preg_replace('/[@!#]\[url\=.*?\].*?\[\/url\]/ism', '', $bbcode);
|
||||||
$bbcode = preg_replace("/\[url=[^\[\]]*\](.*)\[\/url\]/Usi", ' $1 ', $bbcode);
|
$bbcode = preg_replace("/\[url=[^\[\]]*\](.*)\[\/url\]/Usi", ' $1 ', $bbcode);
|
||||||
$bbcode = preg_replace('/[@!#]?\[url.*?\[\/url\]/ism', '', $bbcode);
|
$bbcode = preg_replace('/[@!#]?\[url.*?\[\/url\]/ism', '', $bbcode);
|
||||||
|
DI::profiler()->stopRecording();
|
||||||
return $bbcode;
|
return $bbcode;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -1271,8 +1307,11 @@ class BBCode
|
||||||
*/
|
*/
|
||||||
public static function setMentionsToNicknames(string $body):string
|
public static function setMentionsToNicknames(string $body):string
|
||||||
{
|
{
|
||||||
|
DI::profiler()->startRecording('rendering');
|
||||||
$regexp = "/([@!])\[url\=([^\[\]]*)\].*?\[\/url\]/ism";
|
$regexp = "/([@!])\[url\=([^\[\]]*)\].*?\[\/url\]/ism";
|
||||||
return preg_replace_callback($regexp, ['self', 'mentionCallback'], $body);
|
$body = preg_replace_callback($regexp, ['self', 'mentionCallback'], $body);
|
||||||
|
DI::profiler()->stopRecording();
|
||||||
|
return $body;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
@ -1360,6 +1399,8 @@ class BBCode
|
||||||
return '';
|
return '';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
DI::profiler()->startRecording('rendering');
|
||||||
|
|
||||||
Hook::callAll('bbcode', $text);
|
Hook::callAll('bbcode', $text);
|
||||||
|
|
||||||
$a = DI::app();
|
$a = DI::app();
|
||||||
|
|
@ -1979,6 +2020,7 @@ class BBCode
|
||||||
);
|
);
|
||||||
|
|
||||||
$text = HTML::purify($text, $allowedIframeDomains);
|
$text = HTML::purify($text, $allowedIframeDomains);
|
||||||
|
DI::profiler()->stopRecording();
|
||||||
|
|
||||||
return trim($text);
|
return trim($text);
|
||||||
}
|
}
|
||||||
|
|
@ -1991,9 +2033,11 @@ class BBCode
|
||||||
*/
|
*/
|
||||||
public static function stripAbstract($text)
|
public static function stripAbstract($text)
|
||||||
{
|
{
|
||||||
|
DI::profiler()->startRecording('rendering');
|
||||||
$text = preg_replace("/[\s|\n]*\[abstract\].*?\[\/abstract\][\s|\n]*/ism", '', $text);
|
$text = preg_replace("/[\s|\n]*\[abstract\].*?\[\/abstract\][\s|\n]*/ism", '', $text);
|
||||||
$text = preg_replace("/[\s|\n]*\[abstract=.*?\].*?\[\/abstract][\s|\n]*/ism", '', $text);
|
$text = preg_replace("/[\s|\n]*\[abstract=.*?\].*?\[\/abstract][\s|\n]*/ism", '', $text);
|
||||||
|
|
||||||
|
DI::profiler()->stopRecording();
|
||||||
return $text;
|
return $text;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -2006,6 +2050,7 @@ class BBCode
|
||||||
*/
|
*/
|
||||||
public static function getAbstract($text, $addon = '')
|
public static function getAbstract($text, $addon = '')
|
||||||
{
|
{
|
||||||
|
DI::profiler()->startRecording('rendering');
|
||||||
$abstract = '';
|
$abstract = '';
|
||||||
$abstracts = [];
|
$abstracts = [];
|
||||||
$addon = strtolower($addon);
|
$addon = strtolower($addon);
|
||||||
|
|
@ -2024,6 +2069,7 @@ class BBCode
|
||||||
$abstract = $result[1];
|
$abstract = $result[1];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
DI::profiler()->stopRecording();
|
||||||
return $abstract;
|
return $abstract;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -2062,6 +2108,7 @@ class BBCode
|
||||||
*/
|
*/
|
||||||
public static function toMarkdown($text, $for_diaspora = true)
|
public static function toMarkdown($text, $for_diaspora = true)
|
||||||
{
|
{
|
||||||
|
DI::profiler()->startRecording('rendering');
|
||||||
$original_text = $text;
|
$original_text = $text;
|
||||||
|
|
||||||
// Since Diaspora is creating a summary for links, this function removes them before posting
|
// Since Diaspora is creating a summary for links, this function removes them before posting
|
||||||
|
|
@ -2106,13 +2153,9 @@ class BBCode
|
||||||
// Maybe we should make this newline at every time before a quote.
|
// Maybe we should make this newline at every time before a quote.
|
||||||
$text = str_replace(['</a><blockquote>'], ['</a><br><blockquote>'], $text);
|
$text = str_replace(['</a><blockquote>'], ['</a><br><blockquote>'], $text);
|
||||||
|
|
||||||
$stamp1 = microtime(true);
|
|
||||||
|
|
||||||
// Now convert HTML to Markdown
|
// Now convert HTML to Markdown
|
||||||
$text = HTML::toMarkdown($text);
|
$text = HTML::toMarkdown($text);
|
||||||
|
|
||||||
DI::profiler()->saveTimestamp($stamp1, "parser");
|
|
||||||
|
|
||||||
// Libertree has a problem with escaped hashtags.
|
// Libertree has a problem with escaped hashtags.
|
||||||
$text = str_replace(['\#'], ['#'], $text);
|
$text = str_replace(['\#'], ['#'], $text);
|
||||||
|
|
||||||
|
|
@ -2131,6 +2174,7 @@ class BBCode
|
||||||
|
|
||||||
Hook::callAll('bb2diaspora', $text);
|
Hook::callAll('bb2diaspora', $text);
|
||||||
|
|
||||||
|
DI::profiler()->stopRecording();
|
||||||
return $text;
|
return $text;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -2149,6 +2193,7 @@ class BBCode
|
||||||
*/
|
*/
|
||||||
public static function getTags($string)
|
public static function getTags($string)
|
||||||
{
|
{
|
||||||
|
DI::profiler()->startRecording('rendering');
|
||||||
$ret = [];
|
$ret = [];
|
||||||
|
|
||||||
self::performWithEscapedTags($string, ['noparse', 'pre', 'code', 'img'], function ($string) use (&$ret) {
|
self::performWithEscapedTags($string, ['noparse', 'pre', 'code', 'img'], function ($string) use (&$ret) {
|
||||||
|
|
@ -2199,6 +2244,7 @@ class BBCode
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
DI::profiler()->stopRecording();
|
||||||
return array_unique($ret);
|
return array_unique($ret);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -2258,6 +2304,7 @@ class BBCode
|
||||||
*/
|
*/
|
||||||
public static function setMentions($body, $profile_uid = 0, $network = '')
|
public static function setMentions($body, $profile_uid = 0, $network = '')
|
||||||
{
|
{
|
||||||
|
DI::profiler()->startRecording('rendering');
|
||||||
self::performWithEscapedTags($body, ['noparse', 'pre', 'code', 'img'], function ($body) use ($profile_uid, $network) {
|
self::performWithEscapedTags($body, ['noparse', 'pre', 'code', 'img'], function ($body) use ($profile_uid, $network) {
|
||||||
$tags = self::getTags($body);
|
$tags = self::getTags($body);
|
||||||
|
|
||||||
|
|
@ -2289,6 +2336,7 @@ class BBCode
|
||||||
return $body;
|
return $body;
|
||||||
});
|
});
|
||||||
|
|
||||||
|
DI::profiler()->stopRecording();
|
||||||
return $body;
|
return $body;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -2304,6 +2352,7 @@ class BBCode
|
||||||
*/
|
*/
|
||||||
public static function getShareOpeningTag(string $author, string $profile, string $avatar, string $link, string $posted, string $guid = null)
|
public static function getShareOpeningTag(string $author, string $profile, string $avatar, string $link, string $posted, string $guid = null)
|
||||||
{
|
{
|
||||||
|
DI::profiler()->startRecording('rendering');
|
||||||
$header = "[share author='" . str_replace(["'", "[", "]"], ["'", "[", "]"], $author) .
|
$header = "[share author='" . str_replace(["'", "[", "]"], ["'", "[", "]"], $author) .
|
||||||
"' profile='" . str_replace(["'", "[", "]"], ["'", "[", "]"], $profile) .
|
"' profile='" . str_replace(["'", "[", "]"], ["'", "[", "]"], $profile) .
|
||||||
"' avatar='" . str_replace(["'", "[", "]"], ["'", "[", "]"], $avatar) .
|
"' avatar='" . str_replace(["'", "[", "]"], ["'", "[", "]"], $avatar) .
|
||||||
|
|
@ -2316,6 +2365,7 @@ class BBCode
|
||||||
|
|
||||||
$header .= "']";
|
$header .= "']";
|
||||||
|
|
||||||
|
DI::profiler()->stopRecording();
|
||||||
return $header;
|
return $header;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -2337,6 +2387,7 @@ class BBCode
|
||||||
*/
|
*/
|
||||||
public static function embedURL(string $url, bool $tryAttachment = true, string $title = null, string $description = null, string $tags = null): string
|
public static function embedURL(string $url, bool $tryAttachment = true, string $title = null, string $description = null, string $tags = null): string
|
||||||
{
|
{
|
||||||
|
DI::profiler()->startRecording('rendering');
|
||||||
DI::logger()->info($url);
|
DI::logger()->info($url);
|
||||||
|
|
||||||
// If there is already some content information submitted we don't
|
// If there is already some content information submitted we don't
|
||||||
|
|
@ -2358,6 +2409,7 @@ class BBCode
|
||||||
|
|
||||||
DI::logger()->info('(unparsed): returns: ' . $result);
|
DI::logger()->info('(unparsed): returns: ' . $result);
|
||||||
|
|
||||||
|
DI::profiler()->stopRecording();
|
||||||
return $result;
|
return $result;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -2376,6 +2428,7 @@ class BBCode
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
DI::profiler()->stopRecording();
|
||||||
return $bbcode;
|
return $bbcode;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -2383,10 +2436,13 @@ class BBCode
|
||||||
|
|
||||||
// Bypass attachment if parse url for a comment
|
// Bypass attachment if parse url for a comment
|
||||||
if (!$tryAttachment) {
|
if (!$tryAttachment) {
|
||||||
|
DI::profiler()->stopRecording();
|
||||||
return "\n" . '[url=' . $url . ']' . $siteinfo['title'] . '[/url]';
|
return "\n" . '[url=' . $url . ']' . $siteinfo['title'] . '[/url]';
|
||||||
}
|
}
|
||||||
|
|
||||||
// Format it as BBCode attachment
|
// Format it as BBCode attachment
|
||||||
return "\n" . PageInfo::getFooterFromData($siteinfo);
|
$bbcode = "\n" . PageInfo::getFooterFromData($siteinfo);
|
||||||
|
DI::profiler()->stopRecording();
|
||||||
|
return $bbcode;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -143,6 +143,7 @@ class HTML
|
||||||
*/
|
*/
|
||||||
public static function toBBCode($message, $basepath = '')
|
public static function toBBCode($message, $basepath = '')
|
||||||
{
|
{
|
||||||
|
DI::profiler()->startRecording('rendering');
|
||||||
$message = str_replace("\r", "", $message);
|
$message = str_replace("\r", "", $message);
|
||||||
|
|
||||||
$message = Strings::performWithEscapedBlocks($message, '#<pre><code.*</code></pre>#iUs', function ($message) {
|
$message = Strings::performWithEscapedBlocks($message, '#<pre><code.*</code></pre>#iUs', function ($message) {
|
||||||
|
|
@ -396,6 +397,7 @@ class HTML
|
||||||
$message = self::qualifyURLs($message, $basepath);
|
$message = self::qualifyURLs($message, $basepath);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
DI::profiler()->stopRecording();
|
||||||
return $message;
|
return $message;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -585,6 +587,7 @@ class HTML
|
||||||
*/
|
*/
|
||||||
public static function toPlaintext(string $html, $wraplength = 75, $compact = false)
|
public static function toPlaintext(string $html, $wraplength = 75, $compact = false)
|
||||||
{
|
{
|
||||||
|
DI::profiler()->startRecording('rendering');
|
||||||
$message = str_replace("\r", "", $html);
|
$message = str_replace("\r", "", $html);
|
||||||
|
|
||||||
$doc = new DOMDocument();
|
$doc = new DOMDocument();
|
||||||
|
|
@ -593,6 +596,7 @@ class HTML
|
||||||
$message = mb_convert_encoding($message, 'HTML-ENTITIES', "UTF-8");
|
$message = mb_convert_encoding($message, 'HTML-ENTITIES', "UTF-8");
|
||||||
|
|
||||||
if (empty($message)) {
|
if (empty($message)) {
|
||||||
|
DI::profiler()->stopRecording();
|
||||||
return '';
|
return '';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -606,6 +610,7 @@ class HTML
|
||||||
$urls = self::collectURLs($message);
|
$urls = self::collectURLs($message);
|
||||||
|
|
||||||
if (empty($message)) {
|
if (empty($message)) {
|
||||||
|
DI::profiler()->stopRecording();
|
||||||
return '';
|
return '';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -689,6 +694,7 @@ class HTML
|
||||||
|
|
||||||
$message = self::quoteLevel(trim($message), $wraplength);
|
$message = self::quoteLevel(trim($message), $wraplength);
|
||||||
|
|
||||||
|
DI::profiler()->stopRecording();
|
||||||
return trim($message);
|
return trim($message);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -701,9 +707,11 @@ class HTML
|
||||||
*/
|
*/
|
||||||
public static function toMarkdown($html)
|
public static function toMarkdown($html)
|
||||||
{
|
{
|
||||||
|
DI::profiler()->startRecording('rendering');
|
||||||
$converter = new HtmlConverter(['hard_break' => true]);
|
$converter = new HtmlConverter(['hard_break' => true]);
|
||||||
$markdown = $converter->convert($html);
|
$markdown = $converter->convert($html);
|
||||||
|
|
||||||
|
DI::profiler()->stopRecording();
|
||||||
return $markdown;
|
return $markdown;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -21,7 +21,6 @@
|
||||||
|
|
||||||
namespace Friendica\Content\Text;
|
namespace Friendica\Content\Text;
|
||||||
|
|
||||||
use Friendica\Core\System;
|
|
||||||
use Friendica\DI;
|
use Friendica\DI;
|
||||||
use Friendica\Model\Contact;
|
use Friendica\Model\Contact;
|
||||||
|
|
||||||
|
|
@ -40,7 +39,7 @@ class Markdown
|
||||||
* @return string
|
* @return string
|
||||||
*/
|
*/
|
||||||
public static function convert($text, $hardwrap = true, $baseuri = null) {
|
public static function convert($text, $hardwrap = true, $baseuri = null) {
|
||||||
$stamp1 = microtime(true);
|
DI::profiler()->startRecording('rendering');
|
||||||
|
|
||||||
$MarkdownParser = new MarkdownParser();
|
$MarkdownParser = new MarkdownParser();
|
||||||
$MarkdownParser->code_class_prefix = 'language-';
|
$MarkdownParser->code_class_prefix = 'language-';
|
||||||
|
|
@ -57,7 +56,7 @@ class Markdown
|
||||||
|
|
||||||
$html = $MarkdownParser->transform($text);
|
$html = $MarkdownParser->transform($text);
|
||||||
|
|
||||||
DI::profiler()->saveTimestamp($stamp1, "parser");
|
DI::profiler()->stopRecording();
|
||||||
|
|
||||||
return $html;
|
return $html;
|
||||||
}
|
}
|
||||||
|
|
@ -109,6 +108,8 @@ class Markdown
|
||||||
*/
|
*/
|
||||||
public static function toBBCode($s)
|
public static function toBBCode($s)
|
||||||
{
|
{
|
||||||
|
DI::profiler()->startRecording('rendering');
|
||||||
|
|
||||||
// The parser cannot handle paragraphs correctly
|
// The parser cannot handle paragraphs correctly
|
||||||
$s = str_replace(['</p>', '<p>', '<p dir="ltr">'], ['<br>', '<br>', '<br>'], $s);
|
$s = str_replace(['</p>', '<p>', '<p dir="ltr">'], ['<br>', '<br>', '<br>'], $s);
|
||||||
|
|
||||||
|
|
@ -134,6 +135,7 @@ class Markdown
|
||||||
// Don't show link to full picture (until it is fixed)
|
// Don't show link to full picture (until it is fixed)
|
||||||
$s = BBCode::scaleExternalImages($s);
|
$s = BBCode::scaleExternalImages($s);
|
||||||
|
|
||||||
|
DI::profiler()->stopRecording();
|
||||||
return $s;
|
return $s;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -236,9 +236,9 @@ class Addon
|
||||||
return $info;
|
return $info;
|
||||||
}
|
}
|
||||||
|
|
||||||
$stamp1 = microtime(true);
|
DI::profiler()->startRecording('file');
|
||||||
$f = file_get_contents("addon/$addon/$addon.php");
|
$f = file_get_contents("addon/$addon/$addon.php");
|
||||||
DI::profiler()->saveTimestamp($stamp1, "file");
|
DI::profiler()->stopRecording();
|
||||||
|
|
||||||
$r = preg_match("|/\*.*\*/|msU", $f, $m);
|
$r = preg_match("|/\*.*\*/|msU", $f, $m);
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -52,11 +52,11 @@ class ProfilerCache implements ICache, IMemoryCache
|
||||||
*/
|
*/
|
||||||
public function getAllKeys($prefix = null)
|
public function getAllKeys($prefix = null)
|
||||||
{
|
{
|
||||||
$time = microtime(true);
|
$this->profiler->startRecording('cache');
|
||||||
|
|
||||||
$return = $this->cache->getAllKeys($prefix);
|
$return = $this->cache->getAllKeys($prefix);
|
||||||
|
|
||||||
$this->profiler->saveTimestamp($time, 'cache');
|
$this->profiler->stopRecording();
|
||||||
|
|
||||||
return $return;
|
return $return;
|
||||||
}
|
}
|
||||||
|
|
@ -66,11 +66,11 @@ class ProfilerCache implements ICache, IMemoryCache
|
||||||
*/
|
*/
|
||||||
public function get($key)
|
public function get($key)
|
||||||
{
|
{
|
||||||
$time = microtime(true);
|
$this->profiler->startRecording('cache');
|
||||||
|
|
||||||
$return = $this->cache->get($key);
|
$return = $this->cache->get($key);
|
||||||
|
|
||||||
$this->profiler->saveTimestamp($time, 'cache');
|
$this->profiler->stopRecording();
|
||||||
|
|
||||||
return $return;
|
return $return;
|
||||||
}
|
}
|
||||||
|
|
@ -80,11 +80,11 @@ class ProfilerCache implements ICache, IMemoryCache
|
||||||
*/
|
*/
|
||||||
public function set($key, $value, $ttl = Duration::FIVE_MINUTES)
|
public function set($key, $value, $ttl = Duration::FIVE_MINUTES)
|
||||||
{
|
{
|
||||||
$time = microtime(true);
|
$this->profiler->startRecording('cache');
|
||||||
|
|
||||||
$return = $this->cache->set($key, $value, $ttl);
|
$return = $this->cache->set($key, $value, $ttl);
|
||||||
|
|
||||||
$this->profiler->saveTimestamp($time, 'cache');
|
$this->profiler->stopRecording();
|
||||||
|
|
||||||
return $return;
|
return $return;
|
||||||
}
|
}
|
||||||
|
|
@ -94,11 +94,11 @@ class ProfilerCache implements ICache, IMemoryCache
|
||||||
*/
|
*/
|
||||||
public function delete($key)
|
public function delete($key)
|
||||||
{
|
{
|
||||||
$time = microtime(true);
|
$this->profiler->startRecording('cache');
|
||||||
|
|
||||||
$return = $this->cache->delete($key);
|
$return = $this->cache->delete($key);
|
||||||
|
|
||||||
$this->profiler->saveTimestamp($time, 'cache');
|
$this->profiler->stopRecording();
|
||||||
|
|
||||||
return $return;
|
return $return;
|
||||||
}
|
}
|
||||||
|
|
@ -108,11 +108,11 @@ class ProfilerCache implements ICache, IMemoryCache
|
||||||
*/
|
*/
|
||||||
public function clear($outdated = true)
|
public function clear($outdated = true)
|
||||||
{
|
{
|
||||||
$time = microtime(true);
|
$this->profiler->startRecording('cache');
|
||||||
|
|
||||||
$return = $this->cache->clear($outdated);
|
$return = $this->cache->clear($outdated);
|
||||||
|
|
||||||
$this->profiler->saveTimestamp($time, 'cache');
|
$this->profiler->stopRecording();
|
||||||
|
|
||||||
return $return;
|
return $return;
|
||||||
}
|
}
|
||||||
|
|
@ -123,11 +123,11 @@ class ProfilerCache implements ICache, IMemoryCache
|
||||||
public function add($key, $value, $ttl = Duration::FIVE_MINUTES)
|
public function add($key, $value, $ttl = Duration::FIVE_MINUTES)
|
||||||
{
|
{
|
||||||
if ($this->cache instanceof IMemoryCache) {
|
if ($this->cache instanceof IMemoryCache) {
|
||||||
$time = microtime(true);
|
$this->profiler->startRecording('cache');
|
||||||
|
|
||||||
$return = $this->cache->add($key, $value, $ttl);
|
$return = $this->cache->add($key, $value, $ttl);
|
||||||
|
|
||||||
$this->profiler->saveTimestamp($time, 'cache');
|
$this->profiler->stopRecording();
|
||||||
|
|
||||||
return $return;
|
return $return;
|
||||||
} else {
|
} else {
|
||||||
|
|
@ -141,11 +141,11 @@ class ProfilerCache implements ICache, IMemoryCache
|
||||||
public function compareSet($key, $oldValue, $newValue, $ttl = Duration::FIVE_MINUTES)
|
public function compareSet($key, $oldValue, $newValue, $ttl = Duration::FIVE_MINUTES)
|
||||||
{
|
{
|
||||||
if ($this->cache instanceof IMemoryCache) {
|
if ($this->cache instanceof IMemoryCache) {
|
||||||
$time = microtime(true);
|
$this->profiler->startRecording('cache');
|
||||||
|
|
||||||
$return = $this->cache->compareSet($key, $oldValue, $newValue, $ttl);
|
$return = $this->cache->compareSet($key, $oldValue, $newValue, $ttl);
|
||||||
|
|
||||||
$this->profiler->saveTimestamp($time, 'cache');
|
$this->profiler->stopRecording();
|
||||||
|
|
||||||
return $return;
|
return $return;
|
||||||
} else {
|
} else {
|
||||||
|
|
@ -159,11 +159,11 @@ class ProfilerCache implements ICache, IMemoryCache
|
||||||
public function compareDelete($key, $value)
|
public function compareDelete($key, $value)
|
||||||
{
|
{
|
||||||
if ($this->cache instanceof IMemoryCache) {
|
if ($this->cache instanceof IMemoryCache) {
|
||||||
$time = microtime(true);
|
$this->profiler->startRecording('cache');
|
||||||
|
|
||||||
$return = $this->cache->compareDelete($key, $value);
|
$return = $this->cache->compareDelete($key, $value);
|
||||||
|
|
||||||
$this->profiler->saveTimestamp($time, 'cache');
|
$this->profiler->stopRecording();
|
||||||
|
|
||||||
return $return;
|
return $return;
|
||||||
} else {
|
} else {
|
||||||
|
|
|
||||||
|
|
@ -73,7 +73,7 @@ class Renderer
|
||||||
*/
|
*/
|
||||||
public static function replaceMacros(string $template, array $vars = [])
|
public static function replaceMacros(string $template, array $vars = [])
|
||||||
{
|
{
|
||||||
$stamp1 = microtime(true);
|
DI::profiler()->startRecording('rendering');
|
||||||
|
|
||||||
// pass $baseurl to all templates if it isn't set
|
// pass $baseurl to all templates if it isn't set
|
||||||
$vars = array_merge(['$baseurl' => DI::baseUrl()->get(), '$APP' => DI::app()], $vars);
|
$vars = array_merge(['$baseurl' => DI::baseUrl()->get(), '$APP' => DI::app()], $vars);
|
||||||
|
|
@ -90,7 +90,7 @@ class Renderer
|
||||||
throw new InternalServerErrorException($message);
|
throw new InternalServerErrorException($message);
|
||||||
}
|
}
|
||||||
|
|
||||||
DI::profiler()->saveTimestamp($stamp1, "rendering");
|
DI::profiler()->stopRecording();
|
||||||
|
|
||||||
return $output;
|
return $output;
|
||||||
}
|
}
|
||||||
|
|
@ -106,7 +106,7 @@ class Renderer
|
||||||
*/
|
*/
|
||||||
public static function getMarkupTemplate($file, $subDir = '')
|
public static function getMarkupTemplate($file, $subDir = '')
|
||||||
{
|
{
|
||||||
$stamp1 = microtime(true);
|
DI::profiler()->startRecording('file');
|
||||||
$t = self::getTemplateEngine();
|
$t = self::getTemplateEngine();
|
||||||
|
|
||||||
try {
|
try {
|
||||||
|
|
@ -119,7 +119,7 @@ class Renderer
|
||||||
throw new InternalServerErrorException($message);
|
throw new InternalServerErrorException($message);
|
||||||
}
|
}
|
||||||
|
|
||||||
DI::profiler()->saveTimestamp($stamp1, "file");
|
DI::profiler()->stopRecording();
|
||||||
|
|
||||||
return $template;
|
return $template;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -88,9 +88,9 @@ class Theme
|
||||||
return $info;
|
return $info;
|
||||||
}
|
}
|
||||||
|
|
||||||
$stamp1 = microtime(true);
|
DI::profiler()->startRecording('file');
|
||||||
$theme_file = file_get_contents("view/theme/$theme/theme.php");
|
$theme_file = file_get_contents("view/theme/$theme/theme.php");
|
||||||
DI::profiler()->saveTimestamp($stamp1, "file");
|
DI::profiler()->stopRecording();
|
||||||
|
|
||||||
$result = preg_match("|/\*.*\*/|msU", $theme_file, $matches);
|
$result = preg_match("|/\*.*\*/|msU", $theme_file, $matches);
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -468,6 +468,7 @@ class Database
|
||||||
public function p($sql)
|
public function p($sql)
|
||||||
{
|
{
|
||||||
|
|
||||||
|
$this->profiler->startRecording('database');
|
||||||
$stamp1 = microtime(true);
|
$stamp1 = microtime(true);
|
||||||
|
|
||||||
$params = DBA::getParam(func_get_args());
|
$params = DBA::getParam(func_get_args());
|
||||||
|
|
@ -695,7 +696,7 @@ class Database
|
||||||
$this->errorno = $errorno;
|
$this->errorno = $errorno;
|
||||||
}
|
}
|
||||||
|
|
||||||
$this->profiler->saveTimestamp($stamp1, 'database');
|
$this->profiler->stopRecording();
|
||||||
|
|
||||||
if ($this->configCache->get('system', 'db_log')) {
|
if ($this->configCache->get('system', 'db_log')) {
|
||||||
$stamp2 = microtime(true);
|
$stamp2 = microtime(true);
|
||||||
|
|
@ -727,7 +728,7 @@ class Database
|
||||||
public function e($sql)
|
public function e($sql)
|
||||||
{
|
{
|
||||||
|
|
||||||
$stamp = microtime(true);
|
$this->profiler->startRecording('database_write');
|
||||||
|
|
||||||
$params = DBA::getParam(func_get_args());
|
$params = DBA::getParam(func_get_args());
|
||||||
|
|
||||||
|
|
@ -779,7 +780,7 @@ class Database
|
||||||
$this->errorno = $errorno;
|
$this->errorno = $errorno;
|
||||||
}
|
}
|
||||||
|
|
||||||
$this->profiler->saveTimestamp($stamp, "database_write");
|
$this->profiler->stopRecording();
|
||||||
|
|
||||||
return $retval;
|
return $retval;
|
||||||
}
|
}
|
||||||
|
|
@ -914,7 +915,7 @@ class Database
|
||||||
*/
|
*/
|
||||||
public function fetch($stmt)
|
public function fetch($stmt)
|
||||||
{
|
{
|
||||||
$stamp1 = microtime(true);
|
$this->profiler->startRecording('database');
|
||||||
|
|
||||||
$columns = [];
|
$columns = [];
|
||||||
|
|
||||||
|
|
@ -962,7 +963,7 @@ class Database
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
$this->profiler->saveTimestamp($stamp1, 'database');
|
$this->profiler->stopRecording();
|
||||||
|
|
||||||
return $columns;
|
return $columns;
|
||||||
}
|
}
|
||||||
|
|
@ -1589,7 +1590,7 @@ class Database
|
||||||
public function close($stmt)
|
public function close($stmt)
|
||||||
{
|
{
|
||||||
|
|
||||||
$stamp1 = microtime(true);
|
$this->profiler->startRecording('database');
|
||||||
|
|
||||||
if (!is_object($stmt)) {
|
if (!is_object($stmt)) {
|
||||||
return false;
|
return false;
|
||||||
|
|
@ -1615,7 +1616,7 @@ class Database
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
$this->profiler->saveTimestamp($stamp1, 'database');
|
$this->profiler->stopRecording();
|
||||||
|
|
||||||
return $ret;
|
return $ret;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -58,7 +58,7 @@ class SessionFactory
|
||||||
*/
|
*/
|
||||||
public function createSession(App\Mode $mode, App\BaseURL $baseURL, IConfig $config, Database $dba, ICache $cache, LoggerInterface $logger, Profiler $profiler, array $server = [])
|
public function createSession(App\Mode $mode, App\BaseURL $baseURL, IConfig $config, Database $dba, ICache $cache, LoggerInterface $logger, Profiler $profiler, array $server = [])
|
||||||
{
|
{
|
||||||
$stamp1 = microtime(true);
|
$profiler->startRecording('parser');
|
||||||
$session = null;
|
$session = null;
|
||||||
|
|
||||||
try {
|
try {
|
||||||
|
|
@ -85,7 +85,7 @@ class SessionFactory
|
||||||
$session = new Session\Native($baseURL, $handler);
|
$session = new Session\Native($baseURL, $handler);
|
||||||
}
|
}
|
||||||
} finally {
|
} finally {
|
||||||
$profiler->saveTimestamp($stamp1, 'parser');
|
$profiler->stopRecording();
|
||||||
return $session;
|
return $session;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -2858,7 +2858,7 @@ class Item
|
||||||
*/
|
*/
|
||||||
private static function replaceVisualAttachments(array $attachments, string $body)
|
private static function replaceVisualAttachments(array $attachments, string $body)
|
||||||
{
|
{
|
||||||
$stamp1 = microtime(true);
|
DI::profiler()->startRecording('rendering');
|
||||||
|
|
||||||
foreach ($attachments['visual'] as $attachment) {
|
foreach ($attachments['visual'] as $attachment) {
|
||||||
if (!empty($attachment['preview'])) {
|
if (!empty($attachment['preview'])) {
|
||||||
|
|
@ -2867,7 +2867,7 @@ class Item
|
||||||
$body = str_replace($attachment['url'], Post\Media::getUrlForId($attachment['id']), $body);
|
$body = str_replace($attachment['url'], Post\Media::getUrlForId($attachment['id']), $body);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
DI::profiler()->saveTimestamp($stamp1, 'rendering');
|
DI::profiler()->stopRecording();
|
||||||
return $body;
|
return $body;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -2881,7 +2881,7 @@ class Item
|
||||||
*/
|
*/
|
||||||
private static function addVisualAttachments(array $attachments, array $item, string $content, bool $shared)
|
private static function addVisualAttachments(array $attachments, array $item, string $content, bool $shared)
|
||||||
{
|
{
|
||||||
$stamp1 = microtime(true);
|
DI::profiler()->startRecording('rendering');
|
||||||
$leading = '';
|
$leading = '';
|
||||||
$trailing = '';
|
$trailing = '';
|
||||||
|
|
||||||
|
|
@ -2957,7 +2957,7 @@ class Item
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
DI::profiler()->saveTimestamp($stamp1, 'rendering');
|
DI::profiler()->stopRecording();
|
||||||
return $content;
|
return $content;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -2973,7 +2973,7 @@ class Item
|
||||||
*/
|
*/
|
||||||
private static function addLinkAttachment(int $uriid, array $attachments, string $body, string $content, bool $shared, array $ignore_links)
|
private static function addLinkAttachment(int $uriid, array $attachments, string $body, string $content, bool $shared, array $ignore_links)
|
||||||
{
|
{
|
||||||
$stamp1 = microtime(true);
|
DI::profiler()->startRecording('rendering');
|
||||||
// @ToDo Check only for audio and video
|
// @ToDo Check only for audio and video
|
||||||
$preview = empty($attachments['visual']);
|
$preview = empty($attachments['visual']);
|
||||||
|
|
||||||
|
|
@ -3038,7 +3038,7 @@ class Item
|
||||||
} elseif (preg_match("/.*(\[attachment.*?\].*?\[\/attachment\]).*/ism", $body, $match)) {
|
} elseif (preg_match("/.*(\[attachment.*?\].*?\[\/attachment\]).*/ism", $body, $match)) {
|
||||||
$data = BBCode::getAttachmentData($match[1]);
|
$data = BBCode::getAttachmentData($match[1]);
|
||||||
}
|
}
|
||||||
DI::profiler()->saveTimestamp($stamp1, 'rendering');
|
DI::profiler()->stopRecording();
|
||||||
|
|
||||||
if (isset($data['url']) && !in_array($data['url'], $ignore_links)) {
|
if (isset($data['url']) && !in_array($data['url'], $ignore_links)) {
|
||||||
if (!empty($data['description']) || !empty($data['image']) || !empty($data['preview'])) {
|
if (!empty($data['description']) || !empty($data['image']) || !empty($data['preview'])) {
|
||||||
|
|
@ -3086,7 +3086,7 @@ class Item
|
||||||
*/
|
*/
|
||||||
private static function addNonVisualAttachments(array $attachments, array $item, string $content)
|
private static function addNonVisualAttachments(array $attachments, array $item, string $content)
|
||||||
{
|
{
|
||||||
$stamp1 = microtime(true);
|
DI::profiler()->startRecording('rendering');
|
||||||
$trailing = '';
|
$trailing = '';
|
||||||
foreach ($attachments['additional'] as $attachment) {
|
foreach ($attachments['additional'] as $attachment) {
|
||||||
if (strpos($item['body'], $attachment['url'])) {
|
if (strpos($item['body'], $attachment['url'])) {
|
||||||
|
|
@ -3112,7 +3112,7 @@ class Item
|
||||||
$content .= '<div class="body-attach">' . $trailing . '<div class="clear"></div></div>';
|
$content .= '<div class="body-attach">' . $trailing . '<div class="clear"></div></div>';
|
||||||
}
|
}
|
||||||
|
|
||||||
DI::profiler()->saveTimestamp($stamp1, 'rendering');
|
DI::profiler()->stopRecording();
|
||||||
return $content;
|
return $content;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -72,7 +72,7 @@ class HTTPRequest implements IHTTPRequest
|
||||||
*/
|
*/
|
||||||
public function get(string $url, array $opts = [], &$redirects = 0)
|
public function get(string $url, array $opts = [], &$redirects = 0)
|
||||||
{
|
{
|
||||||
$stamp1 = microtime(true);
|
$this->profiler->startRecording('network');
|
||||||
|
|
||||||
if (Network::isLocalLink($url)) {
|
if (Network::isLocalLink($url)) {
|
||||||
$this->logger->info('Local link', ['url' => $url, 'callstack' => System::callstack(20)]);
|
$this->logger->info('Local link', ['url' => $url, 'callstack' => System::callstack(20)]);
|
||||||
|
|
@ -80,7 +80,7 @@ class HTTPRequest implements IHTTPRequest
|
||||||
|
|
||||||
if (strlen($url) > 1000) {
|
if (strlen($url) > 1000) {
|
||||||
$this->logger->debug('URL is longer than 1000 characters.', ['url' => $url, 'callstack' => System::callstack(20)]);
|
$this->logger->debug('URL is longer than 1000 characters.', ['url' => $url, 'callstack' => System::callstack(20)]);
|
||||||
$this->profiler->saveTimestamp($stamp1, 'network');
|
$this->profiler->stopRecording();
|
||||||
return CurlResult::createErrorCurl(substr($url, 0, 200));
|
return CurlResult::createErrorCurl(substr($url, 0, 200));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -99,14 +99,14 @@ class HTTPRequest implements IHTTPRequest
|
||||||
|
|
||||||
if (Network::isUrlBlocked($url)) {
|
if (Network::isUrlBlocked($url)) {
|
||||||
$this->logger->info('Domain is blocked.', ['url' => $url]);
|
$this->logger->info('Domain is blocked.', ['url' => $url]);
|
||||||
$this->profiler->saveTimestamp($stamp1, 'network');
|
$this->profiler->stopRecording();
|
||||||
return CurlResult::createErrorCurl($url);
|
return CurlResult::createErrorCurl($url);
|
||||||
}
|
}
|
||||||
|
|
||||||
$ch = @curl_init($url);
|
$ch = @curl_init($url);
|
||||||
|
|
||||||
if (($redirects > 8) || (!$ch)) {
|
if (($redirects > 8) || (!$ch)) {
|
||||||
$this->profiler->saveTimestamp($stamp1, 'network');
|
$this->profiler->stopRecording();
|
||||||
return CurlResult::createErrorCurl($url);
|
return CurlResult::createErrorCurl($url);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -208,13 +208,13 @@ class HTTPRequest implements IHTTPRequest
|
||||||
$redirects++;
|
$redirects++;
|
||||||
$this->logger->notice('Curl redirect.', ['url' => $url, 'to' => $curlResponse->getRedirectUrl()]);
|
$this->logger->notice('Curl redirect.', ['url' => $url, 'to' => $curlResponse->getRedirectUrl()]);
|
||||||
@curl_close($ch);
|
@curl_close($ch);
|
||||||
$this->profiler->saveTimestamp($stamp1, 'network');
|
$this->profiler->stopRecording();
|
||||||
return $this->get($curlResponse->getRedirectUrl(), $opts, $redirects);
|
return $this->get($curlResponse->getRedirectUrl(), $opts, $redirects);
|
||||||
}
|
}
|
||||||
|
|
||||||
@curl_close($ch);
|
@curl_close($ch);
|
||||||
|
|
||||||
$this->profiler->saveTimestamp($stamp1, 'network');
|
$this->profiler->stopRecording();
|
||||||
|
|
||||||
return $curlResponse;
|
return $curlResponse;
|
||||||
}
|
}
|
||||||
|
|
@ -228,7 +228,7 @@ class HTTPRequest implements IHTTPRequest
|
||||||
*/
|
*/
|
||||||
public function post(string $url, $params, array $headers = [], int $timeout = 0, &$redirects = 0)
|
public function post(string $url, $params, array $headers = [], int $timeout = 0, &$redirects = 0)
|
||||||
{
|
{
|
||||||
$stamp1 = microtime(true);
|
$this->profiler->startRecording('network');
|
||||||
|
|
||||||
if (Network::isLocalLink($url)) {
|
if (Network::isLocalLink($url)) {
|
||||||
$this->logger->info('Local link', ['url' => $url, 'callstack' => System::callstack(20)]);
|
$this->logger->info('Local link', ['url' => $url, 'callstack' => System::callstack(20)]);
|
||||||
|
|
@ -236,14 +236,14 @@ class HTTPRequest implements IHTTPRequest
|
||||||
|
|
||||||
if (Network::isUrlBlocked($url)) {
|
if (Network::isUrlBlocked($url)) {
|
||||||
$this->logger->info('Domain is blocked.' . ['url' => $url]);
|
$this->logger->info('Domain is blocked.' . ['url' => $url]);
|
||||||
$this->profiler->saveTimestamp($stamp1, 'network');
|
$this->profiler->stopRecording();
|
||||||
return CurlResult::createErrorCurl($url);
|
return CurlResult::createErrorCurl($url);
|
||||||
}
|
}
|
||||||
|
|
||||||
$ch = curl_init($url);
|
$ch = curl_init($url);
|
||||||
|
|
||||||
if (($redirects > 8) || (!$ch)) {
|
if (($redirects > 8) || (!$ch)) {
|
||||||
$this->profiler->saveTimestamp($stamp1, 'network');
|
$this->profiler->stopRecording();
|
||||||
return CurlResult::createErrorCurl($url);
|
return CurlResult::createErrorCurl($url);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -303,13 +303,13 @@ class HTTPRequest implements IHTTPRequest
|
||||||
$redirects++;
|
$redirects++;
|
||||||
$this->logger->info('Post redirect.', ['url' => $url, 'to' => $curlResponse->getRedirectUrl()]);
|
$this->logger->info('Post redirect.', ['url' => $url, 'to' => $curlResponse->getRedirectUrl()]);
|
||||||
curl_close($ch);
|
curl_close($ch);
|
||||||
$this->profiler->saveTimestamp($stamp1, 'network');
|
$this->profiler->stopRecording();
|
||||||
return $this->post($curlResponse->getRedirectUrl(), $params, $headers, $redirects, $timeout);
|
return $this->post($curlResponse->getRedirectUrl(), $params, $headers, $redirects, $timeout);
|
||||||
}
|
}
|
||||||
|
|
||||||
curl_close($ch);
|
curl_close($ch);
|
||||||
|
|
||||||
$this->profiler->saveTimestamp($stamp1, 'network');
|
$this->profiler->stopRecording();
|
||||||
|
|
||||||
// Very old versions of Lighttpd don't like the "Expect" header, so we remove it when needed
|
// Very old versions of Lighttpd don't like the "Expect" header, so we remove it when needed
|
||||||
if ($curlResponse->getReturnCode() == 417) {
|
if ($curlResponse->getReturnCode() == 417) {
|
||||||
|
|
@ -358,7 +358,7 @@ class HTTPRequest implements IHTTPRequest
|
||||||
|
|
||||||
$url = trim($url, "'");
|
$url = trim($url, "'");
|
||||||
|
|
||||||
$stamp1 = microtime(true);
|
$this->profiler->startRecording('network');
|
||||||
|
|
||||||
$ch = curl_init();
|
$ch = curl_init();
|
||||||
curl_setopt($ch, CURLOPT_URL, $url);
|
curl_setopt($ch, CURLOPT_URL, $url);
|
||||||
|
|
@ -374,7 +374,7 @@ class HTTPRequest implements IHTTPRequest
|
||||||
$http_code = $curl_info['http_code'];
|
$http_code = $curl_info['http_code'];
|
||||||
curl_close($ch);
|
curl_close($ch);
|
||||||
|
|
||||||
$this->profiler->saveTimestamp($stamp1, "network");
|
$this->profiler->stopRecording();
|
||||||
|
|
||||||
if ($http_code == 0) {
|
if ($http_code == 0) {
|
||||||
return $url;
|
return $url;
|
||||||
|
|
@ -403,7 +403,7 @@ class HTTPRequest implements IHTTPRequest
|
||||||
return $url;
|
return $url;
|
||||||
}
|
}
|
||||||
|
|
||||||
$stamp1 = microtime(true);
|
$this->profiler->startRecording('network');
|
||||||
|
|
||||||
$ch = curl_init();
|
$ch = curl_init();
|
||||||
curl_setopt($ch, CURLOPT_URL, $url);
|
curl_setopt($ch, CURLOPT_URL, $url);
|
||||||
|
|
@ -417,7 +417,7 @@ class HTTPRequest implements IHTTPRequest
|
||||||
$body = curl_exec($ch);
|
$body = curl_exec($ch);
|
||||||
curl_close($ch);
|
curl_close($ch);
|
||||||
|
|
||||||
$this->profiler->saveTimestamp($stamp1, "network");
|
$this->profiler->stopRecording();
|
||||||
|
|
||||||
if (trim($body) == "") {
|
if (trim($body) == "") {
|
||||||
return $url;
|
return $url;
|
||||||
|
|
|
||||||
|
|
@ -650,9 +650,9 @@ class Image
|
||||||
|
|
||||||
$string = $this->asString();
|
$string = $this->asString();
|
||||||
|
|
||||||
$stamp1 = microtime(true);
|
DI::profiler()->stopRecording('file');
|
||||||
file_put_contents($path, $string);
|
file_put_contents($path, $string);
|
||||||
DI::profiler()->saveTimestamp($stamp1, "file");
|
DI::profiler()->stopRecording();
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
||||||
|
|
@ -59,9 +59,9 @@ class ProfilerLogger implements LoggerInterface
|
||||||
*/
|
*/
|
||||||
public function emergency($message, array $context = array())
|
public function emergency($message, array $context = array())
|
||||||
{
|
{
|
||||||
$stamp1 = microtime(true);
|
$this->profiler->startRecording('file');
|
||||||
$this->logger->emergency($message, $context);
|
$this->logger->emergency($message, $context);
|
||||||
$this->profiler->saveTimestamp($stamp1, 'file');
|
$this->profiler->stopRecording();
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
@ -69,9 +69,9 @@ class ProfilerLogger implements LoggerInterface
|
||||||
*/
|
*/
|
||||||
public function alert($message, array $context = array())
|
public function alert($message, array $context = array())
|
||||||
{
|
{
|
||||||
$stamp1 = microtime(true);
|
$this->profiler->startRecording('file');
|
||||||
$this->logger->alert($message, $context);
|
$this->logger->alert($message, $context);
|
||||||
$this->profiler->saveTimestamp($stamp1, 'file');
|
$this->profiler->stopRecording();
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
@ -79,9 +79,9 @@ class ProfilerLogger implements LoggerInterface
|
||||||
*/
|
*/
|
||||||
public function critical($message, array $context = array())
|
public function critical($message, array $context = array())
|
||||||
{
|
{
|
||||||
$stamp1 = microtime(true);
|
$this->profiler->startRecording('file');
|
||||||
$this->logger->critical($message, $context);
|
$this->logger->critical($message, $context);
|
||||||
$this->profiler->saveTimestamp($stamp1, 'file');
|
$this->profiler->stopRecording();
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
@ -89,9 +89,9 @@ class ProfilerLogger implements LoggerInterface
|
||||||
*/
|
*/
|
||||||
public function error($message, array $context = array())
|
public function error($message, array $context = array())
|
||||||
{
|
{
|
||||||
$stamp1 = microtime(true);
|
$this->profiler->startRecording('file');
|
||||||
$this->logger->error($message, $context);
|
$this->logger->error($message, $context);
|
||||||
$this->profiler->saveTimestamp($stamp1, 'file');
|
$this->profiler->stopRecording();
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
@ -99,9 +99,9 @@ class ProfilerLogger implements LoggerInterface
|
||||||
*/
|
*/
|
||||||
public function warning($message, array $context = array())
|
public function warning($message, array $context = array())
|
||||||
{
|
{
|
||||||
$stamp1 = microtime(true);
|
$this->profiler->startRecording('file');
|
||||||
$this->logger->warning($message, $context);
|
$this->logger->warning($message, $context);
|
||||||
$this->profiler->saveTimestamp($stamp1, 'file');
|
$this->profiler->stopRecording();
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
@ -109,9 +109,9 @@ class ProfilerLogger implements LoggerInterface
|
||||||
*/
|
*/
|
||||||
public function notice($message, array $context = array())
|
public function notice($message, array $context = array())
|
||||||
{
|
{
|
||||||
$stamp1 = microtime(true);
|
$this->profiler->startRecording('file');
|
||||||
$this->logger->notice($message, $context);
|
$this->logger->notice($message, $context);
|
||||||
$this->profiler->saveTimestamp($stamp1, 'file');
|
$this->profiler->stopRecording();
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
@ -119,9 +119,9 @@ class ProfilerLogger implements LoggerInterface
|
||||||
*/
|
*/
|
||||||
public function info($message, array $context = array())
|
public function info($message, array $context = array())
|
||||||
{
|
{
|
||||||
$stamp1 = microtime(true);
|
$this->profiler->startRecording('file');
|
||||||
$this->logger->info($message, $context);
|
$this->logger->info($message, $context);
|
||||||
$this->profiler->saveTimestamp($stamp1, 'file');
|
$this->profiler->stopRecording();
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
@ -129,9 +129,9 @@ class ProfilerLogger implements LoggerInterface
|
||||||
*/
|
*/
|
||||||
public function debug($message, array $context = array())
|
public function debug($message, array $context = array())
|
||||||
{
|
{
|
||||||
$stamp1 = microtime(true);
|
$this->profiler->startRecording('file');
|
||||||
$this->logger->debug($message, $context);
|
$this->logger->debug($message, $context);
|
||||||
$this->profiler->saveTimestamp($stamp1, 'file');
|
$this->profiler->stopRecording();
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
@ -139,8 +139,8 @@ class ProfilerLogger implements LoggerInterface
|
||||||
*/
|
*/
|
||||||
public function log($level, $message, array $context = array())
|
public function log($level, $message, array $context = array())
|
||||||
{
|
{
|
||||||
$stamp1 = microtime(true);
|
$this->profiler->startRecording('file');
|
||||||
$this->logger->log($level, $message, $context);
|
$this->logger->log($level, $message, $context);
|
||||||
$this->profiler->saveTimestamp($stamp1, 'file');
|
$this->profiler->stopRecording();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -54,6 +54,8 @@ class Profiler implements ContainerInterface
|
||||||
*/
|
*/
|
||||||
private $rendertime;
|
private $rendertime;
|
||||||
|
|
||||||
|
private $timestamps = [];
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* True, if the Profiler should measure the whole rendertime including functions
|
* True, if the Profiler should measure the whole rendertime including functions
|
||||||
*
|
*
|
||||||
|
|
@ -85,6 +87,48 @@ class Profiler implements ContainerInterface
|
||||||
$this->reset();
|
$this->reset();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public function startRecording(string $value)
|
||||||
|
{
|
||||||
|
if (!$this->enabled) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
$this->timestamps[] = ['value' => $value, 'stamp' => microtime(true), 'credit' => 0];
|
||||||
|
}
|
||||||
|
|
||||||
|
public function stopRecording(string $callstack = '')
|
||||||
|
{
|
||||||
|
if (!$this->enabled || empty($this->timestamps)) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
$timestamp = array_pop($this->timestamps);
|
||||||
|
|
||||||
|
$duration = floatval(microtime(true) - $timestamp['stamp'] - $timestamp['credit']);
|
||||||
|
$value = $timestamp['value'];
|
||||||
|
|
||||||
|
foreach ($this->timestamps as $key => $stamp) {
|
||||||
|
$this->timestamps[$key]['credit'] += $duration;
|
||||||
|
}
|
||||||
|
|
||||||
|
$callstack = $callstack ?: System::callstack(4, $value == 'rendering' ? 0 : 1);
|
||||||
|
|
||||||
|
if (!isset($this->performance[$value])) {
|
||||||
|
// Prevent ugly E_NOTICE
|
||||||
|
$this->performance[$value] = 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
$this->performance[$value] += (float) $duration;
|
||||||
|
$this->performance['marktime'] += (float) $duration;
|
||||||
|
|
||||||
|
if (!isset($this->callstack[$value][$callstack])) {
|
||||||
|
// Prevent ugly E_NOTICE
|
||||||
|
$this->callstack[$value][$callstack] = 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
$this->callstack[$value][$callstack] += (float) $duration;
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Saves a timestamp for a value - f.e. a call
|
* Saves a timestamp for a value - f.e. a call
|
||||||
* Necessary for profiling Friendica
|
* Necessary for profiling Friendica
|
||||||
|
|
@ -227,6 +271,15 @@ class Profiler implements ContainerInterface
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
if (isset($this->callstack["rendering"])) {
|
||||||
|
$output .= "\nRendering:\n";
|
||||||
|
foreach ($this->callstack["rendering"] as $func => $time) {
|
||||||
|
$time = round($time, 3);
|
||||||
|
if ($time > $limit) {
|
||||||
|
$output .= $func . ": " . $time . "\n";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
return $output;
|
return $output;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -250,11 +250,12 @@ class ProfilerTest extends MockedTest
|
||||||
->once();
|
->once();
|
||||||
|
|
||||||
$profiler = new Profiler($configCache);
|
$profiler = new Profiler($configCache);
|
||||||
|
$profiler->startRecording('network');
|
||||||
|
|
||||||
self::assertFalse($profiler->isRendertime());
|
self::assertFalse($profiler->isRendertime());
|
||||||
self::assertEmpty($profiler->getRendertimeString());
|
self::assertEmpty($profiler->getRendertimeString());
|
||||||
|
|
||||||
$profiler->saveTimestamp(time(), 'network', 'test1');
|
$profiler->stopRecording('test1');
|
||||||
|
|
||||||
$config = \Mockery::mock(IConfig::class);
|
$config = \Mockery::mock(IConfig::class);
|
||||||
$config->shouldReceive('get')
|
$config->shouldReceive('get')
|
||||||
|
|
@ -282,7 +283,8 @@ class ProfilerTest extends MockedTest
|
||||||
|
|
||||||
$profiler->update($config);
|
$profiler->update($config);
|
||||||
|
|
||||||
$profiler->saveTimestamp(time(), 'database', 'test2');
|
$profiler->startRecording('database');
|
||||||
|
$profiler->stopRecording('test2');
|
||||||
|
|
||||||
self::assertTrue($profiler->isRendertime());
|
self::assertTrue($profiler->isRendertime());
|
||||||
$output = $profiler->getRendertimeString();
|
$output = $profiler->getRendertimeString();
|
||||||
|
|
|
||||||
|
|
@ -8,7 +8,7 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: 2021.09-dev\n"
|
"Project-Id-Version: 2021.09-dev\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2021-07-24 19:02+0200\n"
|
"POT-Creation-Date: 2021-07-27 04:51+0000\n"
|
||||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||||
|
|
@ -37,10 +37,10 @@ msgstr[1] ""
|
||||||
msgid "Monthly posting limit of %d post reached. The post was rejected."
|
msgid "Monthly posting limit of %d post reached. The post was rejected."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/api.php:4437 mod/photos.php:106 mod/photos.php:210
|
#: include/api.php:4437 mod/photos.php:85 mod/photos.php:194 mod/photos.php:622
|
||||||
#: mod/photos.php:638 mod/photos.php:1042 mod/photos.php:1059
|
#: mod/photos.php:1033 mod/photos.php:1050 mod/photos.php:1596
|
||||||
#: mod/photos.php:1608 src/Model/User.php:1105 src/Model/User.php:1113
|
#: src/Model/User.php:1105 src/Model/User.php:1113 src/Model/User.php:1121
|
||||||
#: src/Model/User.php:1121 src/Module/Settings/Profile/Photo/Crop.php:98
|
#: src/Module/Settings/Profile/Photo/Crop.php:98
|
||||||
#: src/Module/Settings/Profile/Photo/Crop.php:114
|
#: src/Module/Settings/Profile/Photo/Crop.php:114
|
||||||
#: src/Module/Settings/Profile/Photo/Crop.php:130
|
#: src/Module/Settings/Profile/Photo/Crop.php:130
|
||||||
#: src/Module/Settings/Profile/Photo/Crop.php:176
|
#: src/Module/Settings/Profile/Photo/Crop.php:176
|
||||||
|
|
@ -49,451 +49,451 @@ msgstr ""
|
||||||
msgid "Profile Photos"
|
msgid "Profile Photos"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/conversation.php:106
|
#: include/conversation.php:107
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%1$s poked %2$s"
|
msgid "%1$s poked %2$s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/conversation.php:138 src/Model/Item.php:2610
|
#: include/conversation.php:140 src/Model/Item.php:2610
|
||||||
msgid "event"
|
msgid "event"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/conversation.php:141 include/conversation.php:150 mod/tagger.php:90
|
#: include/conversation.php:143 include/conversation.php:152 mod/tagger.php:90
|
||||||
msgid "status"
|
msgid "status"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/conversation.php:146 mod/tagger.php:90 src/Model/Item.php:2612
|
#: include/conversation.php:148 mod/tagger.php:90 src/Model/Item.php:2612
|
||||||
msgid "photo"
|
msgid "photo"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/conversation.php:160 mod/tagger.php:123
|
#: include/conversation.php:162 mod/tagger.php:123
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%1$s tagged %2$s's %3$s with %4$s"
|
msgid "%1$s tagged %2$s's %3$s with %4$s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/conversation.php:461 mod/photos.php:1469 src/Object/Post.php:226
|
#: include/conversation.php:465 mod/photos.php:1458 src/Object/Post.php:226
|
||||||
msgid "Select"
|
msgid "Select"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/conversation.php:462 mod/photos.php:1470 mod/settings.php:576
|
#: include/conversation.php:466 mod/photos.php:1459 mod/settings.php:576
|
||||||
#: src/Module/Admin/Users/Active.php:139 src/Module/Admin/Users/Blocked.php:140
|
#: src/Module/Admin/Users/Active.php:139 src/Module/Admin/Users/Blocked.php:140
|
||||||
#: src/Module/Admin/Users/Index.php:153 src/Module/Contact.php:859
|
#: src/Module/Admin/Users/Index.php:153 src/Module/Contact.php:849
|
||||||
#: src/Module/Contact.php:1161
|
#: src/Module/Contact.php:1151
|
||||||
msgid "Delete"
|
msgid "Delete"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/conversation.php:497 src/Object/Post.php:453 src/Object/Post.php:454
|
#: include/conversation.php:501 src/Object/Post.php:453 src/Object/Post.php:454
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "View %s's profile @ %s"
|
msgid "View %s's profile @ %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/conversation.php:510 src/Object/Post.php:441
|
#: include/conversation.php:514 src/Object/Post.php:441
|
||||||
msgid "Categories:"
|
msgid "Categories:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/conversation.php:511 src/Object/Post.php:442
|
#: include/conversation.php:515 src/Object/Post.php:442
|
||||||
msgid "Filed under:"
|
msgid "Filed under:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/conversation.php:518 src/Object/Post.php:467
|
#: include/conversation.php:522 src/Object/Post.php:467
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s from %s"
|
msgid "%s from %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/conversation.php:533
|
#: include/conversation.php:537
|
||||||
msgid "View in context"
|
msgid "View in context"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/conversation.php:535 include/conversation.php:1119
|
#: include/conversation.php:539 include/conversation.php:1134
|
||||||
#: mod/editpost.php:104 mod/message.php:204 mod/message.php:369
|
#: mod/editpost.php:104 mod/message.php:203 mod/message.php:368
|
||||||
#: mod/photos.php:1535 mod/wallmessage.php:155 src/Module/Item/Compose.php:159
|
#: mod/photos.php:1523 mod/wallmessage.php:155 src/Module/Item/Compose.php:162
|
||||||
#: src/Object/Post.php:501
|
#: src/Object/Post.php:501
|
||||||
msgid "Please wait"
|
msgid "Please wait"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/conversation.php:599
|
#: include/conversation.php:603
|
||||||
msgid "remove"
|
msgid "remove"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/conversation.php:604
|
#: include/conversation.php:607
|
||||||
msgid "Delete Selected Items"
|
msgid "Delete Selected Items"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/conversation.php:639 include/conversation.php:642
|
#: include/conversation.php:644 include/conversation.php:647
|
||||||
#: include/conversation.php:645 include/conversation.php:648
|
#: include/conversation.php:650 include/conversation.php:653
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "You had been addressed (%s)."
|
msgid "You had been addressed (%s)."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/conversation.php:651
|
#: include/conversation.php:656
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "You are following %s."
|
msgid "You are following %s."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/conversation.php:654
|
#: include/conversation.php:659
|
||||||
msgid "Tagged"
|
msgid "Tagged"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/conversation.php:667 include/conversation.php:1011
|
#: include/conversation.php:672 include/conversation.php:1024
|
||||||
#: include/conversation.php:1049
|
#: include/conversation.php:1062
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s reshared this."
|
msgid "%s reshared this."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/conversation.php:669
|
#: include/conversation.php:674
|
||||||
msgid "Reshared"
|
msgid "Reshared"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/conversation.php:669
|
#: include/conversation.php:674
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Reshared by %s <%s>"
|
msgid "Reshared by %s <%s>"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/conversation.php:672
|
#: include/conversation.php:677
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s is participating in this thread."
|
msgid "%s is participating in this thread."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/conversation.php:675
|
#: include/conversation.php:680
|
||||||
msgid "Stored"
|
msgid "Stored"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/conversation.php:678
|
#: include/conversation.php:683
|
||||||
msgid "Global"
|
msgid "Global"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/conversation.php:681
|
#: include/conversation.php:686
|
||||||
msgid "Relayed"
|
msgid "Relayed"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/conversation.php:681
|
#: include/conversation.php:686
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Relayed by %s <%s>"
|
msgid "Relayed by %s <%s>"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/conversation.php:684
|
#: include/conversation.php:689
|
||||||
msgid "Fetched"
|
msgid "Fetched"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/conversation.php:684
|
#: include/conversation.php:689
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Fetched because of %s <%s>"
|
msgid "Fetched because of %s <%s>"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/conversation.php:844 view/theme/frio/theme.php:323
|
#: include/conversation.php:855 view/theme/frio/theme.php:323
|
||||||
msgid "Follow Thread"
|
msgid "Follow Thread"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/conversation.php:845 src/Model/Contact.php:1047
|
#: include/conversation.php:856 src/Model/Contact.php:1047
|
||||||
msgid "View Status"
|
msgid "View Status"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/conversation.php:846 include/conversation.php:868
|
#: include/conversation.php:857 include/conversation.php:879
|
||||||
#: src/Model/Contact.php:973 src/Model/Contact.php:1039
|
#: src/Model/Contact.php:973 src/Model/Contact.php:1039
|
||||||
#: src/Model/Contact.php:1048 src/Module/Directory.php:166
|
#: src/Model/Contact.php:1048 src/Module/Directory.php:160
|
||||||
#: src/Module/Settings/Profile/Index.php:224
|
#: src/Module/Settings/Profile/Index.php:224
|
||||||
msgid "View Profile"
|
msgid "View Profile"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/conversation.php:847 src/Model/Contact.php:1049
|
#: include/conversation.php:858 src/Model/Contact.php:1049
|
||||||
msgid "View Photos"
|
msgid "View Photos"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/conversation.php:848 src/Model/Contact.php:1040
|
#: include/conversation.php:859 src/Model/Contact.php:1040
|
||||||
#: src/Model/Contact.php:1050
|
#: src/Model/Contact.php:1050
|
||||||
msgid "Network Posts"
|
msgid "Network Posts"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/conversation.php:849 src/Model/Contact.php:1041
|
#: include/conversation.php:860 src/Model/Contact.php:1041
|
||||||
#: src/Model/Contact.php:1051
|
#: src/Model/Contact.php:1051
|
||||||
msgid "View Contact"
|
msgid "View Contact"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/conversation.php:850 src/Model/Contact.php:1053
|
#: include/conversation.php:861 src/Model/Contact.php:1053
|
||||||
msgid "Send PM"
|
msgid "Send PM"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/conversation.php:851 src/Module/Admin/Blocklist/Contact.php:84
|
#: include/conversation.php:862 src/Module/Admin/Blocklist/Contact.php:84
|
||||||
#: src/Module/Admin/Users/Active.php:140 src/Module/Admin/Users/Index.php:154
|
#: src/Module/Admin/Users/Active.php:140 src/Module/Admin/Users/Index.php:154
|
||||||
#: src/Module/Contact.php:598 src/Module/Contact.php:856
|
#: src/Module/Contact.php:588 src/Module/Contact.php:846
|
||||||
#: src/Module/Contact.php:1136
|
#: src/Module/Contact.php:1126
|
||||||
msgid "Block"
|
msgid "Block"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/conversation.php:852 src/Module/Contact.php:599
|
#: include/conversation.php:863 src/Module/Contact.php:589
|
||||||
#: src/Module/Contact.php:857 src/Module/Contact.php:1144
|
#: src/Module/Contact.php:847 src/Module/Contact.php:1134
|
||||||
#: src/Module/Notifications/Introductions.php:113
|
#: src/Module/Notifications/Introductions.php:113
|
||||||
#: src/Module/Notifications/Introductions.php:185
|
#: src/Module/Notifications/Introductions.php:185
|
||||||
#: src/Module/Notifications/Notification.php:59
|
#: src/Module/Notifications/Notification.php:59
|
||||||
msgid "Ignore"
|
msgid "Ignore"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/conversation.php:856 src/Object/Post.php:428
|
#: include/conversation.php:867 src/Object/Post.php:428
|
||||||
msgid "Languages"
|
msgid "Languages"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/conversation.php:860 src/Model/Contact.php:1054
|
#: include/conversation.php:871 src/Model/Contact.php:1054
|
||||||
msgid "Poke"
|
msgid "Poke"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/conversation.php:865 mod/follow.php:139 src/Content/Widget.php:76
|
#: include/conversation.php:876 mod/follow.php:139 src/Content/Widget.php:76
|
||||||
#: src/Model/Contact.php:1042 src/Model/Contact.php:1055
|
#: src/Model/Contact.php:1042 src/Model/Contact.php:1055
|
||||||
#: view/theme/vier/theme.php:172
|
#: view/theme/vier/theme.php:172
|
||||||
msgid "Connect/Follow"
|
msgid "Connect/Follow"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/conversation.php:996
|
#: include/conversation.php:1009
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s likes this."
|
msgid "%s likes this."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/conversation.php:999
|
#: include/conversation.php:1012
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s doesn't like this."
|
msgid "%s doesn't like this."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/conversation.php:1002
|
#: include/conversation.php:1015
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s attends."
|
msgid "%s attends."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/conversation.php:1005
|
#: include/conversation.php:1018
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s doesn't attend."
|
msgid "%s doesn't attend."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/conversation.php:1008
|
#: include/conversation.php:1021
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s attends maybe."
|
msgid "%s attends maybe."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/conversation.php:1017
|
#: include/conversation.php:1030
|
||||||
msgid "and"
|
msgid "and"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/conversation.php:1020
|
|
||||||
#, php-format
|
|
||||||
msgid "and %d other people"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: include/conversation.php:1028
|
|
||||||
#, php-format
|
|
||||||
msgid "<span %1$s>%2$d people</span> like this"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: include/conversation.php:1029
|
|
||||||
#, php-format
|
|
||||||
msgid "%s like this."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: include/conversation.php:1032
|
|
||||||
#, php-format
|
|
||||||
msgid "<span %1$s>%2$d people</span> don't like this"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: include/conversation.php:1033
|
#: include/conversation.php:1033
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s don't like this."
|
msgid "and %d other people"
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: include/conversation.php:1036
|
|
||||||
#, php-format
|
|
||||||
msgid "<span %1$s>%2$d people</span> attend"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: include/conversation.php:1037
|
|
||||||
#, php-format
|
|
||||||
msgid "%s attend."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: include/conversation.php:1040
|
|
||||||
#, php-format
|
|
||||||
msgid "<span %1$s>%2$d people</span> don't attend"
|
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/conversation.php:1041
|
#: include/conversation.php:1041
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s don't attend."
|
msgid "<span %1$s>%2$d people</span> like this"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/conversation.php:1044
|
#: include/conversation.php:1042
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "<span %1$s>%2$d people</span> attend maybe"
|
msgid "%s like this."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/conversation.php:1045
|
#: include/conversation.php:1045
|
||||||
#, php-format
|
#, php-format
|
||||||
|
msgid "<span %1$s>%2$d people</span> don't like this"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: include/conversation.php:1046
|
||||||
|
#, php-format
|
||||||
|
msgid "%s don't like this."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: include/conversation.php:1049
|
||||||
|
#, php-format
|
||||||
|
msgid "<span %1$s>%2$d people</span> attend"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: include/conversation.php:1050
|
||||||
|
#, php-format
|
||||||
|
msgid "%s attend."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: include/conversation.php:1053
|
||||||
|
#, php-format
|
||||||
|
msgid "<span %1$s>%2$d people</span> don't attend"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: include/conversation.php:1054
|
||||||
|
#, php-format
|
||||||
|
msgid "%s don't attend."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: include/conversation.php:1057
|
||||||
|
#, php-format
|
||||||
|
msgid "<span %1$s>%2$d people</span> attend maybe"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: include/conversation.php:1058
|
||||||
|
#, php-format
|
||||||
msgid "%s attend maybe."
|
msgid "%s attend maybe."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/conversation.php:1048
|
#: include/conversation.php:1061
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "<span %1$s>%2$d people</span> reshared this"
|
msgid "<span %1$s>%2$d people</span> reshared this"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/conversation.php:1078
|
#: include/conversation.php:1093
|
||||||
msgid "Visible to <strong>everybody</strong>"
|
msgid "Visible to <strong>everybody</strong>"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/conversation.php:1079 src/Module/Item/Compose.php:153
|
#: include/conversation.php:1094 src/Module/Item/Compose.php:156
|
||||||
#: src/Object/Post.php:970
|
#: src/Object/Post.php:972
|
||||||
msgid "Please enter a image/video/audio/webpage URL:"
|
msgid "Please enter a image/video/audio/webpage URL:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/conversation.php:1080
|
#: include/conversation.php:1095
|
||||||
msgid "Tag term:"
|
msgid "Tag term:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/conversation.php:1081 src/Module/Filer/SaveTag.php:69
|
#: include/conversation.php:1096 src/Module/Filer/SaveTag.php:68
|
||||||
msgid "Save to Folder:"
|
msgid "Save to Folder:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/conversation.php:1082
|
#: include/conversation.php:1097
|
||||||
msgid "Where are you right now?"
|
msgid "Where are you right now?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/conversation.php:1083
|
#: include/conversation.php:1098
|
||||||
msgid "Delete item(s)?"
|
msgid "Delete item(s)?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/conversation.php:1093
|
#: include/conversation.php:1108
|
||||||
msgid "New Post"
|
msgid "New Post"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/conversation.php:1096
|
#: include/conversation.php:1111
|
||||||
msgid "Share"
|
msgid "Share"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/conversation.php:1097 mod/editpost.php:89 mod/photos.php:1381
|
#: include/conversation.php:1112 mod/editpost.php:89 mod/photos.php:1372
|
||||||
#: src/Module/Contact/Poke.php:155 src/Object/Post.php:961
|
#: src/Module/Contact/Poke.php:156 src/Object/Post.php:963
|
||||||
msgid "Loading..."
|
msgid "Loading..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/conversation.php:1098 mod/editpost.php:90 mod/message.php:202
|
#: include/conversation.php:1113 mod/editpost.php:90 mod/message.php:201
|
||||||
#: mod/message.php:366 mod/wallmessage.php:153
|
#: mod/message.php:365 mod/wallmessage.php:153
|
||||||
msgid "Upload photo"
|
msgid "Upload photo"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/conversation.php:1099 mod/editpost.php:91
|
#: include/conversation.php:1114 mod/editpost.php:91
|
||||||
msgid "upload photo"
|
msgid "upload photo"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/conversation.php:1100 mod/editpost.php:92
|
#: include/conversation.php:1115 mod/editpost.php:92
|
||||||
msgid "Attach file"
|
msgid "Attach file"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/conversation.php:1101 mod/editpost.php:93
|
#: include/conversation.php:1116 mod/editpost.php:93
|
||||||
msgid "attach file"
|
msgid "attach file"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/conversation.php:1102 src/Module/Item/Compose.php:145
|
#: include/conversation.php:1117 src/Module/Item/Compose.php:148
|
||||||
#: src/Object/Post.php:962
|
#: src/Object/Post.php:964
|
||||||
msgid "Bold"
|
msgid "Bold"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/conversation.php:1103 src/Module/Item/Compose.php:146
|
#: include/conversation.php:1118 src/Module/Item/Compose.php:149
|
||||||
#: src/Object/Post.php:963
|
#: src/Object/Post.php:965
|
||||||
msgid "Italic"
|
msgid "Italic"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/conversation.php:1104 src/Module/Item/Compose.php:147
|
#: include/conversation.php:1119 src/Module/Item/Compose.php:150
|
||||||
#: src/Object/Post.php:964
|
#: src/Object/Post.php:966
|
||||||
msgid "Underline"
|
msgid "Underline"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/conversation.php:1105 src/Module/Item/Compose.php:148
|
#: include/conversation.php:1120 src/Module/Item/Compose.php:151
|
||||||
#: src/Object/Post.php:965
|
#: src/Object/Post.php:967
|
||||||
msgid "Quote"
|
msgid "Quote"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/conversation.php:1106 src/Module/Item/Compose.php:149
|
#: include/conversation.php:1121 src/Module/Item/Compose.php:152
|
||||||
#: src/Object/Post.php:966
|
#: src/Object/Post.php:968
|
||||||
msgid "Code"
|
msgid "Code"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/conversation.php:1107 src/Module/Item/Compose.php:150
|
#: include/conversation.php:1122 src/Module/Item/Compose.php:153
|
||||||
#: src/Object/Post.php:967
|
#: src/Object/Post.php:969
|
||||||
msgid "Image"
|
msgid "Image"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/conversation.php:1108 src/Module/Item/Compose.php:151
|
#: include/conversation.php:1123 src/Module/Item/Compose.php:154
|
||||||
#: src/Object/Post.php:968
|
#: src/Object/Post.php:970
|
||||||
msgid "Link"
|
msgid "Link"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/conversation.php:1109 src/Module/Item/Compose.php:152
|
#: include/conversation.php:1124 src/Module/Item/Compose.php:155
|
||||||
#: src/Object/Post.php:969
|
#: src/Object/Post.php:971
|
||||||
msgid "Link or Media"
|
msgid "Link or Media"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/conversation.php:1110
|
#: include/conversation.php:1125
|
||||||
msgid "Video"
|
msgid "Video"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/conversation.php:1111 mod/editpost.php:100
|
#: include/conversation.php:1126 mod/editpost.php:100
|
||||||
#: src/Module/Item/Compose.php:155
|
#: src/Module/Item/Compose.php:158
|
||||||
msgid "Set your location"
|
msgid "Set your location"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/conversation.php:1112 mod/editpost.php:101
|
#: include/conversation.php:1127 mod/editpost.php:101
|
||||||
msgid "set location"
|
msgid "set location"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/conversation.php:1113 mod/editpost.php:102
|
#: include/conversation.php:1128 mod/editpost.php:102
|
||||||
msgid "Clear browser location"
|
msgid "Clear browser location"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/conversation.php:1114 mod/editpost.php:103
|
#: include/conversation.php:1129 mod/editpost.php:103
|
||||||
msgid "clear location"
|
msgid "clear location"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/conversation.php:1116 mod/editpost.php:117
|
#: include/conversation.php:1131 mod/editpost.php:117
|
||||||
#: src/Module/Item/Compose.php:160
|
#: src/Module/Item/Compose.php:163
|
||||||
msgid "Set title"
|
msgid "Set title"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/conversation.php:1118 mod/editpost.php:119
|
#: include/conversation.php:1133 mod/editpost.php:119
|
||||||
#: src/Module/Item/Compose.php:161
|
#: src/Module/Item/Compose.php:164
|
||||||
msgid "Categories (comma-separated list)"
|
msgid "Categories (comma-separated list)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/conversation.php:1120 mod/editpost.php:105
|
#: include/conversation.php:1135 mod/editpost.php:105
|
||||||
msgid "Permission settings"
|
msgid "Permission settings"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/conversation.php:1121 mod/editpost.php:134 mod/events.php:583
|
#: include/conversation.php:1136 mod/editpost.php:133 mod/events.php:583
|
||||||
#: mod/photos.php:968 mod/photos.php:1334
|
#: mod/photos.php:959 mod/photos.php:1325
|
||||||
msgid "Permissions"
|
msgid "Permissions"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/conversation.php:1130 mod/editpost.php:114
|
#: include/conversation.php:1145 mod/editpost.php:114
|
||||||
msgid "Public post"
|
msgid "Public post"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/conversation.php:1134 mod/editpost.php:125 mod/events.php:578
|
#: include/conversation.php:1149 mod/editpost.php:125 mod/events.php:578
|
||||||
#: mod/photos.php:1380 mod/photos.php:1437 mod/photos.php:1512
|
#: mod/photos.php:1371 mod/photos.php:1427 mod/photos.php:1501
|
||||||
#: src/Module/Item/Compose.php:154 src/Object/Post.php:971
|
#: src/Module/Item/Compose.php:157 src/Object/Post.php:973
|
||||||
msgid "Preview"
|
msgid "Preview"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/conversation.php:1138 mod/editpost.php:128 mod/fbrowser.php:105
|
#: include/conversation.php:1152 mod/editpost.php:127 mod/fbrowser.php:105
|
||||||
#: mod/fbrowser.php:134 mod/follow.php:145 mod/photos.php:1036
|
#: mod/fbrowser.php:134 mod/follow.php:145 mod/photos.php:1027
|
||||||
#: mod/photos.php:1142 mod/tagrm.php:37 mod/tagrm.php:129 mod/unfollow.php:97
|
#: mod/photos.php:1133 mod/tagrm.php:37 mod/tagrm.php:129 mod/unfollow.php:97
|
||||||
#: src/Module/Contact.php:432 src/Module/RemoteFollow.php:110
|
#: src/Module/Contact.php:424 src/Module/RemoteFollow.php:112
|
||||||
msgid "Cancel"
|
msgid "Cancel"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/conversation.php:1145 mod/editpost.php:132
|
#: include/conversation.php:1159 mod/editpost.php:131
|
||||||
#: src/Content/Widget/VCard.php:96 src/Model/Profile.php:456
|
#: src/Content/Widget/VCard.php:106 src/Model/Profile.php:448
|
||||||
msgid "Message"
|
msgid "Message"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/conversation.php:1146 mod/editpost.php:133
|
#: include/conversation.php:1160 mod/editpost.php:132
|
||||||
#: src/Module/Settings/TwoFactor/Trusted.php:101
|
#: src/Module/Settings/TwoFactor/Trusted.php:101
|
||||||
msgid "Browser"
|
msgid "Browser"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/conversation.php:1148 mod/editpost.php:136
|
#: include/conversation.php:1162 mod/editpost.php:135
|
||||||
msgid "Open Compose page"
|
msgid "Open Compose page"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -824,23 +824,23 @@ msgstr ""
|
||||||
|
|
||||||
#: mod/api.php:30 mod/api.php:35 mod/editpost.php:37 mod/events.php:236
|
#: mod/api.php:30 mod/api.php:35 mod/editpost.php:37 mod/events.php:236
|
||||||
#: mod/follow.php:56 mod/follow.php:131 mod/item.php:185 mod/item.php:190
|
#: mod/follow.php:56 mod/follow.php:131 mod/item.php:185 mod/item.php:190
|
||||||
#: mod/item.php:917 mod/message.php:69 mod/message.php:112 mod/notes.php:44
|
#: mod/item.php:917 mod/message.php:69 mod/message.php:111 mod/notes.php:44
|
||||||
#: mod/ostatus_subscribe.php:32 mod/photos.php:175 mod/photos.php:921
|
#: mod/ostatus_subscribe.php:32 mod/photos.php:159 mod/photos.php:911
|
||||||
#: mod/repair_ostatus.php:31 mod/settings.php:47 mod/settings.php:65
|
#: mod/repair_ostatus.php:31 mod/settings.php:47 mod/settings.php:65
|
||||||
#: mod/settings.php:417 mod/suggest.php:34 mod/uimport.php:32
|
#: mod/settings.php:417 mod/suggest.php:34 mod/uimport.php:32
|
||||||
#: mod/unfollow.php:35 mod/unfollow.php:50 mod/unfollow.php:82
|
#: mod/unfollow.php:35 mod/unfollow.php:50 mod/unfollow.php:82
|
||||||
#: mod/wall_attach.php:78 mod/wall_attach.php:81 mod/wall_upload.php:99
|
#: mod/wall_attach.php:78 mod/wall_attach.php:81 mod/wall_upload.php:99
|
||||||
#: mod/wall_upload.php:102 mod/wallmessage.php:35 mod/wallmessage.php:59
|
#: mod/wall_upload.php:102 mod/wallmessage.php:35 mod/wallmessage.php:59
|
||||||
#: mod/wallmessage.php:96 mod/wallmessage.php:120 src/Module/Attach.php:56
|
#: mod/wallmessage.php:96 mod/wallmessage.php:120 src/Module/Attach.php:55
|
||||||
#: src/Module/BaseApi.php:81 src/Module/BaseApi.php:92
|
#: src/Module/BaseApi.php:81 src/Module/BaseApi.php:92
|
||||||
#: src/Module/BaseApi.php:103 src/Module/BaseApi.php:114
|
#: src/Module/BaseApi.php:103 src/Module/BaseApi.php:114
|
||||||
#: src/Module/BaseNotifications.php:88 src/Module/Contact.php:350
|
#: src/Module/BaseNotifications.php:88 src/Module/Contact.php:342
|
||||||
#: src/Module/Contact/Advanced.php:44 src/Module/Delegation.php:118
|
#: src/Module/Contact/Advanced.php:44 src/Module/Delegation.php:118
|
||||||
#: src/Module/FollowConfirm.php:16 src/Module/FriendSuggest.php:44
|
#: src/Module/FollowConfirm.php:16 src/Module/FriendSuggest.php:44
|
||||||
#: src/Module/Group.php:45 src/Module/Group.php:90 src/Module/Invite.php:40
|
#: src/Module/Group.php:45 src/Module/Group.php:90 src/Module/Invite.php:40
|
||||||
#: src/Module/Invite.php:127 src/Module/Notifications/Notification.php:47
|
#: src/Module/Invite.php:127 src/Module/Notifications/Notification.php:47
|
||||||
#: src/Module/Notifications/Notification.php:76
|
#: src/Module/Notifications/Notification.php:76
|
||||||
#: src/Module/Profile/Common.php:57 src/Module/Profile/Contacts.php:57
|
#: src/Module/Profile/Common.php:56 src/Module/Profile/Contacts.php:57
|
||||||
#: src/Module/Register.php:62 src/Module/Register.php:75
|
#: src/Module/Register.php:62 src/Module/Register.php:75
|
||||||
#: src/Module/Register.php:193 src/Module/Register.php:232
|
#: src/Module/Register.php:193 src/Module/Register.php:232
|
||||||
#: src/Module/Search/Directory.php:38 src/Module/Settings/Delegation.php:42
|
#: src/Module/Search/Directory.php:38 src/Module/Settings/Delegation.php:42
|
||||||
|
|
@ -855,101 +855,103 @@ msgstr ""
|
||||||
msgid "Permission denied."
|
msgid "Permission denied."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/cal.php:46 mod/cal.php:50 mod/follow.php:39 mod/redir.php:34
|
#: mod/cal.php:44 mod/cal.php:48 mod/follow.php:39 mod/redir.php:34
|
||||||
#: mod/redir.php:176 src/Module/Conversation/Community.php:194
|
#: mod/redir.php:175 src/Module/Conversation/Community.php:194
|
||||||
#: src/Module/Debug/ItemBody.php:38 src/Module/Diaspora/Receive.php:51
|
#: src/Module/Debug/ItemBody.php:37 src/Module/Diaspora/Receive.php:51
|
||||||
#: src/Module/Item/Follow.php:42 src/Module/Item/Ignore.php:41
|
#: src/Module/Item/Follow.php:42 src/Module/Item/Ignore.php:41
|
||||||
#: src/Module/Item/Pin.php:42 src/Module/Item/Pin.php:57
|
#: src/Module/Item/Pin.php:42 src/Module/Item/Pin.php:57
|
||||||
#: src/Module/Item/Star.php:42
|
#: src/Module/Item/Star.php:42
|
||||||
msgid "Access denied."
|
msgid "Access denied."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/cal.php:72 mod/cal.php:133 src/Module/HCard.php:54
|
#: mod/cal.php:61 mod/cal.php:78 mod/photos.php:139 mod/photos.php:820
|
||||||
#: src/Module/Profile/Common.php:41 src/Module/Profile/Common.php:53
|
#: mod/videos.php:48 mod/videos.php:69 mod/videos.php:110
|
||||||
#: src/Module/Profile/Contacts.php:40 src/Module/Profile/Contacts.php:51
|
#: src/Module/HCard.php:54 src/Module/Profile/Common.php:41
|
||||||
#: src/Module/Profile/Status.php:58 src/Module/Register.php:254
|
#: src/Module/Profile/Common.php:52 src/Module/Profile/Contacts.php:41
|
||||||
|
#: src/Module/Profile/Contacts.php:51 src/Module/Profile/Status.php:58
|
||||||
|
#: src/Module/Register.php:254
|
||||||
msgid "User not found."
|
msgid "User not found."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/cal.php:143 mod/display.php:284 src/Module/Profile/Profile.php:94
|
#: mod/cal.php:120 mod/display.php:271 src/Module/Profile/Profile.php:94
|
||||||
#: src/Module/Profile/Profile.php:109 src/Module/Profile/Status.php:109
|
#: src/Module/Profile/Profile.php:109 src/Module/Profile/Status.php:109
|
||||||
#: src/Module/Update/Profile.php:55
|
#: src/Module/Update/Profile.php:56
|
||||||
msgid "Access to this profile has been restricted."
|
msgid "Access to this profile has been restricted."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/cal.php:274 mod/events.php:422 src/Content/Nav.php:195
|
#: mod/cal.php:251 mod/events.php:422 src/Content/Nav.php:195
|
||||||
#: src/Content/Nav.php:262 src/Module/BaseProfile.php:88
|
#: src/Content/Nav.php:262 src/Module/BaseProfile.php:86
|
||||||
#: src/Module/BaseProfile.php:99 view/theme/frio/theme.php:230
|
#: src/Module/BaseProfile.php:97 view/theme/frio/theme.php:230
|
||||||
#: view/theme/frio/theme.php:234
|
#: view/theme/frio/theme.php:234
|
||||||
msgid "Events"
|
msgid "Events"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/cal.php:275 mod/events.php:423
|
#: mod/cal.php:252 mod/events.php:423
|
||||||
msgid "View"
|
msgid "View"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/cal.php:276 mod/events.php:425
|
#: mod/cal.php:253 mod/events.php:425
|
||||||
msgid "Previous"
|
msgid "Previous"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/cal.php:277 mod/events.php:426 src/Module/Install.php:207
|
#: mod/cal.php:254 mod/events.php:426 src/Module/Install.php:207
|
||||||
msgid "Next"
|
msgid "Next"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/cal.php:280 mod/events.php:431 src/Model/Event.php:450
|
#: mod/cal.php:257 mod/events.php:431 src/Model/Event.php:450
|
||||||
msgid "today"
|
msgid "today"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/cal.php:281 mod/events.php:432 src/Model/Event.php:451
|
#: mod/cal.php:258 mod/events.php:432 src/Model/Event.php:451
|
||||||
#: src/Util/Temporal.php:330
|
#: src/Util/Temporal.php:330
|
||||||
msgid "month"
|
msgid "month"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/cal.php:282 mod/events.php:433 src/Model/Event.php:452
|
#: mod/cal.php:259 mod/events.php:433 src/Model/Event.php:452
|
||||||
#: src/Util/Temporal.php:331
|
#: src/Util/Temporal.php:331
|
||||||
msgid "week"
|
msgid "week"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/cal.php:283 mod/events.php:434 src/Model/Event.php:453
|
#: mod/cal.php:260 mod/events.php:434 src/Model/Event.php:453
|
||||||
#: src/Util/Temporal.php:332
|
#: src/Util/Temporal.php:332
|
||||||
msgid "day"
|
msgid "day"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/cal.php:284 mod/events.php:435
|
#: mod/cal.php:261 mod/events.php:435
|
||||||
msgid "list"
|
msgid "list"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/cal.php:297 src/Console/User.php:182 src/Model/User.php:667
|
#: mod/cal.php:274 src/Console/User.php:182 src/Model/User.php:667
|
||||||
#: src/Module/Admin/Users/Active.php:73 src/Module/Admin/Users/Blocked.php:74
|
#: src/Module/Admin/Users/Active.php:73 src/Module/Admin/Users/Blocked.php:74
|
||||||
#: src/Module/Admin/Users/Index.php:80 src/Module/Admin/Users/Pending.php:71
|
#: src/Module/Admin/Users/Index.php:80 src/Module/Admin/Users/Pending.php:71
|
||||||
#: src/Module/Api/Twitter/ContactEndpoint.php:71
|
#: src/Module/Api/Twitter/ContactEndpoint.php:71
|
||||||
msgid "User not found"
|
msgid "User not found"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/cal.php:306
|
#: mod/cal.php:283
|
||||||
msgid "This calendar format is not supported"
|
msgid "This calendar format is not supported"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/cal.php:308
|
#: mod/cal.php:285
|
||||||
msgid "No exportable data found"
|
msgid "No exportable data found"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/cal.php:325
|
#: mod/cal.php:302
|
||||||
msgid "calendar"
|
msgid "calendar"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/display.php:178 mod/photos.php:835 mod/videos.php:128
|
#: mod/display.php:166 mod/photos.php:824 mod/videos.php:114
|
||||||
#: src/Module/Conversation/Community.php:188 src/Module/Debug/Probe.php:39
|
#: src/Module/Conversation/Community.php:188 src/Module/Debug/Probe.php:39
|
||||||
#: src/Module/Debug/WebFinger.php:38 src/Module/Directory.php:49
|
#: src/Module/Debug/WebFinger.php:38 src/Module/Directory.php:49
|
||||||
#: src/Module/Search/Index.php:50 src/Module/Search/Index.php:55
|
#: src/Module/Search/Index.php:50 src/Module/Search/Index.php:55
|
||||||
msgid "Public access denied."
|
msgid "Public access denied."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/display.php:234 mod/display.php:320
|
#: mod/display.php:222 mod/display.php:307
|
||||||
msgid "The requested item doesn't exist or has been deleted."
|
msgid "The requested item doesn't exist or has been deleted."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/display.php:400
|
#: mod/display.php:387
|
||||||
msgid "The feed for this item is unavailable."
|
msgid "The feed for this item is unavailable."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -961,12 +963,12 @@ msgstr ""
|
||||||
msgid "Edit post"
|
msgid "Edit post"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/editpost.php:88 mod/notes.php:63 src/Content/Text/HTML.php:893
|
#: mod/editpost.php:88 mod/notes.php:63 src/Content/Text/HTML.php:885
|
||||||
#: src/Module/Admin/Storage.php:128 src/Module/Filer/SaveTag.php:70
|
#: src/Module/Admin/Storage.php:128 src/Module/Filer/SaveTag.php:69
|
||||||
msgid "Save"
|
msgid "Save"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/editpost.php:94 mod/message.php:203 mod/message.php:367
|
#: mod/editpost.php:94 mod/message.php:202 mod/message.php:366
|
||||||
#: mod/wallmessage.php:154
|
#: mod/wallmessage.php:154
|
||||||
msgid "Insert web link"
|
msgid "Insert web link"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
@ -1058,10 +1060,10 @@ msgstr ""
|
||||||
msgid "Description:"
|
msgid "Description:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/events.php:568 src/Content/Widget/VCard.php:88 src/Model/Event.php:86
|
#: mod/events.php:568 src/Content/Widget/VCard.php:97 src/Model/Event.php:86
|
||||||
#: src/Model/Event.php:113 src/Model/Event.php:459 src/Model/Event.php:945
|
#: src/Model/Event.php:113 src/Model/Event.php:459 src/Model/Event.php:945
|
||||||
#: src/Model/Profile.php:366 src/Module/Contact.php:619
|
#: src/Model/Profile.php:358 src/Module/Contact.php:609
|
||||||
#: src/Module/Directory.php:156 src/Module/Notifications/Introductions.php:166
|
#: src/Module/Directory.php:150 src/Module/Notifications/Introductions.php:166
|
||||||
#: src/Module/Profile/Profile.php:190
|
#: src/Module/Profile/Profile.php:190
|
||||||
msgid "Location:"
|
msgid "Location:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
@ -1074,19 +1076,19 @@ msgstr ""
|
||||||
msgid "Share this event"
|
msgid "Share this event"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/events.php:580 mod/message.php:205 mod/message.php:368
|
#: mod/events.php:580 mod/message.php:204 mod/message.php:367
|
||||||
#: mod/photos.php:950 mod/photos.php:1053 mod/photos.php:1338
|
#: mod/photos.php:941 mod/photos.php:1044 mod/photos.php:1329
|
||||||
#: mod/photos.php:1379 mod/photos.php:1436 mod/photos.php:1511
|
#: mod/photos.php:1370 mod/photos.php:1426 mod/photos.php:1500
|
||||||
#: src/Module/Admin/Item/Source.php:65 src/Module/Contact.php:577
|
#: src/Module/Admin/Item/Source.php:65 src/Module/Contact.php:567
|
||||||
#: src/Module/Contact/Advanced.php:133 src/Module/Contact/Poke.php:156
|
#: src/Module/Contact/Advanced.php:133 src/Module/Contact/Poke.php:157
|
||||||
#: src/Module/Debug/ActivityPubConversion.php:141
|
#: src/Module/Debug/ActivityPubConversion.php:141
|
||||||
#: src/Module/Debug/Babel.php:313 src/Module/Debug/Localtime.php:64
|
#: src/Module/Debug/Babel.php:313 src/Module/Debug/Localtime.php:64
|
||||||
#: src/Module/Debug/Probe.php:55 src/Module/Debug/WebFinger.php:53
|
#: src/Module/Debug/Probe.php:55 src/Module/Debug/WebFinger.php:53
|
||||||
#: src/Module/Delegation.php:152 src/Module/FriendSuggest.php:129
|
#: src/Module/Delegation.php:152 src/Module/FriendSuggest.php:129
|
||||||
#: src/Module/Install.php:245 src/Module/Install.php:287
|
#: src/Module/Install.php:245 src/Module/Install.php:287
|
||||||
#: src/Module/Install.php:324 src/Module/Invite.php:174
|
#: src/Module/Install.php:324 src/Module/Invite.php:174
|
||||||
#: src/Module/Item/Compose.php:144 src/Module/Profile/Profile.php:243
|
#: src/Module/Item/Compose.php:147 src/Module/Profile/Profile.php:243
|
||||||
#: src/Module/Settings/Profile/Index.php:221 src/Object/Post.php:960
|
#: src/Module/Settings/Profile/Index.php:221 src/Object/Post.php:962
|
||||||
#: view/theme/duepuntozero/config.php:69 view/theme/frio/config.php:160
|
#: view/theme/duepuntozero/config.php:69 view/theme/frio/config.php:160
|
||||||
#: view/theme/quattro/config.php:71 view/theme/vier/config.php:119
|
#: view/theme/quattro/config.php:71 view/theme/vier/config.php:119
|
||||||
msgid "Submit"
|
msgid "Submit"
|
||||||
|
|
@ -1096,7 +1098,7 @@ msgstr ""
|
||||||
msgid "Basic"
|
msgid "Basic"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/events.php:582 src/Module/Admin/Site.php:506 src/Module/Contact.php:926
|
#: mod/events.php:582 src/Module/Admin/Site.php:506 src/Module/Contact.php:916
|
||||||
#: src/Module/Profile/Profile.php:245
|
#: src/Module/Profile/Profile.php:245
|
||||||
msgid "Advanced"
|
msgid "Advanced"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
@ -1105,7 +1107,7 @@ msgstr ""
|
||||||
msgid "Failed to remove event"
|
msgid "Failed to remove event"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/fbrowser.php:43 src/Content/Nav.php:193 src/Module/BaseProfile.php:68
|
#: mod/fbrowser.php:43 src/Content/Nav.php:193 src/Module/BaseProfile.php:66
|
||||||
#: view/theme/frio/theme.php:228
|
#: view/theme/frio/theme.php:228
|
||||||
msgid "Photos"
|
msgid "Photos"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
@ -1119,7 +1121,7 @@ msgstr ""
|
||||||
msgid "Files"
|
msgid "Files"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/follow.php:75 mod/unfollow.php:96 src/Module/RemoteFollow.php:109
|
#: mod/follow.php:75 mod/unfollow.php:96 src/Module/RemoteFollow.php:111
|
||||||
msgid "Submit Request"
|
msgid "Submit Request"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -1139,7 +1141,7 @@ msgstr ""
|
||||||
msgid "OStatus support is disabled. Contact can't be added."
|
msgid "OStatus support is disabled. Contact can't be added."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/follow.php:140 src/Module/RemoteFollow.php:108
|
#: mod/follow.php:140 src/Module/RemoteFollow.php:110
|
||||||
msgid "Please answer the following:"
|
msgid "Please answer the following:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -1148,13 +1150,13 @@ msgid "Your Identity Address:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/follow.php:142 mod/unfollow.php:100
|
#: mod/follow.php:142 mod/unfollow.php:100
|
||||||
#: src/Module/Admin/Blocklist/Contact.php:100 src/Module/Contact.php:615
|
#: src/Module/Admin/Blocklist/Contact.php:100 src/Module/Contact.php:605
|
||||||
#: src/Module/Notifications/Introductions.php:108
|
#: src/Module/Notifications/Introductions.php:108
|
||||||
#: src/Module/Notifications/Introductions.php:177
|
#: src/Module/Notifications/Introductions.php:177
|
||||||
msgid "Profile URL"
|
msgid "Profile URL"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/follow.php:143 src/Module/Contact.php:625
|
#: mod/follow.php:143 src/Module/Contact.php:615
|
||||||
#: src/Module/Notifications/Introductions.php:170
|
#: src/Module/Notifications/Introductions.php:170
|
||||||
#: src/Module/Profile/Profile.php:203
|
#: src/Module/Profile/Profile.php:203
|
||||||
msgid "Tags:"
|
msgid "Tags:"
|
||||||
|
|
@ -1169,8 +1171,8 @@ msgstr ""
|
||||||
msgid "Add a personal note:"
|
msgid "Add a personal note:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/follow.php:164 mod/unfollow.php:109 src/Module/BaseProfile.php:63
|
#: mod/follow.php:164 mod/unfollow.php:109 src/Module/BaseProfile.php:61
|
||||||
#: src/Module/Contact.php:904
|
#: src/Module/Contact.php:894
|
||||||
msgid "Status Messages and Posts"
|
msgid "Status Messages and Posts"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -1199,8 +1201,8 @@ msgid "Item couldn't be fetched."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/item.php:896 src/Module/Admin/Themes/Details.php:39
|
#: mod/item.php:896 src/Module/Admin/Themes/Details.php:39
|
||||||
#: src/Module/Admin/Themes/Index.php:59 src/Module/Debug/ItemBody.php:47
|
#: src/Module/Admin/Themes/Index.php:59 src/Module/Debug/ItemBody.php:41
|
||||||
#: src/Module/Debug/ItemBody.php:60
|
#: src/Module/Debug/ItemBody.php:56
|
||||||
msgid "Item not found."
|
msgid "Item not found."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -1354,7 +1356,7 @@ msgstr ""
|
||||||
msgid "Profile Match"
|
msgid "Profile Match"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/message.php:46 mod/message.php:127 src/Content/Nav.php:290
|
#: mod/message.php:46 mod/message.php:126 src/Content/Nav.php:290
|
||||||
msgid "New Message"
|
msgid "New Message"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -1374,102 +1376,102 @@ msgstr ""
|
||||||
msgid "Message collection failure."
|
msgid "Message collection failure."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/message.php:121 src/Module/Notifications/Introductions.php:114
|
#: mod/message.php:120 src/Module/Notifications/Introductions.php:114
|
||||||
#: src/Module/Notifications/Introductions.php:149
|
#: src/Module/Notifications/Introductions.php:149
|
||||||
#: src/Module/Notifications/Notification.php:56
|
#: src/Module/Notifications/Notification.php:56
|
||||||
msgid "Discard"
|
msgid "Discard"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/message.php:134 src/Content/Nav.php:287 view/theme/frio/theme.php:235
|
#: mod/message.php:133 src/Content/Nav.php:287 view/theme/frio/theme.php:235
|
||||||
msgid "Messages"
|
msgid "Messages"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/message.php:147
|
#: mod/message.php:146
|
||||||
msgid "Conversation not found."
|
msgid "Conversation not found."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/message.php:152
|
#: mod/message.php:151
|
||||||
msgid "Message was not deleted."
|
msgid "Message was not deleted."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/message.php:170
|
#: mod/message.php:169
|
||||||
msgid "Conversation was not removed."
|
msgid "Conversation was not removed."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/message.php:184 mod/message.php:297 mod/wallmessage.php:137
|
#: mod/message.php:183 mod/message.php:296 mod/wallmessage.php:137
|
||||||
msgid "Please enter a link URL:"
|
msgid "Please enter a link URL:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/message.php:193 mod/wallmessage.php:142
|
#: mod/message.php:192 mod/wallmessage.php:142
|
||||||
msgid "Send Private Message"
|
msgid "Send Private Message"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/message.php:194 mod/message.php:358 mod/wallmessage.php:144
|
#: mod/message.php:193 mod/message.php:357 mod/wallmessage.php:144
|
||||||
msgid "To:"
|
msgid "To:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/message.php:195 mod/message.php:359 mod/wallmessage.php:145
|
#: mod/message.php:194 mod/message.php:358 mod/wallmessage.php:145
|
||||||
msgid "Subject:"
|
msgid "Subject:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/message.php:199 mod/message.php:362 mod/wallmessage.php:151
|
#: mod/message.php:198 mod/message.php:361 mod/wallmessage.php:151
|
||||||
#: src/Module/Invite.php:167
|
#: src/Module/Invite.php:167
|
||||||
msgid "Your message:"
|
msgid "Your message:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/message.php:233
|
#: mod/message.php:232
|
||||||
msgid "No messages."
|
msgid "No messages."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/message.php:289
|
#: mod/message.php:288
|
||||||
msgid "Message not available."
|
msgid "Message not available."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/message.php:334
|
#: mod/message.php:333
|
||||||
msgid "Delete message"
|
msgid "Delete message"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/message.php:336 mod/message.php:468
|
#: mod/message.php:335 mod/message.php:467
|
||||||
msgid "D, d M Y - g:i A"
|
msgid "D, d M Y - g:i A"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/message.php:351 mod/message.php:465
|
#: mod/message.php:350 mod/message.php:464
|
||||||
msgid "Delete conversation"
|
msgid "Delete conversation"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/message.php:353
|
#: mod/message.php:352
|
||||||
msgid ""
|
msgid ""
|
||||||
"No secure communications available. You <strong>may</strong> be able to "
|
"No secure communications available. You <strong>may</strong> be able to "
|
||||||
"respond from the sender's profile page."
|
"respond from the sender's profile page."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/message.php:357
|
#: mod/message.php:356
|
||||||
msgid "Send Reply"
|
msgid "Send Reply"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/message.php:439
|
#: mod/message.php:438
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Unknown sender - %s"
|
msgid "Unknown sender - %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/message.php:441
|
#: mod/message.php:440
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "You and %s"
|
msgid "You and %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/message.php:443
|
#: mod/message.php:442
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s and You"
|
msgid "%s and You"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/message.php:471
|
#: mod/message.php:470
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%d message"
|
msgid "%d message"
|
||||||
msgid_plural "%d messages"
|
msgid_plural "%d messages"
|
||||||
msgstr[0] ""
|
msgstr[0] ""
|
||||||
msgstr[1] ""
|
msgstr[1] ""
|
||||||
|
|
||||||
#: mod/notes.php:51 src/Module/BaseProfile.php:110
|
#: mod/notes.php:51 src/Module/BaseProfile.php:108
|
||||||
msgid "Personal Notes"
|
msgid "Personal Notes"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -1525,245 +1527,245 @@ msgstr ""
|
||||||
msgid "Keep this window open until done."
|
msgid "Keep this window open until done."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/photos.php:128 src/Module/BaseProfile.php:71
|
#: mod/photos.php:107 src/Module/BaseProfile.php:69
|
||||||
msgid "Photo Albums"
|
msgid "Photo Albums"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/photos.php:129 mod/photos.php:1637
|
#: mod/photos.php:108 mod/photos.php:1625
|
||||||
msgid "Recent Photos"
|
msgid "Recent Photos"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/photos.php:131 mod/photos.php:1104 mod/photos.php:1639
|
#: mod/photos.php:110 mod/photos.php:1095 mod/photos.php:1627
|
||||||
msgid "Upload New Photos"
|
msgid "Upload New Photos"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/photos.php:149 src/Module/BaseSettings.php:37
|
#: mod/photos.php:128 src/Module/BaseSettings.php:37
|
||||||
msgid "everybody"
|
msgid "everybody"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/photos.php:182
|
#: mod/photos.php:166
|
||||||
msgid "Contact information unavailable"
|
msgid "Contact information unavailable"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/photos.php:221
|
#: mod/photos.php:205
|
||||||
msgid "Album not found."
|
msgid "Album not found."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/photos.php:279
|
#: mod/photos.php:263
|
||||||
msgid "Album successfully deleted"
|
msgid "Album successfully deleted"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/photos.php:281
|
#: mod/photos.php:265
|
||||||
msgid "Album was empty."
|
msgid "Album was empty."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/photos.php:313
|
#: mod/photos.php:297
|
||||||
msgid "Failed to delete the photo."
|
msgid "Failed to delete the photo."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/photos.php:588
|
#: mod/photos.php:572
|
||||||
msgid "a photo"
|
msgid "a photo"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/photos.php:588
|
#: mod/photos.php:572
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%1$s was tagged in %2$s by %3$s"
|
msgid "%1$s was tagged in %2$s by %3$s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/photos.php:671 mod/photos.php:674 mod/photos.php:701
|
#: mod/photos.php:655 mod/photos.php:658 mod/photos.php:685
|
||||||
#: mod/wall_upload.php:216 src/Module/Settings/Profile/Photo/Index.php:61
|
#: mod/wall_upload.php:216 src/Module/Settings/Profile/Photo/Index.php:61
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Image exceeds size limit of %s"
|
msgid "Image exceeds size limit of %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/photos.php:677
|
#: mod/photos.php:661
|
||||||
msgid "Image upload didn't complete, please try again"
|
msgid "Image upload didn't complete, please try again"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/photos.php:680
|
#: mod/photos.php:664
|
||||||
msgid "Image file is missing"
|
msgid "Image file is missing"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/photos.php:685
|
#: mod/photos.php:669
|
||||||
msgid ""
|
msgid ""
|
||||||
"Server can't accept new file upload at this time, please contact your "
|
"Server can't accept new file upload at this time, please contact your "
|
||||||
"administrator"
|
"administrator"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/photos.php:709
|
#: mod/photos.php:693
|
||||||
msgid "Image file is empty."
|
msgid "Image file is empty."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/photos.php:724 mod/wall_upload.php:175
|
#: mod/photos.php:708 mod/wall_upload.php:175
|
||||||
#: src/Module/Settings/Profile/Photo/Index.php:70
|
#: src/Module/Settings/Profile/Photo/Index.php:70
|
||||||
msgid "Unable to process image."
|
msgid "Unable to process image."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/photos.php:753 mod/wall_upload.php:241
|
#: mod/photos.php:737 mod/wall_upload.php:241
|
||||||
#: src/Module/Settings/Profile/Photo/Index.php:97
|
#: src/Module/Settings/Profile/Photo/Index.php:97
|
||||||
msgid "Image upload failed."
|
msgid "Image upload failed."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/photos.php:840
|
#: mod/photos.php:829
|
||||||
msgid "No photos selected"
|
msgid "No photos selected"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/photos.php:906 mod/videos.php:181
|
#: mod/photos.php:896 mod/videos.php:164
|
||||||
msgid "Access to this item is restricted."
|
msgid "Access to this item is restricted."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/photos.php:960
|
#: mod/photos.php:951
|
||||||
msgid "Upload Photos"
|
msgid "Upload Photos"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/photos.php:964 mod/photos.php:1049
|
#: mod/photos.php:955 mod/photos.php:1040
|
||||||
msgid "New album name: "
|
msgid "New album name: "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/photos.php:965
|
#: mod/photos.php:956
|
||||||
msgid "or select existing album:"
|
msgid "or select existing album:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/photos.php:966
|
#: mod/photos.php:957
|
||||||
msgid "Do not show a status post for this upload"
|
msgid "Do not show a status post for this upload"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/photos.php:1032
|
#: mod/photos.php:1023
|
||||||
msgid "Do you really want to delete this photo album and all its photos?"
|
msgid "Do you really want to delete this photo album and all its photos?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/photos.php:1033 mod/photos.php:1054
|
#: mod/photos.php:1024 mod/photos.php:1045
|
||||||
msgid "Delete Album"
|
msgid "Delete Album"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/photos.php:1060
|
#: mod/photos.php:1051
|
||||||
msgid "Edit Album"
|
msgid "Edit Album"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/photos.php:1061
|
#: mod/photos.php:1052
|
||||||
msgid "Drop Album"
|
msgid "Drop Album"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/photos.php:1066
|
#: mod/photos.php:1057
|
||||||
msgid "Show Newest First"
|
msgid "Show Newest First"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/photos.php:1068
|
#: mod/photos.php:1059
|
||||||
msgid "Show Oldest First"
|
msgid "Show Oldest First"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/photos.php:1089 mod/photos.php:1622
|
#: mod/photos.php:1080 mod/photos.php:1610
|
||||||
msgid "View Photo"
|
msgid "View Photo"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/photos.php:1126
|
#: mod/photos.php:1117
|
||||||
msgid "Permission denied. Access to this item may be restricted."
|
msgid "Permission denied. Access to this item may be restricted."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/photos.php:1128
|
#: mod/photos.php:1119
|
||||||
msgid "Photo not available"
|
msgid "Photo not available"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/photos.php:1138
|
#: mod/photos.php:1129
|
||||||
msgid "Do you really want to delete this photo?"
|
msgid "Do you really want to delete this photo?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/photos.php:1139 mod/photos.php:1339
|
#: mod/photos.php:1130 mod/photos.php:1330
|
||||||
msgid "Delete Photo"
|
msgid "Delete Photo"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/photos.php:1230
|
#: mod/photos.php:1221
|
||||||
msgid "View photo"
|
msgid "View photo"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/photos.php:1232
|
#: mod/photos.php:1223
|
||||||
msgid "Edit photo"
|
msgid "Edit photo"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/photos.php:1233
|
#: mod/photos.php:1224
|
||||||
msgid "Delete photo"
|
msgid "Delete photo"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/photos.php:1234
|
#: mod/photos.php:1225
|
||||||
msgid "Use as profile photo"
|
msgid "Use as profile photo"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/photos.php:1241
|
#: mod/photos.php:1232
|
||||||
msgid "Private Photo"
|
msgid "Private Photo"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/photos.php:1247
|
#: mod/photos.php:1238
|
||||||
msgid "View Full Size"
|
msgid "View Full Size"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/photos.php:1307
|
#: mod/photos.php:1298
|
||||||
msgid "Tags: "
|
msgid "Tags: "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/photos.php:1310
|
#: mod/photos.php:1301
|
||||||
msgid "[Select tags to remove]"
|
msgid "[Select tags to remove]"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/photos.php:1325
|
#: mod/photos.php:1316
|
||||||
msgid "New album name"
|
msgid "New album name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/photos.php:1326
|
#: mod/photos.php:1317
|
||||||
msgid "Caption"
|
msgid "Caption"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/photos.php:1327
|
#: mod/photos.php:1318
|
||||||
msgid "Add a Tag"
|
msgid "Add a Tag"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/photos.php:1327
|
#: mod/photos.php:1318
|
||||||
msgid "Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
|
msgid "Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/photos.php:1328
|
#: mod/photos.php:1319
|
||||||
msgid "Do not rotate"
|
msgid "Do not rotate"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/photos.php:1329
|
#: mod/photos.php:1320
|
||||||
msgid "Rotate CW (right)"
|
msgid "Rotate CW (right)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/photos.php:1330
|
#: mod/photos.php:1321
|
||||||
msgid "Rotate CCW (left)"
|
msgid "Rotate CCW (left)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/photos.php:1376 mod/photos.php:1433 mod/photos.php:1508
|
#: mod/photos.php:1367 mod/photos.php:1423 mod/photos.php:1497
|
||||||
#: src/Module/Contact.php:1067 src/Module/Item/Compose.php:142
|
#: src/Module/Contact.php:1057 src/Module/Item/Compose.php:145
|
||||||
#: src/Object/Post.php:957
|
#: src/Object/Post.php:959
|
||||||
msgid "This is you"
|
msgid "This is you"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/photos.php:1378 mod/photos.php:1435 mod/photos.php:1510
|
#: mod/photos.php:1369 mod/photos.php:1425 mod/photos.php:1499
|
||||||
#: src/Object/Post.php:495 src/Object/Post.php:959
|
#: src/Object/Post.php:495 src/Object/Post.php:961
|
||||||
msgid "Comment"
|
msgid "Comment"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/photos.php:1532 src/Object/Post.php:348
|
#: mod/photos.php:1520 src/Object/Post.php:348
|
||||||
msgid "Like"
|
msgid "Like"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/photos.php:1533 src/Object/Post.php:348
|
#: mod/photos.php:1521 src/Object/Post.php:348
|
||||||
msgid "I like this (toggle)"
|
msgid "I like this (toggle)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/photos.php:1534 src/Object/Post.php:349
|
#: mod/photos.php:1522 src/Object/Post.php:349
|
||||||
msgid "Dislike"
|
msgid "Dislike"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/photos.php:1536 src/Object/Post.php:349
|
#: mod/photos.php:1524 src/Object/Post.php:349
|
||||||
msgid "I don't like this (toggle)"
|
msgid "I don't like this (toggle)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/photos.php:1558
|
#: mod/photos.php:1546
|
||||||
msgid "Map"
|
msgid "Map"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/photos.php:1628 mod/videos.php:258
|
#: mod/photos.php:1616 mod/videos.php:241
|
||||||
msgid "View Album"
|
msgid "View Album"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -1780,11 +1782,11 @@ msgstr ""
|
||||||
msgid "{0} and %d others requested registration"
|
msgid "{0} and %d others requested registration"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/redir.php:50 mod/redir.php:103
|
#: mod/redir.php:49 mod/redir.php:102
|
||||||
msgid "Bad Request."
|
msgid "Bad Request."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/redir.php:56 mod/redir.php:130 src/Module/Contact/Advanced.php:54
|
#: mod/redir.php:55 mod/redir.php:129 src/Module/Contact/Advanced.php:54
|
||||||
#: src/Module/Contact/Advanced.php:105 src/Module/Contact/Contacts.php:36
|
#: src/Module/Contact/Advanced.php:105 src/Module/Contact/Contacts.php:36
|
||||||
#: src/Module/FriendSuggest.php:54 src/Module/FriendSuggest.php:93
|
#: src/Module/FriendSuggest.php:54 src/Module/FriendSuggest.php:93
|
||||||
#: src/Module/Group.php:105
|
#: src/Module/Group.php:105
|
||||||
|
|
@ -2110,7 +2112,7 @@ msgstr ""
|
||||||
msgid "Unable to find your profile. Please contact your admin."
|
msgid "Unable to find your profile. Please contact your admin."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/settings.php:627 src/Content/Widget.php:536
|
#: mod/settings.php:627 src/Content/Widget.php:533
|
||||||
msgid "Account Types"
|
msgid "Account Types"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -2670,19 +2672,19 @@ msgstr ""
|
||||||
msgid "Disconnect/Unfollow"
|
msgid "Disconnect/Unfollow"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/videos.php:133
|
#: mod/videos.php:119
|
||||||
msgid "No videos selected"
|
msgid "No videos selected"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/videos.php:251
|
#: mod/videos.php:234
|
||||||
msgid "View Video"
|
msgid "View Video"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/videos.php:266
|
#: mod/videos.php:249
|
||||||
msgid "Recent Videos"
|
msgid "Recent Videos"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/videos.php:268
|
#: mod/videos.php:251
|
||||||
msgid "Upload New Videos"
|
msgid "Upload New Videos"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -2733,7 +2735,7 @@ msgid ""
|
||||||
"your site allow private mail from unknown senders."
|
"your site allow private mail from unknown senders."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/App.php:312
|
#: src/App.php:407
|
||||||
msgid "No system theme config value set."
|
msgid "No system theme config value set."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -2755,12 +2757,12 @@ msgstr ""
|
||||||
msgid "toggle mobile"
|
msgid "toggle mobile"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/App/Router.php:236
|
#: src/App/Router.php:241
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Method not allowed for this module. Allowed method(s): %s"
|
msgid "Method not allowed for this module. Allowed method(s): %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/App/Router.php:238 src/Module/HTTPException/PageNotFound.php:32
|
#: src/App/Router.php:243 src/Module/HTTPException/PageNotFound.php:32
|
||||||
msgid "Page not found."
|
msgid "Page not found."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -2775,16 +2777,16 @@ msgid "All contacts"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/BaseModule.php:214 src/Content/Widget.php:238 src/Core/ACL.php:183
|
#: src/BaseModule.php:214 src/Content/Widget.php:238 src/Core/ACL.php:183
|
||||||
#: src/Module/Contact.php:825 src/Module/PermissionTooltip.php:77
|
#: src/Module/Contact.php:815 src/Module/PermissionTooltip.php:77
|
||||||
#: src/Module/PermissionTooltip.php:99
|
#: src/Module/PermissionTooltip.php:99
|
||||||
msgid "Followers"
|
msgid "Followers"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/BaseModule.php:219 src/Content/Widget.php:239 src/Module/Contact.php:826
|
#: src/BaseModule.php:219 src/Content/Widget.php:239 src/Module/Contact.php:816
|
||||||
msgid "Following"
|
msgid "Following"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/BaseModule.php:224 src/Content/Widget.php:240 src/Module/Contact.php:827
|
#: src/BaseModule.php:224 src/Content/Widget.php:240 src/Module/Contact.php:817
|
||||||
msgid "Mutual friends"
|
msgid "Mutual friends"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -3090,7 +3092,7 @@ msgid "Display membership date in profile"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/ForumManager.php:145 src/Content/Nav.php:243
|
#: src/Content/ForumManager.php:145 src/Content/Nav.php:243
|
||||||
#: src/Content/Text/HTML.php:914 src/Content/Widget.php:533
|
#: src/Content/Text/HTML.php:906 src/Content/Widget.php:530
|
||||||
msgid "Forums"
|
msgid "Forums"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -3098,12 +3100,12 @@ msgstr ""
|
||||||
msgid "External link to forum"
|
msgid "External link to forum"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/ForumManager.php:150 src/Content/Widget.php:512
|
#: src/Content/ForumManager.php:150 src/Content/Widget.php:509
|
||||||
msgid "show less"
|
msgid "show less"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/ForumManager.php:151 src/Content/Widget.php:411
|
#: src/Content/ForumManager.php:151 src/Content/Widget.php:411
|
||||||
#: src/Content/Widget.php:513
|
#: src/Content/Widget.php:510
|
||||||
msgid "show more"
|
msgid "show more"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -3119,7 +3121,7 @@ msgstr ""
|
||||||
msgid "Clear notifications"
|
msgid "Clear notifications"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/Nav.php:96 src/Content/Text/HTML.php:901
|
#: src/Content/Nav.php:96 src/Content/Text/HTML.php:893
|
||||||
msgid "@name, !forum, #tags, content"
|
msgid "@name, !forum, #tags, content"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -3140,8 +3142,8 @@ msgstr ""
|
||||||
msgid "Sign in"
|
msgid "Sign in"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/Nav.php:191 src/Module/BaseProfile.php:60
|
#: src/Content/Nav.php:191 src/Module/BaseProfile.php:58
|
||||||
#: src/Module/Contact.php:628 src/Module/Contact.php:893
|
#: src/Module/Contact.php:618 src/Module/Contact.php:883
|
||||||
#: src/Module/Settings/TwoFactor/Index.php:112 view/theme/frio/theme.php:226
|
#: src/Module/Settings/TwoFactor/Index.php:112 view/theme/frio/theme.php:226
|
||||||
msgid "Status"
|
msgid "Status"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
@ -3151,9 +3153,9 @@ msgstr ""
|
||||||
msgid "Your posts and conversations"
|
msgid "Your posts and conversations"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/Nav.php:192 src/Module/BaseProfile.php:52
|
#: src/Content/Nav.php:192 src/Module/BaseProfile.php:50
|
||||||
#: src/Module/BaseSettings.php:57 src/Module/Contact.php:630
|
#: src/Module/BaseSettings.php:57 src/Module/Contact.php:620
|
||||||
#: src/Module/Contact.php:909 src/Module/Profile/Profile.php:237
|
#: src/Module/Contact.php:899 src/Module/Profile/Profile.php:237
|
||||||
#: src/Module/Welcome.php:57 view/theme/frio/theme.php:227
|
#: src/Module/Welcome.php:57 view/theme/frio/theme.php:227
|
||||||
msgid "Profile"
|
msgid "Profile"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
@ -3166,8 +3168,8 @@ msgstr ""
|
||||||
msgid "Your photos"
|
msgid "Your photos"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/Nav.php:194 src/Module/BaseProfile.php:76
|
#: src/Content/Nav.php:194 src/Module/BaseProfile.php:74
|
||||||
#: src/Module/BaseProfile.php:79 view/theme/frio/theme.php:229
|
#: src/Module/BaseProfile.php:77 view/theme/frio/theme.php:229
|
||||||
msgid "Videos"
|
msgid "Videos"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -3220,7 +3222,7 @@ msgstr ""
|
||||||
msgid "Addon applications, utilities, games"
|
msgid "Addon applications, utilities, games"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/Nav.php:234 src/Content/Text/HTML.php:899
|
#: src/Content/Nav.php:234 src/Content/Text/HTML.php:891
|
||||||
#: src/Module/Search/Index.php:99
|
#: src/Module/Search/Index.php:99
|
||||||
msgid "Search"
|
msgid "Search"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
@ -3229,19 +3231,19 @@ msgstr ""
|
||||||
msgid "Search site content"
|
msgid "Search site content"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/Nav.php:237 src/Content/Text/HTML.php:908
|
#: src/Content/Nav.php:237 src/Content/Text/HTML.php:900
|
||||||
msgid "Full Text"
|
msgid "Full Text"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/Nav.php:238 src/Content/Text/HTML.php:909
|
#: src/Content/Nav.php:238 src/Content/Text/HTML.php:901
|
||||||
#: src/Content/Widget/TagCloud.php:68
|
#: src/Content/Widget/TagCloud.php:68
|
||||||
msgid "Tags"
|
msgid "Tags"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/Nav.php:239 src/Content/Nav.php:298
|
#: src/Content/Nav.php:239 src/Content/Nav.php:298
|
||||||
#: src/Content/Text/HTML.php:910 src/Module/BaseProfile.php:121
|
#: src/Content/Text/HTML.php:902 src/Module/BaseProfile.php:119
|
||||||
#: src/Module/BaseProfile.php:124 src/Module/Contact.php:828
|
#: src/Module/BaseProfile.php:122 src/Module/Contact.php:818
|
||||||
#: src/Module/Contact.php:916 view/theme/frio/theme.php:237
|
#: src/Module/Contact.php:906 view/theme/frio/theme.php:237
|
||||||
msgid "Contacts"
|
msgid "Contacts"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -3253,8 +3255,8 @@ msgstr ""
|
||||||
msgid "Conversations on this and other servers"
|
msgid "Conversations on this and other servers"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/Nav.php:262 src/Module/BaseProfile.php:91
|
#: src/Content/Nav.php:262 src/Module/BaseProfile.php:89
|
||||||
#: src/Module/BaseProfile.php:102 view/theme/frio/theme.php:234
|
#: src/Module/BaseProfile.php:100 view/theme/frio/theme.php:234
|
||||||
msgid "Events and Calendar"
|
msgid "Events and Calendar"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -3387,52 +3389,52 @@ msgstr ""
|
||||||
msgid "last"
|
msgid "last"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/Text/BBCode.php:953 src/Content/Text/BBCode.php:1689
|
#: src/Content/Text/BBCode.php:979 src/Content/Text/BBCode.php:1730
|
||||||
#: src/Content/Text/BBCode.php:1690
|
#: src/Content/Text/BBCode.php:1731
|
||||||
msgid "Image/photo"
|
msgid "Image/photo"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/Text/BBCode.php:1083
|
#: src/Content/Text/BBCode.php:1115
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"<a href=\"%1$s\" target=\"_blank\" rel=\"noopener noreferrer\">%2$s</a> %3$s"
|
"<a href=\"%1$s\" target=\"_blank\" rel=\"noopener noreferrer\">%2$s</a> %3$s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/Text/BBCode.php:1108 src/Model/Item.php:3138
|
#: src/Content/Text/BBCode.php:1140 src/Model/Item.php:3138
|
||||||
#: src/Model/Item.php:3144 src/Model/Item.php:3145
|
#: src/Model/Item.php:3144 src/Model/Item.php:3145
|
||||||
msgid "Link to source"
|
msgid "Link to source"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/Text/BBCode.php:1607 src/Content/Text/HTML.php:951
|
#: src/Content/Text/BBCode.php:1648 src/Content/Text/HTML.php:943
|
||||||
msgid "Click to open/close"
|
msgid "Click to open/close"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/Text/BBCode.php:1638
|
#: src/Content/Text/BBCode.php:1679
|
||||||
msgid "$1 wrote:"
|
msgid "$1 wrote:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/Text/BBCode.php:1692 src/Content/Text/BBCode.php:1693
|
#: src/Content/Text/BBCode.php:1733 src/Content/Text/BBCode.php:1734
|
||||||
msgid "Encrypted content"
|
msgid "Encrypted content"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/Text/BBCode.php:1909
|
#: src/Content/Text/BBCode.php:1950
|
||||||
msgid "Invalid source protocol"
|
msgid "Invalid source protocol"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/Text/BBCode.php:1924
|
#: src/Content/Text/BBCode.php:1965
|
||||||
msgid "Invalid link protocol"
|
msgid "Invalid link protocol"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/Text/HTML.php:799
|
#: src/Content/Text/HTML.php:807
|
||||||
msgid "Loading more entries..."
|
msgid "Loading more entries..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/Text/HTML.php:800
|
#: src/Content/Text/HTML.php:808
|
||||||
msgid "The end"
|
msgid "The end"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/Text/HTML.php:893 src/Content/Widget/VCard.php:92
|
#: src/Content/Text/HTML.php:885 src/Content/Widget/VCard.php:102
|
||||||
#: src/Model/Profile.php:450
|
#: src/Model/Profile.php:442
|
||||||
msgid "Follow"
|
msgid "Follow"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -3471,8 +3473,8 @@ msgstr ""
|
||||||
msgid "Examples: Robert Morgenstein, Fishing"
|
msgid "Examples: Robert Morgenstein, Fishing"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/Widget.php:78 src/Module/Contact.php:849
|
#: src/Content/Widget.php:78 src/Module/Contact.php:839
|
||||||
#: src/Module/Directory.php:105 view/theme/vier/theme.php:174
|
#: src/Module/Directory.php:99 view/theme/vier/theme.php:174
|
||||||
msgid "Find"
|
msgid "Find"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -3488,7 +3490,7 @@ msgstr ""
|
||||||
msgid "Invite Friends"
|
msgid "Invite Friends"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/Widget.php:83 src/Module/Directory.php:97
|
#: src/Content/Widget.php:83 src/Module/Directory.php:91
|
||||||
#: view/theme/vier/theme.php:179
|
#: view/theme/vier/theme.php:179
|
||||||
msgid "Global Directory"
|
msgid "Global Directory"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
@ -3498,7 +3500,7 @@ msgid "Local Directory"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/Widget.php:214 src/Model/Group.php:535
|
#: src/Content/Widget.php:214 src/Model/Group.php:535
|
||||||
#: src/Module/Contact.php:812 src/Module/Welcome.php:76
|
#: src/Module/Contact.php:802 src/Module/Welcome.php:76
|
||||||
msgid "Groups"
|
msgid "Groups"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -3510,7 +3512,7 @@ msgstr ""
|
||||||
msgid "Relationships"
|
msgid "Relationships"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/Widget.php:247 src/Module/Contact.php:764
|
#: src/Content/Widget.php:247 src/Module/Contact.php:754
|
||||||
#: src/Module/Group.php:292
|
#: src/Module/Group.php:292
|
||||||
msgid "All Contacts"
|
msgid "All Contacts"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
@ -3542,23 +3544,23 @@ msgid_plural "%d contacts in common"
|
||||||
msgstr[0] ""
|
msgstr[0] ""
|
||||||
msgstr[1] ""
|
msgstr[1] ""
|
||||||
|
|
||||||
#: src/Content/Widget.php:506
|
#: src/Content/Widget.php:503
|
||||||
msgid "Archives"
|
msgid "Archives"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/Widget.php:530
|
#: src/Content/Widget.php:527
|
||||||
msgid "Persons"
|
msgid "Persons"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/Widget.php:531
|
#: src/Content/Widget.php:528
|
||||||
msgid "Organisations"
|
msgid "Organisations"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/Widget.php:532 src/Model/Contact.php:1471
|
#: src/Content/Widget.php:529 src/Model/Contact.php:1471
|
||||||
msgid "News"
|
msgid "News"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/Widget.php:537 src/Module/Admin/BaseUsers.php:50
|
#: src/Content/Widget.php:534 src/Module/Admin/BaseUsers.php:50
|
||||||
msgid "All"
|
msgid "All"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -3608,17 +3610,17 @@ msgstr[1] ""
|
||||||
msgid "More Trending Tags"
|
msgid "More Trending Tags"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/Widget/VCard.php:87 src/Model/Profile.php:371
|
#: src/Content/Widget/VCard.php:96 src/Model/Profile.php:363
|
||||||
#: src/Module/Contact.php:621 src/Module/Profile/Profile.php:176
|
#: src/Module/Contact.php:611 src/Module/Profile/Profile.php:176
|
||||||
msgid "XMPP:"
|
msgid "XMPP:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/Widget/VCard.php:90 src/Model/Profile.php:462
|
#: src/Content/Widget/VCard.php:100 src/Model/Profile.php:454
|
||||||
#: src/Module/Notifications/Introductions.php:180
|
#: src/Module/Notifications/Introductions.php:180
|
||||||
msgid "Network:"
|
msgid "Network:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/Widget/VCard.php:94 src/Model/Profile.php:452
|
#: src/Content/Widget/VCard.php:104 src/Model/Profile.php:444
|
||||||
msgid "Unfollow"
|
msgid "Unfollow"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -4152,18 +4154,18 @@ msgstr ""
|
||||||
msgid "rebuffed"
|
msgid "rebuffed"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Core/Renderer.php:90 src/Core/Renderer.php:119 src/Core/Renderer.php:146
|
#: src/Core/Renderer.php:89 src/Core/Renderer.php:118 src/Core/Renderer.php:145
|
||||||
#: src/Core/Renderer.php:180 src/Render/FriendicaSmartyEngine.php:56
|
#: src/Core/Renderer.php:179 src/Render/FriendicaSmartyEngine.php:56
|
||||||
msgid ""
|
msgid ""
|
||||||
"Friendica can't display this page at the moment, please contact the "
|
"Friendica can't display this page at the moment, please contact the "
|
||||||
"administrator."
|
"administrator."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Core/Renderer.php:142
|
#: src/Core/Renderer.php:141
|
||||||
msgid "template engine cannot be registered without a name."
|
msgid "template engine cannot be registered without a name."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Core/Renderer.php:176
|
#: src/Core/Renderer.php:175
|
||||||
msgid "template engine is not registered!"
|
msgid "template engine is not registered!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -4343,43 +4345,43 @@ msgstr ""
|
||||||
msgid "New Follower"
|
msgid "New Follower"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Factory/Notification/Notification.php:104
|
#: src/Factory/Notification/Notification.php:101
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s created a new post"
|
msgid "%s created a new post"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Factory/Notification/Notification.php:105
|
#: src/Factory/Notification/Notification.php:102
|
||||||
#: src/Factory/Notification/Notification.php:363
|
#: src/Factory/Notification/Notification.php:360
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s commented on %s's post"
|
msgid "%s commented on %s's post"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Factory/Notification/Notification.php:131
|
#: src/Factory/Notification/Notification.php:128
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s liked %s's post"
|
msgid "%s liked %s's post"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Factory/Notification/Notification.php:142
|
#: src/Factory/Notification/Notification.php:139
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s disliked %s's post"
|
msgid "%s disliked %s's post"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Factory/Notification/Notification.php:153
|
#: src/Factory/Notification/Notification.php:150
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s is attending %s's event"
|
msgid "%s is attending %s's event"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Factory/Notification/Notification.php:164
|
#: src/Factory/Notification/Notification.php:161
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s is not attending %s's event"
|
msgid "%s is not attending %s's event"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Factory/Notification/Notification.php:175
|
#: src/Factory/Notification/Notification.php:172
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s may attending %s's event"
|
msgid "%s may attending %s's event"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Factory/Notification/Notification.php:202
|
#: src/Factory/Notification/Notification.php:199
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s is now friends with %s"
|
msgid "%s is now friends with %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
@ -4472,7 +4474,7 @@ msgid "Unable to retrieve contact information."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Model/Event.php:52 src/Model/Event.php:857
|
#: src/Model/Event.php:52 src/Model/Event.php:857
|
||||||
#: src/Module/Debug/Localtime.php:36
|
#: src/Module/Debug/Localtime.php:38
|
||||||
msgid "l F d, Y \\@ g:i A"
|
msgid "l F d, Y \\@ g:i A"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -4618,62 +4620,62 @@ msgstr ""
|
||||||
msgid "[no subject]"
|
msgid "[no subject]"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Model/Profile.php:354 src/Module/Profile/Profile.php:252
|
#: src/Model/Profile.php:346 src/Module/Profile/Profile.php:252
|
||||||
#: src/Module/Profile/Profile.php:254
|
#: src/Module/Profile/Profile.php:254
|
||||||
msgid "Edit profile"
|
msgid "Edit profile"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Model/Profile.php:356
|
#: src/Model/Profile.php:348
|
||||||
msgid "Change profile photo"
|
msgid "Change profile photo"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Model/Profile.php:369 src/Module/Directory.php:161
|
#: src/Model/Profile.php:361 src/Module/Directory.php:155
|
||||||
#: src/Module/Profile/Profile.php:180
|
#: src/Module/Profile/Profile.php:180
|
||||||
msgid "Homepage:"
|
msgid "Homepage:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Model/Profile.php:370 src/Module/Contact.php:623
|
#: src/Model/Profile.php:362 src/Module/Contact.php:613
|
||||||
#: src/Module/Notifications/Introductions.php:168
|
#: src/Module/Notifications/Introductions.php:168
|
||||||
msgid "About:"
|
msgid "About:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Model/Profile.php:454
|
#: src/Model/Profile.php:446
|
||||||
msgid "Atom feed"
|
msgid "Atom feed"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Model/Profile.php:492 src/Model/Profile.php:589
|
#: src/Model/Profile.php:484 src/Model/Profile.php:581
|
||||||
msgid "g A l F d"
|
msgid "g A l F d"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Model/Profile.php:493
|
#: src/Model/Profile.php:485
|
||||||
msgid "F d"
|
msgid "F d"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Model/Profile.php:555 src/Model/Profile.php:640
|
#: src/Model/Profile.php:547 src/Model/Profile.php:632
|
||||||
msgid "[today]"
|
msgid "[today]"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Model/Profile.php:565
|
#: src/Model/Profile.php:557
|
||||||
msgid "Birthday Reminders"
|
msgid "Birthday Reminders"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Model/Profile.php:566
|
#: src/Model/Profile.php:558
|
||||||
msgid "Birthdays this week:"
|
msgid "Birthdays this week:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Model/Profile.php:627
|
#: src/Model/Profile.php:619
|
||||||
msgid "[No description]"
|
msgid "[No description]"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Model/Profile.php:653
|
#: src/Model/Profile.php:645
|
||||||
msgid "Event Reminders"
|
msgid "Event Reminders"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Model/Profile.php:654
|
#: src/Model/Profile.php:646
|
||||||
msgid "Upcoming events the next 7 days:"
|
msgid "Upcoming events the next 7 days:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Model/Profile.php:842
|
#: src/Model/Profile.php:834
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "OpenWebAuth: %1$s welcomes %2$s"
|
msgid "OpenWebAuth: %1$s welcomes %2$s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
@ -5055,8 +5057,8 @@ msgstr ""
|
||||||
msgid "List of active accounts"
|
msgid "List of active accounts"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/BaseUsers.php:66 src/Module/Contact.php:772
|
#: src/Module/Admin/BaseUsers.php:66 src/Module/Contact.php:762
|
||||||
#: src/Module/Contact.php:832
|
#: src/Module/Contact.php:822
|
||||||
msgid "Pending"
|
msgid "Pending"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -5064,8 +5066,8 @@ msgstr ""
|
||||||
msgid "List of pending registrations"
|
msgid "List of pending registrations"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/BaseUsers.php:74 src/Module/Contact.php:780
|
#: src/Module/Admin/BaseUsers.php:74 src/Module/Contact.php:770
|
||||||
#: src/Module/Contact.php:833
|
#: src/Module/Contact.php:823
|
||||||
msgid "Blocked"
|
msgid "Blocked"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -5122,8 +5124,8 @@ msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Blocklist/Contact.php:85
|
#: src/Module/Admin/Blocklist/Contact.php:85
|
||||||
#: src/Module/Admin/Users/Blocked.php:142 src/Module/Admin/Users/Index.php:156
|
#: src/Module/Admin/Users/Blocked.php:142 src/Module/Admin/Users/Index.php:156
|
||||||
#: src/Module/Contact.php:598 src/Module/Contact.php:856
|
#: src/Module/Contact.php:588 src/Module/Contact.php:846
|
||||||
#: src/Module/Contact.php:1136
|
#: src/Module/Contact.php:1126
|
||||||
msgid "Unblock"
|
msgid "Unblock"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -6365,7 +6367,7 @@ msgid "Encryption layer between nodes."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:604 src/Module/Admin/Site.php:610
|
#: src/Module/Admin/Site.php:604 src/Module/Admin/Site.php:610
|
||||||
#: src/Module/Contact.php:527 src/Module/Settings/TwoFactor/Index.php:118
|
#: src/Module/Contact.php:517 src/Module/Settings/TwoFactor/Index.php:118
|
||||||
msgid "Disabled"
|
msgid "Disabled"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -6962,7 +6964,7 @@ msgstr ""
|
||||||
msgid "Posts from %s can't be unshared"
|
msgid "Posts from %s can't be unshared"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Api/Twitter/ContactEndpoint.php:63 src/Module/Contact.php:365
|
#: src/Module/Api/Twitter/ContactEndpoint.php:63 src/Module/Contact.php:357
|
||||||
msgid "Contact not found"
|
msgid "Contact not found"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -6978,7 +6980,7 @@ msgstr ""
|
||||||
msgid "Applications"
|
msgid "Applications"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Attach.php:50 src/Module/Attach.php:62
|
#: src/Module/Attach.php:49 src/Module/Attach.php:61
|
||||||
msgid "Item was not found."
|
msgid "Item was not found."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -7083,15 +7085,15 @@ msgstr ""
|
||||||
msgid "Too Many Requests"
|
msgid "Too Many Requests"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/BaseProfile.php:55 src/Module/Contact.php:912
|
#: src/Module/BaseProfile.php:53 src/Module/Contact.php:902
|
||||||
msgid "Profile Details"
|
msgid "Profile Details"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/BaseProfile.php:113
|
#: src/Module/BaseProfile.php:111
|
||||||
msgid "Only You Can See This"
|
msgid "Only You Can See This"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/BaseProfile.php:132 src/Module/BaseProfile.php:135
|
#: src/Module/BaseProfile.php:130 src/Module/BaseProfile.php:133
|
||||||
msgid "Tips for New Members"
|
msgid "Tips for New Members"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -7157,370 +7159,370 @@ msgstr ""
|
||||||
msgid "Failed to update contact record."
|
msgid "Failed to update contact record."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:382
|
#: src/Module/Contact.php:374
|
||||||
msgid "You can't block yourself"
|
msgid "You can't block yourself"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:388
|
#: src/Module/Contact.php:380
|
||||||
msgid "Contact has been blocked"
|
msgid "Contact has been blocked"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:388
|
#: src/Module/Contact.php:380
|
||||||
msgid "Contact has been unblocked"
|
msgid "Contact has been unblocked"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:396
|
#: src/Module/Contact.php:388
|
||||||
msgid "You can't ignore yourself"
|
msgid "You can't ignore yourself"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:402
|
#: src/Module/Contact.php:394
|
||||||
msgid "Contact has been ignored"
|
msgid "Contact has been ignored"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:402
|
#: src/Module/Contact.php:394
|
||||||
msgid "Contact has been unignored"
|
msgid "Contact has been unignored"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:412
|
#: src/Module/Contact.php:404
|
||||||
msgid "Contact has been archived"
|
msgid "Contact has been archived"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:412
|
#: src/Module/Contact.php:404
|
||||||
msgid "Contact has been unarchived"
|
msgid "Contact has been unarchived"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:425
|
#: src/Module/Contact.php:417
|
||||||
msgid "Drop contact"
|
msgid "Drop contact"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:428 src/Module/Contact.php:852
|
#: src/Module/Contact.php:420 src/Module/Contact.php:842
|
||||||
msgid "Do you really want to delete this contact?"
|
msgid "Do you really want to delete this contact?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:429 src/Module/Notifications/Introductions.php:123
|
#: src/Module/Contact.php:421 src/Module/Notifications/Introductions.php:123
|
||||||
#: src/Module/OAuth/Acknowledge.php:47 src/Module/Register.php:115
|
#: src/Module/OAuth/Acknowledge.php:47 src/Module/Register.php:115
|
||||||
msgid "Yes"
|
msgid "Yes"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:441
|
#: src/Module/Contact.php:433
|
||||||
msgid "Contact has been removed."
|
msgid "Contact has been removed."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:469
|
#: src/Module/Contact.php:459
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "You are mutual friends with %s"
|
msgid "You are mutual friends with %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:473
|
#: src/Module/Contact.php:463
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "You are sharing with %s"
|
msgid "You are sharing with %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:477
|
#: src/Module/Contact.php:467
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s is sharing with you"
|
msgid "%s is sharing with you"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:501
|
#: src/Module/Contact.php:491
|
||||||
msgid "Private communications are not available for this contact."
|
msgid "Private communications are not available for this contact."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:503
|
#: src/Module/Contact.php:493
|
||||||
msgid "Never"
|
msgid "Never"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:506
|
#: src/Module/Contact.php:496
|
||||||
msgid "(Update was not successful)"
|
msgid "(Update was not successful)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:506
|
#: src/Module/Contact.php:496
|
||||||
msgid "(Update was successful)"
|
msgid "(Update was successful)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:508 src/Module/Contact.php:1107
|
#: src/Module/Contact.php:498 src/Module/Contact.php:1097
|
||||||
msgid "Suggest friends"
|
msgid "Suggest friends"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:512
|
#: src/Module/Contact.php:502
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Network type: %s"
|
msgid "Network type: %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:517
|
#: src/Module/Contact.php:507
|
||||||
msgid "Communications lost with this contact!"
|
msgid "Communications lost with this contact!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:523
|
#: src/Module/Contact.php:513
|
||||||
msgid "Fetch further information for feeds"
|
msgid "Fetch further information for feeds"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:525
|
#: src/Module/Contact.php:515
|
||||||
msgid ""
|
msgid ""
|
||||||
"Fetch information like preview pictures, title and teaser from the feed "
|
"Fetch information like preview pictures, title and teaser from the feed "
|
||||||
"item. You can activate this if the feed doesn't contain much text. Keywords "
|
"item. You can activate this if the feed doesn't contain much text. Keywords "
|
||||||
"are taken from the meta header in the feed item and are posted as hash tags."
|
"are taken from the meta header in the feed item and are posted as hash tags."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:528
|
#: src/Module/Contact.php:518
|
||||||
msgid "Fetch information"
|
msgid "Fetch information"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:529
|
#: src/Module/Contact.php:519
|
||||||
msgid "Fetch keywords"
|
msgid "Fetch keywords"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:530
|
#: src/Module/Contact.php:520
|
||||||
msgid "Fetch information and keywords"
|
msgid "Fetch information and keywords"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:542 src/Module/Contact.php:546
|
#: src/Module/Contact.php:532 src/Module/Contact.php:536
|
||||||
#: src/Module/Contact.php:549 src/Module/Contact.php:553
|
#: src/Module/Contact.php:539 src/Module/Contact.php:543
|
||||||
msgid "No mirroring"
|
msgid "No mirroring"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:543
|
#: src/Module/Contact.php:533
|
||||||
msgid "Mirror as forwarded posting"
|
msgid "Mirror as forwarded posting"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:544 src/Module/Contact.php:550
|
#: src/Module/Contact.php:534 src/Module/Contact.php:540
|
||||||
#: src/Module/Contact.php:554
|
#: src/Module/Contact.php:544
|
||||||
msgid "Mirror as my own posting"
|
msgid "Mirror as my own posting"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:547 src/Module/Contact.php:551
|
#: src/Module/Contact.php:537 src/Module/Contact.php:541
|
||||||
msgid "Native reshare"
|
msgid "Native reshare"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:566
|
#: src/Module/Contact.php:556
|
||||||
msgid "Contact Information / Notes"
|
msgid "Contact Information / Notes"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:567
|
#: src/Module/Contact.php:557
|
||||||
msgid "Contact Settings"
|
msgid "Contact Settings"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:575
|
#: src/Module/Contact.php:565
|
||||||
msgid "Contact"
|
msgid "Contact"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:579
|
#: src/Module/Contact.php:569
|
||||||
msgid "Their personal note"
|
msgid "Their personal note"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:581
|
#: src/Module/Contact.php:571
|
||||||
msgid "Edit contact notes"
|
msgid "Edit contact notes"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:584 src/Module/Contact.php:1075
|
#: src/Module/Contact.php:574 src/Module/Contact.php:1065
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Visit %s's profile [%s]"
|
msgid "Visit %s's profile [%s]"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:585
|
#: src/Module/Contact.php:575
|
||||||
msgid "Block/Unblock contact"
|
msgid "Block/Unblock contact"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:586
|
#: src/Module/Contact.php:576
|
||||||
msgid "Ignore contact"
|
msgid "Ignore contact"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:587
|
#: src/Module/Contact.php:577
|
||||||
msgid "View conversations"
|
msgid "View conversations"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:592
|
#: src/Module/Contact.php:582
|
||||||
msgid "Last update:"
|
msgid "Last update:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:594
|
#: src/Module/Contact.php:584
|
||||||
msgid "Update public posts"
|
msgid "Update public posts"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:596 src/Module/Contact.php:1117
|
#: src/Module/Contact.php:586 src/Module/Contact.php:1107
|
||||||
msgid "Update now"
|
msgid "Update now"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:599 src/Module/Contact.php:857
|
#: src/Module/Contact.php:589 src/Module/Contact.php:847
|
||||||
#: src/Module/Contact.php:1144
|
#: src/Module/Contact.php:1134
|
||||||
msgid "Unignore"
|
msgid "Unignore"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:603
|
#: src/Module/Contact.php:593
|
||||||
msgid "Currently blocked"
|
msgid "Currently blocked"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:604
|
#: src/Module/Contact.php:594
|
||||||
msgid "Currently ignored"
|
msgid "Currently ignored"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:605
|
#: src/Module/Contact.php:595
|
||||||
msgid "Currently archived"
|
msgid "Currently archived"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:606
|
#: src/Module/Contact.php:596
|
||||||
msgid "Awaiting connection acknowledge"
|
msgid "Awaiting connection acknowledge"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:607 src/Module/Notifications/Introductions.php:171
|
#: src/Module/Contact.php:597 src/Module/Notifications/Introductions.php:171
|
||||||
msgid "Hide this contact from others"
|
msgid "Hide this contact from others"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:607
|
#: src/Module/Contact.php:597
|
||||||
msgid ""
|
msgid ""
|
||||||
"Replies/likes to your public posts <strong>may</strong> still be visible"
|
"Replies/likes to your public posts <strong>may</strong> still be visible"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:608
|
#: src/Module/Contact.php:598
|
||||||
msgid "Notification for new posts"
|
msgid "Notification for new posts"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:608
|
#: src/Module/Contact.php:598
|
||||||
msgid "Send a notification of every new post of this contact"
|
msgid "Send a notification of every new post of this contact"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:610
|
#: src/Module/Contact.php:600
|
||||||
msgid "Keyword Deny List"
|
msgid "Keyword Deny List"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:610
|
#: src/Module/Contact.php:600
|
||||||
msgid ""
|
msgid ""
|
||||||
"Comma separated list of keywords that should not be converted to hashtags, "
|
"Comma separated list of keywords that should not be converted to hashtags, "
|
||||||
"when \"Fetch information and keywords\" is selected"
|
"when \"Fetch information and keywords\" is selected"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:626 src/Module/Settings/TwoFactor/Index.php:132
|
#: src/Module/Contact.php:616 src/Module/Settings/TwoFactor/Index.php:132
|
||||||
msgid "Actions"
|
msgid "Actions"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:633
|
#: src/Module/Contact.php:623
|
||||||
msgid "Mirror postings from this contact"
|
msgid "Mirror postings from this contact"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:635
|
#: src/Module/Contact.php:625
|
||||||
msgid ""
|
msgid ""
|
||||||
"Mark this contact as remote_self, this will cause friendica to repost new "
|
"Mark this contact as remote_self, this will cause friendica to repost new "
|
||||||
"entries from this contact."
|
"entries from this contact."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:767
|
#: src/Module/Contact.php:757
|
||||||
msgid "Show all contacts"
|
msgid "Show all contacts"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:775
|
#: src/Module/Contact.php:765
|
||||||
msgid "Only show pending contacts"
|
msgid "Only show pending contacts"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:783
|
#: src/Module/Contact.php:773
|
||||||
msgid "Only show blocked contacts"
|
msgid "Only show blocked contacts"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:788 src/Module/Contact.php:835
|
#: src/Module/Contact.php:778 src/Module/Contact.php:825
|
||||||
#: src/Object/Post.php:308
|
#: src/Object/Post.php:308
|
||||||
msgid "Ignored"
|
msgid "Ignored"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:791
|
#: src/Module/Contact.php:781
|
||||||
msgid "Only show ignored contacts"
|
msgid "Only show ignored contacts"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:796 src/Module/Contact.php:836
|
#: src/Module/Contact.php:786 src/Module/Contact.php:826
|
||||||
msgid "Archived"
|
msgid "Archived"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:799
|
#: src/Module/Contact.php:789
|
||||||
msgid "Only show archived contacts"
|
msgid "Only show archived contacts"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:804 src/Module/Contact.php:834
|
#: src/Module/Contact.php:794 src/Module/Contact.php:824
|
||||||
msgid "Hidden"
|
msgid "Hidden"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:807
|
#: src/Module/Contact.php:797
|
||||||
msgid "Only show hidden contacts"
|
msgid "Only show hidden contacts"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:815
|
#: src/Module/Contact.php:805
|
||||||
msgid "Organize your contact groups"
|
msgid "Organize your contact groups"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:847
|
#: src/Module/Contact.php:837
|
||||||
msgid "Search your contacts"
|
msgid "Search your contacts"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:848 src/Module/Search/Index.php:194
|
#: src/Module/Contact.php:838 src/Module/Search/Index.php:194
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Results for: %s"
|
msgid "Results for: %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:855
|
#: src/Module/Contact.php:845
|
||||||
msgid "Update"
|
msgid "Update"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:858 src/Module/Contact.php:1153
|
#: src/Module/Contact.php:848 src/Module/Contact.php:1143
|
||||||
msgid "Archive"
|
msgid "Archive"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:858 src/Module/Contact.php:1153
|
#: src/Module/Contact.php:848 src/Module/Contact.php:1143
|
||||||
msgid "Unarchive"
|
msgid "Unarchive"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:861
|
#: src/Module/Contact.php:851
|
||||||
msgid "Batch Actions"
|
msgid "Batch Actions"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:896
|
#: src/Module/Contact.php:886
|
||||||
msgid "Conversations started by this contact"
|
msgid "Conversations started by this contact"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:901
|
#: src/Module/Contact.php:891
|
||||||
msgid "Posts and Comments"
|
msgid "Posts and Comments"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:919
|
#: src/Module/Contact.php:909
|
||||||
msgid "View all known contacts"
|
msgid "View all known contacts"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:929
|
#: src/Module/Contact.php:919
|
||||||
msgid "Advanced Contact Settings"
|
msgid "Advanced Contact Settings"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:1034
|
#: src/Module/Contact.php:1024
|
||||||
msgid "Mutual Friendship"
|
msgid "Mutual Friendship"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:1038
|
#: src/Module/Contact.php:1028
|
||||||
msgid "is a fan of yours"
|
msgid "is a fan of yours"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:1042
|
#: src/Module/Contact.php:1032
|
||||||
msgid "you are a fan of"
|
msgid "you are a fan of"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:1060
|
#: src/Module/Contact.php:1050
|
||||||
msgid "Pending outgoing contact request"
|
msgid "Pending outgoing contact request"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:1062
|
#: src/Module/Contact.php:1052
|
||||||
msgid "Pending incoming contact request"
|
msgid "Pending incoming contact request"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:1127
|
#: src/Module/Contact.php:1117
|
||||||
msgid "Refetch contact data"
|
msgid "Refetch contact data"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:1138
|
#: src/Module/Contact.php:1128
|
||||||
msgid "Toggle Blocked status"
|
msgid "Toggle Blocked status"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:1146
|
#: src/Module/Contact.php:1136
|
||||||
msgid "Toggle Ignored status"
|
msgid "Toggle Ignored status"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:1155
|
#: src/Module/Contact.php:1145
|
||||||
msgid "Toggle Archive status"
|
msgid "Toggle Archive status"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:1163
|
#: src/Module/Contact.php:1153
|
||||||
msgid "Delete contact"
|
msgid "Delete contact"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -7588,7 +7590,7 @@ msgstr ""
|
||||||
msgid "No known contacts."
|
msgid "No known contacts."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact/Contacts.php:68 src/Module/Profile/Common.php:99
|
#: src/Module/Contact/Contacts.php:68 src/Module/Profile/Common.php:98
|
||||||
msgid "No common contacts."
|
msgid "No common contacts."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -7618,14 +7620,14 @@ msgstr[1] ""
|
||||||
msgid "These contacts both follow and are followed by <strong>%s</strong>."
|
msgid "These contacts both follow and are followed by <strong>%s</strong>."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact/Contacts.php:96 src/Module/Profile/Common.php:87
|
#: src/Module/Contact/Contacts.php:96 src/Module/Profile/Common.php:86
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Common contact (%s)"
|
msgid "Common contact (%s)"
|
||||||
msgid_plural "Common contacts (%s)"
|
msgid_plural "Common contacts (%s)"
|
||||||
msgstr[0] ""
|
msgstr[0] ""
|
||||||
msgstr[1] ""
|
msgstr[1] ""
|
||||||
|
|
||||||
#: src/Module/Contact/Contacts.php:98 src/Module/Profile/Common.php:89
|
#: src/Module/Contact/Contacts.php:98 src/Module/Profile/Common.php:88
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"Both <strong>%s</strong> and yourself have publicly interacted with these "
|
"Both <strong>%s</strong> and yourself have publicly interacted with these "
|
||||||
|
|
@ -7639,27 +7641,27 @@ msgid_plural "Contacts (%s)"
|
||||||
msgstr[0] ""
|
msgstr[0] ""
|
||||||
msgstr[1] ""
|
msgstr[1] ""
|
||||||
|
|
||||||
#: src/Module/Contact/Poke.php:114
|
#: src/Module/Contact/Poke.php:115
|
||||||
msgid "Error while sending poke, please retry."
|
msgid "Error while sending poke, please retry."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact/Poke.php:127 src/Module/Search/Acl.php:55
|
#: src/Module/Contact/Poke.php:128 src/Module/Search/Acl.php:55
|
||||||
msgid "You must be logged in to use this module."
|
msgid "You must be logged in to use this module."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact/Poke.php:150
|
#: src/Module/Contact/Poke.php:151
|
||||||
msgid "Poke/Prod"
|
msgid "Poke/Prod"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact/Poke.php:151
|
#: src/Module/Contact/Poke.php:152
|
||||||
msgid "poke, prod or do other things to somebody"
|
msgid "poke, prod or do other things to somebody"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact/Poke.php:153
|
#: src/Module/Contact/Poke.php:154
|
||||||
msgid "Choose what you wish to do to recipient"
|
msgid "Choose what you wish to do to recipient"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact/Poke.php:154
|
#: src/Module/Contact/Poke.php:155
|
||||||
msgid "Make this post private"
|
msgid "Make this post private"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -8043,27 +8045,27 @@ msgstr ""
|
||||||
msgid "No entries (some entries may be hidden)."
|
msgid "No entries (some entries may be hidden)."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Directory.php:99
|
#: src/Module/Directory.php:93
|
||||||
msgid "Find on this site"
|
msgid "Find on this site"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Directory.php:101
|
#: src/Module/Directory.php:95
|
||||||
msgid "Results for:"
|
msgid "Results for:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Directory.php:103
|
#: src/Module/Directory.php:97
|
||||||
msgid "Site Directory"
|
msgid "Site Directory"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Filer/RemoveTag.php:69
|
#: src/Module/Filer/RemoveTag.php:68
|
||||||
msgid "Item was not removed"
|
msgid "Item was not removed"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Filer/RemoveTag.php:72
|
#: src/Module/Filer/RemoveTag.php:71
|
||||||
msgid "Item was not deleted"
|
msgid "Item was not deleted"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Filer/SaveTag.php:69
|
#: src/Module/Filer/SaveTag.php:68
|
||||||
msgid "- select -"
|
msgid "- select -"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -8492,35 +8494,35 @@ msgid ""
|
||||||
"important, please visit http://friendi.ca"
|
"important, please visit http://friendi.ca"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Item/Compose.php:46
|
#: src/Module/Item/Compose.php:47
|
||||||
msgid "Please enter a post body."
|
msgid "Please enter a post body."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Item/Compose.php:59
|
#: src/Module/Item/Compose.php:60
|
||||||
msgid "This feature is only available with the frio theme."
|
msgid "This feature is only available with the frio theme."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Item/Compose.php:86
|
#: src/Module/Item/Compose.php:87
|
||||||
msgid "Compose new personal note"
|
msgid "Compose new personal note"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Item/Compose.php:95
|
#: src/Module/Item/Compose.php:96
|
||||||
msgid "Compose new post"
|
msgid "Compose new post"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Item/Compose.php:135
|
#: src/Module/Item/Compose.php:138
|
||||||
msgid "Visibility"
|
msgid "Visibility"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Item/Compose.php:156
|
#: src/Module/Item/Compose.php:159
|
||||||
msgid "Clear the location"
|
msgid "Clear the location"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Item/Compose.php:157
|
#: src/Module/Item/Compose.php:160
|
||||||
msgid "Location services are unavailable on your device"
|
msgid "Location services are unavailable on your device"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Item/Compose.php:158
|
#: src/Module/Item/Compose.php:161
|
||||||
msgid ""
|
msgid ""
|
||||||
"Location services are disabled. Please check the website's permissions on "
|
"Location services are disabled. Please check the website's permissions on "
|
||||||
"your device"
|
"your device"
|
||||||
|
|
@ -8900,29 +8902,29 @@ msgstr ""
|
||||||
msgid "Your registration is pending approval by the site owner."
|
msgid "Your registration is pending approval by the site owner."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/RemoteFollow.php:54
|
#: src/Module/RemoteFollow.php:58
|
||||||
msgid "Profile unavailable."
|
msgid "Profile unavailable."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/RemoteFollow.php:60
|
#: src/Module/RemoteFollow.php:64
|
||||||
msgid "Invalid locator"
|
msgid "Invalid locator"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/RemoteFollow.php:67
|
#: src/Module/RemoteFollow.php:71
|
||||||
msgid "The provided profile link doesn't seem to be valid"
|
msgid "The provided profile link doesn't seem to be valid"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/RemoteFollow.php:72
|
#: src/Module/RemoteFollow.php:76
|
||||||
msgid ""
|
msgid ""
|
||||||
"Remote subscription can't be done for your network. Please subscribe "
|
"Remote subscription can't be done for your network. Please subscribe "
|
||||||
"directly on your system."
|
"directly on your system."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/RemoteFollow.php:104
|
#: src/Module/RemoteFollow.php:106
|
||||||
msgid "Friend/Connection Request"
|
msgid "Friend/Connection Request"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/RemoteFollow.php:105
|
#: src/Module/RemoteFollow.php:107
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"Enter your Webfinger address (user@domain.tld) or profile URL here. If this "
|
"Enter your Webfinger address (user@domain.tld) or profile URL here. If this "
|
||||||
|
|
@ -8930,14 +8932,14 @@ msgid ""
|
||||||
"or <strong>%s</strong> directly on your system."
|
"or <strong>%s</strong> directly on your system."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/RemoteFollow.php:106
|
#: src/Module/RemoteFollow.php:108
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"If you are not yet a member of the free social web, <a href=\"%s\">follow "
|
"If you are not yet a member of the free social web, <a href=\"%s\">follow "
|
||||||
"this link to find a public Friendica node and join us today</a>."
|
"this link to find a public Friendica node and join us today</a>."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/RemoteFollow.php:107
|
#: src/Module/RemoteFollow.php:109
|
||||||
msgid "Your Webfinger address or profile URL:"
|
msgid "Your Webfinger address or profile URL:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -10396,12 +10398,12 @@ msgstr ""
|
||||||
msgid "Login failed. Please check your credentials."
|
msgid "Login failed. Please check your credentials."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Security/Authentication.php:372
|
#: src/Security/Authentication.php:350
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Welcome %s"
|
msgid "Welcome %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Security/Authentication.php:373
|
#: src/Security/Authentication.php:351
|
||||||
msgid "Please upload a profile photo."
|
msgid "Please upload a profile photo."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue