From 301072a86cacd2620a08cf07f2cef55dffac3c2f Mon Sep 17 00:00:00 2001 From: redmatrix Date: Fri, 20 Nov 2015 00:15:48 -0800 Subject: issue #85, community tags and file tags lost during edits. This required splitting off communitytags as a separate tag type and is not backward compatible. Community tags on older posts or those federated from redmatrix clones will not be preserved during edits. --- boot.php | 1 + include/conversation.php | 2 +- include/items.php | 21 +- include/taxonomy.php | 21 +- include/text.php | 2 +- include/zot.php | 3 +- mod/channel.php | 2 +- mod/item.php | 23 + mod/network.php | 4 +- mod/search.php | 3 +- mod/search_ac.php | 5 +- mod/tagger.php | 2 +- util/hmessages.po | 3545 +++++++++++++++++++++++----------------------- version.inc | 2 +- 14 files changed, 1855 insertions(+), 1781 deletions(-) diff --git a/boot.php b/boot.php index c74eea512..8d99c300e 100755 --- a/boot.php +++ b/boot.php @@ -423,6 +423,7 @@ define ( 'TERM_SAVEDSEARCH', 6 ); define ( 'TERM_THING', 7 ); define ( 'TERM_BOOKMARK', 8 ); define ( 'TERM_HIERARCHY', 9 ); +define ( 'TERM_COMMUNITYTAG', 10 ); define ( 'TERM_OBJ_POST', 1 ); define ( 'TERM_OBJ_PHOTO', 2 ); diff --git a/include/conversation.php b/include/conversation.php index 6cdbb878f..2c447acbc 100644 --- a/include/conversation.php +++ b/include/conversation.php @@ -674,7 +674,7 @@ function conversation(&$a, $items, $mode, $update, $page_mode = 'traditional', $ $unverified = ''; // $tags=array(); -// $terms = get_terms_oftype($item['term'],array(TERM_HASHTAG,TERM_MENTION,TERM_UNKNOWN)); +// $terms = get_terms_oftype($item['term'],array(TERM_HASHTAG,TERM_MENTION,TERM_UNKNOWN,TERM_COMMUNITYTAG)); // if(count($terms)) // foreach($terms as $tag) // $tags[] = format_term_for_display($tag); diff --git a/include/items.php b/include/items.php index 43bbdda28..7d349c631 100755 --- a/include/items.php +++ b/include/items.php @@ -1408,7 +1408,7 @@ function encode_item_xchan($xchan) { function encode_item_terms($terms,$mirror = false) { $ret = array(); - $allowed_export_terms = array( TERM_UNKNOWN, TERM_HASHTAG, TERM_MENTION, TERM_CATEGORY, TERM_BOOKMARK ); + $allowed_export_terms = array( TERM_UNKNOWN, TERM_HASHTAG, TERM_MENTION, TERM_CATEGORY, TERM_BOOKMARK, TERM_COMMUNITYTAG ); if($mirror) { $allowed_export_terms[] = TERM_PCATEGORY; @@ -1432,7 +1432,7 @@ function encode_item_terms($terms,$mirror = false) { * @return string */ function termtype($t) { - $types = array('unknown','hashtag','mention','category','private_category','file','search','thing','bookmark'); + $types = array('unknown','hashtag','mention','category','private_category','file','search','thing','bookmark', 'hierarchy', 'communitytag'); return(($types[$t]) ? $types[$t] : 'unknown'); } @@ -1478,6 +1478,9 @@ function decode_tags($t) { case 'bookmark': $tag['type'] = TERM_BOOKMARK; break; + case 'communitytag': + $tag['type'] = TERM_COMMUNITYTAG; + break; default: case 'unknown': $tag['type'] = TERM_UNKNOWN; @@ -3032,7 +3035,7 @@ function tag_deliver($uid, $item_id) { if(is_array($j_obj['link'])) $taglink = get_rel_link($j_obj['link'],'alternate'); - store_item_tag($u[0]['channel_id'],$p[0]['id'],TERM_OBJ_POST,TERM_HASHTAG,$j_obj['title'],$j_obj['id']); + store_item_tag($u[0]['channel_id'],$p[0]['id'],TERM_OBJ_POST,TERM_COMMUNITYTAG,$j_obj['title'],$j_obj['id']); $x = q("update item set edited = '%s', received = '%s', changed = '%s' where mid = '%s' and uid = %d", dbesc(datetime_convert()), dbesc(datetime_convert()), @@ -3437,7 +3440,7 @@ function check_item_source($uid, $item) { foreach($words as $word) { if(substr($word,0,1) === '#' && $tags) { foreach($tags as $t) - if(($t['type'] == TERM_HASHTAG) && (($t['term'] === substr($word,1)) || (substr($word,1) === '*'))) + if((($t['type'] == TERM_HASHTAG) || ($t['type'] == TERM_COMMUNITYTAG)) && (($t['term'] === substr($word,1)) || (substr($word,1) === '*'))) return true; } elseif((strpos($word,'/') === 0) && preg_match($word,$text)) @@ -3490,7 +3493,7 @@ function post_is_importable($item,$abook) { continue; if(substr($word,0,1) === '#' && $tags) { foreach($tags as $t) - if(($t['type'] == TERM_HASHTAG) && (($t['term'] === substr($word,1)) || (substr($word,1) === '*'))) + if((($t['type'] == TERM_HASHTAG) || ($t['type'] == TERM_COMMUNITYTAG)) && (($t['term'] === substr($word,1)) || (substr($word,1) === '*'))) return false; } elseif((strpos($word,'/') === 0) && preg_match($word,$text)) @@ -3511,7 +3514,7 @@ function post_is_importable($item,$abook) { continue; if(substr($word,0,1) === '#' && $tags) { foreach($tags as $t) - if(($t['type'] == TERM_HASHTAG) && (($t['term'] === substr($word,1)) || (substr($word,1) === '*'))) + if((($t['type'] == TERM_HASHTAG) || ($t['type'] == TERM_COMMUNITYTAG)) && (($t['term'] === substr($word,1)) || (substr($word,1) === '*'))) return true; } elseif((strpos($word,'/') === 0) && preg_match($word,$text)) @@ -4162,12 +4165,12 @@ function enumerate_permissions($obj) { function item_getfeedtags($item) { - $terms = get_terms_oftype($item['term'],array(TERM_HASHTAG,TERM_MENTION)); + $terms = get_terms_oftype($item['term'],array(TERM_HASHTAG,TERM_MENTION,TERM_COMMUNITYTAG)); $ret = array(); if(count($terms)) { foreach($terms as $term) { - if($term['type'] == TERM_HASHTAG) + if(($term['type'] == TERM_HASHTAG) || ($term['type'] == TERM_COMMUNITYTAG)) $ret[] = array('#',$term['url'],$term['term']); else $ret[] = array('@',$term['url'],$term['term']); @@ -4875,7 +4878,7 @@ function items_fetch($arr,$channel = null,$observer_hash = null,$client_mode = C if($arr['search']) { if(strpos($arr['search'],'#') === 0) - $sql_extra .= term_query('item',substr($arr['search'],1),TERM_HASHTAG); + $sql_extra .= term_query('item',substr($arr['search'],1),TERM_HASHTAG,TERM_COMMUNITYTAG); else $sql_extra .= sprintf(" AND item.body like '%s' ", dbesc(protect_sprintf('%' . $arr['search'] . '%')) diff --git a/include/taxonomy.php b/include/taxonomy.php index e68b9659f..b396d53f1 100644 --- a/include/taxonomy.php +++ b/include/taxonomy.php @@ -26,12 +26,21 @@ function file_tag_file_query($table,$s,$type = 'file') { ); } -function term_query($table,$s,$type = TERM_UNKNOWN) { +function term_query($table,$s,$type = TERM_UNKNOWN, $type2 = '') { - return sprintf(" AND " . (($table) ? dbesc($table) . '.' : '') . "id in (select term.oid from term where term.type = %d and term.term = '%s' and term.uid = " . (($table) ? dbesc($table) . '.' : '') . "uid ) ", - intval($type), - protect_sprintf(dbesc($s)) - ); + if($type2) { + return sprintf(" AND " . (($table) ? dbesc($table) . '.' : '') . "id in (select term.oid from term where term.type in (%d, %d) and term.term = '%s' and term.uid = " . (($table) ? dbesc($table) . '.' : '') . "uid ) ", + intval($type), + intval($type2), + protect_sprintf(dbesc($s)) + ); + } + else { + return sprintf(" AND " . (($table) ? dbesc($table) . '.' : '') . "id in (select term.oid from term where term.type = %d and term.term = '%s' and term.uid = " . (($table) ? dbesc($table) . '.' : '') . "uid ) ", + intval($type), + protect_sprintf(dbesc($s)) + ); + } } @@ -84,7 +93,7 @@ function get_terms_oftype($arr,$type) { function format_term_for_display($term) { $s = ''; - if($term['type'] == TERM_HASHTAG) + if(($term['type'] == TERM_HASHTAG) || ($term['type'] == TERM_COMMUNITYTAG)) $s .= '#'; elseif($term['type'] == TERM_MENTION) $s .= '@'; diff --git a/include/text.php b/include/text.php index 4053c15b2..7c8834fc8 100644 --- a/include/text.php +++ b/include/text.php @@ -1298,7 +1298,7 @@ function format_categories(&$item,$writeable) { function format_hashtags(&$item) { $s = ''; - $terms = get_terms_oftype($item['term'], TERM_HASHTAG); + $terms = get_terms_oftype($item['term'], array(TERM_HASHTAG,TERM_COMMUNITYTAG)); if($terms) { foreach($terms as $t) { $term = htmlspecialchars($t['term'], ENT_COMPAT, 'UTF-8', false) ; diff --git a/include/zot.php b/include/zot.php index 0a1a8ee51..23fb9c4ad 100644 --- a/include/zot.php +++ b/include/zot.php @@ -1933,11 +1933,12 @@ function remove_community_tag($sender, $arr, $uid) { return; } - q("delete from term where uid = %d and oid = %d and otype = %d and type = %d and term = '%s' and url = '%s'", + q("delete from term where uid = %d and oid = %d and otype = %d and type in ( %d, %d ) and term = '%s' and url = '%s'", intval($uid), intval($r[0]['id']), intval(TERM_OBJ_POST), intval(TERM_HASHTAG), + intval(TERM_COMMUNITYTAG), dbesc($i['object']['title']), dbesc(get_rel_link($i['object']['link'],'alternate')) ); diff --git a/mod/channel.php b/mod/channel.php index 0af2666cc..2b9d0ed89 100644 --- a/mod/channel.php +++ b/mod/channel.php @@ -189,7 +189,7 @@ function channel_content(&$a, $update = 0, $load = false) { $sql_extra .= protect_sprintf(term_query('item', $category, TERM_CATEGORY)); } if(x($hashtags)) { - $sql_extra .= protect_sprintf(term_query('item', $hashtags, TERM_HASHTAG)); + $sql_extra .= protect_sprintf(term_query('item', $hashtags, TERM_HASHTAG, TERM_COMMUNITYTAG)); } if($datequery) { diff --git a/mod/item.php b/mod/item.php index 1e39ca9c9..34484eff7 100644 --- a/mod/item.php +++ b/mod/item.php @@ -651,6 +651,29 @@ function item_post(&$a) { } } + if($orig_post) { + // preserve original tags + $t = q("select * from term where oid = %d and otype = %d and uid = %d and type in ( %d, %d, %d )", + intval($orig_post['id']), + intval(TERM_OBJ_POST), + intval($profile_uid), + intval(TERM_UNKNOWN), + intval(TERM_FILE), + intval(TERM_COMMUNITYTAG) + ); + if($t) { + foreach($t as $t1) { + $post_tags[] = array( + 'uid' => $profile_uid, + 'type' => $t1['type'], + 'otype' => TERM_OBJ_POST, + 'term' => $t1['term'], + 'url' => $t1['url'], + ); + } + } + } + $item_unseen = ((local_channel() != $profile_uid) ? 1 : 0); $item_wall = (($post_type === 'wall' || $post_type === 'wall-comment') ? 1 : 0); diff --git a/mod/network.php b/mod/network.php index 53de975a4..9f0604296 100644 --- a/mod/network.php +++ b/mod/network.php @@ -248,7 +248,7 @@ function network_content(&$a, $update = 0, $load = false) { $sql_extra .= protect_sprintf(term_query('item', $category, TERM_CATEGORY)); } if(x($hashtags)) { - $sql_extra .= protect_sprintf(term_query('item', $hashtags, TERM_HASHTAG)); + $sql_extra .= protect_sprintf(term_query('item', $hashtags, TERM_HASHTAG, TERM_COMMUNITYTAG)); } if(! $update) { @@ -313,7 +313,7 @@ function network_content(&$a, $update = 0, $load = false) { if(x($_GET,'search')) { $search = escape_tags($_GET['search']); if(strpos($search,'#') === 0) { - $sql_extra .= term_query('item',substr($search,1),TERM_HASHTAG); + $sql_extra .= term_query('item',substr($search,1),TERM_HASHTAG,TERM_COMMUNITYTAG); } else { $sql_extra .= sprintf(" AND item.body like '%s' ", diff --git a/mod/search.php b/mod/search.php index a0085fca9..555d46f6a 100644 --- a/mod/search.php +++ b/mod/search.php @@ -75,9 +75,10 @@ function search_content(&$a,$update = 0, $load = false) { return $o; if($tag) { - $sql_extra = sprintf(" AND `item`.`id` IN (select `oid` from term where otype = %d and type = %d and term = '%s') ", + $sql_extra = sprintf(" AND `item`.`id` IN (select `oid` from term where otype = %d and type in ( %d , %d) and term = '%s') ", intval(TERM_OBJ_POST), intval(TERM_HASHTAG), + intval(TERM_COMMUNITYTAG), dbesc(protect_sprintf($search)) ); } diff --git a/mod/search_ac.php b/mod/search_ac.php index e42945d43..19c1dc940 100644 --- a/mod/search_ac.php +++ b/mod/search_ac.php @@ -42,8 +42,9 @@ function search_ac_init(&$a){ } } - $r = q("select distinct term, tid, url from term where type = %d $tag_sql_extra group by term order by term asc", - intval(TERM_HASHTAG) + $r = q("select distinct term, tid, url from term where type in ( %d, %d ) $tag_sql_extra group by term order by term asc", + intval(TERM_HASHTAG), + intval(TERM_COMMUNITYTAG) ); if(count($r)) { diff --git a/mod/tagger.php b/mod/tagger.php index 9f9855ed8..27a8a15ea 100644 --- a/mod/tagger.php +++ b/mod/tagger.php @@ -123,7 +123,7 @@ function tagger_content(&$a) { $arr['object'] = $obj; $arr['parent_mid'] = $item['mid']; - store_item_tag($item['uid'],$item['id'],TERM_OBJ_POST,TERM_HASHTAG,$term,$tagid); + store_item_tag($item['uid'],$item['id'],TERM_OBJ_POST,TERM_COMMUNITYTAG,$term,$tagid); $ret = post_activity_item($arr); if($ret['success']) diff --git a/util/hmessages.po b/util/hmessages.po index 7bcb498f9..00610c180 100644 --- a/util/hmessages.po +++ b/util/hmessages.po @@ -6,9 +6,9 @@ #, fuzzy msgid "" msgstr "" -"Project-Id-Version: 2015-11-13.1215\n" +"Project-Id-Version: 2015-11-20.1222\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-11-13 00:03-0800\n" +"POT-Creation-Date: 2015-11-20 00:03-0800\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,1873 +17,1883 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: ../../include/conversation.php:120 ../../include/text.php:1873 -#: ../../mod/like.php:361 ../../mod/tagger.php:43 ../../mod/subthread.php:77 -msgid "photo" +#: ../../include/Import/import_diaspora.php:17 +msgid "No username found in import file." msgstr "" -#: ../../include/conversation.php:123 ../../include/event.php:896 -#: ../../include/text.php:1876 ../../mod/like.php:363 ../../mod/tagger.php:47 -#: ../../mod/events.php:245 -msgid "event" +#: ../../include/Import/import_diaspora.php:42 ../../include/import.php:44 +msgid "Unable to create a unique channel address. Import failed." msgstr "" -#: ../../include/conversation.php:126 ../../mod/like.php:113 -msgid "channel" +#: ../../include/Import/import_diaspora.php:143 ../../mod/import.php:487 +msgid "Import completed." msgstr "" -#: ../../include/conversation.php:148 ../../include/text.php:1879 -#: ../../mod/like.php:361 ../../mod/subthread.php:77 -msgid "status" +#: ../../include/RedDAV/RedBrowser.php:107 +#: ../../include/RedDAV/RedBrowser.php:239 +msgid "parent" msgstr "" -#: ../../include/conversation.php:150 ../../include/text.php:1881 -#: ../../mod/tagger.php:53 -msgid "comment" +#: ../../include/RedDAV/RedBrowser.php:131 ../../include/text.php:2546 +msgid "Collection" msgstr "" -#: ../../include/conversation.php:164 ../../mod/like.php:410 -#, php-format -msgid "%1$s likes %2$s's %3$s" +#: ../../include/RedDAV/RedBrowser.php:134 +msgid "Principal" msgstr "" -#: ../../include/conversation.php:167 ../../mod/like.php:412 -#, php-format -msgid "%1$s doesn't like %2$s's %3$s" +#: ../../include/RedDAV/RedBrowser.php:137 +msgid "Addressbook" msgstr "" -#: ../../include/conversation.php:204 -#, php-format -msgid "%1$s is now connected with %2$s" +#: ../../include/RedDAV/RedBrowser.php:140 +msgid "Calendar" msgstr "" -#: ../../include/conversation.php:239 -#, php-format -msgid "%1$s poked %2$s" +#: ../../include/RedDAV/RedBrowser.php:143 +msgid "Schedule Inbox" msgstr "" -#: ../../include/conversation.php:243 ../../include/text.php:946 -msgid "poked" +#: ../../include/RedDAV/RedBrowser.php:146 +msgid "Schedule Outbox" msgstr "" -#: ../../include/conversation.php:260 ../../mod/mood.php:63 -#, php-format -msgctxt "mood" -msgid "%1$s is %2$s" +#: ../../include/RedDAV/RedBrowser.php:164 ../../include/conversation.php:1026 +#: ../../include/apps.php:360 ../../include/apps.php:415 +#: ../../include/widgets.php:1317 ../../mod/photos.php:759 +#: ../../mod/photos.php:1198 +msgid "Unknown" msgstr "" -#: ../../include/conversation.php:574 ../../mod/photos.php:1063 -msgctxt "title" -msgid "Likes" +#: ../../include/RedDAV/RedBrowser.php:226 ../../include/conversation.php:1628 +#: ../../include/apps.php:135 ../../include/nav.php:93 +#: ../../mod/fbrowser.php:114 +msgid "Files" msgstr "" -#: ../../include/conversation.php:574 ../../mod/photos.php:1063 -msgctxt "title" -msgid "Dislikes" +#: ../../include/RedDAV/RedBrowser.php:227 +msgid "Total" msgstr "" -#: ../../include/conversation.php:575 ../../mod/photos.php:1064 -msgctxt "title" -msgid "Agree" +#: ../../include/RedDAV/RedBrowser.php:229 +msgid "Shared" msgstr "" -#: ../../include/conversation.php:575 ../../mod/photos.php:1064 -msgctxt "title" -msgid "Disagree" +#: ../../include/RedDAV/RedBrowser.php:230 +#: ../../include/RedDAV/RedBrowser.php:303 ../../mod/layouts.php:175 +#: ../../mod/menu.php:114 ../../mod/new_channel.php:121 +#: ../../mod/webpages.php:180 ../../mod/blocks.php:152 +msgid "Create" msgstr "" -#: ../../include/conversation.php:575 ../../mod/photos.php:1064 -msgctxt "title" -msgid "Abstain" +#: ../../include/RedDAV/RedBrowser.php:231 +#: ../../include/RedDAV/RedBrowser.php:305 ../../include/widgets.php:1329 +#: ../../mod/photos.php:784 ../../mod/photos.php:1317 +#: ../../mod/profile_photo.php:450 +msgid "Upload" msgstr "" -#: ../../include/conversation.php:576 ../../mod/photos.php:1065 -msgctxt "title" -msgid "Attending" +#: ../../include/RedDAV/RedBrowser.php:235 ../../mod/admin.php:974 +#: ../../mod/settings.php:586 ../../mod/settings.php:612 +#: ../../mod/sharedwithme.php:95 +msgid "Name" msgstr "" -#: ../../include/conversation.php:576 ../../mod/photos.php:1065 -msgctxt "title" -msgid "Not attending" +#: ../../include/RedDAV/RedBrowser.php:236 +msgid "Type" msgstr "" -#: ../../include/conversation.php:576 ../../mod/photos.php:1065 -msgctxt "title" -msgid "Might attend" +#: ../../include/RedDAV/RedBrowser.php:237 ../../include/text.php:1247 +#: ../../mod/sharedwithme.php:97 +msgid "Size" msgstr "" -#: ../../include/conversation.php:656 ../../include/ItemObject.php:126 -msgid "Select" +#: ../../include/RedDAV/RedBrowser.php:238 ../../mod/sharedwithme.php:98 +msgid "Last Modified" +msgstr "" + +#: ../../include/RedDAV/RedBrowser.php:240 ../../include/menu.php:108 +#: ../../include/page_widgets.php:8 ../../include/page_widgets.php:36 +#: ../../include/apps.php:259 ../../include/ItemObject.php:100 +#: ../../mod/layouts.php:183 ../../mod/editblock.php:135 +#: ../../mod/editpost.php:112 ../../mod/menu.php:108 +#: ../../mod/webpages.php:181 ../../mod/blocks.php:153 ../../mod/thing.php:257 +#: ../../mod/settings.php:646 ../../mod/connections.php:235 +#: ../../mod/connections.php:248 ../../mod/connections.php:267 +#: ../../mod/editlayout.php:134 ../../mod/editwebpage.php:176 +msgid "Edit" msgstr "" -#: ../../include/conversation.php:657 ../../include/RedDAV/RedBrowser.php:241 +#: ../../include/RedDAV/RedBrowser.php:241 ../../include/conversation.php:657 #: ../../include/apps.php:260 ../../include/ItemObject.php:120 #: ../../mod/connedit.php:551 ../../mod/photos.php:1129 -#: ../../mod/editblock.php:181 ../../mod/admin.php:808 ../../mod/admin.php:967 +#: ../../mod/editblock.php:181 ../../mod/admin.php:809 ../../mod/admin.php:968 #: ../../mod/webpages.php:183 ../../mod/blocks.php:155 ../../mod/thing.php:258 #: ../../mod/settings.php:647 ../../mod/editlayout.php:179 #: ../../mod/editwebpage.php:223 ../../mod/group.php:173 msgid "Delete" msgstr "" -#: ../../include/conversation.php:664 ../../include/ItemObject.php:89 -msgid "Private Message" +#: ../../include/RedDAV/RedBrowser.php:282 +#, php-format +msgid "You are using %1$s of your available file storage." msgstr "" -#: ../../include/conversation.php:671 ../../include/ItemObject.php:227 -msgid "Message signature validated" +#: ../../include/RedDAV/RedBrowser.php:287 +#, php-format +msgid "You are using %1$s of %2$s available file storage. (%3$s%)" msgstr "" -#: ../../include/conversation.php:672 ../../include/ItemObject.php:228 -msgid "Message signature incorrect" +#: ../../include/RedDAV/RedBrowser.php:299 +msgid "WARNING:" msgstr "" -#: ../../include/conversation.php:691 -#, php-format -msgid "View %s's profile @ %s" +#: ../../include/RedDAV/RedBrowser.php:302 +msgid "Create new folder" msgstr "" -#: ../../include/conversation.php:709 -msgid "Categories:" +#: ../../include/RedDAV/RedBrowser.php:304 +msgid "Upload file" msgstr "" -#: ../../include/conversation.php:710 -msgid "Filed under:" +#: ../../include/permissions.php:26 +msgid "Can view my normal stream and posts" msgstr "" -#: ../../include/conversation.php:718 ../../include/ItemObject.php:321 -#, php-format -msgid "from %s" +#: ../../include/permissions.php:27 +msgid "Can view my default channel profile" msgstr "" -#: ../../include/conversation.php:721 ../../include/ItemObject.php:324 -#, php-format -msgid "last edited: %s" +#: ../../include/permissions.php:28 +msgid "Can view my connections" msgstr "" -#: ../../include/conversation.php:722 ../../include/ItemObject.php:325 -#, php-format -msgid "Expires: %s" +#: ../../include/permissions.php:29 +msgid "Can view my file storage and photos" msgstr "" -#: ../../include/conversation.php:737 -msgid "View in context" +#: ../../include/permissions.php:30 +msgid "Can view my webpages" msgstr "" -#: ../../include/conversation.php:739 ../../include/conversation.php:1226 -#: ../../include/ItemObject.php:375 ../../mod/photos.php:1029 -#: ../../mod/editblock.php:150 ../../mod/editpost.php:129 -#: ../../mod/editlayout.php:148 ../../mod/editwebpage.php:190 -msgid "Please wait" +#: ../../include/permissions.php:33 +msgid "Can send me their channel stream and posts" msgstr "" -#: ../../include/conversation.php:849 -msgid "remove" +#: ../../include/permissions.php:34 +msgid "Can post on my channel page (\"wall\")" msgstr "" -#: ../../include/conversation.php:853 ../../include/nav.php:241 -msgid "Loading..." +#: ../../include/permissions.php:35 +msgid "Can comment on or like my posts" msgstr "" -#: ../../include/conversation.php:854 -msgid "Delete Selected Items" +#: ../../include/permissions.php:36 +msgid "Can send me private mail messages" msgstr "" -#: ../../include/conversation.php:945 -msgid "View Source" +#: ../../include/permissions.php:37 +msgid "Can like/dislike stuff" msgstr "" -#: ../../include/conversation.php:946 -msgid "Follow Thread" +#: ../../include/permissions.php:37 +msgid "Profiles and things other than posts/comments" msgstr "" -#: ../../include/conversation.php:947 -msgid "Stop Following" +#: ../../include/permissions.php:39 +msgid "Can forward to all my channel contacts via post @mentions" msgstr "" -#: ../../include/conversation.php:948 -msgid "View Status" +#: ../../include/permissions.php:39 +msgid "Advanced - useful for creating group forum channels" msgstr "" -#: ../../include/conversation.php:949 ../../include/nav.php:86 -#: ../../mod/connedit.php:498 -msgid "View Profile" +#: ../../include/permissions.php:40 +msgid "Can chat with me (when available)" msgstr "" -#: ../../include/conversation.php:950 -msgid "View Photos" +#: ../../include/permissions.php:41 +msgid "Can write to my file storage and photos" msgstr "" -#: ../../include/conversation.php:951 -msgid "Activity/Posts" +#: ../../include/permissions.php:42 +msgid "Can edit my webpages" msgstr "" -#: ../../include/conversation.php:952 ../../include/Contact.php:101 -#: ../../include/identity.php:952 ../../include/widgets.php:136 -#: ../../include/widgets.php:174 ../../mod/directory.php:318 -#: ../../mod/match.php:64 ../../mod/suggest.php:52 -msgid "Connect" +#: ../../include/permissions.php:44 +msgid "Can source my public posts in derived channels" msgstr "" -#: ../../include/conversation.php:953 -msgid "Edit Connection" +#: ../../include/permissions.php:44 +msgid "Somewhat advanced - very useful in open communities" msgstr "" -#: ../../include/conversation.php:954 -msgid "Send PM" +#: ../../include/permissions.php:46 +msgid "Can administer my channel resources" msgstr "" -#: ../../include/conversation.php:955 ../../include/apps.php:145 -msgid "Poke" +#: ../../include/permissions.php:46 +msgid "Extremely advanced. Leave this alone unless you know what you are doing" msgstr "" -#: ../../include/conversation.php:1026 ../../include/RedDAV/RedBrowser.php:164 -#: ../../include/apps.php:360 ../../include/apps.php:415 -#: ../../include/widgets.php:1281 ../../mod/photos.php:759 -#: ../../mod/photos.php:1198 -msgid "Unknown" +#: ../../include/permissions.php:867 +msgid "Social Networking" msgstr "" -#: ../../include/conversation.php:1069 -#, php-format -msgid "%s likes this." +#: ../../include/permissions.php:867 ../../include/permissions.php:868 +#: ../../include/permissions.php:869 +msgid "Mostly Public" msgstr "" -#: ../../include/conversation.php:1069 -#, php-format -msgid "%s doesn't like this." +#: ../../include/permissions.php:867 ../../include/permissions.php:868 +#: ../../include/permissions.php:869 +msgid "Restricted" msgstr "" -#: ../../include/conversation.php:1073 -#, php-format -msgid "%2$d people like this." -msgid_plural "%2$d people like this." -msgstr[0] "" -msgstr[1] "" - -#: ../../include/conversation.php:1075 -#, php-format -msgid "%2$d people don't like this." -msgid_plural "%2$d people don't like this." -msgstr[0] "" -msgstr[1] "" - -#: ../../include/conversation.php:1081 -msgid "and" +#: ../../include/permissions.php:867 ../../include/permissions.php:868 +msgid "Private" msgstr "" -#: ../../include/conversation.php:1084 -#, php-format -msgid ", and %d other people" -msgid_plural ", and %d other people" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/conversation.php:1085 -#, php-format -msgid "%s like this." +#: ../../include/permissions.php:868 +msgid "Community Forum" msgstr "" -#: ../../include/conversation.php:1085 -#, php-format -msgid "%s don't like this." +#: ../../include/permissions.php:869 +msgid "Feed Republish" msgstr "" -#: ../../include/conversation.php:1153 -msgid "Visible to everybody" +#: ../../include/permissions.php:870 +msgid "Special Purpose" msgstr "" -#: ../../include/conversation.php:1154 ../../mod/mail.php:194 -#: ../../mod/mail.php:308 -msgid "Please enter a link URL:" +#: ../../include/permissions.php:870 +msgid "Celebrity/Soapbox" msgstr "" -#: ../../include/conversation.php:1155 -msgid "Please enter a video link/URL:" +#: ../../include/permissions.php:870 +msgid "Group Repository" msgstr "" -#: ../../include/conversation.php:1156 -msgid "Please enter an audio link/URL:" +#: ../../include/permissions.php:871 ../../include/profile_selectors.php:6 +#: ../../include/profile_selectors.php:23 +#: ../../include/profile_selectors.php:61 +#: ../../include/profile_selectors.php:97 +msgid "Other" msgstr "" -#: ../../include/conversation.php:1157 -msgid "Tag term:" +#: ../../include/permissions.php:871 +msgid "Custom/Expert Mode" msgstr "" -#: ../../include/conversation.php:1158 ../../mod/filer.php:48 -msgid "Save to Folder:" +#: ../../include/chat.php:23 +msgid "Missing room name" msgstr "" -#: ../../include/conversation.php:1159 -msgid "Where are you right now?" +#: ../../include/chat.php:32 +msgid "Duplicate room name" msgstr "" -#: ../../include/conversation.php:1160 ../../mod/editpost.php:54 -#: ../../mod/mail.php:195 ../../mod/mail.php:309 -msgid "Expires YYYY-MM-DD HH:MM" +#: ../../include/chat.php:82 ../../include/chat.php:90 +msgid "Invalid room specifier." msgstr "" -#: ../../include/conversation.php:1168 ../../include/page_widgets.php:40 -#: ../../include/ItemObject.php:692 ../../mod/photos.php:1049 -#: ../../mod/editblock.php:171 ../../mod/editpost.php:149 -#: ../../mod/events.php:707 ../../mod/webpages.php:188 -#: ../../mod/editwebpage.php:212 -msgid "Preview" +#: ../../include/chat.php:122 +msgid "Room not found." msgstr "" -#: ../../include/conversation.php:1191 ../../mod/layouts.php:184 -#: ../../mod/photos.php:1028 ../../mod/webpages.php:182 -#: ../../mod/blocks.php:154 -msgid "Share" +#: ../../include/chat.php:133 ../../include/items.php:4396 +#: ../../include/photos.php:29 ../../include/attach.php:140 +#: ../../include/attach.php:188 ../../include/attach.php:251 +#: ../../include/attach.php:265 ../../include/attach.php:272 +#: ../../include/attach.php:337 ../../include/attach.php:351 +#: ../../include/attach.php:358 ../../include/attach.php:436 +#: ../../include/attach.php:884 ../../include/attach.php:955 +#: ../../include/attach.php:1107 ../../mod/achievements.php:30 +#: ../../mod/fsuggest.php:78 ../../mod/authtest.php:13 +#: ../../mod/bookmarks.php:48 ../../mod/block.php:22 ../../mod/block.php:72 +#: ../../mod/id.php:71 ../../mod/like.php:177 ../../mod/common.php:35 +#: ../../mod/mitem.php:111 ../../mod/connedit.php:352 ../../mod/mood.php:112 +#: ../../mod/filestorage.php:18 ../../mod/filestorage.php:73 +#: ../../mod/filestorage.php:88 ../../mod/filestorage.php:115 +#: ../../mod/layouts.php:69 ../../mod/layouts.php:76 ../../mod/layouts.php:87 +#: ../../mod/poke.php:133 ../../mod/network.php:12 ../../mod/chat.php:94 +#: ../../mod/chat.php:99 ../../mod/rate.php:111 ../../mod/photos.php:70 +#: ../../mod/editblock.php:65 ../../mod/editpost.php:13 +#: ../../mod/appman.php:66 ../../mod/profile.php:64 ../../mod/profile.php:72 +#: ../../mod/menu.php:74 ../../mod/page.php:31 ../../mod/page.php:86 +#: ../../mod/new_channel.php:68 ../../mod/new_channel.php:99 +#: ../../mod/notifications.php:66 ../../mod/pdledit.php:21 +#: ../../mod/events.php:256 ../../mod/profile_photo.php:338 +#: ../../mod/profile_photo.php:351 ../../mod/item.php:205 +#: ../../mod/item.php:213 ../../mod/item.php:1049 ../../mod/message.php:16 +#: ../../mod/webpages.php:69 ../../mod/register.php:72 ../../mod/blocks.php:69 +#: ../../mod/blocks.php:76 ../../mod/service_limits.php:7 +#: ../../mod/sources.php:66 ../../mod/regmod.php:17 ../../mod/channel.php:100 +#: ../../mod/channel.php:214 ../../mod/channel.php:254 ../../mod/thing.php:271 +#: ../../mod/thing.php:291 ../../mod/thing.php:328 ../../mod/invite.php:13 +#: ../../mod/invite.php:104 ../../mod/mail.php:118 ../../mod/viewsrc.php:14 +#: ../../mod/settings.php:566 ../../mod/manage.php:6 ../../mod/api.php:26 +#: ../../mod/api.php:31 ../../mod/connections.php:29 +#: ../../mod/editlayout.php:63 ../../mod/editlayout.php:87 +#: ../../mod/editwebpage.php:64 ../../mod/editwebpage.php:86 +#: ../../mod/editwebpage.php:101 ../../mod/editwebpage.php:125 +#: ../../mod/group.php:9 ../../mod/viewconnections.php:22 +#: ../../mod/viewconnections.php:27 ../../mod/locs.php:83 +#: ../../mod/setup.php:227 ../../mod/sharedwithme.php:7 +#: ../../mod/suggest.php:26 ../../mod/profiles.php:188 +#: ../../mod/profiles.php:576 ../../index.php:178 ../../index.php:361 +msgid "Permission denied." msgstr "" -#: ../../include/conversation.php:1193 -msgid "Page link name" +#: ../../include/chat.php:143 +msgid "Room is full" msgstr "" -#: ../../include/conversation.php:1196 -msgid "Post as" +#: ../../include/datetime.php:48 +msgid "Miscellaneous" msgstr "" -#: ../../include/conversation.php:1198 ../../include/ItemObject.php:684 -#: ../../mod/editblock.php:136 ../../mod/editpost.php:113 -#: ../../mod/editlayout.php:135 ../../mod/editwebpage.php:177 -msgid "Bold" +#: ../../include/datetime.php:132 +msgid "YYYY-MM-DD or MM-DD" msgstr "" -#: ../../include/conversation.php:1199 ../../include/ItemObject.php:685 -#: ../../mod/editblock.php:137 ../../mod/editpost.php:114 -#: ../../mod/editlayout.php:136 ../../mod/editwebpage.php:178 -msgid "Italic" +#: ../../include/datetime.php:235 ../../mod/appman.php:91 +#: ../../mod/appman.php:92 ../../mod/events.php:689 +msgid "Required" msgstr "" -#: ../../include/conversation.php:1200 ../../include/ItemObject.php:686 -#: ../../mod/editblock.php:138 ../../mod/editpost.php:115 -#: ../../mod/editlayout.php:137 ../../mod/editwebpage.php:179 -msgid "Underline" +#: ../../include/datetime.php:262 ../../boot.php:2289 +msgid "never" msgstr "" -#: ../../include/conversation.php:1201 ../../include/ItemObject.php:687 -#: ../../mod/editblock.php:139 ../../mod/editpost.php:116 -#: ../../mod/editlayout.php:138 ../../mod/editwebpage.php:180 -msgid "Quote" +#: ../../include/datetime.php:268 +msgid "less than a second ago" msgstr "" -#: ../../include/conversation.php:1202 ../../include/ItemObject.php:688 -#: ../../mod/editblock.php:140 ../../mod/editpost.php:117 -#: ../../mod/editlayout.php:139 ../../mod/editwebpage.php:181 -msgid "Code" +#: ../../include/datetime.php:271 +msgid "year" msgstr "" -#: ../../include/conversation.php:1203 ../../mod/editblock.php:142 -#: ../../mod/editpost.php:118 ../../mod/editlayout.php:140 -#: ../../mod/editwebpage.php:182 -msgid "Upload photo" +#: ../../include/datetime.php:271 +msgid "years" msgstr "" -#: ../../include/conversation.php:1204 -msgid "upload photo" +#: ../../include/datetime.php:272 +msgid "month" msgstr "" -#: ../../include/conversation.php:1205 ../../mod/editblock.php:143 -#: ../../mod/editpost.php:119 ../../mod/mail.php:240 ../../mod/mail.php:369 -#: ../../mod/editlayout.php:141 ../../mod/editwebpage.php:183 -msgid "Attach file" +#: ../../include/datetime.php:272 +msgid "months" msgstr "" -#: ../../include/conversation.php:1206 -msgid "attach file" +#: ../../include/datetime.php:273 +msgid "week" msgstr "" -#: ../../include/conversation.php:1207 ../../mod/editblock.php:144 -#: ../../mod/editpost.php:120 ../../mod/mail.php:241 ../../mod/mail.php:370 -#: ../../mod/editlayout.php:142 ../../mod/editwebpage.php:184 -msgid "Insert web link" +#: ../../include/datetime.php:273 +msgid "weeks" msgstr "" -#: ../../include/conversation.php:1208 -msgid "web link" +#: ../../include/datetime.php:274 +msgid "day" msgstr "" -#: ../../include/conversation.php:1209 -msgid "Insert video link" +#: ../../include/datetime.php:274 +msgid "days" msgstr "" -#: ../../include/conversation.php:1210 -msgid "video link" +#: ../../include/datetime.php:275 +msgid "hour" msgstr "" -#: ../../include/conversation.php:1211 -msgid "Insert audio link" +#: ../../include/datetime.php:275 +msgid "hours" msgstr "" -#: ../../include/conversation.php:1212 -msgid "audio link" +#: ../../include/datetime.php:276 +msgid "minute" msgstr "" -#: ../../include/conversation.php:1213 ../../mod/editblock.php:148 -#: ../../mod/editpost.php:124 ../../mod/editlayout.php:146 -#: ../../mod/editwebpage.php:188 -msgid "Set your location" +#: ../../include/datetime.php:276 +msgid "minutes" msgstr "" -#: ../../include/conversation.php:1214 -msgid "set location" +#: ../../include/datetime.php:277 +msgid "second" msgstr "" -#: ../../include/conversation.php:1215 ../../mod/editpost.php:126 -msgid "Toggle voting" +#: ../../include/datetime.php:277 +msgid "seconds" msgstr "" -#: ../../include/conversation.php:1218 ../../mod/editblock.php:149 -#: ../../mod/editpost.php:125 ../../mod/editlayout.php:147 -#: ../../mod/editwebpage.php:189 -msgid "Clear browser location" +#: ../../include/datetime.php:285 +#, php-format +msgctxt "e.g. 22 hours ago, 1 minute ago" +msgid "%1$d %2$s ago" msgstr "" -#: ../../include/conversation.php:1219 -msgid "clear location" +#: ../../include/datetime.php:519 +#, php-format +msgid "%1$s's birthday" msgstr "" -#: ../../include/conversation.php:1221 ../../mod/editblock.php:162 -#: ../../mod/editpost.php:141 ../../mod/editwebpage.php:205 -msgid "Title (optional)" +#: ../../include/datetime.php:520 +#, php-format +msgid "Happy Birthday %1$s" msgstr "" -#: ../../include/conversation.php:1225 ../../mod/editblock.php:165 -#: ../../mod/editpost.php:143 ../../mod/editlayout.php:163 -#: ../../mod/editwebpage.php:207 -msgid "Categories (optional, comma-separated list)" +#: ../../include/features.php:38 +msgid "General Features" msgstr "" -#: ../../include/conversation.php:1227 ../../mod/editblock.php:151 -#: ../../mod/editpost.php:130 ../../mod/editlayout.php:149 -#: ../../mod/editwebpage.php:191 -msgid "Permission settings" +#: ../../include/features.php:40 +msgid "Content Expiration" msgstr "" -#: ../../include/conversation.php:1228 -msgid "permissions" +#: ../../include/features.php:40 +msgid "Remove posts/comments and/or private messages at a future time" msgstr "" -#: ../../include/conversation.php:1236 ../../mod/editblock.php:159 -#: ../../mod/editpost.php:138 ../../mod/editlayout.php:156 -#: ../../mod/editwebpage.php:200 -msgid "Public post" +#: ../../include/features.php:41 +msgid "Multiple Profiles" msgstr "" -#: ../../include/conversation.php:1238 ../../mod/editblock.php:166 -#: ../../mod/editpost.php:144 ../../mod/editlayout.php:164 -#: ../../mod/editwebpage.php:208 -msgid "Example: bob@example.com, mary@example.com" +#: ../../include/features.php:41 +msgid "Ability to create multiple profiles" msgstr "" -#: ../../include/conversation.php:1251 ../../mod/editblock.php:176 -#: ../../mod/editpost.php:155 ../../mod/mail.php:245 ../../mod/mail.php:374 -#: ../../mod/editlayout.php:173 ../../mod/editwebpage.php:217 -msgid "Set expiration date" +#: ../../include/features.php:42 +msgid "Advanced Profiles" msgstr "" -#: ../../include/conversation.php:1254 -msgid "Set publish date" +#: ../../include/features.php:42 +msgid "Additional profile sections and selections" msgstr "" -#: ../../include/conversation.php:1256 ../../include/ItemObject.php:695 -#: ../../mod/editpost.php:157 ../../mod/mail.php:247 ../../mod/mail.php:376 -msgid "Encrypt text" +#: ../../include/features.php:43 +msgid "Profile Import/Export" msgstr "" -#: ../../include/conversation.php:1258 ../../mod/editpost.php:159 -#: ../../mod/events.php:691 -msgid "OK" +#: ../../include/features.php:43 +msgid "Save and load profile details across sites/channels" msgstr "" -#: ../../include/conversation.php:1259 ../../mod/fbrowser.php:82 -#: ../../mod/fbrowser.php:117 ../../mod/editpost.php:160 -#: ../../mod/events.php:690 ../../mod/tagrm.php:11 ../../mod/tagrm.php:134 -#: ../../mod/settings.php:585 ../../mod/settings.php:611 -msgid "Cancel" +#: ../../include/features.php:44 +msgid "Web Pages" msgstr "" -#: ../../include/conversation.php:1502 -msgid "Discover" +#: ../../include/features.php:44 +msgid "Provide managed web pages on your channel" msgstr "" -#: ../../include/conversation.php:1505 -msgid "Imported public streams" +#: ../../include/features.php:45 +msgid "Private Notes" msgstr "" -#: ../../include/conversation.php:1510 -msgid "Commented Order" +#: ../../include/features.php:45 +msgid "Enables a tool to store notes and reminders" msgstr "" -#: ../../include/conversation.php:1513 -msgid "Sort by Comment Date" +#: ../../include/features.php:46 +msgid "Navigation Channel Select" msgstr "" -#: ../../include/conversation.php:1517 -msgid "Posted Order" +#: ../../include/features.php:46 +msgid "Change channels directly from within the navigation dropdown menu" msgstr "" -#: ../../include/conversation.php:1520 -msgid "Sort by Post Date" +#: ../../include/features.php:47 +msgid "Photo Location" msgstr "" -#: ../../include/conversation.php:1525 ../../include/widgets.php:94 -msgid "Personal" +#: ../../include/features.php:47 +msgid "If location data is available on uploaded photos, link this to a map." msgstr "" -#: ../../include/conversation.php:1528 -msgid "Posts that mention or involve you" +#: ../../include/features.php:49 +msgid "Expert Mode" msgstr "" -#: ../../include/conversation.php:1534 ../../mod/menu.php:112 -#: ../../mod/connections.php:72 ../../mod/connections.php:82 -msgid "New" +#: ../../include/features.php:49 +msgid "Enable Expert Mode to provide advanced configuration options" msgstr "" -#: ../../include/conversation.php:1537 -msgid "Activity Stream - by date" +#: ../../include/features.php:50 +msgid "Premium Channel" msgstr "" -#: ../../include/conversation.php:1543 -msgid "Starred" +#: ../../include/features.php:50 +msgid "" +"Allows you to set restrictions and terms on those that connect with your " +"channel" msgstr "" -#: ../../include/conversation.php:1546 -msgid "Favourite Posts" +#: ../../include/features.php:55 +msgid "Post Composition Features" msgstr "" -#: ../../include/conversation.php:1553 -msgid "Spam" +#: ../../include/features.php:57 +msgid "Use Markdown" msgstr "" -#: ../../include/conversation.php:1556 -msgid "Posts flagged as SPAM" +#: ../../include/features.php:57 +msgid "Allow use of \"Markdown\" to format posts" msgstr "" -#: ../../include/conversation.php:1600 ../../mod/admin.php:972 -msgid "Channel" +#: ../../include/features.php:58 +msgid "Large Photos" msgstr "" -#: ../../include/conversation.php:1603 -msgid "Status Messages and Posts" +#: ../../include/features.php:58 +msgid "" +"Include large (1024px) photo thumbnails in posts. If not enabled, use small " +"(640px) photo thumbnails" msgstr "" -#: ../../include/conversation.php:1612 -msgid "About" +#: ../../include/features.php:59 ../../include/widgets.php:546 +#: ../../mod/sources.php:88 +msgid "Channel Sources" msgstr "" -#: ../../include/conversation.php:1615 -msgid "Profile Details" +#: ../../include/features.php:59 +msgid "Automatically import channel content from other channels or feeds" msgstr "" -#: ../../include/conversation.php:1621 ../../include/apps.php:139 -#: ../../include/nav.php:92 ../../mod/fbrowser.php:25 -msgid "Photos" +#: ../../include/features.php:60 +msgid "Even More Encryption" msgstr "" -#: ../../include/conversation.php:1624 ../../include/photos.php:483 -msgid "Photo Albums" +#: ../../include/features.php:60 +msgid "" +"Allow optional encryption of content end-to-end with a shared secret key" msgstr "" -#: ../../include/conversation.php:1628 ../../include/RedDAV/RedBrowser.php:226 -#: ../../include/apps.php:135 ../../include/nav.php:93 -#: ../../mod/fbrowser.php:114 -msgid "Files" +#: ../../include/features.php:61 +msgid "Enable Voting Tools" msgstr "" -#: ../../include/conversation.php:1631 -msgid "Files and Storage" +#: ../../include/features.php:61 +msgid "Provide a class of post which others can vote on" msgstr "" -#: ../../include/conversation.php:1641 ../../include/conversation.php:1644 -msgid "Chatrooms" +#: ../../include/features.php:62 +msgid "Delayed Posting" msgstr "" -#: ../../include/conversation.php:1654 ../../include/apps.php:129 -#: ../../include/nav.php:103 -msgid "Bookmarks" +#: ../../include/features.php:62 +msgid "Allow posts to be published at a later date" msgstr "" -#: ../../include/conversation.php:1657 -msgid "Saved Bookmarks" +#: ../../include/features.php:63 +msgid "Suppress Duplicate Posts/Comments" msgstr "" -#: ../../include/conversation.php:1664 ../../include/apps.php:136 -#: ../../include/nav.php:107 ../../mod/webpages.php:178 -msgid "Webpages" +#: ../../include/features.php:63 +msgid "" +"Prevent posts with identical content to be published with less than two " +"minutes in between submissions." msgstr "" -#: ../../include/conversation.php:1667 -msgid "Manage Webpages" +#: ../../include/features.php:69 +msgid "Network and Stream Filtering" msgstr "" -#: ../../include/conversation.php:1696 ../../include/ItemObject.php:175 -#: ../../include/ItemObject.php:187 ../../mod/photos.php:1082 -#: ../../mod/photos.php:1094 -msgid "View all" +#: ../../include/features.php:70 +msgid "Search by Date" msgstr "" -#: ../../include/conversation.php:1720 ../../include/ItemObject.php:179 -#: ../../include/identity.php:1263 ../../include/taxonomy.php:403 -#: ../../mod/photos.php:1086 -msgctxt "noun" -msgid "Like" -msgid_plural "Likes" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/conversation.php:1723 ../../include/ItemObject.php:184 -#: ../../mod/photos.php:1091 -msgctxt "noun" -msgid "Dislike" -msgid_plural "Dislikes" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/conversation.php:1726 -msgctxt "noun" -msgid "Attending" -msgid_plural "Attending" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/conversation.php:1729 -msgctxt "noun" -msgid "Not Attending" -msgid_plural "Not Attending" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/conversation.php:1732 -msgctxt "noun" -msgid "Undecided" -msgid_plural "Undecided" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/conversation.php:1735 -msgctxt "noun" -msgid "Agree" -msgid_plural "Agrees" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/conversation.php:1738 -msgctxt "noun" -msgid "Disagree" -msgid_plural "Disagrees" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/conversation.php:1741 -msgctxt "noun" -msgid "Abstain" -msgid_plural "Abstains" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/Import/import_diaspora.php:17 -msgid "No username found in import file." +#: ../../include/features.php:70 +msgid "Ability to select posts by date ranges" msgstr "" -#: ../../include/Import/import_diaspora.php:42 ../../include/import.php:44 -msgid "Unable to create a unique channel address. Import failed." +#: ../../include/features.php:71 +msgid "Collections Filter" msgstr "" -#: ../../include/Import/import_diaspora.php:143 ../../mod/import.php:487 -msgid "Import completed." +#: ../../include/features.php:71 +msgid "Enable widget to display Network posts only from selected collections" msgstr "" -#: ../../include/RedDAV/RedBrowser.php:107 -#: ../../include/RedDAV/RedBrowser.php:239 -msgid "parent" +#: ../../include/features.php:72 ../../include/widgets.php:274 +msgid "Saved Searches" msgstr "" -#: ../../include/RedDAV/RedBrowser.php:131 ../../include/text.php:2539 -msgid "Collection" +#: ../../include/features.php:72 +msgid "Save search terms for re-use" msgstr "" -#: ../../include/RedDAV/RedBrowser.php:134 -msgid "Principal" +#: ../../include/features.php:73 +msgid "Network Personal Tab" msgstr "" -#: ../../include/RedDAV/RedBrowser.php:137 -msgid "Addressbook" +#: ../../include/features.php:73 +msgid "Enable tab to display only Network posts that you've interacted on" msgstr "" -#: ../../include/RedDAV/RedBrowser.php:140 -msgid "Calendar" +#: ../../include/features.php:74 +msgid "Network New Tab" msgstr "" -#: ../../include/RedDAV/RedBrowser.php:143 -msgid "Schedule Inbox" +#: ../../include/features.php:74 +msgid "Enable tab to display all new Network activity" msgstr "" -#: ../../include/RedDAV/RedBrowser.php:146 -msgid "Schedule Outbox" +#: ../../include/features.php:75 +msgid "Affinity Tool" msgstr "" -#: ../../include/RedDAV/RedBrowser.php:227 -msgid "Total" +#: ../../include/features.php:75 +msgid "Filter stream activity by depth of relationships" msgstr "" -#: ../../include/RedDAV/RedBrowser.php:229 -msgid "Shared" +#: ../../include/features.php:76 +msgid "Connection Filtering" msgstr "" -#: ../../include/RedDAV/RedBrowser.php:230 -#: ../../include/RedDAV/RedBrowser.php:303 ../../mod/layouts.php:175 -#: ../../mod/menu.php:114 ../../mod/new_channel.php:121 -#: ../../mod/webpages.php:180 ../../mod/blocks.php:152 -msgid "Create" +#: ../../include/features.php:76 +msgid "Filter incoming posts from connections based on keywords/content" msgstr "" -#: ../../include/RedDAV/RedBrowser.php:231 -#: ../../include/RedDAV/RedBrowser.php:305 ../../include/widgets.php:1293 -#: ../../mod/photos.php:784 ../../mod/photos.php:1317 -#: ../../mod/profile_photo.php:450 -msgid "Upload" +#: ../../include/features.php:77 +msgid "Suggest Channels" msgstr "" -#: ../../include/RedDAV/RedBrowser.php:235 ../../mod/admin.php:973 -#: ../../mod/settings.php:586 ../../mod/settings.php:612 -#: ../../mod/sharedwithme.php:95 -msgid "Name" +#: ../../include/features.php:77 +msgid "Show channel suggestions" msgstr "" -#: ../../include/RedDAV/RedBrowser.php:236 -msgid "Type" +#: ../../include/features.php:82 +msgid "Post/Comment Tools" msgstr "" -#: ../../include/RedDAV/RedBrowser.php:237 ../../include/text.php:1240 -#: ../../mod/sharedwithme.php:97 -msgid "Size" +#: ../../include/features.php:83 +msgid "Tagging" msgstr "" -#: ../../include/RedDAV/RedBrowser.php:238 ../../mod/sharedwithme.php:98 -msgid "Last Modified" +#: ../../include/features.php:83 +msgid "Ability to tag existing posts" msgstr "" -#: ../../include/RedDAV/RedBrowser.php:240 ../../include/menu.php:108 -#: ../../include/page_widgets.php:8 ../../include/page_widgets.php:36 -#: ../../include/apps.php:259 ../../include/ItemObject.php:100 -#: ../../mod/layouts.php:183 ../../mod/editblock.php:135 -#: ../../mod/editpost.php:112 ../../mod/menu.php:108 -#: ../../mod/webpages.php:181 ../../mod/blocks.php:153 ../../mod/thing.php:257 -#: ../../mod/settings.php:646 ../../mod/connections.php:235 -#: ../../mod/connections.php:248 ../../mod/connections.php:267 -#: ../../mod/editlayout.php:134 ../../mod/editwebpage.php:176 -msgid "Edit" +#: ../../include/features.php:84 +msgid "Post Categories" msgstr "" -#: ../../include/RedDAV/RedBrowser.php:282 -#, php-format -msgid "You are using %1$s of your available file storage." +#: ../../include/features.php:84 +msgid "Add categories to your posts" msgstr "" -#: ../../include/RedDAV/RedBrowser.php:287 -#, php-format -msgid "You are using %1$s of %2$s available file storage. (%3$s%)" +#: ../../include/features.php:85 ../../include/contact_widgets.php:57 +#: ../../include/widgets.php:304 +msgid "Saved Folders" msgstr "" -#: ../../include/RedDAV/RedBrowser.php:299 -msgid "WARNING:" +#: ../../include/features.php:85 +msgid "Ability to file posts under folders" msgstr "" -#: ../../include/RedDAV/RedBrowser.php:302 -msgid "Create new folder" +#: ../../include/features.php:86 +msgid "Dislike Posts" msgstr "" -#: ../../include/RedDAV/RedBrowser.php:304 -msgid "Upload file" +#: ../../include/features.php:86 +msgid "Ability to dislike posts/comments" msgstr "" -#: ../../include/permissions.php:26 -msgid "Can view my normal stream and posts" +#: ../../include/features.php:87 +msgid "Star Posts" msgstr "" -#: ../../include/permissions.php:27 -msgid "Can view my default channel profile" +#: ../../include/features.php:87 +msgid "Ability to mark special posts with a star indicator" msgstr "" -#: ../../include/permissions.php:28 -msgid "Can view my connections" +#: ../../include/features.php:88 +msgid "Tag Cloud" msgstr "" -#: ../../include/permissions.php:29 -msgid "Can view my file storage and photos" +#: ../../include/features.php:88 +msgid "Provide a personal tag cloud on your channel page" msgstr "" -#: ../../include/permissions.php:30 -msgid "Can view my webpages" +#: ../../include/comanche.php:34 ../../mod/admin.php:351 +msgid "Default" msgstr "" -#: ../../include/permissions.php:33 -msgid "Can send me their channel stream and posts" +#: ../../include/js_strings.php:5 +msgid "Delete this item?" msgstr "" -#: ../../include/permissions.php:34 -msgid "Can post on my channel page (\"wall\")" +#: ../../include/js_strings.php:6 ../../include/ItemObject.php:682 +#: ../../mod/photos.php:1047 ../../mod/photos.php:1165 +msgid "Comment" msgstr "" -#: ../../include/permissions.php:35 -msgid "Can comment on or like my posts" +#: ../../include/js_strings.php:7 ../../include/ItemObject.php:399 +msgid "[+] show all" msgstr "" -#: ../../include/permissions.php:36 -msgid "Can send me private mail messages" +#: ../../include/js_strings.php:8 +msgid "[-] show less" msgstr "" -#: ../../include/permissions.php:37 -msgid "Can like/dislike stuff" +#: ../../include/js_strings.php:9 +msgid "[+] expand" msgstr "" -#: ../../include/permissions.php:37 -msgid "Profiles and things other than posts/comments" +#: ../../include/js_strings.php:10 +msgid "[-] collapse" msgstr "" -#: ../../include/permissions.php:39 -msgid "Can forward to all my channel contacts via post @mentions" +#: ../../include/js_strings.php:11 +msgid "Password too short" msgstr "" -#: ../../include/permissions.php:39 -msgid "Advanced - useful for creating group forum channels" +#: ../../include/js_strings.php:12 +msgid "Passwords do not match" msgstr "" -#: ../../include/permissions.php:40 -msgid "Can chat with me (when available)" +#: ../../include/js_strings.php:13 ../../mod/photos.php:41 +msgid "everybody" msgstr "" -#: ../../include/permissions.php:41 -msgid "Can write to my file storage and photos" +#: ../../include/js_strings.php:14 +msgid "Secret Passphrase" msgstr "" -#: ../../include/permissions.php:42 -msgid "Can edit my webpages" +#: ../../include/js_strings.php:15 +msgid "Passphrase hint" msgstr "" -#: ../../include/permissions.php:44 -msgid "Can source my public posts in derived channels" +#: ../../include/js_strings.php:16 +msgid "Notice: Permissions have changed but have not yet been submitted." msgstr "" -#: ../../include/permissions.php:44 -msgid "Somewhat advanced - very useful in open communities" +#: ../../include/js_strings.php:17 +msgid "close all" msgstr "" -#: ../../include/permissions.php:46 -msgid "Can administer my channel resources" +#: ../../include/js_strings.php:18 +msgid "Nothing new here" msgstr "" -#: ../../include/permissions.php:46 -msgid "Extremely advanced. Leave this alone unless you know what you are doing" +#: ../../include/js_strings.php:19 +msgid "Rate This Channel (this is public)" msgstr "" -#: ../../include/permissions.php:867 -msgid "Social Networking" +#: ../../include/js_strings.php:20 ../../mod/connedit.php:694 +#: ../../mod/rate.php:157 +msgid "Rating" msgstr "" -#: ../../include/permissions.php:867 ../../include/permissions.php:868 -#: ../../include/permissions.php:869 -msgid "Mostly Public" +#: ../../include/js_strings.php:21 +msgid "Describe (optional)" msgstr "" -#: ../../include/permissions.php:867 ../../include/permissions.php:868 -#: ../../include/permissions.php:869 -msgid "Restricted" +#: ../../include/js_strings.php:22 ../../include/ItemObject.php:683 +#: ../../include/widgets.php:676 ../../mod/fsuggest.php:108 +#: ../../mod/mitem.php:231 ../../mod/connedit.php:715 ../../mod/mood.php:135 +#: ../../mod/pconfig.php:108 ../../mod/filestorage.php:156 +#: ../../mod/poke.php:171 ../../mod/chat.php:184 ../../mod/chat.php:213 +#: ../../mod/rate.php:168 ../../mod/photos.php:637 ../../mod/photos.php:1008 +#: ../../mod/photos.php:1048 ../../mod/photos.php:1166 ../../mod/admin.php:435 +#: ../../mod/admin.php:802 ../../mod/admin.php:966 ../../mod/admin.php:1103 +#: ../../mod/admin.php:1297 ../../mod/admin.php:1382 ../../mod/appman.php:99 +#: ../../mod/pdledit.php:58 ../../mod/events.php:531 ../../mod/events.php:710 +#: ../../mod/sources.php:104 ../../mod/sources.php:138 +#: ../../mod/import.php:527 ../../mod/thing.php:313 ../../mod/thing.php:359 +#: ../../mod/invite.php:142 ../../mod/mail.php:371 ../../mod/settings.php:584 +#: ../../mod/settings.php:696 ../../mod/settings.php:724 +#: ../../mod/settings.php:747 ../../mod/settings.php:832 +#: ../../mod/settings.php:1021 ../../mod/xchan.php:11 ../../mod/group.php:81 +#: ../../mod/connect.php:93 ../../mod/locs.php:116 ../../mod/setup.php:331 +#: ../../mod/setup.php:371 ../../mod/profiles.php:667 +#: ../../mod/import_items.php:122 ../../view/theme/redbasic/php/config.php:99 +msgid "Submit" msgstr "" -#: ../../include/permissions.php:867 ../../include/permissions.php:868 -msgid "Private" +#: ../../include/js_strings.php:23 +msgid "Please enter a link URL" msgstr "" -#: ../../include/permissions.php:868 -msgid "Community Forum" +#: ../../include/js_strings.php:24 +msgid "Unsaved changes. Are you sure you wish to leave this page?" msgstr "" -#: ../../include/permissions.php:869 -msgid "Feed Republish" +#: ../../include/js_strings.php:26 +msgid "timeago.prefixAgo" msgstr "" -#: ../../include/permissions.php:870 -msgid "Special Purpose" +#: ../../include/js_strings.php:27 +msgid "timeago.prefixFromNow" msgstr "" -#: ../../include/permissions.php:870 -msgid "Celebrity/Soapbox" +#: ../../include/js_strings.php:28 +msgid "ago" msgstr "" -#: ../../include/permissions.php:870 -msgid "Group Repository" +#: ../../include/js_strings.php:29 +msgid "from now" msgstr "" -#: ../../include/permissions.php:871 ../../include/profile_selectors.php:6 -#: ../../include/profile_selectors.php:23 -#: ../../include/profile_selectors.php:61 -#: ../../include/profile_selectors.php:97 -msgid "Other" +#: ../../include/js_strings.php:30 +msgid "less than a minute" msgstr "" -#: ../../include/permissions.php:871 -msgid "Custom/Expert Mode" +#: ../../include/js_strings.php:31 +msgid "about a minute" msgstr "" -#: ../../include/chat.php:23 -msgid "Missing room name" +#: ../../include/js_strings.php:32 +#, php-format +msgid "%d minutes" msgstr "" -#: ../../include/chat.php:32 -msgid "Duplicate room name" +#: ../../include/js_strings.php:33 +msgid "about an hour" msgstr "" -#: ../../include/chat.php:82 ../../include/chat.php:90 -msgid "Invalid room specifier." +#: ../../include/js_strings.php:34 +#, php-format +msgid "about %d hours" msgstr "" -#: ../../include/chat.php:122 -msgid "Room not found." +#: ../../include/js_strings.php:35 +msgid "a day" msgstr "" -#: ../../include/chat.php:133 ../../include/items.php:4390 -#: ../../include/photos.php:29 ../../include/attach.php:140 -#: ../../include/attach.php:188 ../../include/attach.php:251 -#: ../../include/attach.php:265 ../../include/attach.php:272 -#: ../../include/attach.php:337 ../../include/attach.php:351 -#: ../../include/attach.php:358 ../../include/attach.php:436 -#: ../../include/attach.php:884 ../../include/attach.php:955 -#: ../../include/attach.php:1107 ../../mod/achievements.php:30 -#: ../../mod/fsuggest.php:78 ../../mod/authtest.php:13 -#: ../../mod/bookmarks.php:48 ../../mod/block.php:22 ../../mod/block.php:72 -#: ../../mod/id.php:71 ../../mod/like.php:177 ../../mod/common.php:35 -#: ../../mod/mitem.php:111 ../../mod/connedit.php:352 ../../mod/mood.php:112 -#: ../../mod/filestorage.php:18 ../../mod/filestorage.php:73 -#: ../../mod/filestorage.php:88 ../../mod/filestorage.php:115 -#: ../../mod/layouts.php:69 ../../mod/layouts.php:76 ../../mod/layouts.php:87 -#: ../../mod/poke.php:133 ../../mod/network.php:12 ../../mod/chat.php:94 -#: ../../mod/chat.php:99 ../../mod/rate.php:111 ../../mod/photos.php:70 -#: ../../mod/editblock.php:65 ../../mod/editpost.php:13 -#: ../../mod/appman.php:66 ../../mod/profile.php:64 ../../mod/profile.php:72 -#: ../../mod/menu.php:74 ../../mod/page.php:31 ../../mod/page.php:86 -#: ../../mod/new_channel.php:68 ../../mod/new_channel.php:99 -#: ../../mod/notifications.php:66 ../../mod/pdledit.php:21 -#: ../../mod/events.php:256 ../../mod/profile_photo.php:338 -#: ../../mod/profile_photo.php:351 ../../mod/item.php:205 -#: ../../mod/item.php:213 ../../mod/item.php:1006 ../../mod/message.php:16 -#: ../../mod/webpages.php:69 ../../mod/register.php:72 ../../mod/blocks.php:69 -#: ../../mod/blocks.php:76 ../../mod/service_limits.php:7 -#: ../../mod/sources.php:66 ../../mod/regmod.php:17 ../../mod/channel.php:100 -#: ../../mod/channel.php:214 ../../mod/channel.php:254 ../../mod/thing.php:271 -#: ../../mod/thing.php:291 ../../mod/thing.php:328 ../../mod/invite.php:13 -#: ../../mod/invite.php:104 ../../mod/mail.php:118 ../../mod/viewsrc.php:14 -#: ../../mod/settings.php:566 ../../mod/manage.php:6 ../../mod/api.php:26 -#: ../../mod/api.php:31 ../../mod/connections.php:29 -#: ../../mod/editlayout.php:63 ../../mod/editlayout.php:87 -#: ../../mod/editwebpage.php:64 ../../mod/editwebpage.php:86 -#: ../../mod/editwebpage.php:101 ../../mod/editwebpage.php:125 -#: ../../mod/group.php:9 ../../mod/viewconnections.php:22 -#: ../../mod/viewconnections.php:27 ../../mod/locs.php:83 -#: ../../mod/setup.php:227 ../../mod/sharedwithme.php:7 -#: ../../mod/suggest.php:26 ../../mod/profiles.php:188 -#: ../../mod/profiles.php:576 ../../index.php:178 ../../index.php:361 -msgid "Permission denied." +#: ../../include/js_strings.php:36 +#, php-format +msgid "%d days" msgstr "" -#: ../../include/chat.php:143 -msgid "Room is full" +#: ../../include/js_strings.php:37 +msgid "about a month" msgstr "" -#: ../../include/datetime.php:48 -msgid "Miscellaneous" +#: ../../include/js_strings.php:38 +#, php-format +msgid "%d months" msgstr "" -#: ../../include/datetime.php:132 -msgid "YYYY-MM-DD or MM-DD" +#: ../../include/js_strings.php:39 +msgid "about a year" msgstr "" -#: ../../include/datetime.php:235 ../../mod/appman.php:91 -#: ../../mod/appman.php:92 ../../mod/events.php:689 -msgid "Required" +#: ../../include/js_strings.php:40 +#, php-format +msgid "%d years" msgstr "" -#: ../../include/datetime.php:262 ../../boot.php:2287 -msgid "never" +#: ../../include/js_strings.php:41 +msgid " " msgstr "" -#: ../../include/datetime.php:268 -msgid "less than a second ago" +#: ../../include/js_strings.php:42 +msgid "timeago.numbers" msgstr "" -#: ../../include/datetime.php:271 -msgid "year" +#: ../../include/js_strings.php:44 ../../include/text.php:1164 +msgid "January" msgstr "" -#: ../../include/datetime.php:271 -msgid "years" +#: ../../include/js_strings.php:45 ../../include/text.php:1164 +msgid "February" msgstr "" -#: ../../include/datetime.php:272 -msgid "month" +#: ../../include/js_strings.php:46 ../../include/text.php:1164 +msgid "March" msgstr "" -#: ../../include/datetime.php:272 -msgid "months" +#: ../../include/js_strings.php:47 ../../include/text.php:1164 +msgid "April" msgstr "" -#: ../../include/datetime.php:273 -msgid "week" +#: ../../include/js_strings.php:48 +msgctxt "long" +msgid "May" msgstr "" -#: ../../include/datetime.php:273 -msgid "weeks" +#: ../../include/js_strings.php:49 ../../include/text.php:1164 +msgid "June" msgstr "" -#: ../../include/datetime.php:274 -msgid "day" +#: ../../include/js_strings.php:50 ../../include/text.php:1164 +msgid "July" msgstr "" -#: ../../include/datetime.php:274 -msgid "days" +#: ../../include/js_strings.php:51 ../../include/text.php:1164 +msgid "August" msgstr "" -#: ../../include/datetime.php:275 -msgid "hour" +#: ../../include/js_strings.php:52 ../../include/text.php:1164 +msgid "September" msgstr "" -#: ../../include/datetime.php:275 -msgid "hours" +#: ../../include/js_strings.php:53 ../../include/text.php:1164 +msgid "October" msgstr "" -#: ../../include/datetime.php:276 -msgid "minute" +#: ../../include/js_strings.php:54 ../../include/text.php:1164 +msgid "November" msgstr "" -#: ../../include/datetime.php:276 -msgid "minutes" +#: ../../include/js_strings.php:55 ../../include/text.php:1164 +msgid "December" msgstr "" -#: ../../include/datetime.php:277 -msgid "second" +#: ../../include/js_strings.php:56 +msgid "Jan" msgstr "" -#: ../../include/datetime.php:277 -msgid "seconds" +#: ../../include/js_strings.php:57 +msgid "Feb" msgstr "" -#: ../../include/datetime.php:285 -#, php-format -msgctxt "e.g. 22 hours ago, 1 minute ago" -msgid "%1$d %2$s ago" +#: ../../include/js_strings.php:58 +msgid "Mar" msgstr "" -#: ../../include/datetime.php:519 -#, php-format -msgid "%1$s's birthday" +#: ../../include/js_strings.php:59 +msgid "Apr" msgstr "" -#: ../../include/datetime.php:520 -#, php-format -msgid "Happy Birthday %1$s" +#: ../../include/js_strings.php:60 +msgctxt "short" +msgid "May" msgstr "" -#: ../../include/features.php:38 -msgid "General Features" +#: ../../include/js_strings.php:61 +msgid "Jun" msgstr "" -#: ../../include/features.php:40 -msgid "Content Expiration" +#: ../../include/js_strings.php:62 +msgid "Jul" msgstr "" -#: ../../include/features.php:40 -msgid "Remove posts/comments and/or private messages at a future time" +#: ../../include/js_strings.php:63 +msgid "Aug" msgstr "" -#: ../../include/features.php:41 -msgid "Multiple Profiles" +#: ../../include/js_strings.php:64 +msgid "Sep" msgstr "" -#: ../../include/features.php:41 -msgid "Ability to create multiple profiles" +#: ../../include/js_strings.php:65 +msgid "Oct" msgstr "" -#: ../../include/features.php:42 -msgid "Advanced Profiles" +#: ../../include/js_strings.php:66 +msgid "Nov" msgstr "" -#: ../../include/features.php:42 -msgid "Additional profile sections and selections" +#: ../../include/js_strings.php:67 +msgid "Dec" msgstr "" -#: ../../include/features.php:43 -msgid "Profile Import/Export" +#: ../../include/js_strings.php:68 ../../include/text.php:1160 +msgid "Sunday" msgstr "" -#: ../../include/features.php:43 -msgid "Save and load profile details across sites/channels" +#: ../../include/js_strings.php:69 ../../include/text.php:1160 +msgid "Monday" msgstr "" -#: ../../include/features.php:44 -msgid "Web Pages" +#: ../../include/js_strings.php:70 ../../include/text.php:1160 +msgid "Tuesday" msgstr "" -#: ../../include/features.php:44 -msgid "Provide managed web pages on your channel" +#: ../../include/js_strings.php:71 ../../include/text.php:1160 +msgid "Wednesday" msgstr "" -#: ../../include/features.php:45 -msgid "Private Notes" +#: ../../include/js_strings.php:72 ../../include/text.php:1160 +msgid "Thursday" msgstr "" -#: ../../include/features.php:45 -msgid "Enables a tool to store notes and reminders" +#: ../../include/js_strings.php:73 ../../include/text.php:1160 +msgid "Friday" msgstr "" -#: ../../include/features.php:46 -msgid "Navigation Channel Select" +#: ../../include/js_strings.php:74 ../../include/text.php:1160 +msgid "Saturday" msgstr "" -#: ../../include/features.php:46 -msgid "Change channels directly from within the navigation dropdown menu" +#: ../../include/js_strings.php:75 +msgid "Sun" msgstr "" -#: ../../include/features.php:47 -msgid "Photo Location" +#: ../../include/js_strings.php:76 +msgid "Mon" msgstr "" -#: ../../include/features.php:47 -msgid "If location data is available on uploaded photos, link this to a map." +#: ../../include/js_strings.php:77 +msgid "Tue" msgstr "" -#: ../../include/features.php:49 -msgid "Expert Mode" +#: ../../include/js_strings.php:78 +msgid "Wed" msgstr "" -#: ../../include/features.php:49 -msgid "Enable Expert Mode to provide advanced configuration options" +#: ../../include/js_strings.php:79 +msgid "Thu" msgstr "" -#: ../../include/features.php:50 -msgid "Premium Channel" +#: ../../include/js_strings.php:80 +msgid "Fri" msgstr "" -#: ../../include/features.php:50 -msgid "" -"Allows you to set restrictions and terms on those that connect with your " -"channel" +#: ../../include/js_strings.php:81 +msgid "Sat" msgstr "" -#: ../../include/features.php:55 -msgid "Post Composition Features" +#: ../../include/js_strings.php:82 +msgctxt "calendar" +msgid "today" msgstr "" -#: ../../include/features.php:57 -msgid "Use Markdown" +#: ../../include/js_strings.php:83 +msgctxt "calendar" +msgid "month" msgstr "" -#: ../../include/features.php:57 -msgid "Allow use of \"Markdown\" to format posts" +#: ../../include/js_strings.php:84 +msgctxt "calendar" +msgid "week" msgstr "" -#: ../../include/features.php:58 -msgid "Large Photos" +#: ../../include/js_strings.php:85 +msgctxt "calendar" +msgid "day" msgstr "" -#: ../../include/features.php:58 -msgid "" -"Include large (1024px) photo thumbnails in posts. If not enabled, use small " -"(640px) photo thumbnails" +#: ../../include/js_strings.php:86 +msgctxt "calendar" +msgid "All day" msgstr "" -#: ../../include/features.php:59 ../../include/widgets.php:545 -#: ../../mod/sources.php:88 -msgid "Channel Sources" +#: ../../include/contact_selectors.php:56 +msgid "Frequently" msgstr "" -#: ../../include/features.php:59 -msgid "Automatically import channel content from other channels or feeds" +#: ../../include/contact_selectors.php:57 +msgid "Hourly" msgstr "" -#: ../../include/features.php:60 -msgid "Even More Encryption" +#: ../../include/contact_selectors.php:58 +msgid "Twice daily" msgstr "" -#: ../../include/features.php:60 -msgid "" -"Allow optional encryption of content end-to-end with a shared secret key" +#: ../../include/contact_selectors.php:59 +msgid "Daily" msgstr "" -#: ../../include/features.php:61 -msgid "Enable Voting Tools" +#: ../../include/contact_selectors.php:60 +msgid "Weekly" msgstr "" -#: ../../include/features.php:61 -msgid "Provide a class of post which others can vote on" +#: ../../include/contact_selectors.php:61 +msgid "Monthly" msgstr "" -#: ../../include/features.php:62 -msgid "Delayed Posting" +#: ../../include/contact_selectors.php:76 +msgid "Friendica" msgstr "" -#: ../../include/features.php:62 -msgid "Allow posts to be published at a later date" +#: ../../include/contact_selectors.php:77 +msgid "OStatus" +msgstr "" + +#: ../../include/contact_selectors.php:78 +msgid "RSS/Atom" +msgstr "" + +#: ../../include/contact_selectors.php:79 ../../mod/id.php:15 +#: ../../mod/id.php:16 ../../mod/admin.php:805 ../../mod/admin.php:814 +#: ../../boot.php:1488 +msgid "Email" +msgstr "" + +#: ../../include/contact_selectors.php:80 +msgid "Diaspora" +msgstr "" + +#: ../../include/contact_selectors.php:81 +msgid "Facebook" +msgstr "" + +#: ../../include/contact_selectors.php:82 +msgid "Zot!" +msgstr "" + +#: ../../include/contact_selectors.php:83 +msgid "LinkedIn" +msgstr "" + +#: ../../include/contact_selectors.php:84 +msgid "XMPP/IM" msgstr "" -#: ../../include/features.php:68 -msgid "Network and Stream Filtering" +#: ../../include/contact_selectors.php:85 +msgid "MySpace" msgstr "" -#: ../../include/features.php:69 -msgid "Search by Date" +#: ../../include/activities.php:42 +msgid " and " msgstr "" -#: ../../include/features.php:69 -msgid "Ability to select posts by date ranges" +#: ../../include/activities.php:50 +msgid "public profile" msgstr "" -#: ../../include/features.php:70 -msgid "Collections Filter" +#: ../../include/activities.php:59 +#, php-format +msgid "%1$s changed %2$s to “%3$s”" msgstr "" -#: ../../include/features.php:70 -msgid "Enable widget to display Network posts only from selected collections" +#: ../../include/activities.php:60 +#, php-format +msgid "Visit %1$s's %2$s" msgstr "" -#: ../../include/features.php:71 ../../include/widgets.php:273 -msgid "Saved Searches" +#: ../../include/activities.php:63 +#, php-format +msgid "%1$s has an updated %2$s, changing %3$s." msgstr "" -#: ../../include/features.php:71 -msgid "Save search terms for re-use" +#: ../../include/Contact.php:101 ../../include/conversation.php:952 +#: ../../include/widgets.php:137 ../../include/widgets.php:175 +#: ../../include/identity.php:952 ../../mod/directory.php:318 +#: ../../mod/match.php:64 ../../mod/suggest.php:52 +msgid "Connect" msgstr "" -#: ../../include/features.php:72 -msgid "Network Personal Tab" +#: ../../include/Contact.php:118 +msgid "New window" msgstr "" -#: ../../include/features.php:72 -msgid "Enable tab to display only Network posts that you've interacted on" +#: ../../include/Contact.php:119 +msgid "Open the selected location in a different window or browser tab" msgstr "" -#: ../../include/features.php:73 -msgid "Network New Tab" +#: ../../include/Contact.php:237 +#, php-format +msgid "User '%s' deleted" msgstr "" -#: ../../include/features.php:73 -msgid "Enable tab to display all new Network activity" +#: ../../include/dba/dba_driver.php:141 +#, php-format +msgid "Cannot locate DNS info for database server '%s'" msgstr "" -#: ../../include/features.php:74 -msgid "Affinity Tool" +#: ../../include/items.php:423 ../../mod/like.php:280 +#: ../../mod/subthread.php:58 ../../mod/dreport.php:6 ../../mod/dreport.php:45 +#: ../../mod/group.php:68 ../../mod/profperm.php:23 +#: ../../mod/import_items.php:114 ../../index.php:360 +msgid "Permission denied" msgstr "" -#: ../../include/features.php:74 -msgid "Filter stream activity by depth of relationships" +#: ../../include/items.php:1128 ../../include/items.php:1174 +msgid "(Unknown)" msgstr "" -#: ../../include/features.php:75 -msgid "Connection Filtering" +#: ../../include/items.php:1371 +msgid "Visible to anybody on the internet." msgstr "" -#: ../../include/features.php:75 -msgid "Filter incoming posts from connections based on keywords/content" +#: ../../include/items.php:1373 +msgid "Visible to you only." msgstr "" -#: ../../include/features.php:76 -msgid "Suggest Channels" +#: ../../include/items.php:1375 +msgid "Visible to anybody in this network." msgstr "" -#: ../../include/features.php:76 -msgid "Show channel suggestions" +#: ../../include/items.php:1377 +msgid "Visible to anybody authenticated." msgstr "" -#: ../../include/features.php:81 -msgid "Post/Comment Tools" +#: ../../include/items.php:1379 +#, php-format +msgid "Visible to anybody on %s." msgstr "" -#: ../../include/features.php:82 -msgid "Tagging" +#: ../../include/items.php:1381 +msgid "Visible to all connections." msgstr "" -#: ../../include/features.php:82 -msgid "Ability to tag existing posts" +#: ../../include/items.php:1383 +msgid "Visible to approved connections." msgstr "" -#: ../../include/features.php:83 -msgid "Post Categories" +#: ../../include/items.php:1385 +msgid "Visible to specific connections." msgstr "" -#: ../../include/features.php:83 -msgid "Add categories to your posts" +#: ../../include/items.php:4317 ../../mod/display.php:36 +#: ../../mod/filestorage.php:27 ../../mod/admin.php:127 +#: ../../mod/admin.php:1005 ../../mod/admin.php:1210 ../../mod/thing.php:86 +#: ../../mod/viewsrc.php:20 +msgid "Item not found." msgstr "" -#: ../../include/features.php:84 ../../include/contact_widgets.php:57 -#: ../../include/widgets.php:303 -msgid "Saved Folders" +#: ../../include/items.php:4826 ../../mod/group.php:38 ../../mod/group.php:137 +msgid "Collection not found." msgstr "" -#: ../../include/features.php:84 -msgid "Ability to file posts under folders" +#: ../../include/items.php:4842 +msgid "Collection is empty." msgstr "" -#: ../../include/features.php:85 -msgid "Dislike Posts" +#: ../../include/items.php:4849 +#, php-format +msgid "Collection: %s" msgstr "" -#: ../../include/features.php:85 -msgid "Ability to dislike posts/comments" +#: ../../include/items.php:4859 ../../mod/connedit.php:683 +#, php-format +msgid "Connection: %s" msgstr "" -#: ../../include/features.php:86 -msgid "Star Posts" +#: ../../include/items.php:4861 +msgid "Connection not found." msgstr "" -#: ../../include/features.php:86 -msgid "Ability to mark special posts with a star indicator" +#: ../../include/conversation.php:120 ../../include/text.php:1880 +#: ../../mod/like.php:361 ../../mod/tagger.php:43 ../../mod/subthread.php:83 +msgid "photo" msgstr "" -#: ../../include/features.php:87 -msgid "Tag Cloud" +#: ../../include/conversation.php:123 ../../include/event.php:896 +#: ../../include/text.php:1883 ../../mod/like.php:363 ../../mod/tagger.php:47 +#: ../../mod/events.php:245 +msgid "event" msgstr "" -#: ../../include/features.php:87 -msgid "Provide a personal tag cloud on your channel page" +#: ../../include/conversation.php:126 ../../mod/like.php:113 +msgid "channel" msgstr "" -#: ../../include/comanche.php:34 ../../mod/admin.php:351 -msgid "Default" +#: ../../include/conversation.php:148 ../../include/text.php:1886 +#: ../../mod/like.php:361 ../../mod/subthread.php:83 +msgid "status" msgstr "" -#: ../../include/js_strings.php:5 -msgid "Delete this item?" +#: ../../include/conversation.php:150 ../../include/text.php:1888 +#: ../../mod/tagger.php:53 +msgid "comment" msgstr "" -#: ../../include/js_strings.php:6 ../../include/ItemObject.php:682 -#: ../../mod/photos.php:1047 ../../mod/photos.php:1165 -msgid "Comment" +#: ../../include/conversation.php:164 ../../mod/like.php:410 +#, php-format +msgid "%1$s likes %2$s's %3$s" msgstr "" -#: ../../include/js_strings.php:7 ../../include/ItemObject.php:399 -msgid "[+] show all" +#: ../../include/conversation.php:167 ../../mod/like.php:412 +#, php-format +msgid "%1$s doesn't like %2$s's %3$s" msgstr "" -#: ../../include/js_strings.php:8 -msgid "[-] show less" +#: ../../include/conversation.php:204 +#, php-format +msgid "%1$s is now connected with %2$s" msgstr "" -#: ../../include/js_strings.php:9 -msgid "[+] expand" +#: ../../include/conversation.php:239 +#, php-format +msgid "%1$s poked %2$s" msgstr "" -#: ../../include/js_strings.php:10 -msgid "[-] collapse" +#: ../../include/conversation.php:243 ../../include/text.php:953 +msgid "poked" msgstr "" -#: ../../include/js_strings.php:11 -msgid "Password too short" +#: ../../include/conversation.php:260 ../../mod/mood.php:63 +#, php-format +msgctxt "mood" +msgid "%1$s is %2$s" msgstr "" -#: ../../include/js_strings.php:12 -msgid "Passwords do not match" +#: ../../include/conversation.php:574 ../../mod/photos.php:1063 +msgctxt "title" +msgid "Likes" msgstr "" -#: ../../include/js_strings.php:13 ../../mod/photos.php:41 -msgid "everybody" +#: ../../include/conversation.php:574 ../../mod/photos.php:1063 +msgctxt "title" +msgid "Dislikes" msgstr "" -#: ../../include/js_strings.php:14 -msgid "Secret Passphrase" +#: ../../include/conversation.php:575 ../../mod/photos.php:1064 +msgctxt "title" +msgid "Agree" msgstr "" -#: ../../include/js_strings.php:15 -msgid "Passphrase hint" +#: ../../include/conversation.php:575 ../../mod/photos.php:1064 +msgctxt "title" +msgid "Disagree" msgstr "" -#: ../../include/js_strings.php:16 -msgid "Notice: Permissions have changed but have not yet been submitted." +#: ../../include/conversation.php:575 ../../mod/photos.php:1064 +msgctxt "title" +msgid "Abstain" msgstr "" -#: ../../include/js_strings.php:17 -msgid "close all" +#: ../../include/conversation.php:576 ../../mod/photos.php:1065 +msgctxt "title" +msgid "Attending" msgstr "" -#: ../../include/js_strings.php:18 -msgid "Nothing new here" +#: ../../include/conversation.php:576 ../../mod/photos.php:1065 +msgctxt "title" +msgid "Not attending" msgstr "" -#: ../../include/js_strings.php:19 -msgid "Rate This Channel (this is public)" +#: ../../include/conversation.php:576 ../../mod/photos.php:1065 +msgctxt "title" +msgid "Might attend" msgstr "" -#: ../../include/js_strings.php:20 ../../mod/connedit.php:694 -#: ../../mod/rate.php:157 -msgid "Rating" +#: ../../include/conversation.php:656 ../../include/ItemObject.php:126 +msgid "Select" msgstr "" -#: ../../include/js_strings.php:21 -msgid "Describe (optional)" +#: ../../include/conversation.php:664 ../../include/ItemObject.php:89 +msgid "Private Message" msgstr "" -#: ../../include/js_strings.php:22 ../../include/ItemObject.php:683 -#: ../../mod/fsuggest.php:108 ../../mod/mitem.php:231 -#: ../../mod/connedit.php:715 ../../mod/mood.php:135 ../../mod/pconfig.php:108 -#: ../../mod/filestorage.php:156 ../../mod/poke.php:171 ../../mod/chat.php:184 -#: ../../mod/chat.php:213 ../../mod/rate.php:168 ../../mod/photos.php:637 -#: ../../mod/photos.php:1008 ../../mod/photos.php:1048 -#: ../../mod/photos.php:1166 ../../mod/admin.php:434 ../../mod/admin.php:801 -#: ../../mod/admin.php:965 ../../mod/admin.php:1097 ../../mod/admin.php:1291 -#: ../../mod/admin.php:1376 ../../mod/appman.php:99 ../../mod/pdledit.php:58 -#: ../../mod/events.php:534 ../../mod/events.php:710 ../../mod/sources.php:104 -#: ../../mod/sources.php:138 ../../mod/import.php:527 ../../mod/thing.php:313 -#: ../../mod/thing.php:359 ../../mod/invite.php:142 ../../mod/mail.php:371 -#: ../../mod/settings.php:584 ../../mod/settings.php:696 -#: ../../mod/settings.php:724 ../../mod/settings.php:747 -#: ../../mod/settings.php:832 ../../mod/settings.php:1021 -#: ../../mod/xchan.php:11 ../../mod/group.php:81 ../../mod/connect.php:93 -#: ../../mod/locs.php:116 ../../mod/setup.php:331 ../../mod/setup.php:371 -#: ../../mod/profiles.php:667 ../../mod/import_items.php:122 -#: ../../view/theme/redbasic/php/config.php:99 -msgid "Submit" +#: ../../include/conversation.php:671 ../../include/ItemObject.php:227 +msgid "Message signature validated" msgstr "" -#: ../../include/js_strings.php:23 -msgid "Please enter a link URL" +#: ../../include/conversation.php:672 ../../include/ItemObject.php:228 +msgid "Message signature incorrect" msgstr "" -#: ../../include/js_strings.php:24 -msgid "Unsaved changes. Are you sure you wish to leave this page?" +#: ../../include/conversation.php:691 +#, php-format +msgid "View %s's profile @ %s" msgstr "" -#: ../../include/js_strings.php:26 -msgid "timeago.prefixAgo" +#: ../../include/conversation.php:709 +msgid "Categories:" msgstr "" -#: ../../include/js_strings.php:27 -msgid "timeago.prefixFromNow" +#: ../../include/conversation.php:710 +msgid "Filed under:" msgstr "" -#: ../../include/js_strings.php:28 -msgid "ago" +#: ../../include/conversation.php:718 ../../include/ItemObject.php:321 +#, php-format +msgid "from %s" msgstr "" -#: ../../include/js_strings.php:29 -msgid "from now" +#: ../../include/conversation.php:721 ../../include/ItemObject.php:324 +#, php-format +msgid "last edited: %s" msgstr "" -#: ../../include/js_strings.php:30 -msgid "less than a minute" +#: ../../include/conversation.php:722 ../../include/ItemObject.php:325 +#, php-format +msgid "Expires: %s" msgstr "" -#: ../../include/js_strings.php:31 -msgid "about a minute" +#: ../../include/conversation.php:737 +msgid "View in context" msgstr "" -#: ../../include/js_strings.php:32 -#, php-format -msgid "%d minutes" +#: ../../include/conversation.php:739 ../../include/conversation.php:1226 +#: ../../include/ItemObject.php:375 ../../mod/photos.php:1029 +#: ../../mod/editblock.php:150 ../../mod/editpost.php:129 +#: ../../mod/editlayout.php:148 ../../mod/editwebpage.php:190 +msgid "Please wait" msgstr "" -#: ../../include/js_strings.php:33 -msgid "about an hour" +#: ../../include/conversation.php:849 +msgid "remove" msgstr "" -#: ../../include/js_strings.php:34 -#, php-format -msgid "about %d hours" +#: ../../include/conversation.php:853 ../../include/nav.php:241 +msgid "Loading..." msgstr "" -#: ../../include/js_strings.php:35 -msgid "a day" +#: ../../include/conversation.php:854 +msgid "Delete Selected Items" msgstr "" -#: ../../include/js_strings.php:36 -#, php-format -msgid "%d days" +#: ../../include/conversation.php:945 +msgid "View Source" msgstr "" -#: ../../include/js_strings.php:37 -msgid "about a month" +#: ../../include/conversation.php:946 +msgid "Follow Thread" msgstr "" -#: ../../include/js_strings.php:38 -#, php-format -msgid "%d months" +#: ../../include/conversation.php:947 +msgid "Unfollow Thread" msgstr "" -#: ../../include/js_strings.php:39 -msgid "about a year" +#: ../../include/conversation.php:948 +msgid "View Status" msgstr "" -#: ../../include/js_strings.php:40 -#, php-format -msgid "%d years" +#: ../../include/conversation.php:949 ../../include/nav.php:86 +#: ../../mod/connedit.php:498 +msgid "View Profile" msgstr "" -#: ../../include/js_strings.php:41 -msgid " " +#: ../../include/conversation.php:950 +msgid "View Photos" msgstr "" -#: ../../include/js_strings.php:42 -msgid "timeago.numbers" +#: ../../include/conversation.php:951 +msgid "Activity/Posts" msgstr "" -#: ../../include/js_strings.php:44 ../../include/text.php:1157 -msgid "January" +#: ../../include/conversation.php:953 +msgid "Edit Connection" msgstr "" -#: ../../include/js_strings.php:45 ../../include/text.php:1157 -msgid "February" +#: ../../include/conversation.php:954 +msgid "Send PM" msgstr "" -#: ../../include/js_strings.php:46 ../../include/text.php:1157 -msgid "March" +#: ../../include/conversation.php:955 ../../include/apps.php:145 +msgid "Poke" msgstr "" -#: ../../include/js_strings.php:47 ../../include/text.php:1157 -msgid "April" +#: ../../include/conversation.php:1069 +#, php-format +msgid "%s likes this." msgstr "" -#: ../../include/js_strings.php:48 -msgctxt "long" -msgid "May" +#: ../../include/conversation.php:1069 +#, php-format +msgid "%s doesn't like this." msgstr "" -#: ../../include/js_strings.php:49 ../../include/text.php:1157 -msgid "June" -msgstr "" +#: ../../include/conversation.php:1073 +#, php-format +msgid "%2$d people like this." +msgid_plural "%2$d people like this." +msgstr[0] "" +msgstr[1] "" -#: ../../include/js_strings.php:50 ../../include/text.php:1157 -msgid "July" -msgstr "" +#: ../../include/conversation.php:1075 +#, php-format +msgid "%2$d people don't like this." +msgid_plural "%2$d people don't like this." +msgstr[0] "" +msgstr[1] "" -#: ../../include/js_strings.php:51 ../../include/text.php:1157 -msgid "August" +#: ../../include/conversation.php:1081 +msgid "and" msgstr "" -#: ../../include/js_strings.php:52 ../../include/text.php:1157 -msgid "September" +#: ../../include/conversation.php:1084 +#, php-format +msgid ", and %d other people" +msgid_plural ", and %d other people" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/conversation.php:1085 +#, php-format +msgid "%s like this." msgstr "" -#: ../../include/js_strings.php:53 ../../include/text.php:1157 -msgid "October" +#: ../../include/conversation.php:1085 +#, php-format +msgid "%s don't like this." msgstr "" -#: ../../include/js_strings.php:54 ../../include/text.php:1157 -msgid "November" +#: ../../include/conversation.php:1153 +msgid "Visible to everybody" msgstr "" -#: ../../include/js_strings.php:55 ../../include/text.php:1157 -msgid "December" +#: ../../include/conversation.php:1154 ../../mod/mail.php:194 +#: ../../mod/mail.php:308 +msgid "Please enter a link URL:" msgstr "" -#: ../../include/js_strings.php:56 -msgid "Jan" +#: ../../include/conversation.php:1155 +msgid "Please enter a video link/URL:" msgstr "" -#: ../../include/js_strings.php:57 -msgid "Feb" +#: ../../include/conversation.php:1156 +msgid "Please enter an audio link/URL:" msgstr "" -#: ../../include/js_strings.php:58 -msgid "Mar" +#: ../../include/conversation.php:1157 +msgid "Tag term:" msgstr "" -#: ../../include/js_strings.php:59 -msgid "Apr" +#: ../../include/conversation.php:1158 ../../mod/filer.php:48 +msgid "Save to Folder:" msgstr "" -#: ../../include/js_strings.php:60 -msgctxt "short" -msgid "May" +#: ../../include/conversation.php:1159 +msgid "Where are you right now?" msgstr "" -#: ../../include/js_strings.php:61 -msgid "Jun" +#: ../../include/conversation.php:1160 ../../mod/editpost.php:56 +#: ../../mod/mail.php:195 ../../mod/mail.php:309 +msgid "Expires YYYY-MM-DD HH:MM" msgstr "" -#: ../../include/js_strings.php:62 -msgid "Jul" +#: ../../include/conversation.php:1168 ../../include/page_widgets.php:40 +#: ../../include/ItemObject.php:692 ../../mod/photos.php:1049 +#: ../../mod/editblock.php:171 ../../mod/editpost.php:149 +#: ../../mod/events.php:707 ../../mod/webpages.php:188 +#: ../../mod/editwebpage.php:212 +msgid "Preview" msgstr "" -#: ../../include/js_strings.php:63 -msgid "Aug" +#: ../../include/conversation.php:1191 ../../mod/layouts.php:184 +#: ../../mod/photos.php:1028 ../../mod/webpages.php:182 +#: ../../mod/blocks.php:154 +msgid "Share" msgstr "" -#: ../../include/js_strings.php:64 -msgid "Sep" +#: ../../include/conversation.php:1193 +msgid "Page link name" msgstr "" -#: ../../include/js_strings.php:65 -msgid "Oct" +#: ../../include/conversation.php:1196 +msgid "Post as" msgstr "" -#: ../../include/js_strings.php:66 -msgid "Nov" +#: ../../include/conversation.php:1198 ../../include/ItemObject.php:684 +#: ../../mod/editblock.php:136 ../../mod/editpost.php:113 +#: ../../mod/editlayout.php:135 ../../mod/editwebpage.php:177 +msgid "Bold" msgstr "" -#: ../../include/js_strings.php:67 -msgid "Dec" +#: ../../include/conversation.php:1199 ../../include/ItemObject.php:685 +#: ../../mod/editblock.php:137 ../../mod/editpost.php:114 +#: ../../mod/editlayout.php:136 ../../mod/editwebpage.php:178 +msgid "Italic" msgstr "" -#: ../../include/js_strings.php:68 ../../include/text.php:1153 -msgid "Sunday" +#: ../../include/conversation.php:1200 ../../include/ItemObject.php:686 +#: ../../mod/editblock.php:138 ../../mod/editpost.php:115 +#: ../../mod/editlayout.php:137 ../../mod/editwebpage.php:179 +msgid "Underline" msgstr "" -#: ../../include/js_strings.php:69 ../../include/text.php:1153 -msgid "Monday" +#: ../../include/conversation.php:1201 ../../include/ItemObject.php:687 +#: ../../mod/editblock.php:139 ../../mod/editpost.php:116 +#: ../../mod/editlayout.php:138 ../../mod/editwebpage.php:180 +msgid "Quote" msgstr "" -#: ../../include/js_strings.php:70 ../../include/text.php:1153 -msgid "Tuesday" +#: ../../include/conversation.php:1202 ../../include/ItemObject.php:688 +#: ../../mod/editblock.php:140 ../../mod/editpost.php:117 +#: ../../mod/editlayout.php:139 ../../mod/editwebpage.php:181 +msgid "Code" msgstr "" -#: ../../include/js_strings.php:71 ../../include/text.php:1153 -msgid "Wednesday" +#: ../../include/conversation.php:1203 ../../mod/editblock.php:142 +#: ../../mod/editpost.php:118 ../../mod/editlayout.php:140 +#: ../../mod/editwebpage.php:182 +msgid "Upload photo" msgstr "" -#: ../../include/js_strings.php:72 ../../include/text.php:1153 -msgid "Thursday" +#: ../../include/conversation.php:1204 +msgid "upload photo" msgstr "" -#: ../../include/js_strings.php:73 ../../include/text.php:1153 -msgid "Friday" +#: ../../include/conversation.php:1205 ../../mod/editblock.php:143 +#: ../../mod/editpost.php:119 ../../mod/mail.php:240 ../../mod/mail.php:369 +#: ../../mod/editlayout.php:141 ../../mod/editwebpage.php:183 +msgid "Attach file" msgstr "" -#: ../../include/js_strings.php:74 ../../include/text.php:1153 -msgid "Saturday" +#: ../../include/conversation.php:1206 +msgid "attach file" msgstr "" -#: ../../include/js_strings.php:75 -msgid "Sun" +#: ../../include/conversation.php:1207 ../../mod/editblock.php:144 +#: ../../mod/editpost.php:120 ../../mod/mail.php:241 ../../mod/mail.php:370 +#: ../../mod/editlayout.php:142 ../../mod/editwebpage.php:184 +msgid "Insert web link" msgstr "" -#: ../../include/js_strings.php:76 -msgid "Mon" +#: ../../include/conversation.php:1208 +msgid "web link" msgstr "" -#: ../../include/js_strings.php:77 -msgid "Tue" +#: ../../include/conversation.php:1209 +msgid "Insert video link" msgstr "" -#: ../../include/js_strings.php:78 -msgid "Wed" +#: ../../include/conversation.php:1210 +msgid "video link" msgstr "" -#: ../../include/js_strings.php:79 -msgid "Thu" +#: ../../include/conversation.php:1211 +msgid "Insert audio link" msgstr "" -#: ../../include/js_strings.php:80 -msgid "Fri" +#: ../../include/conversation.php:1212 +msgid "audio link" msgstr "" -#: ../../include/js_strings.php:81 -msgid "Sat" +#: ../../include/conversation.php:1213 ../../mod/editblock.php:148 +#: ../../mod/editpost.php:124 ../../mod/editlayout.php:146 +#: ../../mod/editwebpage.php:188 +msgid "Set your location" msgstr "" -#: ../../include/js_strings.php:82 -msgctxt "calendar" -msgid "today" +#: ../../include/conversation.php:1214 +msgid "set location" msgstr "" -#: ../../include/js_strings.php:83 -msgctxt "calendar" -msgid "month" +#: ../../include/conversation.php:1215 ../../mod/editpost.php:126 +msgid "Toggle voting" msgstr "" -#: ../../include/js_strings.php:84 -msgctxt "calendar" -msgid "week" +#: ../../include/conversation.php:1218 ../../mod/editblock.php:149 +#: ../../mod/editpost.php:125 ../../mod/editlayout.php:147 +#: ../../mod/editwebpage.php:189 +msgid "Clear browser location" msgstr "" -#: ../../include/js_strings.php:85 -msgctxt "calendar" -msgid "day" +#: ../../include/conversation.php:1219 +msgid "clear location" msgstr "" -#: ../../include/js_strings.php:86 -msgctxt "calendar" -msgid "All day" +#: ../../include/conversation.php:1221 ../../mod/editblock.php:162 +#: ../../mod/editpost.php:141 ../../mod/editwebpage.php:205 +msgid "Title (optional)" msgstr "" -#: ../../include/contact_selectors.php:56 -msgid "Frequently" +#: ../../include/conversation.php:1225 ../../mod/editblock.php:165 +#: ../../mod/editpost.php:143 ../../mod/editlayout.php:163 +#: ../../mod/editwebpage.php:207 +msgid "Categories (optional, comma-separated list)" msgstr "" -#: ../../include/contact_selectors.php:57 -msgid "Hourly" +#: ../../include/conversation.php:1227 ../../mod/editblock.php:151 +#: ../../mod/editpost.php:130 ../../mod/editlayout.php:149 +#: ../../mod/editwebpage.php:191 +msgid "Permission settings" msgstr "" -#: ../../include/contact_selectors.php:58 -msgid "Twice daily" +#: ../../include/conversation.php:1228 +msgid "permissions" msgstr "" -#: ../../include/contact_selectors.php:59 -msgid "Daily" +#: ../../include/conversation.php:1236 ../../mod/editblock.php:159 +#: ../../mod/editpost.php:138 ../../mod/editlayout.php:156 +#: ../../mod/editwebpage.php:200 +msgid "Public post" msgstr "" -#: ../../include/contact_selectors.php:60 -msgid "Weekly" +#: ../../include/conversation.php:1238 ../../mod/editblock.php:166 +#: ../../mod/editpost.php:144 ../../mod/editlayout.php:164 +#: ../../mod/editwebpage.php:208 +msgid "Example: bob@example.com, mary@example.com" msgstr "" -#: ../../include/contact_selectors.php:61 -msgid "Monthly" +#: ../../include/conversation.php:1251 ../../mod/editblock.php:176 +#: ../../mod/editpost.php:155 ../../mod/mail.php:245 ../../mod/mail.php:374 +#: ../../mod/editlayout.php:173 ../../mod/editwebpage.php:217 +msgid "Set expiration date" msgstr "" -#: ../../include/contact_selectors.php:76 -msgid "Friendica" +#: ../../include/conversation.php:1254 +msgid "Set publish date" msgstr "" -#: ../../include/contact_selectors.php:77 -msgid "OStatus" +#: ../../include/conversation.php:1256 ../../include/ItemObject.php:695 +#: ../../mod/editpost.php:157 ../../mod/mail.php:247 ../../mod/mail.php:376 +msgid "Encrypt text" msgstr "" -#: ../../include/contact_selectors.php:78 -msgid "RSS/Atom" +#: ../../include/conversation.php:1258 ../../mod/editpost.php:159 +#: ../../mod/events.php:691 +msgid "OK" msgstr "" -#: ../../include/contact_selectors.php:79 ../../mod/id.php:15 -#: ../../mod/id.php:16 ../../mod/admin.php:804 ../../mod/admin.php:813 -#: ../../boot.php:1486 -msgid "Email" +#: ../../include/conversation.php:1259 ../../mod/fbrowser.php:82 +#: ../../mod/fbrowser.php:117 ../../mod/editpost.php:160 +#: ../../mod/events.php:690 ../../mod/tagrm.php:11 ../../mod/tagrm.php:134 +#: ../../mod/settings.php:585 ../../mod/settings.php:611 +msgid "Cancel" msgstr "" -#: ../../include/contact_selectors.php:80 -msgid "Diaspora" +#: ../../include/conversation.php:1502 +msgid "Discover" msgstr "" -#: ../../include/contact_selectors.php:81 -msgid "Facebook" +#: ../../include/conversation.php:1505 +msgid "Imported public streams" msgstr "" -#: ../../include/contact_selectors.php:82 -msgid "Zot!" +#: ../../include/conversation.php:1510 +msgid "Commented Order" msgstr "" -#: ../../include/contact_selectors.php:83 -msgid "LinkedIn" +#: ../../include/conversation.php:1513 +msgid "Sort by Comment Date" msgstr "" -#: ../../include/contact_selectors.php:84 -msgid "XMPP/IM" +#: ../../include/conversation.php:1517 +msgid "Posted Order" msgstr "" -#: ../../include/contact_selectors.php:85 -msgid "MySpace" +#: ../../include/conversation.php:1520 +msgid "Sort by Post Date" msgstr "" -#: ../../include/activities.php:42 -msgid " and " +#: ../../include/conversation.php:1525 ../../include/widgets.php:95 +msgid "Personal" msgstr "" -#: ../../include/activities.php:50 -msgid "public profile" +#: ../../include/conversation.php:1528 +msgid "Posts that mention or involve you" msgstr "" -#: ../../include/activities.php:59 -#, php-format -msgid "%1$s changed %2$s to “%3$s”" +#: ../../include/conversation.php:1534 ../../mod/menu.php:112 +#: ../../mod/connections.php:72 ../../mod/connections.php:82 +msgid "New" msgstr "" -#: ../../include/activities.php:60 -#, php-format -msgid "Visit %1$s's %2$s" +#: ../../include/conversation.php:1537 +msgid "Activity Stream - by date" msgstr "" -#: ../../include/activities.php:63 -#, php-format -msgid "%1$s has an updated %2$s, changing %3$s." +#: ../../include/conversation.php:1543 +msgid "Starred" msgstr "" -#: ../../include/Contact.php:118 -msgid "New window" +#: ../../include/conversation.php:1546 +msgid "Favourite Posts" msgstr "" -#: ../../include/Contact.php:119 -msgid "Open the selected location in a different window or browser tab" +#: ../../include/conversation.php:1553 +msgid "Spam" msgstr "" -#: ../../include/Contact.php:237 -#, php-format -msgid "User '%s' deleted" +#: ../../include/conversation.php:1556 +msgid "Posts flagged as SPAM" msgstr "" -#: ../../include/dba/dba_driver.php:141 -#, php-format -msgid "Cannot locate DNS info for database server '%s'" +#: ../../include/conversation.php:1600 ../../mod/admin.php:973 +msgid "Channel" msgstr "" -#: ../../include/items.php:423 ../../mod/like.php:280 -#: ../../mod/subthread.php:52 ../../mod/dreport.php:6 ../../mod/dreport.php:45 -#: ../../mod/group.php:68 ../../mod/profperm.php:23 -#: ../../mod/import_items.php:114 ../../index.php:360 -msgid "Permission denied" +#: ../../include/conversation.php:1603 +msgid "Status Messages and Posts" msgstr "" -#: ../../include/items.php:1128 ../../include/items.php:1174 -msgid "(Unknown)" +#: ../../include/conversation.php:1612 +msgid "About" msgstr "" -#: ../../include/items.php:1371 -msgid "Visible to anybody on the internet." +#: ../../include/conversation.php:1615 +msgid "Profile Details" msgstr "" -#: ../../include/items.php:1373 -msgid "Visible to you only." +#: ../../include/conversation.php:1621 ../../include/apps.php:139 +#: ../../include/nav.php:92 ../../mod/fbrowser.php:25 +msgid "Photos" msgstr "" -#: ../../include/items.php:1375 -msgid "Visible to anybody in this network." +#: ../../include/conversation.php:1624 ../../include/photos.php:483 +msgid "Photo Albums" msgstr "" -#: ../../include/items.php:1377 -msgid "Visible to anybody authenticated." +#: ../../include/conversation.php:1631 +msgid "Files and Storage" msgstr "" -#: ../../include/items.php:1379 -#, php-format -msgid "Visible to anybody on %s." +#: ../../include/conversation.php:1641 ../../include/conversation.php:1644 +msgid "Chatrooms" msgstr "" -#: ../../include/items.php:1381 -msgid "Visible to all connections." +#: ../../include/conversation.php:1654 ../../include/apps.php:129 +#: ../../include/nav.php:103 +msgid "Bookmarks" msgstr "" -#: ../../include/items.php:1383 -msgid "Visible to approved connections." +#: ../../include/conversation.php:1657 +msgid "Saved Bookmarks" msgstr "" -#: ../../include/items.php:1385 -msgid "Visible to specific connections." +#: ../../include/conversation.php:1664 ../../include/apps.php:136 +#: ../../include/nav.php:107 ../../mod/webpages.php:178 +msgid "Webpages" msgstr "" -#: ../../include/items.php:4311 ../../mod/display.php:36 -#: ../../mod/filestorage.php:27 ../../mod/admin.php:127 -#: ../../mod/admin.php:1004 ../../mod/admin.php:1204 ../../mod/thing.php:86 -#: ../../mod/viewsrc.php:20 -msgid "Item not found." +#: ../../include/conversation.php:1667 +msgid "Manage Webpages" msgstr "" -#: ../../include/items.php:4820 ../../mod/group.php:38 ../../mod/group.php:137 -msgid "Collection not found." +#: ../../include/conversation.php:1696 ../../include/ItemObject.php:175 +#: ../../include/ItemObject.php:187 ../../mod/photos.php:1082 +#: ../../mod/photos.php:1094 +msgid "View all" msgstr "" -#: ../../include/items.php:4836 -msgid "Collection is empty." -msgstr "" +#: ../../include/conversation.php:1720 ../../include/ItemObject.php:179 +#: ../../include/identity.php:1263 ../../include/taxonomy.php:412 +#: ../../mod/photos.php:1086 +msgctxt "noun" +msgid "Like" +msgid_plural "Likes" +msgstr[0] "" +msgstr[1] "" -#: ../../include/items.php:4843 -#, php-format -msgid "Collection: %s" -msgstr "" +#: ../../include/conversation.php:1723 ../../include/ItemObject.php:184 +#: ../../mod/photos.php:1091 +msgctxt "noun" +msgid "Dislike" +msgid_plural "Dislikes" +msgstr[0] "" +msgstr[1] "" -#: ../../include/items.php:4853 ../../mod/connedit.php:683 -#, php-format -msgid "Connection: %s" -msgstr "" +#: ../../include/conversation.php:1726 +msgctxt "noun" +msgid "Attending" +msgid_plural "Attending" +msgstr[0] "" +msgstr[1] "" -#: ../../include/items.php:4855 -msgid "Connection not found." -msgstr "" +#: ../../include/conversation.php:1729 +msgctxt "noun" +msgid "Not Attending" +msgid_plural "Not Attending" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/conversation.php:1732 +msgctxt "noun" +msgid "Undecided" +msgid_plural "Undecided" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/conversation.php:1735 +msgctxt "noun" +msgid "Agree" +msgid_plural "Agrees" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/conversation.php:1738 +msgctxt "noun" +msgid "Disagree" +msgid_plural "Disagrees" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/conversation.php:1741 +msgctxt "noun" +msgid "Abstain" +msgid_plural "Abstains" +msgstr[0] "" +msgstr[1] "" #: ../../include/network.php:613 msgid "view full size" @@ -1941,23 +1951,10 @@ msgstr "" #: ../../mod/events.php:708 ../../mod/thing.php:310 ../../mod/thing.php:356 msgid "Permissions" msgstr "" - -#: ../../include/acl_selectors.php:250 ../../include/ItemObject.php:370 -#: ../../mod/photos.php:1218 -msgid "Close" -msgstr "" - -#: ../../include/import.php:23 -msgid "" -"Cannot create a duplicate channel identifier on this system. Import failed." -msgstr "" - -#: ../../include/import.php:70 -msgid "Channel clone failed. Import failed." -msgstr "" - -#: ../../include/import.php:80 ../../mod/import.php:139 -msgid "Cloned channel not found. Import failed." + +#: ../../include/acl_selectors.php:250 ../../include/ItemObject.php:370 +#: ../../mod/photos.php:1218 +msgid "Close" msgstr "" #: ../../include/photos.php:112 @@ -2173,9 +2170,9 @@ msgstr "" msgid "Sex Addict" msgstr "" -#: ../../include/profile_selectors.php:80 ../../include/identity.php:390 -#: ../../include/identity.php:391 ../../include/identity.php:398 -#: ../../include/widgets.php:429 ../../mod/connedit.php:573 +#: ../../include/profile_selectors.php:80 ../../include/widgets.php:430 +#: ../../include/identity.php:390 ../../include/identity.php:391 +#: ../../include/identity.php:398 ../../mod/connedit.php:573 #: ../../mod/settings.php:338 ../../mod/settings.php:342 #: ../../mod/settings.php:343 ../../mod/settings.php:346 #: ../../mod/settings.php:357 @@ -2330,7 +2327,7 @@ msgstr "" msgid "Address Book" msgstr "" -#: ../../include/apps.php:131 ../../include/nav.php:111 ../../boot.php:1484 +#: ../../include/apps.php:131 ../../include/nav.php:111 ../../boot.php:1486 msgid "Login" msgstr "" @@ -2343,8 +2340,8 @@ msgstr "" msgid "Grid" msgstr "" -#: ../../include/apps.php:134 ../../include/widgets.php:553 -#: ../../include/nav.php:202 ../../mod/admin.php:1058 ../../mod/admin.php:1258 +#: ../../include/apps.php:134 ../../include/widgets.php:554 +#: ../../include/nav.php:202 ../../mod/admin.php:1064 ../../mod/admin.php:1264 msgid "Settings" msgstr "" @@ -2358,7 +2355,7 @@ msgid "Profile" msgstr "" #: ../../include/apps.php:140 ../../include/nav.php:196 -#: ../../mod/events.php:526 +#: ../../mod/events.php:523 msgid "Events" msgstr "" @@ -2383,8 +2380,8 @@ msgstr "" msgid "Chat" msgstr "" -#: ../../include/apps.php:147 ../../include/text.php:859 -#: ../../include/text.php:871 ../../include/nav.php:159 +#: ../../include/apps.php:147 ../../include/text.php:866 +#: ../../include/text.php:878 ../../include/nav.php:159 #: ../../mod/search.php:40 msgid "Search" msgstr "" @@ -2435,10 +2432,23 @@ msgstr "" msgid "Purchase" msgstr "" -#: ../../include/api.php:1300 +#: ../../include/api.php:1302 msgid "Public Timeline" msgstr "" +#: ../../include/import.php:23 +msgid "" +"Cannot create a duplicate channel identifier on this system. Import failed." +msgstr "" + +#: ../../include/import.php:70 +msgid "Channel clone failed. Import failed." +msgstr "" + +#: ../../include/import.php:80 ../../mod/import.php:139 +msgid "Cloned channel not found. Import failed." +msgstr "" + #: ../../include/enotify.php:96 #, php-format msgid "%s " @@ -2468,152 +2478,152 @@ msgstr "" msgid "Please visit %s to view and/or reply to your private messages." msgstr "" -#: ../../include/enotify.php:158 +#: ../../include/enotify.php:160 #, php-format msgid "%1$s, %2$s commented on [zrl=%3$s]a %4$s[/zrl]" msgstr "" -#: ../../include/enotify.php:166 +#: ../../include/enotify.php:168 #, php-format msgid "%1$s, %2$s commented on [zrl=%3$s]%4$s's %5$s[/zrl]" msgstr "" -#: ../../include/enotify.php:175 +#: ../../include/enotify.php:177 #, php-format msgid "%1$s, %2$s commented on [zrl=%3$s]your %4$s[/zrl]" msgstr "" -#: ../../include/enotify.php:186 +#: ../../include/enotify.php:188 #, php-format msgid "[Hubzilla:Notify] Comment to conversation #%1$d by %2$s" msgstr "" -#: ../../include/enotify.php:187 +#: ../../include/enotify.php:189 #, php-format msgid "%1$s, %2$s commented on an item/conversation you have been following." msgstr "" -#: ../../include/enotify.php:190 ../../include/enotify.php:205 -#: ../../include/enotify.php:231 ../../include/enotify.php:249 -#: ../../include/enotify.php:263 +#: ../../include/enotify.php:192 ../../include/enotify.php:207 +#: ../../include/enotify.php:233 ../../include/enotify.php:251 +#: ../../include/enotify.php:265 #, php-format msgid "Please visit %s to view and/or reply to the conversation." msgstr "" -#: ../../include/enotify.php:196 +#: ../../include/enotify.php:198 #, php-format msgid "[Hubzilla:Notify] %s posted to your profile wall" msgstr "" -#: ../../include/enotify.php:198 +#: ../../include/enotify.php:200 #, php-format msgid "%1$s, %2$s posted to your profile wall at %3$s" msgstr "" -#: ../../include/enotify.php:200 +#: ../../include/enotify.php:202 #, php-format msgid "%1$s, %2$s posted to [zrl=%3$s]your wall[/zrl]" msgstr "" -#: ../../include/enotify.php:224 +#: ../../include/enotify.php:226 #, php-format msgid "[Hubzilla:Notify] %s tagged you" msgstr "" -#: ../../include/enotify.php:225 +#: ../../include/enotify.php:227 #, php-format msgid "%1$s, %2$s tagged you at %3$s" msgstr "" -#: ../../include/enotify.php:226 +#: ../../include/enotify.php:228 #, php-format msgid "%1$s, %2$s [zrl=%3$s]tagged you[/zrl]." msgstr "" -#: ../../include/enotify.php:238 +#: ../../include/enotify.php:240 #, php-format msgid "[Hubzilla:Notify] %1$s poked you" msgstr "" -#: ../../include/enotify.php:239 +#: ../../include/enotify.php:241 #, php-format msgid "%1$s, %2$s poked you at %3$s" msgstr "" -#: ../../include/enotify.php:240 +#: ../../include/enotify.php:242 #, php-format msgid "%1$s, %2$s [zrl=%2$s]poked you[/zrl]." msgstr "" -#: ../../include/enotify.php:256 +#: ../../include/enotify.php:258 #, php-format msgid "[Hubzilla:Notify] %s tagged your post" msgstr "" -#: ../../include/enotify.php:257 +#: ../../include/enotify.php:259 #, php-format msgid "%1$s, %2$s tagged your post at %3$s" msgstr "" -#: ../../include/enotify.php:258 +#: ../../include/enotify.php:260 #, php-format msgid "%1$s, %2$s tagged [zrl=%3$s]your post[/zrl]" msgstr "" -#: ../../include/enotify.php:270 +#: ../../include/enotify.php:272 msgid "[Hubzilla:Notify] Introduction received" msgstr "" -#: ../../include/enotify.php:271 +#: ../../include/enotify.php:273 #, php-format msgid "%1$s, you've received an new connection request from '%2$s' at %3$s" msgstr "" -#: ../../include/enotify.php:272 +#: ../../include/enotify.php:274 #, php-format msgid "" "%1$s, you've received [zrl=%2$s]a new connection request[/zrl] from %3$s." msgstr "" -#: ../../include/enotify.php:276 ../../include/enotify.php:295 +#: ../../include/enotify.php:278 ../../include/enotify.php:297 #, php-format msgid "You may visit their profile at %s" msgstr "" -#: ../../include/enotify.php:278 +#: ../../include/enotify.php:280 #, php-format msgid "Please visit %s to approve or reject the connection request." msgstr "" -#: ../../include/enotify.php:285 +#: ../../include/enotify.php:287 msgid "[Hubzilla:Notify] Friend suggestion received" msgstr "" -#: ../../include/enotify.php:286 +#: ../../include/enotify.php:288 #, php-format msgid "%1$s, you've received a friend suggestion from '%2$s' at %3$s" msgstr "" -#: ../../include/enotify.php:287 +#: ../../include/enotify.php:289 #, php-format msgid "" "%1$s, you've received [zrl=%2$s]a friend suggestion[/zrl] for %3$s from %4$s." msgstr "" -#: ../../include/enotify.php:293 +#: ../../include/enotify.php:295 msgid "Name:" msgstr "" -#: ../../include/enotify.php:294 +#: ../../include/enotify.php:296 msgid "Photo:" msgstr "" -#: ../../include/enotify.php:297 +#: ../../include/enotify.php:299 #, php-format msgid "Please visit %s to approve or reject the suggestion." msgstr "" -#: ../../include/enotify.php:511 +#: ../../include/enotify.php:514 msgid "[Hubzilla:Notify]" msgstr "" @@ -2669,7 +2679,7 @@ msgstr "" msgid "I like this (toggle)" msgstr "" -#: ../../include/ItemObject.php:254 ../../include/taxonomy.php:317 +#: ../../include/ItemObject.php:254 ../../include/taxonomy.php:326 msgid "like" msgstr "" @@ -2677,7 +2687,7 @@ msgstr "" msgid "I don't like this (toggle)" msgstr "" -#: ../../include/ItemObject.php:255 ../../include/taxonomy.php:318 +#: ../../include/ItemObject.php:255 ../../include/taxonomy.php:327 msgid "dislike" msgstr "" @@ -2768,12 +2778,12 @@ msgstr "" msgid "Unable to verify channel signature" msgstr "" -#: ../../include/zot.php:2264 +#: ../../include/zot.php:2265 #, php-format msgid "Unable to verify site signature for %s" msgstr "" -#: ../../include/zot.php:3591 +#: ../../include/zot.php:3592 msgid "invalid target signature" msgstr "" @@ -2969,7 +2979,7 @@ msgid_plural "%d invitations available" msgstr[0] "" msgstr[1] "" -#: ../../include/contact_widgets.php:19 ../../mod/admin.php:438 +#: ../../include/contact_widgets.php:19 ../../mod/admin.php:439 msgid "Advanced" msgstr "" @@ -3012,12 +3022,12 @@ msgid "Advanced example: name=fred and country=iceland" msgstr "" #: ../../include/contact_widgets.php:60 ../../include/contact_widgets.php:98 -#: ../../include/widgets.php:306 +#: ../../include/widgets.php:307 msgid "Everything" msgstr "" -#: ../../include/contact_widgets.php:95 ../../include/taxonomy.php:271 -#: ../../include/widgets.php:35 +#: ../../include/contact_widgets.php:95 ../../include/widgets.php:36 +#: ../../include/taxonomy.php:280 msgid "Categories" msgstr "" @@ -3039,36 +3049,337 @@ msgid "" "not what you intended, please create another group with a different name." msgstr "" -#: ../../include/group.php:232 -msgid "Add new connections to this collection (privacy group)" +#: ../../include/group.php:232 +msgid "Add new connections to this collection (privacy group)" +msgstr "" + +#: ../../include/group.php:251 ../../mod/admin.php:814 +msgid "All Channels" +msgstr "" + +#: ../../include/group.php:273 +msgid "edit" +msgstr "" + +#: ../../include/group.php:295 +msgid "Collections" +msgstr "" + +#: ../../include/group.php:296 +msgid "Edit collection" +msgstr "" + +#: ../../include/group.php:297 +msgid "Add new collection" +msgstr "" + +#: ../../include/group.php:298 +msgid "Channels not in any collection" +msgstr "" + +#: ../../include/group.php:300 ../../include/widgets.php:275 +msgid "add" +msgstr "" + +#: ../../include/widgets.php:92 ../../include/nav.php:157 +#: ../../mod/apps.php:36 +msgid "Apps" +msgstr "" + +#: ../../include/widgets.php:93 +msgid "System" +msgstr "" + +#: ../../include/widgets.php:96 +msgid "Create Personal App" +msgstr "" + +#: ../../include/widgets.php:97 +msgid "Edit Personal App" +msgstr "" + +#: ../../include/widgets.php:139 ../../mod/suggest.php:54 +msgid "Ignore/Hide" +msgstr "" + +#: ../../include/widgets.php:144 ../../mod/connections.php:125 +msgid "Suggestions" +msgstr "" + +#: ../../include/widgets.php:145 +msgid "See more..." +msgstr "" + +#: ../../include/widgets.php:166 +#, php-format +msgid "You have %1$.0f of %2$.0f allowed connections." +msgstr "" + +#: ../../include/widgets.php:172 +msgid "Add New Connection" +msgstr "" + +#: ../../include/widgets.php:173 +msgid "Enter the channel address" +msgstr "" + +#: ../../include/widgets.php:174 +msgid "Example: bob@example.com, http://example.com/barbara" +msgstr "" + +#: ../../include/widgets.php:190 +msgid "Notes" +msgstr "" + +#: ../../include/widgets.php:192 ../../include/text.php:867 +#: ../../include/text.php:879 ../../mod/filer.php:49 ../../mod/admin.php:1442 +#: ../../mod/admin.php:1462 ../../mod/rbmark.php:28 ../../mod/rbmark.php:100 +msgid "Save" +msgstr "" + +#: ../../include/widgets.php:266 +msgid "Remove term" +msgstr "" + +#: ../../include/widgets.php:349 +msgid "Archives" +msgstr "" + +#: ../../include/widgets.php:428 ../../mod/connedit.php:571 +msgid "Me" +msgstr "" + +#: ../../include/widgets.php:429 ../../mod/connedit.php:572 +msgid "Family" +msgstr "" + +#: ../../include/widgets.php:431 ../../mod/connedit.php:574 +msgid "Acquaintances" +msgstr "" + +#: ../../include/widgets.php:432 ../../mod/connedit.php:575 +#: ../../mod/connections.php:88 ../../mod/connections.php:103 +msgid "All" +msgstr "" + +#: ../../include/widgets.php:451 +msgid "Refresh" +msgstr "" + +#: ../../include/widgets.php:485 +msgid "Account settings" +msgstr "" + +#: ../../include/widgets.php:491 +msgid "Channel settings" +msgstr "" + +#: ../../include/widgets.php:497 +msgid "Additional features" +msgstr "" + +#: ../../include/widgets.php:503 +msgid "Feature/Addon settings" +msgstr "" + +#: ../../include/widgets.php:509 +msgid "Display settings" +msgstr "" + +#: ../../include/widgets.php:515 +msgid "Connected apps" +msgstr "" + +#: ../../include/widgets.php:521 +msgid "Export channel" +msgstr "" + +#: ../../include/widgets.php:530 ../../mod/connedit.php:683 +msgid "Connection Default Permissions" +msgstr "" + +#: ../../include/widgets.php:538 +msgid "Premium Channel Settings" +msgstr "" + +#: ../../include/widgets.php:568 +msgid "Private Mail Menu" +msgstr "" + +#: ../../include/widgets.php:570 +msgid "Combined View" +msgstr "" + +#: ../../include/widgets.php:575 ../../include/nav.php:191 +msgid "Inbox" +msgstr "" + +#: ../../include/widgets.php:580 ../../include/nav.php:192 +msgid "Outbox" +msgstr "" + +#: ../../include/widgets.php:585 ../../include/nav.php:193 +msgid "New Message" +msgstr "" + +#: ../../include/widgets.php:604 ../../include/widgets.php:616 +msgid "Conversations" +msgstr "" + +#: ../../include/widgets.php:608 +msgid "Received Messages" +msgstr "" + +#: ../../include/widgets.php:612 +msgid "Sent Messages" +msgstr "" + +#: ../../include/widgets.php:626 +msgid "No messages." +msgstr "" + +#: ../../include/widgets.php:644 +msgid "Delete conversation" +msgstr "" + +#: ../../include/widgets.php:670 +msgid "Events Menu" +msgstr "" + +#: ../../include/widgets.php:671 +msgid "Day View" +msgstr "" + +#: ../../include/widgets.php:672 +msgid "Week View" +msgstr "" + +#: ../../include/widgets.php:673 +msgid "Month View" +msgstr "" + +#: ../../include/widgets.php:674 ../../mod/events.php:527 +msgid "Export" +msgstr "" + +#: ../../include/widgets.php:675 ../../mod/events.php:530 +msgid "Import" +msgstr "" + +#: ../../include/widgets.php:749 +msgid "Chat Rooms" +msgstr "" + +#: ../../include/widgets.php:769 +msgid "Bookmarked Chatrooms" +msgstr "" + +#: ../../include/widgets.php:789 +msgid "Suggested Chatrooms" +msgstr "" + +#: ../../include/widgets.php:916 ../../include/widgets.php:974 +msgid "photo/image" +msgstr "" + +#: ../../include/widgets.php:1069 ../../include/widgets.php:1071 +msgid "Rate Me" +msgstr "" + +#: ../../include/widgets.php:1075 +msgid "View Ratings" +msgstr "" + +#: ../../include/widgets.php:1086 +msgid "Public Hubs" +msgstr "" + +#: ../../include/widgets.php:1134 +msgid "Forums" +msgstr "" + +#: ../../include/widgets.php:1161 +msgid "Tasks" +msgstr "" + +#: ../../include/widgets.php:1170 +msgid "Documentation" +msgstr "" + +#: ../../include/widgets.php:1172 +msgid "Project/Site Information" +msgstr "" + +#: ../../include/widgets.php:1173 +msgid "For Members" +msgstr "" + +#: ../../include/widgets.php:1174 +msgid "For Administrators" +msgstr "" + +#: ../../include/widgets.php:1175 +msgid "For Developers" +msgstr "" + +#: ../../include/widgets.php:1200 ../../mod/admin.php:434 +msgid "Site" +msgstr "" + +#: ../../include/widgets.php:1201 +msgid "Accounts" +msgstr "" + +#: ../../include/widgets.php:1202 ../../mod/admin.php:965 +msgid "Channels" +msgstr "" + +#: ../../include/widgets.php:1203 ../../mod/admin.php:1062 +#: ../../mod/admin.php:1102 +msgid "Plugins" +msgstr "" + +#: ../../include/widgets.php:1204 ../../mod/admin.php:1262 +#: ../../mod/admin.php:1296 +msgid "Themes" +msgstr "" + +#: ../../include/widgets.php:1205 +msgid "Inspect queue" msgstr "" -#: ../../include/group.php:251 ../../mod/admin.php:813 -msgid "All Channels" +#: ../../include/widgets.php:1206 +msgid "Profile Config" msgstr "" -#: ../../include/group.php:273 -msgid "edit" +#: ../../include/widgets.php:1207 +msgid "DB updates" msgstr "" -#: ../../include/group.php:295 -msgid "Collections" +#: ../../include/widgets.php:1225 ../../include/widgets.php:1231 +#: ../../mod/admin.php:1381 +msgid "Logs" msgstr "" -#: ../../include/group.php:296 -msgid "Edit collection" +#: ../../include/widgets.php:1229 ../../include/nav.php:210 +msgid "Admin" msgstr "" -#: ../../include/group.php:297 -msgid "Add new collection" +#: ../../include/widgets.php:1230 +msgid "Plugin Features" msgstr "" -#: ../../include/group.php:298 -msgid "Channels not in any collection" +#: ../../include/widgets.php:1232 +msgid "User registrations waiting for confirmation" msgstr "" -#: ../../include/group.php:300 ../../include/widgets.php:274 -msgid "add" +#: ../../include/widgets.php:1311 ../../mod/photos.php:753 +#: ../../mod/photos.php:1286 +msgid "View Photo" +msgstr "" + +#: ../../include/widgets.php:1327 ../../mod/photos.php:782 +msgid "Edit Album" msgstr "" #: ../../include/message.php:18 @@ -3311,398 +3622,121 @@ msgid "Film/dance/culture/entertainment:" msgstr "" #: ../../include/identity.php:1332 -msgid "Love/Romance:" -msgstr "" - -#: ../../include/identity.php:1334 -msgid "Work/employment:" -msgstr "" - -#: ../../include/identity.php:1336 -msgid "School/education:" -msgstr "" - -#: ../../include/identity.php:1356 -msgid "Like this thing" -msgstr "" - -#: ../../include/taxonomy.php:229 ../../include/taxonomy.php:250 -msgid "Tags" -msgstr "" - -#: ../../include/taxonomy.php:294 -msgid "Keywords" -msgstr "" - -#: ../../include/taxonomy.php:315 -msgid "have" -msgstr "" - -#: ../../include/taxonomy.php:315 -msgid "has" -msgstr "" - -#: ../../include/taxonomy.php:316 -msgid "want" -msgstr "" - -#: ../../include/taxonomy.php:316 -msgid "wants" -msgstr "" - -#: ../../include/taxonomy.php:317 -msgid "likes" -msgstr "" - -#: ../../include/taxonomy.php:318 -msgid "dislikes" -msgstr "" - -#: ../../include/attach.php:246 ../../include/attach.php:332 -msgid "Item was not found." -msgstr "" - -#: ../../include/attach.php:496 -msgid "No source file." -msgstr "" - -#: ../../include/attach.php:514 -msgid "Cannot locate file to replace" -msgstr "" - -#: ../../include/attach.php:532 -msgid "Cannot locate file to revise/update" -msgstr "" - -#: ../../include/attach.php:667 -#, php-format -msgid "File exceeds size limit of %d" -msgstr "" - -#: ../../include/attach.php:681 -#, php-format -msgid "You have reached your limit of %1$.0f Mbytes attachment storage." -msgstr "" - -#: ../../include/attach.php:837 -msgid "File upload failed. Possible system limit or action terminated." -msgstr "" - -#: ../../include/attach.php:850 -msgid "Stored file could not be verified. Upload failed." -msgstr "" - -#: ../../include/attach.php:898 ../../include/attach.php:914 -msgid "Path not available." -msgstr "" - -#: ../../include/attach.php:960 ../../include/attach.php:1112 -msgid "Empty pathname" -msgstr "" - -#: ../../include/attach.php:986 -msgid "duplicate filename or path" -msgstr "" - -#: ../../include/attach.php:1008 -msgid "Path not found." -msgstr "" - -#: ../../include/attach.php:1066 -msgid "mkdir failed." -msgstr "" - -#: ../../include/attach.php:1070 -msgid "database storage failed." -msgstr "" - -#: ../../include/attach.php:1118 -msgid "Empty path" -msgstr "" - -#: ../../include/bb2diaspora.php:382 -msgid "Attachments:" -msgstr "" - -#: ../../include/bb2diaspora.php:473 -msgid "$Projectname event notification:" -msgstr "" - -#: ../../include/widgets.php:91 ../../include/nav.php:157 -#: ../../mod/apps.php:36 -msgid "Apps" -msgstr "" - -#: ../../include/widgets.php:92 -msgid "System" -msgstr "" - -#: ../../include/widgets.php:95 -msgid "Create Personal App" -msgstr "" - -#: ../../include/widgets.php:96 -msgid "Edit Personal App" -msgstr "" - -#: ../../include/widgets.php:138 ../../mod/suggest.php:54 -msgid "Ignore/Hide" -msgstr "" - -#: ../../include/widgets.php:143 ../../mod/connections.php:125 -msgid "Suggestions" -msgstr "" - -#: ../../include/widgets.php:144 -msgid "See more..." -msgstr "" - -#: ../../include/widgets.php:165 -#, php-format -msgid "You have %1$.0f of %2$.0f allowed connections." -msgstr "" - -#: ../../include/widgets.php:171 -msgid "Add New Connection" -msgstr "" - -#: ../../include/widgets.php:172 -msgid "Enter the channel address" -msgstr "" - -#: ../../include/widgets.php:173 -msgid "Example: bob@example.com, http://example.com/barbara" -msgstr "" - -#: ../../include/widgets.php:189 -msgid "Notes" -msgstr "" - -#: ../../include/widgets.php:191 ../../include/text.php:860 -#: ../../include/text.php:872 ../../mod/filer.php:49 ../../mod/admin.php:1436 -#: ../../mod/admin.php:1456 ../../mod/rbmark.php:28 ../../mod/rbmark.php:100 -msgid "Save" -msgstr "" - -#: ../../include/widgets.php:265 -msgid "Remove term" -msgstr "" - -#: ../../include/widgets.php:348 -msgid "Archives" -msgstr "" - -#: ../../include/widgets.php:427 ../../mod/connedit.php:571 -msgid "Me" -msgstr "" - -#: ../../include/widgets.php:428 ../../mod/connedit.php:572 -msgid "Family" -msgstr "" - -#: ../../include/widgets.php:430 ../../mod/connedit.php:574 -msgid "Acquaintances" -msgstr "" - -#: ../../include/widgets.php:431 ../../mod/connedit.php:575 -#: ../../mod/connections.php:88 ../../mod/connections.php:103 -msgid "All" -msgstr "" - -#: ../../include/widgets.php:450 -msgid "Refresh" -msgstr "" - -#: ../../include/widgets.php:484 -msgid "Account settings" -msgstr "" - -#: ../../include/widgets.php:490 -msgid "Channel settings" -msgstr "" - -#: ../../include/widgets.php:496 -msgid "Additional features" -msgstr "" - -#: ../../include/widgets.php:502 -msgid "Feature/Addon settings" -msgstr "" - -#: ../../include/widgets.php:508 -msgid "Display settings" -msgstr "" - -#: ../../include/widgets.php:514 -msgid "Connected apps" -msgstr "" - -#: ../../include/widgets.php:520 -msgid "Export channel" -msgstr "" - -#: ../../include/widgets.php:529 ../../mod/connedit.php:683 -msgid "Connection Default Permissions" -msgstr "" - -#: ../../include/widgets.php:537 -msgid "Premium Channel Settings" -msgstr "" - -#: ../../include/widgets.php:567 -msgid "Private Mail Menu" -msgstr "" - -#: ../../include/widgets.php:569 -msgid "Combined View" -msgstr "" - -#: ../../include/widgets.php:574 ../../include/nav.php:191 -msgid "Inbox" -msgstr "" - -#: ../../include/widgets.php:579 ../../include/nav.php:192 -msgid "Outbox" -msgstr "" - -#: ../../include/widgets.php:584 ../../include/nav.php:193 -msgid "New Message" -msgstr "" - -#: ../../include/widgets.php:603 ../../include/widgets.php:615 -msgid "Conversations" -msgstr "" - -#: ../../include/widgets.php:607 -msgid "Received Messages" -msgstr "" - -#: ../../include/widgets.php:611 -msgid "Sent Messages" -msgstr "" - -#: ../../include/widgets.php:625 -msgid "No messages." -msgstr "" - -#: ../../include/widgets.php:643 -msgid "Delete conversation" +msgid "Love/Romance:" msgstr "" -#: ../../include/widgets.php:734 -msgid "Chat Rooms" +#: ../../include/identity.php:1334 +msgid "Work/employment:" msgstr "" -#: ../../include/widgets.php:754 -msgid "Bookmarked Chatrooms" +#: ../../include/identity.php:1336 +msgid "School/education:" msgstr "" -#: ../../include/widgets.php:774 -msgid "Suggested Chatrooms" +#: ../../include/identity.php:1356 +msgid "Like this thing" msgstr "" -#: ../../include/widgets.php:901 ../../include/widgets.php:959 -msgid "photo/image" +#: ../../include/taxonomy.php:238 ../../include/taxonomy.php:259 +msgid "Tags" msgstr "" -#: ../../include/widgets.php:1054 ../../include/widgets.php:1056 -msgid "Rate Me" +#: ../../include/taxonomy.php:303 +msgid "Keywords" msgstr "" -#: ../../include/widgets.php:1060 -msgid "View Ratings" +#: ../../include/taxonomy.php:324 +msgid "have" msgstr "" -#: ../../include/widgets.php:1071 -msgid "Public Hubs" +#: ../../include/taxonomy.php:324 +msgid "has" msgstr "" -#: ../../include/widgets.php:1119 -msgid "Forums" +#: ../../include/taxonomy.php:325 +msgid "want" msgstr "" -#: ../../include/widgets.php:1146 -msgid "Tasks" +#: ../../include/taxonomy.php:325 +msgid "wants" msgstr "" -#: ../../include/widgets.php:1155 -msgid "Documentation" +#: ../../include/taxonomy.php:326 +msgid "likes" msgstr "" -#: ../../include/widgets.php:1157 -msgid "Project/Site Information" +#: ../../include/taxonomy.php:327 +msgid "dislikes" msgstr "" -#: ../../include/widgets.php:1158 -msgid "For Members" +#: ../../include/attach.php:246 ../../include/attach.php:332 +msgid "Item was not found." msgstr "" -#: ../../include/widgets.php:1159 -msgid "For Administrators" +#: ../../include/attach.php:496 +msgid "No source file." msgstr "" -#: ../../include/widgets.php:1160 -msgid "For Developers" +#: ../../include/attach.php:514 +msgid "Cannot locate file to replace" msgstr "" -#: ../../include/widgets.php:1185 ../../mod/admin.php:433 -msgid "Site" +#: ../../include/attach.php:532 +msgid "Cannot locate file to revise/update" msgstr "" -#: ../../include/widgets.php:1186 -msgid "Accounts" +#: ../../include/attach.php:667 +#, php-format +msgid "File exceeds size limit of %d" msgstr "" -#: ../../include/widgets.php:1187 ../../mod/admin.php:964 -msgid "Channels" +#: ../../include/attach.php:681 +#, php-format +msgid "You have reached your limit of %1$.0f Mbytes attachment storage." msgstr "" -#: ../../include/widgets.php:1188 ../../mod/admin.php:1056 -#: ../../mod/admin.php:1096 -msgid "Plugins" +#: ../../include/attach.php:837 +msgid "File upload failed. Possible system limit or action terminated." msgstr "" -#: ../../include/widgets.php:1189 ../../mod/admin.php:1256 -#: ../../mod/admin.php:1290 -msgid "Themes" +#: ../../include/attach.php:850 +msgid "Stored file could not be verified. Upload failed." msgstr "" -#: ../../include/widgets.php:1190 -msgid "Inspect queue" +#: ../../include/attach.php:898 ../../include/attach.php:914 +msgid "Path not available." msgstr "" -#: ../../include/widgets.php:1191 -msgid "Profile Config" +#: ../../include/attach.php:960 ../../include/attach.php:1112 +msgid "Empty pathname" msgstr "" -#: ../../include/widgets.php:1192 -msgid "DB updates" +#: ../../include/attach.php:986 +msgid "duplicate filename or path" msgstr "" -#: ../../include/widgets.php:1210 ../../include/widgets.php:1216 -#: ../../mod/admin.php:1375 -msgid "Logs" +#: ../../include/attach.php:1008 +msgid "Path not found." msgstr "" -#: ../../include/widgets.php:1214 ../../include/nav.php:210 -msgid "Admin" +#: ../../include/attach.php:1066 +msgid "mkdir failed." msgstr "" -#: ../../include/widgets.php:1215 -msgid "Plugin Features" +#: ../../include/attach.php:1070 +msgid "database storage failed." msgstr "" -#: ../../include/widgets.php:1217 -msgid "User registrations waiting for confirmation" +#: ../../include/attach.php:1118 +msgid "Empty path" msgstr "" -#: ../../include/widgets.php:1275 ../../mod/photos.php:753 -#: ../../mod/photos.php:1286 -msgid "View Photo" +#: ../../include/bb2diaspora.php:382 +msgid "Attachments:" msgstr "" -#: ../../include/widgets.php:1291 ../../mod/photos.php:782 -msgid "Edit Album" +#: ../../include/bb2diaspora.php:473 +msgid "$Projectname event notification:" msgstr "" #: ../../include/text.php:393 @@ -3729,222 +3763,222 @@ msgstr "" msgid "newer" msgstr "" -#: ../../include/text.php:777 +#: ../../include/text.php:784 msgid "No connections" msgstr "" -#: ../../include/text.php:789 +#: ../../include/text.php:796 #, php-format msgid "%d Connection" msgid_plural "%d Connections" msgstr[0] "" msgstr[1] "" -#: ../../include/text.php:802 ../../mod/viewconnections.php:101 +#: ../../include/text.php:809 ../../mod/viewconnections.php:101 msgid "View Connections" msgstr "" -#: ../../include/text.php:946 +#: ../../include/text.php:953 msgid "poke" msgstr "" -#: ../../include/text.php:947 +#: ../../include/text.php:954 msgid "ping" msgstr "" -#: ../../include/text.php:947 +#: ../../include/text.php:954 msgid "pinged" msgstr "" -#: ../../include/text.php:948 +#: ../../include/text.php:955 msgid "prod" msgstr "" -#: ../../include/text.php:948 +#: ../../include/text.php:955 msgid "prodded" msgstr "" -#: ../../include/text.php:949 +#: ../../include/text.php:956 msgid "slap" msgstr "" -#: ../../include/text.php:949 +#: ../../include/text.php:956 msgid "slapped" msgstr "" -#: ../../include/text.php:950 +#: ../../include/text.php:957 msgid "finger" msgstr "" -#: ../../include/text.php:950 +#: ../../include/text.php:957 msgid "fingered" msgstr "" -#: ../../include/text.php:951 +#: ../../include/text.php:958 msgid "rebuff" msgstr "" -#: ../../include/text.php:951 +#: ../../include/text.php:958 msgid "rebuffed" msgstr "" -#: ../../include/text.php:961 +#: ../../include/text.php:968 msgid "happy" msgstr "" -#: ../../include/text.php:962 +#: ../../include/text.php:969 msgid "sad" msgstr "" -#: ../../include/text.php:963 +#: ../../include/text.php:970 msgid "mellow" msgstr "" -#: ../../include/text.php:964 +#: ../../include/text.php:971 msgid "tired" msgstr "" -#: ../../include/text.php:965 +#: ../../include/text.php:972 msgid "perky" msgstr "" -#: ../../include/text.php:966 +#: ../../include/text.php:973 msgid "angry" msgstr "" -#: ../../include/text.php:967 +#: ../../include/text.php:974 msgid "stupified" msgstr "" -#: ../../include/text.php:968 +#: ../../include/text.php:975 msgid "puzzled" msgstr "" -#: ../../include/text.php:969 +#: ../../include/text.php:976 msgid "interested" msgstr "" -#: ../../include/text.php:970 +#: ../../include/text.php:977 msgid "bitter" msgstr "" -#: ../../include/text.php:971 +#: ../../include/text.php:978 msgid "cheerful" msgstr "" -#: ../../include/text.php:972 +#: ../../include/text.php:979 msgid "alive" msgstr "" -#: ../../include/text.php:973 +#: ../../include/text.php:980 msgid "annoyed" msgstr "" -#: ../../include/text.php:974 +#: ../../include/text.php:981 msgid "anxious" msgstr "" -#: ../../include/text.php:975 +#: ../../include/text.php:982 msgid "cranky" msgstr "" -#: ../../include/text.php:976 +#: ../../include/text.php:983 msgid "disturbed" msgstr "" -#: ../../include/text.php:977 +#: ../../include/text.php:984 msgid "frustrated" msgstr "" -#: ../../include/text.php:978 +#: ../../include/text.php:985 msgid "depressed" msgstr "" -#: ../../include/text.php:979 +#: ../../include/text.php:986 msgid "motivated" msgstr "" -#: ../../include/text.php:980 +#: ../../include/text.php:987 msgid "relaxed" msgstr "" -#: ../../include/text.php:981 +#: ../../include/text.php:988 msgid "surprised" msgstr "" -#: ../../include/text.php:1157 +#: ../../include/text.php:1164 msgid "May" msgstr "" -#: ../../include/text.php:1234 ../../include/text.php:1238 +#: ../../include/text.php:1241 ../../include/text.php:1245 msgid "Unknown Attachment" msgstr "" -#: ../../include/text.php:1240 +#: ../../include/text.php:1247 msgid "unknown" msgstr "" -#: ../../include/text.php:1276 +#: ../../include/text.php:1283 msgid "remove category" msgstr "" -#: ../../include/text.php:1353 +#: ../../include/text.php:1360 msgid "remove from file" msgstr "" -#: ../../include/text.php:1465 ../../include/text.php:1476 +#: ../../include/text.php:1472 ../../include/text.php:1483 msgid "Click to open/close" msgstr "" -#: ../../include/text.php:1649 ../../mod/events.php:497 +#: ../../include/text.php:1656 ../../mod/events.php:495 msgid "Link to Source" msgstr "" -#: ../../include/text.php:1670 ../../include/text.php:1742 +#: ../../include/text.php:1677 ../../include/text.php:1749 msgid "default" msgstr "" -#: ../../include/text.php:1678 +#: ../../include/text.php:1685 msgid "Page layout" msgstr "" -#: ../../include/text.php:1678 +#: ../../include/text.php:1685 msgid "You can create your own with the layouts tool" msgstr "" -#: ../../include/text.php:1720 +#: ../../include/text.php:1727 msgid "Page content type" msgstr "" -#: ../../include/text.php:1754 +#: ../../include/text.php:1761 msgid "Select an alternate language" msgstr "" -#: ../../include/text.php:1886 +#: ../../include/text.php:1893 msgid "activity" msgstr "" -#: ../../include/text.php:2181 +#: ../../include/text.php:2188 msgid "Design Tools" msgstr "" -#: ../../include/text.php:2184 ../../mod/blocks.php:147 +#: ../../include/text.php:2191 ../../mod/blocks.php:147 msgid "Blocks" msgstr "" -#: ../../include/text.php:2185 ../../mod/menu.php:103 +#: ../../include/text.php:2192 ../../mod/menu.php:103 msgid "Menus" msgstr "" -#: ../../include/text.php:2186 ../../mod/layouts.php:174 +#: ../../include/text.php:2193 ../../mod/layouts.php:174 msgid "Layouts" msgstr "" -#: ../../include/text.php:2187 +#: ../../include/text.php:2194 msgid "Pages" msgstr "" -#: ../../include/nav.php:82 ../../include/nav.php:114 ../../boot.php:1483 +#: ../../include/nav.php:82 ../../include/nav.php:114 ../../boot.php:1485 msgid "Logout" msgstr "" @@ -4017,7 +4051,7 @@ msgstr "" msgid "Home Page" msgstr "" -#: ../../include/nav.php:149 ../../mod/register.php:224 ../../boot.php:1460 +#: ../../include/nav.php:149 ../../mod/register.php:224 ../../boot.php:1462 msgid "Register" msgstr "" @@ -4135,10 +4169,10 @@ msgstr "" #: ../../mod/mitem.php:229 ../../mod/connedit.php:635 #: ../../mod/connedit.php:684 ../../mod/filestorage.php:151 #: ../../mod/filestorage.php:159 ../../mod/photos.php:626 -#: ../../mod/admin.php:409 ../../mod/menu.php:96 ../../mod/menu.php:153 +#: ../../mod/admin.php:410 ../../mod/menu.php:96 ../../mod/menu.php:153 #: ../../mod/settings.php:575 ../../mod/api.php:106 #: ../../view/theme/redbasic/php/config.php:104 -#: ../../view/theme/redbasic/php/config.php:129 ../../boot.php:1488 +#: ../../view/theme/redbasic/php/config.php:129 ../../boot.php:1490 msgid "No" msgstr "" @@ -4147,10 +4181,10 @@ msgstr "" #: ../../mod/mitem.php:154 ../../mod/mitem.php:155 ../../mod/mitem.php:228 #: ../../mod/mitem.php:229 ../../mod/filestorage.php:151 #: ../../mod/filestorage.php:159 ../../mod/photos.php:626 -#: ../../mod/admin.php:411 ../../mod/menu.php:96 ../../mod/menu.php:153 +#: ../../mod/admin.php:412 ../../mod/menu.php:96 ../../mod/menu.php:153 #: ../../mod/settings.php:575 ../../mod/api.php:105 #: ../../view/theme/redbasic/php/config.php:104 -#: ../../view/theme/redbasic/php/config.php:129 ../../boot.php:1488 +#: ../../view/theme/redbasic/php/config.php:129 ../../boot.php:1490 msgid "Yes" msgstr "" @@ -4780,11 +4814,11 @@ msgstr "" msgid "View recent posts and comments" msgstr "" -#: ../../mod/connedit.php:519 ../../mod/admin.php:810 +#: ../../mod/connedit.php:519 ../../mod/admin.php:811 msgid "Unblock" msgstr "" -#: ../../mod/connedit.php:519 ../../mod/admin.php:809 +#: ../../mod/connedit.php:519 ../../mod/admin.php:810 msgid "Block" msgstr "" @@ -4940,7 +4974,7 @@ msgid "" "communication." msgstr "" -#: ../../mod/connedit.php:710 ../../mod/admin.php:806 +#: ../../mod/connedit.php:710 ../../mod/admin.php:807 msgid "Approve" msgstr "" @@ -5175,12 +5209,12 @@ msgstr "" msgid "%1$s's Chatrooms" msgstr "" -#: ../../mod/search.php:211 +#: ../../mod/search.php:212 #, php-format msgid "Items tagged with: %s" msgstr "" -#: ../../mod/search.php:213 +#: ../../mod/search.php:214 #, php-format msgid "Search results for: %s" msgstr "" @@ -5293,7 +5327,7 @@ msgstr "" msgid "Private Photo" msgstr "" -#: ../../mod/photos.php:905 ../../mod/events.php:528 +#: ../../mod/photos.php:905 ../../mod/events.php:525 ../../mod/events.php:532 msgid "Previous" msgstr "" @@ -5301,7 +5335,8 @@ msgstr "" msgid "View Full Size" msgstr "" -#: ../../mod/photos.php:914 ../../mod/events.php:529 ../../mod/setup.php:285 +#: ../../mod/photos.php:914 ../../mod/events.php:526 ../../mod/events.php:533 +#: ../../mod/setup.php:285 msgid "Next" msgstr "" @@ -5398,7 +5433,7 @@ msgstr "" msgid "Item is not editable" msgstr "" -#: ../../mod/editpost.php:55 +#: ../../mod/editpost.php:57 msgid "Delete item?" msgstr "" @@ -5450,10 +5485,10 @@ msgstr "" msgid "Message queues" msgstr "" -#: ../../mod/admin.php:198 ../../mod/admin.php:432 ../../mod/admin.php:531 -#: ../../mod/admin.php:799 ../../mod/admin.php:963 ../../mod/admin.php:1055 -#: ../../mod/admin.php:1095 ../../mod/admin.php:1255 ../../mod/admin.php:1289 -#: ../../mod/admin.php:1374 +#: ../../mod/admin.php:198 ../../mod/admin.php:433 ../../mod/admin.php:532 +#: ../../mod/admin.php:800 ../../mod/admin.php:964 ../../mod/admin.php:1061 +#: ../../mod/admin.php:1101 ../../mod/admin.php:1261 ../../mod/admin.php:1295 +#: ../../mod/admin.php:1380 msgid "Administration" msgstr "" @@ -5465,7 +5500,7 @@ msgstr "" msgid "Registered accounts" msgstr "" -#: ../../mod/admin.php:203 ../../mod/admin.php:535 +#: ../../mod/admin.php:203 ../../mod/admin.php:536 msgid "Pending registrations" msgstr "" @@ -5473,7 +5508,7 @@ msgstr "" msgid "Registered channels" msgstr "" -#: ../../mod/admin.php:205 ../../mod/admin.php:536 +#: ../../mod/admin.php:205 ../../mod/admin.php:537 msgid "Active plugins" msgstr "" @@ -5497,666 +5532,666 @@ msgstr "" msgid "unsupported" msgstr "" -#: ../../mod/admin.php:410 +#: ../../mod/admin.php:411 msgid "Yes - with approval" msgstr "" -#: ../../mod/admin.php:416 +#: ../../mod/admin.php:417 msgid "My site is not a public server" msgstr "" -#: ../../mod/admin.php:417 +#: ../../mod/admin.php:418 msgid "My site has paid access only" msgstr "" -#: ../../mod/admin.php:418 +#: ../../mod/admin.php:419 msgid "My site has free access only" msgstr "" -#: ../../mod/admin.php:419 +#: ../../mod/admin.php:420 msgid "My site offers free accounts with optional paid upgrades" msgstr "" -#: ../../mod/admin.php:435 ../../mod/register.php:207 +#: ../../mod/admin.php:436 ../../mod/register.php:207 msgid "Registration" msgstr "" -#: ../../mod/admin.php:436 +#: ../../mod/admin.php:437 msgid "File upload" msgstr "" -#: ../../mod/admin.php:437 +#: ../../mod/admin.php:438 msgid "Policies" msgstr "" -#: ../../mod/admin.php:442 +#: ../../mod/admin.php:443 msgid "Site name" msgstr "" -#: ../../mod/admin.php:443 +#: ../../mod/admin.php:444 msgid "Banner/Logo" msgstr "" -#: ../../mod/admin.php:444 +#: ../../mod/admin.php:445 msgid "Administrator Information" msgstr "" -#: ../../mod/admin.php:444 +#: ../../mod/admin.php:445 msgid "" "Contact information for site administrators. Displayed on siteinfo page. " "BBCode can be used here" msgstr "" -#: ../../mod/admin.php:445 +#: ../../mod/admin.php:446 msgid "System language" msgstr "" -#: ../../mod/admin.php:446 +#: ../../mod/admin.php:447 msgid "System theme" msgstr "" -#: ../../mod/admin.php:446 +#: ../../mod/admin.php:447 msgid "" "Default system theme - may be over-ridden by user profiles - change theme settings" msgstr "" -#: ../../mod/admin.php:447 +#: ../../mod/admin.php:448 msgid "Mobile system theme" msgstr "" -#: ../../mod/admin.php:447 +#: ../../mod/admin.php:448 msgid "Theme for mobile devices" msgstr "" -#: ../../mod/admin.php:449 +#: ../../mod/admin.php:450 msgid "Allow Feeds as Connections" msgstr "" -#: ../../mod/admin.php:449 +#: ../../mod/admin.php:450 msgid "(Heavy system resource usage)" msgstr "" -#: ../../mod/admin.php:450 +#: ../../mod/admin.php:451 msgid "Maximum image size" msgstr "" -#: ../../mod/admin.php:450 +#: ../../mod/admin.php:451 msgid "" "Maximum size in bytes of uploaded images. Default is 0, which means no " "limits." msgstr "" -#: ../../mod/admin.php:451 +#: ../../mod/admin.php:452 msgid "Does this site allow new member registration?" msgstr "" -#: ../../mod/admin.php:452 +#: ../../mod/admin.php:453 msgid "Which best describes the types of account offered by this hub?" msgstr "" -#: ../../mod/admin.php:453 +#: ../../mod/admin.php:454 msgid "Register text" msgstr "" -#: ../../mod/admin.php:453 +#: ../../mod/admin.php:454 msgid "Will be displayed prominently on the registration page." msgstr "" -#: ../../mod/admin.php:454 +#: ../../mod/admin.php:455 msgid "Site homepage to show visitors (default: login box)" msgstr "" -#: ../../mod/admin.php:454 +#: ../../mod/admin.php:455 msgid "" "example: 'public' to show public stream, 'page/sys/home' to show a system " "webpage called 'home' or 'include:home.html' to include a file." msgstr "" -#: ../../mod/admin.php:455 +#: ../../mod/admin.php:456 msgid "Preserve site homepage URL" msgstr "" -#: ../../mod/admin.php:455 +#: ../../mod/admin.php:456 msgid "" "Present the site homepage in a frame at the original location instead of " "redirecting" msgstr "" -#: ../../mod/admin.php:456 +#: ../../mod/admin.php:457 msgid "Accounts abandoned after x days" msgstr "" -#: ../../mod/admin.php:456 +#: ../../mod/admin.php:457 msgid "" "Will not waste system resources polling external sites for abandonded " "accounts. Enter 0 for no time limit." msgstr "" -#: ../../mod/admin.php:457 +#: ../../mod/admin.php:458 msgid "Allowed friend domains" msgstr "" -#: ../../mod/admin.php:457 +#: ../../mod/admin.php:458 msgid "" "Comma separated list of domains which are allowed to establish friendships " "with this site. Wildcards are accepted. Empty to allow any domains" msgstr "" -#: ../../mod/admin.php:458 +#: ../../mod/admin.php:459 msgid "Allowed email domains" msgstr "" -#: ../../mod/admin.php:458 +#: ../../mod/admin.php:459 msgid "" "Comma separated list of domains which are allowed in email addresses for " "registrations to this site. Wildcards are accepted. Empty to allow any " "domains" msgstr "" -#: ../../mod/admin.php:459 +#: ../../mod/admin.php:460 msgid "Not allowed email domains" msgstr "" -#: ../../mod/admin.php:459 +#: ../../mod/admin.php:460 msgid "" "Comma separated list of domains which are not allowed in email addresses for " "registrations to this site. Wildcards are accepted. Empty to allow any " "domains, unless allowed domains have been defined." msgstr "" -#: ../../mod/admin.php:460 +#: ../../mod/admin.php:461 msgid "Block public" msgstr "" -#: ../../mod/admin.php:460 +#: ../../mod/admin.php:461 msgid "" "Check to block public access to all otherwise public personal pages on this " "site unless you are currently logged in." msgstr "" -#: ../../mod/admin.php:461 +#: ../../mod/admin.php:462 msgid "Verify Email Addresses" msgstr "" -#: ../../mod/admin.php:461 +#: ../../mod/admin.php:462 msgid "" "Check to verify email addresses used in account registration (recommended)." msgstr "" -#: ../../mod/admin.php:462 +#: ../../mod/admin.php:463 msgid "Force publish" msgstr "" -#: ../../mod/admin.php:462 +#: ../../mod/admin.php:463 msgid "" "Check to force all profiles on this site to be listed in the site directory." msgstr "" -#: ../../mod/admin.php:463 +#: ../../mod/admin.php:464 msgid "Disable discovery tab" msgstr "" -#: ../../mod/admin.php:463 +#: ../../mod/admin.php:464 msgid "" "Remove the tab in the network view with public content pulled from sources " "chosen for this site." msgstr "" -#: ../../mod/admin.php:464 +#: ../../mod/admin.php:465 msgid "login on Homepage" msgstr "" -#: ../../mod/admin.php:464 +#: ../../mod/admin.php:465 msgid "" "Present a login box to visitors on the home page if no other content has " "been configured." msgstr "" -#: ../../mod/admin.php:466 +#: ../../mod/admin.php:467 msgid "Directory Server URL" msgstr "" -#: ../../mod/admin.php:466 +#: ../../mod/admin.php:467 msgid "Default directory server" msgstr "" -#: ../../mod/admin.php:468 +#: ../../mod/admin.php:469 msgid "Proxy user" msgstr "" -#: ../../mod/admin.php:469 +#: ../../mod/admin.php:470 msgid "Proxy URL" msgstr "" -#: ../../mod/admin.php:470 +#: ../../mod/admin.php:471 msgid "Network timeout" msgstr "" -#: ../../mod/admin.php:470 +#: ../../mod/admin.php:471 msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." msgstr "" -#: ../../mod/admin.php:471 +#: ../../mod/admin.php:472 msgid "Delivery interval" msgstr "" -#: ../../mod/admin.php:471 +#: ../../mod/admin.php:472 msgid "" "Delay background delivery processes by this many seconds to reduce system " "load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 " "for large dedicated servers." msgstr "" -#: ../../mod/admin.php:472 +#: ../../mod/admin.php:473 msgid "Deliveries per process" msgstr "" -#: ../../mod/admin.php:472 +#: ../../mod/admin.php:473 msgid "" "Number of deliveries to attempt in a single operating system process. Adjust " "if necessary to tune system performance. Recommend: 1-5." msgstr "" -#: ../../mod/admin.php:473 +#: ../../mod/admin.php:474 msgid "Poll interval" msgstr "" -#: ../../mod/admin.php:473 +#: ../../mod/admin.php:474 msgid "" "Delay background polling processes by this many seconds to reduce system " "load. If 0, use delivery interval." msgstr "" -#: ../../mod/admin.php:474 +#: ../../mod/admin.php:475 msgid "Maximum Load Average" msgstr "" -#: ../../mod/admin.php:474 +#: ../../mod/admin.php:475 msgid "" "Maximum system load before delivery and poll processes are deferred - " "default 50." msgstr "" -#: ../../mod/admin.php:475 +#: ../../mod/admin.php:476 msgid "Expiration period in days for imported (matrix/network) content" msgstr "" -#: ../../mod/admin.php:475 +#: ../../mod/admin.php:476 msgid "0 for no expiration of imported content" msgstr "" -#: ../../mod/admin.php:523 +#: ../../mod/admin.php:524 msgid "No server found" msgstr "" -#: ../../mod/admin.php:530 ../../mod/admin.php:813 +#: ../../mod/admin.php:531 ../../mod/admin.php:814 msgid "ID" msgstr "" -#: ../../mod/admin.php:530 +#: ../../mod/admin.php:531 msgid "for channel" msgstr "" -#: ../../mod/admin.php:530 +#: ../../mod/admin.php:531 msgid "on server" msgstr "" -#: ../../mod/admin.php:530 +#: ../../mod/admin.php:531 msgid "Status" msgstr "" -#: ../../mod/admin.php:532 +#: ../../mod/admin.php:533 msgid "Server" msgstr "" -#: ../../mod/admin.php:549 +#: ../../mod/admin.php:550 msgid "Update has been marked successful" msgstr "" -#: ../../mod/admin.php:559 +#: ../../mod/admin.php:560 #, php-format msgid "Executing %s failed. Check system logs." msgstr "" -#: ../../mod/admin.php:562 +#: ../../mod/admin.php:563 #, php-format msgid "Update %s was successfully applied." msgstr "" -#: ../../mod/admin.php:566 +#: ../../mod/admin.php:567 #, php-format msgid "Update %s did not return a status. Unknown if it succeeded." msgstr "" -#: ../../mod/admin.php:569 +#: ../../mod/admin.php:570 #, php-format msgid "Update function %s could not be found." msgstr "" -#: ../../mod/admin.php:585 +#: ../../mod/admin.php:586 msgid "No failed updates." msgstr "" -#: ../../mod/admin.php:589 +#: ../../mod/admin.php:590 msgid "Failed Updates" msgstr "" -#: ../../mod/admin.php:591 +#: ../../mod/admin.php:592 msgid "Mark success (if update was manually applied)" msgstr "" -#: ../../mod/admin.php:592 +#: ../../mod/admin.php:593 msgid "Attempt to execute this update step automatically" msgstr "" -#: ../../mod/admin.php:624 +#: ../../mod/admin.php:625 msgid "Queue Statistics" msgstr "" -#: ../../mod/admin.php:625 +#: ../../mod/admin.php:626 msgid "Total Entries" msgstr "" -#: ../../mod/admin.php:626 +#: ../../mod/admin.php:627 msgid "Priority" msgstr "" -#: ../../mod/admin.php:627 +#: ../../mod/admin.php:628 msgid "Destination URL" msgstr "" -#: ../../mod/admin.php:628 +#: ../../mod/admin.php:629 msgid "Mark hub permanently offline" msgstr "" -#: ../../mod/admin.php:629 +#: ../../mod/admin.php:630 msgid "Empty queue for this hub" msgstr "" -#: ../../mod/admin.php:630 +#: ../../mod/admin.php:631 msgid "Last known contact" msgstr "" -#: ../../mod/admin.php:666 +#: ../../mod/admin.php:667 #, php-format msgid "%s account blocked/unblocked" msgid_plural "%s account blocked/unblocked" msgstr[0] "" msgstr[1] "" -#: ../../mod/admin.php:674 +#: ../../mod/admin.php:675 #, php-format msgid "%s account deleted" msgid_plural "%s accounts deleted" msgstr[0] "" msgstr[1] "" -#: ../../mod/admin.php:710 +#: ../../mod/admin.php:711 msgid "Account not found" msgstr "" -#: ../../mod/admin.php:722 +#: ../../mod/admin.php:723 #, php-format msgid "Account '%s' deleted" msgstr "" -#: ../../mod/admin.php:730 +#: ../../mod/admin.php:731 #, php-format msgid "Account '%s' blocked" msgstr "" -#: ../../mod/admin.php:738 +#: ../../mod/admin.php:739 #, php-format msgid "Account '%s' unblocked" msgstr "" -#: ../../mod/admin.php:800 ../../mod/admin.php:812 +#: ../../mod/admin.php:801 ../../mod/admin.php:813 msgid "Users" msgstr "" -#: ../../mod/admin.php:802 ../../mod/admin.php:966 +#: ../../mod/admin.php:803 ../../mod/admin.php:967 msgid "select all" msgstr "" -#: ../../mod/admin.php:803 +#: ../../mod/admin.php:804 msgid "User registrations waiting for confirm" msgstr "" -#: ../../mod/admin.php:804 +#: ../../mod/admin.php:805 msgid "Request date" msgstr "" -#: ../../mod/admin.php:805 +#: ../../mod/admin.php:806 msgid "No registrations." msgstr "" -#: ../../mod/admin.php:807 +#: ../../mod/admin.php:808 msgid "Deny" msgstr "" -#: ../../mod/admin.php:813 +#: ../../mod/admin.php:814 msgid "Register date" msgstr "" -#: ../../mod/admin.php:813 +#: ../../mod/admin.php:814 msgid "Last login" msgstr "" -#: ../../mod/admin.php:813 +#: ../../mod/admin.php:814 msgid "Expires" msgstr "" -#: ../../mod/admin.php:813 +#: ../../mod/admin.php:814 msgid "Service Class" msgstr "" -#: ../../mod/admin.php:815 +#: ../../mod/admin.php:816 msgid "" "Selected accounts will be deleted!\\n\\nEverything these accounts had posted " "on this site will be permanently deleted!\\n\\nAre you sure?" msgstr "" -#: ../../mod/admin.php:816 +#: ../../mod/admin.php:817 msgid "" "The account {0} will be deleted!\\n\\nEverything this account has posted on " "this site will be permanently deleted!\\n\\nAre you sure?" msgstr "" -#: ../../mod/admin.php:852 +#: ../../mod/admin.php:853 #, php-format msgid "%s channel censored/uncensored" msgid_plural "%s channels censored/uncensored" msgstr[0] "" msgstr[1] "" -#: ../../mod/admin.php:861 +#: ../../mod/admin.php:862 #, php-format msgid "%s channel code allowed/disallowed" msgid_plural "%s channels code allowed/disallowed" msgstr[0] "" msgstr[1] "" -#: ../../mod/admin.php:868 +#: ../../mod/admin.php:869 #, php-format msgid "%s channel deleted" msgid_plural "%s channels deleted" msgstr[0] "" msgstr[1] "" -#: ../../mod/admin.php:888 +#: ../../mod/admin.php:889 msgid "Channel not found" msgstr "" -#: ../../mod/admin.php:899 +#: ../../mod/admin.php:900 #, php-format msgid "Channel '%s' deleted" msgstr "" -#: ../../mod/admin.php:911 +#: ../../mod/admin.php:912 #, php-format msgid "Channel '%s' censored" msgstr "" -#: ../../mod/admin.php:911 +#: ../../mod/admin.php:912 #, php-format msgid "Channel '%s' uncensored" msgstr "" -#: ../../mod/admin.php:922 +#: ../../mod/admin.php:923 #, php-format msgid "Channel '%s' code allowed" msgstr "" -#: ../../mod/admin.php:922 +#: ../../mod/admin.php:923 #, php-format msgid "Channel '%s' code disallowed" msgstr "" -#: ../../mod/admin.php:968 +#: ../../mod/admin.php:969 msgid "Censor" msgstr "" -#: ../../mod/admin.php:969 +#: ../../mod/admin.php:970 msgid "Uncensor" msgstr "" -#: ../../mod/admin.php:970 +#: ../../mod/admin.php:971 msgid "Allow Code" msgstr "" -#: ../../mod/admin.php:971 +#: ../../mod/admin.php:972 msgid "Disallow Code" msgstr "" -#: ../../mod/admin.php:973 +#: ../../mod/admin.php:974 msgid "UID" msgstr "" -#: ../../mod/admin.php:973 ../../mod/profiles.php:447 +#: ../../mod/admin.php:974 ../../mod/profiles.php:447 msgid "Address" msgstr "" -#: ../../mod/admin.php:975 +#: ../../mod/admin.php:976 msgid "" "Selected channels will be deleted!\\n\\nEverything that was posted in these " "channels on this site will be permanently deleted!\\n\\nAre you sure?" msgstr "" -#: ../../mod/admin.php:976 +#: ../../mod/admin.php:977 msgid "" "The channel {0} will be deleted!\\n\\nEverything that was posted in this " "channel on this site will be permanently deleted!\\n\\nAre you sure?" msgstr "" -#: ../../mod/admin.php:1016 +#: ../../mod/admin.php:1017 #, php-format msgid "Plugin %s disabled." msgstr "" -#: ../../mod/admin.php:1020 +#: ../../mod/admin.php:1021 #, php-format msgid "Plugin %s enabled." msgstr "" -#: ../../mod/admin.php:1030 ../../mod/admin.php:1228 +#: ../../mod/admin.php:1031 ../../mod/admin.php:1234 msgid "Disable" msgstr "" -#: ../../mod/admin.php:1033 ../../mod/admin.php:1230 +#: ../../mod/admin.php:1034 ../../mod/admin.php:1236 msgid "Enable" msgstr "" -#: ../../mod/admin.php:1057 ../../mod/admin.php:1257 +#: ../../mod/admin.php:1063 ../../mod/admin.php:1263 msgid "Toggle" msgstr "" -#: ../../mod/admin.php:1065 ../../mod/admin.php:1267 +#: ../../mod/admin.php:1071 ../../mod/admin.php:1273 msgid "Author: " msgstr "" -#: ../../mod/admin.php:1066 ../../mod/admin.php:1268 +#: ../../mod/admin.php:1072 ../../mod/admin.php:1274 msgid "Maintainer: " msgstr "" -#: ../../mod/admin.php:1193 +#: ../../mod/admin.php:1199 msgid "No themes found." msgstr "" -#: ../../mod/admin.php:1249 +#: ../../mod/admin.php:1255 msgid "Screenshot" msgstr "" -#: ../../mod/admin.php:1295 +#: ../../mod/admin.php:1301 msgid "[Experimental]" msgstr "" -#: ../../mod/admin.php:1296 +#: ../../mod/admin.php:1302 msgid "[Unsupported]" msgstr "" -#: ../../mod/admin.php:1320 +#: ../../mod/admin.php:1326 msgid "Log settings updated." msgstr "" -#: ../../mod/admin.php:1377 +#: ../../mod/admin.php:1383 msgid "Clear" msgstr "" -#: ../../mod/admin.php:1383 +#: ../../mod/admin.php:1389 msgid "Debugging" msgstr "" -#: ../../mod/admin.php:1384 +#: ../../mod/admin.php:1390 msgid "Log file" msgstr "" -#: ../../mod/admin.php:1384 +#: ../../mod/admin.php:1390 msgid "" "Must be writable by web server. Relative to your Red top-level directory." msgstr "" -#: ../../mod/admin.php:1385 +#: ../../mod/admin.php:1391 msgid "Log level" msgstr "" -#: ../../mod/admin.php:1431 +#: ../../mod/admin.php:1437 msgid "New Profile Field" msgstr "" -#: ../../mod/admin.php:1432 ../../mod/admin.php:1452 +#: ../../mod/admin.php:1438 ../../mod/admin.php:1458 msgid "Field nickname" msgstr "" -#: ../../mod/admin.php:1432 ../../mod/admin.php:1452 +#: ../../mod/admin.php:1438 ../../mod/admin.php:1458 msgid "System name of field" msgstr "" -#: ../../mod/admin.php:1433 ../../mod/admin.php:1453 +#: ../../mod/admin.php:1439 ../../mod/admin.php:1459 msgid "Input type" msgstr "" -#: ../../mod/admin.php:1434 ../../mod/admin.php:1454 +#: ../../mod/admin.php:1440 ../../mod/admin.php:1460 msgid "Field Name" msgstr "" -#: ../../mod/admin.php:1434 ../../mod/admin.php:1454 +#: ../../mod/admin.php:1440 ../../mod/admin.php:1460 msgid "Label on profile pages" msgstr "" -#: ../../mod/admin.php:1435 ../../mod/admin.php:1455 +#: ../../mod/admin.php:1441 ../../mod/admin.php:1461 msgid "Help text" msgstr "" -#: ../../mod/admin.php:1435 ../../mod/admin.php:1455 +#: ../../mod/admin.php:1441 ../../mod/admin.php:1461 msgid "Additional info (optional)" msgstr "" -#: ../../mod/admin.php:1445 +#: ../../mod/admin.php:1451 msgid "Field definition not found" msgstr "" -#: ../../mod/admin.php:1451 +#: ../../mod/admin.php:1457 msgid "Edit Profile Field" msgstr "" @@ -6398,12 +6433,12 @@ msgstr "" msgid "Layout Help" msgstr "" -#: ../../mod/subthread.php:108 +#: ../../mod/subthread.php:114 #, php-format msgid "%1$s is following %2$s's %3$s" msgstr "" -#: ../../mod/subthread.php:110 +#: ../../mod/subthread.php:116 #, php-format msgid "%1$s stopped following %2$s's %3$s" msgstr "" @@ -6432,7 +6467,7 @@ msgid "" "Password reset failed." msgstr "" -#: ../../mod/lostpass.php:86 ../../boot.php:1492 +#: ../../mod/lostpass.php:86 ../../boot.php:1494 msgid "Password Reset" msgstr "" @@ -6518,32 +6553,28 @@ msgstr "" msgid "Event not found." msgstr "" -#: ../../mod/events.php:448 +#: ../../mod/events.php:446 msgid "l, F j" msgstr "" -#: ../../mod/events.php:470 +#: ../../mod/events.php:468 msgid "Edit event" msgstr "" -#: ../../mod/events.php:472 +#: ../../mod/events.php:470 msgid "Delete event" msgstr "" -#: ../../mod/events.php:506 +#: ../../mod/events.php:504 msgid "calendar" msgstr "" -#: ../../mod/events.php:527 -msgid "Create New Event" -msgstr "" - -#: ../../mod/events.php:530 -msgid "Export" +#: ../../mod/events.php:524 +msgid "New Event" msgstr "" -#: ../../mod/events.php:533 -msgid "Import" +#: ../../mod/events.php:534 +msgid "Today" msgstr "" #: ../../mod/events.php:564 @@ -6764,20 +6795,24 @@ msgstr "" msgid "Executable content type not permitted to this channel." msgstr "" -#: ../../mod/item.php:910 +#: ../../mod/item.php:822 +msgid "Duplicate post suppressed." +msgstr "" + +#: ../../mod/item.php:953 msgid "System error. Post not saved." msgstr "" -#: ../../mod/item.php:1177 +#: ../../mod/item.php:1220 msgid "Unable to obtain post information from database." msgstr "" -#: ../../mod/item.php:1184 +#: ../../mod/item.php:1227 #, php-format msgid "You have reached your limit of %1$.0f top level posts." msgstr "" -#: ../../mod/item.php:1191 +#: ../../mod/item.php:1234 #, php-format msgid "You have reached your limit of %1$.0f webpages." msgstr "" @@ -9241,51 +9276,51 @@ msgstr "" msgid "Set size of followup author photos" msgstr "" -#: ../../boot.php:1289 +#: ../../boot.php:1291 #, php-format msgid "Update %s failed. See error logs." msgstr "" -#: ../../boot.php:1292 +#: ../../boot.php:1294 #, php-format msgid "Update Error at %s" msgstr "" -#: ../../boot.php:1459 +#: ../../boot.php:1461 msgid "" "Create an account to access services and applications within the Hubzilla" msgstr "" -#: ../../boot.php:1487 +#: ../../boot.php:1489 msgid "Password" msgstr "" -#: ../../boot.php:1488 +#: ../../boot.php:1490 msgid "Remember me" msgstr "" -#: ../../boot.php:1491 +#: ../../boot.php:1493 msgid "Forgot your password?" msgstr "" -#: ../../boot.php:2111 +#: ../../boot.php:2113 msgid "toggle mobile" msgstr "" -#: ../../boot.php:2246 +#: ../../boot.php:2248 msgid "Website SSL certificate is not valid. Please correct." msgstr "" -#: ../../boot.php:2249 +#: ../../boot.php:2251 #, php-format msgid "[hubzilla] Website SSL error for %s" msgstr "" -#: ../../boot.php:2286 +#: ../../boot.php:2288 msgid "Cron/Scheduled tasks not running." msgstr "" -#: ../../boot.php:2290 +#: ../../boot.php:2292 #, php-format msgid "[hubzilla] Cron tasks not running on %s" msgstr "" diff --git a/version.inc b/version.inc index d6100d73a..05ca8c657 100644 --- a/version.inc +++ b/version.inc @@ -1 +1 @@ -2015-11-19.1221 +2015-11-20.1222 -- cgit v1.2.3