From 1d3540ac6ca931168a5922a4aceef9906b05d3bd Mon Sep 17 00:00:00 2001 From: zotlabs Date: Mon, 21 Jan 2019 17:31:24 -0800 Subject: [PATCH] refactor include/follow (Connect::connect()) and update strings --- Zotlabs/Module/Follow.php | 19 +- include/channel.php | 33 +- include/follow.php | 260 -- util/connect | 11 +- util/hmessages.po | 5748 ++++++++++++++++++------------------- 5 files changed, 2891 insertions(+), 3180 deletions(-) delete mode 100644 include/follow.php diff --git a/Zotlabs/Module/Follow.php b/Zotlabs/Module/Follow.php index 79ab750ad..211b10f1e 100644 --- a/Zotlabs/Module/Follow.php +++ b/Zotlabs/Module/Follow.php @@ -1,16 +1,17 @@ array($clone)), true); + Libsync::build_sync_packet(0, [ 'abook' => [ $clone ] ], true); $can_view_stream = their_perms_contains($channel['channel_id'],$clone['abook_xchan'],'view_stream'); // If we can view their stream, pull in some posts if(($can_view_stream) || ($result['abook']['xchan_network'] === 'rss')) - \Zotlabs\Daemon\Master::Summon(array('Onepoll',$result['abook']['abook_id'])); + Master::Summon([ 'Onepoll', $result['abook']['abook_id'] ]); if($interactive) { - goaway(z_root() . '/connedit/' . $result['abook']['abook_id'] . '?f=&follow=1'); + goaway(z_root() . '/connedit/' . $result['abook']['abook_id'] . '?follow=1'); } else { json_return_and_die([ 'success' => true ]); diff --git a/include/channel.php b/include/channel.php index 4ea417b21..ce27fc1d4 100644 --- a/include/channel.php +++ b/include/channel.php @@ -8,6 +8,7 @@ use Zotlabs\Lib\Libzot; use Zotlabs\Lib\Libsync; use Zotlabs\Lib\Group; use Zotlabs\Lib\Crypto; +use Zotlabs\Lib\Connect; use Zotlabs\Access\PermissionRoles; use Zotlabs\Access\PermissionLimits; use Zotlabs\Access\Permissions; @@ -472,13 +473,39 @@ function create_identity($arr) { $accts = get_config('system','auto_follow'); if(($accts) && (! $total_identities)) { - require_once('include/follow.php'); if(! is_array($accts)) $accts = array($accts); foreach($accts as $acct) { - if(trim($acct)) - new_contact($newuid,trim($acct),$ret['channel'],false); + if(trim($acct)) { + $f = Connect::connect($ret['channel'],trim($acct)); + if($f['success']) { + $clone = []; + foreach($f['abook'] as $k => $v) { + if(strpos($k,'abook_') === 0) { + $clone[$k] = $v; + } + } + unset($clone['abook_id']); + unset($clone['abook_account']); + unset($clone['abook_channel']); + + $abconfig = load_abconfig($ret['channel']['channel_id'],$clone['abook_xchan']); + if($abconfig) { + $clone['abconfig'] = $abconfig; + } + + Libsync::build_sync_packet(0, [ 'abook' => [ $clone ] ], true); + + $can_view_stream = their_perms_contains($ret['channel']['channel_id'],$clone['abook_xchan'],'view_stream'); + + // If we can view their stream, pull in some posts + + if(($can_view_stream) || ($f['abook']['xchan_network'] === 'rss')) { + Master::Summon([ 'Onepoll',$f['abook']['abook_id'] ]); + } + } + } } } diff --git a/include/follow.php b/include/follow.php deleted file mode 100644 index 75d761da8..000000000 --- a/include/follow.php +++ /dev/null @@ -1,260 +0,0 @@ - false, 'message' => '' ]; - - $my_perms = false; - $is_zot = false; - $protocol = ''; - - if(substr($url,0,1) === '[') { - $x = strpos($url,']'); - if($x) { - $protocol = substr($url,1,$x-1); - $url = substr($url,$x+1); - } - } - - // This turned out to have issues on an activitypub project (forgot which at the moment) that requires a trailing slash. - - // $url = rtrim($url,'/'); - - if(! allowed_url($url)) { - $result['message'] = t('Channel is blocked on this site.'); - return $result; - } - - if(! $url) { - $result['message'] = t('Channel location missing.'); - return $result; - } - - // check service class limits - - $r = q("select count(*) as total from abook where abook_channel = %d and abook_self = 0 ", - intval($uid) - ); - if($r) - $total_channels = $r[0]['total']; - - if(! service_class_allows($uid,'total_channels',$total_channels)) { - $result['message'] = upgrade_message(); - return $result; - } - - $xchan_hash = ''; - $sql_options = (($protocol) ? " and xchan_network = '" . dbesc($protocol) . "' " : ''); - - $r = q("select * from xchan where xchan_hash = '%s' or xchan_url = '%s' or xchan_addr = '%s' $sql_options ", - dbesc($url), - dbesc($url), - dbesc($url) - ); - - if($r) { - - // reset results to the best record or the first if we don't have the best - // note: this is a single record and not an array of results - - $r = Libzot::zot_record_preferred($r,'xchan_network'); - } - - - $singleton = false; - $d = false; - - if(! $r) { - - // try RSS discovery - - $wf = discover_by_webbie($url,$protocol); - - if(! $wf) { - $feeds = get_config('system','feed_contacts'); - - if(($feeds) && (in_array($protocol, [ '', 'feed', 'rss' ]))) { - $d = discover_feed($url); - } - else { - $result['message'] = t('Remote channel or protocol unavailable.'); - return $result; - } - } - } - - if($wf || $d) { - - // find the record which was just created. - - $r = q("select * from xchan where xchan_hash = '%s' or xchan_url = '%s' or xchan_addr = '%s' $sql_options", - dbesc(($wf) ? $wf : $url), - dbesc($url), - dbesc($url) - ); - - // convert to a single record (once again preferring a zot solution in the case of multiples) - - if($r) { - $r = Libzot::zot_record_preferred($r,'xchan_network'); - } - } - - // if discovery was a success we should have an xchan record in $r - - if($r) { - $xchan = $r; - $xchan_hash = $r['xchan_hash']; - $their_perms = EMPTY_STR; - } - - if(! $xchan_hash) { - $result['message'] = t('Channel discovery failed.'); - logger('follow: ' . $result['message']); - return $result; - } - - if($r['xchan_network'] === 'activitypub') { - $singleton = 1; - if(defined('NOMADIC')) { - $result['message'] = t('Protocol not supported'); - return $result; - } - } - - $aid = $channel['channel_account_id']; - $hash = $channel['channel_hash']; - $default_group = $channel['channel_default_group']; - - if($hash == $xchan_hash) { - $result['message'] = t('Cannot connect to yourself.'); - return $result; - } - - if($xchan['xchan_network'] === 'rss') { - - // check service class feed limits - - $t = q("select count(*) as total from abook where abook_account = %d and abook_feed = 1 ", - intval($aid) - ); - if($t) - $total_feeds = $t[0]['total']; - - if(! service_class_allows($uid,'total_feeds',$total_feeds)) { - $result['message'] = upgrade_message(); - return $result; - } - - // Always set these "remote" permissions for feeds since we cannot interact with them - // to negotiate a suitable permission response - - $p = get_abconfig($uid,$xchan_hash,'system','their_perms',EMPTY_STR); - if($p) - $p .= ','; - $p .= 'view_stream,republish'; - set_abconfig($uid,$xchan_hash,'system','their_perms',$p); - - } - - $p = Permissions::connect_perms($uid); - $my_perms = Permissions::serialise($p['perms']); - - $profile_assign = get_pconfig($uid,'system','profile_assign',''); - - - $r = q("select abook_id, abook_xchan, abook_pending, abook_instance from abook - where abook_xchan = '%s' and abook_channel = %d limit 1", - dbesc($xchan_hash), - intval($uid) - ); - - if($r) { - - $abook_instance = $r[0]['abook_instance']; - - if(($singleton) && strpos($abook_instance,z_root()) === false) { - if($abook_instance) - $abook_instance .= ','; - $abook_instance .= z_root(); - - $x = q("update abook set abook_instance = '%s', abook_not_here = 0 where abook_id = %d", - dbesc($abook_instance), - intval($r[0]['abook_id']) - ); - } - - if(intval($r[0]['abook_pending'])) { - $x = q("update abook set abook_pending = 0 where abook_id = %d", - intval($r[0]['abook_id']) - ); - } - } - else { - $closeness = get_pconfig($uid,'system','new_abook_closeness',80); - - $r = abook_store_lowlevel( - [ - 'abook_account' => intval($aid), - 'abook_channel' => intval($uid), - 'abook_closeness' => intval($closeness), - 'abook_xchan' => $xchan_hash, - 'abook_profile' => $profile_assign, - 'abook_feed' => intval(($xchan['xchan_network'] === 'rss') ? 1 : 0), - 'abook_created' => datetime_convert(), - 'abook_updated' => datetime_convert(), - 'abook_instance' => (($singleton) ? z_root() : '') - ] - ); - } - - if(! $r) - logger('abook creation failed'); - - if($my_perms) { - set_abconfig($uid,$xchan_hash,'system','my_perms',$my_perms); - } - - $r = q("select abook.*, xchan.* from abook left join xchan on abook_xchan = xchan_hash - where abook_xchan = '%s' and abook_channel = %d limit 1", - dbesc($xchan_hash), - intval($uid) - ); - - if($r) { - $result['abook'] = $r[0]; - Master::Summon([ 'Notifier', 'permissions_create', $result['abook']['abook_id'] ]); - } - - $arr = [ 'channel_id' => $uid, 'channel' => $channel, 'abook' => $result['abook'] ]; - - call_hooks('follow', $arr); - - /** If there is a default group for this channel, add this connection to it */ - - if($default_group) { - $g = Group::rec_byhash($uid,$default_group); - if($g) { - Group::member_add($uid,'',$xchan_hash,$g['id']); - } - } - - $result['success'] = true; - return $result; -} diff --git a/util/connect b/util/connect index 480624a4b..6a6798726 100755 --- a/util/connect +++ b/util/connect @@ -4,6 +4,8 @@ // connect utility use Zotlabs\Lib\Libsync; +use Zotlabs\Lib\Connect; +use Zotlabs\Daemon\Master; if(! file_exists('include/cli_startup.php')) { echo t('Run from the top level $Projectname web directory, as util/connect ') . PHP_EOL; @@ -11,7 +13,6 @@ if(! file_exists('include/cli_startup.php')) { } require_once('include/cli_startup.php'); -require_once('include/follow.php'); cli_startup(); @@ -33,7 +34,7 @@ cli_startup(); exit(1); } - $result = new_contact($c['channel_id'],$argv[2],$c,false,false); + $result = Connect::connect($c,$argv[2]); if($result['success'] == false) { echo $result['message']; @@ -59,8 +60,8 @@ cli_startup(); // If we can view their stream, pull in some posts - if(($can_view_stream) || ($result['abook']['xchan_network'] === 'rss')) - \Zotlabs\Daemon\Master::Summon(array('Onepoll',$result['abook']['abook_id'])); - + if(($can_view_stream) || ($result['abook']['xchan_network'] === 'rss')) { + Master::Summon([ 'Onepoll',$result['abook']['abook_id'] ]); + } exit(0); diff --git a/util/hmessages.po b/util/hmessages.po index a8cc4f87e..d85086b81 100644 --- a/util/hmessages.po +++ b/util/hmessages.po @@ -6,9 +6,9 @@ #, fuzzy msgid "" msgstr "" -"Project-Id-Version: 1.5\n" +"Project-Id-Version: 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-23 15:27-0700\n" +"POT-Creation-Date: 2019-01-21 17:31-0800\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -126,17 +126,17 @@ msgstr "" #: ../../Zotlabs/Module/Block.php:73 ../../Zotlabs/Module/Blocks.php:73 #: ../../Zotlabs/Module/Blocks.php:80 ../../Zotlabs/Module/Bookmarks.php:64 #: ../../Zotlabs/Module/Card_edit.php:51 ../../Zotlabs/Module/Cards.php:81 -#: ../../Zotlabs/Module/Channel.php:190 ../../Zotlabs/Module/Channel.php:357 -#: ../../Zotlabs/Module/Channel.php:396 ../../Zotlabs/Module/Chat.php:117 +#: ../../Zotlabs/Module/Channel.php:191 ../../Zotlabs/Module/Channel.php:358 +#: ../../Zotlabs/Module/Channel.php:397 ../../Zotlabs/Module/Chat.php:117 #: ../../Zotlabs/Module/Chat.php:122 ../../Zotlabs/Module/Cloud.php:40 #: ../../Zotlabs/Module/Common.php:38 ../../Zotlabs/Module/Connections.php:28 -#: ../../Zotlabs/Module/Connedit.php:327 +#: ../../Zotlabs/Module/Connedit.php:335 #: ../../Zotlabs/Module/Cover_photo.php:322 #: ../../Zotlabs/Module/Cover_photo.php:335 -#: ../../Zotlabs/Module/Defperms.php:164 ../../Zotlabs/Module/Display.php:448 +#: ../../Zotlabs/Module/Defperms.php:164 ../../Zotlabs/Module/Display.php:453 #: ../../Zotlabs/Module/Editblock.php:67 #: ../../Zotlabs/Module/Editlayout.php:67 -#: ../../Zotlabs/Module/Editlayout.php:90 ../../Zotlabs/Module/Editpost.php:16 +#: ../../Zotlabs/Module/Editlayout.php:90 ../../Zotlabs/Module/Editpost.php:15 #: ../../Zotlabs/Module/Editwebpage.php:68 #: ../../Zotlabs/Module/Editwebpage.php:89 #: ../../Zotlabs/Module/Editwebpage.php:107 @@ -146,9 +146,9 @@ msgstr "" #: ../../Zotlabs/Module/Filestorage.php:99 #: ../../Zotlabs/Module/Filestorage.php:143 ../../Zotlabs/Module/Group.php:12 #: ../../Zotlabs/Module/Group.php:24 ../../Zotlabs/Module/Invite.php:21 -#: ../../Zotlabs/Module/Invite.php:102 ../../Zotlabs/Module/Item.php:396 -#: ../../Zotlabs/Module/Item.php:415 ../../Zotlabs/Module/Item.php:425 -#: ../../Zotlabs/Module/Item.php:1305 ../../Zotlabs/Module/Layouts.php:71 +#: ../../Zotlabs/Module/Invite.php:102 ../../Zotlabs/Module/Item.php:425 +#: ../../Zotlabs/Module/Item.php:444 ../../Zotlabs/Module/Item.php:454 +#: ../../Zotlabs/Module/Item.php:1334 ../../Zotlabs/Module/Layouts.php:71 #: ../../Zotlabs/Module/Layouts.php:78 ../../Zotlabs/Module/Layouts.php:89 #: ../../Zotlabs/Module/Locs.php:87 ../../Zotlabs/Module/Manage.php:10 #: ../../Zotlabs/Module/Menu.php:129 ../../Zotlabs/Module/Menu.php:140 @@ -163,7 +163,7 @@ msgstr "" #: ../../Zotlabs/Module/Profile.php:118 ../../Zotlabs/Module/Profile.php:134 #: ../../Zotlabs/Module/Profile_photo.php:305 #: ../../Zotlabs/Module/Profile_photo.php:318 -#: ../../Zotlabs/Module/Profiles.php:200 ../../Zotlabs/Module/Profiles.php:636 +#: ../../Zotlabs/Module/Profiles.php:200 ../../Zotlabs/Module/Profiles.php:634 #: ../../Zotlabs/Module/Register.php:77 ../../Zotlabs/Module/Regmod.php:20 #: ../../Zotlabs/Module/Service_limits.php:11 #: ../../Zotlabs/Module/Settings.php:59 @@ -175,13 +175,13 @@ msgstr "" #: ../../Zotlabs/Module/Viewconnections.php:28 #: ../../Zotlabs/Module/Viewconnections.php:33 #: ../../Zotlabs/Module/Viewsrc.php:19 ../../Zotlabs/Module/Webpages.php:133 -#: ../../Zotlabs/Web/WebServer.php:123 ../../include/items.php:3672 -#: ../../include/photos.php:26 ../../include/attach.php:153 -#: ../../include/attach.php:200 ../../include/attach.php:273 -#: ../../include/attach.php:382 ../../include/attach.php:396 -#: ../../include/attach.php:403 ../../include/attach.php:481 -#: ../../include/attach.php:1041 ../../include/attach.php:1115 -#: ../../include/attach.php:1280 +#: ../../Zotlabs/Web/WebServer.php:123 ../../include/items.php:3579 +#: ../../include/attach.php:153 ../../include/attach.php:200 +#: ../../include/attach.php:273 ../../include/attach.php:382 +#: ../../include/attach.php:396 ../../include/attach.php:403 +#: ../../include/attach.php:481 ../../include/attach.php:1041 +#: ../../include/attach.php:1115 ../../include/attach.php:1280 +#: ../../include/photos.php:26 #: ../../extend/addon/a/articles/Mod_Article_edit.php:51 #: ../../extend/addon/a/articles/Mod_Articles.php:76 #: ../../extend/addon/a/wiki/Mod_Wiki.php:58 @@ -311,6 +311,368 @@ msgstr "" msgid "5. Wizard - I probably know more than you do" msgstr "" +#: ../../Zotlabs/Lib/Apps.php:304 +msgid "Apps" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:305 +#: ../../Zotlabs/Module/Settings/Network.php:100 +#: ../../include/features.php:430 +msgid "Affinity Tool" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:306 ../../include/nav.php:484 +#: ../../include/features.php:136 +#: ../../extend/addon/a/articles/Mod_Articles.php:44 +#: ../../extend/addon/a/articles/Mod_Articles.php:213 +msgid "Articles" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:307 ../../Zotlabs/Module/Cards.php:203 +#: ../../include/conversation.php:1922 ../../include/nav.php:473 +msgid "Cards" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:308 +msgid "Site Admin" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:309 +msgid "Report Bug" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:310 +msgid "View Bookmarks" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:311 ../../Zotlabs/Widget/Chatroom_list.php:16 +#: ../../include/conversation.php:1896 ../../include/conversation.php:1899 +#: ../../include/nav.php:449 ../../include/nav.php:452 +msgid "Chatrooms" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:312 ../../Zotlabs/Module/Connections.php:331 +#: ../../Zotlabs/Module/Connedit.php:662 ../../Zotlabs/Widget/Affinity.php:28 +#: ../../include/text.php:984 +msgid "Connections" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:313 +msgid "Remote Diagnostics" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:314 +#: ../../Zotlabs/Module/Settings/Network.php:108 +#: ../../include/features.php:439 +msgid "Suggest Channels" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:315 ../../include/nav.php:113 +#: ../../include/nav.php:117 ../../boot.php:1604 +msgid "Login" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:316 ../../Zotlabs/Module/Manage.php:171 +#: ../../include/nav.php:87 +msgid "Channel Manager" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:317 +msgid "Stream" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:318 ../../Zotlabs/Module/Admin/Addons.php:344 +#: ../../Zotlabs/Module/Admin/Themes.php:125 +#: ../../Zotlabs/Widget/Newmember.php:46 +#: ../../Zotlabs/Widget/Settings_menu.php:119 ../../include/nav.php:92 +msgid "Settings" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:319 ../../Zotlabs/Module/Fbrowser.php:85 +#: ../../Zotlabs/Storage/Browser.php:272 ../../include/conversation.php:1871 +#: ../../include/nav.php:424 +msgid "Files" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:320 ../../Zotlabs/Module/Webpages.php:252 +#: ../../include/conversation.php:1944 ../../include/nav.php:496 +msgid "Webpages" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:321 ../../include/conversation.php:1960 +#: ../../include/nav.php:511 +msgid "Wiki" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:322 +msgid "Channel Home" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:323 ../../Zotlabs/Module/Connedit.php:543 +#: ../../include/nav.php:101 +msgid "View Profile" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:324 ../../Zotlabs/Module/Fbrowser.php:29 +#: ../../include/conversation.php:1863 ../../include/nav.php:416 +msgid "Photos" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:325 ../../include/conversation.php:1882 +#: ../../include/conversation.php:1885 +msgid "Events" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:326 +msgid "Directory" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:327 ../../Zotlabs/Module/Layouts.php:186 +#: ../../include/help.php:117 ../../include/help.php:125 +#: ../../include/nav.php:163 ../../include/nav.php:298 +msgid "Help" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:328 +msgid "Mail" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:329 ../../Zotlabs/Module/Mood.php:150 +msgid "Mood" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:330 ../../Zotlabs/Module/Poke.php:197 +msgid "Poke" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:331 +msgid "Chat" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:332 ../../Zotlabs/Module/Connections.php:335 +#: ../../Zotlabs/Module/Search.php:45 ../../Zotlabs/Widget/Sitesearch.php:31 +#: ../../include/text.php:1071 ../../include/text.php:1083 +#: ../../include/nav.php:178 ../../include/acl_selectors.php:118 +msgid "Search" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:333 ../../Zotlabs/Widget/Stream_order.php:129 +msgid "Stream Order" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:334 +msgid "Probe" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:335 +msgid "Suggest" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:336 +msgid "Random Channel" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:337 +msgid "Invite" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:338 +msgid "Features" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:339 +msgid "Language" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:340 +msgid "Post" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:341 +#: ../../extend/addon/a/zotpost/Mod_zotpost.php:51 +msgid "ZotPost" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:342 +msgid "Profile Photo" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:343 ../../Zotlabs/Module/Profperm.php:113 +#: ../../include/channel.php:1677 +msgid "Profile" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:344 +msgid "Profiles" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:345 ../../Zotlabs/Lib/Group.php:320 +#: ../../Zotlabs/Module/Group.php:113 ../../Zotlabs/Module/Group.php:124 +#: ../../Zotlabs/Widget/Activity_filter.php:67 ../../include/nav.php:90 +#: ../../include/features.php:225 +msgid "Privacy Groups" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:346 +msgid "Notifications" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:347 +msgid "Order Apps" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:348 +msgid "CalDAV" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:349 +msgid "CardDAV" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:350 ../../Zotlabs/Module/Sources.php:99 +#: ../../Zotlabs/Widget/Settings_menu.php:111 +msgid "Channel Sources" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:351 +msgid "Gallery" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:352 +msgid "Guest Access" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:353 ../../Zotlabs/Widget/Notes.php:16 +msgid "Notes" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:354 +msgid "OAuth Apps Manager" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:355 +msgid "OAuth2 Apps Manager" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:356 +msgid "PDL Editor" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:357 +#: ../../Zotlabs/Module/Settings/Permcats.php:100 +#: ../../Zotlabs/Widget/Settings_menu.php:94 +msgid "Permission Categories" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:358 +msgid "Premium Channel" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:359 ../../Zotlabs/Module/Pubstream.php:95 +#: ../../Zotlabs/Widget/Notifications.php:142 +msgid "Public Stream" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:360 +msgid "My Chatrooms" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:361 +#: ../../extend/addon/a/file_import/Mod_file_import.php:85 +msgid "File Storage Import" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:521 ../../Zotlabs/Module/Admin/Addons.php:453 +#: ../../Zotlabs/Module/Cdav.php:1229 ../../Zotlabs/Module/Connedit.php:859 +#: ../../Zotlabs/Module/Profiles.php:798 +#: ../../Zotlabs/Module/Settings/Oauth.php:43 +#: ../../Zotlabs/Module/Settings/Oauth.php:114 +#: ../../Zotlabs/Module/Settings/Oauth2.php:49 +#: ../../Zotlabs/Module/Settings/Oauth2.php:123 +msgid "Update" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:521 ../../Zotlabs/Module/Admin/Addons.php:422 +msgid "Install" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:538 +msgid "Purchase" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:541 ../../Zotlabs/Lib/ThreadItem.php:158 +#: ../../Zotlabs/Module/Admin/Profs.php:175 +#: ../../Zotlabs/Module/Blocks.php:160 ../../Zotlabs/Module/Card_edit.php:99 +#: ../../Zotlabs/Module/Connections.php:280 +#: ../../Zotlabs/Module/Connections.php:319 +#: ../../Zotlabs/Module/Connections.php:339 +#: ../../Zotlabs/Module/Editblock.php:114 +#: ../../Zotlabs/Module/Editlayout.php:114 +#: ../../Zotlabs/Module/Editwebpage.php:142 ../../Zotlabs/Module/Group.php:216 +#: ../../Zotlabs/Module/Layouts.php:193 ../../Zotlabs/Module/Menu.php:175 +#: ../../Zotlabs/Module/Settings/Oauth.php:150 +#: ../../Zotlabs/Module/Settings/Oauth2.php:173 +#: ../../Zotlabs/Module/Thing.php:268 ../../Zotlabs/Module/Webpages.php:255 +#: ../../Zotlabs/Storage/Browser.php:290 ../../Zotlabs/Widget/Cdav.php:126 +#: ../../Zotlabs/Widget/Cdav.php:162 ../../include/menu.php:121 +#: ../../include/channel.php:1329 ../../include/channel.php:1333 +#: ../../extend/addon/a/articles/Mod_Article_edit.php:99 +#: ../../extend/addon/a/wiki/Mod_Wiki.php:209 +#: ../../extend/addon/a/wiki/Mod_Wiki.php:374 +msgid "Edit" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:542 ../../Zotlabs/Lib/ThreadItem.php:182 +#: ../../Zotlabs/Module/Admin/Accounts.php:175 +#: ../../Zotlabs/Module/Admin/Channels.php:149 +#: ../../Zotlabs/Module/Admin/Profs.php:176 +#: ../../Zotlabs/Module/Blocks.php:162 ../../Zotlabs/Module/Card_edit.php:129 +#: ../../Zotlabs/Module/Cdav.php:940 ../../Zotlabs/Module/Cdav.php:1230 +#: ../../Zotlabs/Module/Connections.php:288 +#: ../../Zotlabs/Module/Connedit.php:603 ../../Zotlabs/Module/Connedit.php:860 +#: ../../Zotlabs/Module/Editblock.php:139 +#: ../../Zotlabs/Module/Editlayout.php:138 +#: ../../Zotlabs/Module/Editwebpage.php:167 +#: ../../Zotlabs/Module/Photos.php:1103 ../../Zotlabs/Module/Profiles.php:799 +#: ../../Zotlabs/Module/Settings/Oauth.php:151 +#: ../../Zotlabs/Module/Settings/Oauth2.php:174 +#: ../../Zotlabs/Module/Thing.php:269 ../../Zotlabs/Module/Webpages.php:257 +#: ../../Zotlabs/Storage/Browser.php:291 ../../include/conversation.php:677 +#: ../../include/conversation.php:722 +#: ../../extend/addon/a/articles/Mod_Article_edit.php:131 +msgid "Delete" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:543 +msgid "Undelete" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:552 +msgid "Add to app-tray" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:553 +msgid "Remove from app-tray" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:554 +msgid "Pin to navbar" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:555 +msgid "Unpin from navbar" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:1014 ../../Zotlabs/Lib/Apps.php:1099 +#: ../../Zotlabs/Lib/Activity.php:1287 ../../Zotlabs/Module/Cdav.php:811 +#: ../../Zotlabs/Module/Cdav.php:812 ../../Zotlabs/Module/Cdav.php:819 +#: ../../Zotlabs/Module/Embedphotos.php:148 +#: ../../Zotlabs/Module/Photos.php:722 ../../Zotlabs/Module/Photos.php:1173 +#: ../../Zotlabs/Storage/Browser.php:164 ../../Zotlabs/Widget/Album.php:84 +#: ../../Zotlabs/Widget/Portfolio.php:95 ../../include/conversation.php:1116 +msgid "Unknown" +msgstr "" + #: ../../Zotlabs/Lib/Enotify.php:60 msgid "$Projectname Notification" msgstr "" @@ -351,7 +713,7 @@ msgid "To stop receiving these messages, please adjust your %s." msgstr "" #: ../../Zotlabs/Lib/Enotify.php:68 -#: ../../Zotlabs/Module/Settings/Channel.php:570 +#: ../../Zotlabs/Module/Settings/Channel.php:581 msgid "Notification Settings" msgstr "" @@ -592,22 +954,82 @@ msgstr "" msgid "edited a comment dated %s" msgstr "" +#: ../../Zotlabs/Lib/Activity.php:1838 +#, php-format +msgid "Likes %1$s's %2$s" +msgstr "" + +#: ../../Zotlabs/Lib/Activity.php:1841 +#, php-format +msgid "Doesn't like %1$s's %2$s" +msgstr "" + +#: ../../Zotlabs/Lib/Activity.php:1844 +#, php-format +msgid "Will attend %1$s's %2$s" +msgstr "" + +#: ../../Zotlabs/Lib/Activity.php:1847 +#, php-format +msgid "Will not attend %1$s's %2$s" +msgstr "" + +#: ../../Zotlabs/Lib/Activity.php:1850 +#, php-format +msgid "May attend %1$s's %2$s" +msgstr "" + +#: ../../Zotlabs/Lib/Activity.php:1853 ../../Zotlabs/Module/Share.php:101 +#: ../../include/items.php:3008 +#, php-format +msgid "🔁 Repeated %1$s's %2$s" +msgstr "" + +#: ../../Zotlabs/Lib/Activity.php:2445 ../../Zotlabs/Lib/Activity.php:2640 +#: ../../include/network.php:1926 +msgid "ActivityPub" +msgstr "" + +#: ../../Zotlabs/Lib/Activity.php:2596 ../../Zotlabs/Module/Like.php:332 +#: ../../Zotlabs/Module/Subthread.php:110 ../../Zotlabs/Module/Tagger.php:71 +#: ../../include/text.php:2043 ../../include/conversation.php:114 +msgid "photo" +msgstr "" + +#: ../../Zotlabs/Lib/Activity.php:2596 ../../Zotlabs/Module/Like.php:332 +#: ../../Zotlabs/Module/Subthread.php:110 ../../include/text.php:2049 +#: ../../include/conversation.php:142 +msgid "status" +msgstr "" + +#: ../../Zotlabs/Lib/Activity.php:2631 ../../Zotlabs/Module/Like.php:363 +#: ../../include/conversation.php:158 +#, php-format +msgid "%1$s likes %2$s's %3$s" +msgstr "" + +#: ../../Zotlabs/Lib/Activity.php:2633 ../../Zotlabs/Module/Like.php:365 +#: ../../include/conversation.php:161 +#, php-format +msgid "%1$s doesn't like %2$s's %3$s" +msgstr "" + #: ../../Zotlabs/Lib/Libsync.php:836 #, php-format msgid "Unable to verify site signature for %s" msgstr "" -#: ../../Zotlabs/Lib/Libzotdir.php:160 +#: ../../Zotlabs/Lib/Libzotdir.php:159 msgid "Directory Options" msgstr "" -#: ../../Zotlabs/Lib/Libzotdir.php:162 +#: ../../Zotlabs/Lib/Libzotdir.php:161 msgid "Safe Mode" msgstr "" -#: ../../Zotlabs/Lib/Libzotdir.php:162 ../../Zotlabs/Lib/Libzotdir.php:163 -#: ../../Zotlabs/Lib/Libzotdir.php:165 ../../Zotlabs/Module/Admin/Site.php:255 -#: ../../Zotlabs/Module/Api.php:99 ../../Zotlabs/Module/Connedit.php:334 +#: ../../Zotlabs/Lib/Libzotdir.php:161 ../../Zotlabs/Lib/Libzotdir.php:162 +#: ../../Zotlabs/Lib/Libzotdir.php:164 ../../Zotlabs/Module/Admin/Site.php:255 +#: ../../Zotlabs/Module/Api.php:99 ../../Zotlabs/Module/Connedit.php:342 #: ../../Zotlabs/Module/Connedit.php:720 ../../Zotlabs/Module/Defperms.php:171 #: ../../Zotlabs/Module/Events.php:471 ../../Zotlabs/Module/Events.php:472 #: ../../Zotlabs/Module/Filestorage.php:181 @@ -617,21 +1039,21 @@ msgstr "" #: ../../Zotlabs/Module/Menu.php:221 ../../Zotlabs/Module/Mitem.php:176 #: ../../Zotlabs/Module/Mitem.php:177 ../../Zotlabs/Module/Mitem.php:256 #: ../../Zotlabs/Module/Mitem.php:257 ../../Zotlabs/Module/Photos.php:602 -#: ../../Zotlabs/Module/Profiles.php:682 ../../Zotlabs/Module/Removeme.php:63 +#: ../../Zotlabs/Module/Profiles.php:680 ../../Zotlabs/Module/Removeme.php:63 #: ../../Zotlabs/Module/Settings/Display.php:94 -#: ../../Zotlabs/Module/Settings/Channel.php:315 +#: ../../Zotlabs/Module/Settings/Channel.php:317 #: ../../Zotlabs/Module/Sources.php:116 ../../Zotlabs/Module/Sources.php:151 #: ../../Zotlabs/Storage/Browser.php:405 #: ../../view/theme/redbasic/php/config.php:98 #: ../../extend/addon/a/wiki/Mod_Wiki.php:225 #: ../../extend/addon/a/wiki/Mod_Wiki.php:226 -#: ../../extend/addon/a/zotpost/Mod_zotpost.php:75 ../../boot.php:1610 +#: ../../extend/addon/a/zotpost/Mod_zotpost.php:75 ../../boot.php:1609 msgid "No" msgstr "" -#: ../../Zotlabs/Lib/Libzotdir.php:162 ../../Zotlabs/Lib/Libzotdir.php:163 -#: ../../Zotlabs/Lib/Libzotdir.php:165 ../../Zotlabs/Module/Admin/Site.php:257 -#: ../../Zotlabs/Module/Api.php:98 ../../Zotlabs/Module/Connedit.php:334 +#: ../../Zotlabs/Lib/Libzotdir.php:161 ../../Zotlabs/Lib/Libzotdir.php:162 +#: ../../Zotlabs/Lib/Libzotdir.php:164 ../../Zotlabs/Module/Admin/Site.php:257 +#: ../../Zotlabs/Module/Api.php:98 ../../Zotlabs/Module/Connedit.php:342 #: ../../Zotlabs/Module/Defperms.php:171 ../../Zotlabs/Module/Events.php:471 #: ../../Zotlabs/Module/Events.php:472 #: ../../Zotlabs/Module/Filestorage.php:181 @@ -641,287 +1063,248 @@ msgstr "" #: ../../Zotlabs/Module/Menu.php:221 ../../Zotlabs/Module/Mitem.php:176 #: ../../Zotlabs/Module/Mitem.php:177 ../../Zotlabs/Module/Mitem.php:256 #: ../../Zotlabs/Module/Mitem.php:257 ../../Zotlabs/Module/Photos.php:602 -#: ../../Zotlabs/Module/Profiles.php:682 ../../Zotlabs/Module/Removeme.php:63 +#: ../../Zotlabs/Module/Profiles.php:680 ../../Zotlabs/Module/Removeme.php:63 #: ../../Zotlabs/Module/Settings/Display.php:94 -#: ../../Zotlabs/Module/Settings/Channel.php:315 +#: ../../Zotlabs/Module/Settings/Channel.php:317 #: ../../Zotlabs/Module/Sources.php:116 ../../Zotlabs/Module/Sources.php:151 #: ../../Zotlabs/Storage/Browser.php:405 #: ../../view/theme/redbasic/php/config.php:98 #: ../../extend/addon/a/wiki/Mod_Wiki.php:225 #: ../../extend/addon/a/wiki/Mod_Wiki.php:226 -#: ../../extend/addon/a/zotpost/Mod_zotpost.php:75 ../../boot.php:1610 +#: ../../extend/addon/a/zotpost/Mod_zotpost.php:75 ../../boot.php:1609 msgid "Yes" msgstr "" -#: ../../Zotlabs/Lib/Libzotdir.php:163 +#: ../../Zotlabs/Lib/Libzotdir.php:162 msgid "Public Forums Only" msgstr "" -#: ../../Zotlabs/Lib/Libzotdir.php:165 +#: ../../Zotlabs/Lib/Libzotdir.php:164 msgid "This Website Only" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:97 ../../include/conversation.php:686 +#: ../../Zotlabs/Lib/ThreadItem.php:121 ../../include/conversation.php:686 msgid "Private Message" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:128 ../../Zotlabs/Lib/Apps.php:539 -#: ../../Zotlabs/Module/Admin/Profs.php:175 -#: ../../Zotlabs/Module/Blocks.php:160 ../../Zotlabs/Module/Card_edit.php:99 -#: ../../Zotlabs/Module/Connections.php:280 -#: ../../Zotlabs/Module/Connections.php:319 -#: ../../Zotlabs/Module/Connections.php:339 -#: ../../Zotlabs/Module/Editblock.php:114 -#: ../../Zotlabs/Module/Editlayout.php:114 -#: ../../Zotlabs/Module/Editwebpage.php:142 ../../Zotlabs/Module/Group.php:216 -#: ../../Zotlabs/Module/Layouts.php:193 ../../Zotlabs/Module/Menu.php:175 -#: ../../Zotlabs/Module/Settings/Oauth.php:150 -#: ../../Zotlabs/Module/Settings/Oauth2.php:173 -#: ../../Zotlabs/Module/Thing.php:268 ../../Zotlabs/Module/Webpages.php:255 -#: ../../Zotlabs/Storage/Browser.php:290 ../../Zotlabs/Widget/Cdav.php:126 -#: ../../Zotlabs/Widget/Cdav.php:162 ../../include/channel.php:1303 -#: ../../include/channel.php:1307 ../../include/menu.php:121 -#: ../../extend/addon/a/articles/Mod_Article_edit.php:99 -#: ../../extend/addon/a/wiki/Mod_Wiki.php:209 -#: ../../extend/addon/a/wiki/Mod_Wiki.php:374 -msgid "Edit" -msgstr "" - -#: ../../Zotlabs/Lib/ThreadItem.php:152 ../../Zotlabs/Lib/Apps.php:540 -#: ../../Zotlabs/Module/Admin/Accounts.php:175 -#: ../../Zotlabs/Module/Admin/Channels.php:149 -#: ../../Zotlabs/Module/Admin/Profs.php:176 -#: ../../Zotlabs/Module/Blocks.php:162 ../../Zotlabs/Module/Card_edit.php:129 -#: ../../Zotlabs/Module/Cdav.php:940 ../../Zotlabs/Module/Cdav.php:1230 -#: ../../Zotlabs/Module/Connections.php:288 -#: ../../Zotlabs/Module/Connedit.php:595 ../../Zotlabs/Module/Connedit.php:860 -#: ../../Zotlabs/Module/Editblock.php:139 -#: ../../Zotlabs/Module/Editlayout.php:138 -#: ../../Zotlabs/Module/Editwebpage.php:167 -#: ../../Zotlabs/Module/Photos.php:1103 ../../Zotlabs/Module/Profiles.php:801 -#: ../../Zotlabs/Module/Settings/Oauth.php:151 -#: ../../Zotlabs/Module/Settings/Oauth2.php:174 -#: ../../Zotlabs/Module/Thing.php:269 ../../Zotlabs/Module/Webpages.php:257 -#: ../../Zotlabs/Storage/Browser.php:291 ../../include/conversation.php:677 -#: ../../include/conversation.php:722 -#: ../../extend/addon/a/articles/Mod_Article_edit.php:131 -msgid "Delete" -msgstr "" - -#: ../../Zotlabs/Lib/ThreadItem.php:156 ../../Zotlabs/Storage/Browser.php:280 +#: ../../Zotlabs/Lib/ThreadItem.php:186 ../../Zotlabs/Storage/Browser.php:280 msgid "Admin Delete" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:162 ../../include/conversation.php:676 +#: ../../Zotlabs/Lib/ThreadItem.php:192 ../../include/conversation.php:676 msgid "Select" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:166 ../../Zotlabs/Module/Filer.php:52 +#: ../../Zotlabs/Lib/ThreadItem.php:196 ../../Zotlabs/Module/Filer.php:52 msgid "Save to Folder" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:190 +#: ../../Zotlabs/Lib/ThreadItem.php:220 msgid "I will attend" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:190 +#: ../../Zotlabs/Lib/ThreadItem.php:220 msgid "I will not attend" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:190 +#: ../../Zotlabs/Lib/ThreadItem.php:220 msgid "I might attend" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:200 +#: ../../Zotlabs/Lib/ThreadItem.php:230 msgid "I agree" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:200 +#: ../../Zotlabs/Lib/ThreadItem.php:230 msgid "I disagree" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:200 +#: ../../Zotlabs/Lib/ThreadItem.php:230 msgid "I abstain" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:219 ../../Zotlabs/Lib/ThreadItem.php:231 +#: ../../Zotlabs/Lib/ThreadItem.php:249 ../../Zotlabs/Lib/ThreadItem.php:261 #: ../../Zotlabs/Module/Photos.php:1055 ../../Zotlabs/Module/Photos.php:1067 msgid "View all" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:223 ../../Zotlabs/Module/Photos.php:1059 -#: ../../include/channel.php:1546 ../../include/taxonomy.php:661 -#: ../../include/conversation.php:1961 +#: ../../Zotlabs/Lib/ThreadItem.php:253 ../../Zotlabs/Module/Photos.php:1059 +#: ../../include/taxonomy.php:661 ../../include/conversation.php:2010 +#: ../../include/channel.php:1572 msgctxt "noun" msgid "Like" msgid_plural "Likes" msgstr[0] "" msgstr[1] "" -#: ../../Zotlabs/Lib/ThreadItem.php:228 ../../Zotlabs/Module/Photos.php:1064 -#: ../../include/conversation.php:1964 +#: ../../Zotlabs/Lib/ThreadItem.php:258 ../../Zotlabs/Module/Photos.php:1064 +#: ../../include/conversation.php:2013 msgctxt "noun" msgid "Dislike" msgid_plural "Dislikes" msgstr[0] "" msgstr[1] "" -#: ../../Zotlabs/Lib/ThreadItem.php:254 ../../include/conversation.php:681 +#: ../../Zotlabs/Lib/ThreadItem.php:284 ../../include/conversation.php:681 msgid "Toggle Star Status" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:265 ../../include/conversation.php:693 +#: ../../Zotlabs/Lib/ThreadItem.php:295 ../../include/conversation.php:693 msgid "Message signature validated" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:266 ../../include/conversation.php:694 +#: ../../Zotlabs/Lib/ThreadItem.php:296 ../../include/conversation.php:694 msgid "Message signature incorrect" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:274 +#: ../../Zotlabs/Lib/ThreadItem.php:304 msgid "Add Tag" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:292 ../../Zotlabs/Module/Photos.php:1000 +#: ../../Zotlabs/Lib/ThreadItem.php:322 ../../Zotlabs/Module/Photos.php:1000 msgid "I like this (toggle)" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:292 ../../include/taxonomy.php:575 +#: ../../Zotlabs/Lib/ThreadItem.php:322 ../../include/taxonomy.php:575 msgid "like" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:293 ../../Zotlabs/Module/Photos.php:1001 +#: ../../Zotlabs/Lib/ThreadItem.php:323 ../../Zotlabs/Module/Photos.php:1001 msgid "I don't like this (toggle)" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:293 ../../include/taxonomy.php:576 +#: ../../Zotlabs/Lib/ThreadItem.php:323 ../../include/taxonomy.php:576 msgid "dislike" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:297 +#: ../../Zotlabs/Lib/ThreadItem.php:327 msgid "Share This" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:297 +#: ../../Zotlabs/Lib/ThreadItem.php:327 msgid "share" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:306 +#: ../../Zotlabs/Lib/ThreadItem.php:336 msgid "Delivery Report" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:329 +#: ../../Zotlabs/Lib/ThreadItem.php:359 #, php-format msgid "%d comment" msgid_plural "%d comments" msgstr[0] "" msgstr[1] "" -#: ../../Zotlabs/Lib/ThreadItem.php:359 ../../Zotlabs/Lib/ThreadItem.php:360 +#: ../../Zotlabs/Lib/ThreadItem.php:390 ../../Zotlabs/Lib/ThreadItem.php:391 #, php-format msgid "View %s's profile - %s" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:363 +#: ../../Zotlabs/Lib/ThreadItem.php:394 msgid "to" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:364 ../../include/conversation.php:751 +#: ../../Zotlabs/Lib/ThreadItem.php:395 ../../include/conversation.php:751 msgid "via" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:365 +#: ../../Zotlabs/Lib/ThreadItem.php:396 msgid "Wall-to-Wall" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:366 +#: ../../Zotlabs/Lib/ThreadItem.php:397 msgid "via Wall-To-Wall:" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:380 ../../include/conversation.php:754 +#: ../../Zotlabs/Lib/ThreadItem.php:411 ../../include/conversation.php:754 #, php-format msgid "from %s" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:383 ../../include/conversation.php:757 +#: ../../Zotlabs/Lib/ThreadItem.php:414 ../../include/conversation.php:757 #, php-format msgid "last edited: %s" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:384 ../../include/conversation.php:758 +#: ../../Zotlabs/Lib/ThreadItem.php:415 ../../include/conversation.php:758 #, php-format msgid "Expires: %s" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:392 +#: ../../Zotlabs/Lib/ThreadItem.php:423 msgid "Attend" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:393 +#: ../../Zotlabs/Lib/ThreadItem.php:424 msgid "Attendance Options" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:394 +#: ../../Zotlabs/Lib/ThreadItem.php:425 msgid "Vote" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:395 +#: ../../Zotlabs/Lib/ThreadItem.php:426 msgid "Voting Options" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:416 +#: ../../Zotlabs/Lib/ThreadItem.php:427 +msgid "Reply" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:448 msgid "Save Bookmarks" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:417 +#: ../../Zotlabs/Lib/ThreadItem.php:449 msgid "Add to Calendar" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:427 +#: ../../Zotlabs/Lib/ThreadItem.php:459 #: ../../Zotlabs/Module/Notifications.php:60 msgid "Mark all seen" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:434 ../../Zotlabs/Module/Photos.php:1187 +#: ../../Zotlabs/Lib/ThreadItem.php:466 ../../Zotlabs/Module/Photos.php:1187 msgctxt "noun" msgid "Likes" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:435 ../../Zotlabs/Module/Photos.php:1188 +#: ../../Zotlabs/Lib/ThreadItem.php:467 ../../Zotlabs/Module/Photos.php:1188 msgctxt "noun" msgid "Dislikes" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:440 ../../Zotlabs/Module/Photos.php:1193 +#: ../../Zotlabs/Lib/ThreadItem.php:472 ../../Zotlabs/Module/Photos.php:1193 #: ../../include/acl_selectors.php:125 msgid "Close" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:445 ../../include/conversation.php:460 +#: ../../Zotlabs/Lib/ThreadItem.php:477 ../../include/conversation.php:460 msgid "This is an unsaved preview" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:446 ../../Zotlabs/Module/Photos.php:1003 +#: ../../Zotlabs/Lib/ThreadItem.php:478 ../../Zotlabs/Module/Photos.php:1003 #: ../../include/conversation.php:775 msgid "Please wait" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:504 ../../include/js_strings.php:7 +#: ../../Zotlabs/Lib/ThreadItem.php:536 ../../include/js_strings.php:7 #, php-format msgid "%s show all" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:817 ../../Zotlabs/Module/Photos.php:1019 +#: ../../Zotlabs/Lib/ThreadItem.php:874 ../../Zotlabs/Module/Photos.php:1019 #: ../../Zotlabs/Module/Photos.php:1137 msgid "This is you" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:819 ../../Zotlabs/Module/Photos.php:1021 +#: ../../Zotlabs/Lib/ThreadItem.php:876 ../../Zotlabs/Module/Photos.php:1021 #: ../../Zotlabs/Module/Photos.php:1139 ../../include/js_strings.php:6 msgid "Comment" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:820 +#: ../../Zotlabs/Lib/ThreadItem.php:877 #: ../../Zotlabs/Module/Admin/Account_edit.php:74 #: ../../Zotlabs/Module/Admin/Accounts.php:168 #: ../../Zotlabs/Module/Admin/Addons.php:438 @@ -929,13 +1312,13 @@ msgstr "" #: ../../Zotlabs/Module/Admin/Features.php:66 #: ../../Zotlabs/Module/Admin/Logs.php:84 #: ../../Zotlabs/Module/Admin/Profs.php:178 -#: ../../Zotlabs/Module/Admin/Security.php:116 #: ../../Zotlabs/Module/Admin/Themes.php:158 -#: ../../Zotlabs/Module/Admin/Site.php:290 ../../Zotlabs/Module/Appman.php:154 -#: ../../Zotlabs/Module/Cal.php:343 ../../Zotlabs/Module/Chat.php:213 -#: ../../Zotlabs/Module/Chat.php:252 ../../Zotlabs/Module/Connect.php:96 -#: ../../Zotlabs/Module/Connedit.php:824 ../../Zotlabs/Module/Defperms.php:239 -#: ../../Zotlabs/Module/Editpost.php:84 +#: ../../Zotlabs/Module/Admin/Site.php:290 +#: ../../Zotlabs/Module/Admin/Security.php:147 +#: ../../Zotlabs/Module/Appman.php:154 ../../Zotlabs/Module/Cal.php:343 +#: ../../Zotlabs/Module/Chat.php:213 ../../Zotlabs/Module/Chat.php:252 +#: ../../Zotlabs/Module/Connect.php:97 ../../Zotlabs/Module/Connedit.php:824 +#: ../../Zotlabs/Module/Defperms.php:239 ../../Zotlabs/Module/Editpost.php:83 #: ../../Zotlabs/Module/Email_validation.php:40 #: ../../Zotlabs/Module/Events.php:494 #: ../../Zotlabs/Module/Filestorage.php:186 ../../Zotlabs/Module/Group.php:121 @@ -943,10 +1326,10 @@ msgstr "" #: ../../Zotlabs/Module/Import_items.php:129 #: ../../Zotlabs/Module/Invite.php:168 ../../Zotlabs/Module/Locs.php:121 #: ../../Zotlabs/Module/Mitem.php:259 ../../Zotlabs/Module/Mood.php:154 -#: ../../Zotlabs/Module/Pconfig.php:110 ../../Zotlabs/Module/Pdledit.php:111 +#: ../../Zotlabs/Module/Pconfig.php:120 ../../Zotlabs/Module/Pdledit.php:111 #: ../../Zotlabs/Module/Photos.php:982 ../../Zotlabs/Module/Photos.php:1022 #: ../../Zotlabs/Module/Photos.php:1140 ../../Zotlabs/Module/Poke.php:215 -#: ../../Zotlabs/Module/Profiles.php:724 +#: ../../Zotlabs/Module/Profiles.php:722 #: ../../Zotlabs/Module/Settings/Account.php:104 #: ../../Zotlabs/Module/Settings/Display.php:186 #: ../../Zotlabs/Module/Settings/Featured.php:56 @@ -956,7 +1339,7 @@ msgstr "" #: ../../Zotlabs/Module/Settings/Tokens.php:167 #: ../../Zotlabs/Module/Settings/Oauth2.php:95 #: ../../Zotlabs/Module/Settings/Network.php:41 -#: ../../Zotlabs/Module/Settings/Channel.php:515 +#: ../../Zotlabs/Module/Settings/Channel.php:524 #: ../../Zotlabs/Module/Setup.php:321 ../../Zotlabs/Module/Setup.php:364 #: ../../Zotlabs/Module/Sources.php:117 ../../Zotlabs/Module/Sources.php:154 #: ../../Zotlabs/Module/Thing.php:328 ../../Zotlabs/Module/Thing.php:381 @@ -970,469 +1353,101 @@ msgstr "" #: ../../extend/addon/a/wiki/Wiki_pages.php:98 #: ../../extend/addon/a/wiki/Mod_Wiki.php:213 #: ../../extend/addon/a/zotpost/Mod_zotpost.php:79 -#: ../../extend/addon/a/activitypub.orig/activitypub.php:969 #: ../../extend/addon/a/file_import/Mod_file_import.php:90 msgid "Submit" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:821 +#: ../../Zotlabs/Lib/ThreadItem.php:878 msgid "Add Conversation Mentions" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:822 ../../include/conversation.php:1355 -#: ../../extend/addon/a/hsse/hsse.php:199 +#: ../../Zotlabs/Lib/ThreadItem.php:879 ../../include/conversation.php:1356 msgid "Bold" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:823 ../../include/conversation.php:1356 -#: ../../extend/addon/a/hsse/hsse.php:200 +#: ../../Zotlabs/Lib/ThreadItem.php:880 ../../include/conversation.php:1357 msgid "Italic" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:824 ../../include/conversation.php:1357 -#: ../../extend/addon/a/hsse/hsse.php:201 +#: ../../Zotlabs/Lib/ThreadItem.php:881 ../../include/conversation.php:1358 msgid "Underline" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:825 ../../include/conversation.php:1358 -#: ../../extend/addon/a/hsse/hsse.php:202 +#: ../../Zotlabs/Lib/ThreadItem.php:882 ../../include/conversation.php:1359 msgid "Quote" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:826 ../../include/conversation.php:1359 -#: ../../extend/addon/a/hsse/hsse.php:203 +#: ../../Zotlabs/Lib/ThreadItem.php:883 ../../include/conversation.php:1360 msgid "Code" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:827 +#: ../../Zotlabs/Lib/ThreadItem.php:884 msgid "Image" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:828 ../../include/conversation.php:1360 -#: ../../extend/addon/a/hsse/hsse.php:204 +#: ../../Zotlabs/Lib/ThreadItem.php:885 ../../include/conversation.php:1361 msgid "Attach/Upload file" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:829 +#: ../../Zotlabs/Lib/ThreadItem.php:886 msgid "Insert Link" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:830 +#: ../../Zotlabs/Lib/ThreadItem.php:887 msgid "Video" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:831 ../../Zotlabs/Module/Events.php:479 +#: ../../Zotlabs/Lib/ThreadItem.php:888 ../../Zotlabs/Module/Events.php:479 #: ../../Zotlabs/Module/Photos.php:1023 ../../Zotlabs/Module/Webpages.php:262 -#: ../../include/conversation.php:1308 ../../extend/addon/a/hsse/hsse.php:152 +#: ../../include/conversation.php:1309 msgid "Preview" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:835 ../../Zotlabs/Module/Chat.php:223 -#: ../../include/conversation.php:1410 ../../extend/addon/a/hsse/hsse.php:254 +#: ../../Zotlabs/Lib/ThreadItem.php:892 ../../Zotlabs/Module/Chat.php:223 +#: ../../include/conversation.php:1411 msgid "Encrypt text" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:840 +#: ../../Zotlabs/Lib/ThreadItem.php:897 msgid "Your full name (required)" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:841 +#: ../../Zotlabs/Lib/ThreadItem.php:898 msgid "Your email address (required)" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:842 +#: ../../Zotlabs/Lib/ThreadItem.php:899 msgid "Your website URL (optional)" msgstr "" -#: ../../Zotlabs/Lib/Activity.php:1138 ../../Zotlabs/Lib/Apps.php:998 -#: ../../Zotlabs/Lib/Apps.php:1083 ../../Zotlabs/Module/Cdav.php:811 -#: ../../Zotlabs/Module/Cdav.php:812 ../../Zotlabs/Module/Cdav.php:819 -#: ../../Zotlabs/Module/Embedphotos.php:146 -#: ../../Zotlabs/Module/Photos.php:722 ../../Zotlabs/Module/Photos.php:1173 -#: ../../Zotlabs/Storage/Browser.php:164 ../../Zotlabs/Widget/Album.php:84 -#: ../../Zotlabs/Widget/Portfolio.php:95 ../../include/conversation.php:1115 -#: ../../extend/addon/a/activitypub.orig/as.php:940 -msgid "Unknown" +#: ../../Zotlabs/Lib/Connect.php:44 +msgid "Channel is blocked on this site." msgstr "" -#: ../../Zotlabs/Lib/Activity.php:1657 -#, php-format -msgid "Likes %1$s's %2$s" +#: ../../Zotlabs/Lib/Connect.php:49 +msgid "Channel location missing." msgstr "" -#: ../../Zotlabs/Lib/Activity.php:1660 -#, php-format -msgid "Doesn't like %1$s's %2$s" +#: ../../Zotlabs/Lib/Connect.php:101 +msgid "Remote channel or protocol unavailable." msgstr "" -#: ../../Zotlabs/Lib/Activity.php:1663 -#, php-format -msgid "Will attend %1$s's %2$s" +#: ../../Zotlabs/Lib/Connect.php:136 +msgid "Channel discovery failed." msgstr "" -#: ../../Zotlabs/Lib/Activity.php:1666 -#, php-format -msgid "Will not attend %1$s's %2$s" +#: ../../Zotlabs/Lib/Connect.php:147 +msgid "Protocol not supported" msgstr "" -#: ../../Zotlabs/Lib/Activity.php:1669 -#, php-format -msgid "May attend %1$s's %2$s" +#: ../../Zotlabs/Lib/Connect.php:157 +msgid "Cannot connect to yourself." msgstr "" -#: ../../Zotlabs/Lib/Activity.php:1672 ../../Zotlabs/Module/Share.php:101 -#, php-format -msgid "🔁 Repeated %1$s's %2$s" -msgstr "" - -#: ../../Zotlabs/Lib/Activity.php:2139 ../../Zotlabs/Lib/Activity.php:2336 -#: ../../include/network.php:1827 -#: ../../extend/addon/a/activitypub.orig/as.php:1198 -#: ../../extend/addon/a/activitypub.orig/as.php:1353 -#: ../../extend/addon/a/activitypub.orig/as.php:1532 -msgid "ActivityPub" -msgstr "" - -#: ../../Zotlabs/Lib/Activity.php:2292 ../../Zotlabs/Module/Like.php:328 -#: ../../Zotlabs/Module/Subthread.php:110 ../../Zotlabs/Module/Tagger.php:71 -#: ../../include/text.php:2019 ../../include/conversation.php:114 -#: ../../extend/addon/a/activitypub.orig/as.php:1488 -msgid "photo" -msgstr "" - -#: ../../Zotlabs/Lib/Activity.php:2292 ../../Zotlabs/Module/Like.php:328 -#: ../../Zotlabs/Module/Subthread.php:110 ../../include/text.php:2025 -#: ../../include/conversation.php:142 -#: ../../extend/addon/a/activitypub.orig/as.php:1488 -msgid "status" -msgstr "" - -#: ../../Zotlabs/Lib/Activity.php:2327 ../../Zotlabs/Module/Like.php:359 -#: ../../include/conversation.php:158 -#: ../../extend/addon/a/activitypub.orig/as.php:1523 -#, php-format -msgid "%1$s likes %2$s's %3$s" -msgstr "" - -#: ../../Zotlabs/Lib/Activity.php:2329 ../../Zotlabs/Module/Like.php:361 -#: ../../include/conversation.php:161 -#: ../../extend/addon/a/activitypub.orig/as.php:1525 -#, php-format -msgid "%1$s doesn't like %2$s's %3$s" -msgstr "" - -#: ../../Zotlabs/Lib/Libzot.php:658 +#: ../../Zotlabs/Lib/Libzot.php:660 msgid "Unable to verify channel signature" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:302 -msgid "Apps" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:303 -#: ../../Zotlabs/Module/Settings/Network.php:100 -#: ../../include/features.php:430 -msgid "Affinity Tool" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:304 ../../include/nav.php:454 -#: ../../include/features.php:136 -#: ../../extend/addon/a/articles/Mod_Articles.php:44 -#: ../../extend/addon/a/articles/Mod_Articles.php:213 -msgid "Articles" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:305 ../../Zotlabs/Module/Cards.php:203 -#: ../../include/nav.php:443 ../../include/conversation.php:1873 -msgid "Cards" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:306 -msgid "Site Admin" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:307 -msgid "Report Bug" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:308 -msgid "View Bookmarks" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:309 ../../Zotlabs/Widget/Chatroom_list.php:16 -#: ../../include/nav.php:419 ../../include/nav.php:422 -#: ../../include/conversation.php:1847 ../../include/conversation.php:1850 -msgid "Chatrooms" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:310 ../../Zotlabs/Module/Connections.php:331 -#: ../../include/text.php:967 -msgid "Connections" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:311 -msgid "Remote Diagnostics" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:312 -#: ../../Zotlabs/Module/Settings/Network.php:108 -#: ../../include/features.php:439 -msgid "Suggest Channels" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:313 ../../include/nav.php:113 -#: ../../include/nav.php:117 ../../boot.php:1605 -msgid "Login" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:314 ../../Zotlabs/Module/Manage.php:171 -#: ../../include/nav.php:87 -msgid "Channel Manager" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:315 -msgid "Stream" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:316 ../../Zotlabs/Module/Admin/Addons.php:344 -#: ../../Zotlabs/Module/Admin/Themes.php:125 -#: ../../Zotlabs/Widget/Newmember.php:46 -#: ../../Zotlabs/Widget/Settings_menu.php:119 ../../include/nav.php:92 -msgid "Settings" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:317 ../../Zotlabs/Module/Fbrowser.php:85 -#: ../../Zotlabs/Storage/Browser.php:272 ../../include/nav.php:394 -#: ../../include/conversation.php:1822 -msgid "Files" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:318 ../../Zotlabs/Module/Webpages.php:252 -#: ../../include/nav.php:466 ../../include/conversation.php:1895 -msgid "Webpages" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:319 ../../include/nav.php:481 -#: ../../include/conversation.php:1911 -msgid "Wiki" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:320 -msgid "Channel Home" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:321 ../../Zotlabs/Module/Connedit.php:535 -#: ../../include/nav.php:101 -msgid "View Profile" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:322 ../../Zotlabs/Module/Fbrowser.php:29 -#: ../../include/nav.php:386 ../../include/conversation.php:1814 -msgid "Photos" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:323 ../../include/conversation.php:1833 -#: ../../include/conversation.php:1836 -msgid "Events" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:324 -msgid "Directory" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:325 ../../Zotlabs/Module/Layouts.php:186 -#: ../../include/help.php:117 ../../include/help.php:125 -#: ../../include/nav.php:163 ../../include/nav.php:268 -msgid "Help" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:326 -msgid "Mail" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:327 ../../Zotlabs/Module/Mood.php:150 -msgid "Mood" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:328 ../../Zotlabs/Module/Poke.php:197 -msgid "Poke" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:329 -msgid "Chat" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:330 ../../Zotlabs/Module/Connections.php:335 -#: ../../Zotlabs/Module/Search.php:45 ../../Zotlabs/Widget/Sitesearch.php:31 -#: ../../include/nav.php:178 ../../include/text.php:1054 -#: ../../include/text.php:1066 ../../include/acl_selectors.php:118 -msgid "Search" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:331 ../../Zotlabs/Widget/Stream_order.php:129 -msgid "Stream Order" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:332 -msgid "Probe" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:333 -msgid "Suggest" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:334 -msgid "Random Channel" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:335 -msgid "Invite" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:336 -msgid "Features" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:337 -msgid "Language" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:338 -msgid "Post" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:339 -#: ../../extend/addon/a/zotpost/Mod_zotpost.php:51 -msgid "ZotPost" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:340 -msgid "Profile Photo" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:341 ../../Zotlabs/Module/Profperm.php:113 -#: ../../include/channel.php:1651 -msgid "Profile" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:342 -msgid "Profiles" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:343 ../../Zotlabs/Lib/Group.php:320 -#: ../../Zotlabs/Module/Group.php:113 ../../Zotlabs/Module/Group.php:124 -#: ../../Zotlabs/Widget/Activity_filter.php:67 ../../include/nav.php:90 -#: ../../include/features.php:225 -msgid "Privacy Groups" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:344 -msgid "Notifications" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:345 -msgid "Order Apps" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:346 -msgid "CalDAV" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:347 -msgid "CardDAV" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:348 ../../Zotlabs/Module/Sources.php:99 -#: ../../Zotlabs/Widget/Settings_menu.php:111 -msgid "Channel Sources" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:349 -msgid "Gallery" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:350 -msgid "Guest Access" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:351 ../../Zotlabs/Widget/Notes.php:16 -msgid "Notes" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:352 -msgid "OAuth Apps Manager" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:353 -msgid "OAuth2 Apps Manager" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:354 -msgid "PDL Editor" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:355 -#: ../../Zotlabs/Module/Settings/Permcats.php:100 -#: ../../Zotlabs/Widget/Settings_menu.php:94 -msgid "Permission Categories" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:356 -msgid "Premium Channel" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:357 ../../Zotlabs/Module/Pubstream.php:95 -#: ../../Zotlabs/Widget/Notifications.php:142 -msgid "Public Stream" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:358 -msgid "My Chatrooms" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:359 -#: ../../extend/addon/a/file_import/Mod_file_import.php:85 -msgid "File Storage Import" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:519 ../../Zotlabs/Module/Admin/Addons.php:453 -#: ../../Zotlabs/Module/Cdav.php:1229 ../../Zotlabs/Module/Connedit.php:859 -#: ../../Zotlabs/Module/Profiles.php:800 -#: ../../Zotlabs/Module/Settings/Oauth.php:43 -#: ../../Zotlabs/Module/Settings/Oauth.php:114 -#: ../../Zotlabs/Module/Settings/Oauth2.php:49 -#: ../../Zotlabs/Module/Settings/Oauth2.php:123 -msgid "Update" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:519 ../../Zotlabs/Module/Admin/Addons.php:422 -msgid "Install" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:536 -msgid "Purchase" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:541 -msgid "Undelete" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:550 -msgid "Add to app-tray" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:551 -msgid "Remove from app-tray" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:552 -msgid "Pin to navbar" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:553 -msgid "Unpin from navbar" -msgstr "" - #: ../../Zotlabs/Lib/Group.php:28 msgid "" "A deleted group with this name was revived. Existing item permissions " @@ -1464,21 +1479,21 @@ msgstr "" msgid "add" msgstr "" -#: ../../Zotlabs/Module/Acl.php:123 ../../Zotlabs/Module/Lockview.php:117 +#: ../../Zotlabs/Module/Acl.php:122 ../../Zotlabs/Module/Lockview.php:117 #: ../../Zotlabs/Module/Lockview.php:153 ../../include/acl_selectors.php:88 msgctxt "acl" msgid "Profile" msgstr "" -#: ../../Zotlabs/Module/Acl.php:361 +#: ../../Zotlabs/Module/Acl.php:360 msgid "network" msgstr "" #: ../../Zotlabs/Module/Admin.php:63 ../../Zotlabs/Module/Admin/Addons.php:259 #: ../../Zotlabs/Module/Admin/Themes.php:72 -#: ../../Zotlabs/Module/Display.php:44 ../../Zotlabs/Module/Display.php:452 +#: ../../Zotlabs/Module/Display.php:50 ../../Zotlabs/Module/Display.php:457 #: ../../Zotlabs/Module/Filestorage.php:27 ../../Zotlabs/Module/Thing.php:96 -#: ../../Zotlabs/Module/Viewsrc.php:25 ../../include/items.php:3584 +#: ../../Zotlabs/Module/Viewsrc.php:25 ../../include/items.php:3491 msgid "Item not found." msgstr "" @@ -1529,14 +1544,14 @@ msgstr "" #: ../../Zotlabs/Module/Admin/Addons.php:436 #: ../../Zotlabs/Module/Admin/Channels.php:145 #: ../../Zotlabs/Module/Admin/Logs.php:82 -#: ../../Zotlabs/Module/Admin/Security.php:95 #: ../../Zotlabs/Module/Admin/Themes.php:122 #: ../../Zotlabs/Module/Admin/Themes.php:156 #: ../../Zotlabs/Module/Admin/Site.php:288 +#: ../../Zotlabs/Module/Admin/Security.php:119 msgid "Administration" msgstr "" -#: ../../Zotlabs/Module/Admin.php:147 ../../include/conversation.php:1419 +#: ../../Zotlabs/Module/Admin.php:147 ../../include/conversation.php:1420 msgid "Summary" msgstr "" @@ -1623,7 +1638,7 @@ msgstr[1] "" msgid "Account not found" msgstr "" -#: ../../Zotlabs/Module/Admin/Accounts.php:91 ../../include/channel.php:2490 +#: ../../Zotlabs/Module/Admin/Accounts.php:91 ../../include/channel.php:2516 #, php-format msgid "Account '%s' deleted" msgstr "" @@ -1654,7 +1669,7 @@ msgstr "" #: ../../Zotlabs/Module/Admin/Accounts.php:171 #: ../../Zotlabs/Module/Admin/Accounts.php:183 #: ../../Zotlabs/Module/Cdav.php:1217 ../../Zotlabs/Module/Connedit.php:847 -#: ../../Zotlabs/Module/Profiles.php:788 ../../include/network.php:1828 +#: ../../Zotlabs/Module/Profiles.php:786 ../../include/network.php:1927 msgid "Email" msgstr "" @@ -1673,12 +1688,12 @@ msgid "Deny" msgstr "" #: ../../Zotlabs/Module/Admin/Accounts.php:176 -#: ../../Zotlabs/Module/Connedit.php:563 +#: ../../Zotlabs/Module/Connedit.php:571 msgid "Block" msgstr "" #: ../../Zotlabs/Module/Admin/Accounts.php:177 -#: ../../Zotlabs/Module/Connedit.php:563 +#: ../../Zotlabs/Module/Connedit.php:571 msgid "Unblock" msgstr "" @@ -1813,23 +1828,21 @@ msgstr "" #: ../../Zotlabs/Module/Cover_photo.php:408 #: ../../Zotlabs/Module/Editblock.php:141 #: ../../Zotlabs/Module/Editlayout.php:140 -#: ../../Zotlabs/Module/Editpost.php:108 +#: ../../Zotlabs/Module/Editpost.php:107 #: ../../Zotlabs/Module/Editwebpage.php:169 #: ../../Zotlabs/Module/Fbrowser.php:66 ../../Zotlabs/Module/Fbrowser.php:88 #: ../../Zotlabs/Module/Filer.php:53 #: ../../Zotlabs/Module/Profile_photo.php:468 -#: ../../Zotlabs/Module/Profiles.php:802 +#: ../../Zotlabs/Module/Profiles.php:800 #: ../../Zotlabs/Module/Settings/Oauth.php:89 #: ../../Zotlabs/Module/Settings/Oauth.php:115 #: ../../Zotlabs/Module/Settings/Oauth2.php:96 #: ../../Zotlabs/Module/Settings/Oauth2.php:124 #: ../../Zotlabs/Module/Tagrm.php:15 ../../Zotlabs/Module/Tagrm.php:138 -#: ../../include/conversation.php:1364 ../../include/conversation.php:1413 +#: ../../include/conversation.php:1365 ../../include/conversation.php:1414 #: ../../extend/addon/a/articles/Mod_Article_edit.php:133 #: ../../extend/addon/a/wiki/Mod_Wiki.php:357 #: ../../extend/addon/a/wiki/Mod_Wiki.php:391 -#: ../../extend/addon/a/hsse/hsse.php:208 -#: ../../extend/addon/a/hsse/hsse.php:257 msgid "Cancel" msgstr "" @@ -1921,8 +1934,8 @@ msgstr "" msgid "Disallow Code" msgstr "" -#: ../../Zotlabs/Module/Admin/Channels.php:154 ../../include/nav.php:363 -#: ../../include/conversation.php:1791 +#: ../../Zotlabs/Module/Admin/Channels.php:154 +#: ../../include/conversation.php:1840 ../../include/nav.php:393 msgid "Channel" msgstr "" @@ -1939,16 +1952,16 @@ msgstr "" #: ../../Zotlabs/Module/Settings/Oauth2.php:125 #: ../../Zotlabs/Module/Sharedwithme.php:104 #: ../../Zotlabs/Storage/Browser.php:285 -#: ../../extend/addon/a/wiki/Mod_Wiki.php:216 -#: ../../extend/addon/a/wiki/NativeWikiPage.php:555 #: ../../extend/addon/a/wiki/Wiki_page_history.php:22 +#: ../../extend/addon/a/wiki/NativeWikiPage.php:555 +#: ../../extend/addon/a/wiki/Mod_Wiki.php:216 msgid "Name" msgstr "" #: ../../Zotlabs/Module/Admin/Channels.php:160 #: ../../Zotlabs/Module/Cdav.php:1220 ../../Zotlabs/Module/Connedit.php:850 -#: ../../Zotlabs/Module/Locs.php:118 ../../Zotlabs/Module/Profiles.php:504 -#: ../../Zotlabs/Module/Profiles.php:791 +#: ../../Zotlabs/Module/Locs.php:118 ../../Zotlabs/Module/Profiles.php:502 +#: ../../Zotlabs/Module/Profiles.php:789 msgid "Address" msgstr "" @@ -2099,9 +2112,9 @@ msgstr "" #: ../../Zotlabs/Module/Admin/Profs.php:94 #: ../../Zotlabs/Module/Admin/Profs.php:114 ../../Zotlabs/Module/Filer.php:51 -#: ../../Zotlabs/Module/Rbmark.php:30 ../../Zotlabs/Module/Rbmark.php:102 -#: ../../Zotlabs/Widget/Notes.php:18 ../../include/text.php:1055 -#: ../../include/text.php:1067 +#: ../../Zotlabs/Module/Rbmark.php:29 ../../Zotlabs/Module/Rbmark.php:101 +#: ../../Zotlabs/Widget/Notes.php:18 ../../include/text.php:1072 +#: ../../include/text.php:1084 msgid "Save" msgstr "" @@ -2169,139 +2182,6 @@ msgstr "" msgid "Last known contact" msgstr "" -#: ../../Zotlabs/Module/Admin/Security.php:86 -msgid "" -"By default, unfiltered HTML is allowed in embedded media. This is inherently " -"insecure." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Security.php:89 -msgid "" -"The recommended setting is to only allow unfiltered HTML from the following " -"sites:" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Security.php:90 -msgid "" -"https://youtube.com/
https://www.youtube.com/
https://youtu.be/" -"
https://vimeo.com/
https://soundcloud.com/
" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Security.php:91 -msgid "" -"All other embedded content will be filtered, unless " -"embedded content from that site is explicitly blocked." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Security.php:96 -#: ../../Zotlabs/Widget/Admin.php:25 -msgid "Security" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Security.php:98 -msgid "Block public" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Security.php:98 -msgid "" -"Check to block public access to all otherwise public personal pages on this " -"site unless you are currently authenticated." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Security.php:99 -msgid "Hide local directory" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Security.php:99 -msgid "Only use the global directory" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Security.php:100 -msgid "Provide a cloud root directory" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Security.php:100 -msgid "" -"The cloud root directory lists all channel names which provide public files" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Security.php:101 -msgid "Show total disk space available to cloud uploads" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Security.php:102 -msgid "Set \"Transport Security\" HTTP header" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Security.php:103 -msgid "Set \"Content Security Policy\" HTTP header" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Security.php:104 -msgid "Allowed email domains" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Security.php:104 -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 "" - -#: ../../Zotlabs/Module/Admin/Security.php:105 -msgid "Not allowed email domains" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Security.php:105 -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 "" - -#: ../../Zotlabs/Module/Admin/Security.php:106 -msgid "Allow communications only from these sites" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Security.php:106 -msgid "" -"One site per line. Leave empty to allow communication from anywhere by " -"default" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Security.php:107 -msgid "Block communications from these sites" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Security.php:108 -msgid "Allow communications only from these channels" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Security.php:108 -msgid "" -"One channel (hash) per line. Leave empty to allow from any channel by default" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Security.php:109 -msgid "Block communications from these channels" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Security.php:110 -msgid "Only allow embeds from secure (SSL) websites and links." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Security.php:111 -msgid "Allow unfiltered embedded HTML content only from these domains" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Security.php:111 -msgid "One site per line. By default embedded content is filtered." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Security.php:112 -msgid "Block embedded HTML from these domains" -msgstr "" - #: ../../Zotlabs/Module/Admin/Themes.php:26 msgid "Theme settings updated." msgstr "" @@ -2331,7 +2211,7 @@ msgstr "" msgid "Site settings updated." msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:189 ../../include/text.php:3075 +#: ../../Zotlabs/Module/Admin/Site.php:189 ../../include/text.php:3099 #: ../../view/theme/redbasic/php/config.php:15 msgid "Default" msgstr "" @@ -2401,7 +2281,7 @@ msgid "Policies" msgstr "" #: ../../Zotlabs/Module/Admin/Site.php:294 -#: ../../include/contact_widgets.php:16 +#: ../../Zotlabs/Widget/Findpeople.php:23 msgid "Advanced" msgstr "" @@ -2428,7 +2308,7 @@ msgid "" msgstr "" #: ../../Zotlabs/Module/Admin/Site.php:302 -#: ../../Zotlabs/Module/Siteinfo.php:30 +#: ../../Zotlabs/Module/Siteinfo.php:33 msgid "Site Information" msgstr "" @@ -2776,6 +2656,157 @@ msgstr "" msgid "Region or country" msgstr "" +#: ../../Zotlabs/Module/Admin/Security.php:110 +msgid "" +"By default, unfiltered HTML is allowed in embedded media. This is inherently " +"insecure." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Security.php:113 +msgid "" +"The recommended setting is to only allow unfiltered HTML from the following " +"sites:" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Security.php:114 +msgid "" +"https://youtube.com/
https://www.youtube.com/
https://youtu.be/" +"
https://vimeo.com/
https://soundcloud.com/
" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Security.php:115 +msgid "" +"All other embedded content will be filtered, unless " +"embedded content from that site is explicitly blocked." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Security.php:120 +#: ../../Zotlabs/Widget/Admin.php:25 +msgid "Security" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Security.php:122 +msgid "Block public" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Security.php:122 +msgid "" +"Check to block public access to all otherwise public personal pages on this " +"site unless you are currently authenticated." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Security.php:123 +msgid "Hide local directory" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Security.php:123 +msgid "Only use the global directory" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Security.php:124 +msgid "Provide a cloud root directory" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Security.php:124 +msgid "" +"The cloud root directory lists all channel names which provide public files" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Security.php:125 +msgid "Show total disk space available to cloud uploads" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Security.php:126 +msgid "Set \"Transport Security\" HTTP header" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Security.php:127 +msgid "Set \"Content Security Policy\" HTTP header" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Security.php:128 +msgid "Allowed email domains" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Security.php:128 +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 "" + +#: ../../Zotlabs/Module/Admin/Security.php:129 +msgid "Not allowed email domains" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Security.php:129 +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 "" + +#: ../../Zotlabs/Module/Admin/Security.php:130 +msgid "Allow communications only from these sites" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Security.php:130 +#: ../../Zotlabs/Module/Admin/Security.php:135 +msgid "" +"One site per line. Leave empty to allow communication from anywhere by " +"default" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Security.php:131 +msgid "Block communications from these sites" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Security.php:132 +msgid "Allow communications only from these channels" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Security.php:132 +#: ../../Zotlabs/Module/Admin/Security.php:137 +msgid "" +"One channel (hash) per line. Leave empty to allow from any channel by default" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Security.php:133 +msgid "Block communications from these channels" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Security.php:135 +msgid "Allow public stream communications only from these sites" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Security.php:136 +msgid "Block public stream communications from these sites" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Security.php:137 +msgid "Allow public stream communications only from these channels" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Security.php:138 +msgid "Block public stream communications from these channels" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Security.php:141 +msgid "Only allow embeds from secure (SSL) websites and links." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Security.php:142 +msgid "Allow unfiltered embedded HTML content only from these domains" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Security.php:142 +msgid "One site per line. By default embedded content is filtered." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Security.php:143 +msgid "Block embedded HTML from these domains" +msgstr "" + #: ../../Zotlabs/Module/Api.php:74 ../../Zotlabs/Module/Api.php:95 msgid "Authorize application connection" msgstr "" @@ -2820,7 +2851,7 @@ msgstr "" #: ../../Zotlabs/Module/Appman.php:142 ../../Zotlabs/Module/Appman.php:143 #: ../../Zotlabs/Module/Events.php:461 ../../Zotlabs/Module/Events.php:466 -#: ../../Zotlabs/Module/Profiles.php:746 ../../Zotlabs/Module/Profiles.php:750 +#: ../../Zotlabs/Module/Profiles.php:744 ../../Zotlabs/Module/Profiles.php:748 #: ../../include/datetime.php:211 msgid "Required" msgstr "" @@ -2830,7 +2861,7 @@ msgid "Location (URL) of app" msgstr "" #: ../../Zotlabs/Module/Appman.php:144 ../../Zotlabs/Module/Cdav.php:914 -#: ../../Zotlabs/Module/Events.php:474 ../../Zotlabs/Module/Rbmark.php:99 +#: ../../Zotlabs/Module/Events.php:474 ../../Zotlabs/Module/Rbmark.php:98 msgid "Description" msgstr "" @@ -2858,21 +2889,21 @@ msgstr "" msgid "Location (URL) to purchase app" msgstr "" -#: ../../Zotlabs/Module/Apporder.php:44 +#: ../../Zotlabs/Module/Apporder.php:47 msgid "Change Order of Pinned Navbar Apps" msgstr "" -#: ../../Zotlabs/Module/Apporder.php:44 +#: ../../Zotlabs/Module/Apporder.php:47 msgid "Change Order of App Tray Apps" msgstr "" -#: ../../Zotlabs/Module/Apporder.php:45 +#: ../../Zotlabs/Module/Apporder.php:48 msgid "" "Use arrows to move the corresponding app left (top) or right (bottom) in the " "navbar" msgstr "" -#: ../../Zotlabs/Module/Apporder.php:45 +#: ../../Zotlabs/Module/Apporder.php:48 msgid "Use arrows to move the corresponding app up or down in the app tray" msgstr "" @@ -2924,21 +2955,21 @@ msgstr "" msgid "Channel not found." msgstr "" -#: ../../Zotlabs/Module/Block.php:76 ../../Zotlabs/Module/Display.php:139 -#: ../../Zotlabs/Module/Display.php:156 ../../Zotlabs/Module/Display.php:173 +#: ../../Zotlabs/Module/Block.php:76 ../../Zotlabs/Module/Display.php:145 +#: ../../Zotlabs/Module/Display.php:162 ../../Zotlabs/Module/Display.php:179 #: ../../Zotlabs/Module/Page.php:136 ../../Zotlabs/Web/Router.php:171 #: ../../include/help.php:132 ../../extend/addon/a/wiki/NativeWikiPage.php:516 msgid "Page not found." msgstr "" #: ../../Zotlabs/Module/Blocks.php:33 ../../Zotlabs/Module/Cards.php:37 -#: ../../Zotlabs/Module/Connect.php:15 ../../Zotlabs/Module/Editblock.php:31 +#: ../../Zotlabs/Module/Connect.php:16 ../../Zotlabs/Module/Editblock.php:31 #: ../../Zotlabs/Module/Editlayout.php:31 #: ../../Zotlabs/Module/Editwebpage.php:32 #: ../../Zotlabs/Module/Filestorage.php:54 ../../Zotlabs/Module/Hcard.php:12 #: ../../Zotlabs/Module/Layouts.php:31 ../../Zotlabs/Module/Menu.php:91 #: ../../Zotlabs/Module/Profile.php:23 ../../Zotlabs/Module/Webpages.php:39 -#: ../../include/channel.php:1204 +#: ../../include/channel.php:1230 #: ../../extend/addon/a/articles/Mod_Articles.php:33 msgid "Requested profile is not available." msgstr "" @@ -2948,7 +2979,7 @@ msgstr "" msgid "Block Name" msgstr "" -#: ../../Zotlabs/Module/Blocks.php:154 ../../include/text.php:2456 +#: ../../Zotlabs/Module/Blocks.php:154 ../../include/text.php:2480 msgid "Blocks" msgstr "" @@ -2970,7 +3001,7 @@ msgstr "" #: ../../Zotlabs/Module/Cdav.php:1228 ../../Zotlabs/Module/Connedit.php:858 #: ../../Zotlabs/Module/Layouts.php:185 ../../Zotlabs/Module/Menu.php:181 #: ../../Zotlabs/Module/New_channel.php:188 -#: ../../Zotlabs/Module/Profiles.php:799 ../../Zotlabs/Module/Webpages.php:254 +#: ../../Zotlabs/Module/Profiles.php:797 ../../Zotlabs/Module/Webpages.php:254 #: ../../Zotlabs/Storage/Browser.php:276 ../../Zotlabs/Storage/Browser.php:390 #: ../../Zotlabs/Widget/Cdav.php:128 ../../Zotlabs/Widget/Cdav.php:165 #: ../../extend/addon/a/articles/Mod_Articles.php:104 @@ -2979,14 +3010,13 @@ msgstr "" #: ../../Zotlabs/Module/Blocks.php:161 ../../Zotlabs/Module/Layouts.php:194 #: ../../Zotlabs/Module/Photos.php:1002 ../../Zotlabs/Module/Webpages.php:256 -#: ../../Zotlabs/Widget/Cdav.php:124 ../../include/conversation.php:1341 +#: ../../Zotlabs/Widget/Cdav.php:124 ../../include/conversation.php:1342 #: ../../extend/addon/a/wiki/Mod_Wiki.php:294 -#: ../../extend/addon/a/hsse/hsse.php:185 msgid "Share" msgstr "" #: ../../Zotlabs/Module/Blocks.php:166 ../../Zotlabs/Module/Events.php:696 -#: ../../Zotlabs/Module/Layouts.php:198 ../../Zotlabs/Module/Pubsites.php:61 +#: ../../Zotlabs/Module/Layouts.php:198 ../../Zotlabs/Module/Pubsites.php:63 #: ../../Zotlabs/Module/Webpages.php:261 #: ../../extend/addon/a/wiki/Mod_Wiki.php:211 #: ../../extend/addon/a/wiki/Mod_Wiki.php:399 @@ -3014,7 +3044,7 @@ msgid "l, F j" msgstr "" #: ../../Zotlabs/Module/Cal.php:313 ../../Zotlabs/Module/Events.php:662 -#: ../../include/text.php:1841 +#: ../../include/text.php:1865 msgid "Link to Source" msgstr "" @@ -3040,11 +3070,11 @@ msgid "Next" msgstr "" #: ../../Zotlabs/Module/Cal.php:339 ../../Zotlabs/Module/Events.php:693 -#: ../../include/channel.php:1654 +#: ../../include/channel.php:1680 msgid "Export" msgstr "" -#: ../../Zotlabs/Module/Cal.php:342 ../../include/text.php:2480 +#: ../../Zotlabs/Module/Cal.php:342 ../../include/text.php:2504 msgid "Import" msgstr "" @@ -3055,7 +3085,7 @@ msgstr "" #: ../../Zotlabs/Module/Card_edit.php:17 ../../Zotlabs/Module/Card_edit.php:33 #: ../../Zotlabs/Module/Editblock.php:79 ../../Zotlabs/Module/Editblock.php:95 -#: ../../Zotlabs/Module/Editlayout.php:79 ../../Zotlabs/Module/Editpost.php:23 +#: ../../Zotlabs/Module/Editlayout.php:79 ../../Zotlabs/Module/Editpost.php:22 #: ../../Zotlabs/Module/Editwebpage.php:80 #: ../../extend/addon/a/articles/Mod_Article_edit.php:17 #: ../../extend/addon/a/articles/Mod_Article_edit.php:33 @@ -3065,17 +3095,15 @@ msgstr "" #: ../../Zotlabs/Module/Card_edit.php:101 ../../Zotlabs/Module/Chat.php:224 #: ../../Zotlabs/Module/Editblock.php:116 #: ../../Zotlabs/Module/Editwebpage.php:143 -#: ../../include/conversation.php:1249 +#: ../../include/conversation.php:1250 #: ../../extend/addon/a/articles/Mod_Article_edit.php:101 -#: ../../extend/addon/a/hsse/hsse.php:94 msgid "Insert web link" msgstr "" #: ../../Zotlabs/Module/Card_edit.php:117 #: ../../Zotlabs/Module/Editblock.php:129 ../../Zotlabs/Module/Photos.php:603 -#: ../../Zotlabs/Module/Photos.php:968 ../../include/conversation.php:1376 +#: ../../Zotlabs/Module/Photos.php:968 ../../include/conversation.php:1377 #: ../../extend/addon/a/articles/Mod_Article_edit.php:117 -#: ../../extend/addon/a/hsse/hsse.php:220 msgid "Title (optional)" msgstr "" @@ -3140,8 +3168,8 @@ msgid "End date and time" msgstr "" #: ../../Zotlabs/Module/Cdav.php:915 ../../Zotlabs/Module/Events.php:476 -#: ../../Zotlabs/Module/Locs.php:117 ../../Zotlabs/Module/Profiles.php:511 -#: ../../Zotlabs/Module/Profiles.php:735 ../../Zotlabs/Module/Pubsites.php:53 +#: ../../Zotlabs/Module/Locs.php:117 ../../Zotlabs/Module/Profiles.php:509 +#: ../../Zotlabs/Module/Profiles.php:733 ../../Zotlabs/Module/Pubsites.php:55 #: ../../include/js_strings.php:25 msgid "Location" msgstr "" @@ -3199,61 +3227,62 @@ msgid "Title" msgstr "" #: ../../Zotlabs/Module/Cdav.php:1216 ../../Zotlabs/Module/Connedit.php:846 -#: ../../Zotlabs/Module/Profiles.php:787 +#: ../../Zotlabs/Module/Profiles.php:785 msgid "Phone" msgstr "" #: ../../Zotlabs/Module/Cdav.php:1218 ../../Zotlabs/Module/Connedit.php:848 -#: ../../Zotlabs/Module/Profiles.php:789 +#: ../../Zotlabs/Module/Profiles.php:787 msgid "Instant messenger" msgstr "" #: ../../Zotlabs/Module/Cdav.php:1219 ../../Zotlabs/Module/Connedit.php:849 -#: ../../Zotlabs/Module/Profiles.php:790 +#: ../../Zotlabs/Module/Profiles.php:788 msgid "Website" msgstr "" #: ../../Zotlabs/Module/Cdav.php:1221 ../../Zotlabs/Module/Connedit.php:851 -#: ../../Zotlabs/Module/Profiles.php:792 +#: ../../Zotlabs/Module/Profiles.php:790 msgid "Note" msgstr "" #: ../../Zotlabs/Module/Cdav.php:1222 ../../Zotlabs/Module/Connedit.php:852 -#: ../../Zotlabs/Module/Profiles.php:793 ../../include/connections.php:699 -#: ../../include/event.php:1332 +#: ../../Zotlabs/Module/Profiles.php:791 ../../include/event.php:1332 +#: ../../include/connections.php:699 msgid "Mobile" msgstr "" #: ../../Zotlabs/Module/Cdav.php:1223 ../../Zotlabs/Module/Connedit.php:853 -#: ../../Zotlabs/Module/Profiles.php:794 ../../include/connections.php:700 -#: ../../include/event.php:1333 +#: ../../Zotlabs/Module/Profiles.php:792 ../../include/event.php:1333 +#: ../../include/connections.php:700 msgid "Home" msgstr "" #: ../../Zotlabs/Module/Cdav.php:1224 ../../Zotlabs/Module/Connedit.php:854 -#: ../../Zotlabs/Module/Profiles.php:795 ../../include/connections.php:703 -#: ../../include/event.php:1336 +#: ../../Zotlabs/Module/Profiles.php:793 ../../include/event.php:1336 +#: ../../include/connections.php:703 msgid "Work" msgstr "" #: ../../Zotlabs/Module/Cdav.php:1225 ../../Zotlabs/Module/Connedit.php:855 #: ../../Zotlabs/Module/New_channel.php:172 -#: ../../Zotlabs/Module/Profiles.php:796 ../../Zotlabs/Module/Register.php:233 -#: ../../Zotlabs/Module/Settings/Channel.php:495 -#: ../../include/selectors.php:49 ../../include/selectors.php:66 -#: ../../include/selectors.php:104 ../../include/selectors.php:140 -#: ../../include/connections.php:706 ../../include/connections.php:713 -#: ../../include/event.php:1339 ../../include/event.php:1346 +#: ../../Zotlabs/Module/Profiles.php:794 ../../Zotlabs/Module/Profiles.php:929 +#: ../../Zotlabs/Module/Profiles.php:946 ../../Zotlabs/Module/Profiles.php:986 +#: ../../Zotlabs/Module/Profiles.php:1022 +#: ../../Zotlabs/Module/Register.php:233 +#: ../../Zotlabs/Module/Settings/Channel.php:504 ../../include/event.php:1339 +#: ../../include/event.php:1346 ../../include/connections.php:706 +#: ../../include/connections.php:713 msgid "Other" msgstr "" #: ../../Zotlabs/Module/Cdav.php:1226 ../../Zotlabs/Module/Connedit.php:856 -#: ../../Zotlabs/Module/Profiles.php:797 +#: ../../Zotlabs/Module/Profiles.php:795 msgid "Add Contact" msgstr "" #: ../../Zotlabs/Module/Cdav.php:1227 ../../Zotlabs/Module/Connedit.php:857 -#: ../../Zotlabs/Module/Profiles.php:798 +#: ../../Zotlabs/Module/Profiles.php:796 msgid "Add Field" msgstr "" @@ -3282,7 +3311,7 @@ msgid "ZIP Code" msgstr "" #: ../../Zotlabs/Module/Cdav.php:1238 ../../Zotlabs/Module/Connedit.php:868 -#: ../../Zotlabs/Module/Profiles.php:758 +#: ../../Zotlabs/Module/Profiles.php:756 msgid "Country" msgstr "" @@ -3301,12 +3330,12 @@ msgid "" msgstr "" #: ../../Zotlabs/Module/Changeaddr.php:46 ../../include/channel.php:222 -#: ../../include/channel.php:607 +#: ../../include/channel.php:633 msgid "Reserved nickname. Please choose another." msgstr "" #: ../../Zotlabs/Module/Changeaddr.php:51 ../../include/channel.php:227 -#: ../../include/channel.php:612 +#: ../../include/channel.php:638 msgid "" "Nickname has unsupported characters or is already being used on this site." msgstr "" @@ -3339,35 +3368,35 @@ msgstr "" msgid "Rename Channel" msgstr "" -#: ../../Zotlabs/Module/Channel.php:45 ../../Zotlabs/Module/Chat.php:33 +#: ../../Zotlabs/Module/Channel.php:46 ../../Zotlabs/Module/Chat.php:33 msgid "You must be logged in to see this page." msgstr "" -#: ../../Zotlabs/Module/Channel.php:65 ../../Zotlabs/Module/Hcard.php:37 +#: ../../Zotlabs/Module/Channel.php:66 ../../Zotlabs/Module/Hcard.php:37 #: ../../Zotlabs/Module/Profile.php:48 msgid "Posts and comments" msgstr "" -#: ../../Zotlabs/Module/Channel.php:72 ../../Zotlabs/Module/Hcard.php:44 +#: ../../Zotlabs/Module/Channel.php:73 ../../Zotlabs/Module/Hcard.php:44 #: ../../Zotlabs/Module/Profile.php:55 msgid "Only posts" msgstr "" -#: ../../Zotlabs/Module/Channel.php:187 +#: ../../Zotlabs/Module/Channel.php:188 msgid "Insufficient permissions. Request redirected to profile page." msgstr "" -#: ../../Zotlabs/Module/Channel.php:204 ../../Zotlabs/Module/Network.php:174 +#: ../../Zotlabs/Module/Channel.php:205 ../../Zotlabs/Module/Network.php:174 msgid "Search Results For:" msgstr "" -#: ../../Zotlabs/Module/Channel.php:239 ../../Zotlabs/Module/Display.php:79 +#: ../../Zotlabs/Module/Channel.php:240 ../../Zotlabs/Module/Display.php:85 #: ../../Zotlabs/Module/Hq.php:133 ../../Zotlabs/Module/Network.php:204 #: ../../Zotlabs/Module/Pubstream.php:80 msgid "Reset form" msgstr "" -#: ../../Zotlabs/Module/Channel.php:495 ../../Zotlabs/Module/Display.php:374 +#: ../../Zotlabs/Module/Channel.php:496 ../../Zotlabs/Module/Display.php:380 msgid "" "You must enable javascript for your browser to be able to view this content." msgstr "" @@ -3404,8 +3433,7 @@ msgstr "" msgid "Bookmark this room" msgstr "" -#: ../../Zotlabs/Module/Chat.php:222 ../../include/conversation.php:1289 -#: ../../extend/addon/a/hsse/hsse.php:133 +#: ../../Zotlabs/Module/Chat.php:222 ../../include/conversation.php:1290 msgid "Please enter a link URL:" msgstr "" @@ -3421,7 +3449,7 @@ msgstr "" msgid "Expiration of chats (minutes)" msgstr "" -#: ../../Zotlabs/Module/Chat.php:245 ../../Zotlabs/Module/Connedit.php:617 +#: ../../Zotlabs/Module/Chat.php:245 ../../Zotlabs/Module/Connedit.php:625 #: ../../Zotlabs/Module/Filestorage.php:173 #: ../../Zotlabs/Module/Photos.php:607 ../../Zotlabs/Module/Photos.php:971 #: ../../Zotlabs/Module/Thing.php:321 ../../Zotlabs/Module/Thing.php:374 @@ -3439,7 +3467,7 @@ msgid "No chatrooms available" msgstr "" #: ../../Zotlabs/Module/Chat.php:266 ../../Zotlabs/Module/Manage.php:145 -#: ../../Zotlabs/Module/Profiles.php:832 +#: ../../Zotlabs/Module/Profiles.php:830 #: ../../extend/addon/a/wiki/Mod_Wiki.php:212 msgid "Create New" msgstr "" @@ -3466,10 +3494,10 @@ msgstr "" #: ../../Zotlabs/Module/Cloud.php:126 ../../Zotlabs/Module/Dreport.php:10 #: ../../Zotlabs/Module/Dreport.php:79 ../../Zotlabs/Module/Group.php:83 -#: ../../Zotlabs/Module/Import_items.php:120 ../../Zotlabs/Module/Like.php:255 +#: ../../Zotlabs/Module/Import_items.php:120 ../../Zotlabs/Module/Like.php:259 #: ../../Zotlabs/Module/Profperm.php:28 ../../Zotlabs/Module/Share.php:69 #: ../../Zotlabs/Module/Subthread.php:85 ../../Zotlabs/Web/WebServer.php:122 -#: ../../include/items.php:375 +#: ../../include/items.php:385 msgid "Permission denied" msgstr "" @@ -3493,46 +3521,46 @@ msgstr "" msgid "View Common Connections" msgstr "" -#: ../../Zotlabs/Module/Connect.php:59 ../../Zotlabs/Module/Connect.php:107 +#: ../../Zotlabs/Module/Connect.php:60 ../../Zotlabs/Module/Connect.php:108 msgid "Continue" msgstr "" -#: ../../Zotlabs/Module/Connect.php:88 +#: ../../Zotlabs/Module/Connect.php:89 msgid "Premium Channel Setup" msgstr "" -#: ../../Zotlabs/Module/Connect.php:90 +#: ../../Zotlabs/Module/Connect.php:91 msgid "Enable premium channel connection restrictions" msgstr "" -#: ../../Zotlabs/Module/Connect.php:91 +#: ../../Zotlabs/Module/Connect.php:92 msgid "" "Please enter your restrictions or conditions, such as paypal receipt, usage " "guidelines, etc." msgstr "" -#: ../../Zotlabs/Module/Connect.php:93 ../../Zotlabs/Module/Connect.php:113 +#: ../../Zotlabs/Module/Connect.php:94 ../../Zotlabs/Module/Connect.php:114 msgid "" "This channel may require additional steps or acknowledgement of the " "following conditions prior to connecting:" msgstr "" -#: ../../Zotlabs/Module/Connect.php:94 +#: ../../Zotlabs/Module/Connect.php:95 msgid "" "Potential connections will then see the following text before proceeding:" msgstr "" -#: ../../Zotlabs/Module/Connect.php:95 ../../Zotlabs/Module/Connect.php:116 +#: ../../Zotlabs/Module/Connect.php:96 ../../Zotlabs/Module/Connect.php:117 msgid "" "By continuing, I certify that I have complied with any instructions provided " "on this page." msgstr "" -#: ../../Zotlabs/Module/Connect.php:104 +#: ../../Zotlabs/Module/Connect.php:105 msgid "(No specific instructions have been provided by the channel owner.)" msgstr "" -#: ../../Zotlabs/Module/Connect.php:112 +#: ../../Zotlabs/Module/Connect.php:113 msgid "Restricted or Premium Channel" msgstr "" @@ -3568,13 +3596,13 @@ msgstr "" #: ../../Zotlabs/Module/Connections.php:79 #: ../../Zotlabs/Module/Connections.php:88 ../../Zotlabs/Module/Menu.php:179 #: ../../Zotlabs/Module/Notifications.php:50 -#: ../../include/conversation.php:1697 +#: ../../include/conversation.php:1746 msgid "New" msgstr "" #: ../../Zotlabs/Module/Connections.php:93 #: ../../Zotlabs/Module/Connections.php:107 -#: ../../Zotlabs/Module/Connedit.php:654 ../../Zotlabs/Widget/Affinity.php:28 +#: ../../Zotlabs/Module/Connedit.php:663 ../../Zotlabs/Widget/Affinity.php:29 msgid "All" msgstr "" @@ -3674,7 +3702,7 @@ msgid "Ignore connection" msgstr "" #: ../../Zotlabs/Module/Connections.php:304 -#: ../../Zotlabs/Module/Connedit.php:571 +#: ../../Zotlabs/Module/Connedit.php:579 msgid "Ignore" msgstr "" @@ -3692,7 +3720,8 @@ msgstr "" #: ../../Zotlabs/Module/Connections.php:338 #: ../../Zotlabs/Module/Directory.php:405 -#: ../../Zotlabs/Module/Directory.php:410 ../../include/contact_widgets.php:23 +#: ../../Zotlabs/Module/Directory.php:410 +#: ../../Zotlabs/Widget/Findpeople.php:30 msgid "Find" msgstr "" @@ -3700,168 +3729,168 @@ msgstr "" msgid "Could not access contact record." msgstr "" -#: ../../Zotlabs/Module/Connedit.php:114 +#: ../../Zotlabs/Module/Connedit.php:115 msgid "Could not locate selected profile." msgstr "" -#: ../../Zotlabs/Module/Connedit.php:185 +#: ../../Zotlabs/Module/Connedit.php:193 msgid "Connection updated." msgstr "" -#: ../../Zotlabs/Module/Connedit.php:187 +#: ../../Zotlabs/Module/Connedit.php:195 msgid "Failed to update connection record." msgstr "" -#: ../../Zotlabs/Module/Connedit.php:240 +#: ../../Zotlabs/Module/Connedit.php:248 msgid "is now connected to" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:365 +#: ../../Zotlabs/Module/Connedit.php:373 msgid "Could not access address book record." msgstr "" -#: ../../Zotlabs/Module/Connedit.php:413 +#: ../../Zotlabs/Module/Connedit.php:421 msgid "Refresh failed - channel is currently unavailable." msgstr "" -#: ../../Zotlabs/Module/Connedit.php:428 ../../Zotlabs/Module/Connedit.php:437 -#: ../../Zotlabs/Module/Connedit.php:446 ../../Zotlabs/Module/Connedit.php:455 -#: ../../Zotlabs/Module/Connedit.php:468 +#: ../../Zotlabs/Module/Connedit.php:436 ../../Zotlabs/Module/Connedit.php:445 +#: ../../Zotlabs/Module/Connedit.php:454 ../../Zotlabs/Module/Connedit.php:463 +#: ../../Zotlabs/Module/Connedit.php:476 msgid "Unable to set address book parameters." msgstr "" -#: ../../Zotlabs/Module/Connedit.php:495 +#: ../../Zotlabs/Module/Connedit.php:503 msgid "Connection has been removed." msgstr "" -#: ../../Zotlabs/Module/Connedit.php:538 +#: ../../Zotlabs/Module/Connedit.php:546 #, php-format msgid "View %s's profile" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:542 +#: ../../Zotlabs/Module/Connedit.php:550 msgid "Refresh Permissions" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:545 +#: ../../Zotlabs/Module/Connedit.php:553 msgid "Fetch updated permissions" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:549 +#: ../../Zotlabs/Module/Connedit.php:557 msgid "Refresh Photo" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:552 +#: ../../Zotlabs/Module/Connedit.php:560 msgid "Fetch updated photo" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:556 ../../include/conversation.php:1024 +#: ../../Zotlabs/Module/Connedit.php:564 ../../include/conversation.php:1025 msgid "Recent Activity" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:559 +#: ../../Zotlabs/Module/Connedit.php:567 msgid "View recent posts and comments" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:566 +#: ../../Zotlabs/Module/Connedit.php:574 msgid "Block (or Unblock) all communications with this connection" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:567 +#: ../../Zotlabs/Module/Connedit.php:575 msgid "This connection is blocked!" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:571 +#: ../../Zotlabs/Module/Connedit.php:579 msgid "Unignore" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:574 +#: ../../Zotlabs/Module/Connedit.php:582 msgid "Ignore (or Unignore) all inbound communications from this connection" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:575 +#: ../../Zotlabs/Module/Connedit.php:583 msgid "This connection is ignored!" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:579 +#: ../../Zotlabs/Module/Connedit.php:587 msgid "Unarchive" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:579 +#: ../../Zotlabs/Module/Connedit.php:587 msgid "Archive" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:582 +#: ../../Zotlabs/Module/Connedit.php:590 msgid "" "Archive (or Unarchive) this connection - mark channel dead but keep content" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:583 +#: ../../Zotlabs/Module/Connedit.php:591 msgid "This connection is archived!" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:587 +#: ../../Zotlabs/Module/Connedit.php:595 msgid "Unhide" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:587 +#: ../../Zotlabs/Module/Connedit.php:595 msgid "Hide" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:590 +#: ../../Zotlabs/Module/Connedit.php:598 msgid "Hide or Unhide this connection from your other connections" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:591 +#: ../../Zotlabs/Module/Connedit.php:599 msgid "This connection is hidden!" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:598 +#: ../../Zotlabs/Module/Connedit.php:606 msgid "Delete this connection" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:606 +#: ../../Zotlabs/Module/Connedit.php:614 msgid "Fetch Vcard" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:609 +#: ../../Zotlabs/Module/Connedit.php:617 msgid "Fetch electronic calling card for this connection" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:620 +#: ../../Zotlabs/Module/Connedit.php:628 msgid "Open Individual Permissions section by default" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:643 +#: ../../Zotlabs/Module/Connedit.php:651 msgid "Affinity" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:646 +#: ../../Zotlabs/Module/Connedit.php:654 msgid "Open Set Affinity section by default" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:650 ../../Zotlabs/Widget/Affinity.php:24 +#: ../../Zotlabs/Module/Connedit.php:658 ../../Zotlabs/Widget/Affinity.php:24 msgid "Me" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:651 ../../Zotlabs/Widget/Affinity.php:25 +#: ../../Zotlabs/Module/Connedit.php:659 ../../Zotlabs/Widget/Affinity.php:25 msgid "Family" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:652 -#: ../../Zotlabs/Module/Settings/Channel.php:71 -#: ../../Zotlabs/Module/Settings/Channel.php:75 -#: ../../Zotlabs/Module/Settings/Channel.php:76 -#: ../../Zotlabs/Module/Settings/Channel.php:79 -#: ../../Zotlabs/Module/Settings/Channel.php:90 +#: ../../Zotlabs/Module/Connedit.php:660 +#: ../../Zotlabs/Module/Profiles.php:1005 +#: ../../Zotlabs/Module/Settings/Channel.php:69 +#: ../../Zotlabs/Module/Settings/Channel.php:73 +#: ../../Zotlabs/Module/Settings/Channel.php:74 +#: ../../Zotlabs/Module/Settings/Channel.php:77 +#: ../../Zotlabs/Module/Settings/Channel.php:88 #: ../../Zotlabs/Widget/Affinity.php:26 ../../include/channel.php:445 #: ../../include/channel.php:446 ../../include/channel.php:453 -#: ../../include/selectors.php:123 msgid "Friends" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:653 ../../Zotlabs/Widget/Affinity.php:27 -msgid "Acquaintances" +#: ../../Zotlabs/Module/Connedit.php:661 ../../Zotlabs/Widget/Affinity.php:27 +msgid "Peers" msgstr "" #: ../../Zotlabs/Module/Connedit.php:680 @@ -3915,7 +3944,7 @@ msgstr "" msgid "Connection Default Permissions" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:787 ../../include/items.php:4205 +#: ../../Zotlabs/Module/Connedit.php:787 ../../include/items.php:4112 #, php-format msgid "Connection: %s" msgstr "" @@ -3935,7 +3964,7 @@ msgstr "" #: ../../Zotlabs/Module/Connedit.php:789 ../../Zotlabs/Module/Defperms.php:230 #: ../../Zotlabs/Module/New_channel.php:154 #: ../../Zotlabs/Module/New_channel.php:161 -#: ../../Zotlabs/Widget/Notifications.php:162 ../../include/nav.php:272 +#: ../../Zotlabs/Widget/Notifications.php:162 ../../include/nav.php:302 msgid "Loading" msgstr "" @@ -4082,30 +4111,30 @@ msgstr "" msgid "Unable to process image." msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:267 ../../include/items.php:4544 +#: ../../Zotlabs/Module/Cover_photo.php:267 ../../include/items.php:4451 msgid "female" msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:268 ../../include/items.php:4545 +#: ../../Zotlabs/Module/Cover_photo.php:268 ../../include/items.php:4452 #, php-format msgid "%1$s updated her %2$s" msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:269 ../../include/items.php:4546 +#: ../../Zotlabs/Module/Cover_photo.php:269 ../../include/items.php:4453 msgid "male" msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:270 ../../include/items.php:4547 +#: ../../Zotlabs/Module/Cover_photo.php:270 ../../include/items.php:4454 #, php-format msgid "%1$s updated his %2$s" msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:272 ../../include/items.php:4549 +#: ../../Zotlabs/Module/Cover_photo.php:272 ../../include/items.php:4456 #, php-format msgid "%1$s updated their %2$s" msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:274 ../../include/channel.php:2081 +#: ../../Zotlabs/Module/Cover_photo.php:274 ../../include/channel.php:2107 msgid "cover photo" msgstr "" @@ -4135,7 +4164,7 @@ msgid "Change Cover Photo" msgstr "" #: ../../Zotlabs/Module/Cover_photo.php:404 -#: ../../Zotlabs/Module/Embedphotos.php:158 +#: ../../Zotlabs/Module/Embedphotos.php:160 #: ../../Zotlabs/Module/Photos.php:617 #: ../../Zotlabs/Module/Profile_photo.php:462 #: ../../Zotlabs/Storage/Browser.php:392 ../../Zotlabs/Widget/Album.php:97 @@ -4153,26 +4182,22 @@ msgstr "" #: ../../Zotlabs/Module/Cover_photo.php:409 #: ../../Zotlabs/Module/Profile_photo.php:469 -#: ../../include/conversation.php:1365 ../../include/conversation.php:1412 +#: ../../include/conversation.php:1366 ../../include/conversation.php:1413 #: ../../extend/addon/a/wiki/Mod_Wiki.php:392 -#: ../../extend/addon/a/hsse/hsse.php:209 -#: ../../extend/addon/a/hsse/hsse.php:256 msgid "OK" msgstr "" #: ../../Zotlabs/Module/Cover_photo.php:410 #: ../../Zotlabs/Module/Profile_photo.php:470 -#: ../../include/conversation.php:1294 +#: ../../include/conversation.php:1295 #: ../../extend/addon/a/wiki/Mod_Wiki.php:393 -#: ../../extend/addon/a/hsse/hsse.php:138 msgid "Choose images to embed" msgstr "" #: ../../Zotlabs/Module/Cover_photo.php:411 #: ../../Zotlabs/Module/Profile_photo.php:471 -#: ../../include/conversation.php:1295 +#: ../../include/conversation.php:1296 #: ../../extend/addon/a/wiki/Mod_Wiki.php:394 -#: ../../extend/addon/a/hsse/hsse.php:139 msgid "Choose an album" msgstr "" @@ -4184,25 +4209,22 @@ msgstr "" #: ../../Zotlabs/Module/Cover_photo.php:413 #: ../../Zotlabs/Module/Profile_photo.php:473 -#: ../../include/conversation.php:1297 +#: ../../include/conversation.php:1298 #: ../../extend/addon/a/wiki/Mod_Wiki.php:396 -#: ../../extend/addon/a/hsse/hsse.php:141 msgid "Error getting album list" msgstr "" #: ../../Zotlabs/Module/Cover_photo.php:414 #: ../../Zotlabs/Module/Profile_photo.php:474 -#: ../../include/conversation.php:1298 +#: ../../include/conversation.php:1299 #: ../../extend/addon/a/wiki/Mod_Wiki.php:397 -#: ../../extend/addon/a/hsse/hsse.php:142 msgid "Error getting photo link" msgstr "" #: ../../Zotlabs/Module/Cover_photo.php:415 #: ../../Zotlabs/Module/Profile_photo.php:475 -#: ../../include/conversation.php:1299 +#: ../../include/conversation.php:1300 #: ../../extend/addon/a/wiki/Mod_Wiki.php:398 -#: ../../extend/addon/a/hsse/hsse.php:143 msgid "Error getting album" msgstr "" @@ -4227,13 +4249,13 @@ msgid "Done Editing" msgstr "" #: ../../Zotlabs/Module/Defperms.php:94 -#: ../../Zotlabs/Module/Settings/Channel.php:272 +#: ../../Zotlabs/Module/Settings/Channel.php:274 #: ../../extend/addon/a/logrot/logrot.php:55 msgid "Settings updated." msgstr "" #: ../../Zotlabs/Module/Defperms.php:229 -#: ../../Zotlabs/Module/Settings/Channel.php:487 +#: ../../Zotlabs/Module/Settings/Channel.php:489 msgid "" "If enabled, connection requests will be approved without your interaction" msgstr "" @@ -4249,7 +4271,7 @@ msgid "" msgstr "" #: ../../Zotlabs/Module/Directory.php:67 ../../Zotlabs/Module/Directory.php:72 -#: ../../Zotlabs/Module/Display.php:28 ../../Zotlabs/Module/Photos.php:448 +#: ../../Zotlabs/Module/Display.php:34 ../../Zotlabs/Module/Photos.php:448 #: ../../Zotlabs/Module/Search.php:21 #: ../../Zotlabs/Module/Viewconnections.php:23 msgid "Public access denied." @@ -4278,11 +4300,11 @@ msgstr "" msgid "Homepage: " msgstr "" -#: ../../Zotlabs/Module/Directory.php:323 ../../include/channel.php:1571 +#: ../../Zotlabs/Module/Directory.php:323 ../../include/channel.php:1597 msgid "Age:" msgstr "" -#: ../../Zotlabs/Module/Directory.php:328 ../../include/channel.php:1398 +#: ../../Zotlabs/Module/Directory.php:328 ../../include/channel.php:1424 #: ../../include/event.php:62 ../../include/event.php:115 msgid "Location:" msgstr "" @@ -4291,18 +4313,18 @@ msgstr "" msgid "Description:" msgstr "" -#: ../../Zotlabs/Module/Directory.php:339 ../../include/channel.php:1600 +#: ../../Zotlabs/Module/Directory.php:339 ../../include/channel.php:1626 msgid "Hometown:" msgstr "" -#: ../../Zotlabs/Module/Directory.php:341 ../../include/channel.php:1606 +#: ../../Zotlabs/Module/Directory.php:341 ../../include/channel.php:1632 msgid "About:" msgstr "" #: ../../Zotlabs/Module/Directory.php:342 ../../Zotlabs/Module/Suggest.php:56 #: ../../Zotlabs/Widget/Follow.php:32 ../../Zotlabs/Widget/Suggestions.php:44 -#: ../../include/channel.php:1383 ../../include/connections.php:110 -#: ../../include/conversation.php:1034 +#: ../../include/conversation.php:1035 ../../include/channel.php:1409 +#: ../../include/connections.php:110 msgid "Connect" msgstr "" @@ -4335,7 +4357,7 @@ msgid "Finding:" msgstr "" #: ../../Zotlabs/Module/Directory.php:409 ../../Zotlabs/Module/Suggest.php:64 -#: ../../include/contact_widgets.php:24 +#: ../../Zotlabs/Widget/Findpeople.php:31 msgid "Channel Suggestions" msgstr "" @@ -4379,11 +4401,11 @@ msgstr "" msgid "This directory server requires an access token" msgstr "" -#: ../../Zotlabs/Module/Display.php:393 +#: ../../Zotlabs/Module/Display.php:398 msgid "Article" msgstr "" -#: ../../Zotlabs/Module/Display.php:445 +#: ../../Zotlabs/Module/Display.php:450 msgid "Item has been removed." msgstr "" @@ -4472,11 +4494,11 @@ msgstr "" msgid "Edit Layout" msgstr "" -#: ../../Zotlabs/Module/Editpost.php:37 ../../Zotlabs/Module/Editpost.php:42 +#: ../../Zotlabs/Module/Editpost.php:36 ../../Zotlabs/Module/Editpost.php:41 msgid "Item is not editable" msgstr "" -#: ../../Zotlabs/Module/Editpost.php:107 ../../Zotlabs/Module/Rpost.php:144 +#: ../../Zotlabs/Module/Editpost.php:106 ../../Zotlabs/Module/Rpost.php:143 msgid "Edit post" msgstr "" @@ -4521,13 +4543,13 @@ msgstr "" msgid "Validation token" msgstr "" -#: ../../Zotlabs/Module/Embedphotos.php:140 +#: ../../Zotlabs/Module/Embedphotos.php:142 #: ../../Zotlabs/Module/Photos.php:716 ../../Zotlabs/Module/Photos.php:1247 #: ../../Zotlabs/Widget/Album.php:78 ../../Zotlabs/Widget/Portfolio.php:87 msgid "View Photo" msgstr "" -#: ../../Zotlabs/Module/Embedphotos.php:156 +#: ../../Zotlabs/Module/Embedphotos.php:158 #: ../../Zotlabs/Module/Photos.php:747 ../../Zotlabs/Widget/Album.php:95 #: ../../Zotlabs/Widget/Portfolio.php:108 msgid "Edit Album" @@ -4558,8 +4580,8 @@ msgstr "" msgid "Event not found." msgstr "" -#: ../../Zotlabs/Module/Events.php:261 ../../Zotlabs/Module/Like.php:330 -#: ../../Zotlabs/Module/Tagger.php:75 ../../include/text.php:2022 +#: ../../Zotlabs/Module/Events.php:261 ../../Zotlabs/Module/Like.php:334 +#: ../../Zotlabs/Module/Tagger.php:75 ../../include/text.php:2046 #: ../../include/conversation.php:117 ../../include/event.php:1181 msgid "event" msgstr "" @@ -4614,8 +4636,7 @@ msgstr "" msgid "Edit Location" msgstr "" -#: ../../Zotlabs/Module/Events.php:480 ../../include/conversation.php:1380 -#: ../../extend/addon/a/hsse/hsse.php:224 +#: ../../Zotlabs/Module/Events.php:480 ../../include/conversation.php:1381 msgid "Permission settings" msgstr "" @@ -4700,7 +4721,7 @@ msgstr "" msgid "Show in your contacts shared folder" msgstr "" -#: ../../Zotlabs/Module/Follow.php:86 +#: ../../Zotlabs/Module/Follow.php:87 msgid "Connection added." msgstr "" @@ -4713,7 +4734,7 @@ msgid "Could not create privacy group." msgstr "" #: ../../Zotlabs/Module/Group.php:51 ../../Zotlabs/Module/Group.php:181 -#: ../../include/items.php:4172 +#: ../../include/items.php:4079 msgid "Privacy group not found." msgstr "" @@ -4774,8 +4795,8 @@ msgstr "" msgid "Documentation Search" msgstr "" -#: ../../Zotlabs/Module/Help.php:80 ../../include/nav.php:376 -#: ../../include/conversation.php:1804 +#: ../../Zotlabs/Module/Help.php:80 ../../include/conversation.php:1853 +#: ../../include/nav.php:406 msgid "About" msgstr "" @@ -5027,36 +5048,36 @@ msgstr "" msgid "3. Click [Connect]" msgstr "" -#: ../../Zotlabs/Module/Item.php:361 +#: ../../Zotlabs/Module/Item.php:390 msgid "Unable to locate original post." msgstr "" -#: ../../Zotlabs/Module/Item.php:648 +#: ../../Zotlabs/Module/Item.php:677 msgid "Empty post discarded." msgstr "" -#: ../../Zotlabs/Module/Item.php:1064 +#: ../../Zotlabs/Module/Item.php:1093 msgid "Duplicate post suppressed." msgstr "" -#: ../../Zotlabs/Module/Item.php:1209 +#: ../../Zotlabs/Module/Item.php:1238 msgid "System error. Post not saved." msgstr "" -#: ../../Zotlabs/Module/Item.php:1245 +#: ../../Zotlabs/Module/Item.php:1274 msgid "Your comment is awaiting approval." msgstr "" -#: ../../Zotlabs/Module/Item.php:1359 +#: ../../Zotlabs/Module/Item.php:1388 msgid "Unable to obtain post information from database." msgstr "" -#: ../../Zotlabs/Module/Item.php:1367 +#: ../../Zotlabs/Module/Item.php:1396 #, php-format msgid "You have reached your limit of %1$.0f top level posts." msgstr "" -#: ../../Zotlabs/Module/Item.php:1374 +#: ../../Zotlabs/Module/Item.php:1403 #, php-format msgid "You have reached your limit of %1$.0f webpages." msgstr "" @@ -5065,7 +5086,7 @@ msgstr "" msgid "Change UI language" msgstr "" -#: ../../Zotlabs/Module/Layouts.php:184 ../../include/text.php:2458 +#: ../../Zotlabs/Module/Layouts.php:184 ../../include/text.php:2482 msgid "Layouts" msgstr "" @@ -5093,17 +5114,17 @@ msgstr "" msgid "thing" msgstr "" -#: ../../Zotlabs/Module/Like.php:363 +#: ../../Zotlabs/Module/Like.php:367 #, php-format msgid "%1$s is attending %2$s's %3$s" msgstr "" -#: ../../Zotlabs/Module/Like.php:365 +#: ../../Zotlabs/Module/Like.php:369 #, php-format msgid "%1$s is not attending %2$s's %3$s" msgstr "" -#: ../../Zotlabs/Module/Like.php:367 +#: ../../Zotlabs/Module/Like.php:371 #, php-format msgid "%1$s may attend %2$s's %3$s" msgstr "" @@ -5188,7 +5209,7 @@ msgid "" "Password reset failed." msgstr "" -#: ../../Zotlabs/Module/Lostpass.php:91 ../../boot.php:1614 +#: ../../Zotlabs/Module/Lostpass.php:91 ../../boot.php:1613 msgid "Password Reset" msgstr "" @@ -5314,7 +5335,7 @@ msgstr "" msgid "Submit and proceed" msgstr "" -#: ../../Zotlabs/Module/Menu.php:170 ../../include/text.php:2457 +#: ../../Zotlabs/Module/Menu.php:170 ../../include/text.php:2481 msgid "Menus" msgstr "" @@ -5392,7 +5413,7 @@ msgid "Menu Item Permissions" msgstr "" #: ../../Zotlabs/Module/Mitem.php:168 ../../Zotlabs/Module/Mitem.php:247 -#: ../../Zotlabs/Module/Settings/Channel.php:549 +#: ../../Zotlabs/Module/Settings/Channel.php:558 msgid "(click to open/close)" msgstr "" @@ -5561,7 +5582,7 @@ msgstr "" #: ../../Zotlabs/Module/New_channel.php:177 #: ../../Zotlabs/Module/Register.php:266 -#: ../../Zotlabs/Module/Settings/Channel.php:560 +#: ../../Zotlabs/Module/Settings/Channel.php:569 msgid "Channel role and privacy" msgstr "" @@ -5624,15 +5645,15 @@ msgid "" "non proident, sunt in culpa qui officia deserunt mollit anim id est laborum." msgstr "" -#: ../../Zotlabs/Module/Pconfig.php:27 ../../Zotlabs/Module/Pconfig.php:60 +#: ../../Zotlabs/Module/Pconfig.php:33 ../../Zotlabs/Module/Pconfig.php:70 msgid "This setting requires special processing and editing has been blocked." msgstr "" -#: ../../Zotlabs/Module/Pconfig.php:49 +#: ../../Zotlabs/Module/Pconfig.php:59 msgid "Configuration Editor" msgstr "" -#: ../../Zotlabs/Module/Pconfig.php:50 +#: ../../Zotlabs/Module/Pconfig.php:60 msgid "" "Warning: Changing some settings could render your channel inoperable. Please " "leave this page unless you are comfortable with and knowledgeable about how " @@ -5827,43 +5848,43 @@ msgid "Map" msgstr "" #: ../../Zotlabs/Module/Photos.php:1259 ../../Zotlabs/Module/Photos.php:1273 -#: ../../Zotlabs/Module/Photos.php:1274 ../../include/photos.php:675 +#: ../../Zotlabs/Module/Photos.php:1274 ../../include/photos.php:679 msgid "Recent Photos" msgstr "" -#: ../../Zotlabs/Module/Ping.php:332 +#: ../../Zotlabs/Module/Ping.php:336 msgid "sent you a private message" msgstr "" -#: ../../Zotlabs/Module/Ping.php:385 +#: ../../Zotlabs/Module/Ping.php:394 msgid "added your channel" msgstr "" -#: ../../Zotlabs/Module/Ping.php:409 +#: ../../Zotlabs/Module/Ping.php:419 msgid "requires approval" msgstr "" -#: ../../Zotlabs/Module/Ping.php:419 +#: ../../Zotlabs/Module/Ping.php:429 msgid "g A l F d" msgstr "" -#: ../../Zotlabs/Module/Ping.php:437 +#: ../../Zotlabs/Module/Ping.php:447 msgid "[today]" msgstr "" -#: ../../Zotlabs/Module/Ping.php:446 +#: ../../Zotlabs/Module/Ping.php:457 msgid "posted an event" msgstr "" -#: ../../Zotlabs/Module/Ping.php:479 +#: ../../Zotlabs/Module/Ping.php:491 msgid "shared a file with you" msgstr "" -#: ../../Zotlabs/Module/Ping.php:654 +#: ../../Zotlabs/Module/Ping.php:672 msgid "Private forum" msgstr "" -#: ../../Zotlabs/Module/Ping.php:654 +#: ../../Zotlabs/Module/Ping.php:672 msgid "Public forum" msgstr "" @@ -5936,7 +5957,7 @@ msgid "Use" msgstr "" #: ../../Zotlabs/Module/Profiles.php:26 ../../Zotlabs/Module/Profiles.php:186 -#: ../../Zotlabs/Module/Profiles.php:243 ../../Zotlabs/Module/Profiles.php:660 +#: ../../Zotlabs/Module/Profiles.php:240 ../../Zotlabs/Module/Profiles.php:658 msgid "Profile not found." msgstr "" @@ -5960,253 +5981,514 @@ msgstr "" msgid "Profile unavailable to export." msgstr "" -#: ../../Zotlabs/Module/Profiles.php:254 +#: ../../Zotlabs/Module/Profiles.php:251 msgid "Profile Name is required." msgstr "" -#: ../../Zotlabs/Module/Profiles.php:461 +#: ../../Zotlabs/Module/Profiles.php:459 msgid "Marital Status" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:465 +#: ../../Zotlabs/Module/Profiles.php:463 msgid "Romantic Partner" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:469 ../../Zotlabs/Module/Profiles.php:773 +#: ../../Zotlabs/Module/Profiles.php:467 ../../Zotlabs/Module/Profiles.php:771 msgid "Likes" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:473 ../../Zotlabs/Module/Profiles.php:774 +#: ../../Zotlabs/Module/Profiles.php:471 ../../Zotlabs/Module/Profiles.php:772 msgid "Dislikes" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:477 ../../Zotlabs/Module/Profiles.php:781 +#: ../../Zotlabs/Module/Profiles.php:475 ../../Zotlabs/Module/Profiles.php:779 msgid "Work/Employment" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:480 +#: ../../Zotlabs/Module/Profiles.php:478 msgid "Religion" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:484 +#: ../../Zotlabs/Module/Profiles.php:482 msgid "Political Views" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:488 +#: ../../Zotlabs/Module/Profiles.php:486 msgid "Gender" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:492 +#: ../../Zotlabs/Module/Profiles.php:490 msgid "Sexual Preference" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:496 +#: ../../Zotlabs/Module/Profiles.php:494 msgid "Homepage" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:500 +#: ../../Zotlabs/Module/Profiles.php:498 msgid "Interests" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:596 +#: ../../Zotlabs/Module/Profiles.php:594 msgid "Profile updated." msgstr "" -#: ../../Zotlabs/Module/Profiles.php:679 +#: ../../Zotlabs/Module/Profiles.php:677 msgid "Hide your connections list from viewers of this profile" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:723 +#: ../../Zotlabs/Module/Profiles.php:721 msgid "Edit Profile Details" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:725 +#: ../../Zotlabs/Module/Profiles.php:723 msgid "View this profile" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:726 ../../Zotlabs/Module/Profiles.php:825 -#: ../../include/channel.php:1326 +#: ../../Zotlabs/Module/Profiles.php:724 ../../Zotlabs/Module/Profiles.php:823 +#: ../../include/channel.php:1352 msgid "Edit visibility" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:727 +#: ../../Zotlabs/Module/Profiles.php:725 msgid "Profile Tools" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:728 +#: ../../Zotlabs/Module/Profiles.php:726 msgid "Change cover photo" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:729 ../../include/channel.php:1296 +#: ../../Zotlabs/Module/Profiles.php:727 ../../include/channel.php:1322 msgid "Change profile photo" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:730 +#: ../../Zotlabs/Module/Profiles.php:728 msgid "Create a new profile using these settings" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:731 +#: ../../Zotlabs/Module/Profiles.php:729 msgid "Clone this profile" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:732 +#: ../../Zotlabs/Module/Profiles.php:730 msgid "Delete this profile" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:733 +#: ../../Zotlabs/Module/Profiles.php:731 msgid "Add profile things" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:734 ../../include/conversation.php:1688 +#: ../../Zotlabs/Module/Profiles.php:732 ../../include/conversation.php:1737 msgid "Personal" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:736 +#: ../../Zotlabs/Module/Profiles.php:734 msgid "Relationship" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:737 ../../Zotlabs/Widget/Newmember.php:44 +#: ../../Zotlabs/Module/Profiles.php:735 ../../Zotlabs/Widget/Newmember.php:44 #: ../../include/datetime.php:58 msgid "Miscellaneous" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:739 +#: ../../Zotlabs/Module/Profiles.php:737 msgid "Import profile from file" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:740 +#: ../../Zotlabs/Module/Profiles.php:738 msgid "Export profile to file" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:741 +#: ../../Zotlabs/Module/Profiles.php:739 msgid "Your gender" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:742 +#: ../../Zotlabs/Module/Profiles.php:740 msgid "Marital status" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:743 +#: ../../Zotlabs/Module/Profiles.php:741 msgid "Sexual preference" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:746 +#: ../../Zotlabs/Module/Profiles.php:744 msgid "Profile name" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:750 +#: ../../Zotlabs/Module/Profiles.php:748 msgid "Your full name" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:751 +#: ../../Zotlabs/Module/Profiles.php:749 msgid "Title/Description" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:754 +#: ../../Zotlabs/Module/Profiles.php:752 msgid "Street address" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:755 +#: ../../Zotlabs/Module/Profiles.php:753 msgid "Locality/City" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:756 +#: ../../Zotlabs/Module/Profiles.php:754 msgid "Region/State" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:757 +#: ../../Zotlabs/Module/Profiles.php:755 msgid "Postal/Zip code" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:763 +#: ../../Zotlabs/Module/Profiles.php:761 msgid "Who (if applicable)" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:763 +#: ../../Zotlabs/Module/Profiles.php:761 msgid "Examples: cathy123, Cathy Williams, cathy@example.com" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:764 +#: ../../Zotlabs/Module/Profiles.php:762 msgid "Since (date)" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:767 +#: ../../Zotlabs/Module/Profiles.php:765 msgid "Tell us about yourself" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:768 +#: ../../Zotlabs/Module/Profiles.php:766 msgid "Homepage URL" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:769 +#: ../../Zotlabs/Module/Profiles.php:767 msgid "Hometown" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:770 +#: ../../Zotlabs/Module/Profiles.php:768 msgid "Political views" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:771 +#: ../../Zotlabs/Module/Profiles.php:769 msgid "Religious views" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:772 +#: ../../Zotlabs/Module/Profiles.php:770 msgid "Keywords used in directory listings" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:772 +#: ../../Zotlabs/Module/Profiles.php:770 msgid "Example: fishing photography software" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:775 +#: ../../Zotlabs/Module/Profiles.php:773 msgid "Musical interests" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:776 +#: ../../Zotlabs/Module/Profiles.php:774 msgid "Books, literature" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:777 +#: ../../Zotlabs/Module/Profiles.php:775 msgid "Television" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:778 +#: ../../Zotlabs/Module/Profiles.php:776 msgid "Film/Dance/Culture/Entertainment" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:779 +#: ../../Zotlabs/Module/Profiles.php:777 msgid "Hobbies/Interests" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:780 +#: ../../Zotlabs/Module/Profiles.php:778 msgid "Love/Romance" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:782 +#: ../../Zotlabs/Module/Profiles.php:780 msgid "School/Education" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:783 +#: ../../Zotlabs/Module/Profiles.php:781 msgid "Contact information and social networks" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:784 +#: ../../Zotlabs/Module/Profiles.php:782 msgid "My other channels" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:786 +#: ../../Zotlabs/Module/Profiles.php:784 msgid "Communications" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:821 ../../include/channel.php:1322 +#: ../../Zotlabs/Module/Profiles.php:819 ../../include/channel.php:1348 msgid "Profile Image" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:831 ../../include/channel.php:1303 +#: ../../Zotlabs/Module/Profiles.php:829 ../../include/channel.php:1329 #: ../../include/nav.php:104 msgid "Edit Profiles" msgstr "" +#: ../../Zotlabs/Module/Profiles.php:877 +msgid " and " +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:879 +msgid ", " +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:885 +msgid "public profile" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:894 +#, php-format +msgid "%1$s changed %2$s to “%3$s”" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:895 +#, php-format +msgid "Visit %1$s's %2$s" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:898 +#, php-format +msgid "%1$s has an updated %2$s, changing %3$s." +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:929 ../../Zotlabs/Module/Profiles.php:946 +#: ../../include/channel.php:1513 +msgid "Male" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:929 ../../Zotlabs/Module/Profiles.php:946 +#: ../../include/channel.php:1511 +msgid "Female" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:929 +msgid "Currently Male" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:929 +msgid "Currently Female" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:929 +msgid "Mostly Male" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:929 +msgid "Mostly Female" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:929 +msgid "Transgender" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:929 +msgid "Intersex" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:929 +msgid "Transsexual" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:929 +msgid "Hermaphrodite" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:929 ../../include/channel.php:1517 +msgid "Neuter" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:929 ../../include/channel.php:1519 +msgid "Non-specific" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:929 +msgid "Undecided" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:967 ../../Zotlabs/Module/Profiles.php:986 +msgid "Males" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:967 ../../Zotlabs/Module/Profiles.php:986 +msgid "Females" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:967 +msgid "Gay" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:967 +msgid "Lesbian" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:967 +msgid "No Preference" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:967 +msgid "Bisexual" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:967 +msgid "Autosexual" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:967 +msgid "Abstinent" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:967 +msgid "Virgin" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:967 +msgid "Deviant" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:967 +msgid "Fetish" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:967 +msgid "Oodles" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:967 +msgid "Nonsexual" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:1005 +#: ../../Zotlabs/Module/Profiles.php:1022 +msgid "Single" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:1005 +msgid "Lonely" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:1005 +msgid "Available" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:1005 +msgid "Unavailable" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:1005 +msgid "Has crush" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:1005 +msgid "Infatuated" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:1005 +#: ../../Zotlabs/Module/Profiles.php:1022 +msgid "Dating" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:1005 +msgid "Unfaithful" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:1005 +msgid "Sex Addict" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:1005 +msgid "Friends/Benefits" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:1005 +msgid "Casual" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:1005 +msgid "Engaged" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:1005 +#: ../../Zotlabs/Module/Profiles.php:1022 +msgid "Married" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:1005 +msgid "Imaginarily married" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:1005 +msgid "Partners" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:1005 +#: ../../Zotlabs/Module/Profiles.php:1022 +msgid "Cohabiting" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:1005 +msgid "Common law" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:1005 +msgid "Happy" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:1005 +msgid "Not looking" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:1005 +msgid "Swinger" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:1005 +msgid "Betrayed" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:1005 +#: ../../Zotlabs/Module/Profiles.php:1022 +msgid "Separated" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:1005 +msgid "Unstable" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:1005 +#: ../../Zotlabs/Module/Profiles.php:1022 +msgid "Divorced" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:1005 +msgid "Imaginarily divorced" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:1005 +#: ../../Zotlabs/Module/Profiles.php:1022 +msgid "Widowed" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:1005 +msgid "Uncertain" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:1005 +#: ../../Zotlabs/Module/Profiles.php:1022 +msgid "It's complicated" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:1005 +msgid "Don't care" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:1005 +msgid "Ask me" +msgstr "" + #: ../../Zotlabs/Module/Profperm.php:34 ../../Zotlabs/Module/Profperm.php:63 msgid "Invalid profile identifier." msgstr "" @@ -6236,47 +6518,47 @@ msgid "" "additional details." msgstr "" -#: ../../Zotlabs/Module/Pubsites.php:34 +#: ../../Zotlabs/Module/Pubsites.php:38 msgid "Hub URL" msgstr "" -#: ../../Zotlabs/Module/Pubsites.php:34 +#: ../../Zotlabs/Module/Pubsites.php:38 msgid "Access Type" msgstr "" -#: ../../Zotlabs/Module/Pubsites.php:34 +#: ../../Zotlabs/Module/Pubsites.php:38 msgid "Registration Policy" msgstr "" -#: ../../Zotlabs/Module/Pubsites.php:34 +#: ../../Zotlabs/Module/Pubsites.php:38 msgid "Stats" msgstr "" -#: ../../Zotlabs/Module/Pubsites.php:34 +#: ../../Zotlabs/Module/Pubsites.php:38 msgid "Software" msgstr "" -#: ../../Zotlabs/Module/Pubsites.php:36 +#: ../../Zotlabs/Module/Pubsites.php:40 msgid "Ratings" msgstr "" -#: ../../Zotlabs/Module/Pubsites.php:50 +#: ../../Zotlabs/Module/Pubsites.php:52 msgid "Rate" msgstr "" -#: ../../Zotlabs/Module/Rbmark.php:92 +#: ../../Zotlabs/Module/Rbmark.php:91 msgid "Select a bookmark folder" msgstr "" -#: ../../Zotlabs/Module/Rbmark.php:97 +#: ../../Zotlabs/Module/Rbmark.php:96 msgid "Save Bookmark" msgstr "" -#: ../../Zotlabs/Module/Rbmark.php:98 +#: ../../Zotlabs/Module/Rbmark.php:97 msgid "URL of bookmark" msgstr "" -#: ../../Zotlabs/Module/Rbmark.php:103 +#: ../../Zotlabs/Module/Rbmark.php:102 msgid "Or enter new bookmark folder name" msgstr "" @@ -6332,7 +6614,7 @@ msgid "" "Please try again tomorrow." msgstr "" -#: ../../Zotlabs/Module/Register.php:241 ../../Zotlabs/Module/Siteinfo.php:34 +#: ../../Zotlabs/Module/Register.php:241 ../../Zotlabs/Module/Siteinfo.php:37 msgid "Terms of Service" msgstr "" @@ -6392,7 +6674,7 @@ msgid "yes" msgstr "" #: ../../Zotlabs/Module/Register.php:294 ../../include/nav.php:151 -#: ../../boot.php:1585 +#: ../../boot.php:1584 msgid "Register" msgstr "" @@ -6469,7 +6751,7 @@ msgid "" msgstr "" #: ../../Zotlabs/Module/Removeme.php:64 -#: ../../Zotlabs/Module/Settings/Channel.php:622 +#: ../../Zotlabs/Module/Settings/Channel.php:633 msgid "Remove Channel" msgstr "" @@ -6477,16 +6759,16 @@ msgstr "" msgid "Authentication failed." msgstr "" -#: ../../Zotlabs/Module/Rmagic.php:75 ../../include/channel.php:2334 -#: ../../boot.php:1606 +#: ../../Zotlabs/Module/Rmagic.php:75 ../../include/channel.php:2360 +#: ../../boot.php:1605 msgid "Remote Authentication" msgstr "" -#: ../../Zotlabs/Module/Rmagic.php:76 ../../include/channel.php:2335 +#: ../../Zotlabs/Module/Rmagic.php:76 ../../include/channel.php:2361 msgid "Enter your channel address (e.g. channel@example.com)" msgstr "" -#: ../../Zotlabs/Module/Rmagic.php:77 ../../include/channel.php:2336 +#: ../../Zotlabs/Module/Rmagic.php:77 ../../include/channel.php:2362 msgid "Authenticate" msgstr "" @@ -6557,7 +6839,7 @@ msgid "Leave password fields blank unless changing" msgstr "" #: ../../Zotlabs/Module/Settings/Account.php:105 -#: ../../Zotlabs/Module/Settings/Channel.php:522 +#: ../../Zotlabs/Module/Settings/Channel.php:531 msgid "Email Address:" msgstr "" @@ -6965,383 +7247,400 @@ msgstr "" msgid "Filter incoming posts from connections based on keywords/content" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:333 +#: ../../Zotlabs/Module/Settings/Channel.php:335 msgid "Nobody except yourself" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:334 +#: ../../Zotlabs/Module/Settings/Channel.php:336 msgid "Only those you specifically allow" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:335 +#: ../../Zotlabs/Module/Settings/Channel.php:337 msgid "Approved connections" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:336 +#: ../../Zotlabs/Module/Settings/Channel.php:338 msgid "Any connections" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:337 +#: ../../Zotlabs/Module/Settings/Channel.php:339 msgid "Anybody on this website" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:338 +#: ../../Zotlabs/Module/Settings/Channel.php:340 msgid "Anybody in this network" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:339 +#: ../../Zotlabs/Module/Settings/Channel.php:341 msgid "Anybody authenticated" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:340 +#: ../../Zotlabs/Module/Settings/Channel.php:342 msgid "Anybody on the internet" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:420 +#: ../../Zotlabs/Module/Settings/Channel.php:422 msgid "Publish your default profile in the network directory" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:425 +#: ../../Zotlabs/Module/Settings/Channel.php:427 msgid "Allow us to suggest you as a potential friend to new members?" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:429 +#: ../../Zotlabs/Module/Settings/Channel.php:431 msgid "or" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:437 +#: ../../Zotlabs/Module/Settings/Channel.php:439 msgid "Your channel address is" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:440 +#: ../../Zotlabs/Module/Settings/Channel.php:442 msgid "Your files/photos are accessible via WebDAV at" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:487 +#: ../../Zotlabs/Module/Settings/Channel.php:489 msgid "Automatic membership approval" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:513 +#: ../../Zotlabs/Module/Settings/Channel.php:491 +msgid "Allow forum delivery with @mentions" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:491 +msgid "" +"Allows delivery from projects which do not support !mentions for forums." +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:498 +msgid "Enable hyperdrive" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:498 +msgid "Dramatically increases the content available in your stream." +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:522 msgid "Channel Settings" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:520 +#: ../../Zotlabs/Module/Settings/Channel.php:529 msgid "Basic Settings" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:521 -#: ../../include/channel.php:1528 +#: ../../Zotlabs/Module/Settings/Channel.php:530 +#: ../../include/channel.php:1554 msgid "Full Name:" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:523 +#: ../../Zotlabs/Module/Settings/Channel.php:532 msgid "Your Timezone:" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:524 +#: ../../Zotlabs/Module/Settings/Channel.php:533 msgid "Default Post Location:" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:524 +#: ../../Zotlabs/Module/Settings/Channel.php:533 msgid "Geographical location to display on your posts" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:525 +#: ../../Zotlabs/Module/Settings/Channel.php:534 msgid "Use Browser Location:" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:527 +#: ../../Zotlabs/Module/Settings/Channel.php:536 msgid "Adult Content" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:527 +#: ../../Zotlabs/Module/Settings/Channel.php:536 msgid "" "This channel frequently or regularly publishes adult content. (Please tag " "any adult material and/or nudity with #NSFW)" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:529 +#: ../../Zotlabs/Module/Settings/Channel.php:538 msgid "Security and Privacy Settings" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:531 +#: ../../Zotlabs/Module/Settings/Channel.php:540 msgid "Your permissions are already configured. Click to view/adjust" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:533 +#: ../../Zotlabs/Module/Settings/Channel.php:542 msgid "Hide my online presence" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:533 +#: ../../Zotlabs/Module/Settings/Channel.php:542 msgid "Prevents displaying in your profile that you are online" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:535 +#: ../../Zotlabs/Module/Settings/Channel.php:544 msgid "Simple Privacy Settings:" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:536 +#: ../../Zotlabs/Module/Settings/Channel.php:545 msgid "" "Very Public - extremely permissive (should be used with caution)" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:537 +#: ../../Zotlabs/Module/Settings/Channel.php:546 msgid "" "Typical - default public, privacy when desired (similar to social " "network permissions but with improved privacy)" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:538 +#: ../../Zotlabs/Module/Settings/Channel.php:547 msgid "Private - default private, never open or public" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:539 +#: ../../Zotlabs/Module/Settings/Channel.php:548 msgid "Blocked - default blocked to/from everybody" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:541 +#: ../../Zotlabs/Module/Settings/Channel.php:550 msgid "Allow others to tag your posts" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:541 +#: ../../Zotlabs/Module/Settings/Channel.php:550 msgid "" "Often used by the community to retro-actively flag inappropriate content" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:543 +#: ../../Zotlabs/Module/Settings/Channel.php:552 msgid "Channel Permission Limits" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:545 +#: ../../Zotlabs/Module/Settings/Channel.php:554 msgid "Expire other channel content after this many days" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:545 +#: ../../Zotlabs/Module/Settings/Channel.php:554 msgid "0 or blank to use the website limit." msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:545 +#: ../../Zotlabs/Module/Settings/Channel.php:554 #, php-format msgid "This website expires after %d days." msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:545 +#: ../../Zotlabs/Module/Settings/Channel.php:554 msgid "This website does not expire imported content." msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:545 +#: ../../Zotlabs/Module/Settings/Channel.php:554 msgid "The website limit takes precedence if lower than your limit." msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:546 +#: ../../Zotlabs/Module/Settings/Channel.php:555 msgid "Maximum Friend Requests/Day:" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:546 +#: ../../Zotlabs/Module/Settings/Channel.php:555 msgid "May reduce spam activity" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:547 +#: ../../Zotlabs/Module/Settings/Channel.php:556 msgid "Disable access checking on post attachments" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:547 +#: ../../Zotlabs/Module/Settings/Channel.php:556 msgid "" "Private media access is only implemented in a very small number of federated " "networks." msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:548 +#: ../../Zotlabs/Module/Settings/Channel.php:557 msgid "Default Privacy Group" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:550 +#: ../../Zotlabs/Module/Settings/Channel.php:559 msgid "Use my default audience setting for the type of object published" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:551 +#: ../../Zotlabs/Module/Settings/Channel.php:560 msgid "Profile to assign new connections" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:561 +#: ../../Zotlabs/Module/Settings/Channel.php:570 msgid "Default Permissions Group" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:567 +#: ../../Zotlabs/Module/Settings/Channel.php:576 msgid "Maximum private messages per day from unknown people:" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:567 +#: ../../Zotlabs/Module/Settings/Channel.php:576 msgid "Useful to reduce spamming" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:571 +#: ../../Zotlabs/Module/Settings/Channel.php:582 msgid "By default post a status message when:" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:572 +#: ../../Zotlabs/Module/Settings/Channel.php:583 msgid "accepting a friend request" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:573 +#: ../../Zotlabs/Module/Settings/Channel.php:584 msgid "joining a forum/community" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:574 +#: ../../Zotlabs/Module/Settings/Channel.php:585 msgid "making an interesting profile change" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:575 +#: ../../Zotlabs/Module/Settings/Channel.php:586 msgid "Send a notification email when:" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:576 +#: ../../Zotlabs/Module/Settings/Channel.php:587 msgid "You receive a connection request" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:578 +#: ../../Zotlabs/Module/Settings/Channel.php:589 msgid "Someone writes on your profile wall" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:579 +#: ../../Zotlabs/Module/Settings/Channel.php:590 msgid "Someone writes a followup comment" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:582 +#: ../../Zotlabs/Module/Settings/Channel.php:593 msgid "You are tagged in a post" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:585 +#: ../../Zotlabs/Module/Settings/Channel.php:596 msgid "Someone likes your post/comment" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:588 +#: ../../Zotlabs/Module/Settings/Channel.php:599 msgid "Show visual notifications including:" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:590 +#: ../../Zotlabs/Module/Settings/Channel.php:601 msgid "Unseen network activity" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:591 +#: ../../Zotlabs/Module/Settings/Channel.php:602 msgid "Unseen channel activity" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:593 +#: ../../Zotlabs/Module/Settings/Channel.php:604 msgid "Upcoming events" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:594 +#: ../../Zotlabs/Module/Settings/Channel.php:605 msgid "Events today" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:595 +#: ../../Zotlabs/Module/Settings/Channel.php:606 msgid "Upcoming birthdays" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:595 +#: ../../Zotlabs/Module/Settings/Channel.php:606 msgid "Not available in all themes" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:596 +#: ../../Zotlabs/Module/Settings/Channel.php:607 msgid "System (personal) notifications" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:597 +#: ../../Zotlabs/Module/Settings/Channel.php:608 msgid "System info messages" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:597 -#: ../../Zotlabs/Module/Settings/Channel.php:598 -#: ../../Zotlabs/Module/Settings/Channel.php:599 +#: ../../Zotlabs/Module/Settings/Channel.php:608 +#: ../../Zotlabs/Module/Settings/Channel.php:609 +#: ../../Zotlabs/Module/Settings/Channel.php:610 msgid "Recommended" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:598 +#: ../../Zotlabs/Module/Settings/Channel.php:609 msgid "System critical alerts" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:599 +#: ../../Zotlabs/Module/Settings/Channel.php:610 msgid "New connections" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:600 +#: ../../Zotlabs/Module/Settings/Channel.php:611 msgid "System Registrations" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:602 +#: ../../Zotlabs/Module/Settings/Channel.php:613 msgid "Unseen public activity" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:603 +#: ../../Zotlabs/Module/Settings/Channel.php:614 msgid "Unseen likes and dislikes" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:604 +#: ../../Zotlabs/Module/Settings/Channel.php:615 msgid "Unseen forum posts" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:605 +#: ../../Zotlabs/Module/Settings/Channel.php:616 msgid "Email notification hub (hostname)" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:605 +#: ../../Zotlabs/Module/Settings/Channel.php:616 #, php-format msgid "" "If your channel is mirrored to multiple hubs, set this to your preferred " "location. This will prevent duplicate email notifications. Example: %s" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:606 +#: ../../Zotlabs/Module/Settings/Channel.php:617 msgid "Show new wall posts, private messages and connections under Notices" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:608 +#: ../../Zotlabs/Module/Settings/Channel.php:619 msgid "Notify me of events this many days in advance" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:608 +#: ../../Zotlabs/Module/Settings/Channel.php:619 msgid "Must be greater than 0" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:614 +#: ../../Zotlabs/Module/Settings/Channel.php:625 msgid "Advanced Account/Page Type Settings" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:615 +#: ../../Zotlabs/Module/Settings/Channel.php:626 msgid "Change the behaviour of this account for special situations" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:617 +#: ../../Zotlabs/Module/Settings/Channel.php:628 msgid "Miscellaneous Settings" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:618 +#: ../../Zotlabs/Module/Settings/Channel.php:629 msgid "Default photo upload folder" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:618 -#: ../../Zotlabs/Module/Settings/Channel.php:619 +#: ../../Zotlabs/Module/Settings/Channel.php:629 +#: ../../Zotlabs/Module/Settings/Channel.php:630 msgid "%Y - current year, %m - current month" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:619 +#: ../../Zotlabs/Module/Settings/Channel.php:630 msgid "Default file upload folder" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:621 +#: ../../Zotlabs/Module/Settings/Channel.php:632 msgid "Personal menu to display in your channel pages" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:623 +#: ../../Zotlabs/Module/Settings/Channel.php:634 msgid "Remove this channel." msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:624 +#: ../../Zotlabs/Module/Settings/Channel.php:635 msgid "Firefox Share $Projectname provider" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:625 +#: ../../Zotlabs/Module/Settings/Channel.php:636 msgid "Start calendar week on Monday" msgstr "" @@ -7813,7 +8112,7 @@ msgid "NEW" msgstr "" #: ../../Zotlabs/Module/Sharedwithme.php:106 -#: ../../Zotlabs/Storage/Browser.php:287 ../../include/text.php:1443 +#: ../../Zotlabs/Storage/Browser.php:287 ../../include/text.php:1460 msgid "Size" msgstr "" @@ -7830,45 +8129,45 @@ msgstr "" msgid "Remove this file" msgstr "" -#: ../../Zotlabs/Module/Siteinfo.php:27 +#: ../../Zotlabs/Module/Siteinfo.php:30 msgid "About this site" msgstr "" -#: ../../Zotlabs/Module/Siteinfo.php:28 +#: ../../Zotlabs/Module/Siteinfo.php:31 msgid "Site Name" msgstr "" -#: ../../Zotlabs/Module/Siteinfo.php:32 +#: ../../Zotlabs/Module/Siteinfo.php:35 msgid "Administrator" msgstr "" -#: ../../Zotlabs/Module/Siteinfo.php:35 +#: ../../Zotlabs/Module/Siteinfo.php:38 msgid "Software and Project information" msgstr "" -#: ../../Zotlabs/Module/Siteinfo.php:36 +#: ../../Zotlabs/Module/Siteinfo.php:39 msgid "This site is powered by $Projectname" msgstr "" -#: ../../Zotlabs/Module/Siteinfo.php:37 +#: ../../Zotlabs/Module/Siteinfo.php:40 msgid "" "Federated and decentralised networking and identity services provided by Zot" msgstr "" -#: ../../Zotlabs/Module/Siteinfo.php:40 +#: ../../Zotlabs/Module/Siteinfo.php:44 msgid "Additional federated transport protocols:" msgstr "" -#: ../../Zotlabs/Module/Siteinfo.php:42 +#: ../../Zotlabs/Module/Siteinfo.php:46 #, php-format msgid "Version %s" msgstr "" -#: ../../Zotlabs/Module/Siteinfo.php:43 +#: ../../Zotlabs/Module/Siteinfo.php:47 msgid "Project homepage" msgstr "" -#: ../../Zotlabs/Module/Siteinfo.php:44 +#: ../../Zotlabs/Module/Siteinfo.php:48 msgid "Developer homepage" msgstr "" @@ -7972,12 +8271,12 @@ msgstr "" msgid "Post not found." msgstr "" -#: ../../Zotlabs/Module/Tagger.php:79 ../../include/bbcode.php:457 +#: ../../Zotlabs/Module/Tagger.php:79 ../../include/bbcode.php:487 #: ../../include/markdown.php:202 msgid "post" msgstr "" -#: ../../Zotlabs/Module/Tagger.php:81 ../../include/text.php:2027 +#: ../../Zotlabs/Module/Tagger.php:81 ../../include/text.php:2051 #: ../../include/conversation.php:144 msgid "comment" msgstr "" @@ -8218,7 +8517,7 @@ msgstr "" msgid "parent" msgstr "" -#: ../../Zotlabs/Storage/Browser.php:131 ../../include/text.php:2814 +#: ../../Zotlabs/Storage/Browser.php:131 ../../include/text.php:2838 msgid "Collection" msgstr "" @@ -8230,8 +8529,8 @@ msgstr "" msgid "Addressbook" msgstr "" -#: ../../Zotlabs/Storage/Browser.php:140 ../../include/nav.php:405 -#: ../../include/nav.php:408 +#: ../../Zotlabs/Storage/Browser.php:140 ../../include/nav.php:435 +#: ../../include/nav.php:438 msgid "Calendar" msgstr "" @@ -8312,16 +8611,18 @@ msgid "Addon Features" msgstr "" #: ../../Zotlabs/Widget/Appcategories.php:43 -#: ../../include/contact_widgets.php:97 ../../include/contact_widgets.php:141 -#: ../../include/contact_widgets.php:186 ../../include/taxonomy.php:409 +#: ../../Zotlabs/Widget/Categories.php:75 +#: ../../Zotlabs/Widget/Categories.php:119 +#: ../../Zotlabs/Widget/Categories.php:166 ../../include/taxonomy.php:409 #: ../../include/taxonomy.php:491 ../../include/taxonomy.php:511 #: ../../include/taxonomy.php:532 msgid "Categories" msgstr "" -#: ../../Zotlabs/Widget/Appcategories.php:46 ../../Zotlabs/Widget/Filer.php:31 -#: ../../include/contact_widgets.php:56 ../../include/contact_widgets.php:100 -#: ../../include/contact_widgets.php:144 ../../include/contact_widgets.php:189 +#: ../../Zotlabs/Widget/Appcategories.php:46 +#: ../../Zotlabs/Widget/Categories.php:78 +#: ../../Zotlabs/Widget/Categories.php:122 +#: ../../Zotlabs/Widget/Categories.php:169 ../../Zotlabs/Widget/Filer.php:31 msgid "Everything" msgstr "" @@ -8445,12 +8746,6 @@ msgstr "" msgid "Import Calendar" msgstr "" -#: ../../Zotlabs/Widget/Filer.php:28 -#: ../../Zotlabs/Widget/Activity_filter.php:129 -#: ../../include/contact_widgets.php:53 ../../include/features.php:492 -msgid "Saved Folders" -msgstr "" - #: ../../Zotlabs/Widget/Follow.php:22 #, php-format msgid "You have %1$.0f of %2$.0f allowed connections." @@ -8751,10 +9046,6 @@ msgstr "" msgid "Tasks" msgstr "" -#: ../../Zotlabs/Widget/Affinity.php:47 -msgid "Refresh" -msgstr "" - #: ../../Zotlabs/Widget/Archive.php:43 msgid "Archives" msgstr "" @@ -8801,6 +9092,11 @@ msgstr "" msgid "Show posts that I have filed to %s" msgstr "" +#: ../../Zotlabs/Widget/Activity_filter.php:129 +#: ../../Zotlabs/Widget/Filer.php:28 ../../include/features.php:492 +msgid "Saved Folders" +msgstr "" + #: ../../Zotlabs/Widget/Activity_filter.php:133 msgid "Show filed post categories" msgstr "" @@ -8845,106 +9141,117 @@ msgstr "" msgid "Order unthreaded by date" msgstr "" -#: ../../Zotlabs/Zot/Auth.php:152 -msgid "" -"Remote authentication blocked. You are logged into this site locally. Please " -"logout and retry." +#: ../../Zotlabs/Widget/Affinity.php:37 +msgid "Friend zoom in/out" msgstr "" -#: ../../Zotlabs/Zot/Auth.php:264 +#: ../../Zotlabs/Widget/Affinity.php:38 +msgid "Refresh" +msgstr "" + +#: ../../Zotlabs/Widget/Common_friends.php:40 +msgid "Common Connections" +msgstr "" + +#: ../../Zotlabs/Widget/Common_friends.php:45 #, php-format -msgid "Welcome %s. Remote authentication successful." +msgid "View all %d common connections" msgstr "" -#: ../../include/account.php:36 -msgid "Not a valid email address" -msgstr "" - -#: ../../include/account.php:38 -msgid "Your email domain is not among those allowed on this site" -msgstr "" - -#: ../../include/account.php:44 -msgid "Your email address is already registered at this site." -msgstr "" - -#: ../../include/account.php:76 -msgid "An invitation is required." -msgstr "" - -#: ../../include/account.php:80 -msgid "Invitation could not be verified." -msgstr "" - -#: ../../include/account.php:158 -msgid "Please enter the required information." -msgstr "" - -#: ../../include/account.php:225 -msgid "Failed to store account information." -msgstr "" - -#: ../../include/account.php:314 +#: ../../Zotlabs/Widget/Findpeople.php:18 #, php-format -msgid "Registration confirmation for %s" +msgid "%d invitation available" +msgid_plural "%d invitations available" +msgstr[0] "" +msgstr[1] "" + +#: ../../Zotlabs/Widget/Findpeople.php:26 +msgid "Find Channels" msgstr "" -#: ../../include/account.php:385 +#: ../../Zotlabs/Widget/Findpeople.php:27 +msgid "Enter name or interest" +msgstr "" + +#: ../../Zotlabs/Widget/Findpeople.php:28 +msgid "Connect/Follow" +msgstr "" + +#: ../../Zotlabs/Widget/Findpeople.php:29 +msgid "Examples: Robert Morgenstein, Fishing" +msgstr "" + +#: ../../Zotlabs/Widget/Findpeople.php:36 +msgid "Advanced example: name=fred and country=iceland" +msgstr "" + +#: ../../include/items.php:916 ../../include/items.php:976 +msgid "(Unknown)" +msgstr "" + +#: ../../include/items.php:1157 +msgid "Visible to anybody on the internet." +msgstr "" + +#: ../../include/items.php:1159 +msgid "Visible to you only." +msgstr "" + +#: ../../include/items.php:1161 +msgid "Visible to anybody in this network." +msgstr "" + +#: ../../include/items.php:1163 +msgid "Visible to anybody authenticated." +msgstr "" + +#: ../../include/items.php:1165 #, php-format -msgid "Registration request at %s" +msgid "Visible to anybody on %s." msgstr "" -#: ../../include/account.php:407 -msgid "your registration password" +#: ../../include/items.php:1167 +msgid "Visible to all connections." msgstr "" -#: ../../include/account.php:413 ../../include/account.php:475 +#: ../../include/items.php:1169 +msgid "Visible to approved connections." +msgstr "" + +#: ../../include/items.php:1171 +msgid "Visible to specific connections." +msgstr "" + +#: ../../include/items.php:4095 +msgid "Privacy group is empty." +msgstr "" + +#: ../../include/items.php:4102 #, php-format -msgid "Registration details for %s" +msgid "Privacy group: %s" msgstr "" -#: ../../include/account.php:486 -msgid "Account approved." +#: ../../include/items.php:4114 +msgid "Connection not found." msgstr "" -#: ../../include/account.php:526 +#: ../../include/items.php:4458 +msgid "profile photo" +msgstr "" + +#: ../../include/items.php:4661 #, php-format -msgid "Registration revoked for %s" +msgid "[Edited %s]" msgstr "" -#: ../../include/account.php:805 ../../include/account.php:807 -msgid "Click here to upgrade." +#: ../../include/items.php:4661 +msgctxt "edit_activity" +msgid "Post" msgstr "" -#: ../../include/account.php:813 -msgid "This action exceeds the limits set by your subscription plan." -msgstr "" - -#: ../../include/account.php:818 -msgid "This action is not available under your subscription plan." -msgstr "" - -#: ../../include/activities.php:39 -msgid " and " -msgstr "" - -#: ../../include/activities.php:47 -msgid "public profile" -msgstr "" - -#: ../../include/activities.php:56 -#, php-format -msgid "%1$s changed %2$s to “%3$s”" -msgstr "" - -#: ../../include/activities.php:57 -#, php-format -msgid "Visit %1$s's %2$s" -msgstr "" - -#: ../../include/activities.php:60 -#, php-format -msgid "%1$s has an updated %2$s, changing %3$s." +#: ../../include/items.php:4661 +msgctxt "edit_activity" +msgid "Comment" msgstr "" #: ../../include/auth.php:192 @@ -8967,42 +9274,6 @@ msgstr "" msgid "Login failed." msgstr "" -#: ../../include/contact_widgets.php:11 -#, php-format -msgid "%d invitation available" -msgid_plural "%d invitations available" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/contact_widgets.php:19 -msgid "Find Channels" -msgstr "" - -#: ../../include/contact_widgets.php:20 -msgid "Enter name or interest" -msgstr "" - -#: ../../include/contact_widgets.php:21 -msgid "Connect/Follow" -msgstr "" - -#: ../../include/contact_widgets.php:22 -msgid "Examples: Robert Morgenstein, Fishing" -msgstr "" - -#: ../../include/contact_widgets.php:29 -msgid "Advanced example: name=fred and country=iceland" -msgstr "" - -#: ../../include/contact_widgets.php:223 -msgid "Common Connections" -msgstr "" - -#: ../../include/contact_widgets.php:228 -#, php-format -msgid "View all %d common connections" -msgstr "" - #: ../../include/datetime.php:140 msgid "Birthday" msgstr "" @@ -9015,7 +9286,7 @@ msgstr "" msgid "YYYY-MM-DD or MM-DD" msgstr "" -#: ../../include/datetime.php:238 ../../boot.php:2468 +#: ../../include/datetime.php:238 ../../boot.php:2467 msgid "never" msgstr "" @@ -9093,183 +9364,395 @@ msgstr "" msgid "Cannot locate DNS info for database server '%s'" msgstr "" -#: ../../include/channel.php:43 -msgid "Unable to obtain identity information from database" +#: ../../include/text.php:489 +msgid "prev" msgstr "" -#: ../../include/channel.php:76 -msgid "Empty name" +#: ../../include/text.php:491 +msgid "first" msgstr "" -#: ../../include/channel.php:79 -msgid "Name too long" +#: ../../include/text.php:520 +msgid "last" msgstr "" -#: ../../include/channel.php:196 -msgid "No account identifier" +#: ../../include/text.php:523 +msgid "next" msgstr "" -#: ../../include/channel.php:208 -msgid "Nickname is required." +#: ../../include/text.php:534 +msgid "older" msgstr "" -#: ../../include/channel.php:285 -msgid "Unable to retrieve created identity" +#: ../../include/text.php:536 +msgid "newer" msgstr "" -#: ../../include/channel.php:383 -msgid "Default Profile" +#: ../../include/text.php:972 +msgid "No connections" msgstr "" -#: ../../include/channel.php:540 ../../include/channel.php:629 -msgid "Unable to retrieve modified identity" -msgstr "" - -#: ../../include/channel.php:1158 -msgid "Requested channel is not available." -msgstr "" - -#: ../../include/channel.php:1304 -msgid "Create New Profile" -msgstr "" - -#: ../../include/channel.php:1307 ../../include/nav.php:106 -msgid "Edit Profile" -msgstr "" - -#: ../../include/channel.php:1325 -msgid "Visible to everybody" -msgstr "" - -#: ../../include/channel.php:1402 ../../include/channel.php:1530 -msgid "Gender:" -msgstr "" - -#: ../../include/channel.php:1403 ../../include/channel.php:1574 -msgid "Status:" -msgstr "" - -#: ../../include/channel.php:1404 ../../include/channel.php:1598 -msgid "Homepage:" -msgstr "" - -#: ../../include/channel.php:1405 -msgid "Online Now" -msgstr "" - -#: ../../include/channel.php:1458 -msgid "Change your profile photo" -msgstr "" - -#: ../../include/channel.php:1485 ../../include/selectors.php:49 -#: ../../include/selectors.php:66 -msgid "Female" -msgstr "" - -#: ../../include/channel.php:1487 ../../include/selectors.php:49 -#: ../../include/selectors.php:66 -msgid "Male" -msgstr "" - -#: ../../include/channel.php:1489 -msgid "Trans" -msgstr "" - -#: ../../include/channel.php:1491 ../../include/selectors.php:49 -msgid "Neuter" -msgstr "" - -#: ../../include/channel.php:1493 ../../include/selectors.php:49 -msgid "Non-specific" -msgstr "" - -#: ../../include/channel.php:1535 -msgid "Like this channel" -msgstr "" - -#: ../../include/channel.php:1559 -msgid "j F, Y" -msgstr "" - -#: ../../include/channel.php:1560 -msgid "j F" -msgstr "" - -#: ../../include/channel.php:1567 -msgid "Birthday:" -msgstr "" - -#: ../../include/channel.php:1580 +#: ../../include/text.php:1004 #, php-format -msgid "for %1$d %2$s" +msgid "View all %s connections" msgstr "" -#: ../../include/channel.php:1592 -msgid "Tags:" +#: ../../include/text.php:1060 +#, php-format +msgid "Network: %s" msgstr "" -#: ../../include/channel.php:1596 -msgid "Sexual Preference:" +#: ../../include/text.php:1149 ../../include/text.php:1153 +msgid "poke" msgstr "" -#: ../../include/channel.php:1602 -msgid "Political Views:" +#: ../../include/text.php:1149 ../../include/text.php:1153 +#: ../../include/conversation.php:249 +msgid "poked" msgstr "" -#: ../../include/channel.php:1604 -msgid "Religion:" +#: ../../include/text.php:1154 +msgid "ping" msgstr "" -#: ../../include/channel.php:1608 -msgid "Hobbies/Interests:" +#: ../../include/text.php:1154 +msgid "pinged" msgstr "" -#: ../../include/channel.php:1610 -msgid "Likes:" +#: ../../include/text.php:1155 +msgid "prod" msgstr "" -#: ../../include/channel.php:1612 -msgid "Dislikes:" +#: ../../include/text.php:1155 +msgid "prodded" msgstr "" -#: ../../include/channel.php:1614 -msgid "Contact information and Social Networks:" +#: ../../include/text.php:1156 +msgid "slap" msgstr "" -#: ../../include/channel.php:1616 -msgid "My other channels:" +#: ../../include/text.php:1156 +msgid "slapped" msgstr "" -#: ../../include/channel.php:1618 -msgid "Musical interests:" +#: ../../include/text.php:1157 +msgid "finger" msgstr "" -#: ../../include/channel.php:1620 -msgid "Books, literature:" +#: ../../include/text.php:1157 +msgid "fingered" msgstr "" -#: ../../include/channel.php:1622 -msgid "Television:" +#: ../../include/text.php:1158 +msgid "rebuff" msgstr "" -#: ../../include/channel.php:1624 -msgid "Film/dance/culture/entertainment:" +#: ../../include/text.php:1158 +msgid "rebuffed" msgstr "" -#: ../../include/channel.php:1626 -msgid "Love/Romance:" +#: ../../include/text.php:1181 +msgid "happy" msgstr "" -#: ../../include/channel.php:1628 -msgid "Work/employment:" +#: ../../include/text.php:1182 +msgid "sad" msgstr "" -#: ../../include/channel.php:1630 -msgid "School/education:" +#: ../../include/text.php:1183 +msgid "mellow" msgstr "" -#: ../../include/channel.php:1653 -msgid "Like this thing" +#: ../../include/text.php:1184 +msgid "tired" +msgstr "" + +#: ../../include/text.php:1185 +msgid "perky" +msgstr "" + +#: ../../include/text.php:1186 +msgid "angry" +msgstr "" + +#: ../../include/text.php:1187 +msgid "stupefied" +msgstr "" + +#: ../../include/text.php:1188 +msgid "puzzled" +msgstr "" + +#: ../../include/text.php:1189 +msgid "interested" +msgstr "" + +#: ../../include/text.php:1190 +msgid "bitter" +msgstr "" + +#: ../../include/text.php:1191 +msgid "cheerful" +msgstr "" + +#: ../../include/text.php:1192 +msgid "alive" +msgstr "" + +#: ../../include/text.php:1193 +msgid "annoyed" +msgstr "" + +#: ../../include/text.php:1194 +msgid "anxious" +msgstr "" + +#: ../../include/text.php:1195 +msgid "cranky" +msgstr "" + +#: ../../include/text.php:1196 +msgid "disturbed" +msgstr "" + +#: ../../include/text.php:1197 +msgid "frustrated" +msgstr "" + +#: ../../include/text.php:1198 +msgid "depressed" +msgstr "" + +#: ../../include/text.php:1199 +msgid "motivated" +msgstr "" + +#: ../../include/text.php:1200 +msgid "relaxed" +msgstr "" + +#: ../../include/text.php:1201 +msgid "surprised" +msgstr "" + +#: ../../include/text.php:1380 ../../include/js_strings.php:86 +msgid "Monday" +msgstr "" + +#: ../../include/text.php:1380 ../../include/js_strings.php:87 +msgid "Tuesday" +msgstr "" + +#: ../../include/text.php:1380 ../../include/js_strings.php:88 +msgid "Wednesday" +msgstr "" + +#: ../../include/text.php:1380 ../../include/js_strings.php:89 +msgid "Thursday" +msgstr "" + +#: ../../include/text.php:1380 ../../include/js_strings.php:90 +msgid "Friday" +msgstr "" + +#: ../../include/text.php:1380 ../../include/js_strings.php:91 +msgid "Saturday" +msgstr "" + +#: ../../include/text.php:1380 ../../include/js_strings.php:85 +msgid "Sunday" +msgstr "" + +#: ../../include/text.php:1384 ../../include/js_strings.php:61 +msgid "January" +msgstr "" + +#: ../../include/text.php:1384 ../../include/js_strings.php:62 +msgid "February" +msgstr "" + +#: ../../include/text.php:1384 ../../include/js_strings.php:63 +msgid "March" +msgstr "" + +#: ../../include/text.php:1384 ../../include/js_strings.php:64 +msgid "April" +msgstr "" + +#: ../../include/text.php:1384 +msgid "May" +msgstr "" + +#: ../../include/text.php:1384 ../../include/js_strings.php:66 +msgid "June" +msgstr "" + +#: ../../include/text.php:1384 ../../include/js_strings.php:67 +msgid "July" +msgstr "" + +#: ../../include/text.php:1384 ../../include/js_strings.php:68 +msgid "August" +msgstr "" + +#: ../../include/text.php:1384 ../../include/js_strings.php:69 +msgid "September" +msgstr "" + +#: ../../include/text.php:1384 ../../include/js_strings.php:70 +msgid "October" +msgstr "" + +#: ../../include/text.php:1384 ../../include/js_strings.php:71 +msgid "November" +msgstr "" + +#: ../../include/text.php:1384 ../../include/js_strings.php:72 +msgid "December" +msgstr "" + +#: ../../include/text.php:1458 +msgid "Unknown Attachment" +msgstr "" + +#: ../../include/text.php:1460 ../../include/feedutils.php:860 +msgid "unknown" +msgstr "" + +#: ../../include/text.php:1496 +msgid "remove category" +msgstr "" + +#: ../../include/text.php:1570 +msgid "remove from file" +msgstr "" + +#: ../../include/text.php:1724 ../../include/message.php:14 +msgid "Download binary/encrypted content" +msgstr "" + +#: ../../include/text.php:1887 ../../include/language.php:397 +msgid "default" +msgstr "" + +#: ../../include/text.php:1895 +msgid "Page layout" +msgstr "" + +#: ../../include/text.php:1895 +msgid "You can create your own with the layouts tool" +msgstr "" + +#: ../../include/text.php:1905 ../../extend/addon/a/wiki/Wiki_pages.php:37 +#: ../../extend/addon/a/wiki/Wiki_pages.php:94 +#: ../../extend/addon/a/wiki/Mod_Wiki.php:215 +#: ../../extend/addon/a/wiki/Mod_Wiki.php:360 +msgid "BBcode" +msgstr "" + +#: ../../include/text.php:1906 +msgid "HTML" +msgstr "" + +#: ../../include/text.php:1907 ../../extend/addon/a/wiki/Wiki_pages.php:37 +#: ../../extend/addon/a/wiki/Wiki_pages.php:94 +#: ../../extend/addon/a/wiki/Mod_Wiki.php:215 +#: ../../extend/addon/a/wiki/Mod_Wiki.php:360 +msgid "Markdown" +msgstr "" + +#: ../../include/text.php:1908 ../../extend/addon/a/wiki/Wiki_pages.php:37 +#: ../../extend/addon/a/wiki/Wiki_pages.php:94 +#: ../../extend/addon/a/wiki/Mod_Wiki.php:215 +msgid "Text" +msgstr "" + +#: ../../include/text.php:1909 +msgid "Comanche Layout" +msgstr "" + +#: ../../include/text.php:1914 +msgid "PHP" +msgstr "" + +#: ../../include/text.php:1923 +msgid "Page content type" +msgstr "" + +#: ../../include/text.php:2056 +msgid "activity" +msgstr "" + +#: ../../include/text.php:2157 +msgid "a-z, 0-9, -, and _ only" +msgstr "" + +#: ../../include/text.php:2477 +msgid "Design Tools" +msgstr "" + +#: ../../include/text.php:2483 +msgid "Pages" +msgstr "" + +#: ../../include/text.php:2505 +msgid "Import website..." +msgstr "" + +#: ../../include/text.php:2506 +msgid "Select folder to import" +msgstr "" + +#: ../../include/text.php:2507 +msgid "Import from a zipped folder:" +msgstr "" + +#: ../../include/text.php:2508 +msgid "Import from cloud files:" +msgstr "" + +#: ../../include/text.php:2509 +msgid "/cloud/channel/path/to/folder" +msgstr "" + +#: ../../include/text.php:2510 +msgid "Enter path to website files" +msgstr "" + +#: ../../include/text.php:2511 +msgid "Select folder" +msgstr "" + +#: ../../include/text.php:2512 +msgid "Export website..." +msgstr "" + +#: ../../include/text.php:2513 +msgid "Export to a zip file" +msgstr "" + +#: ../../include/text.php:2514 +msgid "website.zip" +msgstr "" + +#: ../../include/text.php:2515 +msgid "Enter a name for the zip file." +msgstr "" + +#: ../../include/text.php:2516 +msgid "Export to cloud files" +msgstr "" + +#: ../../include/text.php:2517 +msgid "/path/to/export/folder" +msgstr "" + +#: ../../include/text.php:2518 +msgid "Enter a path to a cloud files destination." +msgstr "" + +#: ../../include/text.php:2519 +msgid "Specify folder" msgstr "" #: ../../include/js_strings.php:5 @@ -9454,55 +9937,11 @@ msgstr "" msgid "timeago.numbers" msgstr "" -#: ../../include/js_strings.php:61 ../../include/text.php:1367 -msgid "January" -msgstr "" - -#: ../../include/js_strings.php:62 ../../include/text.php:1367 -msgid "February" -msgstr "" - -#: ../../include/js_strings.php:63 ../../include/text.php:1367 -msgid "March" -msgstr "" - -#: ../../include/js_strings.php:64 ../../include/text.php:1367 -msgid "April" -msgstr "" - #: ../../include/js_strings.php:65 msgctxt "long" msgid "May" msgstr "" -#: ../../include/js_strings.php:66 ../../include/text.php:1367 -msgid "June" -msgstr "" - -#: ../../include/js_strings.php:67 ../../include/text.php:1367 -msgid "July" -msgstr "" - -#: ../../include/js_strings.php:68 ../../include/text.php:1367 -msgid "August" -msgstr "" - -#: ../../include/js_strings.php:69 ../../include/text.php:1367 -msgid "September" -msgstr "" - -#: ../../include/js_strings.php:70 ../../include/text.php:1367 -msgid "October" -msgstr "" - -#: ../../include/js_strings.php:71 ../../include/text.php:1367 -msgid "November" -msgstr "" - -#: ../../include/js_strings.php:72 ../../include/text.php:1367 -msgid "December" -msgstr "" - #: ../../include/js_strings.php:73 msgid "Jan" msgstr "" @@ -9552,34 +9991,6 @@ msgstr "" msgid "Dec" msgstr "" -#: ../../include/js_strings.php:85 ../../include/text.php:1363 -msgid "Sunday" -msgstr "" - -#: ../../include/js_strings.php:86 ../../include/text.php:1363 -msgid "Monday" -msgstr "" - -#: ../../include/js_strings.php:87 ../../include/text.php:1363 -msgid "Tuesday" -msgstr "" - -#: ../../include/js_strings.php:88 ../../include/text.php:1363 -msgid "Wednesday" -msgstr "" - -#: ../../include/js_strings.php:89 ../../include/text.php:1363 -msgid "Thursday" -msgstr "" - -#: ../../include/js_strings.php:90 ../../include/text.php:1363 -msgid "Friday" -msgstr "" - -#: ../../include/js_strings.php:91 ../../include/text.php:1363 -msgid "Saturday" -msgstr "" - #: ../../include/js_strings.php:92 msgid "Sun" msgstr "" @@ -9633,266 +10044,10 @@ msgctxt "calendar" msgid "All day" msgstr "" -#: ../../include/language.php:397 ../../include/text.php:1863 -msgid "default" -msgstr "" - #: ../../include/language.php:410 msgid "Select an alternate language" msgstr "" -#: ../../include/oembed.php:224 -msgid "View PDF" -msgstr "" - -#: ../../include/oembed.php:347 -msgid " by " -msgstr "" - -#: ../../include/oembed.php:348 -msgid " on " -msgstr "" - -#: ../../include/oembed.php:377 -msgid "Embedded content" -msgstr "" - -#: ../../include/oembed.php:386 -msgid "Embedding disabled" -msgstr "" - -#: ../../include/selectors.php:30 -msgid "Frequently" -msgstr "" - -#: ../../include/selectors.php:31 -msgid "Hourly" -msgstr "" - -#: ../../include/selectors.php:32 -msgid "Twice daily" -msgstr "" - -#: ../../include/selectors.php:33 -msgid "Daily" -msgstr "" - -#: ../../include/selectors.php:34 -msgid "Weekly" -msgstr "" - -#: ../../include/selectors.php:35 -msgid "Monthly" -msgstr "" - -#: ../../include/selectors.php:49 -msgid "Currently Male" -msgstr "" - -#: ../../include/selectors.php:49 -msgid "Currently Female" -msgstr "" - -#: ../../include/selectors.php:49 -msgid "Mostly Male" -msgstr "" - -#: ../../include/selectors.php:49 -msgid "Mostly Female" -msgstr "" - -#: ../../include/selectors.php:49 -msgid "Transgender" -msgstr "" - -#: ../../include/selectors.php:49 -msgid "Intersex" -msgstr "" - -#: ../../include/selectors.php:49 -msgid "Transsexual" -msgstr "" - -#: ../../include/selectors.php:49 -msgid "Hermaphrodite" -msgstr "" - -#: ../../include/selectors.php:49 -msgid "Undecided" -msgstr "" - -#: ../../include/selectors.php:85 ../../include/selectors.php:104 -msgid "Males" -msgstr "" - -#: ../../include/selectors.php:85 ../../include/selectors.php:104 -msgid "Females" -msgstr "" - -#: ../../include/selectors.php:85 -msgid "Gay" -msgstr "" - -#: ../../include/selectors.php:85 -msgid "Lesbian" -msgstr "" - -#: ../../include/selectors.php:85 -msgid "No Preference" -msgstr "" - -#: ../../include/selectors.php:85 -msgid "Bisexual" -msgstr "" - -#: ../../include/selectors.php:85 -msgid "Autosexual" -msgstr "" - -#: ../../include/selectors.php:85 -msgid "Abstinent" -msgstr "" - -#: ../../include/selectors.php:85 -msgid "Virgin" -msgstr "" - -#: ../../include/selectors.php:85 -msgid "Deviant" -msgstr "" - -#: ../../include/selectors.php:85 -msgid "Fetish" -msgstr "" - -#: ../../include/selectors.php:85 -msgid "Oodles" -msgstr "" - -#: ../../include/selectors.php:85 -msgid "Nonsexual" -msgstr "" - -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "Single" -msgstr "" - -#: ../../include/selectors.php:123 -msgid "Lonely" -msgstr "" - -#: ../../include/selectors.php:123 -msgid "Available" -msgstr "" - -#: ../../include/selectors.php:123 -msgid "Unavailable" -msgstr "" - -#: ../../include/selectors.php:123 -msgid "Has crush" -msgstr "" - -#: ../../include/selectors.php:123 -msgid "Infatuated" -msgstr "" - -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "Dating" -msgstr "" - -#: ../../include/selectors.php:123 -msgid "Unfaithful" -msgstr "" - -#: ../../include/selectors.php:123 -msgid "Sex Addict" -msgstr "" - -#: ../../include/selectors.php:123 -msgid "Friends/Benefits" -msgstr "" - -#: ../../include/selectors.php:123 -msgid "Casual" -msgstr "" - -#: ../../include/selectors.php:123 -msgid "Engaged" -msgstr "" - -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "Married" -msgstr "" - -#: ../../include/selectors.php:123 -msgid "Imaginarily married" -msgstr "" - -#: ../../include/selectors.php:123 -msgid "Partners" -msgstr "" - -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "Cohabiting" -msgstr "" - -#: ../../include/selectors.php:123 -msgid "Common law" -msgstr "" - -#: ../../include/selectors.php:123 -msgid "Happy" -msgstr "" - -#: ../../include/selectors.php:123 -msgid "Not looking" -msgstr "" - -#: ../../include/selectors.php:123 -msgid "Swinger" -msgstr "" - -#: ../../include/selectors.php:123 -msgid "Betrayed" -msgstr "" - -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "Separated" -msgstr "" - -#: ../../include/selectors.php:123 -msgid "Unstable" -msgstr "" - -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "Divorced" -msgstr "" - -#: ../../include/selectors.php:123 -msgid "Imaginarily divorced" -msgstr "" - -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "Widowed" -msgstr "" - -#: ../../include/selectors.php:123 -msgid "Uncertain" -msgstr "" - -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "It's complicated" -msgstr "" - -#: ../../include/selectors.php:123 -msgid "Don't care" -msgstr "" - -#: ../../include/selectors.php:123 -msgid "Ask me" -msgstr "" - #: ../../include/taxonomy.php:320 msgid "Trending" msgstr "" @@ -9933,1097 +10088,6 @@ msgstr "" msgid "Not Found" msgstr "" -#: ../../include/connections.php:133 -msgid "New window" -msgstr "" - -#: ../../include/connections.php:134 -msgid "Open the selected location in a different window or browser tab" -msgstr "" - -#: ../../include/connections.php:701 ../../include/event.php:1334 -msgid "Home, Voice" -msgstr "" - -#: ../../include/connections.php:702 ../../include/event.php:1335 -msgid "Home, Fax" -msgstr "" - -#: ../../include/connections.php:704 ../../include/event.php:1337 -msgid "Work, Voice" -msgstr "" - -#: ../../include/connections.php:705 ../../include/event.php:1338 -msgid "Work, Fax" -msgstr "" - -#: ../../include/follow.php:38 -msgid "Channel is blocked on this site." -msgstr "" - -#: ../../include/follow.php:43 -msgid "Channel location missing." -msgstr "" - -#: ../../include/follow.php:85 -msgid "Remote channel or protocol unavailable." -msgstr "" - -#: ../../include/follow.php:108 -msgid "Channel discovery failed." -msgstr "" - -#: ../../include/follow.php:116 -msgid "Protocol not supported" -msgstr "" - -#: ../../include/follow.php:126 -msgid "Cannot connect to yourself." -msgstr "" - -#: ../../include/nav.php:81 -msgid "Remote authentication" -msgstr "" - -#: ../../include/nav.php:81 -msgid "Click to authenticate to your home hub" -msgstr "" - -#: ../../include/nav.php:87 -msgid "Manage your channels" -msgstr "" - -#: ../../include/nav.php:90 -msgid "Manage your privacy groups" -msgstr "" - -#: ../../include/nav.php:92 -msgid "Account/Channel Settings" -msgstr "" - -#: ../../include/nav.php:98 ../../include/nav.php:127 -#: ../../include/nav.php:146 ../../boot.php:1604 -msgid "Logout" -msgstr "" - -#: ../../include/nav.php:98 ../../include/nav.php:127 -msgid "End this session" -msgstr "" - -#: ../../include/nav.php:101 -msgid "Your profile page" -msgstr "" - -#: ../../include/nav.php:104 -msgid "Manage/Edit profiles" -msgstr "" - -#: ../../include/nav.php:113 ../../include/nav.php:117 -msgid "Sign in" -msgstr "" - -#: ../../include/nav.php:144 -msgid "Take me home" -msgstr "" - -#: ../../include/nav.php:146 -msgid "Log me out of this site" -msgstr "" - -#: ../../include/nav.php:151 -msgid "Create an account" -msgstr "" - -#: ../../include/nav.php:163 -msgid "Help and documentation" -msgstr "" - -#: ../../include/nav.php:178 -msgid "Search site @name, !forum, #tag, ?docs, content" -msgstr "" - -#: ../../include/nav.php:184 -msgid "Site Setup and Configuration" -msgstr "" - -#: ../../include/nav.php:267 -msgid "Powered by $Projectname" -msgstr "" - -#: ../../include/nav.php:278 -msgid "@name, !forum, #tag, content" -msgstr "" - -#: ../../include/nav.php:279 -msgid "Please wait..." -msgstr "" - -#: ../../include/nav.php:285 -msgid "Add/Manage Apps" -msgstr "" - -#: ../../include/nav.php:286 -msgid "Arrange Apps" -msgstr "" - -#: ../../include/nav.php:287 -msgid "Toggle System Apps" -msgstr "" - -#: ../../include/nav.php:366 ../../include/conversation.php:1794 -msgid "Status Messages and Posts" -msgstr "" - -#: ../../include/nav.php:379 ../../include/conversation.php:1807 -msgid "Profile Details" -msgstr "" - -#: ../../include/nav.php:389 ../../include/conversation.php:1817 -#: ../../include/photos.php:674 -msgid "Photo Albums" -msgstr "" - -#: ../../include/nav.php:397 ../../include/conversation.php:1825 -msgid "Files and Storage" -msgstr "" - -#: ../../include/nav.php:432 ../../include/conversation.php:1862 -msgid "Bookmarks" -msgstr "" - -#: ../../include/nav.php:435 ../../include/conversation.php:1865 -msgid "Saved Bookmarks" -msgstr "" - -#: ../../include/nav.php:446 ../../include/conversation.php:1876 -msgid "View Cards" -msgstr "" - -#: ../../include/nav.php:457 ../../include/conversation.php:1887 -msgid "View Articles" -msgstr "" - -#: ../../include/nav.php:469 ../../include/conversation.php:1898 -msgid "View Webpages" -msgstr "" - -#: ../../include/nav.php:478 ../../include/conversation.php:1908 -#: ../../extend/addon/a/wiki/Mod_Wiki.php:204 -#: ../../extend/addon/a/wiki/Wiki_list.php:18 -msgid "Wikis" -msgstr "" - -#: ../../include/text.php:489 -msgid "prev" -msgstr "" - -#: ../../include/text.php:491 -msgid "first" -msgstr "" - -#: ../../include/text.php:520 -msgid "last" -msgstr "" - -#: ../../include/text.php:523 -msgid "next" -msgstr "" - -#: ../../include/text.php:534 -msgid "older" -msgstr "" - -#: ../../include/text.php:536 -msgid "newer" -msgstr "" - -#: ../../include/text.php:955 -msgid "No connections" -msgstr "" - -#: ../../include/text.php:987 -#, php-format -msgid "View all %s connections" -msgstr "" - -#: ../../include/text.php:1043 -#, php-format -msgid "Network: %s" -msgstr "" - -#: ../../include/text.php:1132 ../../include/text.php:1136 -msgid "poke" -msgstr "" - -#: ../../include/text.php:1132 ../../include/text.php:1136 -#: ../../include/conversation.php:249 -msgid "poked" -msgstr "" - -#: ../../include/text.php:1137 -msgid "ping" -msgstr "" - -#: ../../include/text.php:1137 -msgid "pinged" -msgstr "" - -#: ../../include/text.php:1138 -msgid "prod" -msgstr "" - -#: ../../include/text.php:1138 -msgid "prodded" -msgstr "" - -#: ../../include/text.php:1139 -msgid "slap" -msgstr "" - -#: ../../include/text.php:1139 -msgid "slapped" -msgstr "" - -#: ../../include/text.php:1140 -msgid "finger" -msgstr "" - -#: ../../include/text.php:1140 -msgid "fingered" -msgstr "" - -#: ../../include/text.php:1141 -msgid "rebuff" -msgstr "" - -#: ../../include/text.php:1141 -msgid "rebuffed" -msgstr "" - -#: ../../include/text.php:1164 -msgid "happy" -msgstr "" - -#: ../../include/text.php:1165 -msgid "sad" -msgstr "" - -#: ../../include/text.php:1166 -msgid "mellow" -msgstr "" - -#: ../../include/text.php:1167 -msgid "tired" -msgstr "" - -#: ../../include/text.php:1168 -msgid "perky" -msgstr "" - -#: ../../include/text.php:1169 -msgid "angry" -msgstr "" - -#: ../../include/text.php:1170 -msgid "stupefied" -msgstr "" - -#: ../../include/text.php:1171 -msgid "puzzled" -msgstr "" - -#: ../../include/text.php:1172 -msgid "interested" -msgstr "" - -#: ../../include/text.php:1173 -msgid "bitter" -msgstr "" - -#: ../../include/text.php:1174 -msgid "cheerful" -msgstr "" - -#: ../../include/text.php:1175 -msgid "alive" -msgstr "" - -#: ../../include/text.php:1176 -msgid "annoyed" -msgstr "" - -#: ../../include/text.php:1177 -msgid "anxious" -msgstr "" - -#: ../../include/text.php:1178 -msgid "cranky" -msgstr "" - -#: ../../include/text.php:1179 -msgid "disturbed" -msgstr "" - -#: ../../include/text.php:1180 -msgid "frustrated" -msgstr "" - -#: ../../include/text.php:1181 -msgid "depressed" -msgstr "" - -#: ../../include/text.php:1182 -msgid "motivated" -msgstr "" - -#: ../../include/text.php:1183 -msgid "relaxed" -msgstr "" - -#: ../../include/text.php:1184 -msgid "surprised" -msgstr "" - -#: ../../include/text.php:1367 -msgid "May" -msgstr "" - -#: ../../include/text.php:1441 -msgid "Unknown Attachment" -msgstr "" - -#: ../../include/text.php:1443 ../../include/feedutils.php:860 -msgid "unknown" -msgstr "" - -#: ../../include/text.php:1479 -msgid "remove category" -msgstr "" - -#: ../../include/text.php:1553 -msgid "remove from file" -msgstr "" - -#: ../../include/text.php:1700 ../../include/message.php:16 -msgid "Download binary/encrypted content" -msgstr "" - -#: ../../include/text.php:1871 -msgid "Page layout" -msgstr "" - -#: ../../include/text.php:1871 -msgid "You can create your own with the layouts tool" -msgstr "" - -#: ../../include/text.php:1881 ../../extend/addon/a/wiki/Wiki_pages.php:37 -#: ../../extend/addon/a/wiki/Wiki_pages.php:94 -#: ../../extend/addon/a/wiki/Mod_Wiki.php:215 -#: ../../extend/addon/a/wiki/Mod_Wiki.php:360 -msgid "BBcode" -msgstr "" - -#: ../../include/text.php:1882 -msgid "HTML" -msgstr "" - -#: ../../include/text.php:1883 ../../extend/addon/a/wiki/Wiki_pages.php:37 -#: ../../extend/addon/a/wiki/Wiki_pages.php:94 -#: ../../extend/addon/a/wiki/Mod_Wiki.php:215 -#: ../../extend/addon/a/wiki/Mod_Wiki.php:360 -msgid "Markdown" -msgstr "" - -#: ../../include/text.php:1884 ../../extend/addon/a/wiki/Wiki_pages.php:37 -#: ../../extend/addon/a/wiki/Wiki_pages.php:94 -#: ../../extend/addon/a/wiki/Mod_Wiki.php:215 -msgid "Text" -msgstr "" - -#: ../../include/text.php:1885 -msgid "Comanche Layout" -msgstr "" - -#: ../../include/text.php:1890 -msgid "PHP" -msgstr "" - -#: ../../include/text.php:1899 -msgid "Page content type" -msgstr "" - -#: ../../include/text.php:2032 -msgid "activity" -msgstr "" - -#: ../../include/text.php:2133 -msgid "a-z, 0-9, -, and _ only" -msgstr "" - -#: ../../include/text.php:2453 -msgid "Design Tools" -msgstr "" - -#: ../../include/text.php:2459 -msgid "Pages" -msgstr "" - -#: ../../include/text.php:2481 -msgid "Import website..." -msgstr "" - -#: ../../include/text.php:2482 -msgid "Select folder to import" -msgstr "" - -#: ../../include/text.php:2483 -msgid "Import from a zipped folder:" -msgstr "" - -#: ../../include/text.php:2484 -msgid "Import from cloud files:" -msgstr "" - -#: ../../include/text.php:2485 -msgid "/cloud/channel/path/to/folder" -msgstr "" - -#: ../../include/text.php:2486 -msgid "Enter path to website files" -msgstr "" - -#: ../../include/text.php:2487 -msgid "Select folder" -msgstr "" - -#: ../../include/text.php:2488 -msgid "Export website..." -msgstr "" - -#: ../../include/text.php:2489 -msgid "Export to a zip file" -msgstr "" - -#: ../../include/text.php:2490 -msgid "website.zip" -msgstr "" - -#: ../../include/text.php:2491 -msgid "Enter a name for the zip file." -msgstr "" - -#: ../../include/text.php:2492 -msgid "Export to cloud files" -msgstr "" - -#: ../../include/text.php:2493 -msgid "/path/to/export/folder" -msgstr "" - -#: ../../include/text.php:2494 -msgid "Enter a path to a cloud files destination." -msgstr "" - -#: ../../include/text.php:2495 -msgid "Specify folder" -msgstr "" - -#: ../../include/bookmarks.php:34 -#, php-format -msgid "%1$s's bookmarks" -msgstr "" - -#: ../../include/items.php:941 ../../include/items.php:1001 -msgid "(Unknown)" -msgstr "" - -#: ../../include/items.php:1182 -msgid "Visible to anybody on the internet." -msgstr "" - -#: ../../include/items.php:1184 -msgid "Visible to you only." -msgstr "" - -#: ../../include/items.php:1186 -msgid "Visible to anybody in this network." -msgstr "" - -#: ../../include/items.php:1188 -msgid "Visible to anybody authenticated." -msgstr "" - -#: ../../include/items.php:1190 -#, php-format -msgid "Visible to anybody on %s." -msgstr "" - -#: ../../include/items.php:1192 -msgid "Visible to all connections." -msgstr "" - -#: ../../include/items.php:1194 -msgid "Visible to approved connections." -msgstr "" - -#: ../../include/items.php:1196 -msgid "Visible to specific connections." -msgstr "" - -#: ../../include/items.php:4188 -msgid "Privacy group is empty." -msgstr "" - -#: ../../include/items.php:4195 -#, php-format -msgid "Privacy group: %s" -msgstr "" - -#: ../../include/items.php:4207 -msgid "Connection not found." -msgstr "" - -#: ../../include/items.php:4551 -msgid "profile photo" -msgstr "" - -#: ../../include/items.php:4754 -#, php-format -msgid "[Edited %s]" -msgstr "" - -#: ../../include/items.php:4754 -msgctxt "edit_activity" -msgid "Post" -msgstr "" - -#: ../../include/items.php:4754 -msgctxt "edit_activity" -msgid "Comment" -msgstr "" - -#: ../../include/conversation.php:167 -#, php-format -msgid "likes %1$s's %2$s" -msgstr "" - -#: ../../include/conversation.php:170 -#, php-format -msgid "doesn't like %1$s's %2$s" -msgstr "" - -#: ../../include/conversation.php:210 -#, php-format -msgid "%1$s is now connected with %2$s" -msgstr "" - -#: ../../include/conversation.php:245 -#, php-format -msgid "%1$s poked %2$s" -msgstr "" - -#: ../../include/conversation.php:725 -#, php-format -msgid "View %s's profile @ %s" -msgstr "" - -#: ../../include/conversation.php:746 -msgid "Categories:" -msgstr "" - -#: ../../include/conversation.php:747 -msgid "Filed under:" -msgstr "" - -#: ../../include/conversation.php:773 -msgid "View in context" -msgstr "" - -#: ../../include/conversation.php:874 -msgid "remove" -msgstr "" - -#: ../../include/conversation.php:878 -msgid "Loading..." -msgstr "" - -#: ../../include/conversation.php:879 -msgid "Delete Selected Items" -msgstr "" - -#: ../../include/conversation.php:922 -msgid "View Source" -msgstr "" - -#: ../../include/conversation.php:932 -msgid "Follow Thread" -msgstr "" - -#: ../../include/conversation.php:941 -msgid "Unfollow Thread" -msgstr "" - -#: ../../include/conversation.php:1014 -msgid "Visit" -msgstr "" - -#: ../../include/conversation.php:1044 -msgid "Edit Connection" -msgstr "" - -#: ../../include/conversation.php:1054 -msgid "Message" -msgstr "" - -#: ../../include/conversation.php:1161 -#, php-format -msgid "%s likes this." -msgstr "" - -#: ../../include/conversation.php:1161 -#, php-format -msgid "%s doesn't like this." -msgstr "" - -#: ../../include/conversation.php:1165 -#, php-format -msgid "%2$d people like this." -msgid_plural "%2$d people like this." -msgstr[0] "" -msgstr[1] "" - -#: ../../include/conversation.php:1167 -#, 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:1173 -msgid "and" -msgstr "" - -#: ../../include/conversation.php:1176 -#, php-format -msgid ", and %d other people" -msgid_plural ", and %d other people" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/conversation.php:1177 -#, php-format -msgid "%s like this." -msgstr "" - -#: ../../include/conversation.php:1177 -#, php-format -msgid "%s don't like this." -msgstr "" - -#: ../../include/conversation.php:1234 ../../extend/addon/a/hsse/hsse.php:81 -msgid "Set your location" -msgstr "" - -#: ../../include/conversation.php:1235 ../../extend/addon/a/hsse/hsse.php:82 -msgid "Clear browser location" -msgstr "" - -#: ../../include/conversation.php:1253 ../../extend/addon/a/hsse/hsse.php:98 -msgid "Embed (existing) photo from your photo albums" -msgstr "" - -#: ../../include/conversation.php:1290 ../../extend/addon/a/hsse/hsse.php:134 -msgid "Tag term:" -msgstr "" - -#: ../../include/conversation.php:1291 ../../extend/addon/a/hsse/hsse.php:135 -msgid "Where are you right now?" -msgstr "" - -#: ../../include/conversation.php:1296 ../../extend/addon/a/hsse/hsse.php:140 -msgid "Choose a different album..." -msgstr "" - -#: ../../include/conversation.php:1300 ../../extend/addon/a/hsse/hsse.php:144 -msgid "Comments enabled" -msgstr "" - -#: ../../include/conversation.php:1301 ../../extend/addon/a/hsse/hsse.php:145 -msgid "Comments disabled" -msgstr "" - -#: ../../include/conversation.php:1350 ../../extend/addon/a/hsse/hsse.php:194 -msgid "Page link name" -msgstr "" - -#: ../../include/conversation.php:1353 ../../extend/addon/a/hsse/hsse.php:197 -msgid "Post as" -msgstr "" - -#: ../../include/conversation.php:1363 -#: ../../extend/addon/a/wiki/Mod_Wiki.php:390 -#: ../../extend/addon/a/hsse/hsse.php:207 -msgid "Embed an image from your albums" -msgstr "" - -#: ../../include/conversation.php:1367 ../../extend/addon/a/hsse/hsse.php:211 -msgid "Toggle voting" -msgstr "" - -#: ../../include/conversation.php:1370 ../../extend/addon/a/hsse/hsse.php:214 -msgid "Disable comments" -msgstr "" - -#: ../../include/conversation.php:1371 ../../extend/addon/a/hsse/hsse.php:215 -msgid "Toggle comments" -msgstr "" - -#: ../../include/conversation.php:1379 ../../extend/addon/a/hsse/hsse.php:223 -msgid "Categories (optional, comma-separated list)" -msgstr "" - -#: ../../include/conversation.php:1402 ../../extend/addon/a/hsse/hsse.php:246 -msgid "Other networks and post services" -msgstr "" - -#: ../../include/conversation.php:1405 ../../extend/addon/a/hsse/hsse.php:249 -msgid "Set expiration date" -msgstr "" - -#: ../../include/conversation.php:1408 ../../extend/addon/a/hsse/hsse.php:252 -msgid "Set publish date" -msgstr "" - -#: ../../include/conversation.php:1673 -msgid "Commented Order" -msgstr "" - -#: ../../include/conversation.php:1676 -msgid "Sort by Comment Date" -msgstr "" - -#: ../../include/conversation.php:1680 -msgid "Posted Order" -msgstr "" - -#: ../../include/conversation.php:1683 -msgid "Sort by Post Date" -msgstr "" - -#: ../../include/conversation.php:1691 -msgid "Posts that mention or involve you" -msgstr "" - -#: ../../include/conversation.php:1700 -msgid "Activity Stream - by date" -msgstr "" - -#: ../../include/conversation.php:1706 -msgid "Starred" -msgstr "" - -#: ../../include/conversation.php:1709 -msgid "Favourite Posts" -msgstr "" - -#: ../../include/conversation.php:1716 -msgid "Spam" -msgstr "" - -#: ../../include/conversation.php:1719 -msgid "Posts flagged as SPAM" -msgstr "" - -#: ../../include/conversation.php:1884 -msgid "articles" -msgstr "" - -#: ../../include/conversation.php:1967 -msgctxt "noun" -msgid "Attending" -msgid_plural "Attending" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/conversation.php:1970 -msgctxt "noun" -msgid "Not Attending" -msgid_plural "Not Attending" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/conversation.php:1973 -msgctxt "noun" -msgid "Undecided" -msgid_plural "Undecided" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/conversation.php:1976 -msgctxt "noun" -msgid "Agree" -msgid_plural "Agrees" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/conversation.php:1979 -msgctxt "noun" -msgid "Disagree" -msgid_plural "Disagrees" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/conversation.php:1982 -msgctxt "noun" -msgid "Abstain" -msgid_plural "Abstains" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/import.php:26 -msgid "Unable to import a removed channel." -msgstr "" - -#: ../../include/import.php:52 -msgid "" -"Cannot create a duplicate channel identifier on this system. Import failed." -msgstr "" - -#: ../../include/import.php:73 -msgid "Unable to create a unique channel address. Import failed." -msgstr "" - -#: ../../include/import.php:118 -msgid "Cloned channel not found. Import failed." -msgstr "" - -#: ../../include/network.php:792 -msgid "view full size" -msgstr "" - -#: ../../include/network.php:1822 ../../include/network.php:1823 -msgid "Friendica" -msgstr "" - -#: ../../include/network.php:1824 -msgid "OStatus" -msgstr "" - -#: ../../include/network.php:1825 -msgid "GNU-Social" -msgstr "" - -#: ../../include/network.php:1826 -msgid "RSS/Atom" -msgstr "" - -#: ../../include/network.php:1829 -msgid "Diaspora" -msgstr "" - -#: ../../include/network.php:1830 -msgid "Facebook" -msgstr "" - -#: ../../include/network.php:1831 -msgid "Zot" -msgstr "" - -#: ../../include/network.php:1832 -msgid "LinkedIn" -msgstr "" - -#: ../../include/network.php:1833 -msgid "XMPP/IM" -msgstr "" - -#: ../../include/network.php:1834 -msgid "MySpace" -msgstr "" - -#: ../../include/zid.php:353 -#, php-format -msgid "OpenWebAuth: %1$s welcomes %2$s" -msgstr "" - -#: ../../include/event.php:32 ../../include/event.php:99 -msgid "l F d, Y \\@ g:i A" -msgstr "" - -#: ../../include/event.php:40 ../../include/event.php:104 -msgid "Starts:" -msgstr "" - -#: ../../include/event.php:50 ../../include/event.php:108 -msgid "Finishes:" -msgstr "" - -#: ../../include/event.php:1045 -msgid "This event has been added to your calendar." -msgstr "" - -#: ../../include/event.php:1251 -msgid "Not specified" -msgstr "" - -#: ../../include/event.php:1252 -msgid "Needs Action" -msgstr "" - -#: ../../include/event.php:1253 -msgid "Completed" -msgstr "" - -#: ../../include/event.php:1254 -msgid "In Process" -msgstr "" - -#: ../../include/event.php:1255 -msgid "Cancelled" -msgstr "" - -#: ../../include/acl_selectors.php:113 -msgid "Who can see this?" -msgstr "" - -#: ../../include/acl_selectors.php:114 -msgid "Custom selection" -msgstr "" - -#: ../../include/acl_selectors.php:115 -msgid "" -"Select \"Show\" to allow viewing. \"Don't show\" lets you override and limit " -"the scope of \"Show\"." -msgstr "" - -#: ../../include/acl_selectors.php:116 -msgid "Show" -msgstr "" - -#: ../../include/acl_selectors.php:117 -msgid "Don't show" -msgstr "" - -#: ../../include/acl_selectors.php:150 -#, php-format -msgid "" -"Post permissions %s cannot be changed %s after a post is shared.
These " -"permissions set who is allowed to view the post." -msgstr "" - -#: ../../include/security.php:506 -msgid "" -"The form security token was not correct. This probably happened because the " -"form has been opened for too long (>3 hours) before submitting it." -msgstr "" - -#: ../../include/message.php:35 -msgid "Unable to determine sender." -msgstr "" - -#: ../../include/message.php:74 -msgid "No recipient provided." -msgstr "" - -#: ../../include/message.php:79 -msgid "[no subject]" -msgstr "" - -#: ../../include/message.php:209 -msgid "Stored post could not be verified." -msgstr "" - -#: ../../include/bbcode.php:199 ../../include/bbcode.php:1317 -#: ../../include/bbcode.php:1320 ../../include/bbcode.php:1325 -#: ../../include/bbcode.php:1328 ../../include/bbcode.php:1331 -#: ../../include/bbcode.php:1334 ../../include/bbcode.php:1339 -#: ../../include/bbcode.php:1342 ../../include/bbcode.php:1347 -#: ../../include/bbcode.php:1350 ../../include/bbcode.php:1353 -#: ../../include/bbcode.php:1356 -msgid "Image/photo" -msgstr "" - -#: ../../include/bbcode.php:238 ../../include/bbcode.php:1367 -msgid "Encrypted content" -msgstr "" - -#: ../../include/bbcode.php:254 -#, php-format -msgid "Install %1$s element %2$s" -msgstr "" - -#: ../../include/bbcode.php:258 -#, php-format -msgid "" -"This post contains an installable %s element, however you lack permissions " -"to install it on this site." -msgstr "" - -#: ../../include/bbcode.php:453 -msgid "card" -msgstr "" - -#: ../../include/bbcode.php:455 -msgid "article" -msgstr "" - -#: ../../include/bbcode.php:461 ../../include/markdown.php:200 -#, php-format -msgid "%1$s wrote the following %2$s %3$s" -msgstr "" - -#: ../../include/bbcode.php:538 ../../include/bbcode.php:546 -msgid "Click to open/close" -msgstr "" - -#: ../../include/bbcode.php:546 -msgid "spoiler" -msgstr "" - -#: ../../include/bbcode.php:559 -msgid "View article" -msgstr "" - -#: ../../include/bbcode.php:559 -msgid "View summary" -msgstr "" - -#: ../../include/bbcode.php:846 ../../include/bbcode.php:1027 -#: ../../extend/addon/a/wiki/NativeWikiPage.php:596 -msgid "Different viewers will see this text differently" -msgstr "" - -#: ../../include/bbcode.php:1305 -msgid "$1 wrote:" -msgstr "" - -#: ../../include/photos.php:150 -#, php-format -msgid "Image exceeds website size limit of %lu bytes" -msgstr "" - -#: ../../include/photos.php:161 -msgid "Image file is empty." -msgstr "" - -#: ../../include/photos.php:326 -msgid "Photo storage failed." -msgstr "" - -#: ../../include/photos.php:375 -msgid "a new photo" -msgstr "" - -#: ../../include/photos.php:379 -#, php-format -msgctxt "photo_upload" -msgid "%1$s posted %2$s to %3$s" -msgstr "" - -#: ../../include/photos.php:679 -msgid "Upload New Photos" -msgstr "" - #: ../../include/attach.php:268 ../../include/attach.php:377 msgid "Item was not found." msgstr "" @@ -11090,6 +10154,921 @@ msgstr "" msgid "Empty path" msgstr "" +#: ../../include/account.php:37 +msgid "Not a valid email address" +msgstr "" + +#: ../../include/account.php:39 +msgid "Your email domain is not among those allowed on this site" +msgstr "" + +#: ../../include/account.php:45 +msgid "Your email address is already registered at this site." +msgstr "" + +#: ../../include/account.php:77 +msgid "An invitation is required." +msgstr "" + +#: ../../include/account.php:81 +msgid "Invitation could not be verified." +msgstr "" + +#: ../../include/account.php:159 +msgid "Please enter the required information." +msgstr "" + +#: ../../include/account.php:226 +msgid "Failed to store account information." +msgstr "" + +#: ../../include/account.php:315 +#, php-format +msgid "Registration confirmation for %s" +msgstr "" + +#: ../../include/account.php:386 +#, php-format +msgid "Registration request at %s" +msgstr "" + +#: ../../include/account.php:408 +msgid "your registration password" +msgstr "" + +#: ../../include/account.php:414 ../../include/account.php:476 +#, php-format +msgid "Registration details for %s" +msgstr "" + +#: ../../include/account.php:487 +msgid "Account approved." +msgstr "" + +#: ../../include/account.php:527 +#, php-format +msgid "Registration revoked for %s" +msgstr "" + +#: ../../include/account.php:806 ../../include/account.php:808 +msgid "Click here to upgrade." +msgstr "" + +#: ../../include/account.php:814 +msgid "This action exceeds the limits set by your subscription plan." +msgstr "" + +#: ../../include/account.php:819 +msgid "This action is not available under your subscription plan." +msgstr "" + +#: ../../include/bookmarks.php:34 +#, php-format +msgid "%1$s's bookmarks" +msgstr "" + +#: ../../include/bbcode.php:199 ../../include/bbcode.php:1351 +#: ../../include/bbcode.php:1354 ../../include/bbcode.php:1359 +#: ../../include/bbcode.php:1362 ../../include/bbcode.php:1365 +#: ../../include/bbcode.php:1368 ../../include/bbcode.php:1373 +#: ../../include/bbcode.php:1376 ../../include/bbcode.php:1381 +#: ../../include/bbcode.php:1384 ../../include/bbcode.php:1387 +#: ../../include/bbcode.php:1390 +msgid "Image/photo" +msgstr "" + +#: ../../include/bbcode.php:238 ../../include/bbcode.php:1401 +msgid "Encrypted content" +msgstr "" + +#: ../../include/bbcode.php:254 +#, php-format +msgid "Install %1$s element %2$s" +msgstr "" + +#: ../../include/bbcode.php:258 +#, php-format +msgid "" +"This post contains an installable %s element, however you lack permissions " +"to install it on this site." +msgstr "" + +#: ../../include/bbcode.php:483 +msgid "card" +msgstr "" + +#: ../../include/bbcode.php:485 +msgid "article" +msgstr "" + +#: ../../include/bbcode.php:491 ../../include/markdown.php:200 +#, php-format +msgid "%1$s wrote the following %2$s %3$s" +msgstr "" + +#: ../../include/bbcode.php:568 ../../include/bbcode.php:576 +msgid "Click to open/close" +msgstr "" + +#: ../../include/bbcode.php:576 +msgid "spoiler" +msgstr "" + +#: ../../include/bbcode.php:878 ../../include/bbcode.php:1061 +#: ../../extend/addon/a/wiki/NativeWikiPage.php:596 +msgid "Different viewers will see this text differently" +msgstr "" + +#: ../../include/bbcode.php:1339 +msgid "$1 wrote:" +msgstr "" + +#: ../../include/conversation.php:167 +#, php-format +msgid "likes %1$s's %2$s" +msgstr "" + +#: ../../include/conversation.php:170 +#, php-format +msgid "doesn't like %1$s's %2$s" +msgstr "" + +#: ../../include/conversation.php:210 +#, php-format +msgid "%1$s is now connected with %2$s" +msgstr "" + +#: ../../include/conversation.php:245 +#, php-format +msgid "%1$s poked %2$s" +msgstr "" + +#: ../../include/conversation.php:725 +#, php-format +msgid "View %s's profile @ %s" +msgstr "" + +#: ../../include/conversation.php:746 +msgid "Categories:" +msgstr "" + +#: ../../include/conversation.php:747 +msgid "Filed under:" +msgstr "" + +#: ../../include/conversation.php:773 +msgid "View in context" +msgstr "" + +#: ../../include/conversation.php:875 +msgid "remove" +msgstr "" + +#: ../../include/conversation.php:879 +msgid "Loading..." +msgstr "" + +#: ../../include/conversation.php:880 +msgid "Delete Selected Items" +msgstr "" + +#: ../../include/conversation.php:923 +msgid "View Source" +msgstr "" + +#: ../../include/conversation.php:933 +msgid "Follow Thread" +msgstr "" + +#: ../../include/conversation.php:942 +msgid "Unfollow Thread" +msgstr "" + +#: ../../include/conversation.php:1015 +msgid "Visit" +msgstr "" + +#: ../../include/conversation.php:1045 +msgid "Edit Connection" +msgstr "" + +#: ../../include/conversation.php:1055 +msgid "Message" +msgstr "" + +#: ../../include/conversation.php:1162 +#, php-format +msgid "%s likes this." +msgstr "" + +#: ../../include/conversation.php:1162 +#, php-format +msgid "%s doesn't like this." +msgstr "" + +#: ../../include/conversation.php:1166 +#, php-format +msgid "%2$d people like this." +msgid_plural "%2$d people like this." +msgstr[0] "" +msgstr[1] "" + +#: ../../include/conversation.php:1168 +#, 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:1174 +msgid "and" +msgstr "" + +#: ../../include/conversation.php:1177 +#, php-format +msgid ", and %d other people" +msgid_plural ", and %d other people" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/conversation.php:1178 +#, php-format +msgid "%s like this." +msgstr "" + +#: ../../include/conversation.php:1178 +#, php-format +msgid "%s don't like this." +msgstr "" + +#: ../../include/conversation.php:1235 +msgid "Set your location" +msgstr "" + +#: ../../include/conversation.php:1236 +msgid "Clear browser location" +msgstr "" + +#: ../../include/conversation.php:1254 +msgid "Embed (existing) photo from your photo albums" +msgstr "" + +#: ../../include/conversation.php:1291 +msgid "Tag term:" +msgstr "" + +#: ../../include/conversation.php:1292 +msgid "Where are you right now?" +msgstr "" + +#: ../../include/conversation.php:1297 +msgid "Choose a different album..." +msgstr "" + +#: ../../include/conversation.php:1301 +msgid "Comments enabled" +msgstr "" + +#: ../../include/conversation.php:1302 +msgid "Comments disabled" +msgstr "" + +#: ../../include/conversation.php:1351 +msgid "Page link name" +msgstr "" + +#: ../../include/conversation.php:1354 +msgid "Post as" +msgstr "" + +#: ../../include/conversation.php:1364 +#: ../../extend/addon/a/wiki/Mod_Wiki.php:390 +msgid "Embed an image from your albums" +msgstr "" + +#: ../../include/conversation.php:1368 +msgid "Toggle voting" +msgstr "" + +#: ../../include/conversation.php:1371 +msgid "Disable comments" +msgstr "" + +#: ../../include/conversation.php:1372 +msgid "Toggle comments" +msgstr "" + +#: ../../include/conversation.php:1380 +msgid "Categories (optional, comma-separated list)" +msgstr "" + +#: ../../include/conversation.php:1403 +msgid "Other networks and post services" +msgstr "" + +#: ../../include/conversation.php:1406 +msgid "Set expiration date" +msgstr "" + +#: ../../include/conversation.php:1409 +msgid "Set publish date" +msgstr "" + +#: ../../include/conversation.php:1722 +msgid "Commented Order" +msgstr "" + +#: ../../include/conversation.php:1725 +msgid "Sort by Comment Date" +msgstr "" + +#: ../../include/conversation.php:1729 +msgid "Posted Order" +msgstr "" + +#: ../../include/conversation.php:1732 +msgid "Sort by Post Date" +msgstr "" + +#: ../../include/conversation.php:1740 +msgid "Posts that mention or involve you" +msgstr "" + +#: ../../include/conversation.php:1749 +msgid "Activity Stream - by date" +msgstr "" + +#: ../../include/conversation.php:1755 +msgid "Starred" +msgstr "" + +#: ../../include/conversation.php:1758 +msgid "Favourite Posts" +msgstr "" + +#: ../../include/conversation.php:1765 +msgid "Spam" +msgstr "" + +#: ../../include/conversation.php:1768 +msgid "Posts flagged as SPAM" +msgstr "" + +#: ../../include/conversation.php:1843 ../../include/nav.php:396 +msgid "Status Messages and Posts" +msgstr "" + +#: ../../include/conversation.php:1856 ../../include/nav.php:409 +msgid "Profile Details" +msgstr "" + +#: ../../include/conversation.php:1866 ../../include/nav.php:419 +#: ../../include/photos.php:678 +msgid "Photo Albums" +msgstr "" + +#: ../../include/conversation.php:1874 ../../include/nav.php:427 +msgid "Files and Storage" +msgstr "" + +#: ../../include/conversation.php:1911 ../../include/nav.php:462 +msgid "Bookmarks" +msgstr "" + +#: ../../include/conversation.php:1914 ../../include/nav.php:465 +msgid "Saved Bookmarks" +msgstr "" + +#: ../../include/conversation.php:1925 ../../include/nav.php:476 +msgid "View Cards" +msgstr "" + +#: ../../include/conversation.php:1933 +msgid "articles" +msgstr "" + +#: ../../include/conversation.php:1936 ../../include/nav.php:487 +msgid "View Articles" +msgstr "" + +#: ../../include/conversation.php:1947 ../../include/nav.php:499 +msgid "View Webpages" +msgstr "" + +#: ../../include/conversation.php:1957 ../../include/nav.php:508 +#: ../../extend/addon/a/wiki/Wiki_list.php:18 +#: ../../extend/addon/a/wiki/Mod_Wiki.php:204 +msgid "Wikis" +msgstr "" + +#: ../../include/conversation.php:2016 +msgctxt "noun" +msgid "Attending" +msgid_plural "Attending" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/conversation.php:2019 +msgctxt "noun" +msgid "Not Attending" +msgid_plural "Not Attending" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/conversation.php:2022 +msgctxt "noun" +msgid "Undecided" +msgid_plural "Undecided" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/conversation.php:2025 +msgctxt "noun" +msgid "Agree" +msgid_plural "Agrees" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/conversation.php:2028 +msgctxt "noun" +msgid "Disagree" +msgid_plural "Disagrees" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/conversation.php:2031 +msgctxt "noun" +msgid "Abstain" +msgid_plural "Abstains" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/channel.php:44 +msgid "Unable to obtain identity information from database" +msgstr "" + +#: ../../include/channel.php:77 +msgid "Empty name" +msgstr "" + +#: ../../include/channel.php:80 +msgid "Name too long" +msgstr "" + +#: ../../include/channel.php:196 +msgid "No account identifier" +msgstr "" + +#: ../../include/channel.php:208 +msgid "Nickname is required." +msgstr "" + +#: ../../include/channel.php:285 +msgid "Unable to retrieve created identity" +msgstr "" + +#: ../../include/channel.php:383 +msgid "Default Profile" +msgstr "" + +#: ../../include/channel.php:566 ../../include/channel.php:655 +msgid "Unable to retrieve modified identity" +msgstr "" + +#: ../../include/channel.php:1184 +msgid "Requested channel is not available." +msgstr "" + +#: ../../include/channel.php:1330 +msgid "Create New Profile" +msgstr "" + +#: ../../include/channel.php:1333 ../../include/nav.php:106 +msgid "Edit Profile" +msgstr "" + +#: ../../include/channel.php:1351 +msgid "Visible to everybody" +msgstr "" + +#: ../../include/channel.php:1428 ../../include/channel.php:1556 +msgid "Gender:" +msgstr "" + +#: ../../include/channel.php:1429 ../../include/channel.php:1600 +msgid "Status:" +msgstr "" + +#: ../../include/channel.php:1430 ../../include/channel.php:1624 +msgid "Homepage:" +msgstr "" + +#: ../../include/channel.php:1431 +msgid "Online Now" +msgstr "" + +#: ../../include/channel.php:1484 +msgid "Change your profile photo" +msgstr "" + +#: ../../include/channel.php:1515 +msgid "Trans" +msgstr "" + +#: ../../include/channel.php:1561 +msgid "Like this channel" +msgstr "" + +#: ../../include/channel.php:1585 +msgid "j F, Y" +msgstr "" + +#: ../../include/channel.php:1586 +msgid "j F" +msgstr "" + +#: ../../include/channel.php:1593 +msgid "Birthday:" +msgstr "" + +#: ../../include/channel.php:1606 +#, php-format +msgid "for %1$d %2$s" +msgstr "" + +#: ../../include/channel.php:1618 +msgid "Tags:" +msgstr "" + +#: ../../include/channel.php:1622 +msgid "Sexual Preference:" +msgstr "" + +#: ../../include/channel.php:1628 +msgid "Political Views:" +msgstr "" + +#: ../../include/channel.php:1630 +msgid "Religion:" +msgstr "" + +#: ../../include/channel.php:1634 +msgid "Hobbies/Interests:" +msgstr "" + +#: ../../include/channel.php:1636 +msgid "Likes:" +msgstr "" + +#: ../../include/channel.php:1638 +msgid "Dislikes:" +msgstr "" + +#: ../../include/channel.php:1640 +msgid "Contact information and Social Networks:" +msgstr "" + +#: ../../include/channel.php:1642 +msgid "My other channels:" +msgstr "" + +#: ../../include/channel.php:1644 +msgid "Musical interests:" +msgstr "" + +#: ../../include/channel.php:1646 +msgid "Books, literature:" +msgstr "" + +#: ../../include/channel.php:1648 +msgid "Television:" +msgstr "" + +#: ../../include/channel.php:1650 +msgid "Film/dance/culture/entertainment:" +msgstr "" + +#: ../../include/channel.php:1652 +msgid "Love/Romance:" +msgstr "" + +#: ../../include/channel.php:1654 +msgid "Work/employment:" +msgstr "" + +#: ../../include/channel.php:1656 +msgid "School/education:" +msgstr "" + +#: ../../include/channel.php:1679 +msgid "Like this thing" +msgstr "" + +#: ../../include/zid.php:353 +#, php-format +msgid "OpenWebAuth: %1$s welcomes %2$s" +msgstr "" + +#: ../../include/event.php:32 ../../include/event.php:99 +msgid "l F d, Y \\@ g:i A" +msgstr "" + +#: ../../include/event.php:40 ../../include/event.php:104 +msgid "Starts:" +msgstr "" + +#: ../../include/event.php:50 ../../include/event.php:108 +msgid "Finishes:" +msgstr "" + +#: ../../include/event.php:1045 +msgid "This event has been added to your calendar." +msgstr "" + +#: ../../include/event.php:1251 +msgid "Not specified" +msgstr "" + +#: ../../include/event.php:1252 +msgid "Needs Action" +msgstr "" + +#: ../../include/event.php:1253 +msgid "Completed" +msgstr "" + +#: ../../include/event.php:1254 +msgid "In Process" +msgstr "" + +#: ../../include/event.php:1255 +msgid "Cancelled" +msgstr "" + +#: ../../include/event.php:1334 ../../include/connections.php:701 +msgid "Home, Voice" +msgstr "" + +#: ../../include/event.php:1335 ../../include/connections.php:702 +msgid "Home, Fax" +msgstr "" + +#: ../../include/event.php:1337 ../../include/connections.php:704 +msgid "Work, Voice" +msgstr "" + +#: ../../include/event.php:1338 ../../include/connections.php:705 +msgid "Work, Fax" +msgstr "" + +#: ../../include/nav.php:81 +msgid "Remote authentication" +msgstr "" + +#: ../../include/nav.php:81 +msgid "Click to authenticate to your home hub" +msgstr "" + +#: ../../include/nav.php:87 +msgid "Manage your channels" +msgstr "" + +#: ../../include/nav.php:90 +msgid "Manage your privacy groups" +msgstr "" + +#: ../../include/nav.php:92 +msgid "Account/Channel Settings" +msgstr "" + +#: ../../include/nav.php:98 ../../include/nav.php:127 +#: ../../include/nav.php:146 ../../boot.php:1603 +msgid "Logout" +msgstr "" + +#: ../../include/nav.php:98 ../../include/nav.php:127 +msgid "End this session" +msgstr "" + +#: ../../include/nav.php:101 +msgid "Your profile page" +msgstr "" + +#: ../../include/nav.php:104 +msgid "Manage/Edit profiles" +msgstr "" + +#: ../../include/nav.php:113 ../../include/nav.php:117 +msgid "Sign in" +msgstr "" + +#: ../../include/nav.php:144 +msgid "Take me home" +msgstr "" + +#: ../../include/nav.php:146 +msgid "Log me out of this site" +msgstr "" + +#: ../../include/nav.php:151 +msgid "Create an account" +msgstr "" + +#: ../../include/nav.php:163 +msgid "Help and documentation" +msgstr "" + +#: ../../include/nav.php:178 +msgid "Search site @name, !forum, #tag, ?docs, content" +msgstr "" + +#: ../../include/nav.php:184 +msgid "Site Setup and Configuration" +msgstr "" + +#: ../../include/nav.php:297 +msgid "Powered by $Projectname" +msgstr "" + +#: ../../include/nav.php:308 +msgid "@name, !forum, #tag, content" +msgstr "" + +#: ../../include/nav.php:309 +msgid "Please wait..." +msgstr "" + +#: ../../include/nav.php:315 +msgid "Add/Manage Apps" +msgstr "" + +#: ../../include/nav.php:316 +msgid "Arrange Apps" +msgstr "" + +#: ../../include/nav.php:317 +msgid "Toggle System Apps" +msgstr "" + +#: ../../include/acl_selectors.php:113 +msgid "Who can see this?" +msgstr "" + +#: ../../include/acl_selectors.php:114 +msgid "Custom selection" +msgstr "" + +#: ../../include/acl_selectors.php:115 +msgid "" +"Select \"Show\" to allow viewing. \"Don't show\" lets you override and limit " +"the scope of \"Show\"." +msgstr "" + +#: ../../include/acl_selectors.php:116 +msgid "Show" +msgstr "" + +#: ../../include/acl_selectors.php:117 +msgid "Don't show" +msgstr "" + +#: ../../include/acl_selectors.php:150 +#, php-format +msgid "" +"Post permissions %s cannot be changed %s after a post is shared.
These " +"permissions set who is allowed to view the post." +msgstr "" + +#: ../../include/security.php:506 +msgid "" +"The form security token was not correct. This probably happened because the " +"form has been opened for too long (>3 hours) before submitting it." +msgstr "" + +#: ../../include/photos.php:150 +#, php-format +msgid "Image exceeds website size limit of %lu bytes" +msgstr "" + +#: ../../include/photos.php:161 +msgid "Image file is empty." +msgstr "" + +#: ../../include/photos.php:326 +msgid "Photo storage failed." +msgstr "" + +#: ../../include/photos.php:381 +msgid "a new photo" +msgstr "" + +#: ../../include/photos.php:385 +#, php-format +msgctxt "photo_upload" +msgid "%1$s posted %2$s to %3$s" +msgstr "" + +#: ../../include/photos.php:683 +msgid "Upload New Photos" +msgstr "" + +#: ../../include/import.php:26 +msgid "Unable to import a removed channel." +msgstr "" + +#: ../../include/import.php:52 +msgid "" +"Cannot create a duplicate channel identifier on this system. Import failed." +msgstr "" + +#: ../../include/import.php:73 +msgid "Unable to create a unique channel address. Import failed." +msgstr "" + +#: ../../include/import.php:117 +msgid "Cloned channel not found. Import failed." +msgstr "" + +#: ../../include/message.php:33 +msgid "Unable to determine sender." +msgstr "" + +#: ../../include/message.php:72 +msgid "No recipient provided." +msgstr "" + +#: ../../include/message.php:77 +msgid "[no subject]" +msgstr "" + +#: ../../include/message.php:207 +msgid "Stored post could not be verified." +msgstr "" + +#: ../../include/network.php:795 +msgid "view full size" +msgstr "" + +#: ../../include/network.php:1921 ../../include/network.php:1922 +msgid "Friendica" +msgstr "" + +#: ../../include/network.php:1923 +msgid "OStatus" +msgstr "" + +#: ../../include/network.php:1924 +msgid "GNU-Social" +msgstr "" + +#: ../../include/network.php:1925 +msgid "RSS/Atom" +msgstr "" + +#: ../../include/network.php:1928 +msgid "Diaspora" +msgstr "" + +#: ../../include/network.php:1929 +msgid "Facebook" +msgstr "" + +#: ../../include/network.php:1930 +msgid "Zot" +msgstr "" + +#: ../../include/network.php:1931 +msgid "LinkedIn" +msgstr "" + +#: ../../include/network.php:1932 +msgid "XMPP/IM" +msgstr "" + +#: ../../include/network.php:1933 +msgid "MySpace" +msgstr "" + +#: ../../include/oembed.php:226 +msgid "View PDF" +msgstr "" + +#: ../../include/oembed.php:355 +msgid " by " +msgstr "" + +#: ../../include/oembed.php:356 +msgid " on " +msgstr "" + +#: ../../include/oembed.php:385 +msgid "Embedded content" +msgstr "" + +#: ../../include/oembed.php:394 +msgid "Embedding disabled" +msgstr "" + #: ../../include/features.php:56 msgid "General Features" msgstr "" @@ -11232,6 +11211,14 @@ msgstr "" msgid "Provide a personal tag cloud on your channel page" msgstr "" +#: ../../include/connections.php:133 +msgid "New window" +msgstr "" + +#: ../../include/connections.php:134 +msgid "Open the selected location in a different window or browser tab" +msgstr "" + #: ../../util/nconfig.php:34 msgid "Source channel not found." msgstr "" @@ -11420,7 +11407,7 @@ msgid "General Purpose Content Filter" msgstr "" #: ../../extend/addon/a/superblock/Mod_Superblock.php:51 -#: ../../extend/addon/a/superblock/superblock.php:344 +#: ../../extend/addon/a/superblock/superblock.php:353 msgid "superblock settings updated" msgstr "" @@ -11446,10 +11433,40 @@ msgstr "" msgid "Superblock Settings" msgstr "" -#: ../../extend/addon/a/superblock/superblock.php:296 +#: ../../extend/addon/a/superblock/superblock.php:305 msgid "Block Completely" msgstr "" +#: ../../extend/addon/a/wiki/wiki.php:44 +msgid "Can view my wiki pages" +msgstr "" + +#: ../../extend/addon/a/wiki/wiki.php:45 +msgid "Can write to my wiki pages" +msgstr "" + +#: ../../extend/addon/a/wiki/Wiki_page_history.php:23 +#: ../../extend/addon/a/wiki/NativeWikiPage.php:556 +msgctxt "wiki_history" +msgid "Message" +msgstr "" + +#: ../../extend/addon/a/wiki/Wiki_page_history.php:24 +#: ../../extend/addon/a/wiki/NativeWikiPage.php:557 +msgid "Date" +msgstr "" + +#: ../../extend/addon/a/wiki/Wiki_page_history.php:25 +#: ../../extend/addon/a/wiki/NativeWikiPage.php:558 +#: ../../extend/addon/a/wiki/Mod_Wiki.php:356 +msgid "Revert" +msgstr "" + +#: ../../extend/addon/a/wiki/Wiki_page_history.php:26 +#: ../../extend/addon/a/wiki/NativeWikiPage.php:559 +msgid "Compare" +msgstr "" + #: ../../extend/addon/a/wiki/NativeWiki.php:150 msgid "Wiki updated successfully" msgstr "" @@ -11458,6 +11475,63 @@ msgstr "" msgid "Wiki files deleted successfully" msgstr "" +#: ../../extend/addon/a/wiki/NativeWikiPage.php:40 +#: ../../extend/addon/a/wiki/NativeWikiPage.php:91 +msgid "(No Title)" +msgstr "" + +#: ../../extend/addon/a/wiki/NativeWikiPage.php:104 +msgid "Wiki page create failed." +msgstr "" + +#: ../../extend/addon/a/wiki/NativeWikiPage.php:117 +msgid "Wiki not found." +msgstr "" + +#: ../../extend/addon/a/wiki/NativeWikiPage.php:128 +msgid "Destination name already exists" +msgstr "" + +#: ../../extend/addon/a/wiki/NativeWikiPage.php:160 +#: ../../extend/addon/a/wiki/NativeWikiPage.php:356 +msgid "Page not found" +msgstr "" + +#: ../../extend/addon/a/wiki/NativeWikiPage.php:191 +msgid "Error reading page content" +msgstr "" + +#: ../../extend/addon/a/wiki/NativeWikiPage.php:347 +#: ../../extend/addon/a/wiki/NativeWikiPage.php:397 +#: ../../extend/addon/a/wiki/NativeWikiPage.php:464 +#: ../../extend/addon/a/wiki/NativeWikiPage.php:505 +msgid "Error reading wiki" +msgstr "" + +#: ../../extend/addon/a/wiki/NativeWikiPage.php:385 +msgid "Page update failed." +msgstr "" + +#: ../../extend/addon/a/wiki/NativeWikiPage.php:419 +msgid "Nothing deleted" +msgstr "" + +#: ../../extend/addon/a/wiki/NativeWikiPage.php:485 +msgid "Compare: object not found." +msgstr "" + +#: ../../extend/addon/a/wiki/NativeWikiPage.php:491 +msgid "Page updated" +msgstr "" + +#: ../../extend/addon/a/wiki/NativeWikiPage.php:494 +msgid "Untitled" +msgstr "" + +#: ../../extend/addon/a/wiki/NativeWikiPage.php:500 +msgid "Wiki resource_id required for git commit" +msgstr "" + #: ../../extend/addon/a/wiki/Wiki_pages.php:33 #: ../../extend/addon/a/wiki/Wiki_pages.php:90 msgid "Add new page" @@ -11471,14 +11545,6 @@ msgstr "" msgid "Page name" msgstr "" -#: ../../extend/addon/a/wiki/wiki.php:44 -msgid "Can view my wiki pages" -msgstr "" - -#: ../../extend/addon/a/wiki/wiki.php:45 -msgid "Can write to my wiki pages" -msgstr "" - #: ../../extend/addon/a/wiki/Mod_Wiki.php:35 msgid "Profile Unavailable." msgstr "" @@ -11552,12 +11618,6 @@ msgstr "" msgid "Revision Comparison" msgstr "" -#: ../../extend/addon/a/wiki/Mod_Wiki.php:356 -#: ../../extend/addon/a/wiki/NativeWikiPage.php:558 -#: ../../extend/addon/a/wiki/Wiki_page_history.php:25 -msgid "Revert" -msgstr "" - #: ../../extend/addon/a/wiki/Mod_Wiki.php:363 msgid "Short description of your changes (optional)" msgstr "" @@ -11630,79 +11690,6 @@ msgstr "" msgid "You must be authenticated." msgstr "" -#: ../../extend/addon/a/wiki/NativeWikiPage.php:40 -#: ../../extend/addon/a/wiki/NativeWikiPage.php:91 -msgid "(No Title)" -msgstr "" - -#: ../../extend/addon/a/wiki/NativeWikiPage.php:104 -msgid "Wiki page create failed." -msgstr "" - -#: ../../extend/addon/a/wiki/NativeWikiPage.php:117 -msgid "Wiki not found." -msgstr "" - -#: ../../extend/addon/a/wiki/NativeWikiPage.php:128 -msgid "Destination name already exists" -msgstr "" - -#: ../../extend/addon/a/wiki/NativeWikiPage.php:160 -#: ../../extend/addon/a/wiki/NativeWikiPage.php:356 -msgid "Page not found" -msgstr "" - -#: ../../extend/addon/a/wiki/NativeWikiPage.php:191 -msgid "Error reading page content" -msgstr "" - -#: ../../extend/addon/a/wiki/NativeWikiPage.php:347 -#: ../../extend/addon/a/wiki/NativeWikiPage.php:397 -#: ../../extend/addon/a/wiki/NativeWikiPage.php:464 -#: ../../extend/addon/a/wiki/NativeWikiPage.php:505 -msgid "Error reading wiki" -msgstr "" - -#: ../../extend/addon/a/wiki/NativeWikiPage.php:385 -msgid "Page update failed." -msgstr "" - -#: ../../extend/addon/a/wiki/NativeWikiPage.php:419 -msgid "Nothing deleted" -msgstr "" - -#: ../../extend/addon/a/wiki/NativeWikiPage.php:485 -msgid "Compare: object not found." -msgstr "" - -#: ../../extend/addon/a/wiki/NativeWikiPage.php:491 -msgid "Page updated" -msgstr "" - -#: ../../extend/addon/a/wiki/NativeWikiPage.php:494 -msgid "Untitled" -msgstr "" - -#: ../../extend/addon/a/wiki/NativeWikiPage.php:500 -msgid "Wiki resource_id required for git commit" -msgstr "" - -#: ../../extend/addon/a/wiki/NativeWikiPage.php:556 -#: ../../extend/addon/a/wiki/Wiki_page_history.php:23 -msgctxt "wiki_history" -msgid "Message" -msgstr "" - -#: ../../extend/addon/a/wiki/NativeWikiPage.php:557 -#: ../../extend/addon/a/wiki/Wiki_page_history.php:24 -msgid "Date" -msgstr "" - -#: ../../extend/addon/a/wiki/NativeWikiPage.php:559 -#: ../../extend/addon/a/wiki/Wiki_page_history.php:26 -msgid "Compare" -msgstr "" - #: ../../extend/addon/a/zotpost/zotpost.php:45 msgid "Post to Zot" msgstr "" @@ -11750,43 +11737,6 @@ msgstr "" msgid "Zotpost Settings" msgstr "" -#: ../../extend/addon/a/activitypub.orig/activitypub.php:946 -msgid "ActivityPub Protocol Settings updated." -msgstr "" - -#: ../../extend/addon/a/activitypub.orig/activitypub.php:955 -msgid "" -"The ActivityPub protocol does not support location independence. Connections " -"you make within that network may be unreachable from alternate channel " -"locations." -msgstr "" - -#: ../../extend/addon/a/activitypub.orig/activitypub.php:958 -msgid "Enable the ActivityPub protocol for this channel" -msgstr "" - -#: ../../extend/addon/a/activitypub.orig/activitypub.php:961 -msgid "Deliver to ActivityPub recipients in privacy groups" -msgstr "" - -#: ../../extend/addon/a/activitypub.orig/activitypub.php:961 -msgid "" -"May result in a large number of mentions and expose all the members of your " -"privacy group" -msgstr "" - -#: ../../extend/addon/a/activitypub.orig/activitypub.php:965 -msgid "Send multi-media HTML articles" -msgstr "" - -#: ../../extend/addon/a/activitypub.orig/activitypub.php:965 -msgid "Not supported by some microblog services such as Mastodon" -msgstr "" - -#: ../../extend/addon/a/activitypub.orig/activitypub.php:969 -msgid "ActivityPub Protocol Settings" -msgstr "" - #: ../../extend/addon/a/stream_order/Mod_Stream_Order.php:14 msgid "" "This addon app provides a selector on your network stream page allowing you " @@ -11820,14 +11770,6 @@ msgstr "" msgid "Until modified date yyyy-mm-dd" msgstr "" -#: ../../extend/addon/a/hsse/Mod_Hsse.php:15 -msgid "WYSIWYG status editor" -msgstr "" - -#: ../../extend/addon/a/hsse/Mod_Hsse.php:34 -msgid "WYSIWYG Status" -msgstr "" - #: ../../extend/addon/a/rainbowtag/Mod_Rainbowtag.php:15 msgid "Add some colour to tag clouds" msgstr "" @@ -11840,40 +11782,40 @@ msgstr "" msgid "Cover Photo" msgstr "" -#: ../../boot.php:1584 +#: ../../boot.php:1583 msgid "Create an account to access services and applications" msgstr "" -#: ../../boot.php:1608 +#: ../../boot.php:1607 msgid "Login/Email" msgstr "" -#: ../../boot.php:1609 +#: ../../boot.php:1608 msgid "Password" msgstr "" -#: ../../boot.php:1610 +#: ../../boot.php:1609 msgid "Remember me" msgstr "" -#: ../../boot.php:1613 +#: ../../boot.php:1612 msgid "Forgot your password?" msgstr "" -#: ../../boot.php:2413 +#: ../../boot.php:2412 #, php-format msgid "[$Projectname] Website SSL error for %s" msgstr "" -#: ../../boot.php:2418 +#: ../../boot.php:2417 msgid "Website SSL certificate is not valid. Please correct." msgstr "" -#: ../../boot.php:2462 +#: ../../boot.php:2461 #, php-format msgid "[$Projectname] Cron tasks not running on %s" msgstr "" -#: ../../boot.php:2467 +#: ../../boot.php:2466 msgid "Cron/Scheduled tasks not running." msgstr ""