From fa383ede8f1ca9554e09a5c6e920702acaea980b Mon Sep 17 00:00:00 2001 From: nobody Date: Mon, 19 Oct 2020 18:53:12 -0700 Subject: [PATCH 01/22] add .htstartup.php to .gitignore --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index 2c5b9fc2e..1e4e80187 100755 --- a/.gitignore +++ b/.gitignore @@ -21,6 +21,7 @@ Thumbs.db ## Ignore site specific files and folders .htconfig.php +.htstartup.php favicon.* addon/ widget/ From 4374f66c782199d890e73acc5cabd6e14ec266d1 Mon Sep 17 00:00:00 2001 From: nobody Date: Tue, 20 Oct 2020 16:13:30 -0700 Subject: [PATCH 02/22] some more poll cleanup --- Zotlabs/Module/Item.php | 9 +++++++++ Zotlabs/Module/Settings/Channel.php | 2 +- include/datetime.php | 17 ++++++++++++----- include/text.php | 6 +++--- 4 files changed, 25 insertions(+), 9 deletions(-) diff --git a/Zotlabs/Module/Item.php b/Zotlabs/Module/Item.php index eacf4a714..34a7330aa 100644 --- a/Zotlabs/Module/Item.php +++ b/Zotlabs/Module/Item.php @@ -1172,11 +1172,19 @@ class Item extends Controller { $obj = $this->extract_bb_poll_data($body,[ 'item_private' => $private, 'allow_cid' => $str_contact_allow, 'allow_gid' => $str_contact_deny ]); } + $comments_closed = NULL_DATE; + if ($obj) { $obj['url'] = $mid; $obj['attributedTo'] = channel_url($channel); $datarray['obj'] = $obj; $obj_type = 'Question'; + if ($obj['endTime']) { + $d = datetime_convert('UTC','UTC', $obj['endTime']); + if ($d > NULL_DATE) { + $comments_closed = $d; + } + } } if(! $parent_mid) { @@ -1243,6 +1251,7 @@ class Item extends Controller { $datarray['commented'] = (($orig_post) ? datetime_convert() : $created); $datarray['received'] = (($orig_post) ? datetime_convert() : $created); $datarray['changed'] = (($orig_post) ? datetime_convert() : $created); + $datarray['comments_closed'] = $comments_closed; $datarray['mid'] = $mid; $datarray['parent_mid'] = $parent_mid; $datarray['mimetype'] = $mimetype; diff --git a/Zotlabs/Module/Settings/Channel.php b/Zotlabs/Module/Settings/Channel.php index 053de49b3..4998dcfc8 100644 --- a/Zotlabs/Module/Settings/Channel.php +++ b/Zotlabs/Module/Settings/Channel.php @@ -674,7 +674,7 @@ class Channel { '$vnotify14' => array('vnotify14', t('Unseen likes and dislikes'), ($vnotify & VNOTIFY_LIKE), VNOTIFY_LIKE, '', $yes_no), '$vnotify15' => array('vnotify15', t('Unseen forum posts'), ($vnotify & VNOTIFY_FORUMS), VNOTIFY_FORUMS, '', $yes_no), '$vnotify16' => ((is_site_admin()) ? array('vnotify16', t('Reported content'), ($vnotify & VNOTIFY_REPORTS), VNOTIFY_REPORTS, '', $yes_no) : [] ), - '$mailhost' => [ 'mailhost', t('Email notification hub (hostname)'), get_pconfig(local_channel(),'system','email_notify_host',App::get_hostname()), sprintf( t('If your channel is mirrored to multiple locations, set this to your preferred location. This will prevent duplicate email notifications. Example: %s'),App::get_hostname()) ], + '$mailhost' => [ 'mailhost', t('Email notifications sent from (hostname)'), get_pconfig(local_channel(),'system','email_notify_host',App::get_hostname()), sprintf( t('If your channel is mirrored to multiple locations, set this to your preferred location. This will prevent duplicate email notifications. Example: %s'),App::get_hostname()) ], '$always_show_in_notices' => array('always_show_in_notices', t('Show new wall posts, private messages and connections under Notices'), $always_show_in_notices, 1, '', $yes_no), '$permit_all_mentions' => [ 'permit_all_mentions', t('Accept messages from strangers which mention me'), get_pconfig(local_channel(),'system','permit_all_mentions'), t('This setting bypasses normal permissions'), $yes_no ], '$followed_tags' => [ 'followed_tags', t('Accept messages from strangers which include any of the following hashtags'), $followed, t('comma separated, do not include the #') ], diff --git a/include/datetime.php b/include/datetime.php index c8499f37f..34e6ea6cb 100644 --- a/include/datetime.php +++ b/include/datetime.php @@ -240,10 +240,17 @@ function relative_date($posted_date, $format = null) { return t('never'); } - $etime = time() - $abs; - + if ($abs > time()) { + $direction = t('from now'); + $etime = $abs - time(); + } + else { + $direction = t('ago'); + $etime = time() - $abs; + } + if ($etime < 1) { - return t('less than a second ago'); + return sprintf( t('less than a second %s'), $direction); } $a = array( 12 * 30 * 24 * 60 * 60 => 'y', @@ -261,9 +268,9 @@ function relative_date($posted_date, $format = null) { if ($d >= 1) { $r = round($d); if (! $format) - $format = t('%1$d %2$s ago', 'e.g. 22 hours ago, 1 minute ago'); + $format = t('%1$d %2$s %3$s', 'e.g. 22 hours ago, 1 minute ago'); - return sprintf($format, $r, plural_dates($str,$r)); + return sprintf($format, $r, plural_dates($str,$r), $direction); } } } diff --git a/include/text.php b/include/text.php index 0cb1ea0f0..cb6dd77b3 100644 --- a/include/text.php +++ b/include/text.php @@ -1781,7 +1781,7 @@ function format_poll($item,$s,$opts) { $output .= ' ' . $text . '' . ' (' . $total . ')' . EOL; } else { - $output .= '[ ] ' . $text . ' (' . $total . ')' . EOL; + $output .= $text . ' (' . $total . ')' . EOL; } } } @@ -1806,7 +1806,7 @@ function format_poll($item,$s,$opts) { $output .= ' ' . $text . '' . ' (' . $total . ')' . (($totalResponses) ? ' ' . intval($total / $totalResponses * 100) . '%' : '') . EOL; } else { - $output .= '( ) ' . $text . ' (' . $total . ')' . (($totalResponses) ? ' ' . intval($total / $totalResponses * 100) . '%' : '') . EOL; + $output .= $text . ' (' . $total . ')' . (($totalResponses) ? ' ' . intval($total / $totalResponses * 100) . '%' : '') . EOL; } } @@ -1816,7 +1816,7 @@ function format_poll($item,$s,$opts) { $message = t('Poll has ended.'); } elseif ($closing) { - $message = sprintf(t('Poll ends: %s'),$t); + $message = sprintf(t('Poll ends: %1$s (%2$s)'),relative_date($t),$t); } $output .= EOL . '
' . $message . '
'; From 2d7b02e3277ac527737175d6c20ded2159f847be Mon Sep 17 00:00:00 2001 From: nobody Date: Tue, 20 Oct 2020 17:57:34 -0700 Subject: [PATCH 03/22] version, add debug to daemon_convo to find out why it isn't working correctly in some cases --- Zotlabs/Daemon/Convo.php | 2 + Zotlabs/Lib/ASCollection.php | 1 + Zotlabs/Lib/Libzotdir.php | 2 +- boot.php | 2 +- include/items.php | 6 + util/messages.po | 19534 +++++++++++++++++---------------- 6 files changed, 9798 insertions(+), 9749 deletions(-) diff --git a/Zotlabs/Daemon/Convo.php b/Zotlabs/Daemon/Convo.php index dee2b44f1..cae3c1093 100644 --- a/Zotlabs/Daemon/Convo.php +++ b/Zotlabs/Daemon/Convo.php @@ -10,6 +10,8 @@ class Convo { static public function run($argc,$argv) { + logger('convo invoked: ' . print_r($argv,true)); + if($argc != 4) { killme(); } diff --git a/Zotlabs/Lib/ASCollection.php b/Zotlabs/Lib/ASCollection.php index 67737c054..2865625be 100644 --- a/Zotlabs/Lib/ASCollection.php +++ b/Zotlabs/Lib/ASCollection.php @@ -153,5 +153,6 @@ class ASCollection { $this->nextpage = false; } } + logger('nextpage: ' . $this->nextpage, LOGGER_DEBUG); } } diff --git a/Zotlabs/Lib/Libzotdir.php b/Zotlabs/Lib/Libzotdir.php index 418f03c6c..c402e490d 100644 --- a/Zotlabs/Lib/Libzotdir.php +++ b/Zotlabs/Lib/Libzotdir.php @@ -165,7 +165,7 @@ class Libzotdir { '$header' => t('Directory Options'), '$forumsurl' => $forumsurl, '$safemode' => array('safemode', t('Safe Mode'),$safe_mode,'',array(t('No'), t('Yes')),' onchange=\'window.location.href="' . $forumsurl . '&safe="+(this.checked ? 1 : 0)\''), - '$pubforums' => array('pubforums', t('Public Groups Only'),(($pubforums == 1) ? true : false),'',array(t('No'), t('Yes')),' onchange=\'window.location.href="' . $forumsurl . '&type="+(this.checked ? 1 : 0)\''), + '$pubforums' => array('pubforums', t('Groups Only'),(($pubforums == 1) ? true : false),'',array(t('No'), t('Yes')),' onchange=\'window.location.href="' . $forumsurl . '&type="+(this.checked ? 1 : 0)\''), '$collections' => array('collections', t('Collections Only'),(($pubforums == 2) ? true : false),'',array(t('No'), t('Yes')),' onchange=\'window.location.href="' . $forumsurl . '&type="+(this.checked ? 2 : 0)\''), '$hide_local' => $hide_local, '$globaldir' => array('globaldir', t('This Website Only'), 1-intval($globaldir),'',array(t('No'), t('Yes')),' onchange=\'window.location.href="' . $forumsurl . '&global="+(this.checked ? 0 : 1)\''), diff --git a/boot.php b/boot.php index a382c3cc0..254f0f4fb 100755 --- a/boot.php +++ b/boot.php @@ -16,7 +16,7 @@ use Zotlabs\Daemon\Run; * @brief This file defines some global constants and includes the central App class. */ -define ( 'STD_VERSION', '20.10.19' ); +define ( 'STD_VERSION', '20.10.21' ); define ( 'ZOT_REVISION', '6.0' ); define ( 'DB_UPDATE_VERSION', 1243 ); diff --git a/include/items.php b/include/items.php index d39c8e247..1564efdeb 100644 --- a/include/items.php +++ b/include/items.php @@ -2991,6 +2991,12 @@ function start_delivery_chain($channel, $item, $item_id, $parent, $group = false if($post_id) { Run::Summon([ 'Notifier','tgroup',$post_id ]); } + + q("update channel set channel_lastpost = '%s' where channel_id = %d", + dbesc(datetime_convert()), + intval($channel['channel_id']) + ); + return; } diff --git a/util/messages.po b/util/messages.po index 01362c467..aeb6a4c96 100644 --- a/util/messages.po +++ b/util/messages.po @@ -6,9 +6,9 @@ #, fuzzy msgid "" msgstr "" -"Project-Id-Version: STD_VERSION\n" +"Project-Id-Version: 20.10.21\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-09-26 23:23+0200\n" +"POT-Creation-Date: 2020-10-20 16:25-0700\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,2939 +17,4764 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: ../../view/theme/redbasic/php/config.php:15 -#: ../../Zotlabs/Module/Admin/Site.php:189 ../../include/text.php:3246 -msgid "Default" +#: ../../Zotlabs/Access/PermissionRoles.php:176 +msgid "Social Networking" msgstr "" -#: ../../view/theme/redbasic/php/config.php:16 -#: ../../view/theme/redbasic/php/config.php:19 -msgid "Focus (Hubzilla default)" +#: ../../Zotlabs/Access/PermissionRoles.php:177 +msgid "Social - Normal" msgstr "" -#: ../../view/theme/redbasic/php/config.php:93 -#: ../../extend/addon/zaddons/zotpost/Mod_zotpost.php:81 -#: ../../extend/addon/zaddons/openstreetmap/openstreetmap.php:175 -#: ../../extend/addon/zaddons/nsfw/Mod_Nsfw.php:50 -#: ../../extend/addon/zaddons/faces/faces.php:125 -#: ../../extend/addon/zaddons/faces/Mod_Faces.php:180 -#: ../../extend/addon/zaddons/content_import/Mod_content_import.php:142 -#: ../../extend/addon/zaddons/flashcards/Mod_Flashcards.php:262 -#: ../../extend/addon/zaddons/logrot/logrot.php:36 -#: ../../Zotlabs/Widget/Eventstools.php:16 -#: ../../Zotlabs/Module/Settings/Features.php:59 -#: ../../Zotlabs/Module/Settings/Account.php:104 -#: ../../Zotlabs/Module/Settings/Display.php:181 -#: ../../Zotlabs/Module/Settings/Tokens.php:170 -#: ../../Zotlabs/Module/Settings/Permcats.php:116 -#: ../../Zotlabs/Module/Settings/Oauth.php:88 -#: ../../Zotlabs/Module/Settings/Network.php:41 -#: ../../Zotlabs/Module/Settings/Oauth2.php:105 -#: ../../Zotlabs/Module/Settings/Featured.php:56 -#: ../../Zotlabs/Module/Settings/Channel.php:586 -#: ../../Zotlabs/Module/Events.php:524 ../../Zotlabs/Module/Superblock.php:237 -#: ../../Zotlabs/Module/Editpost.php:94 ../../Zotlabs/Module/Setup.php:321 -#: ../../Zotlabs/Module/Setup.php:364 ../../Zotlabs/Module/Appman.php:144 -#: ../../Zotlabs/Module/Poke.php:215 ../../Zotlabs/Module/Photos.php:1076 -#: ../../Zotlabs/Module/Photos.php:1116 ../../Zotlabs/Module/Photos.php:1234 -#: ../../Zotlabs/Module/Invite.php:165 -#: ../../Zotlabs/Module/Admin/Features.php:66 -#: ../../Zotlabs/Module/Admin/Logs.php:84 -#: ../../Zotlabs/Module/Admin/Channels.php:154 -#: ../../Zotlabs/Module/Admin/Addons.php:436 -#: ../../Zotlabs/Module/Admin/Profs.php:178 -#: ../../Zotlabs/Module/Admin/Account_edit.php:71 -#: ../../Zotlabs/Module/Admin/Security.php:161 -#: ../../Zotlabs/Module/Admin/Site.php:285 -#: ../../Zotlabs/Module/Admin/Themes.php:158 -#: ../../Zotlabs/Module/Admin/Accounts.php:168 -#: ../../Zotlabs/Module/Content_filter.php:66 ../../Zotlabs/Module/Cal.php:350 -#: ../../Zotlabs/Module/Locs.php:124 ../../Zotlabs/Module/Connect.php:91 -#: ../../Zotlabs/Module/Mitem.php:263 ../../Zotlabs/Module/Lists.php:246 -#: ../../Zotlabs/Module/Lists.php:262 ../../Zotlabs/Module/Affinity.php:83 -#: ../../Zotlabs/Module/Finger.php:22 ../../Zotlabs/Module/Zotfinger.php:25 -#: ../../Zotlabs/Module/Import_items.php:125 ../../Zotlabs/Module/Chat.php:203 -#: ../../Zotlabs/Module/Chat.php:240 ../../Zotlabs/Module/Filestorage.php:241 -#: ../../Zotlabs/Module/Expire.php:46 ../../Zotlabs/Module/Defperms.php:239 -#: ../../Zotlabs/Module/Import.php:593 ../../Zotlabs/Module/Ap_probe.php:21 -#: ../../Zotlabs/Module/Profiles.php:721 ../../Zotlabs/Module/Mood.php:156 -#: ../../Zotlabs/Module/Pconfig.php:120 ../../Zotlabs/Module/Sources.php:123 -#: ../../Zotlabs/Module/Sources.php:160 ../../Zotlabs/Module/Connedit.php:830 -#: ../../Zotlabs/Module/Email_validation.php:40 -#: ../../Zotlabs/Module/Pdledit.php:105 ../../Zotlabs/Module/Xchan.php:15 -#: ../../Zotlabs/Module/Thing.php:345 ../../Zotlabs/Module/Thing.php:398 -#: ../../Zotlabs/Lib/ThreadItem.php:903 ../../include/js_strings.php:22 -msgid "Submit" +#: ../../Zotlabs/Access/PermissionRoles.php:178 +msgid "Social - Restricted" msgstr "" -#: ../../view/theme/redbasic/php/config.php:97 -msgid "Theme settings" +#: ../../Zotlabs/Access/PermissionRoles.php:181 +msgid "Community Group" msgstr "" -#: ../../view/theme/redbasic/php/config.php:98 -msgid "Narrow navbar" +#: ../../Zotlabs/Access/PermissionRoles.php:182 +msgid "Group - Normal" msgstr "" -#: ../../view/theme/redbasic/php/config.php:98 ../../boot.php:1657 -#: ../../extend/addon/zaddons/zotpost/Mod_zotpost.php:77 -#: ../../extend/addon/zaddons/content_import/Mod_content_import.php:137 -#: ../../extend/addon/zaddons/content_import/Mod_content_import.php:138 -#: ../../Zotlabs/Storage/Browser.php:424 -#: ../../Zotlabs/Module/Settings/Display.php:94 -#: ../../Zotlabs/Module/Settings/Channel.php:363 -#: ../../Zotlabs/Module/Events.php:501 ../../Zotlabs/Module/Events.php:502 -#: ../../Zotlabs/Module/Events.php:527 ../../Zotlabs/Module/Photos.php:689 -#: ../../Zotlabs/Module/Api.php:99 ../../Zotlabs/Module/Menu.php:165 -#: ../../Zotlabs/Module/Menu.php:224 ../../Zotlabs/Module/Admin/Site.php:251 -#: ../../Zotlabs/Module/Mitem.php:180 ../../Zotlabs/Module/Mitem.php:181 -#: ../../Zotlabs/Module/Mitem.php:260 ../../Zotlabs/Module/Mitem.php:261 -#: ../../Zotlabs/Module/Filestorage.php:236 -#: ../../Zotlabs/Module/Filestorage.php:244 -#: ../../Zotlabs/Module/Defperms.php:171 ../../Zotlabs/Module/Import.php:582 -#: ../../Zotlabs/Module/Import.php:586 ../../Zotlabs/Module/Import.php:587 -#: ../../Zotlabs/Module/Ap_probe.php:20 ../../Zotlabs/Module/Profiles.php:679 -#: ../../Zotlabs/Module/Sources.php:122 ../../Zotlabs/Module/Sources.php:157 -#: ../../Zotlabs/Module/Connedit.php:333 ../../Zotlabs/Module/Connedit.php:725 -#: ../../Zotlabs/Lib/Libzotdir.php:167 ../../Zotlabs/Lib/Libzotdir.php:168 -#: ../../Zotlabs/Lib/Libzotdir.php:169 ../../Zotlabs/Lib/Libzotdir.php:171 -#: ../../include/conversation.php:1426 -msgid "No" +#: ../../Zotlabs/Access/PermissionRoles.php:183 +msgid "Group - Restricted" msgstr "" -#: ../../view/theme/redbasic/php/config.php:98 ../../boot.php:1657 -#: ../../extend/addon/zaddons/zotpost/Mod_zotpost.php:77 -#: ../../extend/addon/zaddons/content_import/Mod_content_import.php:137 -#: ../../extend/addon/zaddons/content_import/Mod_content_import.php:138 -#: ../../Zotlabs/Storage/Browser.php:424 -#: ../../Zotlabs/Module/Settings/Display.php:94 -#: ../../Zotlabs/Module/Settings/Channel.php:363 -#: ../../Zotlabs/Module/Events.php:501 ../../Zotlabs/Module/Events.php:502 -#: ../../Zotlabs/Module/Events.php:527 ../../Zotlabs/Module/Photos.php:689 -#: ../../Zotlabs/Module/Api.php:98 ../../Zotlabs/Module/Menu.php:165 -#: ../../Zotlabs/Module/Menu.php:224 ../../Zotlabs/Module/Admin/Site.php:253 -#: ../../Zotlabs/Module/Mitem.php:180 ../../Zotlabs/Module/Mitem.php:181 -#: ../../Zotlabs/Module/Mitem.php:260 ../../Zotlabs/Module/Mitem.php:261 -#: ../../Zotlabs/Module/Filestorage.php:236 -#: ../../Zotlabs/Module/Filestorage.php:244 -#: ../../Zotlabs/Module/Defperms.php:171 ../../Zotlabs/Module/Import.php:582 -#: ../../Zotlabs/Module/Import.php:586 ../../Zotlabs/Module/Import.php:587 -#: ../../Zotlabs/Module/Ap_probe.php:20 ../../Zotlabs/Module/Profiles.php:679 -#: ../../Zotlabs/Module/Sources.php:122 ../../Zotlabs/Module/Sources.php:157 -#: ../../Zotlabs/Module/Connedit.php:333 ../../Zotlabs/Lib/Libzotdir.php:167 -#: ../../Zotlabs/Lib/Libzotdir.php:168 ../../Zotlabs/Lib/Libzotdir.php:169 -#: ../../Zotlabs/Lib/Libzotdir.php:171 ../../include/conversation.php:1426 -msgid "Yes" +#: ../../Zotlabs/Access/PermissionRoles.php:184 +msgid "Group - Moderated" msgstr "" -#: ../../view/theme/redbasic/php/config.php:99 -msgid "Navigation bar background color" -msgstr "" - -#: ../../view/theme/redbasic/php/config.php:100 -msgid "Navigation bar icon color " -msgstr "" - -#: ../../view/theme/redbasic/php/config.php:101 -msgid "Navigation bar active icon color " -msgstr "" - -#: ../../view/theme/redbasic/php/config.php:102 -msgid "Link color" -msgstr "" - -#: ../../view/theme/redbasic/php/config.php:103 -msgid "Set font-color for banner" -msgstr "" - -#: ../../view/theme/redbasic/php/config.php:104 -msgid "Set the background color" -msgstr "" - -#: ../../view/theme/redbasic/php/config.php:105 -msgid "Set the background image" -msgstr "" - -#: ../../view/theme/redbasic/php/config.php:106 -msgid "Set the background color of items" -msgstr "" - -#: ../../view/theme/redbasic/php/config.php:107 -msgid "Set the background color of comments" -msgstr "" - -#: ../../view/theme/redbasic/php/config.php:108 -msgid "Set font-size for the entire application" -msgstr "" - -#: ../../view/theme/redbasic/php/config.php:108 -msgid "Examples: 1rem, 100%, 16px" -msgstr "" - -#: ../../view/theme/redbasic/php/config.php:109 -msgid "Set font-color for posts and comments" -msgstr "" - -#: ../../view/theme/redbasic/php/config.php:110 -msgid "Set radius of corners" -msgstr "" - -#: ../../view/theme/redbasic/php/config.php:110 -msgid "Example: 4px" -msgstr "" - -#: ../../view/theme/redbasic/php/config.php:111 -msgid "Set shadow depth of photos" -msgstr "" - -#: ../../view/theme/redbasic/php/config.php:112 -msgid "Set maximum width of content region in pixel" -msgstr "" - -#: ../../view/theme/redbasic/php/config.php:112 -msgid "Leave empty for default width" -msgstr "" - -#: ../../view/theme/redbasic/php/config.php:113 -msgid "Set size of conversation author photo" -msgstr "" - -#: ../../view/theme/redbasic/php/config.php:114 -msgid "Set size of followup author photos" -msgstr "" - -#: ../../boot.php:1631 -msgid "Create an account to access services and applications" -msgstr "" - -#: ../../boot.php:1632 ../../Zotlabs/Module/Sites.php:32 -#: ../../Zotlabs/Module/Register.php:299 ../../include/nav.php:155 -msgid "Register" -msgstr "" - -#: ../../boot.php:1651 ../../include/nav.php:102 ../../include/nav.php:131 -#: ../../include/nav.php:150 -msgid "Logout" -msgstr "" - -#: ../../boot.php:1652 ../../Zotlabs/Lib/Apps.php:331 ../../include/nav.php:117 -#: ../../include/nav.php:121 -msgid "Login" -msgstr "" - -#: ../../boot.php:1653 ../../Zotlabs/Module/Rmagic.php:80 -#: ../../include/channel.php:1945 -msgid "Remote Authentication" -msgstr "" - -#: ../../boot.php:1655 -msgid "Login/Email" -msgstr "" - -#: ../../boot.php:1656 -msgid "Password" -msgstr "" - -#: ../../boot.php:1657 -msgid "Remember me" -msgstr "" - -#: ../../boot.php:1660 -msgid "Forgot your password?" -msgstr "" - -#: ../../boot.php:1661 ../../Zotlabs/Module/Lostpass.php:91 -msgid "Password Reset" -msgstr "" - -#: ../../boot.php:2442 -#, php-format -msgid "[$Projectname] Website SSL error for %s" -msgstr "" - -#: ../../boot.php:2447 -msgid "Website SSL certificate is not valid. Please correct." -msgstr "" - -#: ../../boot.php:2491 -#, php-format -msgid "[$Projectname] Cron tasks not running on %s" -msgstr "" - -#: ../../boot.php:2496 -msgid "Cron/Scheduled tasks not running." -msgstr "" - -#: ../../boot.php:2497 ../../include/datetime.php:240 -msgid "never" -msgstr "" - -#: ../../extend/addon/zaddons/zotpost/zotpost.php:40 -msgid "Post to Zot" -msgstr "" - -#: ../../extend/addon/zaddons/zotpost/Mod_zotpost.php:24 -msgid "Channel is required." -msgstr "" - -#: ../../extend/addon/zaddons/zotpost/Mod_zotpost.php:29 -#: ../../Zotlabs/Module/Stream.php:313 -msgid "Invalid channel." -msgstr "" - -#: ../../extend/addon/zaddons/zotpost/Mod_zotpost.php:37 -msgid "Zotpost Settings saved." -msgstr "" - -#: ../../extend/addon/zaddons/zotpost/Mod_zotpost.php:45 -msgid "" -"This addon app allows you to cross-post to other Zot services and channels. " -"After installing the app, select it to configure the destination settings " -"and preferences." -msgstr "" - -#: ../../extend/addon/zaddons/zotpost/Mod_zotpost.php:54 -#: ../../Zotlabs/Lib/Apps.php:363 -msgid "ZotPost" -msgstr "" - -#: ../../extend/addon/zaddons/zotpost/Mod_zotpost.php:65 -msgid "Zot server URL" -msgstr "" - -#: ../../extend/addon/zaddons/zotpost/Mod_zotpost.php:65 -msgid "https://example.com" -msgstr "" - -#: ../../extend/addon/zaddons/zotpost/Mod_zotpost.php:69 -msgid "Zot channel name" -msgstr "" - -#: ../../extend/addon/zaddons/zotpost/Mod_zotpost.php:69 -#: ../../Zotlabs/Module/Connedit.php:819 -msgid "Nickname" -msgstr "" - -#: ../../extend/addon/zaddons/zotpost/Mod_zotpost.php:73 -msgid "Zot password" -msgstr "" - -#: ../../extend/addon/zaddons/zotpost/Mod_zotpost.php:77 -msgid "Send public postings to Zot channel by default" -msgstr "" - -#: ../../extend/addon/zaddons/zotpost/Mod_zotpost.php:81 -msgid "Zotpost Settings" -msgstr "" - -#: ../../extend/addon/zaddons/openstreetmap/openstreetmap.php:152 -msgid "View Larger" -msgstr "" - -#: ../../extend/addon/zaddons/openstreetmap/openstreetmap.php:176 -msgid "Tile Server URL" -msgstr "" - -#: ../../extend/addon/zaddons/openstreetmap/openstreetmap.php:176 -msgid "" -"A list of public tile servers" -msgstr "" - -#: ../../extend/addon/zaddons/openstreetmap/openstreetmap.php:177 -msgid "Nominatim (reverse geocoding) Server URL" -msgstr "" - -#: ../../extend/addon/zaddons/openstreetmap/openstreetmap.php:177 -msgid "" -"A list of Nominatim servers" -msgstr "" - -#: ../../extend/addon/zaddons/openstreetmap/openstreetmap.php:178 -msgid "Default zoom" -msgstr "" - -#: ../../extend/addon/zaddons/openstreetmap/openstreetmap.php:178 -msgid "" -"The default zoom level. (1:world, 18:highest, also depends on tile server)" -msgstr "" - -#: ../../extend/addon/zaddons/openstreetmap/openstreetmap.php:179 -msgid "Include marker on map" -msgstr "" - -#: ../../extend/addon/zaddons/openstreetmap/openstreetmap.php:179 -msgid "Include a marker on the map." -msgstr "" - -#: ../../extend/addon/zaddons/openstreetmap/openstreetmap.php:191 -#: ../../extend/addon/zaddons/faces/faces.php:208 -#: ../../extend/addon/zaddons/logrot/logrot.php:55 -#: ../../Zotlabs/Module/Settings/Channel.php:315 -#: ../../Zotlabs/Module/Defperms.php:94 -msgid "Settings updated." -msgstr "" - -#: ../../extend/addon/zaddons/stream_order/Mod_Stream_Order.php:14 -msgid "" -"This addon app provides a selector on your stream page allowing you to " -"change the sort order of the page between 'recently commented' (default), " -"'posted order', or 'unthreaded' which displays single activities as received." -msgstr "" - -#: ../../extend/addon/zaddons/nsfw/nsfw.php:162 -msgid "Conversation muted" -msgstr "" - -#: ../../extend/addon/zaddons/nsfw/nsfw.php:169 -msgid "Possible adult content" -msgstr "" - -#: ../../extend/addon/zaddons/nsfw/nsfw.php:184 -#, php-format -msgid "%s - view" -msgstr "" - -#: ../../extend/addon/zaddons/nsfw/Mod_Nsfw.php:20 -msgid "NSFW Settings saved." -msgstr "" - -#: ../../extend/addon/zaddons/nsfw/Mod_Nsfw.php:30 -msgid "" -"This addon app looks in posts for the words/text you specify below, and " -"collapses any content containing those keywords so it is not displayed at " -"inappropriate times, such as sexual innuendo that may be improper in a work " -"setting. It is polite and recommended to tag any content containing nudity " -"with #NSFW. This filter can also match any other word/text you specify, and " -"can thereby be used as a general purpose content filter." -msgstr "" - -#: ../../extend/addon/zaddons/nsfw/Mod_Nsfw.php:42 -msgid "Comma separated list of keywords to hide" -msgstr "" - -#: ../../extend/addon/zaddons/nsfw/Mod_Nsfw.php:42 -msgid "Word, /regular-expression/, lang=xx, lang!=xx" -msgstr "" - -#: ../../extend/addon/zaddons/nsfw/Mod_Nsfw.php:50 -msgid "Not Safe For Work Settings" -msgstr "" - -#: ../../extend/addon/zaddons/nsfw/Mod_Nsfw.php:50 -msgid "General Purpose Content Filter" -msgstr "" - -#: ../../extend/addon/zaddons/faces/faces.php:219 -#: ../../Zotlabs/Module/Setup.php:736 -msgid "Errors encountered creating database tables." -msgstr "" - -#: ../../extend/addon/zaddons/faces/faces.php:237 -msgid "Errors encountered deleting all rows of database table " -msgstr "" - -#: ../../extend/addon/zaddons/faces/Mod_Faces.php:58 -#: ../../extend/addon/zaddons/flashcards/Mod_Flashcards.php:51 -msgid "Profile Unavailable." -msgstr "" - -#: ../../extend/addon/zaddons/faces/Mod_Faces.php:172 -#: ../../extend/addon/zaddons/flashcards/Mod_Flashcards.php:254 -#: ../../Zotlabs/Module/Photos.php:694 ../../Zotlabs/Module/Photos.php:1065 -#: ../../Zotlabs/Module/Chat.php:233 ../../Zotlabs/Module/Filestorage.php:226 -#: ../../Zotlabs/Module/Connedit.php:630 ../../Zotlabs/Module/Thing.php:338 -#: ../../Zotlabs/Module/Thing.php:391 ../../include/acl_selectors.php:138 -msgid "Permissions" -msgstr "" - -#: ../../extend/addon/zaddons/faces/Mod_Faces.php:179 -#: ../../extend/addon/zaddons/flashcards/Mod_Flashcards.php:261 -#: ../../Zotlabs/Module/Filestorage.php:235 -msgid "Set/edit permissions" -msgstr "" - -#: ../../extend/addon/zaddons/faces/Mod_Faces.php:1694 -msgid "Face detection is not activated" -msgstr "" - -#: ../../extend/addon/zaddons/faces/Mod_Faces.php:1704 -msgid "Face detection is still busy" -msgstr "" - -#: ../../extend/addon/zaddons/ldapauth/ldapauth.php:72 -msgid "An account has been created for you." -msgstr "" - -#: ../../extend/addon/zaddons/ldapauth/ldapauth.php:79 -msgid "Authentication successful but rejected: account creation is disabled." -msgstr "" - -#: ../../extend/addon/zaddons/gallery/gallery.php:46 -#: ../../extend/addon/zaddons/gallery/Mod_Gallery.php:137 -#: ../../Zotlabs/Lib/Apps.php:373 -msgid "Gallery" -msgstr "" - -#: ../../extend/addon/zaddons/gallery/gallery.php:49 -msgid "Photo Gallery" -msgstr "" - -#: ../../extend/addon/zaddons/gallery/Mod_Gallery.php:50 -#: ../../Zotlabs/Module/Editwebpage.php:36 ../../Zotlabs/Module/Menu.php:94 -#: ../../Zotlabs/Module/Connect.php:19 ../../Zotlabs/Module/Editblock.php:35 -#: ../../Zotlabs/Module/Hcard.php:15 ../../Zotlabs/Module/Editlayout.php:35 -#: ../../Zotlabs/Module/Webpages.php:40 ../../Zotlabs/Module/Cards.php:38 -#: ../../Zotlabs/Module/Blocks.php:37 ../../Zotlabs/Module/Layouts.php:37 -#: ../../Zotlabs/Module/Profile.php:27 ../../Zotlabs/Lib/Libprofile.php:90 -msgid "Requested profile is not available." -msgstr "" - -#: ../../extend/addon/zaddons/gallery/Mod_Gallery.php:59 -msgid "Gallery App" -msgstr "" - -#: ../../extend/addon/zaddons/gallery/Mod_Gallery.php:59 -#: ../../Zotlabs/Module/Cdav.php:882 -msgid "Not Installed" -msgstr "" - -#: ../../extend/addon/zaddons/gallery/Mod_Gallery.php:60 -msgid "A simple gallery for your photo albums" -msgstr "" - -#: ../../extend/addon/zaddons/rainbowtag/Mod_Rainbowtag.php:15 -msgid "Add some colour to tag clouds" -msgstr "" - -#: ../../extend/addon/zaddons/rainbowtag/Mod_Rainbowtag.php:34 -msgid "Rainbow Tag" -msgstr "" - -#: ../../extend/addon/zaddons/content_import/Mod_content_import.php:27 -msgid "No server specified" -msgstr "" - -#: ../../extend/addon/zaddons/content_import/Mod_content_import.php:73 -msgid "Posts imported" -msgstr "" - -#: ../../extend/addon/zaddons/content_import/Mod_content_import.php:113 -msgid "Files imported" -msgstr "" - -#: ../../extend/addon/zaddons/content_import/Mod_content_import.php:122 -msgid "" -"This addon app copies existing content and file storage to a cloned/copied " -"channel. Once the app is installed, visit the newly installed app. This will " -"allow you to set the location of your original channel and an optional date " -"range of files/conversations to copy." -msgstr "" - -#: ../../extend/addon/zaddons/content_import/Mod_content_import.php:135 -#: ../../Zotlabs/Lib/Apps.php:321 ../../Zotlabs/Lib/Apps.php:325 -msgid "Content Import" -msgstr "" - -#: ../../extend/addon/zaddons/content_import/Mod_content_import.php:136 -msgid "" -"This will import all your conversations and cloud files from a cloned " -"channel on another server. This may take a while if you have lots of posts " -"and or files." -msgstr "" - -#: ../../extend/addon/zaddons/content_import/Mod_content_import.php:137 -msgid "Include posts" -msgstr "" - -#: ../../extend/addon/zaddons/content_import/Mod_content_import.php:137 -msgid "Conversations, Articles, Cards, and other posted content" -msgstr "" - -#: ../../extend/addon/zaddons/content_import/Mod_content_import.php:138 -msgid "Include files" -msgstr "" - -#: ../../extend/addon/zaddons/content_import/Mod_content_import.php:138 -msgid "Files, Photos and other cloud storage" -msgstr "" - -#: ../../extend/addon/zaddons/content_import/Mod_content_import.php:139 -msgid "Original Server base URL" -msgstr "" - -#: ../../extend/addon/zaddons/content_import/Mod_content_import.php:140 -msgid "Since modified date yyyy-mm-dd" -msgstr "" - -#: ../../extend/addon/zaddons/content_import/Mod_content_import.php:141 -msgid "Until modified date yyyy-mm-dd" -msgstr "" - -#: ../../extend/addon/zaddons/flashcards/Mod_Flashcards.php:218 -msgid "Not allowed." -msgstr "" - -#: ../../extend/addon/zaddons/flashcards/Mod_Flashcards.php:284 -#: ../../extend/addon/zaddons/flashcards/Mod_Flashcards.php:285 -#: ../../Zotlabs/Module/Admin.php:82 ../../Zotlabs/Module/Admin/Addons.php:257 -#: ../../Zotlabs/Module/Admin/Themes.php:72 ../../Zotlabs/Module/Display.php:50 -#: ../../Zotlabs/Module/Display.php:491 ../../Zotlabs/Module/Inspect.php:33 -#: ../../Zotlabs/Module/Filestorage.php:34 ../../Zotlabs/Module/Viewsrc.php:27 -#: ../../Zotlabs/Module/Thing.php:101 ../../include/items.php:3457 -msgid "Item not found." -msgstr "" - -#: ../../extend/addon/zaddons/logrot/logrot.php:37 -msgid "Logfile archive directory" -msgstr "" - -#: ../../extend/addon/zaddons/logrot/logrot.php:37 -msgid "Directory to store rotated logs" -msgstr "" - -#: ../../extend/addon/zaddons/logrot/logrot.php:38 -msgid "Logfile size in bytes before rotating, example 10M" -msgstr "" - -#: ../../extend/addon/zaddons/logrot/logrot.php:39 -msgid "Number of logfiles to retain" -msgstr "" - -#: ../../Zotlabs/Storage/Browser.php:113 ../../Zotlabs/Storage/Browser.php:306 -msgid "parent" -msgstr "" - -#: ../../Zotlabs/Storage/Browser.php:141 ../../Zotlabs/Module/Manage.php:73 -#: ../../Zotlabs/Module/Manage.php:170 ../../Zotlabs/Module/Directory.php:375 -#: ../../Zotlabs/Access/PermissionRoles.php:187 ../../include/text.php:2976 +#: ../../Zotlabs/Access/PermissionRoles.php:187 +#: ../../Zotlabs/Module/Manage.php:73 ../../Zotlabs/Module/Manage.php:170 +#: ../../Zotlabs/Module/Directory.php:375 ../../Zotlabs/Storage/Browser.php:141 +#: ../../include/text.php:2976 msgid "Collection" msgstr "" -#: ../../Zotlabs/Storage/Browser.php:144 -msgid "Principal" +#: ../../Zotlabs/Access/PermissionRoles.php:188 +msgid "Collection - Normal" msgstr "" -#: ../../Zotlabs/Storage/Browser.php:147 -msgid "Addressbook" +#: ../../Zotlabs/Access/PermissionRoles.php:189 +msgid "Collection - Restricted" msgstr "" -#: ../../Zotlabs/Storage/Browser.php:150 ../../Zotlabs/Lib/Apps.php:316 -#: ../../include/nav.php:427 ../../include/nav.php:430 -msgid "Calendar" +#: ../../Zotlabs/Access/Permissions.php:56 +msgid "Grant viewing access to and delivery of your channel stream and posts" msgstr "" -#: ../../Zotlabs/Storage/Browser.php:153 -msgid "Schedule Inbox" +#: ../../Zotlabs/Access/Permissions.php:57 +msgid "Grant viewing access to your default channel profile" msgstr "" -#: ../../Zotlabs/Storage/Browser.php:156 -msgid "Schedule Outbox" +#: ../../Zotlabs/Access/Permissions.php:58 +msgid "Grant viewing access to your address book (connections)" msgstr "" -#: ../../Zotlabs/Storage/Browser.php:175 ../../Zotlabs/Widget/Album.php:88 -#: ../../Zotlabs/Widget/Portfolio.php:95 ../../Zotlabs/Module/Photos.php:813 -#: ../../Zotlabs/Module/Photos.php:1263 ../../Zotlabs/Module/Cdav.php:853 -#: ../../Zotlabs/Module/Cdav.php:854 ../../Zotlabs/Module/Cdav.php:861 -#: ../../Zotlabs/Module/Embedphotos.php:216 ../../Zotlabs/Lib/Activity.php:1686 -#: ../../Zotlabs/Lib/Apps.php:1075 ../../Zotlabs/Lib/Apps.php:1164 -#: ../../include/conversation.php:1149 -msgid "Unknown" +#: ../../Zotlabs/Access/Permissions.php:59 +msgid "Grant viewing access to your file storage and photos" msgstr "" -#: ../../Zotlabs/Storage/Browser.php:289 ../../Zotlabs/Module/Fbrowser.php:82 -#: ../../Zotlabs/Lib/Apps.php:338 ../../include/nav.php:416 -#: ../../include/conversation.php:1954 -msgid "Files" +#: ../../Zotlabs/Access/Permissions.php:60 +msgid "Grant permission to post on your channel (wall) page" msgstr "" -#: ../../Zotlabs/Storage/Browser.php:290 -msgid "Total" +#: ../../Zotlabs/Access/Permissions.php:61 +msgid "Accept delivery of their posts and all comments to their posts" msgstr "" -#: ../../Zotlabs/Storage/Browser.php:292 -msgid "Shared" +#: ../../Zotlabs/Access/Permissions.php:62 +msgid "Accept delivery of their comments and likes on your posts" msgstr "" -#: ../../Zotlabs/Storage/Browser.php:293 ../../Zotlabs/Storage/Browser.php:409 -#: ../../Zotlabs/Widget/Cdav.php:140 ../../Zotlabs/Widget/Cdav.php:178 -#: ../../Zotlabs/Module/Menu.php:184 ../../Zotlabs/Module/Cdav.php:1056 -#: ../../Zotlabs/Module/Cdav.php:1364 ../../Zotlabs/Module/New_channel.php:196 -#: ../../Zotlabs/Module/Webpages.php:255 ../../Zotlabs/Module/Cards.php:110 -#: ../../Zotlabs/Module/Profiles.php:800 ../../Zotlabs/Module/Blocks.php:163 -#: ../../Zotlabs/Module/Layouts.php:191 ../../Zotlabs/Module/Connedit.php:864 -msgid "Create" +#: ../../Zotlabs/Access/Permissions.php:63 +msgid "Grant upload permissions to your file storage and photos" msgstr "" -#: ../../Zotlabs/Storage/Browser.php:294 -msgid "Add Files" +#: ../../Zotlabs/Access/Permissions.php:64 +msgid "Grant permission to republish/mirror your posts" msgstr "" -#: ../../Zotlabs/Storage/Browser.php:297 ../../Zotlabs/Lib/ThreadItem.php:159 -msgid "Admin Delete" +#: ../../Zotlabs/Access/Permissions.php:65 +msgid "Accept comments and wall posts only after approval (moderation)" msgstr "" -#: ../../Zotlabs/Storage/Browser.php:302 -#: ../../Zotlabs/Widget/Activity_filter.php:257 -#: ../../Zotlabs/Module/Settings/Oauth.php:90 -#: ../../Zotlabs/Module/Settings/Oauth.php:116 -#: ../../Zotlabs/Module/Settings/Oauth2.php:107 -#: ../../Zotlabs/Module/Settings/Oauth2.php:136 -#: ../../Zotlabs/Module/Admin/Channels.php:166 -#: ../../Zotlabs/Module/Cdav.php:1349 ../../Zotlabs/Module/Connections.php:231 -#: ../../Zotlabs/Module/Lists.php:250 ../../Zotlabs/Module/Chat.php:249 -#: ../../Zotlabs/Module/Sharedwithme.php:104 -#: ../../Zotlabs/Module/Connedit.php:849 -msgid "Name" +#: ../../Zotlabs/Access/Permissions.php:66 +msgid "Grant channel administration (delegation) permission" msgstr "" -#: ../../Zotlabs/Storage/Browser.php:303 -msgid "Type" +#: ../../Zotlabs/Lib/Chatroom.php:25 +msgid "Missing room name" msgstr "" -#: ../../Zotlabs/Storage/Browser.php:304 -#: ../../Zotlabs/Module/Sharedwithme.php:106 ../../include/text.php:1396 -msgid "Size" +#: ../../Zotlabs/Lib/Chatroom.php:34 +msgid "Duplicate room name" msgstr "" -#: ../../Zotlabs/Storage/Browser.php:305 -#: ../../Zotlabs/Module/Sharedwithme.php:107 -msgid "Last Modified" +#: ../../Zotlabs/Lib/Chatroom.php:84 ../../Zotlabs/Lib/Chatroom.php:92 +msgid "Invalid room specifier." msgstr "" -#: ../../Zotlabs/Storage/Browser.php:307 ../../Zotlabs/Widget/Cdav.php:138 -#: ../../Zotlabs/Widget/Cdav.php:175 ../../Zotlabs/Module/Editwebpage.php:146 -#: ../../Zotlabs/Module/Settings/Oauth.php:150 -#: ../../Zotlabs/Module/Settings/Oauth2.php:196 -#: ../../Zotlabs/Module/Menu.php:178 ../../Zotlabs/Module/Admin/Profs.php:175 -#: ../../Zotlabs/Module/Connections.php:315 -#: ../../Zotlabs/Module/Connections.php:354 -#: ../../Zotlabs/Module/Connections.php:377 ../../Zotlabs/Module/Lists.php:340 -#: ../../Zotlabs/Module/Editblock.php:118 -#: ../../Zotlabs/Module/Editlayout.php:118 -#: ../../Zotlabs/Module/Webpages.php:256 ../../Zotlabs/Module/Card_edit.php:101 -#: ../../Zotlabs/Module/Blocks.php:164 ../../Zotlabs/Module/Layouts.php:199 -#: ../../Zotlabs/Module/Thing.php:285 ../../Zotlabs/Lib/Libprofile.php:189 -#: ../../Zotlabs/Lib/Libprofile.php:193 ../../Zotlabs/Lib/Apps.php:577 -#: ../../Zotlabs/Lib/ThreadItem.php:129 ../../include/menu.php:121 -msgid "Edit" -msgstr "" - -#: ../../Zotlabs/Storage/Browser.php:308 -#: ../../Zotlabs/Module/Editwebpage.php:171 -#: ../../Zotlabs/Module/Settings/Oauth.php:151 -#: ../../Zotlabs/Module/Settings/Oauth2.php:197 -#: ../../Zotlabs/Module/Photos.php:1197 -#: ../../Zotlabs/Module/Admin/Channels.php:156 -#: ../../Zotlabs/Module/Admin/Profs.php:176 -#: ../../Zotlabs/Module/Admin/Accounts.php:175 -#: ../../Zotlabs/Module/Cdav.php:1053 ../../Zotlabs/Module/Cdav.php:1366 -#: ../../Zotlabs/Module/Connections.php:323 -#: ../../Zotlabs/Module/Editblock.php:143 -#: ../../Zotlabs/Module/Editlayout.php:142 -#: ../../Zotlabs/Module/Webpages.php:258 ../../Zotlabs/Module/Profiles.php:802 -#: ../../Zotlabs/Module/Card_edit.php:131 ../../Zotlabs/Module/Blocks.php:166 -#: ../../Zotlabs/Module/Connedit.php:608 ../../Zotlabs/Module/Connedit.php:866 -#: ../../Zotlabs/Module/Thing.php:286 ../../Zotlabs/Lib/Apps.php:578 -#: ../../Zotlabs/Lib/ThreadItem.php:155 ../../include/conversation.php:696 -#: ../../include/conversation.php:744 -msgid "Delete" -msgstr "" - -#: ../../Zotlabs/Storage/Browser.php:381 -#, php-format -msgid "You are using %1$s of your available file storage." -msgstr "" - -#: ../../Zotlabs/Storage/Browser.php:385 -#, php-format -msgid "You are using %1$s of %2$s available file storage. (%3$s%)" -msgstr "" - -#: ../../Zotlabs/Storage/Browser.php:396 -msgid "WARNING:" -msgstr "" - -#: ../../Zotlabs/Storage/Browser.php:408 -msgid "Create new folder" -msgstr "" - -#: ../../Zotlabs/Storage/Browser.php:410 -msgid "Upload file" -msgstr "" - -#: ../../Zotlabs/Storage/Browser.php:411 ../../Zotlabs/Widget/Cdav.php:146 -#: ../../Zotlabs/Widget/Cdav.php:182 ../../Zotlabs/Widget/Album.php:101 -#: ../../Zotlabs/Widget/Portfolio.php:110 ../../Zotlabs/Module/Photos.php:704 -#: ../../Zotlabs/Module/Admin/Profile_photo.php:465 -#: ../../Zotlabs/Module/Admin/Cover_photo.php:374 -#: ../../Zotlabs/Module/Profile_photo.php:503 -#: ../../Zotlabs/Module/Embedphotos.php:227 -#: ../../Zotlabs/Module/Cover_photo.php:425 -msgid "Upload" -msgstr "" - -#: ../../Zotlabs/Storage/Browser.php:423 -msgid "Drop files here to immediately upload" -msgstr "" - -#: ../../Zotlabs/Storage/Browser.php:424 -#: ../../Zotlabs/Module/Filestorage.php:244 -msgid "Show in your contacts shared folder" -msgstr "" - -#: ../../Zotlabs/Widget/Chatroom_list.php:16 ../../Zotlabs/Lib/Apps.php:324 -#: ../../include/nav.php:441 ../../include/nav.php:444 -#: ../../include/conversation.php:1979 ../../include/conversation.php:1982 -msgid "Chatrooms" -msgstr "" - -#: ../../Zotlabs/Widget/Chatroom_list.php:20 -msgid "Overview" -msgstr "" - -#: ../../Zotlabs/Widget/Categories.php:75 -#: ../../Zotlabs/Widget/Categories.php:119 -#: ../../Zotlabs/Widget/Categories.php:166 -#: ../../Zotlabs/Widget/Appcategories.php:43 ../../Zotlabs/Module/Cdav.php:1066 -#: ../../Zotlabs/Lib/Apps.php:317 ../../include/taxonomy.php:419 -#: ../../include/taxonomy.php:505 ../../include/taxonomy.php:525 -#: ../../include/taxonomy.php:546 -msgid "Categories" -msgstr "" - -#: ../../Zotlabs/Widget/Categories.php:78 -#: ../../Zotlabs/Widget/Categories.php:122 -#: ../../Zotlabs/Widget/Categories.php:169 -#: ../../Zotlabs/Widget/Appcategories.php:46 ../../Zotlabs/Widget/Filer.php:31 -msgid "Everything" -msgstr "" - -#: ../../Zotlabs/Widget/Suggestions.php:47 ../../Zotlabs/Widget/Follow.php:36 -#: ../../Zotlabs/Module/Directory.php:373 ../../Zotlabs/Lib/Libprofile.php:270 -#: ../../include/connections.php:132 ../../include/conversation.php:1051 -msgid "Connect" -msgstr "" - -#: ../../Zotlabs/Widget/Suggestions.php:49 -msgid "Ignore/Hide" -msgstr "" - -#: ../../Zotlabs/Widget/Suggestions.php:54 -msgid "Suggestions" -msgstr "" - -#: ../../Zotlabs/Widget/Suggestions.php:55 -msgid "See more..." -msgstr "" - -#: ../../Zotlabs/Widget/Photo_rand.php:58 ../../Zotlabs/Widget/Photo.php:48 -msgid "photo/image" -msgstr "" - -#: ../../Zotlabs/Widget/Rating.php:51 -msgid "Rating Tools" -msgstr "" - -#: ../../Zotlabs/Widget/Rating.php:55 ../../Zotlabs/Widget/Rating.php:57 -msgid "Rate Me" -msgstr "" - -#: ../../Zotlabs/Widget/Rating.php:60 -msgid "View Ratings" -msgstr "" - -#: ../../Zotlabs/Widget/Admin.php:22 ../../Zotlabs/Module/Admin/Site.php:284 -msgid "Site" -msgstr "" - -#: ../../Zotlabs/Widget/Admin.php:23 -msgid "Site icon/logo" -msgstr "" - -#: ../../Zotlabs/Widget/Admin.php:24 -msgid "Site photo" -msgstr "" - -#: ../../Zotlabs/Widget/Admin.php:25 ../../Zotlabs/Module/Admin.php:116 -#: ../../Zotlabs/Module/Admin/Accounts.php:167 -#: ../../Zotlabs/Module/Admin/Accounts.php:180 -msgid "Accounts" -msgstr "" - -#: ../../Zotlabs/Widget/Admin.php:25 ../../Zotlabs/Widget/Admin.php:62 -msgid "Member registrations waiting for confirmation" -msgstr "" - -#: ../../Zotlabs/Widget/Admin.php:26 ../../Zotlabs/Module/Admin.php:134 -#: ../../Zotlabs/Module/Admin/Channels.php:153 -#: ../../Zotlabs/Module/Manage.php:180 ../../include/nav.php:88 -msgid "Channels" -msgstr "" - -#: ../../Zotlabs/Widget/Admin.php:27 -#: ../../Zotlabs/Module/Admin/Security.php:129 -msgid "Security" -msgstr "" - -#: ../../Zotlabs/Widget/Admin.php:29 ../../Zotlabs/Module/Admin/Addons.php:340 -#: ../../Zotlabs/Module/Admin/Addons.php:435 -msgid "Addons" -msgstr "" - -#: ../../Zotlabs/Widget/Admin.php:30 ../../Zotlabs/Module/Admin/Themes.php:123 -#: ../../Zotlabs/Module/Admin/Themes.php:157 -msgid "Themes" -msgstr "" - -#: ../../Zotlabs/Widget/Admin.php:31 -msgid "Inspect queue" -msgstr "" - -#: ../../Zotlabs/Widget/Admin.php:33 -msgid "DB updates" -msgstr "" - -#: ../../Zotlabs/Widget/Admin.php:50 ../../Zotlabs/Widget/Admin.php:60 -#: ../../Zotlabs/Module/Admin/Logs.php:83 -msgid "Logs" -msgstr "" - -#: ../../Zotlabs/Widget/Admin.php:57 ../../include/nav.php:180 -msgid "Admin" -msgstr "" - -#: ../../Zotlabs/Widget/Admin.php:58 -msgid "Addon Features" -msgstr "" - -#: ../../Zotlabs/Widget/Sblock.php:16 -msgid "Block channel or site" -msgstr "" - -#: ../../Zotlabs/Widget/Sblock.php:17 -msgid "Enter channel address or URL" -msgstr "" - -#: ../../Zotlabs/Widget/Sblock.php:18 ../../Zotlabs/Widget/Follow.php:35 -msgid "Examples: bob@example.com, https://example.com/barbara" -msgstr "" - -#: ../../Zotlabs/Widget/Sblock.php:19 -#: ../../Zotlabs/Module/Admin/Accounts.php:176 -#: ../../Zotlabs/Module/Connedit.php:568 -msgid "Block" -msgstr "" - -#: ../../Zotlabs/Widget/Cdav.php:37 -msgid "Select Channel" -msgstr "" - -#: ../../Zotlabs/Widget/Cdav.php:42 -msgid "Read-write" -msgstr "" - -#: ../../Zotlabs/Widget/Cdav.php:43 -msgid "Read-only" -msgstr "" - -#: ../../Zotlabs/Widget/Cdav.php:127 -msgid "Channel Calendar" -msgstr "" - -#: ../../Zotlabs/Widget/Cdav.php:129 ../../Zotlabs/Widget/Cdav.php:143 -#: ../../Zotlabs/Module/Cdav.php:1052 -msgid "CalDAV Calendars" -msgstr "" - -#: ../../Zotlabs/Widget/Cdav.php:131 -msgid "Shared CalDAV Calendars" -msgstr "" - -#: ../../Zotlabs/Widget/Cdav.php:135 -msgid "Share this calendar" -msgstr "" - -#: ../../Zotlabs/Widget/Cdav.php:136 ../../Zotlabs/Module/Photos.php:1096 -#: ../../Zotlabs/Module/Webpages.php:257 ../../Zotlabs/Module/Blocks.php:165 -#: ../../Zotlabs/Module/Layouts.php:200 ../../include/conversation.php:1392 -msgid "Share" -msgstr "" - -#: ../../Zotlabs/Widget/Cdav.php:137 -msgid "Calendar name and color" -msgstr "" - -#: ../../Zotlabs/Widget/Cdav.php:139 -msgid "Create new CalDAV calendar" -msgstr "" - -#: ../../Zotlabs/Widget/Cdav.php:141 -msgid "Calendar Name" -msgstr "" - -#: ../../Zotlabs/Widget/Cdav.php:142 -msgid "Calendar Tools" -msgstr "" - -#: ../../Zotlabs/Widget/Cdav.php:143 ../../Zotlabs/Module/Cdav.php:1052 -msgid "Channel Calendars" -msgstr "" - -#: ../../Zotlabs/Widget/Cdav.php:144 -msgid "Import calendar" -msgstr "" - -#: ../../Zotlabs/Widget/Cdav.php:145 -msgid "Select a calendar to import to" -msgstr "" - -#: ../../Zotlabs/Widget/Cdav.php:172 -msgid "Addressbooks" -msgstr "" - -#: ../../Zotlabs/Widget/Cdav.php:174 -msgid "Addressbook name" -msgstr "" - -#: ../../Zotlabs/Widget/Cdav.php:176 -msgid "Create new addressbook" -msgstr "" - -#: ../../Zotlabs/Widget/Cdav.php:177 -msgid "Addressbook Name" -msgstr "" - -#: ../../Zotlabs/Widget/Cdav.php:179 -msgid "Addressbook Tools" -msgstr "" - -#: ../../Zotlabs/Widget/Cdav.php:180 -msgid "Import addressbook" -msgstr "" - -#: ../../Zotlabs/Widget/Cdav.php:181 -msgid "Select an addressbook to import to" -msgstr "" - -#: ../../Zotlabs/Widget/Groups.php:107 -#: ../../Zotlabs/Widget/Activity_filter.php:135 -#: ../../Zotlabs/Widget/Notifications.php:105 -#: ../../Zotlabs/Widget/Notifications.php:106 -msgid "Groups" -msgstr "" - -#: ../../Zotlabs/Widget/Archive.php:43 -msgid "Archives" -msgstr "" - -#: ../../Zotlabs/Widget/Affinity.php:24 ../../Zotlabs/Module/Affinity.php:58 -#: ../../Zotlabs/Module/Connedit.php:663 -msgid "Me" -msgstr "" - -#: ../../Zotlabs/Widget/Affinity.php:25 ../../Zotlabs/Module/Affinity.php:59 -#: ../../Zotlabs/Module/Connedit.php:664 -msgid "Family" -msgstr "" - -#: ../../Zotlabs/Widget/Affinity.php:26 -#: ../../Zotlabs/Module/Settings/Channel.php:74 -#: ../../Zotlabs/Module/Settings/Channel.php:78 -#: ../../Zotlabs/Module/Settings/Channel.php:79 -#: ../../Zotlabs/Module/Settings/Channel.php:82 -#: ../../Zotlabs/Module/Settings/Channel.php:93 -#: ../../Zotlabs/Module/Affinity.php:60 ../../Zotlabs/Module/Profiles.php:1040 -#: ../../Zotlabs/Module/Connedit.php:665 ../../include/channel.php:440 -#: ../../include/channel.php:441 ../../include/channel.php:448 -msgid "Friends" -msgstr "" - -#: ../../Zotlabs/Widget/Affinity.php:27 ../../Zotlabs/Module/Affinity.php:61 -#: ../../Zotlabs/Module/Connedit.php:666 -msgid "Peers" -msgstr "" - -#: ../../Zotlabs/Widget/Affinity.php:28 -#: ../../Zotlabs/Module/Connections.php:366 -#: ../../Zotlabs/Module/Affinity.php:62 ../../Zotlabs/Module/Connedit.php:667 -#: ../../Zotlabs/Lib/Apps.php:326 ../../include/connections.php:892 -msgid "Connections" -msgstr "" - -#: ../../Zotlabs/Widget/Affinity.php:29 ../../Zotlabs/Module/Connections.php:85 -#: ../../Zotlabs/Module/Connections.php:108 -#: ../../Zotlabs/Module/Affinity.php:63 ../../Zotlabs/Module/Connedit.php:668 -msgid "All" -msgstr "" - -#: ../../Zotlabs/Widget/Affinity.php:37 -msgid "Friend zoom in/out" -msgstr "" - -#: ../../Zotlabs/Widget/Affinity.php:38 ../../Zotlabs/Module/Affinity.php:72 -msgid "Refresh" -msgstr "" - -#: ../../Zotlabs/Widget/Bookmarkedchats.php:24 -msgid "Bookmarked Chatrooms" -msgstr "" - -#: ../../Zotlabs/Widget/Newmember.php:29 -msgid "Profile Creation" -msgstr "" - -#: ../../Zotlabs/Widget/Newmember.php:31 -msgid "Upload profile photo" -msgstr "" - -#: ../../Zotlabs/Widget/Newmember.php:32 -msgid "Upload cover photo" -msgstr "" - -#: ../../Zotlabs/Widget/Newmember.php:33 ../../include/nav.php:110 -msgid "Edit your profile" -msgstr "" - -#: ../../Zotlabs/Widget/Newmember.php:36 -msgid "Find and Connect with others" -msgstr "" - -#: ../../Zotlabs/Widget/Newmember.php:38 -msgid "View the directory" -msgstr "" - -#: ../../Zotlabs/Widget/Newmember.php:39 -msgid "View friend suggestions" -msgstr "" - -#: ../../Zotlabs/Widget/Newmember.php:40 -msgid "Manage your connections" -msgstr "" - -#: ../../Zotlabs/Widget/Newmember.php:43 -msgid "Communicate" -msgstr "" - -#: ../../Zotlabs/Widget/Newmember.php:45 -msgid "View your channel homepage" -msgstr "" - -#: ../../Zotlabs/Widget/Newmember.php:46 -msgid "View your stream" -msgstr "" - -#: ../../Zotlabs/Widget/Newmember.php:49 -#: ../../Zotlabs/Module/Settings/Channel.php:696 -#: ../../Zotlabs/Module/Profiles.php:734 ../../include/datetime.php:58 -msgid "Miscellaneous" -msgstr "" - -#: ../../Zotlabs/Widget/Newmember.php:51 -#: ../../Zotlabs/Widget/Settings_menu.php:129 -#: ../../Zotlabs/Module/Admin/Addons.php:342 -#: ../../Zotlabs/Module/Admin/Themes.php:125 ../../Zotlabs/Lib/Apps.php:336 -#: ../../include/nav.php:93 -msgid "Settings" -msgstr "" - -#: ../../Zotlabs/Widget/Newmember.php:62 -msgid "View public stream" -msgstr "" - -#: ../../Zotlabs/Widget/Newmember.php:66 ../../include/features.php:60 -msgid "New Member Links" -msgstr "" - -#: ../../Zotlabs/Widget/Settings_menu.php:38 -msgid "Account settings" -msgstr "" - -#: ../../Zotlabs/Widget/Settings_menu.php:44 -msgid "Channel settings" -msgstr "" - -#: ../../Zotlabs/Widget/Settings_menu.php:52 -msgid "Display settings" -msgstr "" - -#: ../../Zotlabs/Widget/Settings_menu.php:58 -#: ../../Zotlabs/Module/Superblock.php:237 -msgid "Manage Blocks" -msgstr "" - -#: ../../Zotlabs/Widget/Settings_menu.php:66 -msgid "Manage locations" -msgstr "" - -#: ../../Zotlabs/Widget/Settings_menu.php:73 -msgid "Export channel" -msgstr "" - -#: ../../Zotlabs/Widget/Settings_menu.php:80 -msgid "OAuth1 apps" -msgstr "" - -#: ../../Zotlabs/Widget/Settings_menu.php:88 -msgid "Client apps" -msgstr "" - -#: ../../Zotlabs/Widget/Settings_menu.php:96 -#: ../../Zotlabs/Module/Settings/Tokens.php:151 -msgid "Guest Access Tokens" -msgstr "" - -#: ../../Zotlabs/Widget/Settings_menu.php:104 -#: ../../Zotlabs/Module/Settings/Permcats.php:100 -#: ../../Zotlabs/Lib/Apps.php:379 -msgid "Permission Categories" -msgstr "" - -#: ../../Zotlabs/Widget/Settings_menu.php:113 -#: ../../Zotlabs/Module/Defperms.php:228 ../../Zotlabs/Module/Connedit.php:792 -msgid "Connection Default Permissions" -msgstr "" - -#: ../../Zotlabs/Widget/Settings_menu.php:121 -#: ../../Zotlabs/Module/Sources.php:105 ../../Zotlabs/Lib/Apps.php:372 -msgid "Channel Sources" -msgstr "" - -#: ../../Zotlabs/Widget/Sitesearch.php:31 -#: ../../Zotlabs/Module/Connections.php:373 ../../Zotlabs/Module/Search.php:47 -#: ../../Zotlabs/Lib/Apps.php:354 ../../include/nav.php:174 -#: ../../include/text.php:974 ../../include/text.php:986 -#: ../../include/acl_selectors.php:133 -msgid "Search" -msgstr "" - -#: ../../Zotlabs/Widget/Site_projects.php:30 -msgid "Projects" -msgstr "" - -#: ../../Zotlabs/Widget/Site_projects.php:32 -msgid "All projects" -msgstr "" - -#: ../../Zotlabs/Widget/Suggestedchats.php:32 -msgid "Suggested Chatrooms" -msgstr "" - -#: ../../Zotlabs/Widget/Filer.php:28 -#: ../../Zotlabs/Widget/Activity_filter.php:199 ../../include/features.php:492 -msgid "Saved Folders" -msgstr "" - -#: ../../Zotlabs/Widget/Findpeople.php:18 -#, php-format -msgid "%d invitation available" -msgid_plural "%d invitations available" -msgstr[0] "" -msgstr[1] "" - -#: ../../Zotlabs/Widget/Findpeople.php:23 -#: ../../Zotlabs/Module/Admin/Site.php:290 -msgid "Advanced" -msgstr "" - -#: ../../Zotlabs/Widget/Findpeople.php:26 -msgid "Find Channels" -msgstr "" - -#: ../../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:30 -#: ../../Zotlabs/Module/Connections.php:376 -#: ../../Zotlabs/Module/Directory.php:438 -#: ../../Zotlabs/Module/Directory.php:443 -msgid "Find" -msgstr "" - -#: ../../Zotlabs/Widget/Findpeople.php:31 -#: ../../Zotlabs/Module/Directory.php:442 -msgid "Channel Suggestions" -msgstr "" - -#: ../../Zotlabs/Widget/Findpeople.php:34 -msgid "Affiliated sites" -msgstr "" - -#: ../../Zotlabs/Widget/Findpeople.php:37 -msgid "Advanced example: name=fred and country=iceland" -msgstr "" - -#: ../../Zotlabs/Widget/Activity.php:58 -msgctxt "widget" -msgid "Activity" -msgstr "" - -#: ../../Zotlabs/Widget/Hq_controls.php:14 -msgid "HQ Control Panel" -msgstr "" - -#: ../../Zotlabs/Widget/Hq_controls.php:17 -msgid "Create a new post" -msgstr "" - -#: ../../Zotlabs/Widget/Tasklist.php:26 ../../Zotlabs/Lib/Apps.php:346 -msgid "Tasks" -msgstr "" - -#: ../../Zotlabs/Widget/Savedsearch.php:75 -msgid "Remove term" -msgstr "" - -#: ../../Zotlabs/Widget/Savedsearch.php:83 -#: ../../Zotlabs/Module/Settings/Network.php:60 ../../include/features.php:385 -msgid "Saved Searches" -msgstr "" - -#: ../../Zotlabs/Widget/Savedsearch.php:84 ../../Zotlabs/Lib/AccessList.php:335 -msgid "add" -msgstr "" - -#: ../../Zotlabs/Widget/Album.php:82 ../../Zotlabs/Widget/Portfolio.php:87 -#: ../../Zotlabs/Module/Photos.php:807 ../../Zotlabs/Module/Photos.php:1337 -#: ../../Zotlabs/Module/Embedphotos.php:210 -msgid "View Photo" -msgstr "" - -#: ../../Zotlabs/Widget/Album.php:99 ../../Zotlabs/Widget/Portfolio.php:108 -#: ../../Zotlabs/Module/Photos.php:838 ../../Zotlabs/Module/Embedphotos.php:225 -msgid "Edit Album" -msgstr "" - -#: ../../Zotlabs/Widget/Common_friends.php:40 -msgid "Common Connections" -msgstr "" - -#: ../../Zotlabs/Widget/Common_friends.php:45 -#, php-format -msgid "View all %d common connections" -msgstr "" - -#: ../../Zotlabs/Widget/Activity_filter.php:26 -msgid "Direct Messages" -msgstr "" - -#: ../../Zotlabs/Widget/Activity_filter.php:30 -msgid "Show direct (private) messages" -msgstr "" - -#: ../../Zotlabs/Widget/Activity_filter.php:39 -msgid "Personal Posts" -msgstr "" - -#: ../../Zotlabs/Widget/Activity_filter.php:43 -msgid "Show posts that mention or involve me" -msgstr "" - -#: ../../Zotlabs/Widget/Activity_filter.php:52 -msgid "Saved Posts" -msgstr "" - -#: ../../Zotlabs/Widget/Activity_filter.php:56 -msgid "Show posts that I have saved" -msgstr "" - -#: ../../Zotlabs/Widget/Activity_filter.php:67 ../../Zotlabs/Lib/Apps.php:345 -#: ../../include/conversation.php:1965 ../../include/conversation.php:1968 -msgid "Events" -msgstr "" - -#: ../../Zotlabs/Widget/Activity_filter.php:71 -msgid "Show posts that include events" -msgstr "" - -#: ../../Zotlabs/Widget/Activity_filter.php:75 -msgid "Polls" -msgstr "" - -#: ../../Zotlabs/Widget/Activity_filter.php:79 -msgid "Show posts that include polls" -msgstr "" - -#: ../../Zotlabs/Widget/Activity_filter.php:99 -#, php-format -msgid "Show posts related to the %s access list" -msgstr "" - -#: ../../Zotlabs/Widget/Activity_filter.php:104 -#: ../../Zotlabs/Lib/AccessList.php:330 ../../Zotlabs/Lib/Apps.php:367 -#: ../../include/nav.php:91 -msgid "Lists" -msgstr "" - -#: ../../Zotlabs/Widget/Activity_filter.php:108 -msgid "Show my access lists" -msgstr "" - -#: ../../Zotlabs/Widget/Activity_filter.php:126 -msgid "Show posts to this group" -msgstr "" - -#: ../../Zotlabs/Widget/Activity_filter.php:128 -msgid "New post" -msgstr "" - -#: ../../Zotlabs/Widget/Activity_filter.php:139 -msgid "Show groups" -msgstr "" - -#: ../../Zotlabs/Widget/Activity_filter.php:193 -#, php-format -msgid "Show posts that I have filed to %s" -msgstr "" - -#: ../../Zotlabs/Widget/Activity_filter.php:203 -msgid "Show filed post categories" -msgstr "" - -#: ../../Zotlabs/Widget/Activity_filter.php:223 -#, php-format -msgid "Show posts with hashtag %s" -msgstr "" - -#: ../../Zotlabs/Widget/Activity_filter.php:229 -msgid "Followed Hashtags" -msgstr "" - -#: ../../Zotlabs/Widget/Activity_filter.php:233 -msgid "Show followed hashtags" -msgstr "" - -#: ../../Zotlabs/Widget/Activity_filter.php:271 -msgid "Remove active filter" -msgstr "" - -#: ../../Zotlabs/Widget/Activity_filter.php:287 -msgid "Stream Filters" -msgstr "" - -#: ../../Zotlabs/Widget/Follow.php:26 -#, php-format -msgid "You have %1$.0f of %2$.0f allowed connections." -msgstr "" - -#: ../../Zotlabs/Widget/Follow.php:33 -msgid "Add New Connection" -msgstr "" - -#: ../../Zotlabs/Widget/Follow.php:34 -msgid "Enter channel address" -msgstr "" - -#: ../../Zotlabs/Widget/Chatroom_members.php:11 -msgid "Chat Members" -msgstr "" - -#: ../../Zotlabs/Widget/Stream_order.php:96 -msgid "Commented Date" -msgstr "" - -#: ../../Zotlabs/Widget/Stream_order.php:100 -msgid "Order by last commented date" -msgstr "" - -#: ../../Zotlabs/Widget/Stream_order.php:103 -msgid "Posted Date" -msgstr "" - -#: ../../Zotlabs/Widget/Stream_order.php:107 -msgid "Order by last posted date" -msgstr "" - -#: ../../Zotlabs/Widget/Stream_order.php:110 -msgid "Date Unthreaded" -msgstr "" - -#: ../../Zotlabs/Widget/Stream_order.php:114 -msgid "Order unthreaded by date" -msgstr "" - -#: ../../Zotlabs/Widget/Stream_order.php:129 ../../Zotlabs/Lib/Apps.php:355 -msgid "Stream Order" -msgstr "" - -#: ../../Zotlabs/Widget/Notifications.php:17 -msgid "New Stream Activity" -msgstr "" - -#: ../../Zotlabs/Widget/Notifications.php:18 -msgid "New Stream Activity Notifications" -msgstr "" - -#: ../../Zotlabs/Widget/Notifications.php:21 -msgid "View your stream activity" -msgstr "" - -#: ../../Zotlabs/Widget/Notifications.php:24 -msgid "Mark all notifications read" -msgstr "" - -#: ../../Zotlabs/Widget/Notifications.php:27 -#: ../../Zotlabs/Widget/Notifications.php:46 -#: ../../Zotlabs/Widget/Notifications.php:138 -msgid "Show new posts only" -msgstr "" - -#: ../../Zotlabs/Widget/Notifications.php:28 -#: ../../Zotlabs/Widget/Notifications.php:47 -#: ../../Zotlabs/Widget/Notifications.php:108 -#: ../../Zotlabs/Widget/Notifications.php:139 -msgid "Filter by name" -msgstr "" - -#: ../../Zotlabs/Widget/Notifications.php:36 -msgid "New Home Activity" -msgstr "" - -#: ../../Zotlabs/Widget/Notifications.php:37 -msgid "New Home Activity Notifications" -msgstr "" - -#: ../../Zotlabs/Widget/Notifications.php:40 -msgid "View your home activity" -msgstr "" - -#: ../../Zotlabs/Widget/Notifications.php:43 -#: ../../Zotlabs/Widget/Notifications.php:135 -msgid "Mark all notifications seen" -msgstr "" - -#: ../../Zotlabs/Widget/Notifications.php:55 -msgid "New Events" -msgstr "" - -#: ../../Zotlabs/Widget/Notifications.php:56 -msgid "New Events Notifications" -msgstr "" - -#: ../../Zotlabs/Widget/Notifications.php:59 -msgid "View events" -msgstr "" - -#: ../../Zotlabs/Widget/Notifications.php:62 -msgid "Mark all events seen" -msgstr "" - -#: ../../Zotlabs/Widget/Notifications.php:70 -#: ../../Zotlabs/Module/Connections.php:147 -msgid "New Connections" -msgstr "" - -#: ../../Zotlabs/Widget/Notifications.php:71 -msgid "New Connections Notifications" -msgstr "" - -#: ../../Zotlabs/Widget/Notifications.php:74 -msgid "View all connections" -msgstr "" - -#: ../../Zotlabs/Widget/Notifications.php:82 -msgid "New Files" -msgstr "" - -#: ../../Zotlabs/Widget/Notifications.php:83 -msgid "New Files Notifications" -msgstr "" - -#: ../../Zotlabs/Widget/Notifications.php:90 -#: ../../Zotlabs/Widget/Notifications.php:91 -msgid "Notices" -msgstr "" - -#: ../../Zotlabs/Widget/Notifications.php:94 -msgid "View all notices" -msgstr "" - -#: ../../Zotlabs/Widget/Notifications.php:97 -msgid "Mark all notices seen" -msgstr "" - -#: ../../Zotlabs/Widget/Notifications.php:118 -msgid "New Registrations" -msgstr "" - -#: ../../Zotlabs/Widget/Notifications.php:119 -msgid "New Registrations Notifications" -msgstr "" - -#: ../../Zotlabs/Widget/Notifications.php:128 -#: ../../Zotlabs/Module/Pubstream.php:94 ../../Zotlabs/Lib/Apps.php:381 -msgid "Public Stream" -msgstr "" - -#: ../../Zotlabs/Widget/Notifications.php:129 -msgid "Public Stream Notifications" -msgstr "" - -#: ../../Zotlabs/Widget/Notifications.php:132 -msgid "View the public stream" -msgstr "" - -#: ../../Zotlabs/Widget/Notifications.php:147 -msgid "Sorry, you have got no notifications at the moment" -msgstr "" - -#: ../../Zotlabs/Widget/Notifications.php:148 -#: ../../Zotlabs/Module/New_channel.php:164 -#: ../../Zotlabs/Module/New_channel.php:171 -#: ../../Zotlabs/Module/Defperms.php:230 ../../Zotlabs/Module/Connedit.php:794 -#: ../../include/nav.php:293 -msgid "Loading" -msgstr "" - -#: ../../Zotlabs/Widget/Mailmenu.php:13 -msgid "Private Mail Menu" -msgstr "" - -#: ../../Zotlabs/Widget/Mailmenu.php:15 -msgid "Combined View" -msgstr "" - -#: ../../Zotlabs/Widget/Mailmenu.php:20 -msgid "Inbox" -msgstr "" - -#: ../../Zotlabs/Widget/Mailmenu.php:25 -msgid "Outbox" -msgstr "" - -#: ../../Zotlabs/Widget/Mailmenu.php:30 -msgid "New Message" -msgstr "" - -#: ../../Zotlabs/Widget/Notes.php:20 ../../Zotlabs/Lib/Apps.php:333 -#: ../../Zotlabs/Lib/Apps.php:375 -msgid "Notes" -msgstr "" - -#: ../../Zotlabs/Widget/Notes.php:22 ../../Zotlabs/Module/Admin/Profs.php:94 -#: ../../Zotlabs/Module/Admin/Profs.php:114 ../../Zotlabs/Module/Filer.php:51 -#: ../../Zotlabs/Lib/ThreadItem.php:249 ../../include/text.php:975 -#: ../../include/text.php:987 -msgid "Save" -msgstr "" - -#: ../../Zotlabs/Widget/Appstore.php:11 -msgid "App Collections" -msgstr "" - -#: ../../Zotlabs/Widget/Appstore.php:13 -msgid "Installed apps" -msgstr "" - -#: ../../Zotlabs/Widget/Appstore.php:14 ../../Zotlabs/Module/Apps.php:50 -#: ../../include/nav.php:307 -msgid "Available Apps" -msgstr "" - -#: ../../Zotlabs/Widget/Tagcloud.php:22 ../../include/taxonomy.php:322 -#: ../../include/taxonomy.php:459 ../../include/taxonomy.php:480 -msgid "Tags" -msgstr "" - -#: ../../Zotlabs/Widget/Cover_photo.php:85 -msgid "Click to show more" -msgstr "" - -#: ../../Zotlabs/Widget/Eventstools.php:13 -msgid "Events Tools" -msgstr "" - -#: ../../Zotlabs/Widget/Eventstools.php:14 -msgid "Export Calendar" -msgstr "" - -#: ../../Zotlabs/Widget/Eventstools.php:15 -msgid "Import Calendar" -msgstr "" - -#: ../../Zotlabs/Module/Uexport.php:60 ../../Zotlabs/Module/Uexport.php:61 -msgid "Export Channel" -msgstr "" - -#: ../../Zotlabs/Module/Uexport.php:62 -msgid "" -"Export your basic channel information to a file. This acts as a backup of " -"your connections, permissions, profile and basic data, which can be used to " -"import your data to a new server hub, but does not contain your content." -msgstr "" - -#: ../../Zotlabs/Module/Uexport.php:63 -msgid "Export Content" -msgstr "" - -#: ../../Zotlabs/Module/Uexport.php:64 -msgid "" -"Export your channel information and recent content to a JSON backup that can " -"be restored or imported to another server hub. This backs up all of your " -"connections, permissions, profile data and several months of posts. This " -"file may be VERY large. Please be patient - it may take several minutes for " -"this download to begin." -msgstr "" - -#: ../../Zotlabs/Module/Uexport.php:66 -msgid "Export your posts from a given year." -msgstr "" - -#: ../../Zotlabs/Module/Uexport.php:68 -msgid "" -"You may also export your posts and conversations for a particular year or " -"month. Adjust the date in your browser location bar to select other dates. " -"If the export fails (possibly due to memory exhaustion on your server hub), " -"please try again selecting a more limited date range." -msgstr "" - -#: ../../Zotlabs/Module/Uexport.php:69 -#, php-format -msgid "" -"To select all posts for a given year, such as this year, visit %2$s" -msgstr "" - -#: ../../Zotlabs/Module/Uexport.php:70 -#, php-format -msgid "" -"To select all posts for a given month, such as January of this year, visit " -"%2$s" -msgstr "" - -#: ../../Zotlabs/Module/Uexport.php:71 -#, php-format -msgid "" -"These content files may be imported or restored by visiting " -"%2$s on any site containing your channel. For best results please import " -"or restore these in date order (oldest first)." -msgstr "" - -#: ../../Zotlabs/Module/Photomap.php:12 -msgid "" -"This app provides a displayable map when viewing detail of photos that " -"contain location information." -msgstr "" - -#: ../../Zotlabs/Module/Photomap.php:20 -msgid "This app is currently installed." -msgstr "" - -#: ../../Zotlabs/Module/Vlists.php:14 -msgid "" -"This app creates dynamic access lists corresponding to [1] all connections, " -"[2] all ActivityPub protocol connections, and [3] all Zot/6 protocol " -"connections. These additional selections will be found within the " -"Permissions setting tool." -msgstr "" - -#: ../../Zotlabs/Module/Vlists.php:21 -msgid "This app is installed. " +#: ../../Zotlabs/Lib/Chatroom.php:124 +msgid "Room not found." msgstr "" +#: ../../Zotlabs/Lib/Chatroom.php:135 ../../Zotlabs/Module/Calendar.php:263 +#: ../../Zotlabs/Module/Admin/Cover_photo.php:281 +#: ../../Zotlabs/Module/Admin/Cover_photo.php:303 +#: ../../Zotlabs/Module/Admin/Profile_photo.php:307 +#: ../../Zotlabs/Module/Admin/Profile_photo.php:325 +#: ../../Zotlabs/Module/Channel.php:239 ../../Zotlabs/Module/Channel.php:425 +#: ../../Zotlabs/Module/Channel.php:464 ../../Zotlabs/Module/Api.php:24 +#: ../../Zotlabs/Module/Common.php:42 ../../Zotlabs/Module/Block.php:25 +#: ../../Zotlabs/Module/Block.php:75 ../../Zotlabs/Module/Cards.php:82 +#: ../../Zotlabs/Module/Blocks.php:77 ../../Zotlabs/Module/Blocks.php:84 +#: ../../Zotlabs/Module/Connedit.php:326 +#: ../../Zotlabs/Module/Connections.php:33 ../../Zotlabs/Module/Appman.php:87 +#: ../../Zotlabs/Module/Cover_photo.php:342 +#: ../../Zotlabs/Module/Cover_photo.php:355 +#: ../../Zotlabs/Module/Defperms.php:164 ../../Zotlabs/Module/Editpost.php:17 +#: ../../Zotlabs/Module/Events.php:295 ../../Zotlabs/Module/Editlayout.php:71 +#: ../../Zotlabs/Module/Editlayout.php:94 #: ../../Zotlabs/Module/Editwebpage.php:72 #: ../../Zotlabs/Module/Editwebpage.php:93 #: ../../Zotlabs/Module/Editwebpage.php:111 -#: ../../Zotlabs/Module/Editwebpage.php:125 ../../Zotlabs/Module/Events.php:295 -#: ../../Zotlabs/Module/Editpost.php:17 ../../Zotlabs/Module/Setup.php:221 -#: ../../Zotlabs/Module/Appman.php:87 ../../Zotlabs/Module/Suggestions.php:31 -#: ../../Zotlabs/Module/Block.php:25 ../../Zotlabs/Module/Block.php:75 -#: ../../Zotlabs/Module/Poke.php:155 ../../Zotlabs/Module/Photos.php:72 -#: ../../Zotlabs/Module/Api.php:24 ../../Zotlabs/Module/Invite.php:99 -#: ../../Zotlabs/Module/Menu.php:132 ../../Zotlabs/Module/Menu.php:143 -#: ../../Zotlabs/Module/Admin/Profile_photo.php:307 -#: ../../Zotlabs/Module/Admin/Profile_photo.php:325 -#: ../../Zotlabs/Module/Admin/Cover_photo.php:281 -#: ../../Zotlabs/Module/Admin/Cover_photo.php:303 -#: ../../Zotlabs/Module/Locs.php:90 ../../Zotlabs/Module/Moderate.php:15 -#: ../../Zotlabs/Module/New_channel.php:115 -#: ../../Zotlabs/Module/New_channel.php:140 ../../Zotlabs/Module/Mitem.php:133 -#: ../../Zotlabs/Module/Connections.php:33 -#: ../../Zotlabs/Module/Profile_photo.php:342 -#: ../../Zotlabs/Module/Profile_photo.php:356 ../../Zotlabs/Module/Lists.php:99 -#: ../../Zotlabs/Module/Lists.php:110 ../../Zotlabs/Module/Editblock.php:71 -#: ../../Zotlabs/Module/Common.php:42 ../../Zotlabs/Module/Display.php:487 -#: ../../Zotlabs/Module/Page.php:38 ../../Zotlabs/Module/Page.php:137 -#: ../../Zotlabs/Module/Manage.php:15 ../../Zotlabs/Module/Chat.php:107 -#: ../../Zotlabs/Module/Chat.php:112 ../../Zotlabs/Module/Inspect.php:16 +#: ../../Zotlabs/Module/Editwebpage.php:125 +#: ../../Zotlabs/Module/Register.php:82 ../../Zotlabs/Module/Invite.php:99 #: ../../Zotlabs/Module/Filestorage.php:22 #: ../../Zotlabs/Module/Filestorage.php:107 #: ../../Zotlabs/Module/Filestorage.php:125 #: ../../Zotlabs/Module/Filestorage.php:152 #: ../../Zotlabs/Module/Filestorage.php:185 -#: ../../Zotlabs/Module/Filestorage.php:193 -#: ../../Zotlabs/Module/Editlayout.php:71 -#: ../../Zotlabs/Module/Editlayout.php:94 ../../Zotlabs/Module/Defperms.php:164 -#: ../../Zotlabs/Module/Vote.php:19 ../../Zotlabs/Module/Viewconnections.php:32 -#: ../../Zotlabs/Module/Viewconnections.php:37 -#: ../../Zotlabs/Module/Webpages.php:134 ../../Zotlabs/Module/Regmod.php:20 -#: ../../Zotlabs/Module/Cards.php:82 ../../Zotlabs/Module/Profiles.php:197 -#: ../../Zotlabs/Module/Profiles.php:633 ../../Zotlabs/Module/Register.php:82 -#: ../../Zotlabs/Module/Mood.php:124 ../../Zotlabs/Module/Card_edit.php:53 -#: ../../Zotlabs/Module/Notifications.php:11 ../../Zotlabs/Module/Blocks.php:77 -#: ../../Zotlabs/Module/Blocks.php:84 ../../Zotlabs/Module/Sharedwithme.php:16 -#: ../../Zotlabs/Module/Settings.php:66 ../../Zotlabs/Module/Viewsrc.php:22 -#: ../../Zotlabs/Module/Sources.php:83 ../../Zotlabs/Module/Layouts.php:77 -#: ../../Zotlabs/Module/Layouts.php:84 ../../Zotlabs/Module/Layouts.php:95 -#: ../../Zotlabs/Module/Connedit.php:326 ../../Zotlabs/Module/Profile.php:123 -#: ../../Zotlabs/Module/Profile.php:139 -#: ../../Zotlabs/Module/Cover_photo.php:342 -#: ../../Zotlabs/Module/Cover_photo.php:355 -#: ../../Zotlabs/Module/Calendar.php:263 ../../Zotlabs/Module/Pdledit.php:29 -#: ../../Zotlabs/Module/Item.php:513 ../../Zotlabs/Module/Item.php:535 -#: ../../Zotlabs/Module/Item.php:546 ../../Zotlabs/Module/Item.php:1587 -#: ../../Zotlabs/Module/Service_limits.php:11 -#: ../../Zotlabs/Module/Channel.php:211 ../../Zotlabs/Module/Channel.php:397 -#: ../../Zotlabs/Module/Channel.php:436 ../../Zotlabs/Module/Thing.php:299 +#: ../../Zotlabs/Module/Filestorage.php:193 ../../Zotlabs/Module/Thing.php:299 #: ../../Zotlabs/Module/Thing.php:319 ../../Zotlabs/Module/Thing.php:360 -#: ../../Zotlabs/Lib/Chatroom.php:135 ../../Zotlabs/Web/WebServer.php:129 +#: ../../Zotlabs/Module/Chat.php:107 ../../Zotlabs/Module/Chat.php:112 +#: ../../Zotlabs/Module/Moderate.php:15 ../../Zotlabs/Module/Lists.php:99 +#: ../../Zotlabs/Module/Lists.php:110 ../../Zotlabs/Module/Layouts.php:77 +#: ../../Zotlabs/Module/Layouts.php:84 ../../Zotlabs/Module/Layouts.php:95 +#: ../../Zotlabs/Module/Card_edit.php:53 ../../Zotlabs/Module/Manage.php:15 +#: ../../Zotlabs/Module/Mitem.php:133 ../../Zotlabs/Module/Editblock.php:71 +#: ../../Zotlabs/Module/Menu.php:132 ../../Zotlabs/Module/Menu.php:143 +#: ../../Zotlabs/Module/Vote.php:19 ../../Zotlabs/Module/Locs.php:90 +#: ../../Zotlabs/Module/Viewsrc.php:22 ../../Zotlabs/Module/New_channel.php:115 +#: ../../Zotlabs/Module/New_channel.php:140 +#: ../../Zotlabs/Module/Notifications.php:11 ../../Zotlabs/Module/Mood.php:124 +#: ../../Zotlabs/Module/Item.php:513 ../../Zotlabs/Module/Item.php:535 +#: ../../Zotlabs/Module/Item.php:546 ../../Zotlabs/Module/Item.php:1596 +#: ../../Zotlabs/Module/Webpages.php:134 ../../Zotlabs/Module/Page.php:38 +#: ../../Zotlabs/Module/Page.php:137 ../../Zotlabs/Module/Profile.php:123 +#: ../../Zotlabs/Module/Profile.php:139 ../../Zotlabs/Module/Pdledit.php:29 +#: ../../Zotlabs/Module/Setup.php:221 ../../Zotlabs/Module/Profiles.php:197 +#: ../../Zotlabs/Module/Profiles.php:633 ../../Zotlabs/Module/Poke.php:155 +#: ../../Zotlabs/Module/Profile_photo.php:342 +#: ../../Zotlabs/Module/Profile_photo.php:356 +#: ../../Zotlabs/Module/Photos.php:72 ../../Zotlabs/Module/Regmod.php:20 +#: ../../Zotlabs/Module/Service_limits.php:11 +#: ../../Zotlabs/Module/Settings.php:66 +#: ../../Zotlabs/Module/Sharedwithme.php:16 ../../Zotlabs/Module/Sources.php:83 +#: ../../Zotlabs/Module/Display.php:493 +#: ../../Zotlabs/Module/Viewconnections.php:32 +#: ../../Zotlabs/Module/Viewconnections.php:37 +#: ../../Zotlabs/Module/Suggestions.php:31 ../../Zotlabs/Module/Inspect.php:16 +#: ../../Zotlabs/Web/WebServer.php:129 ../../include/items.php:3557 #: ../../include/attach.php:155 ../../include/attach.php:202 #: ../../include/attach.php:278 ../../include/attach.php:397 #: ../../include/attach.php:411 ../../include/attach.php:418 #: ../../include/attach.php:496 ../../include/attach.php:1059 #: ../../include/attach.php:1133 ../../include/attach.php:1298 -#: ../../include/photos.php:31 ../../include/items.php:3551 +#: ../../include/photos.php:31 msgid "Permission denied." msgstr "" -#: ../../Zotlabs/Module/Editwebpage.php:84 ../../Zotlabs/Module/Editpost.php:24 -#: ../../Zotlabs/Module/Editblock.php:83 ../../Zotlabs/Module/Editblock.php:99 -#: ../../Zotlabs/Module/Editlayout.php:83 ../../Zotlabs/Module/Card_edit.php:19 -#: ../../Zotlabs/Module/Card_edit.php:35 -msgid "Item not found" +#: ../../Zotlabs/Lib/Chatroom.php:145 +msgid "Room is full" msgstr "" -#: ../../Zotlabs/Module/Editwebpage.php:143 -msgid "Page link" +#: ../../Zotlabs/Lib/PermissionDescription.php:34 +#: ../../include/acl_selectors.php:34 +msgid "Visible to your default audience" msgstr "" -#: ../../Zotlabs/Module/Editwebpage.php:147 -#: ../../Zotlabs/Module/Editblock.php:120 ../../Zotlabs/Module/Chat.php:212 -#: ../../Zotlabs/Module/Card_edit.php:103 ../../include/conversation.php:1286 -msgid "Insert web link" +#: ../../Zotlabs/Lib/PermissionDescription.php:107 +#: ../../include/acl_selectors.php:121 +msgid "Only me" msgstr "" -#: ../../Zotlabs/Module/Editwebpage.php:170 -msgid "Edit Webpage" +#: ../../Zotlabs/Lib/PermissionDescription.php:108 +msgid "Public" msgstr "" -#: ../../Zotlabs/Module/Editwebpage.php:173 +#: ../../Zotlabs/Lib/PermissionDescription.php:109 +msgid "Anybody in the $Projectname network" +msgstr "" + +#: ../../Zotlabs/Lib/PermissionDescription.php:110 +#, php-format +msgid "Any account on %s" +msgstr "" + +#: ../../Zotlabs/Lib/PermissionDescription.php:111 +msgid "Any of my connections" +msgstr "" + +#: ../../Zotlabs/Lib/PermissionDescription.php:112 +msgid "Only connections I specifically allow" +msgstr "" + +#: ../../Zotlabs/Lib/PermissionDescription.php:113 +msgid "Anybody authenticated (could include visitors from other networks)" +msgstr "" + +#: ../../Zotlabs/Lib/PermissionDescription.php:114 +msgid "Any connections including those who haven't yet been approved" +msgstr "" + +#: ../../Zotlabs/Lib/PermissionDescription.php:150 +msgid "" +"This is your default setting for the audience of your normal stream, and " +"posts." +msgstr "" + +#: ../../Zotlabs/Lib/PermissionDescription.php:151 +msgid "" +"This is your default setting for who can view your default channel profile" +msgstr "" + +#: ../../Zotlabs/Lib/PermissionDescription.php:152 +msgid "This is your default setting for who can view your connections" +msgstr "" + +#: ../../Zotlabs/Lib/PermissionDescription.php:153 +msgid "" +"This is your default setting for who can view your file storage and photos" +msgstr "" + +#: ../../Zotlabs/Lib/PermissionDescription.php:154 +msgid "This is your default setting for the audience of your webpages" +msgstr "" + +#: ../../Zotlabs/Lib/Libsync.php:891 +#, php-format +msgid "Unable to verify site signature for %s" +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:66 +msgid "$Projectname Notification" +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:67 +msgid "$projectname" +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:69 +msgid "Thank You," +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:71 +#, php-format +msgid "%s Administrator" +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:72 +#, php-format +msgid "This email was sent by %1$s at %2$s." +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:72 ../../Zotlabs/Module/Home.php:93 +#: ../../Zotlabs/Module/Home.php:102 +msgid "$Projectname" +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:73 +#, php-format +msgid "" +"To stop receiving these messages, please adjust your Notification Settings " +"at %s" +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:74 +#, php-format +msgid "To stop receiving these messages, please adjust your %s." +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:74 +msgid "Notification Settings" +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:129 +#, php-format +msgid "%s " +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:133 +#, php-format +msgid "[$Projectname:Notify] New mail received at %s" +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:136 +#, php-format +msgid "%1$s sent you a new private message at %2$s." +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:137 +#, php-format +msgid "%1$s sent you %2$s." +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:137 ../../Zotlabs/Lib/Enotify.php:141 +msgid "a private message" +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:140 +#, php-format +msgid "%1$s replied to a private message at %2$s." +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:141 +#, php-format +msgid "%1$s replied to %2$s." +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:143 +#, php-format +msgid "Please visit %s to view and/or reply to your private messages." +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:157 +msgid "commented on" +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:168 +msgid "liked" +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:171 +msgid "disliked" +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:214 +#, php-format +msgid "%1$s %2$s [zrl=%3$s]a %4$s[/zrl]" +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:222 +#, php-format +msgid "%1$s %2$s [zrl=%3$s]%4$s's %5$s[/zrl]" +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:231 +#, php-format +msgid "%1$s %2$s [zrl=%3$s]your %4$s[/zrl]" +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:243 +#, php-format +msgid "[$Projectname:Notify] Moderated Comment to conversation #%1$d by %2$s" +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:247 +#, php-format +msgid "[$Projectname:Notify] Comment to conversation #%1$d by %2$s" +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:248 +#, php-format +msgid "%1$s commented on an item/conversation you have been following." +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:252 +msgid "(Moderated)" +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:255 ../../Zotlabs/Lib/Enotify.php:336 +#: ../../Zotlabs/Lib/Enotify.php:362 ../../Zotlabs/Lib/Enotify.php:392 +#: ../../Zotlabs/Lib/Enotify.php:409 ../../Zotlabs/Lib/Enotify.php:422 +#, php-format +msgid "Please visit %s to view and/or reply to the conversation." +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:259 ../../Zotlabs/Lib/Enotify.php:260 +#, php-format +msgid "Please visit %s to approve or reject this comment." +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:318 +#, php-format +msgid "%1$s liked [zrl=%2$s]your %3$s[/zrl]" +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:332 +#, php-format +msgid "[$Projectname:Notify] Like received to conversation #%1$d by %2$s" +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:333 +#, php-format +msgid "%1$s liked an item/conversation you created." +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:344 +#, php-format +msgid "[$Projectname:Notify] %s posted to your profile wall" +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:350 +#, php-format +msgid "%1$s posted to your profile wall at %2$s" +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:352 +#, php-format +msgid "%1$s posted to [zrl=%2$s]your wall[/zrl]" +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:358 ../../Zotlabs/Lib/Enotify.php:359 +msgid " - " +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:358 ../../Zotlabs/Lib/Enotify.php:359 +msgid "Moderated" +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:367 ../../Zotlabs/Lib/Enotify.php:368 +#, php-format +msgid "Please visit %s to approve or reject this post." +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:386 +#, php-format +msgid "[$Projectname:Notify] %s tagged you" +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:387 +#, php-format +msgid "%1$s tagged you at %2$s" +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:388 +#, php-format +msgid "%1$s [zrl=%2$s]tagged you[/zrl]." +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:399 +#, php-format +msgid "[$Projectname:Notify] %1$s poked you" +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:400 +#, php-format +msgid "%1$s poked you at %2$s" +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:401 +#, php-format +msgid "%1$s [zrl=%2$s]poked you[/zrl]." +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:416 +#, php-format +msgid "[$Projectname:Notify] %s tagged your post" +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:417 +#, php-format +msgid "%1$s tagged your post at %2$s" +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:418 +#, php-format +msgid "%1$s tagged [zrl=%2$s]your post[/zrl]" +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:429 +msgid "[$Projectname:Notify] Introduction received" +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:430 +#, php-format +msgid "You've received an new connection request from '%1$s' at %2$s" +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:431 +#, php-format +msgid "You've received [zrl=%1$s]a new connection request[/zrl] from %2$s." +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:434 ../../Zotlabs/Lib/Enotify.php:452 +#, php-format +msgid "You may visit their profile at %s" +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:436 +#, php-format +msgid "Please visit %s to approve or reject the connection request." +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:443 +msgid "[$Projectname:Notify] Friend suggestion received" +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:444 +#, php-format +msgid "You've received a friend suggestion from '%1$s' at %2$s" +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:445 +#, php-format +msgid "You've received [zrl=%1$s]a friend suggestion[/zrl] for %2$s from %3$s." +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:450 +msgid "Name:" +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:451 +msgid "Photo:" +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:454 +#, php-format +msgid "Please visit %s to approve or reject the suggestion." +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:704 +msgid "[$Projectname:Notify]" +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:887 +msgid "created a new post" +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:888 +#, php-format +msgid "reacted to %s's conversation" +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:890 +#, php-format +msgid "shared %s's post" +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:894 +msgid "sent a direct message" +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:901 +#, php-format +msgid "edited a post dated %s" +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:905 +#, php-format +msgid "edited a comment dated %s" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:310 +msgid "Apps" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:311 ../../Zotlabs/Module/Connedit.php:656 +msgid "Friend Zoom" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:312 +msgid "Virtual Lists" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:313 +msgid "Markup" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:314 ../../include/features.php:136 +#: ../../include/nav.php:476 +msgid "Articles" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:315 ../../Zotlabs/Module/Cards.php:204 +#: ../../include/nav.php:465 ../../include/conversation.php:2005 +msgid "Cards" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:316 ../../Zotlabs/Storage/Browser.php:150 +#: ../../include/nav.php:427 ../../include/nav.php:430 +msgid "Calendar" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:317 ../../Zotlabs/Module/Cdav.php:1066 +#: ../../Zotlabs/Widget/Appcategories.php:43 +#: ../../Zotlabs/Widget/Categories.php:75 +#: ../../Zotlabs/Widget/Categories.php:119 +#: ../../Zotlabs/Widget/Categories.php:166 ../../include/taxonomy.php:419 +#: ../../include/taxonomy.php:505 ../../include/taxonomy.php:525 +#: ../../include/taxonomy.php:546 +msgid "Categories" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:318 +msgid "Clients" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:319 +msgid "Site Admin" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:320 +msgid "Content Filter" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:321 ../../Zotlabs/Lib/Apps.php:325 +#: ../../extend/addon/a/content_import/Mod_content_import.php:135 +msgid "Content Import" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:322 +msgid "Report Bug" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:323 +msgid "View Bookmarks" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:324 ../../Zotlabs/Widget/Chatroom_list.php:16 +#: ../../include/nav.php:441 ../../include/nav.php:444 +#: ../../include/conversation.php:1979 ../../include/conversation.php:1982 +msgid "Chatrooms" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:326 ../../Zotlabs/Module/Connedit.php:667 +#: ../../Zotlabs/Module/Connections.php:366 ../../Zotlabs/Module/Stream.php:122 +#: ../../Zotlabs/Module/Affinity.php:62 ../../Zotlabs/Widget/Affinity.php:28 +#: ../../Zotlabs/Widget/Activity_filter.php:108 +#: ../../include/connections.php:892 +msgid "Connections" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:327 +msgid "Expire Posts" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:328 +msgid "Future Posting" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:329 +msgid "Remote Diagnostics" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:330 ../../Zotlabs/Module/Settings/Network.php:108 +#: ../../include/features.php:439 +msgid "Suggest Channels" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:331 ../../include/nav.php:117 +#: ../../include/nav.php:121 ../../boot.php:1655 +msgid "Login" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:332 +msgid "Channel Manager" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:333 ../../Zotlabs/Lib/Apps.php:375 +#: ../../Zotlabs/Widget/Notes.php:20 +msgid "Notes" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:334 +msgid "Stream" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:335 +msgid "Secrets" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:336 ../../Zotlabs/Module/Admin/Themes.php:125 +#: ../../Zotlabs/Module/Admin/Addons.php:342 +#: ../../Zotlabs/Widget/Settings_menu.php:129 +#: ../../Zotlabs/Widget/Newmember.php:51 ../../include/nav.php:93 +msgid "Settings" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:337 +msgid "Sites" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:338 ../../Zotlabs/Module/Fbrowser.php:82 +#: ../../Zotlabs/Storage/Browser.php:289 ../../include/nav.php:416 +#: ../../include/conversation.php:1954 +msgid "Files" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:339 ../../Zotlabs/Module/Webpages.php:253 +#: ../../include/nav.php:488 ../../include/conversation.php:2027 +msgid "Webpages" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:340 ../../include/nav.php:503 +#: ../../include/conversation.php:2043 +msgid "Wiki" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:341 +msgid "Channel Home" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:342 ../../Zotlabs/Module/Connedit.php:540 +#: ../../include/nav.php:105 +msgid "View Profile" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:343 ../../Zotlabs/Module/Fbrowser.php:26 +#: ../../include/nav.php:408 ../../include/conversation.php:1946 +msgid "Photos" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:344 +msgid "Photomap" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:345 ../../Zotlabs/Widget/Activity_filter.php:67 +#: ../../include/conversation.php:1965 ../../include/conversation.php:1968 +msgid "Events" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:346 ../../Zotlabs/Widget/Tasklist.php:26 +msgid "Tasks" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:347 +msgid "No Comment" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:348 ../../Zotlabs/Module/Directory.php:433 +msgid "Directory" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:349 ../../include/help.php:50 +#: ../../include/nav.php:167 ../../include/nav.php:289 +msgid "Help" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:350 +msgid "Mail" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:351 ../../Zotlabs/Module/Mood.php:152 +msgid "Mood" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:352 ../../Zotlabs/Module/Poke.php:197 +msgid "Poke" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:353 +msgid "Chat" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:354 ../../Zotlabs/Module/Connections.php:373 +#: ../../Zotlabs/Module/Search.php:47 ../../Zotlabs/Widget/Sitesearch.php:31 +#: ../../include/text.php:974 ../../include/text.php:986 +#: ../../include/nav.php:174 ../../include/acl_selectors.php:133 +msgid "Search" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:355 ../../Zotlabs/Widget/Stream_order.php:129 +msgid "Stream Order" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:356 +msgid "Probe" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:357 +msgid "Suggest" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:358 +msgid "Random Channel" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:359 +msgid "Invite" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:360 +msgid "Features" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:361 +msgid "Language" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:362 +msgid "Post" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:363 +#: ../../extend/addon/a/zotpost/Mod_zotpost.php:54 +msgid "ZotPost" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:364 +msgid "Profile Photo" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:365 ../../Zotlabs/Lib/Libprofile.php:572 +#: ../../Zotlabs/Lib/Activity.php:2228 ../../Zotlabs/Lib/Activity.php:2231 +#: ../../Zotlabs/Module/Profperm.php:117 +msgid "Profile" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:366 +msgid "Profiles" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:367 ../../Zotlabs/Lib/AccessList.php:365 +#: ../../Zotlabs/Widget/Activity_filter.php:136 ../../include/nav.php:91 +msgid "Lists" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:368 ../../Zotlabs/Module/Settings/Channel.php:641 +msgid "Notifications" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:369 +msgid "Order Apps" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:370 +msgid "CalDAV" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:371 +msgid "CardDAV" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:372 ../../Zotlabs/Module/Sources.php:105 +#: ../../Zotlabs/Widget/Settings_menu.php:121 +msgid "Channel Sources" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:373 ../../extend/addon/a/gallery/gallery.php:46 +#: ../../extend/addon/a/gallery/Mod_Gallery.php:137 +msgid "Gallery" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:374 +msgid "Guest Access" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:376 +msgid "OAuth Apps Manager" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:377 +msgid "OAuth2 Apps Manager" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:378 +msgid "PDL Editor" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:379 +#: ../../Zotlabs/Module/Settings/Permcats.php:100 +#: ../../Zotlabs/Widget/Settings_menu.php:104 +msgid "Permission Categories" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:380 +msgid "Premium Channel" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:381 ../../Zotlabs/Module/Pubstream.php:94 +#: ../../Zotlabs/Widget/Notifications.php:128 +msgid "Public Stream" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:382 +msgid "My Chatrooms" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:557 ../../Zotlabs/Module/Admin/Addons.php:451 +#: ../../Zotlabs/Module/Cdav.php:1050 ../../Zotlabs/Module/Cdav.php:1365 +#: ../../Zotlabs/Module/Connedit.php:865 ../../Zotlabs/Module/Profiles.php:801 +#: ../../Zotlabs/Module/Settings/Oauth.php:43 +#: ../../Zotlabs/Module/Settings/Oauth.php:114 +#: ../../Zotlabs/Module/Settings/Oauth2.php:52 +#: ../../Zotlabs/Module/Settings/Oauth2.php:134 +msgid "Update" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:557 ../../Zotlabs/Module/Admin/Addons.php:420 +msgid "Install" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:574 +msgid "Purchase" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:577 ../../Zotlabs/Lib/Libprofile.php:189 +#: ../../Zotlabs/Lib/Libprofile.php:193 ../../Zotlabs/Lib/ThreadItem.php:129 +#: ../../Zotlabs/Module/Admin/Profs.php:175 ../../Zotlabs/Module/Blocks.php:164 +#: ../../Zotlabs/Module/Connections.php:315 +#: ../../Zotlabs/Module/Connections.php:354 +#: ../../Zotlabs/Module/Connections.php:377 +#: ../../Zotlabs/Module/Editlayout.php:118 +#: ../../Zotlabs/Module/Editwebpage.php:146 ../../Zotlabs/Module/Thing.php:285 +#: ../../Zotlabs/Module/Lists.php:340 ../../Zotlabs/Module/Layouts.php:199 +#: ../../Zotlabs/Module/Card_edit.php:101 +#: ../../Zotlabs/Module/Editblock.php:118 ../../Zotlabs/Module/Menu.php:178 +#: ../../Zotlabs/Module/Webpages.php:256 +#: ../../Zotlabs/Module/Settings/Oauth.php:150 +#: ../../Zotlabs/Module/Settings/Oauth2.php:196 +#: ../../Zotlabs/Storage/Browser.php:307 ../../Zotlabs/Widget/Cdav.php:138 +#: ../../Zotlabs/Widget/Cdav.php:175 ../../include/menu.php:121 +msgid "Edit" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:578 ../../Zotlabs/Lib/ThreadItem.php:155 +#: ../../Zotlabs/Module/Admin/Profs.php:176 +#: ../../Zotlabs/Module/Admin/Accounts.php:175 +#: ../../Zotlabs/Module/Admin/Channels.php:156 +#: ../../Zotlabs/Module/Blocks.php:166 ../../Zotlabs/Module/Cdav.php:1053 +#: ../../Zotlabs/Module/Cdav.php:1366 ../../Zotlabs/Module/Connedit.php:608 +#: ../../Zotlabs/Module/Connedit.php:866 +#: ../../Zotlabs/Module/Connections.php:323 +#: ../../Zotlabs/Module/Editlayout.php:142 +#: ../../Zotlabs/Module/Editwebpage.php:171 ../../Zotlabs/Module/Thing.php:286 +#: ../../Zotlabs/Module/Card_edit.php:131 +#: ../../Zotlabs/Module/Editblock.php:143 ../../Zotlabs/Module/Webpages.php:258 +#: ../../Zotlabs/Module/Profiles.php:802 ../../Zotlabs/Module/Photos.php:1197 +#: ../../Zotlabs/Module/Settings/Oauth.php:151 +#: ../../Zotlabs/Module/Settings/Oauth2.php:197 +#: ../../Zotlabs/Storage/Browser.php:308 ../../include/conversation.php:696 +#: ../../include/conversation.php:744 +msgid "Delete" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:579 +msgid "Undelete" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:589 +msgid "Add to app-tray" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:590 +msgid "Remove from app-tray" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:591 +msgid "Pin to navbar" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:592 +msgid "Unpin from navbar" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:1075 ../../Zotlabs/Lib/Apps.php:1164 +#: ../../Zotlabs/Lib/Activity.php:1696 ../../Zotlabs/Module/Cdav.php:853 +#: ../../Zotlabs/Module/Cdav.php:854 ../../Zotlabs/Module/Cdav.php:861 +#: ../../Zotlabs/Module/Embedphotos.php:216 ../../Zotlabs/Module/Photos.php:813 +#: ../../Zotlabs/Module/Photos.php:1263 ../../Zotlabs/Storage/Browser.php:175 +#: ../../Zotlabs/Widget/Portfolio.php:95 ../../Zotlabs/Widget/Album.php:88 +#: ../../include/conversation.php:1149 +msgid "Unknown" +msgstr "" + +#: ../../Zotlabs/Lib/Libzot.php:718 +msgid "Unable to verify channel signature" +msgstr "" + +#: ../../Zotlabs/Lib/AccessList.php:28 +msgid "" +"A deleted list with this name was revived. Existing item permissions " +"may apply to this list and any future members. If this is " +"not what you intended, please create another list with a different name." +msgstr "" + +#: ../../Zotlabs/Lib/AccessList.php:320 +msgid "Add new connections to this access list" +msgstr "" + +#: ../../Zotlabs/Lib/AccessList.php:345 +msgid "edit" +msgstr "" + +#: ../../Zotlabs/Lib/AccessList.php:366 +msgid "Edit list" +msgstr "" + +#: ../../Zotlabs/Lib/AccessList.php:367 +msgid "Create new list" +msgstr "" + +#: ../../Zotlabs/Lib/AccessList.php:368 +msgid "Channels not in any access list" +msgstr "" + +#: ../../Zotlabs/Lib/AccessList.php:370 ../../Zotlabs/Widget/Savedsearch.php:84 +msgid "add" +msgstr "" + +#: ../../Zotlabs/Lib/DB_Upgrade.php:67 +msgid "Source code of failed update: " +msgstr "" + +#: ../../Zotlabs/Lib/DB_Upgrade.php:88 +#, php-format +msgid "Update Error at %s" +msgstr "" + +#: ../../Zotlabs/Lib/DB_Upgrade.php:94 +#, php-format +msgid "Update %s failed. See error logs." +msgstr "" + +#: ../../Zotlabs/Lib/Permcat.php:73 +msgctxt "permcat" +msgid "default" +msgstr "" + +#: ../../Zotlabs/Lib/Permcat.php:124 +msgctxt "permcat" +msgid "follower" +msgstr "" + +#: ../../Zotlabs/Lib/Permcat.php:128 +msgctxt "permcat" +msgid "contributor" +msgstr "" + +#: ../../Zotlabs/Lib/Permcat.php:132 +msgctxt "permcat" +msgid "publisher" +msgstr "" + +#: ../../Zotlabs/Lib/Markdown.php:203 ../../include/bbcode.php:571 +#, php-format +msgid "%1$s wrote the following %2$s %3$s" +msgstr "" + +#: ../../Zotlabs/Lib/Markdown.php:205 ../../Zotlabs/Module/Tagger.php:79 +#: ../../include/bbcode.php:567 ../../include/conversation.php:151 +msgid "post" +msgstr "" + +#: ../../Zotlabs/Lib/Libprofile.php:35 +msgid "Requested channel is not available." +msgstr "" + +#: ../../Zotlabs/Lib/Libprofile.php:90 ../../Zotlabs/Module/Cards.php:38 +#: ../../Zotlabs/Module/Blocks.php:37 ../../Zotlabs/Module/Editlayout.php:35 +#: ../../Zotlabs/Module/Editwebpage.php:36 ../../Zotlabs/Module/Hcard.php:15 +#: ../../Zotlabs/Module/Layouts.php:37 ../../Zotlabs/Module/Editblock.php:35 +#: ../../Zotlabs/Module/Menu.php:94 ../../Zotlabs/Module/Connect.php:19 +#: ../../Zotlabs/Module/Webpages.php:40 ../../Zotlabs/Module/Profile.php:27 +#: ../../extend/addon/a/gallery/Mod_Gallery.php:50 +msgid "Requested profile is not available." +msgstr "" + +#: ../../Zotlabs/Lib/Libprofile.php:182 ../../Zotlabs/Module/Profiles.php:726 +msgid "Change profile photo" +msgstr "" + +#: ../../Zotlabs/Lib/Libprofile.php:189 ../../Zotlabs/Module/Profiles.php:832 +#: ../../include/nav.php:108 +msgid "Edit Profiles" +msgstr "" + +#: ../../Zotlabs/Lib/Libprofile.php:190 +msgid "Create New Profile" +msgstr "" + +#: ../../Zotlabs/Lib/Libprofile.php:193 ../../include/nav.php:110 +msgid "Edit Profile" +msgstr "" + +#: ../../Zotlabs/Lib/Libprofile.php:208 ../../Zotlabs/Module/Profiles.php:822 +msgid "Profile Image" +msgstr "" + +#: ../../Zotlabs/Lib/Libprofile.php:211 +msgid "Visible to everybody" +msgstr "" + +#: ../../Zotlabs/Lib/Libprofile.php:212 ../../Zotlabs/Module/Profiles.php:723 +#: ../../Zotlabs/Module/Profiles.php:826 +msgid "Edit visibility" +msgstr "" + +#: ../../Zotlabs/Lib/Libprofile.php:270 ../../Zotlabs/Module/Directory.php:373 +#: ../../Zotlabs/Widget/Follow.php:36 ../../Zotlabs/Widget/Suggestions.php:47 +#: ../../include/connections.php:132 ../../include/conversation.php:1051 +msgid "Connect" +msgstr "" + +#: ../../Zotlabs/Lib/Libprofile.php:285 ../../Zotlabs/Module/Directory.php:355 +#: ../../include/event.php:62 ../../include/event.php:119 +msgid "Location:" +msgstr "" + +#: ../../Zotlabs/Lib/Libprofile.php:289 ../../Zotlabs/Lib/Libprofile.php:445 +msgid "Gender:" +msgstr "" + +#: ../../Zotlabs/Lib/Libprofile.php:290 ../../Zotlabs/Lib/Libprofile.php:493 +msgid "Status:" +msgstr "" + +#: ../../Zotlabs/Lib/Libprofile.php:291 ../../Zotlabs/Lib/Libprofile.php:519 +msgid "Homepage:" +msgstr "" + +#: ../../Zotlabs/Lib/Libprofile.php:292 ../../Zotlabs/Lib/Libprofile.php:517 +msgid "Pronouns:" +msgstr "" + +#: ../../Zotlabs/Lib/Libprofile.php:351 ../../Zotlabs/Module/Connections.php:60 +#: ../../Zotlabs/Module/Connections.php:119 +#: ../../Zotlabs/Module/Connections.php:132 +#: ../../Zotlabs/Module/Connections.php:290 +msgid "Active" +msgstr "" + +#: ../../Zotlabs/Lib/Libprofile.php:355 +msgid "Change your profile photo" +msgstr "" + +#: ../../Zotlabs/Lib/Libprofile.php:382 ../../Zotlabs/Module/Profiles.php:936 +#: ../../Zotlabs/Module/Profiles.php:953 +msgid "Female" +msgstr "" + +#: ../../Zotlabs/Lib/Libprofile.php:384 ../../Zotlabs/Module/Profiles.php:936 +#: ../../Zotlabs/Module/Profiles.php:953 +msgid "Male" +msgstr "" + +#: ../../Zotlabs/Lib/Libprofile.php:386 +msgid "Trans" +msgstr "" + +#: ../../Zotlabs/Lib/Libprofile.php:388 +msgid "Inter" +msgstr "" + +#: ../../Zotlabs/Lib/Libprofile.php:390 ../../Zotlabs/Module/Profiles.php:936 +msgid "Neuter" +msgstr "" + +#: ../../Zotlabs/Lib/Libprofile.php:392 ../../Zotlabs/Module/Profiles.php:936 +msgid "Non-specific" +msgstr "" + +#: ../../Zotlabs/Lib/Libprofile.php:404 +msgid "She" +msgstr "" + +#: ../../Zotlabs/Lib/Libprofile.php:406 +msgid "Him" +msgstr "" + +#: ../../Zotlabs/Lib/Libprofile.php:408 +msgid "Them" +msgstr "" + +#: ../../Zotlabs/Lib/Libprofile.php:443 +msgid "Full Name:" +msgstr "" + +#: ../../Zotlabs/Lib/Libprofile.php:478 +msgid "j F, Y" +msgstr "" + +#: ../../Zotlabs/Lib/Libprofile.php:479 +msgid "j F" +msgstr "" + +#: ../../Zotlabs/Lib/Libprofile.php:486 +msgid "Birthday:" +msgstr "" + +#: ../../Zotlabs/Lib/Libprofile.php:490 ../../Zotlabs/Module/Directory.php:350 +msgid "Age:" +msgstr "" + +#: ../../Zotlabs/Lib/Libprofile.php:499 +#, php-format +msgid "for %1$d %2$s" +msgstr "" + +#: ../../Zotlabs/Lib/Libprofile.php:511 +msgid "Tags:" +msgstr "" + +#: ../../Zotlabs/Lib/Libprofile.php:515 +msgid "Sexual Preference:" +msgstr "" + +#: ../../Zotlabs/Lib/Libprofile.php:521 ../../Zotlabs/Module/Directory.php:370 +msgid "Hometown:" +msgstr "" + +#: ../../Zotlabs/Lib/Libprofile.php:523 +msgid "Political Views:" +msgstr "" + +#: ../../Zotlabs/Lib/Libprofile.php:525 +msgid "Religion:" +msgstr "" + +#: ../../Zotlabs/Lib/Libprofile.php:527 ../../Zotlabs/Module/Directory.php:372 +msgid "About:" +msgstr "" + +#: ../../Zotlabs/Lib/Libprofile.php:529 +msgid "Hobbies/Interests:" +msgstr "" + +#: ../../Zotlabs/Lib/Libprofile.php:531 +msgid "Likes:" +msgstr "" + +#: ../../Zotlabs/Lib/Libprofile.php:533 +msgid "Dislikes:" +msgstr "" + +#: ../../Zotlabs/Lib/Libprofile.php:535 +msgid "Contact information and Social Networks:" +msgstr "" + +#: ../../Zotlabs/Lib/Libprofile.php:537 +msgid "My other channels:" +msgstr "" + +#: ../../Zotlabs/Lib/Libprofile.php:539 +msgid "Musical interests:" +msgstr "" + +#: ../../Zotlabs/Lib/Libprofile.php:541 +msgid "Books, literature:" +msgstr "" + +#: ../../Zotlabs/Lib/Libprofile.php:543 +msgid "Television:" +msgstr "" + +#: ../../Zotlabs/Lib/Libprofile.php:545 +msgid "Film/dance/culture/entertainment:" +msgstr "" + +#: ../../Zotlabs/Lib/Libprofile.php:547 +msgid "Love/Romance:" +msgstr "" + +#: ../../Zotlabs/Lib/Libprofile.php:549 +msgid "Work/employment:" +msgstr "" + +#: ../../Zotlabs/Lib/Libprofile.php:551 +msgid "School/education:" +msgstr "" + +#: ../../Zotlabs/Lib/Libprofile.php:574 +msgid "Like this thing" +msgstr "" + +#: ../../Zotlabs/Lib/Libprofile.php:575 ../../Zotlabs/Module/Cal.php:346 +#: ../../Zotlabs/Module/Events.php:730 +msgid "Export" +msgstr "" + +#: ../../Zotlabs/Lib/Activity.php:2228 +#, php-format +msgid "Likes %1$s's %2$s" +msgstr "" + +#: ../../Zotlabs/Lib/Activity.php:2231 +#, php-format +msgid "Doesn't like %1$s's %2$s" +msgstr "" + +#: ../../Zotlabs/Lib/Activity.php:2237 +#, php-format +msgid "Will attend %s's event" +msgstr "" + +#: ../../Zotlabs/Lib/Activity.php:2240 +#, php-format +msgid "Will not attend %s's event" +msgstr "" + +#: ../../Zotlabs/Lib/Activity.php:2243 +#, php-format +msgid "May attend %s's event" +msgstr "" + +#: ../../Zotlabs/Lib/Activity.php:2246 +#, php-format +msgid "May not attend %s's event" +msgstr "" + +#: ../../Zotlabs/Lib/Activity.php:2251 ../../Zotlabs/Module/Share.php:102 +#, php-format +msgid "🔁 Repeated %1$s's %2$s" +msgstr "" + +#: ../../Zotlabs/Lib/Activity.php:2667 ../../include/text.php:2842 +#, php-format +msgid "%1$s (%2$s)" +msgstr "" + +#: ../../Zotlabs/Lib/Language.php:408 ../../include/text.php:1952 +#: ../../include/language.php:396 +msgid "default" +msgstr "" + +#: ../../Zotlabs/Lib/Language.php:421 ../../include/language.php:409 +msgid "Select an alternate language" +msgstr "" + +#: ../../Zotlabs/Lib/Connect.php:48 ../../Zotlabs/Lib/Connect.php:144 +msgid "Channel is blocked on this site." +msgstr "" + +#: ../../Zotlabs/Lib/Connect.php:53 +msgid "Channel location missing." +msgstr "" + +#: ../../Zotlabs/Lib/Connect.php:105 +msgid "Remote channel or protocol unavailable." +msgstr "" + +#: ../../Zotlabs/Lib/Connect.php:138 +msgid "Channel discovery failed." +msgstr "" + +#: ../../Zotlabs/Lib/Connect.php:153 +msgid "Protocol not supported" +msgstr "" + +#: ../../Zotlabs/Lib/Connect.php:166 +msgid "Cannot connect to yourself." +msgstr "" + +#: ../../Zotlabs/Lib/Connect.php:244 +msgid "error saving data" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:113 ../../include/conversation.php:705 +msgid "Private Message" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:159 ../../Zotlabs/Storage/Browser.php:297 +msgid "Admin Delete" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:164 ../../include/conversation.php:695 +msgid "Select" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:168 ../../Zotlabs/Module/Filer.php:52 +msgid "Save to Folder" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:191 +msgid "I will attend" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:191 +msgid "I will not attend" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:191 +msgid "I might attend" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:206 ../../Zotlabs/Lib/ThreadItem.php:228 +#: ../../Zotlabs/Module/Photos.php:1149 ../../Zotlabs/Module/Photos.php:1161 +msgid "View all" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:211 ../../Zotlabs/Module/Photos.php:1153 +#: ../../include/taxonomy.php:675 ../../include/conversation.php:2094 +msgctxt "noun" +msgid "Like" +msgid_plural "Likes" +msgstr[0] "" +msgstr[1] "" + +#: ../../Zotlabs/Lib/ThreadItem.php:214 ../../Zotlabs/Lib/ThreadItem.php:454 +#: ../../Zotlabs/Module/Photos.php:1277 ../../include/conversation.php:2097 +msgctxt "noun" +msgid "Likes" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:220 ../../Zotlabs/Module/Photos.php:1158 +#: ../../include/conversation.php:2102 +msgctxt "noun" +msgid "Dislike" +msgid_plural "Dislikes" +msgstr[0] "" +msgstr[1] "" + +#: ../../Zotlabs/Lib/ThreadItem.php:223 ../../Zotlabs/Lib/ThreadItem.php:455 +#: ../../Zotlabs/Module/Photos.php:1278 ../../include/conversation.php:2105 +msgctxt "noun" +msgid "Dislikes" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:249 ../../Zotlabs/Module/Admin/Profs.php:94 +#: ../../Zotlabs/Module/Admin/Profs.php:114 ../../Zotlabs/Module/Filer.php:51 +#: ../../Zotlabs/Widget/Notes.php:22 ../../include/text.php:975 +#: ../../include/text.php:987 +msgid "Save" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:259 ../../include/conversation.php:712 +msgid "Message signature validated" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:260 ../../include/conversation.php:713 +msgid "Message signature incorrect" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:266 +msgid "Add Tag" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:284 ../../Zotlabs/Module/Photos.php:1094 +msgid "I like this (toggle)" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:284 ../../include/taxonomy.php:589 +msgid "like" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:285 ../../Zotlabs/Module/Photos.php:1095 +msgid "I don't like this (toggle)" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:285 ../../include/taxonomy.php:590 +msgid "dislike" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:289 +msgid "Repeat This" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:290 +msgid "Share this" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:300 +msgid "Delivery Report" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:330 +#, php-format +msgid "%d comment" +msgid_plural "%d comments" +msgstr[0] "" +msgstr[1] "" + +#: ../../Zotlabs/Lib/ThreadItem.php:331 +#, php-format +msgid "%d unseen" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:369 ../../Zotlabs/Lib/ThreadItem.php:370 +#, php-format +msgid "View %s's profile - %s" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:373 +msgid "to" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:374 ../../include/conversation.php:773 +msgid "via" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:375 +msgid "Wall-to-Wall" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:376 +msgid "via Wall-To-Wall:" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:390 ../../include/conversation.php:776 +#, php-format +msgid "from %s" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:393 ../../include/conversation.php:779 +#, php-format +msgid "last edited: %s" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:394 ../../include/conversation.php:780 +#, php-format +msgid "Expires: %s" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:403 +msgid "Attend" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:404 +msgid "Attendance Options" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:405 +msgid "Vote" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:406 +msgid "Voting Options" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:407 +msgid "Reply" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:432 ../../include/conversation.php:795 +msgid "Pinned post" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:434 ../../include/js_strings.php:38 +#: ../../include/conversation.php:797 +msgid "Unpin this post" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:434 ../../include/js_strings.php:37 +#: ../../include/conversation.php:797 +msgid "Pin this post" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:435 +msgid "Save Bookmarks" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:436 +msgid "Add to Calendar" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:447 +#: ../../Zotlabs/Module/Notifications.php:60 +msgid "Mark all seen" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:460 ../../Zotlabs/Module/Photos.php:1283 +#: ../../Zotlabs/Module/Settings/Channel.php:640 +#: ../../include/acl_selectors.php:140 ../../include/conversation.php:1478 +msgid "Close" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:465 ../../include/conversation.php:482 +msgid "This is an unsaved preview" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:466 ../../Zotlabs/Module/Photos.php:1097 +#: ../../include/conversation.php:800 +msgid "Please wait" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:549 ../../include/js_strings.php:7 +#, php-format +msgid "%s show all" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:900 ../../Zotlabs/Module/Photos.php:1113 +#: ../../Zotlabs/Module/Photos.php:1231 +msgid "This is you" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:902 ../../Zotlabs/Module/Photos.php:1115 +#: ../../Zotlabs/Module/Photos.php:1233 ../../include/js_strings.php:6 +msgid "Comment" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:903 +#: ../../Zotlabs/Module/Admin/Features.php:66 +#: ../../Zotlabs/Module/Admin/Logs.php:84 +#: ../../Zotlabs/Module/Admin/Profs.php:178 +#: ../../Zotlabs/Module/Admin/Themes.php:158 +#: ../../Zotlabs/Module/Admin/Account_edit.php:71 +#: ../../Zotlabs/Module/Admin/Accounts.php:168 +#: ../../Zotlabs/Module/Admin/Addons.php:436 +#: ../../Zotlabs/Module/Admin/Channels.php:154 +#: ../../Zotlabs/Module/Admin/Security.php:161 +#: ../../Zotlabs/Module/Admin/Site.php:285 ../../Zotlabs/Module/Cal.php:350 +#: ../../Zotlabs/Module/Expire.php:46 ../../Zotlabs/Module/Connedit.php:830 +#: ../../Zotlabs/Module/Appman.php:144 ../../Zotlabs/Module/Defperms.php:239 +#: ../../Zotlabs/Module/Editpost.php:94 ../../Zotlabs/Module/Events.php:524 +#: ../../Zotlabs/Module/Email_validation.php:40 +#: ../../Zotlabs/Module/Invite.php:165 ../../Zotlabs/Module/Filestorage.php:241 +#: ../../Zotlabs/Module/Thing.php:345 ../../Zotlabs/Module/Thing.php:398 +#: ../../Zotlabs/Module/Chat.php:203 ../../Zotlabs/Module/Chat.php:240 +#: ../../Zotlabs/Module/Lists.php:246 ../../Zotlabs/Module/Lists.php:262 +#: ../../Zotlabs/Module/Import_items.php:125 ../../Zotlabs/Module/Mitem.php:263 +#: ../../Zotlabs/Module/Finger.php:22 ../../Zotlabs/Module/Pconfig.php:120 +#: ../../Zotlabs/Module/Locs.php:124 ../../Zotlabs/Module/Connect.php:91 +#: ../../Zotlabs/Module/Mood.php:156 ../../Zotlabs/Module/Pdledit.php:105 +#: ../../Zotlabs/Module/Setup.php:321 ../../Zotlabs/Module/Setup.php:364 +#: ../../Zotlabs/Module/Profiles.php:721 ../../Zotlabs/Module/Poke.php:215 +#: ../../Zotlabs/Module/Photos.php:1076 ../../Zotlabs/Module/Photos.php:1116 +#: ../../Zotlabs/Module/Photos.php:1234 ../../Zotlabs/Module/Affinity.php:83 +#: ../../Zotlabs/Module/Ap_probe.php:21 +#: ../../Zotlabs/Module/Settings/Account.php:104 +#: ../../Zotlabs/Module/Settings/Featured.php:56 +#: ../../Zotlabs/Module/Settings/Network.php:41 +#: ../../Zotlabs/Module/Settings/Oauth.php:88 +#: ../../Zotlabs/Module/Settings/Permcats.php:116 +#: ../../Zotlabs/Module/Settings/Tokens.php:170 +#: ../../Zotlabs/Module/Settings/Features.php:59 +#: ../../Zotlabs/Module/Settings/Oauth2.php:105 +#: ../../Zotlabs/Module/Settings/Display.php:181 +#: ../../Zotlabs/Module/Settings/Channel.php:583 +#: ../../Zotlabs/Module/Sources.php:123 ../../Zotlabs/Module/Sources.php:160 +#: ../../Zotlabs/Module/Import.php:593 ../../Zotlabs/Module/Xchan.php:15 +#: ../../Zotlabs/Module/Zotfinger.php:25 +#: ../../Zotlabs/Module/Superblock.php:237 +#: ../../Zotlabs/Module/Content_filter.php:66 +#: ../../Zotlabs/Widget/Eventstools.php:16 ../../include/js_strings.php:22 +#: ../../view/theme/redbasic/php/config.php:93 +#: ../../extend/addon/a/logrot/logrot.php:36 +#: ../../extend/addon/a/nsfw/Mod_Nsfw.php:50 +#: ../../extend/addon/a/zotpost/Mod_zotpost.php:81 +#: ../../extend/addon/a/content_import/Mod_content_import.php:142 +#: ../../extend/addon/a/openstreetmap/openstreetmap.php:223 +#: ../../extend/addon/a/flashcards/Mod_Flashcards.php:262 +#: ../../extend/addon/a/faces/faces.php:125 +#: ../../extend/addon/a/faces/Mod_Faces.php:180 +msgid "Submit" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:905 ../../include/conversation.php:1407 +msgid "Bold" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:906 ../../include/conversation.php:1408 +msgid "Italic" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:907 ../../include/conversation.php:1409 +msgid "Underline" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:908 ../../include/conversation.php:1410 +msgid "Quote" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:909 ../../include/conversation.php:1411 +msgid "Code" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:910 +msgid "Image" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:911 ../../include/conversation.php:1412 +msgid "Attach/Upload file" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:912 +msgid "Insert Link" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:913 +msgid "Video" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:914 ../../Zotlabs/Module/Events.php:509 +#: ../../Zotlabs/Module/Webpages.php:263 ../../Zotlabs/Module/Photos.php:1117 +#: ../../include/conversation.php:1348 +msgid "Preview" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:915 ../../Zotlabs/Module/Lostpass.php:133 +#: ../../Zotlabs/Module/Pdledit.php:63 ../../Zotlabs/Module/Pdledit.php:71 +msgid "Reset" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:920 ../../Zotlabs/Module/Chat.php:211 +#: ../../include/conversation.php:1472 +msgid "Encrypt text" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:925 +msgid "Your full name (required)" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:926 +msgid "Your email address (required)" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:927 +msgid "Your website URL (optional)" +msgstr "" + +#: ../../Zotlabs/Lib/Libzotdir.php:165 +msgid "Directory Options" +msgstr "" + +#: ../../Zotlabs/Lib/Libzotdir.php:167 ../../include/nav.php:95 +msgid "Safe Mode" +msgstr "" + +#: ../../Zotlabs/Lib/Libzotdir.php:167 ../../Zotlabs/Lib/Libzotdir.php:168 +#: ../../Zotlabs/Lib/Libzotdir.php:169 ../../Zotlabs/Lib/Libzotdir.php:171 +#: ../../Zotlabs/Module/Admin/Site.php:251 ../../Zotlabs/Module/Api.php:99 +#: ../../Zotlabs/Module/Connedit.php:333 ../../Zotlabs/Module/Connedit.php:725 +#: ../../Zotlabs/Module/Defperms.php:171 ../../Zotlabs/Module/Events.php:501 +#: ../../Zotlabs/Module/Events.php:502 ../../Zotlabs/Module/Events.php:527 +#: ../../Zotlabs/Module/Filestorage.php:236 +#: ../../Zotlabs/Module/Filestorage.php:244 ../../Zotlabs/Module/Mitem.php:180 +#: ../../Zotlabs/Module/Mitem.php:181 ../../Zotlabs/Module/Mitem.php:260 +#: ../../Zotlabs/Module/Mitem.php:261 ../../Zotlabs/Module/Menu.php:165 +#: ../../Zotlabs/Module/Menu.php:224 ../../Zotlabs/Module/Profiles.php:679 +#: ../../Zotlabs/Module/Photos.php:689 ../../Zotlabs/Module/Ap_probe.php:20 +#: ../../Zotlabs/Module/Settings/Display.php:94 +#: ../../Zotlabs/Module/Settings/Channel.php:363 +#: ../../Zotlabs/Module/Sources.php:122 ../../Zotlabs/Module/Sources.php:157 +#: ../../Zotlabs/Module/Import.php:582 ../../Zotlabs/Module/Import.php:586 +#: ../../Zotlabs/Module/Import.php:587 ../../Zotlabs/Storage/Browser.php:424 +#: ../../include/conversation.php:1426 +#: ../../view/theme/redbasic/php/config.php:98 +#: ../../extend/addon/a/zotpost/Mod_zotpost.php:77 +#: ../../extend/addon/a/content_import/Mod_content_import.php:137 +#: ../../extend/addon/a/content_import/Mod_content_import.php:138 +#: ../../boot.php:1660 +msgid "No" +msgstr "" + +#: ../../Zotlabs/Lib/Libzotdir.php:167 ../../Zotlabs/Lib/Libzotdir.php:168 +#: ../../Zotlabs/Lib/Libzotdir.php:169 ../../Zotlabs/Lib/Libzotdir.php:171 +#: ../../Zotlabs/Module/Admin/Site.php:253 ../../Zotlabs/Module/Api.php:98 +#: ../../Zotlabs/Module/Connedit.php:333 ../../Zotlabs/Module/Defperms.php:171 +#: ../../Zotlabs/Module/Events.php:501 ../../Zotlabs/Module/Events.php:502 +#: ../../Zotlabs/Module/Events.php:527 ../../Zotlabs/Module/Filestorage.php:236 +#: ../../Zotlabs/Module/Filestorage.php:244 ../../Zotlabs/Module/Mitem.php:180 +#: ../../Zotlabs/Module/Mitem.php:181 ../../Zotlabs/Module/Mitem.php:260 +#: ../../Zotlabs/Module/Mitem.php:261 ../../Zotlabs/Module/Menu.php:165 +#: ../../Zotlabs/Module/Menu.php:224 ../../Zotlabs/Module/Profiles.php:679 +#: ../../Zotlabs/Module/Photos.php:689 ../../Zotlabs/Module/Ap_probe.php:20 +#: ../../Zotlabs/Module/Settings/Display.php:94 +#: ../../Zotlabs/Module/Settings/Channel.php:363 +#: ../../Zotlabs/Module/Sources.php:122 ../../Zotlabs/Module/Sources.php:157 +#: ../../Zotlabs/Module/Import.php:582 ../../Zotlabs/Module/Import.php:586 +#: ../../Zotlabs/Module/Import.php:587 ../../Zotlabs/Storage/Browser.php:424 +#: ../../include/conversation.php:1426 +#: ../../view/theme/redbasic/php/config.php:98 +#: ../../extend/addon/a/zotpost/Mod_zotpost.php:77 +#: ../../extend/addon/a/content_import/Mod_content_import.php:137 +#: ../../extend/addon/a/content_import/Mod_content_import.php:138 +#: ../../boot.php:1660 +msgid "Yes" +msgstr "" + +#: ../../Zotlabs/Lib/Libzotdir.php:168 +msgid "Groups Only" +msgstr "" + +#: ../../Zotlabs/Lib/Libzotdir.php:169 +msgid "Collections Only" +msgstr "" + +#: ../../Zotlabs/Lib/Libzotdir.php:171 +msgid "This Website Only" +msgstr "" + +#: ../../Zotlabs/Module/Lockview.php:75 +msgid "Remote privacy information not available." +msgstr "" + +#: ../../Zotlabs/Module/Lockview.php:96 +msgid "Visible to:" +msgstr "" + +#: ../../Zotlabs/Module/Calendar.php:93 ../../Zotlabs/Module/Events.php:135 +msgid "Event can not end before it has started." +msgstr "" + +#: ../../Zotlabs/Module/Calendar.php:95 ../../Zotlabs/Module/Calendar.php:103 +#: ../../Zotlabs/Module/Calendar.php:119 ../../Zotlabs/Module/Events.php:137 +#: ../../Zotlabs/Module/Events.php:146 ../../Zotlabs/Module/Events.php:167 +msgid "Unable to generate preview." +msgstr "" + +#: ../../Zotlabs/Module/Calendar.php:101 ../../Zotlabs/Module/Events.php:144 +msgid "Event title and start time are required." +msgstr "" + +#: ../../Zotlabs/Module/Calendar.php:117 ../../Zotlabs/Module/Calendar.php:257 +#: ../../Zotlabs/Module/Events.php:165 ../../Zotlabs/Module/Events.php:289 +msgid "Event not found." +msgstr "" + +#: ../../Zotlabs/Module/Calendar.php:252 ../../Zotlabs/Module/Like.php:348 +#: ../../Zotlabs/Module/Events.php:284 ../../Zotlabs/Module/Tagger.php:75 +#: ../../include/event.php:1211 ../../include/text.php:2111 +#: ../../include/conversation.php:123 +msgid "event" +msgstr "" + +#: ../../Zotlabs/Module/Calendar.php:419 ../../Zotlabs/Module/Events.php:671 +msgid "Edit event" +msgstr "" + +#: ../../Zotlabs/Module/Calendar.php:421 ../../Zotlabs/Module/Events.php:673 +msgid "Delete event" +msgstr "" + +#: ../../Zotlabs/Module/Calendar.php:435 ../../Zotlabs/Module/Cdav.php:947 +msgid "Link to source" +msgstr "" + +#: ../../Zotlabs/Module/Calendar.php:449 ../../Zotlabs/Module/Events.php:708 +msgid "calendar" +msgstr "" + +#: ../../Zotlabs/Module/Calendar.php:482 ../../Zotlabs/Module/Events.php:829 +msgid "Failed to remove event" +msgstr "" + +#: ../../Zotlabs/Module/Ping.php:375 +msgid "added your channel" +msgstr "" + +#: ../../Zotlabs/Module/Ping.php:399 +msgid "requires approval" +msgstr "" + +#: ../../Zotlabs/Module/Ping.php:408 +msgid "g A l F d" +msgstr "" + +#: ../../Zotlabs/Module/Ping.php:426 +msgid "[today]" +msgstr "" + +#: ../../Zotlabs/Module/Ping.php:436 +msgid "posted an event" +msgstr "" + +#: ../../Zotlabs/Module/Ping.php:469 +msgid "shared a file with you" +msgstr "" + +#: ../../Zotlabs/Module/Ping.php:497 +msgid "reported content" +msgstr "" + +#: ../../Zotlabs/Module/Ping.php:674 +msgid "Private group" +msgstr "" + +#: ../../Zotlabs/Module/Ping.php:674 +msgid "Public group" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Features.php:55 +#: ../../Zotlabs/Module/Admin/Features.php:56 +#: ../../Zotlabs/Module/Settings/Network.php:30 +#: ../../Zotlabs/Module/Settings/Features.php:47 +msgid "Off" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Features.php:55 +#: ../../Zotlabs/Module/Admin/Features.php:56 +#: ../../Zotlabs/Module/Settings/Network.php:30 +#: ../../Zotlabs/Module/Settings/Features.php:47 +msgid "On" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Features.php:56 +#, php-format +msgid "Lock feature %s" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Features.php:64 +msgid "Manage Additional Features" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Logs.php:28 +msgid "Log settings updated." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Logs.php:82 +#: ../../Zotlabs/Module/Admin/Themes.php:122 +#: ../../Zotlabs/Module/Admin/Themes.php:156 +#: ../../Zotlabs/Module/Admin/Accounts.php:166 +#: ../../Zotlabs/Module/Admin/Addons.php:339 +#: ../../Zotlabs/Module/Admin/Addons.php:434 +#: ../../Zotlabs/Module/Admin/Channels.php:152 +#: ../../Zotlabs/Module/Admin/Security.php:128 +#: ../../Zotlabs/Module/Admin/Site.php:283 ../../Zotlabs/Module/Admin.php:172 +msgid "Administration" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Logs.php:83 ../../Zotlabs/Widget/Admin.php:50 +#: ../../Zotlabs/Widget/Admin.php:60 +msgid "Logs" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Logs.php:85 +msgid "Clear" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Logs.php:91 +msgid "Debugging" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Logs.php:92 +msgid "Log file" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Logs.php:92 +msgid "" +"Must be writable by web server. Relative to your top-level webserver " +"directory." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Logs.php:93 +msgid "Log level" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Profs.php:89 +msgid "New Profile Field" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Profs.php:90 +#: ../../Zotlabs/Module/Admin/Profs.php:110 +msgid "Field nickname" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Profs.php:90 +#: ../../Zotlabs/Module/Admin/Profs.php:110 +msgid "System name of field" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Profs.php:91 +#: ../../Zotlabs/Module/Admin/Profs.php:111 +msgid "Input type" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Profs.php:92 +#: ../../Zotlabs/Module/Admin/Profs.php:112 +msgid "Field Name" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Profs.php:92 +#: ../../Zotlabs/Module/Admin/Profs.php:112 +msgid "Label on profile pages" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Profs.php:93 +#: ../../Zotlabs/Module/Admin/Profs.php:113 +msgid "Help text" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Profs.php:93 +#: ../../Zotlabs/Module/Admin/Profs.php:113 +msgid "Additional info (optional)" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Profs.php:103 +msgid "Field definition not found" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Profs.php:109 +msgid "Edit Profile Field" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Profs.php:168 +msgid "Profile Fields" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Profs.php:169 +msgid "Basic Profile Fields" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Profs.php:170 +msgid "Advanced Profile Fields" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Profs.php:170 +msgid "(In addition to basic fields)" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Profs.php:172 +msgid "All available fields" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Profs.php:173 +msgid "Custom Fields" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Profs.php:177 +msgid "Create Custom Field" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Queue.php:33 +msgid "Queue Statistics" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Queue.php:34 +msgid "Total Entries" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Queue.php:35 +msgid "Priority" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Queue.php:36 +msgid "Destination URL" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Queue.php:37 +msgid "Mark hub permanently offline" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Queue.php:38 +msgid "Empty queue for this hub" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Queue.php:39 +msgid "Last known contact" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Themes.php:26 +msgid "Theme settings updated." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Themes.php:61 +msgid "No themes found." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Themes.php:72 +#: ../../Zotlabs/Module/Admin/Addons.php:257 ../../Zotlabs/Module/Admin.php:82 +#: ../../Zotlabs/Module/Filestorage.php:34 ../../Zotlabs/Module/Thing.php:101 +#: ../../Zotlabs/Module/Viewsrc.php:27 ../../Zotlabs/Module/Display.php:50 +#: ../../Zotlabs/Module/Display.php:497 ../../Zotlabs/Module/Inspect.php:33 +#: ../../include/items.php:3463 +#: ../../extend/addon/a/flashcards/Mod_Flashcards.php:284 +#: ../../extend/addon/a/flashcards/Mod_Flashcards.php:285 +msgid "Item not found." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Themes.php:95 +#: ../../Zotlabs/Module/Admin/Addons.php:308 +msgid "Disable" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Themes.php:97 +#: ../../Zotlabs/Module/Admin/Addons.php:311 +msgid "Enable" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Themes.php:116 +msgid "Screenshot" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Themes.php:123 +#: ../../Zotlabs/Module/Admin/Themes.php:157 ../../Zotlabs/Widget/Admin.php:30 +msgid "Themes" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Themes.php:124 +#: ../../Zotlabs/Module/Admin/Addons.php:341 +msgid "Toggle" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Themes.php:134 +#: ../../Zotlabs/Module/Admin/Addons.php:349 +msgid "Author: " +msgstr "" + +#: ../../Zotlabs/Module/Admin/Themes.php:135 +#: ../../Zotlabs/Module/Admin/Addons.php:350 +msgid "Maintainer: " +msgstr "" + +#: ../../Zotlabs/Module/Admin/Themes.php:162 +msgid "[Experimental]" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Themes.php:163 +msgid "[Unsupported]" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Dbsync.php:19 +#: ../../Zotlabs/Module/Admin/Dbsync.php:59 +msgid "Update has been marked successful" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Dbsync.php:32 +#, php-format +msgid "Verification of update %s failed. Check system logs." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Dbsync.php:35 +#: ../../Zotlabs/Module/Admin/Dbsync.php:74 +#, php-format +msgid "Update %s was successfully applied." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Dbsync.php:39 +#, php-format +msgid "Verifying update %s did not return a status. Unknown if it succeeded." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Dbsync.php:42 +#, php-format +msgid "Update %s does not contain a verification function." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Dbsync.php:46 +#: ../../Zotlabs/Module/Admin/Dbsync.php:81 +#, php-format +msgid "Update function %s could not be found." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Dbsync.php:71 +#, php-format +msgid "Executing update procedure %s failed. Check system logs." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Dbsync.php:78 +#, php-format +msgid "" +"Update %s did not return a status. It cannot be determined if it was " +"successful." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Dbsync.php:99 +msgid "Failed Updates" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Dbsync.php:101 +msgid "Mark success (if update was manually applied)" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Dbsync.php:102 +msgid "Attempt to verify this update if a verification procedure exists" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Dbsync.php:103 +msgid "Attempt to execute this update step automatically" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Dbsync.php:108 +msgid "No failed updates." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Account_edit.php:29 +#, php-format +msgid "Password changed for account %d." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Account_edit.php:44 +msgid "Account settings updated." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Account_edit.php:59 +msgid "Account not found." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Account_edit.php:66 +msgid "Account Edit" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Account_edit.php:67 +msgid "New Password" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Account_edit.php:68 +msgid "New Password again" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Account_edit.php:69 +msgid "Account language (for emails)" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Account_edit.php:70 +msgid "Service class" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Accounts.php:37 +#, php-format +msgid "%s account blocked/unblocked" +msgid_plural "%s account blocked/unblocked" +msgstr[0] "" +msgstr[1] "" + +#: ../../Zotlabs/Module/Admin/Accounts.php:45 +#, php-format +msgid "%s account deleted" +msgid_plural "%s accounts deleted" +msgstr[0] "" +msgstr[1] "" + +#: ../../Zotlabs/Module/Admin/Accounts.php:83 +msgid "Account not found" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Accounts.php:94 ../../include/channel.php:2108 +#, php-format +msgid "Account '%s' deleted" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Accounts.php:102 +#, php-format +msgid "Account '%s' blocked" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Accounts.php:110 +#, php-format +msgid "Account '%s' unblocked" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Accounts.php:167 +#: ../../Zotlabs/Module/Admin/Accounts.php:180 +#: ../../Zotlabs/Module/Admin.php:116 ../../Zotlabs/Widget/Admin.php:25 +msgid "Accounts" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Accounts.php:169 +#: ../../Zotlabs/Module/Admin/Channels.php:155 +msgid "select all" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Accounts.php:170 +msgid "Registrations waiting for confirm" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Accounts.php:171 +msgid "Request date" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Accounts.php:171 +#: ../../Zotlabs/Module/Admin/Accounts.php:183 +#: ../../Zotlabs/Module/Cdav.php:1353 ../../Zotlabs/Module/Connedit.php:853 +#: ../../Zotlabs/Module/Profiles.php:789 ../../include/network.php:1512 +msgid "Email" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Accounts.php:172 +msgid "No registrations." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Accounts.php:173 +#: ../../Zotlabs/Module/Connections.php:337 ../../include/conversation.php:743 +msgid "Approve" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Accounts.php:174 +#: ../../Zotlabs/Module/Authorize.php:33 +msgid "Deny" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Accounts.php:176 +#: ../../Zotlabs/Module/Connedit.php:568 ../../Zotlabs/Widget/Sblock.php:19 +msgid "Block" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Accounts.php:177 +#: ../../Zotlabs/Module/Connedit.php:568 +msgid "Unblock" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Accounts.php:182 +msgid "ID" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Accounts.php:184 +msgid "All Channels" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Accounts.php:185 +msgid "Register date" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Accounts.php:186 +msgid "Last login" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Accounts.php:187 +msgid "Expires" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Accounts.php:188 +msgid "Service Class" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Accounts.php:190 +msgid "" +"Selected accounts will be deleted!\\n\\nEverything these accounts had posted " +"on this site will be permanently deleted!\\n\\nAre you sure?" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Accounts.php:191 +msgid "" +"The account {0} will be deleted!\\n\\nEverything this account has posted on " +"this site will be permanently deleted!\\n\\nAre you sure?" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Addons.php:287 +#, php-format +msgid "Plugin %s disabled." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Addons.php:292 +#, php-format +msgid "Plugin %s enabled." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Addons.php:340 +#: ../../Zotlabs/Module/Admin/Addons.php:435 ../../Zotlabs/Widget/Admin.php:29 +msgid "Addons" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Addons.php:351 +msgid "Minimum project version: " +msgstr "" + +#: ../../Zotlabs/Module/Admin/Addons.php:352 +msgid "Maximum project version: " +msgstr "" + +#: ../../Zotlabs/Module/Admin/Addons.php:353 +msgid "Minimum PHP version: " +msgstr "" + +#: ../../Zotlabs/Module/Admin/Addons.php:354 +msgid "Compatible Server Roles: " +msgstr "" + +#: ../../Zotlabs/Module/Admin/Addons.php:355 +msgid "Requires: " +msgstr "" + +#: ../../Zotlabs/Module/Admin/Addons.php:356 +#: ../../Zotlabs/Module/Admin/Addons.php:440 +msgid "Disabled - version incompatibility" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Addons.php:409 +msgid "Enter the public git repository URL of the addon repo." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Addons.php:410 +msgid "Addon repo git URL" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Addons.php:411 +msgid "Custom repo name" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Addons.php:411 +msgid "(optional)" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Addons.php:412 +msgid "Download Addon Repo" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Addons.php:419 +msgid "Install new repo" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Addons.php:421 +#: ../../Zotlabs/Module/Admin/Cover_photo.php:378 +#: ../../Zotlabs/Module/Admin/Profile_photo.php:471 +#: ../../Zotlabs/Module/Cdav.php:1055 ../../Zotlabs/Module/Cdav.php:1367 +#: ../../Zotlabs/Module/Connedit.php:867 +#: ../../Zotlabs/Module/Cover_photo.php:429 +#: ../../Zotlabs/Module/Editpost.php:120 +#: ../../Zotlabs/Module/Editlayout.php:144 +#: ../../Zotlabs/Module/Editwebpage.php:173 ../../Zotlabs/Module/Filer.php:53 +#: ../../Zotlabs/Module/Fbrowser.php:63 ../../Zotlabs/Module/Fbrowser.php:85 +#: ../../Zotlabs/Module/Card_edit.php:133 +#: ../../Zotlabs/Module/Editblock.php:145 ../../Zotlabs/Module/Profiles.php:803 +#: ../../Zotlabs/Module/Profile_photo.php:509 #: ../../Zotlabs/Module/Settings/Oauth.php:89 #: ../../Zotlabs/Module/Settings/Oauth.php:115 #: ../../Zotlabs/Module/Settings/Oauth2.php:106 #: ../../Zotlabs/Module/Settings/Oauth2.php:135 -#: ../../Zotlabs/Module/Editpost.php:120 -#: ../../Zotlabs/Module/Admin/Profile_photo.php:471 -#: ../../Zotlabs/Module/Admin/Addons.php:421 -#: ../../Zotlabs/Module/Admin/Cover_photo.php:378 -#: ../../Zotlabs/Module/Cdav.php:1055 ../../Zotlabs/Module/Cdav.php:1367 -#: ../../Zotlabs/Module/Profile_photo.php:509 -#: ../../Zotlabs/Module/Editblock.php:145 ../../Zotlabs/Module/Filer.php:53 -#: ../../Zotlabs/Module/Editlayout.php:144 -#: ../../Zotlabs/Module/Profiles.php:803 ../../Zotlabs/Module/Card_edit.php:133 -#: ../../Zotlabs/Module/Connedit.php:867 ../../Zotlabs/Module/Fbrowser.php:63 -#: ../../Zotlabs/Module/Fbrowser.php:85 -#: ../../Zotlabs/Module/Cover_photo.php:429 ../../Zotlabs/Module/Tagrm.php:15 -#: ../../Zotlabs/Module/Tagrm.php:138 ../../include/conversation.php:1418 -#: ../../include/conversation.php:1475 ../../include/conversation.php:1477 +#: ../../Zotlabs/Module/Tagrm.php:15 ../../Zotlabs/Module/Tagrm.php:138 +#: ../../include/conversation.php:1418 ../../include/conversation.php:1475 +#: ../../include/conversation.php:1477 msgid "Cancel" msgstr "" -#: ../../Zotlabs/Module/Settings/Features.php:47 -#: ../../Zotlabs/Module/Settings/Network.php:30 -#: ../../Zotlabs/Module/Admin/Features.php:55 -#: ../../Zotlabs/Module/Admin/Features.php:56 -msgid "Off" +#: ../../Zotlabs/Module/Admin/Addons.php:443 +msgid "Manage Repos" msgstr "" -#: ../../Zotlabs/Module/Settings/Features.php:47 -#: ../../Zotlabs/Module/Settings/Network.php:30 -#: ../../Zotlabs/Module/Admin/Features.php:55 -#: ../../Zotlabs/Module/Admin/Features.php:56 -msgid "On" +#: ../../Zotlabs/Module/Admin/Addons.php:444 +msgid "Installed Addon Repositories" msgstr "" -#: ../../Zotlabs/Module/Settings/Features.php:55 -msgid "Additional Features" +#: ../../Zotlabs/Module/Admin/Addons.php:445 +msgid "Install a New Addon Repository" msgstr "" -#: ../../Zotlabs/Module/Settings/Account.php:19 -msgid "Not valid email." +#: ../../Zotlabs/Module/Admin/Addons.php:452 +msgid "Switch branch" msgstr "" -#: ../../Zotlabs/Module/Settings/Account.php:22 -msgid "Protected email address. Cannot change to that email." +#: ../../Zotlabs/Module/Admin/Addons.php:453 +#: ../../Zotlabs/Module/Photos.php:1016 ../../Zotlabs/Module/Tagrm.php:137 +#: ../../Zotlabs/Module/Superblock.php:216 +#: ../../Zotlabs/Module/Superblock.php:233 +msgid "Remove" msgstr "" -#: ../../Zotlabs/Module/Settings/Account.php:31 -msgid "System failure storing new email. Please try again." +#: ../../Zotlabs/Module/Admin/Channels.php:35 +#, php-format +msgid "%s channel censored/uncensored" +msgid_plural "%s channels censored/uncensored" +msgstr[0] "" +msgstr[1] "" + +#: ../../Zotlabs/Module/Admin/Channels.php:44 +#, php-format +msgid "%s channel code allowed/disallowed" +msgid_plural "%s channels code allowed/disallowed" +msgstr[0] "" +msgstr[1] "" + +#: ../../Zotlabs/Module/Admin/Channels.php:50 +#, php-format +msgid "%s channel deleted" +msgid_plural "%s channels deleted" +msgstr[0] "" +msgstr[1] "" + +#: ../../Zotlabs/Module/Admin/Channels.php:69 +msgid "Channel not found" msgstr "" -#: ../../Zotlabs/Module/Settings/Account.php:48 -msgid "Password verification failed." +#: ../../Zotlabs/Module/Admin/Channels.php:79 +#, php-format +msgid "Channel '%s' deleted" msgstr "" -#: ../../Zotlabs/Module/Settings/Account.php:55 -msgid "Passwords do not match. Password unchanged." +#: ../../Zotlabs/Module/Admin/Channels.php:91 +#, php-format +msgid "Channel '%s' censored" msgstr "" -#: ../../Zotlabs/Module/Settings/Account.php:59 -msgid "Empty passwords are not allowed. Password unchanged." +#: ../../Zotlabs/Module/Admin/Channels.php:91 +#, php-format +msgid "Channel '%s' uncensored" msgstr "" -#: ../../Zotlabs/Module/Settings/Account.php:73 -msgid "Password changed." +#: ../../Zotlabs/Module/Admin/Channels.php:102 +#, php-format +msgid "Channel '%s' code allowed" msgstr "" -#: ../../Zotlabs/Module/Settings/Account.php:75 -msgid "Password update failed. Please try again." +#: ../../Zotlabs/Module/Admin/Channels.php:102 +#, php-format +msgid "Channel '%s' code disallowed" msgstr "" -#: ../../Zotlabs/Module/Settings/Account.php:100 -msgid "Account Settings" +#: ../../Zotlabs/Module/Admin/Channels.php:153 +#: ../../Zotlabs/Module/Admin.php:134 ../../Zotlabs/Module/Manage.php:180 +#: ../../Zotlabs/Widget/Admin.php:26 ../../include/nav.php:88 +msgid "Channels" msgstr "" -#: ../../Zotlabs/Module/Settings/Account.php:101 -msgid "Current Password" +#: ../../Zotlabs/Module/Admin/Channels.php:157 +#: ../../Zotlabs/Module/Connedit.php:584 ../../Zotlabs/Module/Directory.php:365 +msgid "Censor" msgstr "" -#: ../../Zotlabs/Module/Settings/Account.php:102 -msgid "Enter New Password" +#: ../../Zotlabs/Module/Admin/Channels.php:158 +#: ../../Zotlabs/Module/Connedit.php:584 ../../Zotlabs/Module/Directory.php:365 +msgid "Uncensor" msgstr "" -#: ../../Zotlabs/Module/Settings/Account.php:103 -msgid "Confirm New Password" +#: ../../Zotlabs/Module/Admin/Channels.php:159 +msgid "Allow Code" msgstr "" -#: ../../Zotlabs/Module/Settings/Account.php:103 -msgid "Leave password fields blank unless changing" +#: ../../Zotlabs/Module/Admin/Channels.php:160 +msgid "Disallow Code" msgstr "" -#: ../../Zotlabs/Module/Settings/Account.php:105 -msgid "Email Address:" +#: ../../Zotlabs/Module/Admin/Channels.php:161 ../../include/nav.php:385 +#: ../../include/conversation.php:1923 +msgid "Channel" msgstr "" -#: ../../Zotlabs/Module/Settings/Account.php:106 -#: ../../Zotlabs/Module/Removeaccount.php:70 -msgid "Remove Account" +#: ../../Zotlabs/Module/Admin/Channels.php:165 +msgid "UID" msgstr "" -#: ../../Zotlabs/Module/Settings/Account.php:107 -msgid "Remove this account including all its channels" +#: ../../Zotlabs/Module/Admin/Channels.php:166 +#: ../../Zotlabs/Module/Cdav.php:1349 ../../Zotlabs/Module/Connedit.php:849 +#: ../../Zotlabs/Module/Connections.php:231 ../../Zotlabs/Module/Chat.php:249 +#: ../../Zotlabs/Module/Lists.php:250 +#: ../../Zotlabs/Module/Settings/Oauth.php:90 +#: ../../Zotlabs/Module/Settings/Oauth.php:116 +#: ../../Zotlabs/Module/Settings/Oauth2.php:107 +#: ../../Zotlabs/Module/Settings/Oauth2.php:136 +#: ../../Zotlabs/Module/Sharedwithme.php:104 +#: ../../Zotlabs/Storage/Browser.php:302 +#: ../../Zotlabs/Widget/Activity_filter.php:289 +msgid "Name" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Channels.php:167 +#: ../../Zotlabs/Module/Cdav.php:1356 ../../Zotlabs/Module/Connedit.php:856 +#: ../../Zotlabs/Module/Locs.php:121 ../../Zotlabs/Module/Profiles.php:500 +#: ../../Zotlabs/Module/Profiles.php:792 +msgid "Address" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Channels.php:169 +msgid "" +"Selected channels will be deleted!\\n\\nEverything that was posted in these " +"channels on this site will be permanently deleted!\\n\\nAre you sure?" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Channels.php:170 +msgid "" +"The channel {0} will be deleted!\\n\\nEverything that was posted in this " +"channel on this site will be permanently deleted!\\n\\nAre you sure?" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Security.php:119 +msgid "" +"By default, unfiltered HTML is allowed in embedded media. This is inherently " +"insecure." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Security.php:122 +msgid "" +"The recommended setting is to only allow unfiltered HTML from the following " +"sites:" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Security.php:123 +msgid "" +"https://youtube.com/
https://www.youtube.com/
https://youtu.be/" +"
https://vimeo.com/
https://soundcloud.com/
" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Security.php:124 +msgid "" +"All other embedded content will be filtered, unless " +"embedded content from that site is explicitly blocked." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Security.php:129 +#: ../../Zotlabs/Widget/Admin.php:27 +msgid "Security" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Security.php:131 +msgid "Block public" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Security.php:131 +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:132 +msgid "Block public search" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Security.php:132 +msgid "" +"Prevent access to search content unless you are currently authenticated." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Security.php:133 +msgid "Hide local directory" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Security.php:133 +msgid "Only use the global directory" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Security.php:134 +msgid "Provide a cloud root directory" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Security.php:134 +msgid "" +"The cloud root directory lists all channel names which provide public files" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Security.php:135 +msgid "Show total disk space available to cloud uploads" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Security.php:136 +msgid "Allow SVG thumbnails in file browser" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Security.php:136 +msgid "WARNING: SVG images may contain malicious code." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Security.php:138 +msgid "Allow embedded (inline) PDF files" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Security.php:140 +msgid "Set \"Transport Security\" HTTP header" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Security.php:141 +msgid "Set \"Content Security Policy\" HTTP header" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Security.php:142 +msgid "Allowed email domains" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Security.php:142 +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:143 +msgid "Not allowed email domains" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Security.php:143 +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:144 +msgid "Allow communications only from these sites" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Security.php:144 +#: ../../Zotlabs/Module/Admin/Security.php:149 +msgid "" +"One site per line. Leave empty to allow communication from anywhere by " +"default" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Security.php:145 +msgid "Block communications from these sites" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Security.php:146 +msgid "Allow communications only from these channels" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Security.php:146 +#: ../../Zotlabs/Module/Admin/Security.php:151 +msgid "" +"One channel (hash) per line. Leave empty to allow from any channel by default" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Security.php:147 +msgid "Block communications from these channels" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Security.php:149 +msgid "Allow public stream communications only from these sites" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Security.php:150 +msgid "Block public stream communications from these sites" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Security.php:151 +msgid "Allow public stream communications only from these channels" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Security.php:152 +msgid "Block public stream communications from these channels" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Security.php:155 +msgid "Only allow embeds from secure (SSL) websites and links." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Security.php:156 +msgid "Allow unfiltered embedded HTML content only from these domains" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Security.php:156 +msgid "One site per line. By default embedded content is filtered." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Security.php:157 +msgid "Block embedded HTML from these domains" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Cover_photo.php:63 +#: ../../Zotlabs/Module/Admin/Profile_photo.php:66 +#: ../../Zotlabs/Module/Cover_photo.php:63 +#: ../../Zotlabs/Module/Profile_photo.php:63 +msgid "Image uploaded but image cropping failed." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Cover_photo.php:174 +#: ../../Zotlabs/Module/Admin/Cover_photo.php:261 +#: ../../Zotlabs/Module/Cover_photo.php:174 +#: ../../Zotlabs/Module/Cover_photo.php:265 +msgid "Cover Photos" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Cover_photo.php:198 +#: ../../Zotlabs/Module/Admin/Profile_photo.php:143 +#: ../../Zotlabs/Module/Cover_photo.php:198 +#: ../../Zotlabs/Module/Profile_photo.php:140 +msgid "Image resize failed." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Cover_photo.php:208 +#: ../../Zotlabs/Module/Admin/Profile_photo.php:188 +#: ../../Zotlabs/Module/Cover_photo.php:212 +#: ../../Zotlabs/Module/Profile_photo.php:223 ../../include/photos.php:196 +msgid "Unable to process image" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Cover_photo.php:316 +#: ../../Zotlabs/Module/Admin/Cover_photo.php:332 +#: ../../Zotlabs/Module/Admin/Profile_photo.php:352 +#: ../../Zotlabs/Module/Admin/Profile_photo.php:392 +#: ../../Zotlabs/Module/Cover_photo.php:368 +#: ../../Zotlabs/Module/Cover_photo.php:384 +#: ../../Zotlabs/Module/Profile_photo.php:383 +#: ../../Zotlabs/Module/Profile_photo.php:431 +msgid "Photo not available." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Cover_photo.php:369 +#: ../../Zotlabs/Module/Cover_photo.php:420 +msgid "Your cover photo may be visible to anybody on the internet" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Cover_photo.php:371 +#: ../../Zotlabs/Module/Admin/Profile_photo.php:462 +#: ../../Zotlabs/Module/Cover_photo.php:422 +#: ../../Zotlabs/Module/Profile_photo.php:500 +msgid "Upload File:" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Cover_photo.php:372 +#: ../../Zotlabs/Module/Admin/Profile_photo.php:463 +#: ../../Zotlabs/Module/Cover_photo.php:423 +#: ../../Zotlabs/Module/Profile_photo.php:501 +msgid "Select a profile:" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Cover_photo.php:373 +#: ../../Zotlabs/Module/Cover_photo.php:424 +msgid "Change Cover Photo" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Cover_photo.php:374 +#: ../../Zotlabs/Module/Admin/Profile_photo.php:465 +#: ../../Zotlabs/Module/Cover_photo.php:425 +#: ../../Zotlabs/Module/Embedphotos.php:227 +#: ../../Zotlabs/Module/Profile_photo.php:503 +#: ../../Zotlabs/Module/Photos.php:704 ../../Zotlabs/Storage/Browser.php:411 +#: ../../Zotlabs/Widget/Portfolio.php:110 ../../Zotlabs/Widget/Album.php:101 +#: ../../Zotlabs/Widget/Cdav.php:146 ../../Zotlabs/Widget/Cdav.php:182 +msgid "Upload" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Cover_photo.php:376 +#: ../../Zotlabs/Module/Admin/Cover_photo.php:377 +#: ../../Zotlabs/Module/Admin/Profile_photo.php:469 +#: ../../Zotlabs/Module/Admin/Profile_photo.php:470 +#: ../../Zotlabs/Module/Cover_photo.php:427 +#: ../../Zotlabs/Module/Cover_photo.php:428 +#: ../../Zotlabs/Module/Profile_photo.php:507 +#: ../../Zotlabs/Module/Profile_photo.php:508 +msgid "Use a photo from your albums" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Cover_photo.php:379 +#: ../../Zotlabs/Module/Admin/Profile_photo.php:472 +#: ../../Zotlabs/Module/Cover_photo.php:430 +#: ../../Zotlabs/Module/Profile_photo.php:510 +#: ../../include/conversation.php:1419 ../../include/conversation.php:1474 +#: ../../include/conversation.php:1476 +msgid "OK" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Cover_photo.php:380 +#: ../../Zotlabs/Module/Admin/Profile_photo.php:473 +#: ../../Zotlabs/Module/Cover_photo.php:431 +#: ../../Zotlabs/Module/Profile_photo.php:511 +#: ../../include/conversation.php:1334 +msgid "Choose images to embed" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Cover_photo.php:381 +#: ../../Zotlabs/Module/Admin/Profile_photo.php:474 +#: ../../Zotlabs/Module/Cover_photo.php:432 +#: ../../Zotlabs/Module/Profile_photo.php:512 +#: ../../include/conversation.php:1335 +msgid "Choose an album" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Cover_photo.php:382 +#: ../../Zotlabs/Module/Admin/Profile_photo.php:475 +#: ../../Zotlabs/Module/Cover_photo.php:433 +#: ../../Zotlabs/Module/Profile_photo.php:513 +msgid "Choose a different album" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Cover_photo.php:383 +#: ../../Zotlabs/Module/Admin/Profile_photo.php:476 +#: ../../Zotlabs/Module/Cover_photo.php:434 +#: ../../Zotlabs/Module/Profile_photo.php:514 +#: ../../include/conversation.php:1337 +msgid "Error getting album list" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Cover_photo.php:384 +#: ../../Zotlabs/Module/Admin/Profile_photo.php:477 +#: ../../Zotlabs/Module/Cover_photo.php:435 +#: ../../Zotlabs/Module/Profile_photo.php:515 +#: ../../include/conversation.php:1338 +msgid "Error getting photo link" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Cover_photo.php:385 +#: ../../Zotlabs/Module/Admin/Profile_photo.php:478 +#: ../../Zotlabs/Module/Cover_photo.php:436 +#: ../../Zotlabs/Module/Profile_photo.php:516 +#: ../../include/conversation.php:1339 +msgid "Error getting album" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Cover_photo.php:387 +#: ../../Zotlabs/Module/Admin/Profile_photo.php:480 +#: ../../Zotlabs/Module/Cover_photo.php:438 +#: ../../Zotlabs/Module/Profile_photo.php:518 +msgid "Select previously uploaded photo" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Cover_photo.php:404 +#: ../../Zotlabs/Module/Admin/Profile_photo.php:497 +#: ../../Zotlabs/Module/Cover_photo.php:455 +#: ../../Zotlabs/Module/Profile_photo.php:535 +msgid "Crop Image" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Cover_photo.php:405 +#: ../../Zotlabs/Module/Admin/Profile_photo.php:498 +#: ../../Zotlabs/Module/Cover_photo.php:456 +#: ../../Zotlabs/Module/Profile_photo.php:536 +msgid "Please adjust the image cropping for optimum viewing." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Cover_photo.php:407 +#: ../../Zotlabs/Module/Admin/Profile_photo.php:500 +#: ../../Zotlabs/Module/Cover_photo.php:458 +#: ../../Zotlabs/Module/Profile_photo.php:538 +msgid "Done Editing" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:162 +msgid "Site settings updated." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:189 ../../include/text.php:3246 +#: ../../view/theme/redbasic/php/config.php:15 +msgid "Default" msgstr "" -#: ../../Zotlabs/Module/Settings/Display.php:124 #: ../../Zotlabs/Module/Admin/Site.php:200 +#: ../../Zotlabs/Module/Settings/Display.php:124 #, php-format msgid "%s - (Incompatible)" msgstr "" -#: ../../Zotlabs/Module/Settings/Display.php:133 +#: ../../Zotlabs/Module/Admin/Site.php:207 +msgid "mobile" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:209 +msgid "experimental" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:211 +msgid "unsupported" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:252 +msgid "Yes - with approval" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:258 +msgid "My site is not a public server" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:259 +msgid "My site provides free public access" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:260 +msgid "My site provides paid public access" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:261 +msgid "My site provides free public access and premium paid plans" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:276 +msgid "Default permission role for new accounts" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:276 +msgid "" +"This role will be used for the first channel created after registration." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:284 ../../Zotlabs/Widget/Admin.php:22 +msgid "Site" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:286 +msgid "Site Configuration" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:287 +#: ../../Zotlabs/Module/Register.php:283 +msgid "Registration" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:288 +msgid "File upload" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:289 +msgid "Policies" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:290 +#: ../../Zotlabs/Widget/Findpeople.php:23 +msgid "Advanced" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:292 +msgid "Site name" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:293 +msgid "Administrator Information" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:293 +msgid "" +"Contact information for site administrators. Displayed on siteinfo page. " +"BBCode may be used here." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:294 ../../Zotlabs/Module/Siteinfo.php:33 +msgid "Site Information" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:294 +msgid "" +"Publicly visible description of this site. Displayed on siteinfo page. " +"BBCode may be used here." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:295 +msgid "System language" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:296 +msgid "System theme" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:296 +msgid "" +"Default system theme - may be over-ridden by user profiles - change theme settings" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:299 +msgid "ActivityPub protocol" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:299 +msgid "Provides access to software supporting the ActivityPub protocol." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:300 +msgid "Maximum image size" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:300 +msgid "" +"Maximum size in bytes of uploaded images. Default is 0, which means no " +"limits." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:301 +msgid "Cache all public images" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:301 +msgid "If disabled, proxy non-SSL images, but do not store locally" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:302 +msgid "Does this site allow new member registration?" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:303 +msgid "Invitation only" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:303 +msgid "" +"Only allow new member registrations with an invitation code. New member " +"registration must be allowed for this to work." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:304 +msgid "Minimum age" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:304 +msgid "Minimum age (in years) for who may register on this site." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:305 +msgid "Which best describes the types of account offered by this hub?" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:305 +msgid "" +"If a public server policy is selected, this information may be displayed on " +"the public server site list." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:306 +msgid "Register text" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:306 +msgid "Will be displayed prominently on the registration page." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:308 +msgid "Site homepage to show visitors (default: login box)" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:308 +msgid "" +"example: 'public' to show public stream, 'page/sys/home' to show a system " +"webpage called 'home' or 'include:home.html' to include a file." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:309 +msgid "Preserve site homepage URL" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:309 +msgid "" +"Present the site homepage in a frame at the original location instead of " +"redirecting" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:310 +msgid "Accounts abandoned after x days" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:310 +msgid "" +"Will not waste system resources polling external sites for abandonded " +"accounts. Enter 0 for no time limit." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:311 +msgid "Block directory from visitors" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:311 +msgid "Only allow authenticated access to directory." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:312 +msgid "Verify Email Addresses" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:312 +msgid "" +"Check to verify email addresses used in account registration (recommended)." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:313 +msgid "Force publish in directory" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:313 +msgid "" +"Check to force all profiles on this site to be listed in the site directory." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:314 +msgid "Public stream" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:314 +msgid "" +"Provide access to public content from other sites. Warning: this content is " +"unmoderated." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:315 +msgid "Site only Public stream" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:315 +msgid "" +"Provide access to public content originating only from this site if Public " +"stream is disabled." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:316 +msgid "Allow anybody on the internet to access the Public stream" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:316 +msgid "" +"Default is to only allow viewing by site members. Warning: this content is " +"unmoderated." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:317 +msgid "Show numbers of likes and dislikes in conversations" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:317 +msgid "" +"If disabled, the presence of likes and dislikes will be shown, but without " +"totals." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:318 +msgid "Only import Public stream posts with this text" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:318 +#: ../../Zotlabs/Module/Admin/Site.php:319 +msgid "" +"words one per line or #tags or /patterns/ or lang=xx, leave blank to import " +"all posts" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:319 +msgid "Do not import Public stream posts with this text" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:320 +msgid "Maximum number of imported friends of friends" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:320 +msgid "" +"Warning: higher numbers will improve the quality of friend suggestions and " +"directory results but can exponentially increase resource usage" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:321 +msgid "Login on Homepage" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:321 +msgid "" +"Present a login box to visitors on the home page if no other content has " +"been configured." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:322 +msgid "Enable context help" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:322 +msgid "" +"Display contextual help for the current page when the help button is pressed." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:323 +msgid "Reply-to email address for system generated email." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:324 +msgid "Sender (From) email address for system generated email." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:325 +msgid "Display name of email sender for system generated email." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:326 +msgid "Directory Server URL" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:326 +msgid "Default directory server" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:327 +msgid "Proxy user" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:328 +msgid "Proxy URL" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:329 +msgid "Network timeout" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:329 +msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:330 +msgid "Delivery interval" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:330 +msgid "" +"Delay background delivery processes by this many seconds to reduce system " +"load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 " +"for large dedicated servers." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:331 +msgid "Deliveries per process" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:331 +msgid "" +"Number of deliveries to attempt in a single operating system process. Adjust " +"if necessary to tune system performance. Recommend: 1-5." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:332 +msgid "Queue Threshold" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:332 +msgid "" +"Always defer immediate delivery if queue contains more than this number of " +"entries." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:333 +msgid "Poll interval" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:333 +msgid "" +"Delay background polling processes by this many seconds to reduce system " +"load. If 0, use delivery interval." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:334 +msgid "Path to ImageMagick convert program" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:334 +msgid "" +"If set, use this program to generate photo thumbnails for huge images ( > " +"4000 pixels in either dimension), otherwise memory exhaustion may occur. " +"Example: /usr/bin/convert" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:335 +msgid "Maximum Load Average" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:335 +msgid "" +"Maximum system load before delivery and poll processes are deferred - " +"default 50." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:336 +msgid "Expiration period in days for imported streams and cached images" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:336 +msgid "0 for no expiration of imported content" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:337 +msgid "" +"Do not expire any posts which have comments less than this many days ago" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:338 +msgid "" +"Public servers: Optional landing (marketing) webpage for new registrants" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:338 #, php-format -msgid "%s - (Experimental)" +msgid "Create this page first. Default is %s/register" msgstr "" -#: ../../Zotlabs/Module/Settings/Display.php:176 -msgid "Display Settings" +#: ../../Zotlabs/Module/Admin/Site.php:339 +msgid "Page to display after creating a new channel" msgstr "" -#: ../../Zotlabs/Module/Settings/Display.php:177 -msgid "Theme Settings" +#: ../../Zotlabs/Module/Admin/Site.php:339 +msgid "Default: profiles" msgstr "" -#: ../../Zotlabs/Module/Settings/Display.php:178 -msgid "Custom Theme Settings" +#: ../../Zotlabs/Module/Admin/Site.php:340 +msgid "Site location" msgstr "" -#: ../../Zotlabs/Module/Settings/Display.php:179 -msgid "Content Settings" +#: ../../Zotlabs/Module/Admin/Site.php:340 +msgid "Region or country - shared with other sites" msgstr "" -#: ../../Zotlabs/Module/Settings/Display.php:185 -msgid "Display Theme:" +#: ../../Zotlabs/Module/Admin/Profile_photo.php:119 +#: ../../Zotlabs/Module/Admin/Profile_photo.php:252 +#: ../../Zotlabs/Module/Profile_photo.php:116 +#: ../../Zotlabs/Module/Profile_photo.php:287 +#: ../../include/photo_factory.php:525 +msgid "Profile Photos" msgstr "" -#: ../../Zotlabs/Module/Settings/Display.php:186 -msgid "Select scheme" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Display.php:188 -msgid "Preload images before rendering the page" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Display.php:188 +#: ../../Zotlabs/Module/Admin/Profile_photo.php:184 +#: ../../Zotlabs/Module/Profile_photo.php:216 msgid "" -"The subjective page load time will be longer but the page will be ready when " -"displayed" +"Shift-reload the page or clear browser cache if the new photo does not " +"display immediately." msgstr "" -#: ../../Zotlabs/Module/Settings/Display.php:189 -msgid "Enable user zoom on mobile devices" +#: ../../Zotlabs/Module/Admin/Profile_photo.php:266 +#: ../../Zotlabs/Module/Profile_photo.php:301 +msgid "Image upload failed." msgstr "" -#: ../../Zotlabs/Module/Settings/Display.php:190 -msgid "Update browser every xx seconds" +#: ../../Zotlabs/Module/Admin/Profile_photo.php:285 +#: ../../Zotlabs/Module/Profile_photo.php:320 +msgid "Unable to process image." msgstr "" -#: ../../Zotlabs/Module/Settings/Display.php:190 -msgid "Minimum of 10 seconds, no maximum" +#: ../../Zotlabs/Module/Admin/Profile_photo.php:460 +#: ../../Zotlabs/Module/Profile_photo.php:498 +msgid "" +"Your default profile photo is visible to anybody on the internet. Profile " +"photos for alternate profiles will inherit the permissions of the profile" msgstr "" -#: ../../Zotlabs/Module/Settings/Display.php:191 -msgid "Maximum number of conversations to load at any time:" +#: ../../Zotlabs/Module/Admin/Profile_photo.php:460 +msgid "" +"Your site photo is visible to anybody on the internet and may be distributed " +"to other websites." msgstr "" -#: ../../Zotlabs/Module/Settings/Display.php:191 -msgid "Maximum of 100 items" +#: ../../Zotlabs/Module/Admin/Profile_photo.php:464 +msgid "Use Photo for Site Logo" msgstr "" -#: ../../Zotlabs/Module/Settings/Display.php:192 -msgid "Show emoticons (smilies) as images" +#: ../../Zotlabs/Module/Admin/Profile_photo.php:464 +msgid "Change Site Logo" msgstr "" -#: ../../Zotlabs/Module/Settings/Display.php:193 -msgid "Provide channel menu in navigation bar" +#: ../../Zotlabs/Module/Admin/Profile_photo.php:465 +#: ../../Zotlabs/Module/Profile_photo.php:503 +msgid "Use" msgstr "" -#: ../../Zotlabs/Module/Settings/Display.php:193 -msgid "Default: channel menu located in app menu" +#: ../../Zotlabs/Module/Channel.php:49 ../../Zotlabs/Module/Chat.php:26 +msgid "You must be logged in to see this page." msgstr "" -#: ../../Zotlabs/Module/Settings/Display.php:194 -msgid "System Page Layout Editor - (advanced)" +#: ../../Zotlabs/Module/Channel.php:73 ../../Zotlabs/Module/Hcard.php:47 +#: ../../Zotlabs/Module/Profile.php:59 +msgid "Only posts" msgstr "" -#: ../../Zotlabs/Module/Settings/Display.php:197 -msgid "Channel page max height of content (in pixels)" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Display.php:197 -#: ../../Zotlabs/Module/Settings/Display.php:198 -msgid "click to expand content exceeding this height" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Display.php:198 -msgid "Stream page max height of content (in pixels)" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Tokens.php:33 +#: ../../Zotlabs/Module/Channel.php:176 #, php-format -msgid "This channel is limited to %d tokens" +msgid "This is the home page of %s." msgstr "" -#: ../../Zotlabs/Module/Settings/Tokens.php:39 -msgid "Name and Password are required." +#: ../../Zotlabs/Module/Channel.php:236 +msgid "Insufficient permissions. Request redirected to profile page." msgstr "" -#: ../../Zotlabs/Module/Settings/Tokens.php:81 -msgid "Token saved." +#: ../../Zotlabs/Module/Channel.php:253 ../../Zotlabs/Module/Stream.php:200 +msgid "Search Results For:" msgstr "" -#: ../../Zotlabs/Module/Settings/Tokens.php:117 +#: ../../Zotlabs/Module/Channel.php:293 ../../Zotlabs/Module/Hq.php:137 +#: ../../Zotlabs/Module/Stream.php:238 ../../Zotlabs/Module/Pubstream.php:84 +#: ../../Zotlabs/Module/Rpost.php:143 ../../Zotlabs/Module/Display.php:85 +msgid "Reset form" +msgstr "" + +#: ../../Zotlabs/Module/Channel.php:565 ../../Zotlabs/Module/Display.php:420 msgid "" -"Use this form to create temporary access identifiers to share things with " -"non-members. These identities may be used in Access Control Lists and " -"visitors may login using these credentials to access private content." +"You must enable javascript for your browser to be able to view this content." msgstr "" -#: ../../Zotlabs/Module/Settings/Tokens.php:119 +#: ../../Zotlabs/Module/Channel.php:613 +#, php-format +msgid "This post was published on the home page of %s." +msgstr "" + +#: ../../Zotlabs/Module/Api.php:74 ../../Zotlabs/Module/Api.php:95 +msgid "Authorize application connection" +msgstr "" + +#: ../../Zotlabs/Module/Api.php:75 +msgid "Return to your app and insert this Security Code:" +msgstr "" + +#: ../../Zotlabs/Module/Api.php:85 +msgid "Please login to continue." +msgstr "" + +#: ../../Zotlabs/Module/Api.php:97 msgid "" -"You may also provide dropbox style access links to friends and " -"associates by adding the Login Password to any specific site URL as shown. " -"Examples:" +"Do you want to authorize this application to access your posts and contacts, " +"and/or create new posts for you?" msgstr "" -#: ../../Zotlabs/Module/Settings/Tokens.php:159 -msgid "Login Name" +#: ../../Zotlabs/Module/Apporder.php:45 +msgid "Change Order of Pinned Navbar Apps" msgstr "" -#: ../../Zotlabs/Module/Settings/Tokens.php:160 -msgid "Login Password" +#: ../../Zotlabs/Module/Apporder.php:45 +msgid "Change Order of App Tray Apps" msgstr "" -#: ../../Zotlabs/Module/Settings/Tokens.php:161 -msgid "Expires (yyyy-mm-dd)" +#: ../../Zotlabs/Module/Apporder.php:46 +msgid "" +"Use arrows to move the corresponding app left (top) or right (bottom) in the " +"navbar" msgstr "" -#: ../../Zotlabs/Module/Settings/Tokens.php:162 -#: ../../Zotlabs/Module/Connedit.php:833 -msgid "Their Settings" +#: ../../Zotlabs/Module/Apporder.php:47 +msgid "Use arrows to move the corresponding app up or down in the app tray" msgstr "" -#: ../../Zotlabs/Module/Settings/Tokens.php:163 -#: ../../Zotlabs/Module/Settings/Permcats.php:109 -#: ../../Zotlabs/Module/Defperms.php:240 ../../Zotlabs/Module/Connedit.php:834 -msgid "My Settings" +#: ../../Zotlabs/Module/Apps.php:50 ../../Zotlabs/Widget/Appstore.php:14 +#: ../../include/nav.php:307 +msgid "Available Apps" msgstr "" -#: ../../Zotlabs/Module/Settings/Tokens.php:165 +#: ../../Zotlabs/Module/Apps.php:50 +msgid "Installed Apps" +msgstr "" + +#: ../../Zotlabs/Module/Apps.php:53 +msgid "Manage apps" +msgstr "" + +#: ../../Zotlabs/Module/Apps.php:54 +msgid "Create Custom App" +msgstr "" + +#: ../../Zotlabs/Module/Common.php:18 +msgid "No channel." +msgstr "" + +#: ../../Zotlabs/Module/Common.php:49 +msgid "No connections in common." +msgstr "" + +#: ../../Zotlabs/Module/Common.php:69 +msgid "View Common Connections" +msgstr "" + +#: ../../Zotlabs/Module/Attach.php:13 +msgid "Item not available." +msgstr "" + +#: ../../Zotlabs/Module/Authorize.php:17 +msgid "Unknown App" +msgstr "" + +#: ../../Zotlabs/Module/Authorize.php:29 +msgid "Authorize" +msgstr "" + +#: ../../Zotlabs/Module/Authorize.php:30 +#, php-format +msgid "Do you authorize the app %s to access your channel data?" +msgstr "" + +#: ../../Zotlabs/Module/Authorize.php:32 +msgid "Allow" +msgstr "" + +#: ../../Zotlabs/Module/Cal.php:70 ../../Zotlabs/Module/Block.php:42 +#: ../../Zotlabs/Module/Chanview.php:94 ../../Zotlabs/Module/Card_edit.php:46 +#: ../../Zotlabs/Module/Page.php:79 ../../Zotlabs/Module/Wall_upload.php:31 +#: ../../Zotlabs/Module/Superblock.php:53 ../../include/items.php:4069 +msgid "Channel not found." +msgstr "" + +#: ../../Zotlabs/Module/Cal.php:77 +msgid "Permissions denied." +msgstr "" + +#: ../../Zotlabs/Module/Cal.php:270 ../../Zotlabs/Module/Events.php:643 +msgid "l, F j" +msgstr "" + +#: ../../Zotlabs/Module/Cal.php:320 ../../Zotlabs/Module/Events.php:699 +#: ../../include/text.php:1934 +msgid "Link to Source" +msgstr "" + +#: ../../Zotlabs/Module/Cal.php:343 ../../Zotlabs/Module/Events.php:727 +msgid "Edit Event" +msgstr "" + +#: ../../Zotlabs/Module/Cal.php:343 ../../Zotlabs/Module/Events.php:727 +msgid "Create Event" +msgstr "" + +#: ../../Zotlabs/Module/Cal.php:344 ../../Zotlabs/Module/Cal.php:351 +#: ../../Zotlabs/Module/Cdav.php:1032 ../../Zotlabs/Module/Events.php:728 +#: ../../Zotlabs/Module/Events.php:737 ../../Zotlabs/Module/Photos.php:967 +msgid "Previous" +msgstr "" + +#: ../../Zotlabs/Module/Cal.php:345 ../../Zotlabs/Module/Cal.php:352 +#: ../../Zotlabs/Module/Cdav.php:1033 ../../Zotlabs/Module/Events.php:729 +#: ../../Zotlabs/Module/Events.php:738 ../../Zotlabs/Module/Setup.php:275 +#: ../../Zotlabs/Module/Photos.php:976 +msgid "Next" +msgstr "" + +#: ../../Zotlabs/Module/Cal.php:349 ../../include/text.php:2579 +msgid "Import" +msgstr "" + +#: ../../Zotlabs/Module/Cal.php:353 ../../Zotlabs/Module/Cdav.php:1034 +#: ../../Zotlabs/Module/Events.php:739 +msgid "Today" +msgstr "" + +#: ../../Zotlabs/Module/Expire.php:23 +msgid "Expiration settings updated." +msgstr "" + +#: ../../Zotlabs/Module/Expire.php:33 +msgid "" +"This app allows you to set an optional expiration date/time for posts, after " +"which they will be deleted. This must be at least fifteen minutes into the " +"future. You may also choose to automatically delete all your posts after a " +"set number of days" +msgstr "" + +#: ../../Zotlabs/Module/Expire.php:42 +msgid "Expire and delete all my posts after this many days" +msgstr "" + +#: ../../Zotlabs/Module/Expire.php:42 +msgid "" +"Leave at 0 if you wish to manually control expiration of specific posts." +msgstr "" + +#: ../../Zotlabs/Module/Expire.php:46 +msgid "Automatic Expiration Settings" +msgstr "" + +#: ../../Zotlabs/Module/Admin.php:117 +msgid "Blocked accounts" +msgstr "" + +#: ../../Zotlabs/Module/Admin.php:118 +msgid "Expired accounts" +msgstr "" + +#: ../../Zotlabs/Module/Admin.php:119 +msgid "Expiring accounts" +msgstr "" + +#: ../../Zotlabs/Module/Admin.php:135 ../../Zotlabs/Module/Locs.php:122 +msgid "Primary" +msgstr "" + +#: ../../Zotlabs/Module/Admin.php:136 +msgid "Clones" +msgstr "" + +#: ../../Zotlabs/Module/Admin.php:142 +msgid "Message queues" +msgstr "" + +#: ../../Zotlabs/Module/Admin.php:167 +msgid "Your software should be updated" +msgstr "" + +#: ../../Zotlabs/Module/Admin.php:173 ../../include/conversation.php:1484 +msgid "Summary" +msgstr "" + +#: ../../Zotlabs/Module/Admin.php:176 +msgid "Registered accounts" +msgstr "" + +#: ../../Zotlabs/Module/Admin.php:177 +msgid "Pending registrations" +msgstr "" + +#: ../../Zotlabs/Module/Admin.php:178 +msgid "Registered channels" +msgstr "" + +#: ../../Zotlabs/Module/Admin.php:179 +msgid "Active addons" +msgstr "" + +#: ../../Zotlabs/Module/Admin.php:180 ../../Zotlabs/Module/Sites.php:76 +msgid "Version" +msgstr "" + +#: ../../Zotlabs/Module/Admin.php:181 +msgid "Repository version (release)" +msgstr "" + +#: ../../Zotlabs/Module/Admin.php:182 +msgid "Repository version (dev)" +msgstr "" + +#: ../../Zotlabs/Module/Block.php:30 ../../Zotlabs/Module/Page.php:43 +msgid "Invalid item." +msgstr "" + +#: ../../Zotlabs/Module/Block.php:78 ../../Zotlabs/Module/Page.php:140 +#: ../../Zotlabs/Module/Display.php:145 ../../Zotlabs/Module/Display.php:162 +#: ../../Zotlabs/Module/Display.php:179 ../../Zotlabs/Module/Display.php:185 +#: ../../Zotlabs/Web/Router.php:169 +msgid "Page not found." +msgstr "" + +#: ../../Zotlabs/Module/Cards.php:48 +msgid "Create personal planning cards" +msgstr "" + +#: ../../Zotlabs/Module/Cards.php:109 +msgid "Add Card" +msgstr "" + +#: ../../Zotlabs/Module/Cards.php:110 ../../Zotlabs/Module/Blocks.php:163 +#: ../../Zotlabs/Module/Cdav.php:1056 ../../Zotlabs/Module/Cdav.php:1364 +#: ../../Zotlabs/Module/Connedit.php:864 ../../Zotlabs/Module/Layouts.php:191 +#: ../../Zotlabs/Module/Menu.php:184 ../../Zotlabs/Module/New_channel.php:196 +#: ../../Zotlabs/Module/Webpages.php:255 ../../Zotlabs/Module/Profiles.php:800 +#: ../../Zotlabs/Storage/Browser.php:293 ../../Zotlabs/Storage/Browser.php:409 +#: ../../Zotlabs/Widget/Cdav.php:140 ../../Zotlabs/Widget/Cdav.php:178 +msgid "Create" +msgstr "" + +#: ../../Zotlabs/Module/Blocks.php:101 ../../Zotlabs/Module/Blocks.php:159 +#: ../../Zotlabs/Module/Editblock.php:117 +msgid "Block Name" +msgstr "" + +#: ../../Zotlabs/Module/Blocks.php:158 ../../include/text.php:2555 +msgid "Blocks" +msgstr "" + +#: ../../Zotlabs/Module/Blocks.php:160 +msgid "Block Title" +msgstr "" + +#: ../../Zotlabs/Module/Blocks.php:161 ../../Zotlabs/Module/Connections.php:245 +#: ../../Zotlabs/Module/Layouts.php:197 ../../Zotlabs/Module/Menu.php:180 +#: ../../Zotlabs/Module/Webpages.php:267 +msgid "Created" +msgstr "" + +#: ../../Zotlabs/Module/Blocks.php:162 ../../Zotlabs/Module/Layouts.php:198 +#: ../../Zotlabs/Module/Menu.php:181 ../../Zotlabs/Module/Webpages.php:268 +msgid "Edited" +msgstr "" + +#: ../../Zotlabs/Module/Blocks.php:165 ../../Zotlabs/Module/Layouts.php:200 +#: ../../Zotlabs/Module/Webpages.php:257 ../../Zotlabs/Module/Photos.php:1096 +#: ../../Zotlabs/Widget/Cdav.php:136 ../../include/conversation.php:1392 +msgid "Share" +msgstr "" + +#: ../../Zotlabs/Module/Blocks.php:170 ../../Zotlabs/Module/Events.php:733 +#: ../../Zotlabs/Module/Layouts.php:204 ../../Zotlabs/Module/Webpages.php:262 +msgid "View" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:786 ../../Zotlabs/Module/Events.php:33 +msgid "Calendar entries imported." +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:789 ../../Zotlabs/Module/Events.php:35 +msgid "No calendar entries found." +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:852 +msgid "INVALID EVENT DISMISSED!" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:853 +msgid "Summary: " +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:854 +msgid "Date: " +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:855 ../../Zotlabs/Module/Cdav.php:862 +msgid "Reason: " +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:860 +msgid "INVALID CARD DISMISSED!" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:861 +msgid "Name: " +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:882 +msgid "CardDAV App" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:882 +#: ../../extend/addon/a/gallery/Mod_Gallery.php:59 +msgid "Not Installed" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:883 +msgid "CalDAV capable addressbook" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:1009 ../../Zotlabs/Module/Events.php:491 +msgid "Event title" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:1010 ../../Zotlabs/Module/Events.php:497 +msgid "Start date and time" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:1011 +msgid "End date and time" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:1012 ../../Zotlabs/Module/Appman.php:134 +#: ../../Zotlabs/Module/Events.php:504 +msgid "Description" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:1013 ../../Zotlabs/Module/Events.php:506 +#: ../../Zotlabs/Module/Locs.php:120 ../../Zotlabs/Module/Profiles.php:507 +#: ../../Zotlabs/Module/Profiles.php:732 ../../Zotlabs/Module/Sites.php:67 +#: ../../include/js_strings.php:25 +msgid "Location" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:1035 ../../Zotlabs/Module/Events.php:734 +msgid "Month" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:1036 ../../Zotlabs/Module/Events.php:735 +msgid "Week" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:1037 ../../Zotlabs/Module/Events.php:736 +msgid "Day" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:1038 +msgid "List month" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:1039 +msgid "List week" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:1040 +msgid "List day" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:1048 +msgid "More" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:1049 +msgid "Less" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:1051 +msgid "Select calendar" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:1052 ../../Zotlabs/Widget/Cdav.php:143 +msgid "Channel Calendars" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:1052 ../../Zotlabs/Widget/Cdav.php:129 +#: ../../Zotlabs/Widget/Cdav.php:143 +msgid "CalDAV Calendars" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:1054 +msgid "Delete all" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:1057 +msgid "Sorry! Editing of recurrent events is not yet implemented." +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:1350 ../../Zotlabs/Module/Connedit.php:850 +msgid "Organisation" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:1351 ../../Zotlabs/Module/Connedit.php:851 +msgid "Title" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:1352 ../../Zotlabs/Module/Connedit.php:852 +#: ../../Zotlabs/Module/Profiles.php:788 +msgid "Phone" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:1354 ../../Zotlabs/Module/Connedit.php:854 +#: ../../Zotlabs/Module/Profiles.php:790 +msgid "Instant messenger" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:1355 ../../Zotlabs/Module/Connedit.php:855 +#: ../../Zotlabs/Module/Profiles.php:791 +msgid "Website" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:1357 ../../Zotlabs/Module/Connedit.php:857 +#: ../../Zotlabs/Module/Profiles.php:793 +msgid "Note" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:1358 ../../Zotlabs/Module/Connedit.php:858 +#: ../../Zotlabs/Module/Profiles.php:794 ../../include/event.php:1376 +#: ../../include/connections.php:775 +msgid "Mobile" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:1359 ../../Zotlabs/Module/Connedit.php:859 +#: ../../Zotlabs/Module/Profiles.php:795 ../../include/event.php:1377 +#: ../../include/connections.php:776 +msgid "Home" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:1360 ../../Zotlabs/Module/Connedit.php:860 +#: ../../Zotlabs/Module/Profiles.php:796 ../../include/event.php:1380 +#: ../../include/connections.php:779 +msgid "Work" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:1361 ../../Zotlabs/Module/Connedit.php:861 +#: ../../Zotlabs/Module/Profiles.php:797 ../../Zotlabs/Module/Profiles.php:936 +#: ../../Zotlabs/Module/Profiles.php:953 ../../Zotlabs/Module/Profiles.php:1021 +#: ../../Zotlabs/Module/Profiles.php:1057 ../../include/event.php:1383 +#: ../../include/event.php:1390 ../../include/connections.php:782 +#: ../../include/connections.php:789 +msgid "Other" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:1362 ../../Zotlabs/Module/Connedit.php:862 +#: ../../Zotlabs/Module/Profiles.php:798 +msgid "Add Contact" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:1363 ../../Zotlabs/Module/Connedit.php:863 +#: ../../Zotlabs/Module/Profiles.php:799 +msgid "Add Field" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:1368 ../../Zotlabs/Module/Connedit.php:868 +msgid "P.O. Box" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:1369 ../../Zotlabs/Module/Connedit.php:869 +msgid "Additional" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:1370 ../../Zotlabs/Module/Connedit.php:870 +msgid "Street" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:1371 ../../Zotlabs/Module/Connedit.php:871 +msgid "Locality" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:1372 ../../Zotlabs/Module/Connedit.php:872 +msgid "Region" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:1373 ../../Zotlabs/Module/Connedit.php:873 +msgid "ZIP Code" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:1374 ../../Zotlabs/Module/Connedit.php:874 +#: ../../Zotlabs/Module/Profiles.php:756 +msgid "Country" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:1423 +msgid "Default Calendar" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:1434 +msgid "Default Addressbook" +msgstr "" + +#: ../../Zotlabs/Module/Changeaddr.php:48 +msgid "" +"Channel name changes are not allowed within 48 hours of changing the account " +"password." +msgstr "" + +#: ../../Zotlabs/Module/Changeaddr.php:59 ../../include/channel.php:223 +#: ../../include/channel.php:655 +msgid "Reserved nickname. Please choose another." +msgstr "" + +#: ../../Zotlabs/Module/Changeaddr.php:64 ../../include/channel.php:228 +#: ../../include/channel.php:660 +msgid "" +"Nickname has unsupported characters or is already being used on this site." +msgstr "" + +#: ../../Zotlabs/Module/Changeaddr.php:78 +msgid "Feature has been disabled" +msgstr "" + +#: ../../Zotlabs/Module/Changeaddr.php:96 +msgid "Change channel nickname/address" +msgstr "" + +#: ../../Zotlabs/Module/Changeaddr.php:97 ../../Zotlabs/Module/Removeme.php:68 +#: ../../Zotlabs/Module/Removeaccount.php:68 +msgid "WARNING: " +msgstr "" + +#: ../../Zotlabs/Module/Changeaddr.php:97 +msgid "Any/all connections on other networks will be lost!" +msgstr "" + +#: ../../Zotlabs/Module/Changeaddr.php:98 ../../Zotlabs/Module/Removeme.php:69 +#: ../../Zotlabs/Module/Removeaccount.php:69 +msgid "Please enter your password for verification:" +msgstr "" + +#: ../../Zotlabs/Module/Changeaddr.php:99 +msgid "New channel address" +msgstr "" + +#: ../../Zotlabs/Module/Changeaddr.php:100 +msgid "Rename Channel" +msgstr "" + +#: ../../Zotlabs/Module/Chanview.php:132 +msgid "toggle full screen mode" +msgstr "" + +#: ../../Zotlabs/Module/Help.php:26 +msgid "Documentation Search" +msgstr "" + +#: ../../Zotlabs/Module/Help.php:86 +msgid "$Projectname Documentation" +msgstr "" + +#: ../../Zotlabs/Module/Help.php:87 +msgid "Contents" +msgstr "" + +#: ../../Zotlabs/Module/Chatsvc.php:131 +msgid "Away" +msgstr "" + +#: ../../Zotlabs/Module/Chatsvc.php:136 +msgid "Online" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:83 ../../Zotlabs/Module/Defperms.php:59 +msgid "Could not access contact record." +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:114 +msgid "Could not locate selected profile." +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:193 +msgid "Connection updated." +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:196 +msgid "Failed to update connection record." +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:240 +msgid "is now connected to" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:365 +msgid "Could not access address book record." +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:414 +msgid "Refresh failed - channel is currently unavailable." +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:440 +msgid "Added by Connedit" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:478 +msgid "Unable to set address book parameters." +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:495 +msgid "Connection has been removed." +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:543 +#, php-format +msgid "View %s's profile" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:547 +msgid "Refresh Permissions" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:550 +msgid "Fetch updated permissions" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:554 +msgid "Refresh Photo" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:557 +msgid "Fetch updated photo" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:561 ../../include/conversation.php:1041 +msgid "Recent Activity" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:564 +msgid "View recent posts and comments" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:571 +msgid "Block (or Unblock) all communications with this connection" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:572 +msgid "This connection is blocked" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:576 +msgid "Unignore" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:576 +#: ../../Zotlabs/Module/Connections.php:339 +msgid "Ignore" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:579 +msgid "Ignore (or Unignore) all inbound communications from this connection" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:580 +msgid "This connection is ignored" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:587 +msgid "Censor (or Uncensor) images from this connection" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:588 +msgid "This connection is censored" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:592 +msgid "Unarchive" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:592 +msgid "Archive" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:595 +msgid "" +"Archive (or Unarchive) this connection - mark channel dead but keep content" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:596 +msgid "This connection is archived" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:600 +msgid "Unhide" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:600 +msgid "Hide" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:603 +msgid "Hide or Unhide this connection from your other connections" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:604 +msgid "This connection is hidden" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:611 +msgid "Delete this connection" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:619 +msgid "Fetch Vcard" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:622 +msgid "Fetch electronic calling card for this connection" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:630 +#: ../../Zotlabs/Module/Filestorage.php:226 ../../Zotlabs/Module/Thing.php:338 +#: ../../Zotlabs/Module/Thing.php:391 ../../Zotlabs/Module/Chat.php:233 +#: ../../Zotlabs/Module/Photos.php:694 ../../Zotlabs/Module/Photos.php:1065 +#: ../../include/acl_selectors.php:138 +#: ../../extend/addon/a/flashcards/Mod_Flashcards.php:254 +#: ../../extend/addon/a/faces/Mod_Faces.php:172 +msgid "Permissions" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:633 +msgid "Open Individual Permissions section by default" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:659 +msgid "Open Friend Zoom section by default" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:663 ../../Zotlabs/Module/Affinity.php:58 +#: ../../Zotlabs/Widget/Affinity.php:24 +msgid "Me" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:664 ../../Zotlabs/Module/Affinity.php:59 +#: ../../Zotlabs/Widget/Affinity.php:25 +msgid "Family" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:665 ../../Zotlabs/Module/Profiles.php:1040 +#: ../../Zotlabs/Module/Affinity.php:60 +#: ../../Zotlabs/Module/Settings/Channel.php:74 +#: ../../Zotlabs/Module/Settings/Channel.php:78 +#: ../../Zotlabs/Module/Settings/Channel.php:79 +#: ../../Zotlabs/Module/Settings/Channel.php:82 +#: ../../Zotlabs/Module/Settings/Channel.php:93 +#: ../../Zotlabs/Widget/Affinity.php:26 ../../include/channel.php:440 +#: ../../include/channel.php:441 ../../include/channel.php:448 +msgid "Friends" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:666 ../../Zotlabs/Module/Affinity.php:61 +#: ../../Zotlabs/Widget/Affinity.php:27 +msgid "Peers" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:668 +#: ../../Zotlabs/Module/Connections.php:85 +#: ../../Zotlabs/Module/Connections.php:108 +#: ../../Zotlabs/Module/Affinity.php:63 ../../Zotlabs/Widget/Affinity.php:29 +msgid "All" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:685 +msgid "Filter" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:688 +msgid "Open Custom Filter section by default" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:725 +msgid "Approve this connection" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:725 +msgid "Accept connection to allow communication" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:730 +msgid "Set Friend Zoom" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:733 +msgid "Set Profile" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:736 +msgid "Set Friend Zoom & Profile" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:780 +msgid "This connection is unreachable from this location." +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:781 +msgid "This connection may be unreachable from other channel locations." +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:783 +msgid "Location independence is not supported by their network." +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:789 +msgid "" +"This connection is unreachable from this location. Location independence is " +"not supported by their network." +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:792 ../../Zotlabs/Module/Defperms.php:228 +#: ../../Zotlabs/Widget/Settings_menu.php:113 +msgid "Connection Default Permissions" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:792 ../../include/items.php:4067 +#, php-format +msgid "Connection: %s" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:793 ../../Zotlabs/Module/Defperms.php:229 +msgid "Apply these permissions automatically" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:793 +msgid "Connection requests will be approved without your interaction" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:794 ../../Zotlabs/Module/Defperms.php:230 +msgid "Permission role" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:794 ../../Zotlabs/Module/Defperms.php:230 +#: ../../Zotlabs/Module/New_channel.php:164 +#: ../../Zotlabs/Module/New_channel.php:171 +#: ../../Zotlabs/Widget/Notifications.php:148 ../../include/nav.php:293 +msgid "Loading" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:795 ../../Zotlabs/Module/Defperms.php:231 +msgid "Add permission role" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:802 +msgid "This connection's primary address is" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:803 +msgid "Available locations:" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:808 ../../Zotlabs/Module/Defperms.php:235 +msgid "" +"The permissions indicated on this page will be applied to all new " +"connections." +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:809 +msgid "Connection Tools" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:811 +msgid "Slide to adjust your degree of friendship" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:812 ../../include/js_strings.php:20 +msgid "Rating" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:813 +msgid "Slide to adjust your rating" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:814 ../../Zotlabs/Module/Connedit.php:820 +msgid "Optionally explain your rating" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:816 +msgid "Custom Filter" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:817 +#: ../../Zotlabs/Module/Content_filter.php:51 +msgid "Only import posts with this text" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:817 ../../Zotlabs/Module/Connedit.php:818 +msgid "" +"words one per line or #tags, $categories, /patterns/, or lang=xx, leave " +"blank to import all posts" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:818 +#: ../../Zotlabs/Module/Content_filter.php:59 +msgid "Do not import posts with this text" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:819 +#: ../../extend/addon/a/zotpost/Mod_zotpost.php:69 +msgid "Nickname" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:819 +msgid "optional - allows you to search by a name that you have chosen" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:821 +msgid "This information is public!" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:826 +msgid "Connection Pending Approval" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:829 ../../Zotlabs/Module/Defperms.php:238 #: ../../Zotlabs/Module/Settings/Permcats.php:111 -#: ../../Zotlabs/Module/Defperms.php:238 ../../Zotlabs/Module/Connedit.php:829 +#: ../../Zotlabs/Module/Settings/Tokens.php:165 msgid "inherited" msgstr "" -#: ../../Zotlabs/Module/Settings/Tokens.php:168 +#: ../../Zotlabs/Module/Connedit.php:831 +#, php-format +msgid "" +"Please choose the profile you would like to display to %s when viewing your " +"profile securely." +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:833 +#: ../../Zotlabs/Module/Settings/Tokens.php:162 +msgid "Their Settings" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:834 ../../Zotlabs/Module/Defperms.php:240 +#: ../../Zotlabs/Module/Settings/Permcats.php:109 +#: ../../Zotlabs/Module/Settings/Tokens.php:163 +msgid "My Settings" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:836 ../../Zotlabs/Module/Defperms.php:243 #: ../../Zotlabs/Module/Settings/Permcats.php:114 -#: ../../Zotlabs/Module/Defperms.php:243 ../../Zotlabs/Module/Connedit.php:836 +#: ../../Zotlabs/Module/Settings/Tokens.php:168 msgid "Individual Permissions" msgstr "" -#: ../../Zotlabs/Module/Settings/Tokens.php:169 -#: ../../Zotlabs/Module/Settings/Permcats.php:115 #: ../../Zotlabs/Module/Connedit.php:837 +#: ../../Zotlabs/Module/Settings/Permcats.php:115 +#: ../../Zotlabs/Module/Settings/Tokens.php:169 msgid "" "Some permissions may be inherited from your channel's privacy settings, which have higher priority than " "individual settings. You can not change those settings here." msgstr "" -#: ../../Zotlabs/Module/Settings/Permcats.php:24 -msgid "Permission Name is required." -msgstr "" - -#: ../../Zotlabs/Module/Settings/Permcats.php:43 -msgid "Permission category saved." -msgstr "" - -#: ../../Zotlabs/Module/Settings/Permcats.php:67 +#: ../../Zotlabs/Module/Connedit.php:838 msgid "" -"Use this form to create permission rules for various classes of people or " -"connections." +"Some permissions may be inherited from your channel's privacy settings, which have higher priority than " +"individual settings. You can change those settings here but they wont have " +"any impact unless the inherited setting changes." msgstr "" -#: ../../Zotlabs/Module/Settings/Permcats.php:108 -msgid "Permission Name" +#: ../../Zotlabs/Module/Connedit.php:839 +msgid "Last update:" msgstr "" -#: ../../Zotlabs/Module/Settings/Oauth.php:35 -msgid "Name is required" +#: ../../Zotlabs/Module/Connedit.php:847 +msgid "Details" msgstr "" -#: ../../Zotlabs/Module/Settings/Oauth.php:39 -msgid "Key and Secret are required" +#: ../../Zotlabs/Module/Connections.php:65 +#: ../../Zotlabs/Module/Connections.php:154 +#: ../../Zotlabs/Module/Connections.php:295 +msgid "Blocked" msgstr "" -#: ../../Zotlabs/Module/Settings/Oauth.php:43 -#: ../../Zotlabs/Module/Settings/Oauth.php:114 -#: ../../Zotlabs/Module/Settings/Oauth2.php:52 -#: ../../Zotlabs/Module/Settings/Oauth2.php:134 -#: ../../Zotlabs/Module/Admin/Addons.php:451 ../../Zotlabs/Module/Cdav.php:1050 -#: ../../Zotlabs/Module/Cdav.php:1365 ../../Zotlabs/Module/Profiles.php:801 -#: ../../Zotlabs/Module/Connedit.php:865 ../../Zotlabs/Lib/Apps.php:557 -msgid "Update" +#: ../../Zotlabs/Module/Connections.php:70 +#: ../../Zotlabs/Module/Connections.php:161 +#: ../../Zotlabs/Module/Connections.php:294 +msgid "Ignored" msgstr "" -#: ../../Zotlabs/Module/Settings/Oauth.php:87 -#: ../../Zotlabs/Module/Settings/Oauth.php:113 -#: ../../Zotlabs/Module/Settings/Oauth.php:149 -#: ../../Zotlabs/Module/Settings/Oauth2.php:133 -#: ../../Zotlabs/Module/Settings/Oauth2.php:195 -msgid "Add application" +#: ../../Zotlabs/Module/Connections.php:75 +#: ../../Zotlabs/Module/Connections.php:175 +#: ../../Zotlabs/Module/Connections.php:293 +msgid "Hidden" msgstr "" -#: ../../Zotlabs/Module/Settings/Oauth.php:90 -#: ../../Zotlabs/Module/Settings/Oauth2.php:107 -#: ../../Zotlabs/Module/Settings/Oauth2.php:136 -msgid "Name of application" +#: ../../Zotlabs/Module/Connections.php:80 +#: ../../Zotlabs/Module/Connections.php:168 +msgid "Archived/Unreachable" msgstr "" -#: ../../Zotlabs/Module/Settings/Oauth.php:91 -#: ../../Zotlabs/Module/Settings/Oauth.php:117 -msgid "Consumer Key" +#: ../../Zotlabs/Module/Connections.php:90 +#: ../../Zotlabs/Module/Connections.php:103 ../../Zotlabs/Module/Menu.php:182 +#: ../../Zotlabs/Module/Notifications.php:50 +msgid "New" msgstr "" -#: ../../Zotlabs/Module/Settings/Oauth.php:91 -#: ../../Zotlabs/Module/Settings/Oauth.php:92 -#: ../../Zotlabs/Module/Settings/Oauth2.php:108 -#: ../../Zotlabs/Module/Settings/Oauth2.php:109 -#: ../../Zotlabs/Module/Settings/Oauth2.php:137 -#: ../../Zotlabs/Module/Settings/Oauth2.php:138 -msgid "Automatically generated - change if desired. Max length 20" +#: ../../Zotlabs/Module/Connections.php:140 +msgid "Active Connections" msgstr "" -#: ../../Zotlabs/Module/Settings/Oauth.php:92 -#: ../../Zotlabs/Module/Settings/Oauth.php:118 -#: ../../Zotlabs/Module/Settings/Oauth2.php:109 -#: ../../Zotlabs/Module/Settings/Oauth2.php:138 -msgid "Consumer Secret" +#: ../../Zotlabs/Module/Connections.php:143 +msgid "Show active connections" msgstr "" -#: ../../Zotlabs/Module/Settings/Oauth.php:93 -#: ../../Zotlabs/Module/Settings/Oauth.php:119 -#: ../../Zotlabs/Module/Settings/Oauth2.php:110 -#: ../../Zotlabs/Module/Settings/Oauth2.php:139 -msgid "Redirect" +#: ../../Zotlabs/Module/Connections.php:147 +#: ../../Zotlabs/Widget/Notifications.php:70 +msgid "New Connections" msgstr "" -#: ../../Zotlabs/Module/Settings/Oauth.php:93 -#: ../../Zotlabs/Module/Settings/Oauth2.php:110 -#: ../../Zotlabs/Module/Settings/Oauth2.php:139 -msgid "" -"Redirect URI - leave blank unless your application specifically requires this" +#: ../../Zotlabs/Module/Connections.php:150 +msgid "Show pending (new) connections" msgstr "" -#: ../../Zotlabs/Module/Settings/Oauth.php:94 -#: ../../Zotlabs/Module/Settings/Oauth.php:120 -msgid "Icon url" +#: ../../Zotlabs/Module/Connections.php:157 +msgid "Only show blocked connections" msgstr "" -#: ../../Zotlabs/Module/Settings/Oauth.php:94 -#: ../../Zotlabs/Module/Sources.php:121 ../../Zotlabs/Module/Sources.php:156 -msgid "Optional" +#: ../../Zotlabs/Module/Connections.php:164 +msgid "Only show ignored connections" msgstr "" -#: ../../Zotlabs/Module/Settings/Oauth.php:105 -msgid "Application not found." +#: ../../Zotlabs/Module/Connections.php:171 +msgid "Only show archived/unreachable connections" msgstr "" -#: ../../Zotlabs/Module/Settings/Oauth.php:148 -msgid "Connected Apps" +#: ../../Zotlabs/Module/Connections.php:178 +msgid "Only show hidden connections" msgstr "" -#: ../../Zotlabs/Module/Settings/Oauth.php:152 -#: ../../Zotlabs/Module/Settings/Oauth2.php:198 -msgid "Client key starts with" +#: ../../Zotlabs/Module/Connections.php:182 +#: ../../Zotlabs/Module/Profperm.php:144 +msgid "All Connections" msgstr "" -#: ../../Zotlabs/Module/Settings/Oauth.php:153 -#: ../../Zotlabs/Module/Settings/Oauth2.php:199 -msgid "No name" +#: ../../Zotlabs/Module/Connections.php:185 +msgid "Show all connections" msgstr "" -#: ../../Zotlabs/Module/Settings/Oauth.php:154 -#: ../../Zotlabs/Module/Settings/Oauth2.php:200 -msgid "Remove authorization" +#: ../../Zotlabs/Module/Connections.php:234 +msgid "Order by name" msgstr "" -#: ../../Zotlabs/Module/Settings/Network.php:38 -msgid "Activity Settings" +#: ../../Zotlabs/Module/Connections.php:238 +msgid "Recent" msgstr "" -#: ../../Zotlabs/Module/Settings/Network.php:52 ../../include/features.php:375 -msgid "Search by Date" +#: ../../Zotlabs/Module/Connections.php:241 +msgid "Order by recent" msgstr "" -#: ../../Zotlabs/Module/Settings/Network.php:53 ../../include/features.php:376 -msgid "Ability to select posts by date ranges" +#: ../../Zotlabs/Module/Connections.php:248 +msgid "Order by date" msgstr "" -#: ../../Zotlabs/Module/Settings/Network.php:61 ../../include/features.php:386 -msgid "Save search terms for re-use" +#: ../../Zotlabs/Module/Connections.php:291 +msgid "Pending approval" msgstr "" -#: ../../Zotlabs/Module/Settings/Network.php:68 ../../include/features.php:394 -msgid "Alternate Stream Order" +#: ../../Zotlabs/Module/Connections.php:292 +msgid "Archived" msgstr "" -#: ../../Zotlabs/Module/Settings/Network.php:69 ../../include/features.php:395 -msgid "" -"Ability to order the stream by last post date, last comment date or " -"unthreaded activities" +#: ../../Zotlabs/Module/Connections.php:296 +msgid "Not connected at this location" msgstr "" -#: ../../Zotlabs/Module/Settings/Network.php:76 ../../include/features.php:403 -msgid "Contact Filter" +#: ../../Zotlabs/Module/Connections.php:313 +#, php-format +msgid "%1$s [%2$s]" msgstr "" -#: ../../Zotlabs/Module/Settings/Network.php:77 ../../include/features.php:404 -msgid "Ability to display only posts of a selected contact" +#: ../../Zotlabs/Module/Connections.php:314 +msgid "Edit connection" msgstr "" -#: ../../Zotlabs/Module/Settings/Network.php:84 ../../include/features.php:412 -msgid "Forum Filter" +#: ../../Zotlabs/Module/Connections.php:316 +msgid "Delete connection" msgstr "" -#: ../../Zotlabs/Module/Settings/Network.php:85 ../../include/features.php:413 -msgid "Ability to display only posts of a specific forum" +#: ../../Zotlabs/Module/Connections.php:325 +msgid "Channel address" msgstr "" -#: ../../Zotlabs/Module/Settings/Network.php:92 ../../include/features.php:421 -msgid "Personal Posts Filter" +#: ../../Zotlabs/Module/Connections.php:327 +msgid "Network" msgstr "" -#: ../../Zotlabs/Module/Settings/Network.php:93 ../../include/features.php:422 -msgid "Ability to display only posts that you've interacted on" +#: ../../Zotlabs/Module/Connections.php:330 +msgid "Call" msgstr "" -#: ../../Zotlabs/Module/Settings/Network.php:100 ../../include/features.php:430 -msgid "Affinity Tool" +#: ../../Zotlabs/Module/Connections.php:332 +msgid "Status" msgstr "" -#: ../../Zotlabs/Module/Settings/Network.php:101 ../../include/features.php:431 -msgid "Filter stream activity by depth of relationships" +#: ../../Zotlabs/Module/Connections.php:334 +msgid "Connected" msgstr "" -#: ../../Zotlabs/Module/Settings/Network.php:108 ../../Zotlabs/Lib/Apps.php:330 -#: ../../include/features.php:439 -msgid "Suggest Channels" +#: ../../Zotlabs/Module/Connections.php:336 +msgid "Approve connection" msgstr "" -#: ../../Zotlabs/Module/Settings/Network.php:109 ../../include/features.php:440 -msgid "Show friend and connection suggestions" +#: ../../Zotlabs/Module/Connections.php:338 +msgid "Ignore connection" msgstr "" -#: ../../Zotlabs/Module/Settings/Network.php:116 ../../include/features.php:448 -msgid "Connection Filtering" +#: ../../Zotlabs/Module/Connections.php:340 +msgid "Recent activity" msgstr "" -#: ../../Zotlabs/Module/Settings/Network.php:117 ../../include/features.php:449 -msgid "Filter incoming posts from connections based on keywords/content" +#: ../../Zotlabs/Module/Connections.php:369 +msgid "Filter by" msgstr "" -#: ../../Zotlabs/Module/Settings/Oauth2.php:48 -msgid "ID and Secret are required" +#: ../../Zotlabs/Module/Connections.php:370 +msgid "Sort by" msgstr "" -#: ../../Zotlabs/Module/Settings/Oauth2.php:104 -msgid "Add OAuth2 application" +#: ../../Zotlabs/Module/Connections.php:374 +msgid "Search your connections" msgstr "" -#: ../../Zotlabs/Module/Settings/Oauth2.php:108 -#: ../../Zotlabs/Module/Settings/Oauth2.php:137 -msgid "Consumer ID" +#: ../../Zotlabs/Module/Connections.php:375 +msgid "Connections search" msgstr "" -#: ../../Zotlabs/Module/Settings/Oauth2.php:111 -#: ../../Zotlabs/Module/Settings/Oauth2.php:140 -msgid "Grant Types" +#: ../../Zotlabs/Module/Connections.php:376 +#: ../../Zotlabs/Module/Directory.php:438 +#: ../../Zotlabs/Module/Directory.php:443 +#: ../../Zotlabs/Widget/Findpeople.php:30 +msgid "Find" msgstr "" -#: ../../Zotlabs/Module/Settings/Oauth2.php:111 -#: ../../Zotlabs/Module/Settings/Oauth2.php:112 -#: ../../Zotlabs/Module/Settings/Oauth2.php:140 -#: ../../Zotlabs/Module/Settings/Oauth2.php:141 -msgid "leave blank unless your application specifically requires this" +#: ../../Zotlabs/Module/Appman.php:40 ../../Zotlabs/Module/Appman.php:57 +msgid "App installed." msgstr "" -#: ../../Zotlabs/Module/Settings/Oauth2.php:112 -#: ../../Zotlabs/Module/Settings/Oauth2.php:141 -msgid "Authorization scope" +#: ../../Zotlabs/Module/Appman.php:50 +msgid "Malformed app." msgstr "" -#: ../../Zotlabs/Module/Settings/Oauth2.php:124 -msgid "OAuth2 Application not found." +#: ../../Zotlabs/Module/Appman.php:123 +msgid "Embed code" msgstr "" -#: ../../Zotlabs/Module/Settings/Oauth2.php:194 -msgid "Connected OAuth2 Apps" +#: ../../Zotlabs/Module/Appman.php:127 +msgid "Edit App" msgstr "" -#: ../../Zotlabs/Module/Settings/Featured.php:25 -msgid "Affinity Slider settings updated." +#: ../../Zotlabs/Module/Appman.php:127 +msgid "Create App" msgstr "" -#: ../../Zotlabs/Module/Settings/Featured.php:40 -msgid "No feature settings configured" +#: ../../Zotlabs/Module/Appman.php:132 +msgid "Name of app" msgstr "" -#: ../../Zotlabs/Module/Settings/Featured.php:47 -msgid "Default maximum affinity level" +#: ../../Zotlabs/Module/Appman.php:132 ../../Zotlabs/Module/Appman.php:133 +#: ../../Zotlabs/Module/Events.php:491 ../../Zotlabs/Module/Events.php:496 +#: ../../Zotlabs/Module/Profiles.php:744 ../../Zotlabs/Module/Profiles.php:748 +#: ../../include/datetime.php:213 +msgid "Required" msgstr "" -#: ../../Zotlabs/Module/Settings/Featured.php:47 -msgid "0-99 default 99" +#: ../../Zotlabs/Module/Appman.php:133 +msgid "Location (URL) of app" msgstr "" -#: ../../Zotlabs/Module/Settings/Featured.php:52 -msgid "Default minimum affinity level" +#: ../../Zotlabs/Module/Appman.php:135 +msgid "Photo icon URL" msgstr "" -#: ../../Zotlabs/Module/Settings/Featured.php:52 -msgid "0-99 - default 0" +#: ../../Zotlabs/Module/Appman.php:135 +msgid "80 x 80 pixels - optional" msgstr "" -#: ../../Zotlabs/Module/Settings/Featured.php:56 -msgid "Affinity Slider Settings" +#: ../../Zotlabs/Module/Appman.php:136 +msgid "Categories (optional, comma separated list)" msgstr "" -#: ../../Zotlabs/Module/Settings/Featured.php:69 -msgid "Addon Settings" +#: ../../Zotlabs/Module/Appman.php:137 +msgid "Version ID" msgstr "" -#: ../../Zotlabs/Module/Settings/Featured.php:70 -msgid "Please save/submit changes to any panel before opening another." +#: ../../Zotlabs/Module/Appman.php:138 +msgid "Price of app" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:381 -msgid "Nobody except yourself" +#: ../../Zotlabs/Module/Appman.php:139 +msgid "Location (URL) to purchase app" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:382 -msgid "Only those you specifically allow" +#: ../../Zotlabs/Module/Cover_photo.php:284 ../../include/items.php:4421 +msgid "female" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:383 -msgid "Approved connections" +#: ../../Zotlabs/Module/Cover_photo.php:285 ../../include/items.php:4422 +#, php-format +msgid "%1$s updated her %2$s" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:384 -msgid "Any connections" +#: ../../Zotlabs/Module/Cover_photo.php:287 ../../include/items.php:4423 +msgid "male" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:385 -msgid "Anybody on this website" +#: ../../Zotlabs/Module/Cover_photo.php:288 ../../include/items.php:4424 +#, php-format +msgid "%1$s updated his %2$s" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:386 -msgid "Anybody in this network" +#: ../../Zotlabs/Module/Cover_photo.php:291 ../../include/items.php:4426 +#, php-format +msgid "%1$s updated their %2$s" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:387 -msgid "Anybody authenticated" +#: ../../Zotlabs/Module/Cover_photo.php:294 ../../include/channel.php:1668 +msgid "cover photo" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:388 -msgid "Anybody on the internet" +#: ../../Zotlabs/Module/Defperms.php:94 +#: ../../Zotlabs/Module/Settings/Channel.php:315 +#: ../../extend/addon/a/logrot/logrot.php:55 +#: ../../extend/addon/a/openstreetmap/openstreetmap.php:239 +#: ../../extend/addon/a/faces/faces.php:208 +msgid "Settings updated." msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:468 -msgid "Publish your profile in the network directory" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:473 -msgid "Allow us to suggest you as a potential friend to new members?" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:477 -#: ../../Zotlabs/Module/Settings/Channel.php:491 -msgid "or" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:483 -msgid "Your channel address is" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:485 -msgid "" -"Friends using compatible applications can use this address to connect with " -"you." -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:487 -msgid "Your files/photos are accessible as a network drive at" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:489 -msgid "(Windows)" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:490 -msgid "(other platforms)" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:536 -msgid "Automatic membership approval" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:536 #: ../../Zotlabs/Module/Defperms.php:229 +#: ../../Zotlabs/Module/Settings/Channel.php:536 msgid "" "If enabled, connection requests will be approved without your interaction" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:542 -msgid "Friend-of-friend conversations" +#: ../../Zotlabs/Module/Defperms.php:236 +msgid "Automatic approval settings" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:542 +#: ../../Zotlabs/Module/Defperms.php:244 msgid "" -"Import public third-party conversations in which your connections " -"participate." +"Some individual permissions may have been preset or locked based on your " +"channel type and privacy settings." msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:546 -msgid "Enable ActivityPub protocol" +#: ../../Zotlabs/Module/Like.php:104 ../../Zotlabs/Module/Like.php:130 +msgid "Invalid request." msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:553 ../../include/network.php:1511 -msgid "ActivityPub" +#: ../../Zotlabs/Module/Like.php:116 ../../include/conversation.php:126 +msgid "channel" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:554 -msgid "" -"ActivityPub is an emerging internet standard for social communications. " +#: ../../Zotlabs/Module/Like.php:145 +msgid "thing" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:554 -msgid "" -"It provides access to a large and growing number of existing users and " -"supported software applications, however it is still evolving. If this is " -"enabled you will obtain much greater social reach, however it is likely you " -"will also encounter compatibility issues. " +#: ../../Zotlabs/Module/Like.php:269 ../../Zotlabs/Module/Lists.php:182 +#: ../../Zotlabs/Module/Lists.php:210 ../../Zotlabs/Module/Import_items.php:116 +#: ../../Zotlabs/Module/Cloud.php:127 ../../Zotlabs/Module/Dreport.php:10 +#: ../../Zotlabs/Module/Dreport.php:79 ../../Zotlabs/Module/Share.php:69 +#: ../../Zotlabs/Module/Profperm.php:32 ../../Zotlabs/Module/Subthread.php:85 +#: ../../Zotlabs/Web/WebServer.php:128 ../../include/items.php:438 +msgid "Permission denied" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:585 -msgid "Channel Settings" +#: ../../Zotlabs/Module/Like.php:346 ../../Zotlabs/Module/Subthread.php:112 +#: ../../Zotlabs/Module/Tagger.php:71 ../../include/text.php:2108 +#: ../../include/conversation.php:120 +msgid "photo" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:591 -msgid "Basic Settings" +#: ../../Zotlabs/Module/Like.php:346 ../../Zotlabs/Module/Subthread.php:112 +#: ../../include/text.php:2114 +msgid "status" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:592 -msgid "Full name" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:593 -#: ../../Zotlabs/Module/Lostpass.php:132 -msgid "Email Address" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:594 -msgid "Your timezone" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:594 -msgid "This is important for showing the correct time on shared events" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:595 -msgid "Default post location" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:595 -msgid "Optional geographical location to display on your posts" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:596 -msgid "Obtain post location from your web browser or device" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:598 -msgid "Adult content" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:598 -msgid "" -"Enable to indicate if this channel frequently or regularly publishes adult " -"content. (Please also tag any adult material and/or nudity with #NSFW)" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:600 -msgid "Security and Privacy" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:602 -msgid "Your permissions are already configured. Click to view/adjust" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:604 -msgid "Hide my online presence" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:604 -msgid "Prevents displaying in your profile that you are online" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:605 -msgid "Allow others to view your friends and connections" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:608 -msgid "Forbid indexing of your channel content by search engines" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:609 -msgid "Allow others to tag your posts" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:609 -msgid "" -"Often used by the community to retro-actively flag inappropriate content" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:611 -msgid "Channel Permission Limits" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:613 -msgid "Expire other channel content after this many days" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:613 -msgid "0 or blank to use the website limit." -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:613 +#: ../../Zotlabs/Module/Like.php:391 ../../include/conversation.php:167 #, php-format -msgid "This website expires after %d days." +msgid "%1$s likes %2$s's %3$s" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:613 -msgid "This website does not expire imported content." -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:613 -msgid "The website limit takes precedence if lower than your limit." -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:614 -msgid "Maximum Friend Requests/Day:" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:614 -msgid "May reduce spam activity" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:615 -msgid "Default Access List" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:616 -#: ../../Zotlabs/Module/Mitem.php:172 ../../Zotlabs/Module/Mitem.php:251 -msgid "(click to open/close)" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:617 -msgid "Use my default audience setting for the type of object published" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:618 -msgid "Profile to assign new connections" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:629 -#: ../../Zotlabs/Module/New_channel.php:185 -#: ../../Zotlabs/Module/Register.php:272 -msgid "Channel role and privacy" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:630 -msgid "Default Permissions Group" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:636 -msgid "Maximum private messages per day from unknown people:" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:636 -msgid "Useful to reduce spamming" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:645 -#: ../../Zotlabs/Module/Photos.php:1283 ../../Zotlabs/Lib/ThreadItem.php:460 -#: ../../include/conversation.php:1478 ../../include/acl_selectors.php:140 -msgid "Close" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:646 ../../Zotlabs/Lib/Apps.php:368 -msgid "Notifications" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:647 -msgid "By default post a status message when:" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:648 -msgid "accepting a friend request" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:649 -msgid "joining a forum/community" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:650 -msgid "making an interesting profile change" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:651 -msgid "Send a notification email when:" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:652 -msgid "You receive a connection request" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:654 -msgid "Someone writes on your profile wall" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:655 -msgid "Someone writes a followup comment" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:656 -msgid "You receive a direct (private) message" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:658 -msgid "You are tagged in a post" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:661 -msgid "Someone likes your post/comment" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:664 -msgid "Show visual notifications including:" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:666 -msgid "Unseen stream activity" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:667 -msgid "Unseen channel activity" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:668 -msgid "Unseen direct messages" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:668 -#: ../../Zotlabs/Module/Settings/Channel.php:673 -#: ../../Zotlabs/Module/Settings/Channel.php:674 -#: ../../Zotlabs/Module/Settings/Channel.php:675 -msgid "Recommended" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:669 -msgid "Upcoming events" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:670 -msgid "Events today" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:671 -msgid "Upcoming birthdays" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:671 -msgid "Not available in all themes" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:672 -msgid "System (personal) notifications" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:673 -msgid "System info messages" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:674 -msgid "System critical alerts" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:675 -msgid "New connections" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:676 -msgid "System Registrations" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:678 -msgid "Unseen public activity" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:679 -msgid "Unseen likes and dislikes" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:680 -msgid "Unseen forum posts" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:681 -msgid "Reported content" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:682 -msgid "Email notification hub (hostname)" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:682 +#: ../../Zotlabs/Module/Like.php:393 ../../include/conversation.php:170 #, php-format -msgid "" -"If your channel is mirrored to multiple locations, set this to your " -"preferred location. This will prevent duplicate email notifications. " -"Example: %s" +msgid "%1$s doesn't like %2$s's %3$s" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:683 -msgid "Show new wall posts, private messages and connections under Notices" +#: ../../Zotlabs/Module/Like.php:395 +#, php-format +msgid "%1$s is attending %2$s's %3$s" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:684 -msgid "Accept messages from strangers which mention me" +#: ../../Zotlabs/Module/Like.php:397 +#, php-format +msgid "%1$s is not attending %2$s's %3$s" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:684 -msgid "This setting bypasses normal permissions" +#: ../../Zotlabs/Module/Like.php:399 +#, php-format +msgid "%1$s may attend %2$s's %3$s" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:685 -msgid "" -"Accept messages from strangers which include any of the following hashtags" +#: ../../Zotlabs/Module/Editpost.php:24 ../../Zotlabs/Module/Editlayout.php:83 +#: ../../Zotlabs/Module/Editwebpage.php:84 +#: ../../Zotlabs/Module/Card_edit.php:19 ../../Zotlabs/Module/Card_edit.php:35 +#: ../../Zotlabs/Module/Editblock.php:83 ../../Zotlabs/Module/Editblock.php:99 +msgid "Item not found" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:685 -msgid "comma separated, do not include the #" +#: ../../Zotlabs/Module/Editpost.php:38 ../../Zotlabs/Module/Editpost.php:43 +msgid "Item is not editable" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:686 -msgid "Notify me of events this many days in advance" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:686 -msgid "Must be greater than 0" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:691 -msgid "Date and time" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:692 -msgid "" -"This section is reserved for use by optional addons and apps to provide " -"additional settings." -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:693 -msgid "Advanced Account/Page Type Settings" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:694 -msgid "Change the behaviour of this account for special situations" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:697 -msgid "Default photo upload folder name" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:697 -#: ../../Zotlabs/Module/Settings/Channel.php:698 -msgid "%Y - current year, %m - current month" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:698 -msgid "Default file upload folder name" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:700 -msgid "Personal menu to display in your channel pages" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:701 -#: ../../Zotlabs/Module/Removeme.php:70 -msgid "Remove Channel" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:702 -msgid "Remove this channel." -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:703 -msgid "Mentions should display" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:703 -msgid "" -"Changes to this setting are applied to new posts/comments only. It is not " -"retroactive." -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:705 -msgid "the channel display name [example: @Barbara Jenkins]" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:706 -msgid "the channel nickname [example: @barbara1976]" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:707 -msgid "combined [example: @Barbara Jenkins (barbara1976)]" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:708 -msgid "no preference, use the system default" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:711 -msgid "Calendar week begins on" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:711 -msgid "This varies by country/culture" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:712 ../../include/text.php:1307 -#: ../../include/js_strings.php:88 -msgid "Sunday" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:713 ../../include/text.php:1307 -#: ../../include/js_strings.php:89 -msgid "Monday" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:714 ../../include/text.php:1307 -#: ../../include/js_strings.php:90 -msgid "Tuesday" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:715 ../../include/text.php:1307 -#: ../../include/js_strings.php:91 -msgid "Wednesday" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:716 ../../include/text.php:1307 -#: ../../include/js_strings.php:92 -msgid "Thursday" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:717 ../../include/text.php:1307 -#: ../../include/js_strings.php:93 -msgid "Friday" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:718 ../../include/text.php:1307 -#: ../../include/js_strings.php:94 -msgid "Saturday" -msgstr "" - -#: ../../Zotlabs/Module/Events.php:33 ../../Zotlabs/Module/Cdav.php:786 -msgid "Calendar entries imported." -msgstr "" - -#: ../../Zotlabs/Module/Events.php:35 ../../Zotlabs/Module/Cdav.php:789 -msgid "No calendar entries found." -msgstr "" - -#: ../../Zotlabs/Module/Events.php:135 ../../Zotlabs/Module/Calendar.php:93 -msgid "Event can not end before it has started." -msgstr "" - -#: ../../Zotlabs/Module/Events.php:137 ../../Zotlabs/Module/Events.php:146 -#: ../../Zotlabs/Module/Events.php:167 ../../Zotlabs/Module/Calendar.php:95 -#: ../../Zotlabs/Module/Calendar.php:103 ../../Zotlabs/Module/Calendar.php:119 -msgid "Unable to generate preview." -msgstr "" - -#: ../../Zotlabs/Module/Events.php:144 ../../Zotlabs/Module/Calendar.php:101 -msgid "Event title and start time are required." -msgstr "" - -#: ../../Zotlabs/Module/Events.php:165 ../../Zotlabs/Module/Events.php:289 -#: ../../Zotlabs/Module/Calendar.php:117 ../../Zotlabs/Module/Calendar.php:257 -msgid "Event not found." -msgstr "" - -#: ../../Zotlabs/Module/Events.php:284 ../../Zotlabs/Module/Like.php:350 -#: ../../Zotlabs/Module/Tagger.php:75 ../../Zotlabs/Module/Calendar.php:252 -#: ../../include/event.php:1209 ../../include/conversation.php:123 -#: ../../include/text.php:2111 -msgid "event" +#: ../../Zotlabs/Module/Editpost.php:119 ../../Zotlabs/Module/Rpost.php:149 +msgid "Edit post" msgstr "" #: ../../Zotlabs/Module/Events.php:475 @@ -2972,17 +4797,6 @@ msgstr "" msgid "Edit event title" msgstr "" -#: ../../Zotlabs/Module/Events.php:491 ../../Zotlabs/Module/Cdav.php:1009 -msgid "Event title" -msgstr "" - -#: ../../Zotlabs/Module/Events.php:491 ../../Zotlabs/Module/Events.php:496 -#: ../../Zotlabs/Module/Appman.php:132 ../../Zotlabs/Module/Appman.php:133 -#: ../../Zotlabs/Module/Profiles.php:744 ../../Zotlabs/Module/Profiles.php:748 -#: ../../include/datetime.php:213 -msgid "Required" -msgstr "" - #: ../../Zotlabs/Module/Events.php:493 msgid "Categories (comma-separated list)" msgstr "" @@ -2999,10 +4813,6 @@ msgstr "" msgid "Edit start date and time" msgstr "" -#: ../../Zotlabs/Module/Events.php:497 ../../Zotlabs/Module/Cdav.php:1010 -msgid "Start date and time" -msgstr "" - #: ../../Zotlabs/Module/Events.php:498 ../../Zotlabs/Module/Events.php:501 msgid "Finish date and time are not known or not relevant" msgstr "" @@ -3029,28 +4839,10 @@ msgstr "" msgid "Edit Description" msgstr "" -#: ../../Zotlabs/Module/Events.php:504 ../../Zotlabs/Module/Appman.php:134 -#: ../../Zotlabs/Module/Cdav.php:1012 -msgid "Description" -msgstr "" - #: ../../Zotlabs/Module/Events.php:506 msgid "Edit Location" msgstr "" -#: ../../Zotlabs/Module/Events.php:506 ../../Zotlabs/Module/Locs.php:120 -#: ../../Zotlabs/Module/Sites.php:67 ../../Zotlabs/Module/Cdav.php:1013 -#: ../../Zotlabs/Module/Profiles.php:507 ../../Zotlabs/Module/Profiles.php:732 -#: ../../include/js_strings.php:25 -msgid "Location" -msgstr "" - -#: ../../Zotlabs/Module/Events.php:509 ../../Zotlabs/Module/Photos.php:1117 -#: ../../Zotlabs/Module/Webpages.php:263 ../../Zotlabs/Lib/ThreadItem.php:914 -#: ../../include/conversation.php:1348 -msgid "Preview" -msgstr "" - #: ../../Zotlabs/Module/Events.php:510 ../../include/conversation.php:1439 msgid "Permission settings" msgstr "" @@ -3079,123 +4871,378 @@ msgstr "" msgid "Number of total repeats" msgstr "" -#: ../../Zotlabs/Module/Events.php:643 ../../Zotlabs/Module/Cal.php:270 -msgid "l, F j" -msgstr "" - -#: ../../Zotlabs/Module/Events.php:671 ../../Zotlabs/Module/Calendar.php:419 -msgid "Edit event" -msgstr "" - -#: ../../Zotlabs/Module/Events.php:673 ../../Zotlabs/Module/Calendar.php:421 -msgid "Delete event" -msgstr "" - -#: ../../Zotlabs/Module/Events.php:699 ../../Zotlabs/Module/Cal.php:320 -#: ../../include/text.php:1934 -msgid "Link to Source" -msgstr "" - -#: ../../Zotlabs/Module/Events.php:708 ../../Zotlabs/Module/Calendar.php:449 -msgid "calendar" -msgstr "" - -#: ../../Zotlabs/Module/Events.php:727 ../../Zotlabs/Module/Cal.php:343 -msgid "Edit Event" -msgstr "" - -#: ../../Zotlabs/Module/Events.php:727 ../../Zotlabs/Module/Cal.php:343 -msgid "Create Event" -msgstr "" - -#: ../../Zotlabs/Module/Events.php:728 ../../Zotlabs/Module/Events.php:737 -#: ../../Zotlabs/Module/Photos.php:967 ../../Zotlabs/Module/Cal.php:344 -#: ../../Zotlabs/Module/Cal.php:351 ../../Zotlabs/Module/Cdav.php:1032 -msgid "Previous" -msgstr "" - -#: ../../Zotlabs/Module/Events.php:729 ../../Zotlabs/Module/Events.php:738 -#: ../../Zotlabs/Module/Setup.php:275 ../../Zotlabs/Module/Photos.php:976 -#: ../../Zotlabs/Module/Cal.php:345 ../../Zotlabs/Module/Cal.php:352 -#: ../../Zotlabs/Module/Cdav.php:1033 -msgid "Next" -msgstr "" - -#: ../../Zotlabs/Module/Events.php:730 ../../Zotlabs/Module/Cal.php:346 -#: ../../Zotlabs/Lib/Libprofile.php:575 -msgid "Export" -msgstr "" - -#: ../../Zotlabs/Module/Events.php:733 ../../Zotlabs/Module/Webpages.php:262 -#: ../../Zotlabs/Module/Blocks.php:170 ../../Zotlabs/Module/Layouts.php:204 -msgid "View" -msgstr "" - -#: ../../Zotlabs/Module/Events.php:734 ../../Zotlabs/Module/Cdav.php:1035 -msgid "Month" -msgstr "" - -#: ../../Zotlabs/Module/Events.php:735 ../../Zotlabs/Module/Cdav.php:1036 -msgid "Week" -msgstr "" - -#: ../../Zotlabs/Module/Events.php:736 ../../Zotlabs/Module/Cdav.php:1037 -msgid "Day" -msgstr "" - -#: ../../Zotlabs/Module/Events.php:739 ../../Zotlabs/Module/Cal.php:353 -#: ../../Zotlabs/Module/Cdav.php:1034 -msgid "Today" -msgstr "" - #: ../../Zotlabs/Module/Events.php:826 msgid "Event removed" msgstr "" -#: ../../Zotlabs/Module/Events.php:829 ../../Zotlabs/Module/Calendar.php:482 -msgid "Failed to remove event" +#: ../../Zotlabs/Module/Editlayout.php:132 ../../Zotlabs/Module/Layouts.php:135 +#: ../../Zotlabs/Module/Layouts.php:195 +msgid "Layout Name" msgstr "" -#: ../../Zotlabs/Module/Superblock.php:53 -#: ../../Zotlabs/Module/Wall_upload.php:31 ../../Zotlabs/Module/Block.php:42 -#: ../../Zotlabs/Module/Cal.php:70 ../../Zotlabs/Module/Page.php:79 -#: ../../Zotlabs/Module/Card_edit.php:46 ../../Zotlabs/Module/Chanview.php:94 -#: ../../include/items.php:4063 -msgid "Channel not found." +#: ../../Zotlabs/Module/Editlayout.php:133 ../../Zotlabs/Module/Layouts.php:138 +msgid "Layout Description (Optional)" msgstr "" -#: ../../Zotlabs/Module/Superblock.php:81 -msgid "Added by Superblock" +#: ../../Zotlabs/Module/Editlayout.php:141 +msgid "Edit Layout" msgstr "" -#: ../../Zotlabs/Module/Superblock.php:181 -msgid "superblock settings updated" +#: ../../Zotlabs/Module/Notes.php:45 +msgid "This app allows you to create private notes for your personal use." msgstr "" -#: ../../Zotlabs/Module/Superblock.php:212 -msgid "Blocked channels" +#: ../../Zotlabs/Module/Notes.php:53 +msgid "This app is installed. The Notes tool can be found on your stream page." msgstr "" -#: ../../Zotlabs/Module/Superblock.php:214 -msgid "No channels currently blocked" +#: ../../Zotlabs/Module/Editwebpage.php:143 +msgid "Page link" msgstr "" -#: ../../Zotlabs/Module/Superblock.php:216 -#: ../../Zotlabs/Module/Superblock.php:233 ../../Zotlabs/Module/Photos.php:1016 -#: ../../Zotlabs/Module/Admin/Addons.php:453 ../../Zotlabs/Module/Tagrm.php:137 -msgid "Remove" +#: ../../Zotlabs/Module/Editwebpage.php:147 ../../Zotlabs/Module/Chat.php:212 +#: ../../Zotlabs/Module/Card_edit.php:103 +#: ../../Zotlabs/Module/Editblock.php:120 ../../include/conversation.php:1286 +msgid "Insert web link" msgstr "" -#: ../../Zotlabs/Module/Superblock.php:229 -msgid "Blocked servers" +#: ../../Zotlabs/Module/Editwebpage.php:170 +msgid "Edit Webpage" msgstr "" -#: ../../Zotlabs/Module/Superblock.php:231 -msgid "No servers currently blocked" +#: ../../Zotlabs/Module/Email_resend.php:12 +#: ../../Zotlabs/Module/Email_validation.php:24 +msgid "Token verification failed." msgstr "" -#: ../../Zotlabs/Module/Categories.php:29 -msgid "This app allows you to add categories to posts and events." +#: ../../Zotlabs/Module/Email_resend.php:30 +msgid "Email verification resent" +msgstr "" + +#: ../../Zotlabs/Module/Email_resend.php:33 +msgid "Unable to resend email verification message." +msgstr "" + +#: ../../Zotlabs/Module/Email_validation.php:36 +msgid "Email Verification Required" +msgstr "" + +#: ../../Zotlabs/Module/Email_validation.php:37 +#, php-format +msgid "" +"A verification token was sent to your email address [%s]. Enter that token " +"here to complete the account verification step. Please allow a few minutes " +"for delivery, and check your spam folder if you do not see the message." +msgstr "" + +#: ../../Zotlabs/Module/Email_validation.php:38 +msgid "Resend Email" +msgstr "" + +#: ../../Zotlabs/Module/Email_validation.php:41 +msgid "Validation token" +msgstr "" + +#: ../../Zotlabs/Module/Embedphotos.php:105 ../../include/bbcode.php:228 +#: ../../include/bbcode.php:953 ../../include/bbcode.php:1686 +#: ../../include/bbcode.php:1688 ../../include/bbcode.php:1691 +msgid "Image/photo" +msgstr "" + +#: ../../Zotlabs/Module/Embedphotos.php:210 ../../Zotlabs/Module/Photos.php:807 +#: ../../Zotlabs/Module/Photos.php:1337 ../../Zotlabs/Widget/Portfolio.php:87 +#: ../../Zotlabs/Widget/Album.php:82 +msgid "View Photo" +msgstr "" + +#: ../../Zotlabs/Module/Embedphotos.php:225 ../../Zotlabs/Module/Photos.php:838 +#: ../../Zotlabs/Widget/Portfolio.php:108 ../../Zotlabs/Widget/Album.php:99 +msgid "Edit Album" +msgstr "" + +#: ../../Zotlabs/Module/Register.php:54 +msgid "Maximum daily site registrations exceeded. Please try again tomorrow." +msgstr "" + +#: ../../Zotlabs/Module/Register.php:60 +msgid "" +"Please indicate acceptance of the Terms of Service. Registration failed." +msgstr "" + +#: ../../Zotlabs/Module/Register.php:95 +msgid "Passwords do not match." +msgstr "" + +#: ../../Zotlabs/Module/Register.php:142 +msgid "Registration successful. Continue to create your first channel..." +msgstr "" + +#: ../../Zotlabs/Module/Register.php:145 +msgid "" +"Registration successful. Please check your email for validation instructions." +msgstr "" + +#: ../../Zotlabs/Module/Register.php:152 +msgid "Your registration is pending approval by the site owner." +msgstr "" + +#: ../../Zotlabs/Module/Register.php:155 +msgid "Your registration can not be processed." +msgstr "" + +#: ../../Zotlabs/Module/Register.php:202 +msgid "Registration on this website is disabled." +msgstr "" + +#: ../../Zotlabs/Module/Register.php:212 +msgid "Registration on this website is by approval only." +msgstr "" + +#: ../../Zotlabs/Module/Register.php:220 +msgid "Registration on this site is by invitation only." +msgstr "" + +#: ../../Zotlabs/Module/Register.php:231 +msgid "" +"This site has exceeded the number of allowed daily account registrations. " +"Please try again tomorrow." +msgstr "" + +#: ../../Zotlabs/Module/Register.php:247 ../../Zotlabs/Module/Siteinfo.php:37 +msgid "Terms of Service" +msgstr "" + +#: ../../Zotlabs/Module/Register.php:253 +#, php-format +msgid "I accept the %s for this website" +msgstr "" + +#: ../../Zotlabs/Module/Register.php:260 +#, php-format +msgid "I am over %s years of age and accept the %s for this website" +msgstr "" + +#: ../../Zotlabs/Module/Register.php:265 +msgid "Your email address" +msgstr "" + +#: ../../Zotlabs/Module/Register.php:266 +msgid "Choose a password" +msgstr "" + +#: ../../Zotlabs/Module/Register.php:267 +msgid "Please re-enter your password" +msgstr "" + +#: ../../Zotlabs/Module/Register.php:268 +msgid "Please enter your invitation code" +msgstr "" + +#: ../../Zotlabs/Module/Register.php:269 +msgid "Your Name" +msgstr "" + +#: ../../Zotlabs/Module/Register.php:269 +msgid "Real names are preferred." +msgstr "" + +#: ../../Zotlabs/Module/Register.php:271 +#: ../../Zotlabs/Module/New_channel.php:184 +msgid "Choose a short nickname" +msgstr "" + +#: ../../Zotlabs/Module/Register.php:271 +#, php-format +msgid "" +"Your nickname will be used to create an easy to remember channel address e." +"g. nickname%s" +msgstr "" + +#: ../../Zotlabs/Module/Register.php:272 +#: ../../Zotlabs/Module/New_channel.php:185 +#: ../../Zotlabs/Module/Settings/Channel.php:626 +msgid "Channel role and privacy" +msgstr "" + +#: ../../Zotlabs/Module/Register.php:272 +msgid "" +"Select a channel permission role for your usage needs and privacy " +"requirements." +msgstr "" + +#: ../../Zotlabs/Module/Register.php:273 +msgid "no" +msgstr "" + +#: ../../Zotlabs/Module/Register.php:273 +msgid "yes" +msgstr "" + +#: ../../Zotlabs/Module/Register.php:286 +msgid "" +"Show affiliated sites - some of which may allow " +"registration." +msgstr "" + +#: ../../Zotlabs/Module/Register.php:299 ../../Zotlabs/Module/Sites.php:32 +#: ../../include/nav.php:155 ../../boot.php:1635 +msgid "Register" +msgstr "" + +#: ../../Zotlabs/Module/Register.php:300 +msgid "" +"This site requires email verification. After completing this form, please " +"check your email for further instructions." +msgstr "" + +#: ../../Zotlabs/Module/Invite.php:34 +msgid "Total invitation limit exceeded." +msgstr "" + +#: ../../Zotlabs/Module/Invite.php:58 +#, php-format +msgid "%s : Not a valid email address." +msgstr "" + +#: ../../Zotlabs/Module/Invite.php:72 +msgid "Please join us on $Projectname" +msgstr "" + +#: ../../Zotlabs/Module/Invite.php:82 +msgid "Invitation limit exceeded. Please contact your site administrator." +msgstr "" + +#: ../../Zotlabs/Module/Invite.php:87 +#, php-format +msgid "%s : Message delivery failed." +msgstr "" + +#: ../../Zotlabs/Module/Invite.php:91 +#, php-format +msgid "%d message sent." +msgid_plural "%d messages sent." +msgstr[0] "" +msgstr[1] "" + +#: ../../Zotlabs/Module/Invite.php:108 +msgid "Send email invitations to join this network" +msgstr "" + +#: ../../Zotlabs/Module/Invite.php:121 +msgid "You have no more invitations available" +msgstr "" + +#: ../../Zotlabs/Module/Invite.php:152 +msgid "Send invitations" +msgstr "" + +#: ../../Zotlabs/Module/Invite.php:153 +msgid "Enter email addresses, one per line:" +msgstr "" + +#: ../../Zotlabs/Module/Invite.php:154 +msgid "Your message:" +msgstr "" + +#: ../../Zotlabs/Module/Invite.php:155 +msgid "Please join my community on $Projectname." +msgstr "" + +#: ../../Zotlabs/Module/Invite.php:157 +msgid "You will need to supply this invitation code:" +msgstr "" + +#: ../../Zotlabs/Module/Invite.php:158 +msgid "1. Register at any $Projectname location (they are all inter-connected)" +msgstr "" + +#: ../../Zotlabs/Module/Invite.php:160 +msgid "2. Enter my $Projectname network address into the site searchbar." +msgstr "" + +#: ../../Zotlabs/Module/Invite.php:161 +msgid "or visit" +msgstr "" + +#: ../../Zotlabs/Module/Invite.php:163 +msgid "3. Click [Connect]" +msgstr "" + +#: ../../Zotlabs/Module/Nocomment.php:13 +msgid "This app allows you to disable comments on individual posts." +msgstr "" + +#: ../../Zotlabs/Module/Nocomment.php:21 +msgid "" +"This app is installed. A button to control the ability to comment may be " +"found below the post editor." +msgstr "" + +#: ../../Zotlabs/Module/Filer.php:50 +msgid "Enter a folder name" +msgstr "" + +#: ../../Zotlabs/Module/Filer.php:50 +msgid "or select an existing folder (doubleclick)" +msgstr "" + +#: ../../Zotlabs/Module/Filestorage.php:94 +msgid "Channel unavailable." +msgstr "" + +#: ../../Zotlabs/Module/Filestorage.php:139 +msgid "File not found." +msgstr "" + +#: ../../Zotlabs/Module/Filestorage.php:221 +msgid "Edit file permissions" +msgstr "" + +#: ../../Zotlabs/Module/Filestorage.php:233 +msgid "Change filename to" +msgstr "" + +#: ../../Zotlabs/Module/Filestorage.php:233 +msgid "Leave blank to keep the existing filename" +msgstr "" + +#: ../../Zotlabs/Module/Filestorage.php:234 +msgid "Move to directory" +msgstr "" + +#: ../../Zotlabs/Module/Filestorage.php:235 +#: ../../extend/addon/a/flashcards/Mod_Flashcards.php:261 +#: ../../extend/addon/a/faces/Mod_Faces.php:179 +msgid "Set/edit permissions" +msgstr "" + +#: ../../Zotlabs/Module/Filestorage.php:236 +msgid "Include all files and sub folders" +msgstr "" + +#: ../../Zotlabs/Module/Filestorage.php:237 +msgid "Return to file list" +msgstr "" + +#: ../../Zotlabs/Module/Filestorage.php:239 +msgid "Copy/paste this code to attach file to a post" +msgstr "" + +#: ../../Zotlabs/Module/Filestorage.php:240 +msgid "Copy/paste this URL to link file from a web page" +msgstr "" + +#: ../../Zotlabs/Module/Filestorage.php:242 +msgid "Share this file" +msgstr "" + +#: ../../Zotlabs/Module/Filestorage.php:243 +msgid "Show URL to this file" +msgstr "" + +#: ../../Zotlabs/Module/Filestorage.php:244 +#: ../../Zotlabs/Storage/Browser.php:424 +msgid "Show in your contacts shared folder" msgstr "" #: ../../Zotlabs/Module/Dircensor.php:42 @@ -3206,16 +5253,1186 @@ msgstr "" msgid "Entry uncensored" msgstr "" -#: ../../Zotlabs/Module/Editpost.php:38 ../../Zotlabs/Module/Editpost.php:43 -msgid "Item is not editable" +#: ../../Zotlabs/Module/Impel.php:43 ../../include/bbcode.php:344 +msgid "webpage" msgstr "" -#: ../../Zotlabs/Module/Editpost.php:119 ../../Zotlabs/Module/Rpost.php:149 -msgid "Edit post" +#: ../../Zotlabs/Module/Impel.php:48 ../../include/bbcode.php:350 +msgid "block" msgstr "" -#: ../../Zotlabs/Module/Regdir.php:52 -msgid "This site is not a directory server" +#: ../../Zotlabs/Module/Impel.php:53 ../../include/bbcode.php:347 +msgid "layout" +msgstr "" + +#: ../../Zotlabs/Module/Impel.php:60 ../../include/bbcode.php:353 +msgid "menu" +msgstr "" + +#: ../../Zotlabs/Module/Impel.php:185 +#, php-format +msgid "%s element installed" +msgstr "" + +#: ../../Zotlabs/Module/Impel.php:188 +#, php-format +msgid "%s element installation failed" +msgstr "" + +#: ../../Zotlabs/Module/Thing.php:133 +msgid "Thing updated" +msgstr "" + +#: ../../Zotlabs/Module/Thing.php:191 +msgid "Object store: failed" +msgstr "" + +#: ../../Zotlabs/Module/Thing.php:195 +msgid "Thing added" +msgstr "" + +#: ../../Zotlabs/Module/Thing.php:221 +#, php-format +msgid "OBJ: %1$s %2$s %3$s" +msgstr "" + +#: ../../Zotlabs/Module/Thing.php:284 +msgid "Show Thing" +msgstr "" + +#: ../../Zotlabs/Module/Thing.php:291 +msgid "item not found." +msgstr "" + +#: ../../Zotlabs/Module/Thing.php:324 +msgid "Edit Thing" +msgstr "" + +#: ../../Zotlabs/Module/Thing.php:326 ../../Zotlabs/Module/Thing.php:383 +msgid "Select a profile" +msgstr "" + +#: ../../Zotlabs/Module/Thing.php:330 ../../Zotlabs/Module/Thing.php:386 +msgid "Post an activity" +msgstr "" + +#: ../../Zotlabs/Module/Thing.php:330 ../../Zotlabs/Module/Thing.php:386 +msgid "Only sends to viewers of the applicable profile" +msgstr "" + +#: ../../Zotlabs/Module/Thing.php:332 ../../Zotlabs/Module/Thing.php:388 +msgid "Name of thing e.g. something" +msgstr "" + +#: ../../Zotlabs/Module/Thing.php:334 ../../Zotlabs/Module/Thing.php:389 +msgid "URL of thing (optional)" +msgstr "" + +#: ../../Zotlabs/Module/Thing.php:336 ../../Zotlabs/Module/Thing.php:390 +msgid "URL for photo of thing (optional)" +msgstr "" + +#: ../../Zotlabs/Module/Thing.php:381 +msgid "Add Thing to your Profile" +msgstr "" + +#: ../../Zotlabs/Module/Chat.php:187 +msgid "Room not found" +msgstr "" + +#: ../../Zotlabs/Module/Chat.php:204 +msgid "Leave Room" +msgstr "" + +#: ../../Zotlabs/Module/Chat.php:205 +msgid "Delete Room" +msgstr "" + +#: ../../Zotlabs/Module/Chat.php:206 +msgid "I am away right now" +msgstr "" + +#: ../../Zotlabs/Module/Chat.php:207 +msgid "I am online" +msgstr "" + +#: ../../Zotlabs/Module/Chat.php:210 ../../include/conversation.php:1329 +msgid "Please enter a link URL:" +msgstr "" + +#: ../../Zotlabs/Module/Chat.php:230 +msgid "New Chatroom" +msgstr "" + +#: ../../Zotlabs/Module/Chat.php:231 +msgid "Chatroom name" +msgstr "" + +#: ../../Zotlabs/Module/Chat.php:232 +msgid "Expiration of chats (minutes)" +msgstr "" + +#: ../../Zotlabs/Module/Chat.php:248 +#, php-format +msgid "%1$s's Chatrooms" +msgstr "" + +#: ../../Zotlabs/Module/Chat.php:253 +msgid "No chatrooms available" +msgstr "" + +#: ../../Zotlabs/Module/Chat.php:254 ../../Zotlabs/Module/Manage.php:151 +#: ../../Zotlabs/Module/Profiles.php:833 +msgid "Create New" +msgstr "" + +#: ../../Zotlabs/Module/Chat.php:257 +msgid "Expiration" +msgstr "" + +#: ../../Zotlabs/Module/Chat.php:258 +msgid "min" +msgstr "" + +#: ../../Zotlabs/Module/Moderate.php:29 +msgid "No entries." +msgstr "" + +#: ../../Zotlabs/Module/Moderate.php:73 +msgid "Comment approved" +msgstr "" + +#: ../../Zotlabs/Module/Moderate.php:77 +msgid "Comment deleted" +msgstr "" + +#: ../../Zotlabs/Module/Hq.php:143 +msgid "Welcome to Hubzilla!" +msgstr "" + +#: ../../Zotlabs/Module/Hq.php:143 +msgid "You have got no unseen posts..." +msgstr "" + +#: ../../Zotlabs/Module/Hcard.php:40 ../../Zotlabs/Module/Profile.php:52 +msgid "Posts and comments" +msgstr "" + +#: ../../Zotlabs/Module/Lists.php:121 +msgid "Access list created." +msgstr "" + +#: ../../Zotlabs/Module/Lists.php:124 +msgid "Could not create access list." +msgstr "" + +#: ../../Zotlabs/Module/Lists.php:137 ../../Zotlabs/Module/Lists.php:306 +#: ../../include/items.php:4034 +msgid "Access list not found." +msgstr "" + +#: ../../Zotlabs/Module/Lists.php:153 +msgid "Access list updated." +msgstr "" + +#: ../../Zotlabs/Module/Lists.php:194 ../../Zotlabs/Module/Lists.php:356 +msgid "List members" +msgstr "" + +#: ../../Zotlabs/Module/Lists.php:200 +msgid "List not found" +msgstr "" + +#: ../../Zotlabs/Module/Lists.php:238 ../../Zotlabs/Module/Lists.php:249 +msgid "Access Lists" +msgstr "" + +#: ../../Zotlabs/Module/Lists.php:239 +msgid "Create access list" +msgstr "" + +#: ../../Zotlabs/Module/Lists.php:243 +msgid "Access list name" +msgstr "" + +#: ../../Zotlabs/Module/Lists.php:244 ../../Zotlabs/Module/Lists.php:344 +msgid "Members are visible to other channels" +msgstr "" + +#: ../../Zotlabs/Module/Lists.php:251 +msgid "Members" +msgstr "" + +#: ../../Zotlabs/Module/Lists.php:276 +msgid "Access list removed." +msgstr "" + +#: ../../Zotlabs/Module/Lists.php:278 +msgid "Unable to remove access list." +msgstr "" + +#: ../../Zotlabs/Module/Lists.php:339 +#, php-format +msgid "Access List: %s" +msgstr "" + +#: ../../Zotlabs/Module/Lists.php:341 +msgid "Access list name: " +msgstr "" + +#: ../../Zotlabs/Module/Lists.php:346 +msgid "Delete access list" +msgstr "" + +#: ../../Zotlabs/Module/Lists.php:358 +msgid "Not in this list" +msgstr "" + +#: ../../Zotlabs/Module/Lists.php:390 +msgid "Select a channel to toggle membership" +msgstr "" + +#: ../../Zotlabs/Module/Layouts.php:190 ../../include/text.php:2557 +msgid "Layouts" +msgstr "" + +#: ../../Zotlabs/Module/Layouts.php:196 +msgid "Layout Description" +msgstr "" + +#: ../../Zotlabs/Module/Layouts.php:201 +msgid "Download PDL file" +msgstr "" + +#: ../../Zotlabs/Module/Stream.php:126 +#: ../../Zotlabs/Widget/Activity_filter.php:111 ../../include/network.php:1515 +msgid "Zot" +msgstr "" + +#: ../../Zotlabs/Module/Stream.php:130 +#: ../../Zotlabs/Widget/Activity_filter.php:114 ../../include/network.php:1511 +msgid "ActivityPub" +msgstr "" + +#: ../../Zotlabs/Module/Stream.php:145 +msgid "Access list not found" +msgstr "" + +#: ../../Zotlabs/Module/Stream.php:187 +msgid "No such channel" +msgstr "" + +#: ../../Zotlabs/Module/Stream.php:277 +msgid "Access list is empty" +msgstr "" + +#: ../../Zotlabs/Module/Stream.php:291 ../../include/items.php:4057 +#, php-format +msgid "Access list: %s" +msgstr "" + +#: ../../Zotlabs/Module/Stream.php:339 +#: ../../extend/addon/a/zotpost/Mod_zotpost.php:29 +msgid "Invalid channel." +msgstr "" + +#: ../../Zotlabs/Module/Card_edit.php:119 +#: ../../Zotlabs/Module/Editblock.php:133 ../../Zotlabs/Module/Photos.php:690 +#: ../../Zotlabs/Module/Photos.php:1062 ../../include/conversation.php:1435 +msgid "Title (optional)" +msgstr "" + +#: ../../Zotlabs/Module/Card_edit.php:130 +msgid "Edit Card" +msgstr "" + +#: ../../Zotlabs/Module/Import_items.php:48 ../../Zotlabs/Module/Import.php:71 +msgid "Nothing to import." +msgstr "" + +#: ../../Zotlabs/Module/Import_items.php:72 ../../Zotlabs/Module/Import.php:87 +#: ../../Zotlabs/Module/Import.php:103 +msgid "Unable to download data from old server" +msgstr "" + +#: ../../Zotlabs/Module/Import_items.php:77 ../../Zotlabs/Module/Import.php:110 +msgid "Imported file is empty." +msgstr "" + +#: ../../Zotlabs/Module/Import_items.php:93 +#, php-format +msgid "Warning: Database versions differ by %1$d updates." +msgstr "" + +#: ../../Zotlabs/Module/Import_items.php:104 +msgid "Import completed" +msgstr "" + +#: ../../Zotlabs/Module/Import_items.php:121 +msgid "Import Items" +msgstr "" + +#: ../../Zotlabs/Module/Import_items.php:122 +msgid "Use this form to import existing posts and content from an export file." +msgstr "" + +#: ../../Zotlabs/Module/Import_items.php:123 +#: ../../Zotlabs/Module/Import.php:577 +msgid "File to Upload" +msgstr "" + +#: ../../Zotlabs/Module/Cloud.php:124 +msgid "Not found" +msgstr "" + +#: ../../Zotlabs/Module/Cloud.php:130 +msgid "Please refresh page" +msgstr "" + +#: ../../Zotlabs/Module/Cloud.php:133 +msgid "Unknown error" +msgstr "" + +#: ../../Zotlabs/Module/Manage.php:74 ../../Zotlabs/Module/Manage.php:171 +#: ../../Zotlabs/Module/Directory.php:374 +msgid "Group" +msgstr "" + +#: ../../Zotlabs/Module/Manage.php:144 ../../Zotlabs/Module/New_channel.php:157 +#, php-format +msgid "You have created %1$.0f of %2$.0f allowed channels." +msgstr "" + +#: ../../Zotlabs/Module/Manage.php:151 +msgid "Create a new channel" +msgstr "" + +#: ../../Zotlabs/Module/Manage.php:181 +msgid "Current Channel" +msgstr "" + +#: ../../Zotlabs/Module/Manage.php:183 +msgid "Switch to one of your channels by selecting it." +msgstr "" + +#: ../../Zotlabs/Module/Manage.php:184 +msgid "Default Login Channel" +msgstr "" + +#: ../../Zotlabs/Module/Manage.php:185 +msgid "Make Default" +msgstr "" + +#: ../../Zotlabs/Module/Manage.php:186 ../../Zotlabs/Module/Manage.php:187 +msgid "Add to menu" +msgstr "" + +#: ../../Zotlabs/Module/Manage.php:190 +#, php-format +msgid "%d new messages" +msgstr "" + +#: ../../Zotlabs/Module/Manage.php:191 +#, php-format +msgid "%d new introductions" +msgstr "" + +#: ../../Zotlabs/Module/Manage.php:193 +msgid "Delegated Channel" +msgstr "" + +#: ../../Zotlabs/Module/Lang.php:18 +msgid "Change UI language" +msgstr "" + +#: ../../Zotlabs/Module/Mitem.php:35 ../../Zotlabs/Module/Menu.php:211 +msgid "Menu not found." +msgstr "" + +#: ../../Zotlabs/Module/Mitem.php:67 +msgid "Unable to create element." +msgstr "" + +#: ../../Zotlabs/Module/Mitem.php:91 +msgid "Unable to update menu element." +msgstr "" + +#: ../../Zotlabs/Module/Mitem.php:107 +msgid "Unable to add menu element." +msgstr "" + +#: ../../Zotlabs/Module/Mitem.php:138 ../../Zotlabs/Module/Menu.php:234 +#: ../../Zotlabs/Module/Xchan.php:41 +msgid "Not found." +msgstr "" + +#: ../../Zotlabs/Module/Mitem.php:171 ../../Zotlabs/Module/Mitem.php:250 +msgid "Menu Item Permissions" +msgstr "" + +#: ../../Zotlabs/Module/Mitem.php:172 ../../Zotlabs/Module/Mitem.php:251 +#: ../../Zotlabs/Module/Settings/Channel.php:613 +msgid "(click to open/close)" +msgstr "" + +#: ../../Zotlabs/Module/Mitem.php:178 ../../Zotlabs/Module/Mitem.php:195 +msgid "Link Name" +msgstr "" + +#: ../../Zotlabs/Module/Mitem.php:179 ../../Zotlabs/Module/Mitem.php:259 +msgid "Link or Submenu Target" +msgstr "" + +#: ../../Zotlabs/Module/Mitem.php:179 +msgid "Enter URL of the link or select a menu name to create a submenu" +msgstr "" + +#: ../../Zotlabs/Module/Mitem.php:180 ../../Zotlabs/Module/Mitem.php:260 +msgid "Use magic-auth if available" +msgstr "" + +#: ../../Zotlabs/Module/Mitem.php:181 ../../Zotlabs/Module/Mitem.php:261 +msgid "Open link in new window" +msgstr "" + +#: ../../Zotlabs/Module/Mitem.php:182 ../../Zotlabs/Module/Mitem.php:262 +msgid "Order in list" +msgstr "" + +#: ../../Zotlabs/Module/Mitem.php:182 ../../Zotlabs/Module/Mitem.php:262 +msgid "Higher numbers will sink to bottom of listing" +msgstr "" + +#: ../../Zotlabs/Module/Mitem.php:183 +msgid "Submit and finish" +msgstr "" + +#: ../../Zotlabs/Module/Mitem.php:184 +msgid "Submit and continue" +msgstr "" + +#: ../../Zotlabs/Module/Mitem.php:193 +msgid "Menu:" +msgstr "" + +#: ../../Zotlabs/Module/Mitem.php:196 +msgid "Link Target" +msgstr "" + +#: ../../Zotlabs/Module/Mitem.php:199 +msgid "Edit menu" +msgstr "" + +#: ../../Zotlabs/Module/Mitem.php:202 +msgid "Edit element" +msgstr "" + +#: ../../Zotlabs/Module/Mitem.php:203 +msgid "Drop element" +msgstr "" + +#: ../../Zotlabs/Module/Mitem.php:204 +msgid "New element" +msgstr "" + +#: ../../Zotlabs/Module/Mitem.php:205 +msgid "Edit this menu container" +msgstr "" + +#: ../../Zotlabs/Module/Mitem.php:206 +msgid "Add menu element" +msgstr "" + +#: ../../Zotlabs/Module/Mitem.php:207 +msgid "Delete this menu item" +msgstr "" + +#: ../../Zotlabs/Module/Mitem.php:208 +msgid "Edit this menu item" +msgstr "" + +#: ../../Zotlabs/Module/Mitem.php:226 +msgid "Menu item not found." +msgstr "" + +#: ../../Zotlabs/Module/Mitem.php:239 +msgid "Menu item deleted." +msgstr "" + +#: ../../Zotlabs/Module/Mitem.php:241 +msgid "Menu item could not be deleted." +msgstr "" + +#: ../../Zotlabs/Module/Mitem.php:248 +msgid "Edit Menu Element" +msgstr "" + +#: ../../Zotlabs/Module/Mitem.php:258 +msgid "Link text" +msgstr "" + +#: ../../Zotlabs/Module/Finger.php:20 +msgid "Webfinger Diagnostic" +msgstr "" + +#: ../../Zotlabs/Module/Finger.php:21 +msgid "Lookup address or URL" +msgstr "" + +#: ../../Zotlabs/Module/Editblock.php:142 +msgid "Edit Block" +msgstr "" + +#: ../../Zotlabs/Module/Dreport.php:56 +msgid "Invalid message" +msgstr "" + +#: ../../Zotlabs/Module/Dreport.php:89 +msgid "no results" +msgstr "" + +#: ../../Zotlabs/Module/Dreport.php:103 +msgid "channel sync processed" +msgstr "" + +#: ../../Zotlabs/Module/Dreport.php:107 +msgid "queued" +msgstr "" + +#: ../../Zotlabs/Module/Dreport.php:111 +msgid "posted" +msgstr "" + +#: ../../Zotlabs/Module/Dreport.php:115 +msgid "accepted for delivery" +msgstr "" + +#: ../../Zotlabs/Module/Dreport.php:119 +msgid "updated" +msgstr "" + +#: ../../Zotlabs/Module/Dreport.php:122 +msgid "update ignored" +msgstr "" + +#: ../../Zotlabs/Module/Dreport.php:125 +msgid "permission denied" +msgstr "" + +#: ../../Zotlabs/Module/Dreport.php:129 +msgid "recipient not found" +msgstr "" + +#: ../../Zotlabs/Module/Dreport.php:132 +msgid "mail recalled" +msgstr "" + +#: ../../Zotlabs/Module/Dreport.php:135 +msgid "duplicate mail received" +msgstr "" + +#: ../../Zotlabs/Module/Dreport.php:138 +msgid "mail delivered" +msgstr "" + +#: ../../Zotlabs/Module/Dreport.php:158 +#, php-format +msgid "Delivery report for %1$s" +msgstr "" + +#: ../../Zotlabs/Module/Dreport.php:161 +msgid "Options" +msgstr "" + +#: ../../Zotlabs/Module/Dreport.php:162 +msgid "Redeliver" +msgstr "" + +#: ../../Zotlabs/Module/Share.php:118 +msgid "Post repeated" +msgstr "" + +#: ../../Zotlabs/Module/Lostpass.php:19 +msgid "No valid account found." +msgstr "" + +#: ../../Zotlabs/Module/Lostpass.php:33 +msgid "Password reset request issued. Check your email." +msgstr "" + +#: ../../Zotlabs/Module/Lostpass.php:39 ../../Zotlabs/Module/Lostpass.php:108 +#, php-format +msgid "Site Member (%s)" +msgstr "" + +#: ../../Zotlabs/Module/Lostpass.php:44 ../../Zotlabs/Module/Lostpass.php:49 +#, php-format +msgid "Password reset requested at %s" +msgstr "" + +#: ../../Zotlabs/Module/Lostpass.php:68 +msgid "" +"Request could not be verified. (You may have previously submitted it.) " +"Password reset failed." +msgstr "" + +#: ../../Zotlabs/Module/Lostpass.php:91 ../../boot.php:1664 +msgid "Password Reset" +msgstr "" + +#: ../../Zotlabs/Module/Lostpass.php:92 +msgid "Your password has been reset as requested." +msgstr "" + +#: ../../Zotlabs/Module/Lostpass.php:93 +msgid "Your new password is" +msgstr "" + +#: ../../Zotlabs/Module/Lostpass.php:94 +msgid "Save or copy your new password - and then" +msgstr "" + +#: ../../Zotlabs/Module/Lostpass.php:95 +msgid "click here to login" +msgstr "" + +#: ../../Zotlabs/Module/Lostpass.php:96 +msgid "" +"Your password may be changed from the Settings page after " +"successful login." +msgstr "" + +#: ../../Zotlabs/Module/Lostpass.php:117 +#, php-format +msgid "Your password has changed at %s" +msgstr "" + +#: ../../Zotlabs/Module/Lostpass.php:130 +msgid "Forgot your Password?" +msgstr "" + +#: ../../Zotlabs/Module/Lostpass.php:131 +msgid "" +"Enter your email address and submit to have your password reset. Then check " +"your email for further instructions." +msgstr "" + +#: ../../Zotlabs/Module/Lostpass.php:132 +#: ../../Zotlabs/Module/Settings/Channel.php:590 +msgid "Email Address" +msgstr "" + +#: ../../Zotlabs/Module/Menu.php:70 +msgid "Unable to update menu." +msgstr "" + +#: ../../Zotlabs/Module/Menu.php:81 +msgid "Unable to create menu." +msgstr "" + +#: ../../Zotlabs/Module/Menu.php:163 ../../Zotlabs/Module/Menu.php:176 +msgid "Menu Name" +msgstr "" + +#: ../../Zotlabs/Module/Menu.php:163 +msgid "Unique name (not visible on webpage) - required" +msgstr "" + +#: ../../Zotlabs/Module/Menu.php:164 ../../Zotlabs/Module/Menu.php:177 +msgid "Menu Title" +msgstr "" + +#: ../../Zotlabs/Module/Menu.php:164 +msgid "Visible on webpage - leave empty for no title" +msgstr "" + +#: ../../Zotlabs/Module/Menu.php:165 +msgid "Allow Bookmarks" +msgstr "" + +#: ../../Zotlabs/Module/Menu.php:165 ../../Zotlabs/Module/Menu.php:224 +msgid "Menu may be used to store saved bookmarks" +msgstr "" + +#: ../../Zotlabs/Module/Menu.php:166 ../../Zotlabs/Module/Menu.php:227 +msgid "Submit and proceed" +msgstr "" + +#: ../../Zotlabs/Module/Menu.php:173 ../../include/text.php:2556 +msgid "Menus" +msgstr "" + +#: ../../Zotlabs/Module/Menu.php:179 ../../Zotlabs/Module/Locs.php:123 +msgid "Drop" +msgstr "" + +#: ../../Zotlabs/Module/Menu.php:183 +msgid "Bookmarks allowed" +msgstr "" + +#: ../../Zotlabs/Module/Menu.php:185 +msgid "Delete this menu" +msgstr "" + +#: ../../Zotlabs/Module/Menu.php:186 ../../Zotlabs/Module/Menu.php:221 +msgid "Edit menu contents" +msgstr "" + +#: ../../Zotlabs/Module/Menu.php:187 +msgid "Edit this menu" +msgstr "" + +#: ../../Zotlabs/Module/Menu.php:203 +msgid "Menu could not be deleted." +msgstr "" + +#: ../../Zotlabs/Module/Menu.php:216 +msgid "Edit Menu" +msgstr "" + +#: ../../Zotlabs/Module/Menu.php:220 +msgid "Add or remove entries to this menu" +msgstr "" + +#: ../../Zotlabs/Module/Menu.php:222 +msgid "Menu name" +msgstr "" + +#: ../../Zotlabs/Module/Menu.php:222 +msgid "Must be unique, only seen by you" +msgstr "" + +#: ../../Zotlabs/Module/Menu.php:223 +msgid "Menu title" +msgstr "" + +#: ../../Zotlabs/Module/Menu.php:223 +msgid "Menu title as seen by others" +msgstr "" + +#: ../../Zotlabs/Module/Menu.php:224 +msgid "Allow bookmarks" +msgstr "" + +#: ../../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:59 +msgid "Configuration Editor" +msgstr "" + +#: ../../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 " +"to correctly use this feature." +msgstr "" + +#: ../../Zotlabs/Module/Directory.php:80 ../../Zotlabs/Module/Directory.php:87 +#: ../../Zotlabs/Module/Photos.php:535 ../../Zotlabs/Module/Search.php:27 +#: ../../Zotlabs/Module/Display.php:34 +#: ../../Zotlabs/Module/Viewconnections.php:27 +msgid "Public access denied." +msgstr "" + +#: ../../Zotlabs/Module/Directory.php:137 +msgid "No default suggestions were found." +msgstr "" + +#: ../../Zotlabs/Module/Directory.php:300 +msgid "Gender: " +msgstr "" + +#: ../../Zotlabs/Module/Directory.php:301 +msgid "Status: " +msgstr "" + +#: ../../Zotlabs/Module/Directory.php:302 +msgid "Homepage: " +msgstr "" + +#: ../../Zotlabs/Module/Directory.php:363 +msgid "Description:" +msgstr "" + +#: ../../Zotlabs/Module/Directory.php:378 +msgid "Keywords: " +msgstr "" + +#: ../../Zotlabs/Module/Directory.php:381 +msgid "Don't suggest" +msgstr "" + +#: ../../Zotlabs/Module/Directory.php:383 +msgid "Suggestion ranking:" +msgstr "" + +#: ../../Zotlabs/Module/Directory.php:433 +msgid "Local Directory" +msgstr "" + +#: ../../Zotlabs/Module/Directory.php:439 +msgid "Finding:" +msgstr "" + +#: ../../Zotlabs/Module/Directory.php:442 +#: ../../Zotlabs/Widget/Findpeople.php:31 +msgid "Channel Suggestions" +msgstr "" + +#: ../../Zotlabs/Module/Directory.php:444 +msgid "next page" +msgstr "" + +#: ../../Zotlabs/Module/Directory.php:444 +msgid "previous page" +msgstr "" + +#: ../../Zotlabs/Module/Directory.php:445 +msgid "Sort options" +msgstr "" + +#: ../../Zotlabs/Module/Directory.php:446 +msgid "Alphabetic" +msgstr "" + +#: ../../Zotlabs/Module/Directory.php:447 +msgid "Reverse Alphabetic" +msgstr "" + +#: ../../Zotlabs/Module/Directory.php:448 +msgid "Newest to Oldest" +msgstr "" + +#: ../../Zotlabs/Module/Directory.php:449 +msgid "Oldest to Newest" +msgstr "" + +#: ../../Zotlabs/Module/Directory.php:473 +msgid "No entries (some entries may be hidden)." +msgstr "" + +#: ../../Zotlabs/Module/Vote.php:39 +msgid "Poll not found." +msgstr "" + +#: ../../Zotlabs/Module/Vote.php:70 +msgid "Invalid response." +msgstr "" + +#: ../../Zotlabs/Module/Vote.php:129 +msgid "Response submitted. Updates may not appear instantly." +msgstr "" + +#: ../../Zotlabs/Module/Locs.php:28 ../../Zotlabs/Module/Locs.php:57 +msgid "Location not found." +msgstr "" + +#: ../../Zotlabs/Module/Locs.php:65 +msgid "Location lookup failed." +msgstr "" + +#: ../../Zotlabs/Module/Locs.php:69 +msgid "" +"Please select another location to become primary before removing the primary " +"location." +msgstr "" + +#: ../../Zotlabs/Module/Locs.php:98 +msgid "Pushing location info" +msgstr "" + +#: ../../Zotlabs/Module/Locs.php:108 +msgid "No locations found." +msgstr "" + +#: ../../Zotlabs/Module/Locs.php:119 +msgid "Manage Channel Locations" +msgstr "" + +#: ../../Zotlabs/Module/Locs.php:125 +msgid "Publish these settings" +msgstr "" + +#: ../../Zotlabs/Module/Locs.php:126 +msgid "Please wait several minutes between consecutive operations." +msgstr "" + +#: ../../Zotlabs/Module/Locs.php:127 +msgid "" +"When possible, drop a location by logging into that website/hub and removing " +"your channel." +msgstr "" + +#: ../../Zotlabs/Module/Locs.php:128 +msgid "Use this form to drop the location if the hub is no longer operating." +msgstr "" + +#: ../../Zotlabs/Module/Viewsrc.php:45 +msgid "item" +msgstr "" + +#: ../../Zotlabs/Module/Viewsrc.php:55 +msgid "inspect" +msgstr "" + +#: ../../Zotlabs/Module/New_channel.php:166 +msgid "Your real name is recommended." +msgstr "" + +#: ../../Zotlabs/Module/New_channel.php:167 +msgid "" +"Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation " +"Group\"" +msgstr "" + +#: ../../Zotlabs/Module/New_channel.php:172 +msgid "" +"This will be used to create a unique network address (like an email address)." +msgstr "" + +#: ../../Zotlabs/Module/New_channel.php:174 +msgid "Allowed characters are a-z 0-9, - and _" +msgstr "" + +#: ../../Zotlabs/Module/New_channel.php:182 +msgid "Channel name" +msgstr "" + +#: ../../Zotlabs/Module/New_channel.php:185 +msgid "" +"Select a channel permission role compatible with your usage needs and " +"privacy requirements." +msgstr "" + +#: ../../Zotlabs/Module/New_channel.php:188 +msgid "Create a Channel" +msgstr "" + +#: ../../Zotlabs/Module/New_channel.php:189 +msgid "" +"A channel is a unique network identity. It can represent a person (social " +"network profile), a forum (group), a business or celebrity page, a newsfeed, " +"and many other things." +msgstr "" + +#: ../../Zotlabs/Module/New_channel.php:190 +msgid "" +"or import an existing channel from another location." +msgstr "" + +#: ../../Zotlabs/Module/New_channel.php:195 +msgid "Validate" +msgstr "" + +#: ../../Zotlabs/Module/Connect.php:54 ../../Zotlabs/Module/Connect.php:102 +msgid "Continue" +msgstr "" + +#: ../../Zotlabs/Module/Connect.php:83 +msgid "Premium Channel Setup" +msgstr "" + +#: ../../Zotlabs/Module/Connect.php:85 +msgid "Enable premium channel connection restrictions" +msgstr "" + +#: ../../Zotlabs/Module/Connect.php:86 +msgid "" +"Please enter your restrictions or conditions, such as paypal receipt, usage " +"guidelines, etc." +msgstr "" + +#: ../../Zotlabs/Module/Connect.php:88 ../../Zotlabs/Module/Connect.php:108 +msgid "" +"This channel may require additional steps or acknowledgement of the " +"following conditions prior to connecting:" +msgstr "" + +#: ../../Zotlabs/Module/Connect.php:89 +msgid "" +"Potential connections will then see the following text before proceeding:" +msgstr "" + +#: ../../Zotlabs/Module/Connect.php:90 ../../Zotlabs/Module/Connect.php:111 +msgid "" +"By continuing, I certify that I have complied with any instructions provided " +"on this page." +msgstr "" + +#: ../../Zotlabs/Module/Connect.php:99 +msgid "(No specific instructions have been provided by the channel owner.)" +msgstr "" + +#: ../../Zotlabs/Module/Connect.php:107 +msgid "Restricted or Premium Channel" +msgstr "" + +#: ../../Zotlabs/Module/Notifications.php:55 ../../Zotlabs/Module/Notify.php:63 +msgid "No more system notifications." +msgstr "" + +#: ../../Zotlabs/Module/Notifications.php:59 ../../Zotlabs/Module/Notify.php:67 +msgid "System Notifications" +msgstr "" + +#: ../../Zotlabs/Module/Acl.php:280 +msgid "network" +msgstr "" + +#: ../../Zotlabs/Module/Mood.php:74 ../../include/conversation.php:284 +#, php-format +msgctxt "mood" +msgid "%1$s is %2$s" +msgstr "" + +#: ../../Zotlabs/Module/Mood.php:133 ../../Zotlabs/Module/Mood.php:153 +msgid "Set your current mood and tell your friends" +msgstr "" + +#: ../../Zotlabs/Module/Oexchange.php:27 +msgid "Unable to find your hub." +msgstr "" + +#: ../../Zotlabs/Module/Oexchange.php:41 +msgid "Post successful." +msgstr "" + +#: ../../Zotlabs/Module/Item.php:475 ../../Zotlabs/Module/Pin.php:42 +msgid "Unable to locate original post." +msgstr "" + +#: ../../Zotlabs/Module/Item.php:564 +msgid "Comment may be moderated." +msgstr "" + +#: ../../Zotlabs/Module/Item.php:779 +msgid "Empty post discarded." +msgstr "" + +#: ../../Zotlabs/Module/Item.php:1356 +msgid "Duplicate post suppressed." +msgstr "" + +#: ../../Zotlabs/Module/Item.php:1488 +msgid "System error. Post not saved." +msgstr "" + +#: ../../Zotlabs/Module/Item.php:1528 +msgid "Your post/comment is awaiting approval." +msgstr "" + +#: ../../Zotlabs/Module/Item.php:1679 +msgid "Unable to obtain post information from database." +msgstr "" + +#: ../../Zotlabs/Module/Item.php:1687 +#, php-format +msgid "You have reached your limit of %1$.0f top level posts." +msgstr "" + +#: ../../Zotlabs/Module/Item.php:1694 +#, php-format +msgid "You have reached your limit of %1$.0f webpages." +msgstr "" + +#: ../../Zotlabs/Module/Webpages.php:50 +msgid "Provide managed web pages on your channel" +msgstr "" + +#: ../../Zotlabs/Module/Webpages.php:70 +msgid "Import Webpage Elements" +msgstr "" + +#: ../../Zotlabs/Module/Webpages.php:71 +msgid "Import selected" +msgstr "" + +#: ../../Zotlabs/Module/Webpages.php:94 +msgid "Export Webpage Elements" +msgstr "" + +#: ../../Zotlabs/Module/Webpages.php:95 +msgid "Export selected" +msgstr "" + +#: ../../Zotlabs/Module/Webpages.php:264 +msgid "Actions" +msgstr "" + +#: ../../Zotlabs/Module/Webpages.php:265 +msgid "Page Link" +msgstr "" + +#: ../../Zotlabs/Module/Webpages.php:266 +msgid "Page Title" +msgstr "" + +#: ../../Zotlabs/Module/Webpages.php:296 +msgid "Invalid file type." +msgstr "" + +#: ../../Zotlabs/Module/Webpages.php:308 +msgid "Error opening zip file" +msgstr "" + +#: ../../Zotlabs/Module/Webpages.php:319 +msgid "Invalid folder path." +msgstr "" + +#: ../../Zotlabs/Module/Webpages.php:346 +msgid "No webpage elements detected." +msgstr "" + +#: ../../Zotlabs/Module/Webpages.php:421 +msgid "Import complete." +msgstr "" + +#: ../../Zotlabs/Module/Page.php:177 +msgid "" +"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod " +"tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, " +"quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo " +"consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse " +"cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat " +"non proident, sunt in culpa qui officia deserunt mollit anim id est laborum." +msgstr "" + +#: ../../Zotlabs/Module/Profile.php:131 +msgid "vcard" +msgstr "" + +#: ../../Zotlabs/Module/Pdledit.php:21 +msgid "Layout updated." +msgstr "" + +#: ../../Zotlabs/Module/Pdledit.php:42 ../../Zotlabs/Module/Pdledit.php:97 +msgid "Edit System Page Description" +msgstr "" + +#: ../../Zotlabs/Module/Pdledit.php:63 ../../Zotlabs/Module/Pdledit.php:71 +msgid "(modified)" +msgstr "" + +#: ../../Zotlabs/Module/Pdledit.php:92 +msgid "Layout not found." +msgstr "" + +#: ../../Zotlabs/Module/Pdledit.php:98 +msgid "Module Name:" +msgstr "" + +#: ../../Zotlabs/Module/Pdledit.php:99 +msgid "Layout Help" +msgstr "" + +#: ../../Zotlabs/Module/Pdledit.php:100 +msgid "Edit another layout" +msgstr "" + +#: ../../Zotlabs/Module/Pdledit.php:101 +msgid "System layout" msgstr "" #: ../../Zotlabs/Module/Setup.php:182 @@ -3648,6 +6865,10 @@ msgid "" "server root." msgstr "" +#: ../../Zotlabs/Module/Setup.php:736 ../../extend/addon/a/faces/faces.php:219 +msgid "Errors encountered creating database tables." +msgstr "" + #: ../../Zotlabs/Module/Setup.php:782 msgid "

What next?

" msgstr "" @@ -3657,3910 +6878,6 @@ msgid "" "IMPORTANT: You will need to [manually] setup a scheduled task for the poller." msgstr "" -#: ../../Zotlabs/Module/Appman.php:40 ../../Zotlabs/Module/Appman.php:57 -msgid "App installed." -msgstr "" - -#: ../../Zotlabs/Module/Appman.php:50 -msgid "Malformed app." -msgstr "" - -#: ../../Zotlabs/Module/Appman.php:123 -msgid "Embed code" -msgstr "" - -#: ../../Zotlabs/Module/Appman.php:127 -msgid "Edit App" -msgstr "" - -#: ../../Zotlabs/Module/Appman.php:127 -msgid "Create App" -msgstr "" - -#: ../../Zotlabs/Module/Appman.php:132 -msgid "Name of app" -msgstr "" - -#: ../../Zotlabs/Module/Appman.php:133 -msgid "Location (URL) of app" -msgstr "" - -#: ../../Zotlabs/Module/Appman.php:135 -msgid "Photo icon URL" -msgstr "" - -#: ../../Zotlabs/Module/Appman.php:135 -msgid "80 x 80 pixels - optional" -msgstr "" - -#: ../../Zotlabs/Module/Appman.php:136 -msgid "Categories (optional, comma separated list)" -msgstr "" - -#: ../../Zotlabs/Module/Appman.php:137 -msgid "Version ID" -msgstr "" - -#: ../../Zotlabs/Module/Appman.php:138 -msgid "Price of app" -msgstr "" - -#: ../../Zotlabs/Module/Appman.php:139 -msgid "Location (URL) to purchase app" -msgstr "" - -#: ../../Zotlabs/Module/Like.php:104 ../../Zotlabs/Module/Like.php:130 -msgid "Invalid request." -msgstr "" - -#: ../../Zotlabs/Module/Like.php:116 ../../include/conversation.php:126 -msgid "channel" -msgstr "" - -#: ../../Zotlabs/Module/Like.php:145 -msgid "thing" -msgstr "" - -#: ../../Zotlabs/Module/Like.php:269 ../../Zotlabs/Module/Dreport.php:10 -#: ../../Zotlabs/Module/Dreport.php:79 ../../Zotlabs/Module/Lists.php:182 -#: ../../Zotlabs/Module/Lists.php:210 ../../Zotlabs/Module/Import_items.php:116 -#: ../../Zotlabs/Module/Subthread.php:85 ../../Zotlabs/Module/Profperm.php:32 -#: ../../Zotlabs/Module/Cloud.php:127 ../../Zotlabs/Module/Share.php:69 -#: ../../Zotlabs/Web/WebServer.php:128 ../../include/items.php:438 -msgid "Permission denied" -msgstr "" - -#: ../../Zotlabs/Module/Like.php:348 ../../Zotlabs/Module/Subthread.php:112 -#: ../../Zotlabs/Module/Tagger.php:71 ../../include/conversation.php:120 -#: ../../include/text.php:2108 -msgid "photo" -msgstr "" - -#: ../../Zotlabs/Module/Like.php:348 ../../Zotlabs/Module/Subthread.php:112 -#: ../../include/text.php:2114 -msgid "status" -msgstr "" - -#: ../../Zotlabs/Module/Like.php:393 ../../include/conversation.php:167 -#, php-format -msgid "%1$s likes %2$s's %3$s" -msgstr "" - -#: ../../Zotlabs/Module/Like.php:395 ../../include/conversation.php:170 -#, php-format -msgid "%1$s doesn't like %2$s's %3$s" -msgstr "" - -#: ../../Zotlabs/Module/Like.php:397 -#, php-format -msgid "%1$s is attending %2$s's %3$s" -msgstr "" - -#: ../../Zotlabs/Module/Like.php:399 -#, php-format -msgid "%1$s is not attending %2$s's %3$s" -msgstr "" - -#: ../../Zotlabs/Module/Like.php:401 -#, php-format -msgid "%1$s may attend %2$s's %3$s" -msgstr "" - -#: ../../Zotlabs/Module/Suggestions.php:39 -msgid "" -"This app (when installed) displays a small number of friend suggestions on " -"selected pages or you can run the app to display a full list of channel " -"suggestions." -msgstr "" - -#: ../../Zotlabs/Module/Dreport.php:56 -msgid "Invalid message" -msgstr "" - -#: ../../Zotlabs/Module/Dreport.php:89 -msgid "no results" -msgstr "" - -#: ../../Zotlabs/Module/Dreport.php:103 -msgid "channel sync processed" -msgstr "" - -#: ../../Zotlabs/Module/Dreport.php:107 -msgid "queued" -msgstr "" - -#: ../../Zotlabs/Module/Dreport.php:111 -msgid "posted" -msgstr "" - -#: ../../Zotlabs/Module/Dreport.php:115 -msgid "accepted for delivery" -msgstr "" - -#: ../../Zotlabs/Module/Dreport.php:119 -msgid "updated" -msgstr "" - -#: ../../Zotlabs/Module/Dreport.php:122 -msgid "update ignored" -msgstr "" - -#: ../../Zotlabs/Module/Dreport.php:125 -msgid "permission denied" -msgstr "" - -#: ../../Zotlabs/Module/Dreport.php:129 -msgid "recipient not found" -msgstr "" - -#: ../../Zotlabs/Module/Dreport.php:132 -msgid "mail recalled" -msgstr "" - -#: ../../Zotlabs/Module/Dreport.php:135 -msgid "duplicate mail received" -msgstr "" - -#: ../../Zotlabs/Module/Dreport.php:138 -msgid "mail delivered" -msgstr "" - -#: ../../Zotlabs/Module/Dreport.php:158 -#, php-format -msgid "Delivery report for %1$s" -msgstr "" - -#: ../../Zotlabs/Module/Dreport.php:161 -msgid "Options" -msgstr "" - -#: ../../Zotlabs/Module/Dreport.php:162 -msgid "Redeliver" -msgstr "" - -#: ../../Zotlabs/Module/Home.php:93 ../../Zotlabs/Module/Home.php:102 -#: ../../Zotlabs/Lib/Enotify.php:72 -msgid "$Projectname" -msgstr "" - -#: ../../Zotlabs/Module/Home.php:112 -#, php-format -msgid "Welcome to %s" -msgstr "" - -#: ../../Zotlabs/Module/Block.php:30 ../../Zotlabs/Module/Page.php:43 -msgid "Invalid item." -msgstr "" - -#: ../../Zotlabs/Module/Block.php:78 ../../Zotlabs/Module/Display.php:145 -#: ../../Zotlabs/Module/Display.php:162 ../../Zotlabs/Module/Display.php:179 -#: ../../Zotlabs/Module/Display.php:185 ../../Zotlabs/Module/Page.php:140 -#: ../../Zotlabs/Web/Router.php:169 -msgid "Page not found." -msgstr "" - -#: ../../Zotlabs/Module/Poke.php:164 -msgid "Poke somebody in your addressbook" -msgstr "" - -#: ../../Zotlabs/Module/Poke.php:197 ../../Zotlabs/Lib/Apps.php:352 -msgid "Poke" -msgstr "" - -#: ../../Zotlabs/Module/Poke.php:198 -msgid "Poke somebody" -msgstr "" - -#: ../../Zotlabs/Module/Poke.php:201 -msgid "Poke/Prod" -msgstr "" - -#: ../../Zotlabs/Module/Poke.php:202 -msgid "Poke, prod or do other things to somebody" -msgstr "" - -#: ../../Zotlabs/Module/Poke.php:209 -msgid "Recipient" -msgstr "" - -#: ../../Zotlabs/Module/Poke.php:210 -msgid "Choose what you wish to do to recipient" -msgstr "" - -#: ../../Zotlabs/Module/Poke.php:213 ../../Zotlabs/Module/Poke.php:214 -msgid "Make this post private" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:80 -msgid "Page owner information could not be retrieved." -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:95 ../../Zotlabs/Module/Photos.php:114 -msgid "Album not found." -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:104 -msgid "Delete Album" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:174 ../../Zotlabs/Module/Photos.php:1077 -msgid "Delete Photo" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:535 ../../Zotlabs/Module/Display.php:34 -#: ../../Zotlabs/Module/Directory.php:80 ../../Zotlabs/Module/Directory.php:87 -#: ../../Zotlabs/Module/Viewconnections.php:27 -#: ../../Zotlabs/Module/Search.php:27 -msgid "Public access denied." -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:546 -msgid "No photos selected" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:595 -msgid "Access to this item is restricted." -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:638 -#, php-format -msgid "%1$.2f MB of %2$.2f MB photo storage used." -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:641 -#, php-format -msgid "%1$.2f MB photo storage used." -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:683 -msgid "Upload Photos" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:687 -msgid "Enter an album name" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:688 -msgid "or select an existing album (doubleclick)" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:689 -msgid "Create a status post for this upload" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:690 ../../Zotlabs/Module/Photos.php:1062 -#: ../../Zotlabs/Module/Editblock.php:133 -#: ../../Zotlabs/Module/Card_edit.php:119 ../../include/conversation.php:1435 -msgid "Title (optional)" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:691 -msgid "Description (optional)" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:779 -msgid "Date descending" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:780 -msgid "Date ascending" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:781 -msgid "Name ascending" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:840 ../../Zotlabs/Module/Photos.php:1366 -msgid "Add Photos" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:842 -msgid "Sort" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:886 -msgid "Permission denied. Access to this item may be restricted." -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:888 -msgid "Photo not available" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:948 -msgid "Use as profile photo" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:949 -msgid "Use as cover photo" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:956 -msgid "Private Photo" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:971 -msgid "View Full Size" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:1053 -msgid "Edit photo" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:1057 -msgid "Move photo to album" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:1058 -msgid "Enter a new album name" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:1059 -msgid "or select an existing one (doubleclick)" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:1064 -msgid "Add a Tag" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:1072 -msgid "Example: @bob, @Barbara_Jensen, @jim@example.com" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:1075 -msgid "Flag as adult in album view" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:1094 ../../Zotlabs/Lib/ThreadItem.php:284 -msgid "I like this (toggle)" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:1095 ../../Zotlabs/Lib/ThreadItem.php:285 -msgid "I don't like this (toggle)" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:1097 ../../Zotlabs/Lib/ThreadItem.php:466 -#: ../../include/conversation.php:800 -msgid "Please wait" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:1113 ../../Zotlabs/Module/Photos.php:1231 -#: ../../Zotlabs/Lib/ThreadItem.php:900 -msgid "This is you" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:1115 ../../Zotlabs/Module/Photos.php:1233 -#: ../../Zotlabs/Lib/ThreadItem.php:902 ../../include/js_strings.php:6 -msgid "Comment" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:1131 ../../include/conversation.php:618 -msgctxt "title" -msgid "Likes" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:1132 ../../include/conversation.php:619 -msgctxt "title" -msgid "Dislikes" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:1133 ../../include/conversation.php:620 -msgctxt "title" -msgid "Attending" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:1134 ../../include/conversation.php:621 -msgctxt "title" -msgid "Not attending" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:1135 ../../include/conversation.php:622 -msgctxt "title" -msgid "Might attend" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:1149 ../../Zotlabs/Module/Photos.php:1161 -#: ../../Zotlabs/Lib/ThreadItem.php:206 ../../Zotlabs/Lib/ThreadItem.php:228 -msgid "View all" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:1153 ../../Zotlabs/Lib/ThreadItem.php:211 -#: ../../include/taxonomy.php:675 ../../include/conversation.php:2094 -msgctxt "noun" -msgid "Like" -msgid_plural "Likes" -msgstr[0] "" -msgstr[1] "" - -#: ../../Zotlabs/Module/Photos.php:1158 ../../Zotlabs/Lib/ThreadItem.php:220 -#: ../../include/conversation.php:2102 -msgctxt "noun" -msgid "Dislike" -msgid_plural "Dislikes" -msgstr[0] "" -msgstr[1] "" - -#: ../../Zotlabs/Module/Photos.php:1255 -msgid "Photo Tools" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:1264 -msgid "In This Photo:" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:1269 -msgid "Map" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:1277 ../../Zotlabs/Lib/ThreadItem.php:214 -#: ../../Zotlabs/Lib/ThreadItem.php:454 ../../include/conversation.php:2097 -msgctxt "noun" -msgid "Likes" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:1278 ../../Zotlabs/Lib/ThreadItem.php:223 -#: ../../Zotlabs/Lib/ThreadItem.php:455 ../../include/conversation.php:2105 -msgctxt "noun" -msgid "Dislikes" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:1349 ../../Zotlabs/Module/Photos.php:1363 -#: ../../Zotlabs/Module/Photos.php:1364 ../../include/photos.php:713 -msgid "Recent Photos" -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:117 -msgid "Blocked accounts" -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:118 -msgid "Expired accounts" -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:119 -msgid "Expiring accounts" -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:135 ../../Zotlabs/Module/Locs.php:122 -msgid "Primary" -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:136 -msgid "Clones" -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:142 -msgid "Message queues" -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:167 -msgid "Your software should be updated" -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:172 ../../Zotlabs/Module/Admin/Logs.php:82 -#: ../../Zotlabs/Module/Admin/Channels.php:152 -#: ../../Zotlabs/Module/Admin/Addons.php:339 -#: ../../Zotlabs/Module/Admin/Addons.php:434 -#: ../../Zotlabs/Module/Admin/Security.php:128 -#: ../../Zotlabs/Module/Admin/Site.php:283 -#: ../../Zotlabs/Module/Admin/Themes.php:122 -#: ../../Zotlabs/Module/Admin/Themes.php:156 -#: ../../Zotlabs/Module/Admin/Accounts.php:166 -msgid "Administration" -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:173 ../../include/conversation.php:1484 -msgid "Summary" -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:176 -msgid "Registered accounts" -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:177 -msgid "Pending registrations" -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:178 -msgid "Registered channels" -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:179 -msgid "Active addons" -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:180 ../../Zotlabs/Module/Sites.php:76 -msgid "Version" -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:181 -msgid "Repository version (release)" -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:182 -msgid "Repository version (dev)" -msgstr "" - -#: ../../Zotlabs/Module/Api.php:74 ../../Zotlabs/Module/Api.php:95 -msgid "Authorize application connection" -msgstr "" - -#: ../../Zotlabs/Module/Api.php:75 -msgid "Return to your app and insert this Security Code:" -msgstr "" - -#: ../../Zotlabs/Module/Api.php:85 -msgid "Please login to continue." -msgstr "" - -#: ../../Zotlabs/Module/Api.php:97 -msgid "" -"Do you want to authorize this application to access your posts and contacts, " -"and/or create new posts for you?" -msgstr "" - -#: ../../Zotlabs/Module/Invite.php:34 -msgid "Total invitation limit exceeded." -msgstr "" - -#: ../../Zotlabs/Module/Invite.php:58 -#, php-format -msgid "%s : Not a valid email address." -msgstr "" - -#: ../../Zotlabs/Module/Invite.php:72 -msgid "Please join us on $Projectname" -msgstr "" - -#: ../../Zotlabs/Module/Invite.php:82 -msgid "Invitation limit exceeded. Please contact your site administrator." -msgstr "" - -#: ../../Zotlabs/Module/Invite.php:87 -#, php-format -msgid "%s : Message delivery failed." -msgstr "" - -#: ../../Zotlabs/Module/Invite.php:91 -#, php-format -msgid "%d message sent." -msgid_plural "%d messages sent." -msgstr[0] "" -msgstr[1] "" - -#: ../../Zotlabs/Module/Invite.php:108 -msgid "Send email invitations to join this network" -msgstr "" - -#: ../../Zotlabs/Module/Invite.php:121 -msgid "You have no more invitations available" -msgstr "" - -#: ../../Zotlabs/Module/Invite.php:152 -msgid "Send invitations" -msgstr "" - -#: ../../Zotlabs/Module/Invite.php:153 -msgid "Enter email addresses, one per line:" -msgstr "" - -#: ../../Zotlabs/Module/Invite.php:154 -msgid "Your message:" -msgstr "" - -#: ../../Zotlabs/Module/Invite.php:155 -msgid "Please join my community on $Projectname." -msgstr "" - -#: ../../Zotlabs/Module/Invite.php:157 -msgid "You will need to supply this invitation code:" -msgstr "" - -#: ../../Zotlabs/Module/Invite.php:158 -msgid "1. Register at any $Projectname location (they are all inter-connected)" -msgstr "" - -#: ../../Zotlabs/Module/Invite.php:160 -msgid "2. Enter my $Projectname network address into the site searchbar." -msgstr "" - -#: ../../Zotlabs/Module/Invite.php:161 -msgid "or visit" -msgstr "" - -#: ../../Zotlabs/Module/Invite.php:163 -msgid "3. Click [Connect]" -msgstr "" - -#: ../../Zotlabs/Module/Menu.php:70 -msgid "Unable to update menu." -msgstr "" - -#: ../../Zotlabs/Module/Menu.php:81 -msgid "Unable to create menu." -msgstr "" - -#: ../../Zotlabs/Module/Menu.php:163 ../../Zotlabs/Module/Menu.php:176 -msgid "Menu Name" -msgstr "" - -#: ../../Zotlabs/Module/Menu.php:163 -msgid "Unique name (not visible on webpage) - required" -msgstr "" - -#: ../../Zotlabs/Module/Menu.php:164 ../../Zotlabs/Module/Menu.php:177 -msgid "Menu Title" -msgstr "" - -#: ../../Zotlabs/Module/Menu.php:164 -msgid "Visible on webpage - leave empty for no title" -msgstr "" - -#: ../../Zotlabs/Module/Menu.php:165 -msgid "Allow Bookmarks" -msgstr "" - -#: ../../Zotlabs/Module/Menu.php:165 ../../Zotlabs/Module/Menu.php:224 -msgid "Menu may be used to store saved bookmarks" -msgstr "" - -#: ../../Zotlabs/Module/Menu.php:166 ../../Zotlabs/Module/Menu.php:227 -msgid "Submit and proceed" -msgstr "" - -#: ../../Zotlabs/Module/Menu.php:173 ../../include/text.php:2556 -msgid "Menus" -msgstr "" - -#: ../../Zotlabs/Module/Menu.php:179 ../../Zotlabs/Module/Locs.php:123 -msgid "Drop" -msgstr "" - -#: ../../Zotlabs/Module/Menu.php:180 ../../Zotlabs/Module/Connections.php:245 -#: ../../Zotlabs/Module/Webpages.php:267 ../../Zotlabs/Module/Blocks.php:161 -#: ../../Zotlabs/Module/Layouts.php:197 -msgid "Created" -msgstr "" - -#: ../../Zotlabs/Module/Menu.php:181 ../../Zotlabs/Module/Webpages.php:268 -#: ../../Zotlabs/Module/Blocks.php:162 ../../Zotlabs/Module/Layouts.php:198 -msgid "Edited" -msgstr "" - -#: ../../Zotlabs/Module/Menu.php:182 ../../Zotlabs/Module/Connections.php:90 -#: ../../Zotlabs/Module/Connections.php:103 -#: ../../Zotlabs/Module/Notifications.php:50 -msgid "New" -msgstr "" - -#: ../../Zotlabs/Module/Menu.php:183 -msgid "Bookmarks allowed" -msgstr "" - -#: ../../Zotlabs/Module/Menu.php:185 -msgid "Delete this menu" -msgstr "" - -#: ../../Zotlabs/Module/Menu.php:186 ../../Zotlabs/Module/Menu.php:221 -msgid "Edit menu contents" -msgstr "" - -#: ../../Zotlabs/Module/Menu.php:187 -msgid "Edit this menu" -msgstr "" - -#: ../../Zotlabs/Module/Menu.php:203 -msgid "Menu could not be deleted." -msgstr "" - -#: ../../Zotlabs/Module/Menu.php:211 ../../Zotlabs/Module/Mitem.php:35 -msgid "Menu not found." -msgstr "" - -#: ../../Zotlabs/Module/Menu.php:216 -msgid "Edit Menu" -msgstr "" - -#: ../../Zotlabs/Module/Menu.php:220 -msgid "Add or remove entries to this menu" -msgstr "" - -#: ../../Zotlabs/Module/Menu.php:222 -msgid "Menu name" -msgstr "" - -#: ../../Zotlabs/Module/Menu.php:222 -msgid "Must be unique, only seen by you" -msgstr "" - -#: ../../Zotlabs/Module/Menu.php:223 -msgid "Menu title" -msgstr "" - -#: ../../Zotlabs/Module/Menu.php:223 -msgid "Menu title as seen by others" -msgstr "" - -#: ../../Zotlabs/Module/Menu.php:224 -msgid "Allow bookmarks" -msgstr "" - -#: ../../Zotlabs/Module/Menu.php:234 ../../Zotlabs/Module/Mitem.php:138 -#: ../../Zotlabs/Module/Xchan.php:41 -msgid "Not found." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Features.php:56 -#, php-format -msgid "Lock feature %s" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Features.php:64 -msgid "Manage Additional Features" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Logs.php:28 -msgid "Log settings updated." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Logs.php:85 -msgid "Clear" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Logs.php:91 -msgid "Debugging" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Logs.php:92 -msgid "Log file" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Logs.php:92 -msgid "" -"Must be writable by web server. Relative to your top-level webserver " -"directory." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Logs.php:93 -msgid "Log level" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Profile_photo.php:66 -#: ../../Zotlabs/Module/Admin/Cover_photo.php:63 -#: ../../Zotlabs/Module/Profile_photo.php:63 -#: ../../Zotlabs/Module/Cover_photo.php:63 -msgid "Image uploaded but image cropping failed." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Profile_photo.php:119 -#: ../../Zotlabs/Module/Admin/Profile_photo.php:252 -#: ../../Zotlabs/Module/Profile_photo.php:116 -#: ../../Zotlabs/Module/Profile_photo.php:287 -#: ../../include/photo_factory.php:525 -msgid "Profile Photos" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Profile_photo.php:143 -#: ../../Zotlabs/Module/Admin/Cover_photo.php:198 -#: ../../Zotlabs/Module/Profile_photo.php:140 -#: ../../Zotlabs/Module/Cover_photo.php:198 -msgid "Image resize failed." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Profile_photo.php:184 -#: ../../Zotlabs/Module/Profile_photo.php:216 -msgid "" -"Shift-reload the page or clear browser cache if the new photo does not " -"display immediately." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Profile_photo.php:188 -#: ../../Zotlabs/Module/Admin/Cover_photo.php:208 -#: ../../Zotlabs/Module/Profile_photo.php:223 -#: ../../Zotlabs/Module/Cover_photo.php:212 ../../include/photos.php:196 -msgid "Unable to process image" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Profile_photo.php:266 -#: ../../Zotlabs/Module/Profile_photo.php:301 -msgid "Image upload failed." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Profile_photo.php:285 -#: ../../Zotlabs/Module/Profile_photo.php:320 -msgid "Unable to process image." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Profile_photo.php:352 -#: ../../Zotlabs/Module/Admin/Profile_photo.php:392 -#: ../../Zotlabs/Module/Admin/Cover_photo.php:316 -#: ../../Zotlabs/Module/Admin/Cover_photo.php:332 -#: ../../Zotlabs/Module/Profile_photo.php:383 -#: ../../Zotlabs/Module/Profile_photo.php:431 -#: ../../Zotlabs/Module/Cover_photo.php:368 -#: ../../Zotlabs/Module/Cover_photo.php:384 -msgid "Photo not available." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Profile_photo.php:460 -#: ../../Zotlabs/Module/Profile_photo.php:498 -msgid "" -"Your default profile photo is visible to anybody on the internet. Profile " -"photos for alternate profiles will inherit the permissions of the profile" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Profile_photo.php:460 -msgid "" -"Your site photo is visible to anybody on the internet and may be distributed " -"to other websites." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Profile_photo.php:462 -#: ../../Zotlabs/Module/Admin/Cover_photo.php:371 -#: ../../Zotlabs/Module/Profile_photo.php:500 -#: ../../Zotlabs/Module/Cover_photo.php:422 -msgid "Upload File:" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Profile_photo.php:463 -#: ../../Zotlabs/Module/Admin/Cover_photo.php:372 -#: ../../Zotlabs/Module/Profile_photo.php:501 -#: ../../Zotlabs/Module/Cover_photo.php:423 -msgid "Select a profile:" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Profile_photo.php:464 -msgid "Use Photo for Site Logo" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Profile_photo.php:464 -msgid "Change Site Logo" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Profile_photo.php:465 -#: ../../Zotlabs/Module/Profile_photo.php:503 -msgid "Use" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Profile_photo.php:469 -#: ../../Zotlabs/Module/Admin/Profile_photo.php:470 -#: ../../Zotlabs/Module/Admin/Cover_photo.php:376 -#: ../../Zotlabs/Module/Admin/Cover_photo.php:377 -#: ../../Zotlabs/Module/Profile_photo.php:507 -#: ../../Zotlabs/Module/Profile_photo.php:508 -#: ../../Zotlabs/Module/Cover_photo.php:427 -#: ../../Zotlabs/Module/Cover_photo.php:428 -msgid "Use a photo from your albums" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Profile_photo.php:472 -#: ../../Zotlabs/Module/Admin/Cover_photo.php:379 -#: ../../Zotlabs/Module/Profile_photo.php:510 -#: ../../Zotlabs/Module/Cover_photo.php:430 ../../include/conversation.php:1419 -#: ../../include/conversation.php:1474 ../../include/conversation.php:1476 -msgid "OK" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Profile_photo.php:473 -#: ../../Zotlabs/Module/Admin/Cover_photo.php:380 -#: ../../Zotlabs/Module/Profile_photo.php:511 -#: ../../Zotlabs/Module/Cover_photo.php:431 ../../include/conversation.php:1334 -msgid "Choose images to embed" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Profile_photo.php:474 -#: ../../Zotlabs/Module/Admin/Cover_photo.php:381 -#: ../../Zotlabs/Module/Profile_photo.php:512 -#: ../../Zotlabs/Module/Cover_photo.php:432 ../../include/conversation.php:1335 -msgid "Choose an album" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Profile_photo.php:475 -#: ../../Zotlabs/Module/Admin/Cover_photo.php:382 -#: ../../Zotlabs/Module/Profile_photo.php:513 -#: ../../Zotlabs/Module/Cover_photo.php:433 -msgid "Choose a different album" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Profile_photo.php:476 -#: ../../Zotlabs/Module/Admin/Cover_photo.php:383 -#: ../../Zotlabs/Module/Profile_photo.php:514 -#: ../../Zotlabs/Module/Cover_photo.php:434 ../../include/conversation.php:1337 -msgid "Error getting album list" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Profile_photo.php:477 -#: ../../Zotlabs/Module/Admin/Cover_photo.php:384 -#: ../../Zotlabs/Module/Profile_photo.php:515 -#: ../../Zotlabs/Module/Cover_photo.php:435 ../../include/conversation.php:1338 -msgid "Error getting photo link" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Profile_photo.php:478 -#: ../../Zotlabs/Module/Admin/Cover_photo.php:385 -#: ../../Zotlabs/Module/Profile_photo.php:516 -#: ../../Zotlabs/Module/Cover_photo.php:436 ../../include/conversation.php:1339 -msgid "Error getting album" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Profile_photo.php:480 -#: ../../Zotlabs/Module/Admin/Cover_photo.php:387 -#: ../../Zotlabs/Module/Profile_photo.php:518 -#: ../../Zotlabs/Module/Cover_photo.php:438 -msgid "Select previously uploaded photo" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Profile_photo.php:497 -#: ../../Zotlabs/Module/Admin/Cover_photo.php:404 -#: ../../Zotlabs/Module/Profile_photo.php:535 -#: ../../Zotlabs/Module/Cover_photo.php:455 -msgid "Crop Image" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Profile_photo.php:498 -#: ../../Zotlabs/Module/Admin/Cover_photo.php:405 -#: ../../Zotlabs/Module/Profile_photo.php:536 -#: ../../Zotlabs/Module/Cover_photo.php:456 -msgid "Please adjust the image cropping for optimum viewing." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Profile_photo.php:500 -#: ../../Zotlabs/Module/Admin/Cover_photo.php:407 -#: ../../Zotlabs/Module/Profile_photo.php:538 -#: ../../Zotlabs/Module/Cover_photo.php:458 -msgid "Done Editing" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Channels.php:35 -#, php-format -msgid "%s channel censored/uncensored" -msgid_plural "%s channels censored/uncensored" -msgstr[0] "" -msgstr[1] "" - -#: ../../Zotlabs/Module/Admin/Channels.php:44 -#, php-format -msgid "%s channel code allowed/disallowed" -msgid_plural "%s channels code allowed/disallowed" -msgstr[0] "" -msgstr[1] "" - -#: ../../Zotlabs/Module/Admin/Channels.php:50 -#, php-format -msgid "%s channel deleted" -msgid_plural "%s channels deleted" -msgstr[0] "" -msgstr[1] "" - -#: ../../Zotlabs/Module/Admin/Channels.php:69 -msgid "Channel not found" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Channels.php:79 -#, php-format -msgid "Channel '%s' deleted" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Channels.php:91 -#, php-format -msgid "Channel '%s' censored" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Channels.php:91 -#, php-format -msgid "Channel '%s' uncensored" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Channels.php:102 -#, php-format -msgid "Channel '%s' code allowed" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Channels.php:102 -#, php-format -msgid "Channel '%s' code disallowed" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Channels.php:155 -#: ../../Zotlabs/Module/Admin/Accounts.php:169 -msgid "select all" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Channels.php:157 -#: ../../Zotlabs/Module/Directory.php:365 ../../Zotlabs/Module/Connedit.php:584 -msgid "Censor" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Channels.php:158 -#: ../../Zotlabs/Module/Directory.php:365 ../../Zotlabs/Module/Connedit.php:584 -msgid "Uncensor" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Channels.php:159 -msgid "Allow Code" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Channels.php:160 -msgid "Disallow Code" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Channels.php:161 ../../include/nav.php:385 -#: ../../include/conversation.php:1923 -msgid "Channel" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Channels.php:165 -msgid "UID" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Channels.php:167 -#: ../../Zotlabs/Module/Locs.php:121 ../../Zotlabs/Module/Cdav.php:1356 -#: ../../Zotlabs/Module/Profiles.php:500 ../../Zotlabs/Module/Profiles.php:792 -#: ../../Zotlabs/Module/Connedit.php:856 -msgid "Address" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Channels.php:169 -msgid "" -"Selected channels will be deleted!\\n\\nEverything that was posted in these " -"channels on this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Channels.php:170 -msgid "" -"The channel {0} will be deleted!\\n\\nEverything that was posted in this " -"channel on this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Queue.php:33 -msgid "Queue Statistics" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Queue.php:34 -msgid "Total Entries" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Queue.php:35 -msgid "Priority" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Queue.php:36 -msgid "Destination URL" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Queue.php:37 -msgid "Mark hub permanently offline" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Queue.php:38 -msgid "Empty queue for this hub" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Queue.php:39 -msgid "Last known contact" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Dbsync.php:19 -#: ../../Zotlabs/Module/Admin/Dbsync.php:59 -msgid "Update has been marked successful" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Dbsync.php:32 -#, php-format -msgid "Verification of update %s failed. Check system logs." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Dbsync.php:35 -#: ../../Zotlabs/Module/Admin/Dbsync.php:74 -#, php-format -msgid "Update %s was successfully applied." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Dbsync.php:39 -#, php-format -msgid "Verifying update %s did not return a status. Unknown if it succeeded." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Dbsync.php:42 -#, php-format -msgid "Update %s does not contain a verification function." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Dbsync.php:46 -#: ../../Zotlabs/Module/Admin/Dbsync.php:81 -#, php-format -msgid "Update function %s could not be found." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Dbsync.php:71 -#, php-format -msgid "Executing update procedure %s failed. Check system logs." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Dbsync.php:78 -#, php-format -msgid "" -"Update %s did not return a status. It cannot be determined if it was " -"successful." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Dbsync.php:99 -msgid "Failed Updates" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Dbsync.php:101 -msgid "Mark success (if update was manually applied)" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Dbsync.php:102 -msgid "Attempt to verify this update if a verification procedure exists" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Dbsync.php:103 -msgid "Attempt to execute this update step automatically" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Dbsync.php:108 -msgid "No failed updates." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Addons.php:287 -#, php-format -msgid "Plugin %s disabled." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Addons.php:292 -#, php-format -msgid "Plugin %s enabled." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Addons.php:308 -#: ../../Zotlabs/Module/Admin/Themes.php:95 -msgid "Disable" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Addons.php:311 -#: ../../Zotlabs/Module/Admin/Themes.php:97 -msgid "Enable" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Addons.php:341 -#: ../../Zotlabs/Module/Admin/Themes.php:124 -msgid "Toggle" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Addons.php:349 -#: ../../Zotlabs/Module/Admin/Themes.php:134 -msgid "Author: " -msgstr "" - -#: ../../Zotlabs/Module/Admin/Addons.php:350 -#: ../../Zotlabs/Module/Admin/Themes.php:135 -msgid "Maintainer: " -msgstr "" - -#: ../../Zotlabs/Module/Admin/Addons.php:351 -msgid "Minimum project version: " -msgstr "" - -#: ../../Zotlabs/Module/Admin/Addons.php:352 -msgid "Maximum project version: " -msgstr "" - -#: ../../Zotlabs/Module/Admin/Addons.php:353 -msgid "Minimum PHP version: " -msgstr "" - -#: ../../Zotlabs/Module/Admin/Addons.php:354 -msgid "Compatible Server Roles: " -msgstr "" - -#: ../../Zotlabs/Module/Admin/Addons.php:355 -msgid "Requires: " -msgstr "" - -#: ../../Zotlabs/Module/Admin/Addons.php:356 -#: ../../Zotlabs/Module/Admin/Addons.php:440 -msgid "Disabled - version incompatibility" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Addons.php:409 -msgid "Enter the public git repository URL of the addon repo." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Addons.php:410 -msgid "Addon repo git URL" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Addons.php:411 -msgid "Custom repo name" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Addons.php:411 -msgid "(optional)" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Addons.php:412 -msgid "Download Addon Repo" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Addons.php:419 -msgid "Install new repo" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Addons.php:420 ../../Zotlabs/Lib/Apps.php:557 -msgid "Install" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Addons.php:443 -msgid "Manage Repos" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Addons.php:444 -msgid "Installed Addon Repositories" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Addons.php:445 -msgid "Install a New Addon Repository" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Addons.php:452 -msgid "Switch branch" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Profs.php:89 -msgid "New Profile Field" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Profs.php:90 -#: ../../Zotlabs/Module/Admin/Profs.php:110 -msgid "Field nickname" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Profs.php:90 -#: ../../Zotlabs/Module/Admin/Profs.php:110 -msgid "System name of field" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Profs.php:91 -#: ../../Zotlabs/Module/Admin/Profs.php:111 -msgid "Input type" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Profs.php:92 -#: ../../Zotlabs/Module/Admin/Profs.php:112 -msgid "Field Name" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Profs.php:92 -#: ../../Zotlabs/Module/Admin/Profs.php:112 -msgid "Label on profile pages" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Profs.php:93 -#: ../../Zotlabs/Module/Admin/Profs.php:113 -msgid "Help text" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Profs.php:93 -#: ../../Zotlabs/Module/Admin/Profs.php:113 -msgid "Additional info (optional)" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Profs.php:103 -msgid "Field definition not found" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Profs.php:109 -msgid "Edit Profile Field" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Profs.php:168 -msgid "Profile Fields" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Profs.php:169 -msgid "Basic Profile Fields" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Profs.php:170 -msgid "Advanced Profile Fields" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Profs.php:170 -msgid "(In addition to basic fields)" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Profs.php:172 -msgid "All available fields" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Profs.php:173 -msgid "Custom Fields" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Profs.php:177 -msgid "Create Custom Field" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Account_edit.php:29 -#, php-format -msgid "Password changed for account %d." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Account_edit.php:44 -msgid "Account settings updated." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Account_edit.php:59 -msgid "Account not found." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Account_edit.php:66 -msgid "Account Edit" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Account_edit.php:67 -msgid "New Password" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Account_edit.php:68 -msgid "New Password again" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Account_edit.php:69 -msgid "Account language (for emails)" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Account_edit.php:70 -msgid "Service class" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Security.php:119 -msgid "" -"By default, unfiltered HTML is allowed in embedded media. This is inherently " -"insecure." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Security.php:122 -msgid "" -"The recommended setting is to only allow unfiltered HTML from the following " -"sites:" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Security.php:123 -msgid "" -"https://youtube.com/
https://www.youtube.com/
https://youtu.be/" -"
https://vimeo.com/
https://soundcloud.com/
" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Security.php:124 -msgid "" -"All other embedded content will be filtered, unless " -"embedded content from that site is explicitly blocked." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Security.php:131 -msgid "Block public" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Security.php:131 -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:132 -msgid "Block public search" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Security.php:132 -msgid "" -"Prevent access to search content unless you are currently authenticated." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Security.php:133 -msgid "Hide local directory" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Security.php:133 -msgid "Only use the global directory" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Security.php:134 -msgid "Provide a cloud root directory" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Security.php:134 -msgid "" -"The cloud root directory lists all channel names which provide public files" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Security.php:135 -msgid "Show total disk space available to cloud uploads" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Security.php:136 -msgid "Allow SVG thumbnails in file browser" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Security.php:136 -msgid "WARNING: SVG images may contain malicious code." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Security.php:138 -msgid "Allow embedded (inline) PDF files" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Security.php:140 -msgid "Set \"Transport Security\" HTTP header" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Security.php:141 -msgid "Set \"Content Security Policy\" HTTP header" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Security.php:142 -msgid "Allowed email domains" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Security.php:142 -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:143 -msgid "Not allowed email domains" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Security.php:143 -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:144 -msgid "Allow communications only from these sites" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Security.php:144 -#: ../../Zotlabs/Module/Admin/Security.php:149 -msgid "" -"One site per line. Leave empty to allow communication from anywhere by " -"default" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Security.php:145 -msgid "Block communications from these sites" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Security.php:146 -msgid "Allow communications only from these channels" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Security.php:146 -#: ../../Zotlabs/Module/Admin/Security.php:151 -msgid "" -"One channel (hash) per line. Leave empty to allow from any channel by default" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Security.php:147 -msgid "Block communications from these channels" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Security.php:149 -msgid "Allow public stream communications only from these sites" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Security.php:150 -msgid "Block public stream communications from these sites" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Security.php:151 -msgid "Allow public stream communications only from these channels" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Security.php:152 -msgid "Block public stream communications from these channels" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Security.php:155 -msgid "Only allow embeds from secure (SSL) websites and links." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Security.php:156 -msgid "Allow unfiltered embedded HTML content only from these domains" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Security.php:156 -msgid "One site per line. By default embedded content is filtered." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Security.php:157 -msgid "Block embedded HTML from these domains" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:162 -msgid "Site settings updated." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:207 -msgid "mobile" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:209 -msgid "experimental" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:211 -msgid "unsupported" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:252 -msgid "Yes - with approval" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:258 -msgid "My site is not a public server" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:259 -msgid "My site provides free public access" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:260 -msgid "My site provides paid public access" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:261 -msgid "My site provides free public access and premium paid plans" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:276 -msgid "Default permission role for new accounts" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:276 -msgid "" -"This role will be used for the first channel created after registration." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:286 -msgid "Site Configuration" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:287 -#: ../../Zotlabs/Module/Register.php:283 -msgid "Registration" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:288 -msgid "File upload" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:289 -msgid "Policies" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:292 -msgid "Site name" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:293 -msgid "Administrator Information" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:293 -msgid "" -"Contact information for site administrators. Displayed on siteinfo page. " -"BBCode may be used here." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:294 ../../Zotlabs/Module/Siteinfo.php:33 -msgid "Site Information" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:294 -msgid "" -"Publicly visible description of this site. Displayed on siteinfo page. " -"BBCode may be used here." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:295 -msgid "System language" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:296 -msgid "System theme" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:296 -msgid "" -"Default system theme - may be over-ridden by user profiles - change theme settings" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:299 -msgid "ActivityPub protocol" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:299 -msgid "Provides access to software supporting the ActivityPub protocol." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:300 -msgid "Maximum image size" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:300 -msgid "" -"Maximum size in bytes of uploaded images. Default is 0, which means no " -"limits." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:301 -msgid "Cache all public images" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:301 -msgid "If disabled, proxy non-SSL images, but do not store locally" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:302 -msgid "Does this site allow new member registration?" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:303 -msgid "Invitation only" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:303 -msgid "" -"Only allow new member registrations with an invitation code. New member " -"registration must be allowed for this to work." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:304 -msgid "Minimum age" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:304 -msgid "Minimum age (in years) for who may register on this site." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:305 -msgid "Which best describes the types of account offered by this hub?" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:305 -msgid "" -"If a public server policy is selected, this information may be displayed on " -"the public server site list." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:306 -msgid "Register text" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:306 -msgid "Will be displayed prominently on the registration page." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:308 -msgid "Site homepage to show visitors (default: login box)" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:308 -msgid "" -"example: 'public' to show public stream, 'page/sys/home' to show a system " -"webpage called 'home' or 'include:home.html' to include a file." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:309 -msgid "Preserve site homepage URL" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:309 -msgid "" -"Present the site homepage in a frame at the original location instead of " -"redirecting" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:310 -msgid "Accounts abandoned after x days" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:310 -msgid "" -"Will not waste system resources polling external sites for abandonded " -"accounts. Enter 0 for no time limit." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:311 -msgid "Block directory from visitors" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:311 -msgid "Only allow authenticated access to directory." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:312 -msgid "Verify Email Addresses" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:312 -msgid "" -"Check to verify email addresses used in account registration (recommended)." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:313 -msgid "Force publish in directory" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:313 -msgid "" -"Check to force all profiles on this site to be listed in the site directory." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:314 -msgid "Public stream" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:314 -msgid "" -"Provide access to public content from other sites. Warning: this content is " -"unmoderated." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:315 -msgid "Site only Public stream" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:315 -msgid "" -"Provide access to public content originating only from this site if Public " -"stream is disabled." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:316 -msgid "Allow anybody on the internet to access the Public stream" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:316 -msgid "" -"Default is to only allow viewing by site members. Warning: this content is " -"unmoderated." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:317 -msgid "Show numbers of likes and dislikes in conversations" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:317 -msgid "" -"If disabled, the presence of likes and dislikes will be shown, but without " -"totals." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:318 -msgid "Only import Public stream posts with this text" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:318 -#: ../../Zotlabs/Module/Admin/Site.php:319 -msgid "" -"words one per line or #tags or /patterns/ or lang=xx, leave blank to import " -"all posts" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:319 -msgid "Do not import Public stream posts with this text" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:320 -msgid "Maximum number of imported friends of friends" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:320 -msgid "" -"Warning: higher numbers will improve the quality of friend suggestions and " -"directory results but can exponentially increase resource usage" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:321 -msgid "Login on Homepage" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:321 -msgid "" -"Present a login box to visitors on the home page if no other content has " -"been configured." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:322 -msgid "Enable context help" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:322 -msgid "" -"Display contextual help for the current page when the help button is pressed." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:323 -msgid "Reply-to email address for system generated email." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:324 -msgid "Sender (From) email address for system generated email." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:325 -msgid "Display name of email sender for system generated email." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:326 -msgid "Directory Server URL" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:326 -msgid "Default directory server" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:327 -msgid "Proxy user" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:328 -msgid "Proxy URL" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:329 -msgid "Network timeout" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:329 -msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:330 -msgid "Delivery interval" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:330 -msgid "" -"Delay background delivery processes by this many seconds to reduce system " -"load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 " -"for large dedicated servers." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:331 -msgid "Deliveries per process" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:331 -msgid "" -"Number of deliveries to attempt in a single operating system process. Adjust " -"if necessary to tune system performance. Recommend: 1-5." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:332 -msgid "Queue Threshold" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:332 -msgid "" -"Always defer immediate delivery if queue contains more than this number of " -"entries." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:333 -msgid "Poll interval" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:333 -msgid "" -"Delay background polling processes by this many seconds to reduce system " -"load. If 0, use delivery interval." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:334 -msgid "Path to ImageMagick convert program" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:334 -msgid "" -"If set, use this program to generate photo thumbnails for huge images ( > " -"4000 pixels in either dimension), otherwise memory exhaustion may occur. " -"Example: /usr/bin/convert" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:335 -msgid "Maximum Load Average" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:335 -msgid "" -"Maximum system load before delivery and poll processes are deferred - " -"default 50." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:336 -msgid "Expiration period in days for imported streams and cached images" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:336 -msgid "0 for no expiration of imported content" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:337 -msgid "" -"Do not expire any posts which have comments less than this many days ago" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:338 -msgid "" -"Public servers: Optional landing (marketing) webpage for new registrants" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:338 -#, php-format -msgid "Create this page first. Default is %s/register" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:339 -msgid "Page to display after creating a new channel" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:339 -msgid "Default: profiles" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:340 -msgid "Site location" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:340 -msgid "Region or country - shared with other sites" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Cover_photo.php:174 -#: ../../Zotlabs/Module/Admin/Cover_photo.php:261 -#: ../../Zotlabs/Module/Cover_photo.php:174 -#: ../../Zotlabs/Module/Cover_photo.php:265 -msgid "Cover Photos" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Cover_photo.php:369 -#: ../../Zotlabs/Module/Cover_photo.php:420 -msgid "Your cover photo may be visible to anybody on the internet" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Cover_photo.php:373 -#: ../../Zotlabs/Module/Cover_photo.php:424 -msgid "Change Cover Photo" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Themes.php:26 -msgid "Theme settings updated." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Themes.php:61 -msgid "No themes found." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Themes.php:116 -msgid "Screenshot" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Themes.php:162 -msgid "[Experimental]" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Themes.php:163 -msgid "[Unsupported]" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Accounts.php:37 -#, php-format -msgid "%s account blocked/unblocked" -msgid_plural "%s account blocked/unblocked" -msgstr[0] "" -msgstr[1] "" - -#: ../../Zotlabs/Module/Admin/Accounts.php:45 -#, php-format -msgid "%s account deleted" -msgid_plural "%s accounts deleted" -msgstr[0] "" -msgstr[1] "" - -#: ../../Zotlabs/Module/Admin/Accounts.php:83 -msgid "Account not found" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Accounts.php:94 ../../include/channel.php:2108 -#, php-format -msgid "Account '%s' deleted" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Accounts.php:102 -#, php-format -msgid "Account '%s' blocked" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Accounts.php:110 -#, php-format -msgid "Account '%s' unblocked" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Accounts.php:170 -msgid "Registrations waiting for confirm" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Accounts.php:171 -msgid "Request date" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Accounts.php:171 -#: ../../Zotlabs/Module/Admin/Accounts.php:183 -#: ../../Zotlabs/Module/Cdav.php:1353 ../../Zotlabs/Module/Profiles.php:789 -#: ../../Zotlabs/Module/Connedit.php:853 ../../include/network.php:1512 -msgid "Email" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Accounts.php:172 -msgid "No registrations." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Accounts.php:173 -#: ../../Zotlabs/Module/Connections.php:337 ../../include/conversation.php:743 -msgid "Approve" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Accounts.php:174 -#: ../../Zotlabs/Module/Authorize.php:33 -msgid "Deny" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Accounts.php:177 -#: ../../Zotlabs/Module/Connedit.php:568 -msgid "Unblock" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Accounts.php:182 -msgid "ID" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Accounts.php:184 -msgid "All Channels" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Accounts.php:185 -msgid "Register date" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Accounts.php:186 -msgid "Last login" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Accounts.php:187 -msgid "Expires" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Accounts.php:188 -msgid "Service Class" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Accounts.php:190 -msgid "" -"Selected accounts will be deleted!\\n\\nEverything these accounts had posted " -"on this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Accounts.php:191 -msgid "" -"The account {0} will be deleted!\\n\\nEverything this account has posted on " -"this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "" - -#: ../../Zotlabs/Module/Clients.php:14 -msgid "" -"This app allows you to authorize mobile apps using OAuth and OpenID to " -"access your channel." -msgstr "" - -#: ../../Zotlabs/Module/Authorize.php:17 -msgid "Unknown App" -msgstr "" - -#: ../../Zotlabs/Module/Authorize.php:29 -msgid "Authorize" -msgstr "" - -#: ../../Zotlabs/Module/Authorize.php:30 -#, php-format -msgid "Do you authorize the app %s to access your channel data?" -msgstr "" - -#: ../../Zotlabs/Module/Authorize.php:32 -msgid "Allow" -msgstr "" - -#: ../../Zotlabs/Module/Content_filter.php:25 -msgid "Content Filter settings updated." -msgstr "" - -#: ../../Zotlabs/Module/Content_filter.php:36 -msgid "" -"This app (when installed) allows you to filter incoming content from all " -"sources or from specific connections. The filtering may be based on words, " -"tags, regular expressions, or language" -msgstr "" - -#: ../../Zotlabs/Module/Content_filter.php:44 -msgid "" -"The settings on this page apply to all incoming content. To edit the " -"settings for individual connetions, see the similar settings on the " -"Connection Edit page for that connection." -msgstr "" - -#: ../../Zotlabs/Module/Content_filter.php:51 -#: ../../Zotlabs/Module/Connedit.php:817 -msgid "Only import posts with this text" -msgstr "" - -#: ../../Zotlabs/Module/Content_filter.php:53 -#: ../../Zotlabs/Module/Content_filter.php:61 -msgid "" -"words one per line or #tags, $categories, /patterns/, lang=xx, lang!=xx - " -"leave blank to import all posts" -msgstr "" - -#: ../../Zotlabs/Module/Content_filter.php:59 -#: ../../Zotlabs/Module/Connedit.php:818 -msgid "Do not import posts with this text" -msgstr "" - -#: ../../Zotlabs/Module/Content_filter.php:66 -msgid "Content Filter Settings" -msgstr "" - -#: ../../Zotlabs/Module/Cal.php:77 -msgid "Permissions denied." -msgstr "" - -#: ../../Zotlabs/Module/Cal.php:349 ../../include/text.php:2579 -msgid "Import" -msgstr "" - -#: ../../Zotlabs/Module/Locs.php:28 ../../Zotlabs/Module/Locs.php:57 -msgid "Location not found." -msgstr "" - -#: ../../Zotlabs/Module/Locs.php:65 -msgid "Location lookup failed." -msgstr "" - -#: ../../Zotlabs/Module/Locs.php:69 -msgid "" -"Please select another location to become primary before removing the primary " -"location." -msgstr "" - -#: ../../Zotlabs/Module/Locs.php:98 -msgid "Pushing location info" -msgstr "" - -#: ../../Zotlabs/Module/Locs.php:108 -msgid "No locations found." -msgstr "" - -#: ../../Zotlabs/Module/Locs.php:119 -msgid "Manage Channel Locations" -msgstr "" - -#: ../../Zotlabs/Module/Locs.php:125 -msgid "Publish these settings" -msgstr "" - -#: ../../Zotlabs/Module/Locs.php:126 -msgid "Please wait several minutes between consecutive operations." -msgstr "" - -#: ../../Zotlabs/Module/Locs.php:127 -msgid "" -"When possible, drop a location by logging into that website/hub and removing " -"your channel." -msgstr "" - -#: ../../Zotlabs/Module/Locs.php:128 -msgid "Use this form to drop the location if the hub is no longer operating." -msgstr "" - -#: ../../Zotlabs/Module/Changeaddr.php:48 -msgid "" -"Channel name changes are not allowed within 48 hours of changing the account " -"password." -msgstr "" - -#: ../../Zotlabs/Module/Changeaddr.php:59 ../../include/channel.php:223 -#: ../../include/channel.php:655 -msgid "Reserved nickname. Please choose another." -msgstr "" - -#: ../../Zotlabs/Module/Changeaddr.php:64 ../../include/channel.php:228 -#: ../../include/channel.php:660 -msgid "" -"Nickname has unsupported characters or is already being used on this site." -msgstr "" - -#: ../../Zotlabs/Module/Changeaddr.php:78 -msgid "Feature has been disabled" -msgstr "" - -#: ../../Zotlabs/Module/Changeaddr.php:96 -msgid "Change channel nickname/address" -msgstr "" - -#: ../../Zotlabs/Module/Changeaddr.php:97 -#: ../../Zotlabs/Module/Removeaccount.php:68 -#: ../../Zotlabs/Module/Removeme.php:68 -msgid "WARNING: " -msgstr "" - -#: ../../Zotlabs/Module/Changeaddr.php:97 -msgid "Any/all connections on other networks will be lost!" -msgstr "" - -#: ../../Zotlabs/Module/Changeaddr.php:98 -#: ../../Zotlabs/Module/Removeaccount.php:69 -#: ../../Zotlabs/Module/Removeme.php:69 -msgid "Please enter your password for verification:" -msgstr "" - -#: ../../Zotlabs/Module/Changeaddr.php:99 -msgid "New channel address" -msgstr "" - -#: ../../Zotlabs/Module/Changeaddr.php:100 -msgid "Rename Channel" -msgstr "" - -#: ../../Zotlabs/Module/Connect.php:54 ../../Zotlabs/Module/Connect.php:102 -msgid "Continue" -msgstr "" - -#: ../../Zotlabs/Module/Connect.php:83 -msgid "Premium Channel Setup" -msgstr "" - -#: ../../Zotlabs/Module/Connect.php:85 -msgid "Enable premium channel connection restrictions" -msgstr "" - -#: ../../Zotlabs/Module/Connect.php:86 -msgid "" -"Please enter your restrictions or conditions, such as paypal receipt, usage " -"guidelines, etc." -msgstr "" - -#: ../../Zotlabs/Module/Connect.php:88 ../../Zotlabs/Module/Connect.php:108 -msgid "" -"This channel may require additional steps or acknowledgement of the " -"following conditions prior to connecting:" -msgstr "" - -#: ../../Zotlabs/Module/Connect.php:89 -msgid "" -"Potential connections will then see the following text before proceeding:" -msgstr "" - -#: ../../Zotlabs/Module/Connect.php:90 ../../Zotlabs/Module/Connect.php:111 -msgid "" -"By continuing, I certify that I have complied with any instructions provided " -"on this page." -msgstr "" - -#: ../../Zotlabs/Module/Connect.php:99 -msgid "(No specific instructions have been provided by the channel owner.)" -msgstr "" - -#: ../../Zotlabs/Module/Connect.php:107 -msgid "Restricted or Premium Channel" -msgstr "" - -#: ../../Zotlabs/Module/Moderate.php:29 -msgid "No entries." -msgstr "" - -#: ../../Zotlabs/Module/Moderate.php:73 -msgid "Comment approved" -msgstr "" - -#: ../../Zotlabs/Module/Moderate.php:77 -msgid "Comment deleted" -msgstr "" - -#: ../../Zotlabs/Module/Lang.php:18 -msgid "Change UI language" -msgstr "" - -#: ../../Zotlabs/Module/Sites.php:12 -msgid "" -"This page provides information about related projects and websites that are " -"currently known to this system. These are a small fraction of the thousands " -"of websites and dozens of projects and providers which make up the fediverse." -msgstr "" - -#: ../../Zotlabs/Module/Sites.php:23 -msgid "free" -msgstr "" - -#: ../../Zotlabs/Module/Sites.php:25 -msgid "subscription" -msgstr "" - -#: ../../Zotlabs/Module/Sites.php:27 -msgid "tiered service plans" -msgstr "" - -#: ../../Zotlabs/Module/Sites.php:34 -msgid "Register (requires approval)" -msgstr "" - -#: ../../Zotlabs/Module/Sites.php:74 -msgid "Project" -msgstr "" - -#: ../../Zotlabs/Module/Sites.php:82 -msgid "Access type" -msgstr "" - -#: ../../Zotlabs/Module/Cdav.php:852 -msgid "INVALID EVENT DISMISSED!" -msgstr "" - -#: ../../Zotlabs/Module/Cdav.php:853 -msgid "Summary: " -msgstr "" - -#: ../../Zotlabs/Module/Cdav.php:854 -msgid "Date: " -msgstr "" - -#: ../../Zotlabs/Module/Cdav.php:855 ../../Zotlabs/Module/Cdav.php:862 -msgid "Reason: " -msgstr "" - -#: ../../Zotlabs/Module/Cdav.php:860 -msgid "INVALID CARD DISMISSED!" -msgstr "" - -#: ../../Zotlabs/Module/Cdav.php:861 -msgid "Name: " -msgstr "" - -#: ../../Zotlabs/Module/Cdav.php:882 -msgid "CardDAV App" -msgstr "" - -#: ../../Zotlabs/Module/Cdav.php:883 -msgid "CalDAV capable addressbook" -msgstr "" - -#: ../../Zotlabs/Module/Cdav.php:947 ../../Zotlabs/Module/Calendar.php:435 -msgid "Link to source" -msgstr "" - -#: ../../Zotlabs/Module/Cdav.php:1011 -msgid "End date and time" -msgstr "" - -#: ../../Zotlabs/Module/Cdav.php:1038 -msgid "List month" -msgstr "" - -#: ../../Zotlabs/Module/Cdav.php:1039 -msgid "List week" -msgstr "" - -#: ../../Zotlabs/Module/Cdav.php:1040 -msgid "List day" -msgstr "" - -#: ../../Zotlabs/Module/Cdav.php:1048 -msgid "More" -msgstr "" - -#: ../../Zotlabs/Module/Cdav.php:1049 -msgid "Less" -msgstr "" - -#: ../../Zotlabs/Module/Cdav.php:1051 -msgid "Select calendar" -msgstr "" - -#: ../../Zotlabs/Module/Cdav.php:1054 -msgid "Delete all" -msgstr "" - -#: ../../Zotlabs/Module/Cdav.php:1057 -msgid "Sorry! Editing of recurrent events is not yet implemented." -msgstr "" - -#: ../../Zotlabs/Module/Cdav.php:1350 ../../Zotlabs/Module/Connedit.php:850 -msgid "Organisation" -msgstr "" - -#: ../../Zotlabs/Module/Cdav.php:1351 ../../Zotlabs/Module/Connedit.php:851 -msgid "Title" -msgstr "" - -#: ../../Zotlabs/Module/Cdav.php:1352 ../../Zotlabs/Module/Profiles.php:788 -#: ../../Zotlabs/Module/Connedit.php:852 -msgid "Phone" -msgstr "" - -#: ../../Zotlabs/Module/Cdav.php:1354 ../../Zotlabs/Module/Profiles.php:790 -#: ../../Zotlabs/Module/Connedit.php:854 -msgid "Instant messenger" -msgstr "" - -#: ../../Zotlabs/Module/Cdav.php:1355 ../../Zotlabs/Module/Profiles.php:791 -#: ../../Zotlabs/Module/Connedit.php:855 -msgid "Website" -msgstr "" - -#: ../../Zotlabs/Module/Cdav.php:1357 ../../Zotlabs/Module/Profiles.php:793 -#: ../../Zotlabs/Module/Connedit.php:857 -msgid "Note" -msgstr "" - -#: ../../Zotlabs/Module/Cdav.php:1358 ../../Zotlabs/Module/Profiles.php:794 -#: ../../Zotlabs/Module/Connedit.php:858 ../../include/event.php:1374 -#: ../../include/connections.php:775 -msgid "Mobile" -msgstr "" - -#: ../../Zotlabs/Module/Cdav.php:1359 ../../Zotlabs/Module/Profiles.php:795 -#: ../../Zotlabs/Module/Connedit.php:859 ../../include/event.php:1375 -#: ../../include/connections.php:776 -msgid "Home" -msgstr "" - -#: ../../Zotlabs/Module/Cdav.php:1360 ../../Zotlabs/Module/Profiles.php:796 -#: ../../Zotlabs/Module/Connedit.php:860 ../../include/event.php:1378 -#: ../../include/connections.php:779 -msgid "Work" -msgstr "" - -#: ../../Zotlabs/Module/Cdav.php:1361 ../../Zotlabs/Module/Profiles.php:797 -#: ../../Zotlabs/Module/Profiles.php:936 ../../Zotlabs/Module/Profiles.php:953 -#: ../../Zotlabs/Module/Profiles.php:1021 -#: ../../Zotlabs/Module/Profiles.php:1057 ../../Zotlabs/Module/Connedit.php:861 -#: ../../include/event.php:1381 ../../include/event.php:1388 -#: ../../include/connections.php:782 ../../include/connections.php:789 -msgid "Other" -msgstr "" - -#: ../../Zotlabs/Module/Cdav.php:1362 ../../Zotlabs/Module/Profiles.php:798 -#: ../../Zotlabs/Module/Connedit.php:862 -msgid "Add Contact" -msgstr "" - -#: ../../Zotlabs/Module/Cdav.php:1363 ../../Zotlabs/Module/Profiles.php:799 -#: ../../Zotlabs/Module/Connedit.php:863 -msgid "Add Field" -msgstr "" - -#: ../../Zotlabs/Module/Cdav.php:1368 ../../Zotlabs/Module/Connedit.php:868 -msgid "P.O. Box" -msgstr "" - -#: ../../Zotlabs/Module/Cdav.php:1369 ../../Zotlabs/Module/Connedit.php:869 -msgid "Additional" -msgstr "" - -#: ../../Zotlabs/Module/Cdav.php:1370 ../../Zotlabs/Module/Connedit.php:870 -msgid "Street" -msgstr "" - -#: ../../Zotlabs/Module/Cdav.php:1371 ../../Zotlabs/Module/Connedit.php:871 -msgid "Locality" -msgstr "" - -#: ../../Zotlabs/Module/Cdav.php:1372 ../../Zotlabs/Module/Connedit.php:872 -msgid "Region" -msgstr "" - -#: ../../Zotlabs/Module/Cdav.php:1373 ../../Zotlabs/Module/Connedit.php:873 -msgid "ZIP Code" -msgstr "" - -#: ../../Zotlabs/Module/Cdav.php:1374 ../../Zotlabs/Module/Profiles.php:756 -#: ../../Zotlabs/Module/Connedit.php:874 -msgid "Country" -msgstr "" - -#: ../../Zotlabs/Module/Cdav.php:1423 -msgid "Default Calendar" -msgstr "" - -#: ../../Zotlabs/Module/Cdav.php:1434 -msgid "Default Addressbook" -msgstr "" - -#: ../../Zotlabs/Module/New_channel.php:157 ../../Zotlabs/Module/Manage.php:144 -#, php-format -msgid "You have created %1$.0f of %2$.0f allowed channels." -msgstr "" - -#: ../../Zotlabs/Module/New_channel.php:166 -msgid "Your real name is recommended." -msgstr "" - -#: ../../Zotlabs/Module/New_channel.php:167 -msgid "" -"Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation " -"Group\"" -msgstr "" - -#: ../../Zotlabs/Module/New_channel.php:172 -msgid "" -"This will be used to create a unique network address (like an email address)." -msgstr "" - -#: ../../Zotlabs/Module/New_channel.php:174 -msgid "Allowed characters are a-z 0-9, - and _" -msgstr "" - -#: ../../Zotlabs/Module/New_channel.php:182 -msgid "Channel name" -msgstr "" - -#: ../../Zotlabs/Module/New_channel.php:184 -#: ../../Zotlabs/Module/Register.php:271 -msgid "Choose a short nickname" -msgstr "" - -#: ../../Zotlabs/Module/New_channel.php:185 -msgid "" -"Select a channel permission role compatible with your usage needs and " -"privacy requirements." -msgstr "" - -#: ../../Zotlabs/Module/New_channel.php:188 -msgid "Create a Channel" -msgstr "" - -#: ../../Zotlabs/Module/New_channel.php:189 -msgid "" -"A channel is a unique network identity. It can represent a person (social " -"network profile), a forum (group), a business or celebrity page, a newsfeed, " -"and many other things." -msgstr "" - -#: ../../Zotlabs/Module/New_channel.php:190 -msgid "" -"or import an existing channel from another location." -msgstr "" - -#: ../../Zotlabs/Module/New_channel.php:195 -msgid "Validate" -msgstr "" - -#: ../../Zotlabs/Module/Mitem.php:67 -msgid "Unable to create element." -msgstr "" - -#: ../../Zotlabs/Module/Mitem.php:91 -msgid "Unable to update menu element." -msgstr "" - -#: ../../Zotlabs/Module/Mitem.php:107 -msgid "Unable to add menu element." -msgstr "" - -#: ../../Zotlabs/Module/Mitem.php:171 ../../Zotlabs/Module/Mitem.php:250 -msgid "Menu Item Permissions" -msgstr "" - -#: ../../Zotlabs/Module/Mitem.php:178 ../../Zotlabs/Module/Mitem.php:195 -msgid "Link Name" -msgstr "" - -#: ../../Zotlabs/Module/Mitem.php:179 ../../Zotlabs/Module/Mitem.php:259 -msgid "Link or Submenu Target" -msgstr "" - -#: ../../Zotlabs/Module/Mitem.php:179 -msgid "Enter URL of the link or select a menu name to create a submenu" -msgstr "" - -#: ../../Zotlabs/Module/Mitem.php:180 ../../Zotlabs/Module/Mitem.php:260 -msgid "Use magic-auth if available" -msgstr "" - -#: ../../Zotlabs/Module/Mitem.php:181 ../../Zotlabs/Module/Mitem.php:261 -msgid "Open link in new window" -msgstr "" - -#: ../../Zotlabs/Module/Mitem.php:182 ../../Zotlabs/Module/Mitem.php:262 -msgid "Order in list" -msgstr "" - -#: ../../Zotlabs/Module/Mitem.php:182 ../../Zotlabs/Module/Mitem.php:262 -msgid "Higher numbers will sink to bottom of listing" -msgstr "" - -#: ../../Zotlabs/Module/Mitem.php:183 -msgid "Submit and finish" -msgstr "" - -#: ../../Zotlabs/Module/Mitem.php:184 -msgid "Submit and continue" -msgstr "" - -#: ../../Zotlabs/Module/Mitem.php:193 -msgid "Menu:" -msgstr "" - -#: ../../Zotlabs/Module/Mitem.php:196 -msgid "Link Target" -msgstr "" - -#: ../../Zotlabs/Module/Mitem.php:199 -msgid "Edit menu" -msgstr "" - -#: ../../Zotlabs/Module/Mitem.php:202 -msgid "Edit element" -msgstr "" - -#: ../../Zotlabs/Module/Mitem.php:203 -msgid "Drop element" -msgstr "" - -#: ../../Zotlabs/Module/Mitem.php:204 -msgid "New element" -msgstr "" - -#: ../../Zotlabs/Module/Mitem.php:205 -msgid "Edit this menu container" -msgstr "" - -#: ../../Zotlabs/Module/Mitem.php:206 -msgid "Add menu element" -msgstr "" - -#: ../../Zotlabs/Module/Mitem.php:207 -msgid "Delete this menu item" -msgstr "" - -#: ../../Zotlabs/Module/Mitem.php:208 -msgid "Edit this menu item" -msgstr "" - -#: ../../Zotlabs/Module/Mitem.php:226 -msgid "Menu item not found." -msgstr "" - -#: ../../Zotlabs/Module/Mitem.php:239 -msgid "Menu item deleted." -msgstr "" - -#: ../../Zotlabs/Module/Mitem.php:241 -msgid "Menu item could not be deleted." -msgstr "" - -#: ../../Zotlabs/Module/Mitem.php:248 -msgid "Edit Menu Element" -msgstr "" - -#: ../../Zotlabs/Module/Mitem.php:258 -msgid "Link text" -msgstr "" - -#: ../../Zotlabs/Module/Connections.php:60 -#: ../../Zotlabs/Module/Connections.php:119 -#: ../../Zotlabs/Module/Connections.php:132 -#: ../../Zotlabs/Module/Connections.php:290 -#: ../../Zotlabs/Lib/Libprofile.php:351 -msgid "Active" -msgstr "" - -#: ../../Zotlabs/Module/Connections.php:65 -#: ../../Zotlabs/Module/Connections.php:154 -#: ../../Zotlabs/Module/Connections.php:295 -msgid "Blocked" -msgstr "" - -#: ../../Zotlabs/Module/Connections.php:70 -#: ../../Zotlabs/Module/Connections.php:161 -#: ../../Zotlabs/Module/Connections.php:294 -msgid "Ignored" -msgstr "" - -#: ../../Zotlabs/Module/Connections.php:75 -#: ../../Zotlabs/Module/Connections.php:175 -#: ../../Zotlabs/Module/Connections.php:293 -msgid "Hidden" -msgstr "" - -#: ../../Zotlabs/Module/Connections.php:80 -#: ../../Zotlabs/Module/Connections.php:168 -msgid "Archived/Unreachable" -msgstr "" - -#: ../../Zotlabs/Module/Connections.php:140 -msgid "Active Connections" -msgstr "" - -#: ../../Zotlabs/Module/Connections.php:143 -msgid "Show active connections" -msgstr "" - -#: ../../Zotlabs/Module/Connections.php:150 -msgid "Show pending (new) connections" -msgstr "" - -#: ../../Zotlabs/Module/Connections.php:157 -msgid "Only show blocked connections" -msgstr "" - -#: ../../Zotlabs/Module/Connections.php:164 -msgid "Only show ignored connections" -msgstr "" - -#: ../../Zotlabs/Module/Connections.php:171 -msgid "Only show archived/unreachable connections" -msgstr "" - -#: ../../Zotlabs/Module/Connections.php:178 -msgid "Only show hidden connections" -msgstr "" - -#: ../../Zotlabs/Module/Connections.php:182 -#: ../../Zotlabs/Module/Profperm.php:144 -msgid "All Connections" -msgstr "" - -#: ../../Zotlabs/Module/Connections.php:185 -msgid "Show all connections" -msgstr "" - -#: ../../Zotlabs/Module/Connections.php:234 -msgid "Order by name" -msgstr "" - -#: ../../Zotlabs/Module/Connections.php:238 -msgid "Recent" -msgstr "" - -#: ../../Zotlabs/Module/Connections.php:241 -msgid "Order by recent" -msgstr "" - -#: ../../Zotlabs/Module/Connections.php:248 -msgid "Order by date" -msgstr "" - -#: ../../Zotlabs/Module/Connections.php:291 -msgid "Pending approval" -msgstr "" - -#: ../../Zotlabs/Module/Connections.php:292 -msgid "Archived" -msgstr "" - -#: ../../Zotlabs/Module/Connections.php:296 -msgid "Not connected at this location" -msgstr "" - -#: ../../Zotlabs/Module/Connections.php:313 -#, php-format -msgid "%1$s [%2$s]" -msgstr "" - -#: ../../Zotlabs/Module/Connections.php:314 -msgid "Edit connection" -msgstr "" - -#: ../../Zotlabs/Module/Connections.php:316 -msgid "Delete connection" -msgstr "" - -#: ../../Zotlabs/Module/Connections.php:325 -msgid "Channel address" -msgstr "" - -#: ../../Zotlabs/Module/Connections.php:327 -msgid "Network" -msgstr "" - -#: ../../Zotlabs/Module/Connections.php:330 -msgid "Call" -msgstr "" - -#: ../../Zotlabs/Module/Connections.php:332 -msgid "Status" -msgstr "" - -#: ../../Zotlabs/Module/Connections.php:334 -msgid "Connected" -msgstr "" - -#: ../../Zotlabs/Module/Connections.php:336 -msgid "Approve connection" -msgstr "" - -#: ../../Zotlabs/Module/Connections.php:338 -msgid "Ignore connection" -msgstr "" - -#: ../../Zotlabs/Module/Connections.php:339 -#: ../../Zotlabs/Module/Connedit.php:576 -msgid "Ignore" -msgstr "" - -#: ../../Zotlabs/Module/Connections.php:340 -msgid "Recent activity" -msgstr "" - -#: ../../Zotlabs/Module/Connections.php:369 -msgid "Filter by" -msgstr "" - -#: ../../Zotlabs/Module/Connections.php:370 -msgid "Sort by" -msgstr "" - -#: ../../Zotlabs/Module/Connections.php:374 -msgid "Search your connections" -msgstr "" - -#: ../../Zotlabs/Module/Connections.php:375 -msgid "Connections search" -msgstr "" - -#: ../../Zotlabs/Module/Apporder.php:45 -msgid "Change Order of Pinned Navbar Apps" -msgstr "" - -#: ../../Zotlabs/Module/Apporder.php:45 -msgid "Change Order of App Tray Apps" -msgstr "" - -#: ../../Zotlabs/Module/Apporder.php:46 -msgid "" -"Use arrows to move the corresponding app left (top) or right (bottom) in the " -"navbar" -msgstr "" - -#: ../../Zotlabs/Module/Apporder.php:47 -msgid "Use arrows to move the corresponding app up or down in the app tray" -msgstr "" - -#: ../../Zotlabs/Module/Removeaccount.php:46 -msgid "" -"Account removals are not allowed within 48 hours of changing the account " -"password." -msgstr "" - -#: ../../Zotlabs/Module/Removeaccount.php:67 -msgid "Remove This Account" -msgstr "" - -#: ../../Zotlabs/Module/Removeaccount.php:68 -msgid "" -"This account and all its channels will be completely removed from this " -"server. " -msgstr "" - -#: ../../Zotlabs/Module/Removeaccount.php:68 -#: ../../Zotlabs/Module/Removeme.php:68 -msgid "This action is permanent and can not be undone!" -msgstr "" - -#: ../../Zotlabs/Module/Profile_photo.php:498 -msgid "" -"Your profile photo is visible to anybody on the internet and may be " -"distributed to other websites." -msgstr "" - -#: ../../Zotlabs/Module/Profile_photo.php:502 -msgid "Use Photo for Profile" -msgstr "" - -#: ../../Zotlabs/Module/Profile_photo.php:502 -msgid "Change Profile Photo" -msgstr "" - -#: ../../Zotlabs/Module/Email_resend.php:12 -#: ../../Zotlabs/Module/Email_validation.php:24 -msgid "Token verification failed." -msgstr "" - -#: ../../Zotlabs/Module/Email_resend.php:30 -msgid "Email verification resent" -msgstr "" - -#: ../../Zotlabs/Module/Email_resend.php:33 -msgid "Unable to resend email verification message." -msgstr "" - -#: ../../Zotlabs/Module/Ping.php:375 -msgid "added your channel" -msgstr "" - -#: ../../Zotlabs/Module/Ping.php:399 -msgid "requires approval" -msgstr "" - -#: ../../Zotlabs/Module/Ping.php:408 -msgid "g A l F d" -msgstr "" - -#: ../../Zotlabs/Module/Ping.php:426 -msgid "[today]" -msgstr "" - -#: ../../Zotlabs/Module/Ping.php:436 -msgid "posted an event" -msgstr "" - -#: ../../Zotlabs/Module/Ping.php:469 -msgid "shared a file with you" -msgstr "" - -#: ../../Zotlabs/Module/Ping.php:497 -msgid "reported content" -msgstr "" - -#: ../../Zotlabs/Module/Ping.php:674 -msgid "Private group" -msgstr "" - -#: ../../Zotlabs/Module/Ping.php:674 -msgid "Public group" -msgstr "" - -#: ../../Zotlabs/Module/Lists.php:121 -msgid "Access list created." -msgstr "" - -#: ../../Zotlabs/Module/Lists.php:124 -msgid "Could not create access list." -msgstr "" - -#: ../../Zotlabs/Module/Lists.php:137 ../../Zotlabs/Module/Lists.php:306 -#: ../../include/items.php:4028 -msgid "Access list not found." -msgstr "" - -#: ../../Zotlabs/Module/Lists.php:153 -msgid "Access list updated." -msgstr "" - -#: ../../Zotlabs/Module/Lists.php:194 ../../Zotlabs/Module/Lists.php:356 -msgid "List members" -msgstr "" - -#: ../../Zotlabs/Module/Lists.php:200 -msgid "List not found" -msgstr "" - -#: ../../Zotlabs/Module/Lists.php:238 ../../Zotlabs/Module/Lists.php:249 -msgid "Access Lists" -msgstr "" - -#: ../../Zotlabs/Module/Lists.php:239 -msgid "Create access list" -msgstr "" - -#: ../../Zotlabs/Module/Lists.php:243 -msgid "Access list name" -msgstr "" - -#: ../../Zotlabs/Module/Lists.php:244 ../../Zotlabs/Module/Lists.php:344 -msgid "Members are visible to other channels" -msgstr "" - -#: ../../Zotlabs/Module/Lists.php:251 -msgid "Members" -msgstr "" - -#: ../../Zotlabs/Module/Lists.php:276 -msgid "Access list removed." -msgstr "" - -#: ../../Zotlabs/Module/Lists.php:278 -msgid "Unable to remove access list." -msgstr "" - -#: ../../Zotlabs/Module/Lists.php:339 -#, php-format -msgid "Access List: %s" -msgstr "" - -#: ../../Zotlabs/Module/Lists.php:341 -msgid "Access list name: " -msgstr "" - -#: ../../Zotlabs/Module/Lists.php:346 -msgid "Delete access list" -msgstr "" - -#: ../../Zotlabs/Module/Lists.php:358 -msgid "Not in this list" -msgstr "" - -#: ../../Zotlabs/Module/Lists.php:390 -msgid "Select a channel to toggle membership" -msgstr "" - -#: ../../Zotlabs/Module/Affinity.php:26 -msgid "Friend Zoom settings updated." -msgstr "" - -#: ../../Zotlabs/Module/Affinity.php:37 -msgid "" -"This app (when installed) presents a slider control in your connection " -"editor and also on your stream page. The slider represents your degree of " -"friendship with each connection. It allows you to zoom in or out and display " -"conversations from only your closest friends or everybody in your stream." -msgstr "" - -#: ../../Zotlabs/Module/Affinity.php:45 -msgid "" -"The number below represents the default maximum slider position for your " -"stream page as a percentage." -msgstr "" - -#: ../../Zotlabs/Module/Affinity.php:71 -msgid "Default friend zoom in/out" -msgstr "" - -#: ../../Zotlabs/Module/Affinity.php:83 -msgid "Friend Zoom Settings" -msgstr "" - -#: ../../Zotlabs/Module/Markup.php:14 -msgid "" -"This app adds editor buttons for bold, italic, underline, quote, and " -"possibly other common richtext constructs." -msgstr "" - -#: ../../Zotlabs/Module/Editblock.php:117 ../../Zotlabs/Module/Blocks.php:101 -#: ../../Zotlabs/Module/Blocks.php:159 -msgid "Block Name" -msgstr "" - -#: ../../Zotlabs/Module/Editblock.php:142 -msgid "Edit Block" -msgstr "" - -#: ../../Zotlabs/Module/Common.php:18 -msgid "No channel." -msgstr "" - -#: ../../Zotlabs/Module/Common.php:49 -msgid "No connections in common." -msgstr "" - -#: ../../Zotlabs/Module/Common.php:69 -msgid "View Common Connections" -msgstr "" - -#: ../../Zotlabs/Module/Finger.php:20 -msgid "Webfinger Diagnostic" -msgstr "" - -#: ../../Zotlabs/Module/Finger.php:21 -msgid "Lookup address or URL" -msgstr "" - -#: ../../Zotlabs/Module/Display.php:85 ../../Zotlabs/Module/Rpost.php:143 -#: ../../Zotlabs/Module/Stream.php:215 ../../Zotlabs/Module/Hq.php:137 -#: ../../Zotlabs/Module/Pubstream.php:84 ../../Zotlabs/Module/Channel.php:265 -msgid "Reset form" -msgstr "" - -#: ../../Zotlabs/Module/Display.php:371 -#, php-format -msgid "\"%1$s\", shared by %2$s with %3$s" -msgstr "" - -#: ../../Zotlabs/Module/Display.php:372 -#, php-format -msgid "%1$s shared this post with %2$s" -msgstr "" - -#: ../../Zotlabs/Module/Display.php:376 -msgid "Not much to read, click to see the post." -msgstr "" - -#: ../../Zotlabs/Module/Display.php:381 -#, php-format -msgid "%1$s shared a reaction to \"%2$s\"" -msgstr "" - -#: ../../Zotlabs/Module/Display.php:382 -#, php-format -msgid "%s shared a reaction to this post/conversation" -msgstr "" - -#: ../../Zotlabs/Module/Display.php:390 -#, php-format -msgid "%1$s commented \"%2$s\"" -msgstr "" - -#: ../../Zotlabs/Module/Display.php:391 -#, php-format -msgid "%s shared a comment of this post/conversation" -msgstr "" - -#: ../../Zotlabs/Module/Display.php:395 -#, php-format -msgid "%1$s wrote this: \"%2$s\"" -msgstr "" - -#: ../../Zotlabs/Module/Display.php:414 ../../Zotlabs/Module/Channel.php:537 -msgid "" -"You must enable javascript for your browser to be able to view this content." -msgstr "" - -#: ../../Zotlabs/Module/Display.php:432 -msgid "Article" -msgstr "" - -#: ../../Zotlabs/Module/Display.php:484 -msgid "Item has been removed." -msgstr "" - -#: ../../Zotlabs/Module/Page.php:177 -msgid "" -"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod " -"tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, " -"quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo " -"consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse " -"cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat " -"non proident, sunt in culpa qui officia deserunt mollit anim id est laborum." -msgstr "" - -#: ../../Zotlabs/Module/Tasks.php:102 -msgid "This app provides a simple personal and task list." -msgstr "" - -#: ../../Zotlabs/Module/Manage.php:74 ../../Zotlabs/Module/Manage.php:171 -#: ../../Zotlabs/Module/Directory.php:374 -msgid "Group" -msgstr "" - -#: ../../Zotlabs/Module/Manage.php:151 -msgid "Create a new channel" -msgstr "" - -#: ../../Zotlabs/Module/Manage.php:151 ../../Zotlabs/Module/Chat.php:254 -#: ../../Zotlabs/Module/Profiles.php:833 -msgid "Create New" -msgstr "" - -#: ../../Zotlabs/Module/Manage.php:181 -msgid "Current Channel" -msgstr "" - -#: ../../Zotlabs/Module/Manage.php:183 -msgid "Switch to one of your channels by selecting it." -msgstr "" - -#: ../../Zotlabs/Module/Manage.php:184 -msgid "Default Login Channel" -msgstr "" - -#: ../../Zotlabs/Module/Manage.php:185 -msgid "Make Default" -msgstr "" - -#: ../../Zotlabs/Module/Manage.php:186 ../../Zotlabs/Module/Manage.php:187 -msgid "Add to menu" -msgstr "" - -#: ../../Zotlabs/Module/Manage.php:190 -#, php-format -msgid "%d new messages" -msgstr "" - -#: ../../Zotlabs/Module/Manage.php:191 -#, php-format -msgid "%d new introductions" -msgstr "" - -#: ../../Zotlabs/Module/Manage.php:193 -msgid "Delegated Channel" -msgstr "" - -#: ../../Zotlabs/Module/Zotfinger.php:23 -msgid "Zotfinger Diagnostic" -msgstr "" - -#: ../../Zotlabs/Module/Zotfinger.php:24 -msgid "Lookup URL" -msgstr "" - -#: ../../Zotlabs/Module/Directory.php:137 -msgid "No default suggestions were found." -msgstr "" - -#: ../../Zotlabs/Module/Directory.php:300 -msgid "Gender: " -msgstr "" - -#: ../../Zotlabs/Module/Directory.php:301 -msgid "Status: " -msgstr "" - -#: ../../Zotlabs/Module/Directory.php:302 -msgid "Homepage: " -msgstr "" - -#: ../../Zotlabs/Module/Directory.php:350 ../../Zotlabs/Lib/Libprofile.php:490 -msgid "Age:" -msgstr "" - -#: ../../Zotlabs/Module/Directory.php:355 ../../Zotlabs/Lib/Libprofile.php:285 -#: ../../include/event.php:62 ../../include/event.php:119 -msgid "Location:" -msgstr "" - -#: ../../Zotlabs/Module/Directory.php:363 -msgid "Description:" -msgstr "" - -#: ../../Zotlabs/Module/Directory.php:370 ../../Zotlabs/Lib/Libprofile.php:521 -msgid "Hometown:" -msgstr "" - -#: ../../Zotlabs/Module/Directory.php:372 ../../Zotlabs/Lib/Libprofile.php:527 -msgid "About:" -msgstr "" - -#: ../../Zotlabs/Module/Directory.php:378 -msgid "Keywords: " -msgstr "" - -#: ../../Zotlabs/Module/Directory.php:381 -msgid "Don't suggest" -msgstr "" - -#: ../../Zotlabs/Module/Directory.php:383 -msgid "Suggestion ranking:" -msgstr "" - -#: ../../Zotlabs/Module/Directory.php:433 ../../Zotlabs/Lib/Apps.php:348 -msgid "Directory" -msgstr "" - -#: ../../Zotlabs/Module/Directory.php:433 -msgid "Local Directory" -msgstr "" - -#: ../../Zotlabs/Module/Directory.php:439 -msgid "Finding:" -msgstr "" - -#: ../../Zotlabs/Module/Directory.php:444 -msgid "next page" -msgstr "" - -#: ../../Zotlabs/Module/Directory.php:444 -msgid "previous page" -msgstr "" - -#: ../../Zotlabs/Module/Directory.php:445 -msgid "Sort options" -msgstr "" - -#: ../../Zotlabs/Module/Directory.php:446 -msgid "Alphabetic" -msgstr "" - -#: ../../Zotlabs/Module/Directory.php:447 -msgid "Reverse Alphabetic" -msgstr "" - -#: ../../Zotlabs/Module/Directory.php:448 -msgid "Newest to Oldest" -msgstr "" - -#: ../../Zotlabs/Module/Directory.php:449 -msgid "Oldest to Newest" -msgstr "" - -#: ../../Zotlabs/Module/Directory.php:473 -msgid "No entries (some entries may be hidden)." -msgstr "" - -#: ../../Zotlabs/Module/Import_items.php:48 ../../Zotlabs/Module/Import.php:71 -msgid "Nothing to import." -msgstr "" - -#: ../../Zotlabs/Module/Import_items.php:72 ../../Zotlabs/Module/Import.php:87 -#: ../../Zotlabs/Module/Import.php:103 -msgid "Unable to download data from old server" -msgstr "" - -#: ../../Zotlabs/Module/Import_items.php:77 ../../Zotlabs/Module/Import.php:110 -msgid "Imported file is empty." -msgstr "" - -#: ../../Zotlabs/Module/Import_items.php:93 -#, php-format -msgid "Warning: Database versions differ by %1$d updates." -msgstr "" - -#: ../../Zotlabs/Module/Import_items.php:104 -msgid "Import completed" -msgstr "" - -#: ../../Zotlabs/Module/Import_items.php:121 -msgid "Import Items" -msgstr "" - -#: ../../Zotlabs/Module/Import_items.php:122 -msgid "Use this form to import existing posts and content from an export file." -msgstr "" - -#: ../../Zotlabs/Module/Import_items.php:123 -#: ../../Zotlabs/Module/Import.php:577 -msgid "File to Upload" -msgstr "" - -#: ../../Zotlabs/Module/Filer.php:50 -msgid "Enter a folder name" -msgstr "" - -#: ../../Zotlabs/Module/Filer.php:50 -msgid "or select an existing folder (doubleclick)" -msgstr "" - -#: ../../Zotlabs/Module/Filer.php:52 ../../Zotlabs/Lib/ThreadItem.php:168 -msgid "Save to Folder" -msgstr "" - -#: ../../Zotlabs/Module/Help.php:26 -msgid "Documentation Search" -msgstr "" - -#: ../../Zotlabs/Module/Help.php:86 -msgid "$Projectname Documentation" -msgstr "" - -#: ../../Zotlabs/Module/Help.php:87 -msgid "Contents" -msgstr "" - -#: ../../Zotlabs/Module/Rmagic.php:39 -msgid "Authentication failed." -msgstr "" - -#: ../../Zotlabs/Module/Rmagic.php:81 ../../include/channel.php:1946 -msgid "Enter your channel address (e.g. channel@example.com)" -msgstr "" - -#: ../../Zotlabs/Module/Rmagic.php:84 ../../include/channel.php:1947 -msgid "Authenticate" -msgstr "" - -#: ../../Zotlabs/Module/Chat.php:26 ../../Zotlabs/Module/Channel.php:49 -msgid "You must be logged in to see this page." -msgstr "" - -#: ../../Zotlabs/Module/Chat.php:187 -msgid "Room not found" -msgstr "" - -#: ../../Zotlabs/Module/Chat.php:204 -msgid "Leave Room" -msgstr "" - -#: ../../Zotlabs/Module/Chat.php:205 -msgid "Delete Room" -msgstr "" - -#: ../../Zotlabs/Module/Chat.php:206 -msgid "I am away right now" -msgstr "" - -#: ../../Zotlabs/Module/Chat.php:207 -msgid "I am online" -msgstr "" - -#: ../../Zotlabs/Module/Chat.php:210 ../../include/conversation.php:1329 -msgid "Please enter a link URL:" -msgstr "" - -#: ../../Zotlabs/Module/Chat.php:211 ../../Zotlabs/Lib/ThreadItem.php:920 -#: ../../include/conversation.php:1472 -msgid "Encrypt text" -msgstr "" - -#: ../../Zotlabs/Module/Chat.php:230 -msgid "New Chatroom" -msgstr "" - -#: ../../Zotlabs/Module/Chat.php:231 -msgid "Chatroom name" -msgstr "" - -#: ../../Zotlabs/Module/Chat.php:232 -msgid "Expiration of chats (minutes)" -msgstr "" - -#: ../../Zotlabs/Module/Chat.php:248 -#, php-format -msgid "%1$s's Chatrooms" -msgstr "" - -#: ../../Zotlabs/Module/Chat.php:253 -msgid "No chatrooms available" -msgstr "" - -#: ../../Zotlabs/Module/Chat.php:257 -msgid "Expiration" -msgstr "" - -#: ../../Zotlabs/Module/Chat.php:258 -msgid "min" -msgstr "" - -#: ../../Zotlabs/Module/Siteinfo.php:29 -msgid "About this site" -msgstr "" - -#: ../../Zotlabs/Module/Siteinfo.php:31 -msgid "Site Name" -msgstr "" - -#: ../../Zotlabs/Module/Siteinfo.php:35 -msgid "Administrator" -msgstr "" - -#: ../../Zotlabs/Module/Siteinfo.php:37 ../../Zotlabs/Module/Register.php:247 -msgid "Terms of Service" -msgstr "" - -#: ../../Zotlabs/Module/Siteinfo.php:38 -msgid "Software and Project information" -msgstr "" - -#: ../../Zotlabs/Module/Siteinfo.php:39 -msgid "This site is powered by $Projectname" -msgstr "" - -#: ../../Zotlabs/Module/Siteinfo.php:40 -msgid "" -"Federated and decentralised networking and identity services provided by Zot" -msgstr "" - -#: ../../Zotlabs/Module/Siteinfo.php:44 -msgid "Federated transport protocols:" -msgstr "" - -#: ../../Zotlabs/Module/Siteinfo.php:46 -#, php-format -msgid "Version %s" -msgstr "" - -#: ../../Zotlabs/Module/Siteinfo.php:47 -msgid "Project homepage" -msgstr "" - -#: ../../Zotlabs/Module/Siteinfo.php:48 -msgid "Developer homepage" -msgstr "" - -#: ../../Zotlabs/Module/Subthread.php:126 -#, php-format -msgid "%1$s is following %2$s's %3$s" -msgstr "" - -#: ../../Zotlabs/Module/Subthread.php:129 -#, php-format -msgid "%1$s stopped following %2$s's %3$s" -msgstr "" - -#: ../../Zotlabs/Module/Secrets.php:13 -msgid "" -"This app allows you to protect messages with a secret passphrase. This only " -"works across selected platforms." -msgstr "" - -#: ../../Zotlabs/Module/Secrets.php:21 -msgid "" -"This app is installed. A button to encrypt content may be found in the post " -"editor." -msgstr "" - -#: ../../Zotlabs/Module/Filestorage.php:94 -msgid "Channel unavailable." -msgstr "" - -#: ../../Zotlabs/Module/Filestorage.php:139 -msgid "File not found." -msgstr "" - -#: ../../Zotlabs/Module/Filestorage.php:221 -msgid "Edit file permissions" -msgstr "" - -#: ../../Zotlabs/Module/Filestorage.php:233 -msgid "Change filename to" -msgstr "" - -#: ../../Zotlabs/Module/Filestorage.php:233 -msgid "Leave blank to keep the existing filename" -msgstr "" - -#: ../../Zotlabs/Module/Filestorage.php:234 -msgid "Move to directory" -msgstr "" - -#: ../../Zotlabs/Module/Filestorage.php:236 -msgid "Include all files and sub folders" -msgstr "" - -#: ../../Zotlabs/Module/Filestorage.php:237 -msgid "Return to file list" -msgstr "" - -#: ../../Zotlabs/Module/Filestorage.php:239 -msgid "Copy/paste this code to attach file to a post" -msgstr "" - -#: ../../Zotlabs/Module/Filestorage.php:240 -msgid "Copy/paste this URL to link file from a web page" -msgstr "" - -#: ../../Zotlabs/Module/Filestorage.php:242 -msgid "Share this file" -msgstr "" - -#: ../../Zotlabs/Module/Filestorage.php:243 -msgid "Show URL to this file" -msgstr "" - -#: ../../Zotlabs/Module/Hcard.php:40 ../../Zotlabs/Module/Profile.php:52 -msgid "Posts and comments" -msgstr "" - -#: ../../Zotlabs/Module/Hcard.php:47 ../../Zotlabs/Module/Profile.php:59 -#: ../../Zotlabs/Module/Channel.php:73 -msgid "Only posts" -msgstr "" - -#: ../../Zotlabs/Module/Editlayout.php:132 ../../Zotlabs/Module/Layouts.php:135 -#: ../../Zotlabs/Module/Layouts.php:195 -msgid "Layout Name" -msgstr "" - -#: ../../Zotlabs/Module/Editlayout.php:133 ../../Zotlabs/Module/Layouts.php:138 -msgid "Layout Description (Optional)" -msgstr "" - -#: ../../Zotlabs/Module/Editlayout.php:141 -msgid "Edit Layout" -msgstr "" - -#: ../../Zotlabs/Module/Expire.php:23 -msgid "Expiration settings updated." -msgstr "" - -#: ../../Zotlabs/Module/Expire.php:33 -msgid "" -"This app allows you to set an optional expiration date/time for posts, after " -"which they will be deleted. This must be at least fifteen minutes into the " -"future. You may also choose to automatically delete all your posts after a " -"set number of days" -msgstr "" - -#: ../../Zotlabs/Module/Expire.php:42 -msgid "Expire and delete all my posts after this many days" -msgstr "" - -#: ../../Zotlabs/Module/Expire.php:42 -msgid "" -"Leave at 0 if you wish to manually control expiration of specific posts." -msgstr "" - -#: ../../Zotlabs/Module/Expire.php:46 -msgid "Automatic Expiration Settings" -msgstr "" - -#: ../../Zotlabs/Module/Defperms.php:59 ../../Zotlabs/Module/Connedit.php:83 -msgid "Could not access contact record." -msgstr "" - -#: ../../Zotlabs/Module/Defperms.php:229 ../../Zotlabs/Module/Connedit.php:793 -msgid "Apply these permissions automatically" -msgstr "" - -#: ../../Zotlabs/Module/Defperms.php:230 ../../Zotlabs/Module/Connedit.php:794 -msgid "Permission role" -msgstr "" - -#: ../../Zotlabs/Module/Defperms.php:231 ../../Zotlabs/Module/Connedit.php:795 -msgid "Add permission role" -msgstr "" - -#: ../../Zotlabs/Module/Defperms.php:235 ../../Zotlabs/Module/Connedit.php:808 -msgid "" -"The permissions indicated on this page will be applied to all new " -"connections." -msgstr "" - -#: ../../Zotlabs/Module/Defperms.php:236 -msgid "Automatic approval settings" -msgstr "" - -#: ../../Zotlabs/Module/Defperms.php:244 -msgid "" -"Some individual permissions may have been preset or locked based on your " -"channel type and privacy settings." -msgstr "" - -#: ../../Zotlabs/Module/Vote.php:39 -msgid "Poll not found." -msgstr "" - -#: ../../Zotlabs/Module/Vote.php:70 -msgid "Invalid response." -msgstr "" - -#: ../../Zotlabs/Module/Vote.php:129 -msgid "Response submitted. Updates may not appear instantly." -msgstr "" - -#: ../../Zotlabs/Module/Viewconnections.php:62 -msgid "No connections." -msgstr "" - -#: ../../Zotlabs/Module/Viewconnections.php:80 -#, php-format -msgid "Visit %1$s's profile [%2$s]" -msgstr "" - -#: ../../Zotlabs/Module/Viewconnections.php:109 -msgid "View Connections" -msgstr "" - -#: ../../Zotlabs/Module/Import.php:150 -#, php-format -msgid "Your service plan only allows %d channels." -msgstr "" - -#: ../../Zotlabs/Module/Import.php:180 -msgid "No channel. Import failed." -msgstr "" - -#: ../../Zotlabs/Module/Import.php:540 -msgid "Import completed." -msgstr "" - -#: ../../Zotlabs/Module/Import.php:570 -msgid "You must be logged in to use this feature." -msgstr "" - -#: ../../Zotlabs/Module/Import.php:575 -msgid "Import Channel" -msgstr "" - -#: ../../Zotlabs/Module/Import.php:576 -msgid "" -"Use this form to import an existing channel from a different server. You may " -"retrieve the channel identity from the old server via the network or provide " -"an export file." -msgstr "" - -#: ../../Zotlabs/Module/Import.php:578 -msgid "Or provide the old server details" -msgstr "" - -#: ../../Zotlabs/Module/Import.php:579 -msgid "Your old identity address (xyz@example.com)" -msgstr "" - -#: ../../Zotlabs/Module/Import.php:580 -msgid "Your old login email address" -msgstr "" - -#: ../../Zotlabs/Module/Import.php:581 -msgid "Your old login password" -msgstr "" - -#: ../../Zotlabs/Module/Import.php:582 -msgid "Import a few months of posts if possible (limited by available memory" -msgstr "" - -#: ../../Zotlabs/Module/Import.php:584 -msgid "" -"For either option, please choose whether to make this hub your new primary " -"address, or whether your old location should continue this role. You will be " -"able to post from either location, but only one can be marked as the primary " -"location for files, photos, and media." -msgstr "" - -#: ../../Zotlabs/Module/Import.php:586 -msgid "Make this hub my primary location" -msgstr "" - -#: ../../Zotlabs/Module/Import.php:587 -msgid "Move this channel (disable all previous locations)" -msgstr "" - -#: ../../Zotlabs/Module/Import.php:588 -msgid "Use this channel nickname instead of the one provided" -msgstr "" - -#: ../../Zotlabs/Module/Import.php:588 -msgid "" -"Leave blank to keep your existing channel nickname. You will be randomly " -"assigned a similar nickname if either name is already allocated on this site." -msgstr "" - -#: ../../Zotlabs/Module/Import.php:590 -msgid "" -"This process may take several minutes to complete. Please submit the form " -"only once and leave this page open until finished." -msgstr "" - -#: ../../Zotlabs/Module/Tagger.php:50 -msgid "Post not found." -msgstr "" - -#: ../../Zotlabs/Module/Tagger.php:79 ../../Zotlabs/Lib/Markdown.php:205 -#: ../../include/bbcode.php:566 ../../include/conversation.php:151 -msgid "post" -msgstr "" - -#: ../../Zotlabs/Module/Tagger.php:81 ../../include/conversation.php:153 -#: ../../include/text.php:2116 -msgid "comment" -msgstr "" - -#: ../../Zotlabs/Module/Tagger.php:121 -#, php-format -msgid "%1$s tagged %2$s's %3$s with %4$s" -msgstr "" - -#: ../../Zotlabs/Module/Apps.php:50 -msgid "Installed Apps" -msgstr "" - -#: ../../Zotlabs/Module/Apps.php:53 -msgid "Manage apps" -msgstr "" - -#: ../../Zotlabs/Module/Apps.php:54 -msgid "Create Custom App" -msgstr "" - -#: ../../Zotlabs/Module/Acl.php:280 -msgid "network" -msgstr "" - -#: ../../Zotlabs/Module/Webpages.php:50 -msgid "Provide managed web pages on your channel" -msgstr "" - -#: ../../Zotlabs/Module/Webpages.php:70 -msgid "Import Webpage Elements" -msgstr "" - -#: ../../Zotlabs/Module/Webpages.php:71 -msgid "Import selected" -msgstr "" - -#: ../../Zotlabs/Module/Webpages.php:94 -msgid "Export Webpage Elements" -msgstr "" - -#: ../../Zotlabs/Module/Webpages.php:95 -msgid "Export selected" -msgstr "" - -#: ../../Zotlabs/Module/Webpages.php:253 ../../Zotlabs/Lib/Apps.php:339 -#: ../../include/nav.php:488 ../../include/conversation.php:2027 -msgid "Webpages" -msgstr "" - -#: ../../Zotlabs/Module/Webpages.php:264 -msgid "Actions" -msgstr "" - -#: ../../Zotlabs/Module/Webpages.php:265 -msgid "Page Link" -msgstr "" - -#: ../../Zotlabs/Module/Webpages.php:266 -msgid "Page Title" -msgstr "" - -#: ../../Zotlabs/Module/Webpages.php:296 -msgid "Invalid file type." -msgstr "" - -#: ../../Zotlabs/Module/Webpages.php:308 -msgid "Error opening zip file" -msgstr "" - -#: ../../Zotlabs/Module/Webpages.php:319 -msgid "Invalid folder path." -msgstr "" - -#: ../../Zotlabs/Module/Webpages.php:346 -msgid "No webpage elements detected." -msgstr "" - -#: ../../Zotlabs/Module/Webpages.php:421 -msgid "Import complete." -msgstr "" - -#: ../../Zotlabs/Module/Regmod.php:15 -msgid "Please login." -msgstr "" - -#: ../../Zotlabs/Module/Follow.php:143 -msgid "Connection added." -msgstr "" - -#: ../../Zotlabs/Module/Ap_probe.php:18 -msgid "ActivityPub Probe Diagnostic" -msgstr "" - -#: ../../Zotlabs/Module/Ap_probe.php:19 -msgid "Object URL" -msgstr "" - -#: ../../Zotlabs/Module/Ap_probe.php:20 -msgid "Authenticated fetch" -msgstr "" - -#: ../../Zotlabs/Module/Cards.php:48 -msgid "Create personal planning cards" -msgstr "" - -#: ../../Zotlabs/Module/Cards.php:109 -msgid "Add Card" -msgstr "" - -#: ../../Zotlabs/Module/Cards.php:204 ../../Zotlabs/Lib/Apps.php:315 -#: ../../include/nav.php:465 ../../include/conversation.php:2005 -msgid "Cards" -msgstr "" - #: ../../Zotlabs/Module/Profiles.php:28 ../../Zotlabs/Module/Profiles.php:183 #: ../../Zotlabs/Module/Profiles.php:237 ../../Zotlabs/Module/Profiles.php:657 msgid "Profile not found." @@ -7650,11 +6967,6 @@ msgstr "" msgid "View this profile" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:723 ../../Zotlabs/Module/Profiles.php:826 -#: ../../Zotlabs/Lib/Libprofile.php:212 -msgid "Edit visibility" -msgstr "" - #: ../../Zotlabs/Module/Profiles.php:724 msgid "Profile Tools" msgstr "" @@ -7663,10 +6975,6 @@ msgstr "" msgid "Change cover photo" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:726 ../../Zotlabs/Lib/Libprofile.php:182 -msgid "Change profile photo" -msgstr "" - #: ../../Zotlabs/Module/Profiles.php:727 msgid "Create a new profile using these settings" msgstr "" @@ -7691,6 +6999,12 @@ msgstr "" msgid "Relationship" msgstr "" +#: ../../Zotlabs/Module/Profiles.php:734 +#: ../../Zotlabs/Module/Settings/Channel.php:691 +#: ../../Zotlabs/Widget/Newmember.php:49 ../../include/datetime.php:58 +msgid "Miscellaneous" +msgstr "" + #: ../../Zotlabs/Module/Profiles.php:736 msgid "Import profile from file" msgstr "" @@ -7823,15 +7137,6 @@ msgstr "" msgid "Communications" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:822 ../../Zotlabs/Lib/Libprofile.php:208 -msgid "Profile Image" -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:832 ../../Zotlabs/Lib/Libprofile.php:189 -#: ../../include/nav.php:108 -msgid "Edit Profiles" -msgstr "" - #: ../../Zotlabs/Module/Profiles.php:884 msgid " and " msgstr "" @@ -7859,16 +7164,6 @@ msgstr "" msgid "%1$s has an updated %2$s, changing %3$s." msgstr "" -#: ../../Zotlabs/Module/Profiles.php:936 ../../Zotlabs/Module/Profiles.php:953 -#: ../../Zotlabs/Lib/Libprofile.php:384 -msgid "Male" -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:936 ../../Zotlabs/Module/Profiles.php:953 -#: ../../Zotlabs/Lib/Libprofile.php:382 -msgid "Female" -msgstr "" - #: ../../Zotlabs/Module/Profiles.php:936 msgid "Currently Male" msgstr "" @@ -7901,14 +7196,6 @@ msgstr "" msgid "Hermaphrodite" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:936 ../../Zotlabs/Lib/Libprofile.php:390 -msgid "Neuter" -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:936 ../../Zotlabs/Lib/Libprofile.php:392 -msgid "Non-specific" -msgstr "" - #: ../../Zotlabs/Module/Profiles.php:936 msgid "Undecided" msgstr "" @@ -8107,119 +7394,214 @@ msgstr "" msgid "Ask me" msgstr "" -#: ../../Zotlabs/Module/Register.php:54 -msgid "Maximum daily site registrations exceeded. Please try again tomorrow." +#: ../../Zotlabs/Module/Poke.php:164 +msgid "Poke somebody in your addressbook" msgstr "" -#: ../../Zotlabs/Module/Register.php:60 +#: ../../Zotlabs/Module/Poke.php:198 +msgid "Poke somebody" +msgstr "" + +#: ../../Zotlabs/Module/Poke.php:201 +msgid "Poke/Prod" +msgstr "" + +#: ../../Zotlabs/Module/Poke.php:202 +msgid "Poke, prod or do other things to somebody" +msgstr "" + +#: ../../Zotlabs/Module/Poke.php:209 +msgid "Recipient" +msgstr "" + +#: ../../Zotlabs/Module/Poke.php:210 +msgid "Choose what you wish to do to recipient" +msgstr "" + +#: ../../Zotlabs/Module/Poke.php:213 ../../Zotlabs/Module/Poke.php:214 +msgid "Make this post private" +msgstr "" + +#: ../../Zotlabs/Module/Profile_photo.php:498 msgid "" -"Please indicate acceptance of the Terms of Service. Registration failed." +"Your profile photo is visible to anybody on the internet and may be " +"distributed to other websites." msgstr "" -#: ../../Zotlabs/Module/Register.php:95 -msgid "Passwords do not match." +#: ../../Zotlabs/Module/Profile_photo.php:502 +msgid "Use Photo for Profile" msgstr "" -#: ../../Zotlabs/Module/Register.php:142 -msgid "Registration successful. Continue to create your first channel..." +#: ../../Zotlabs/Module/Profile_photo.php:502 +msgid "Change Profile Photo" msgstr "" -#: ../../Zotlabs/Module/Register.php:145 -msgid "" -"Registration successful. Please check your email for validation instructions." +#: ../../Zotlabs/Module/Photos.php:80 +msgid "Page owner information could not be retrieved." msgstr "" -#: ../../Zotlabs/Module/Register.php:152 -msgid "Your registration is pending approval by the site owner." +#: ../../Zotlabs/Module/Photos.php:95 ../../Zotlabs/Module/Photos.php:114 +msgid "Album not found." msgstr "" -#: ../../Zotlabs/Module/Register.php:155 -msgid "Your registration can not be processed." +#: ../../Zotlabs/Module/Photos.php:104 +msgid "Delete Album" msgstr "" -#: ../../Zotlabs/Module/Register.php:202 -msgid "Registration on this website is disabled." +#: ../../Zotlabs/Module/Photos.php:174 ../../Zotlabs/Module/Photos.php:1077 +msgid "Delete Photo" msgstr "" -#: ../../Zotlabs/Module/Register.php:212 -msgid "Registration on this website is by approval only." +#: ../../Zotlabs/Module/Photos.php:546 +msgid "No photos selected" msgstr "" -#: ../../Zotlabs/Module/Register.php:220 -msgid "Registration on this site is by invitation only." +#: ../../Zotlabs/Module/Photos.php:595 +msgid "Access to this item is restricted." msgstr "" -#: ../../Zotlabs/Module/Register.php:231 -msgid "" -"This site has exceeded the number of allowed daily account registrations. " -"Please try again tomorrow." -msgstr "" - -#: ../../Zotlabs/Module/Register.php:253 +#: ../../Zotlabs/Module/Photos.php:638 #, php-format -msgid "I accept the %s for this website" +msgid "%1$.2f MB of %2$.2f MB photo storage used." msgstr "" -#: ../../Zotlabs/Module/Register.php:260 +#: ../../Zotlabs/Module/Photos.php:641 #, php-format -msgid "I am over %s years of age and accept the %s for this website" +msgid "%1$.2f MB photo storage used." msgstr "" -#: ../../Zotlabs/Module/Register.php:265 -msgid "Your email address" +#: ../../Zotlabs/Module/Photos.php:683 +msgid "Upload Photos" msgstr "" -#: ../../Zotlabs/Module/Register.php:266 -msgid "Choose a password" +#: ../../Zotlabs/Module/Photos.php:687 +msgid "Enter an album name" msgstr "" -#: ../../Zotlabs/Module/Register.php:267 -msgid "Please re-enter your password" +#: ../../Zotlabs/Module/Photos.php:688 +msgid "or select an existing album (doubleclick)" msgstr "" -#: ../../Zotlabs/Module/Register.php:268 -msgid "Please enter your invitation code" +#: ../../Zotlabs/Module/Photos.php:689 +msgid "Create a status post for this upload" msgstr "" -#: ../../Zotlabs/Module/Register.php:269 -msgid "Your Name" +#: ../../Zotlabs/Module/Photos.php:691 +msgid "Description (optional)" msgstr "" -#: ../../Zotlabs/Module/Register.php:269 -msgid "Real names are preferred." +#: ../../Zotlabs/Module/Photos.php:779 +msgid "Date descending" msgstr "" -#: ../../Zotlabs/Module/Register.php:271 -#, php-format -msgid "" -"Your nickname will be used to create an easy to remember channel address e." -"g. nickname%s" +#: ../../Zotlabs/Module/Photos.php:780 +msgid "Date ascending" msgstr "" -#: ../../Zotlabs/Module/Register.php:272 -msgid "" -"Select a channel permission role for your usage needs and privacy " -"requirements." +#: ../../Zotlabs/Module/Photos.php:781 +msgid "Name ascending" msgstr "" -#: ../../Zotlabs/Module/Register.php:273 -msgid "no" +#: ../../Zotlabs/Module/Photos.php:840 ../../Zotlabs/Module/Photos.php:1366 +msgid "Add Photos" msgstr "" -#: ../../Zotlabs/Module/Register.php:273 -msgid "yes" +#: ../../Zotlabs/Module/Photos.php:842 +msgid "Sort" msgstr "" -#: ../../Zotlabs/Module/Register.php:286 -msgid "" -"Show affiliated sites - some of which may allow " -"registration." +#: ../../Zotlabs/Module/Photos.php:886 +msgid "Permission denied. Access to this item may be restricted." msgstr "" -#: ../../Zotlabs/Module/Register.php:300 -msgid "" -"This site requires email verification. After completing this form, please " -"check your email for further instructions." +#: ../../Zotlabs/Module/Photos.php:888 +msgid "Photo not available" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:948 +msgid "Use as profile photo" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:949 +msgid "Use as cover photo" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:956 +msgid "Private Photo" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:971 +msgid "View Full Size" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:1053 +msgid "Edit photo" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:1057 +msgid "Move photo to album" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:1058 +msgid "Enter a new album name" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:1059 +msgid "or select an existing one (doubleclick)" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:1064 +msgid "Add a Tag" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:1072 +msgid "Example: @bob, @Barbara_Jensen, @jim@example.com" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:1075 +msgid "Flag as adult in album view" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:1131 ../../include/conversation.php:618 +msgctxt "title" +msgid "Likes" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:1132 ../../include/conversation.php:619 +msgctxt "title" +msgid "Dislikes" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:1133 ../../include/conversation.php:620 +msgctxt "title" +msgid "Attending" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:1134 ../../include/conversation.php:621 +msgctxt "title" +msgid "Not attending" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:1135 ../../include/conversation.php:622 +msgctxt "title" +msgid "Might attend" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:1255 +msgid "Photo Tools" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:1264 +msgid "In This Photo:" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:1269 +msgid "Map" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:1349 ../../Zotlabs/Module/Photos.php:1363 +#: ../../Zotlabs/Module/Photos.php:1364 ../../include/photos.php:713 +msgid "Recent Photos" msgstr "" #: ../../Zotlabs/Module/Profperm.php:38 ../../Zotlabs/Module/Profperm.php:67 @@ -8230,12 +7612,6 @@ msgstr "" msgid "Profile Visibility Editor" msgstr "" -#: ../../Zotlabs/Module/Profperm.php:117 ../../Zotlabs/Lib/Libprofile.php:572 -#: ../../Zotlabs/Lib/Activity.php:2213 ../../Zotlabs/Lib/Activity.php:2216 -#: ../../Zotlabs/Lib/Apps.php:365 -msgid "Profile" -msgstr "" - #: ../../Zotlabs/Module/Profperm.php:119 msgid "Click on a contact to add or remove." msgstr "" @@ -8244,127 +7620,6 @@ msgstr "" msgid "Visible To" msgstr "" -#: ../../Zotlabs/Module/Mood.php:74 ../../include/conversation.php:284 -#, php-format -msgctxt "mood" -msgid "%1$s is %2$s" -msgstr "" - -#: ../../Zotlabs/Module/Mood.php:133 ../../Zotlabs/Module/Mood.php:153 -msgid "Set your current mood and tell your friends" -msgstr "" - -#: ../../Zotlabs/Module/Mood.php:152 ../../Zotlabs/Lib/Apps.php:351 -msgid "Mood" -msgstr "" - -#: ../../Zotlabs/Module/Embedphotos.php:105 ../../include/bbcode.php:227 -#: ../../include/bbcode.php:952 ../../include/bbcode.php:1620 -#: ../../include/bbcode.php:1622 ../../include/bbcode.php:1625 -msgid "Image/photo" -msgstr "" - -#: ../../Zotlabs/Module/Card_edit.php:130 -msgid "Edit Card" -msgstr "" - -#: ../../Zotlabs/Module/Stream.php:123 -msgid "Access list not found" -msgstr "" - -#: ../../Zotlabs/Module/Stream.php:164 -msgid "No such channel" -msgstr "" - -#: ../../Zotlabs/Module/Stream.php:177 ../../Zotlabs/Module/Channel.php:225 -msgid "Search Results For:" -msgstr "" - -#: ../../Zotlabs/Module/Stream.php:254 -msgid "Access list is empty" -msgstr "" - -#: ../../Zotlabs/Module/Stream.php:265 ../../include/items.php:4051 -#, php-format -msgid "Access list: %s" -msgstr "" - -#: ../../Zotlabs/Module/Notifications.php:55 ../../Zotlabs/Module/Notify.php:63 -msgid "No more system notifications." -msgstr "" - -#: ../../Zotlabs/Module/Notifications.php:59 ../../Zotlabs/Module/Notify.php:67 -msgid "System Notifications" -msgstr "" - -#: ../../Zotlabs/Module/Notifications.php:60 -#: ../../Zotlabs/Lib/ThreadItem.php:447 -msgid "Mark all seen" -msgstr "" - -#: ../../Zotlabs/Module/Future.php:13 -msgid "" -"This app allows you to set an optional publish date/time for posts, which " -"may be in the future. This must be at least ten minutes into the future to " -"initiate delayed publishing. The posts will be published automatically after " -"that time has passed. Once installed, a new button will appear in the post " -"editor to set the date/time." -msgstr "" - -#: ../../Zotlabs/Module/Cloud.php:124 -msgid "Not found" -msgstr "" - -#: ../../Zotlabs/Module/Cloud.php:130 -msgid "Please refresh page" -msgstr "" - -#: ../../Zotlabs/Module/Cloud.php:133 -msgid "Unknown error" -msgstr "" - -#: ../../Zotlabs/Module/Blocks.php:158 ../../include/text.php:2555 -msgid "Blocks" -msgstr "" - -#: ../../Zotlabs/Module/Blocks.php:160 -msgid "Block Title" -msgstr "" - -#: ../../Zotlabs/Module/Nocomment.php:13 -msgid "This app allows you to disable comments on individual posts." -msgstr "" - -#: ../../Zotlabs/Module/Nocomment.php:21 -msgid "" -"This app is installed. A button to control the ability to comment may be " -"found below the post editor." -msgstr "" - -#: ../../Zotlabs/Module/Sharedwithme.php:103 -msgid "Files: shared with me" -msgstr "" - -#: ../../Zotlabs/Module/Sharedwithme.php:105 -msgid "NEW" -msgstr "" - -#: ../../Zotlabs/Module/Sharedwithme.php:108 -msgid "Remove all files" -msgstr "" - -#: ../../Zotlabs/Module/Sharedwithme.php:109 -msgid "Remove this file" -msgstr "" - -#: ../../Zotlabs/Module/Chatsvc.php:131 -msgid "Away" -msgstr "" - -#: ../../Zotlabs/Module/Chatsvc.php:136 -msgid "Online" -msgstr "" - #: ../../Zotlabs/Module/Removeme.php:45 msgid "" "Channel removals are not allowed within 48 hours of changing the account " @@ -8379,48 +7634,1207 @@ msgstr "" msgid "This channel will be completely removed from this server. " msgstr "" -#: ../../Zotlabs/Module/Pconfig.php:33 ../../Zotlabs/Module/Pconfig.php:70 -msgid "This setting requires special processing and editing has been blocked." +#: ../../Zotlabs/Module/Removeme.php:68 +#: ../../Zotlabs/Module/Removeaccount.php:68 +msgid "This action is permanent and can not be undone!" msgstr "" -#: ../../Zotlabs/Module/Pconfig.php:59 -msgid "Configuration Editor" +#: ../../Zotlabs/Module/Removeme.php:70 +#: ../../Zotlabs/Module/Settings/Channel.php:696 +msgid "Remove Channel" msgstr "" -#: ../../Zotlabs/Module/Pconfig.php:60 +#: ../../Zotlabs/Module/Affinity.php:26 +msgid "Friend Zoom settings updated." +msgstr "" + +#: ../../Zotlabs/Module/Affinity.php:37 msgid "" -"Warning: Changing some settings could render your channel inoperable. Please " -"leave this page unless you are comfortable with and knowledgeable about how " -"to correctly use this feature." +"This app (when installed) presents a slider control in your connection " +"editor and also on your stream page. The slider represents your degree of " +"friendship with each connection. It allows you to zoom in or out and display " +"conversations from only your closest friends or everybody in your stream." msgstr "" -#: ../../Zotlabs/Module/Pin.php:42 ../../Zotlabs/Module/Item.php:475 -msgid "Unable to locate original post." +#: ../../Zotlabs/Module/Affinity.php:45 +msgid "" +"The number below represents the default maximum slider position for your " +"stream page as a percentage." msgstr "" -#: ../../Zotlabs/Module/Notes.php:45 -msgid "This app allows you to create private notes for your personal use." +#: ../../Zotlabs/Module/Affinity.php:71 +msgid "Default friend zoom in/out" msgstr "" -#: ../../Zotlabs/Module/Notes.php:53 -msgid "This app is installed. The Notes tool can be found on your stream page." +#: ../../Zotlabs/Module/Affinity.php:72 ../../Zotlabs/Widget/Affinity.php:38 +msgid "Refresh" msgstr "" -#: ../../Zotlabs/Module/Share.php:102 ../../Zotlabs/Lib/Activity.php:2236 +#: ../../Zotlabs/Module/Affinity.php:83 +msgid "Friend Zoom Settings" +msgstr "" + +#: ../../Zotlabs/Module/Follow.php:143 +msgid "Connection added." +msgstr "" + +#: ../../Zotlabs/Module/Home.php:112 #, php-format -msgid "🔁 Repeated %1$s's %2$s" +msgid "Welcome to %s" msgstr "" -#: ../../Zotlabs/Module/Share.php:118 -msgid "Post repeated" +#: ../../Zotlabs/Module/Regdir.php:52 +msgid "This site is not a directory server" msgstr "" -#: ../../Zotlabs/Module/Viewsrc.php:45 -msgid "item" +#: ../../Zotlabs/Module/Regmod.php:15 +msgid "Please login." msgstr "" -#: ../../Zotlabs/Module/Viewsrc.php:55 -msgid "inspect" +#: ../../Zotlabs/Module/Removeaccount.php:46 +msgid "" +"Account removals are not allowed within 48 hours of changing the account " +"password." +msgstr "" + +#: ../../Zotlabs/Module/Removeaccount.php:67 +msgid "Remove This Account" +msgstr "" + +#: ../../Zotlabs/Module/Removeaccount.php:68 +msgid "" +"This account and all its channels will be completely removed from this " +"server. " +msgstr "" + +#: ../../Zotlabs/Module/Removeaccount.php:70 +#: ../../Zotlabs/Module/Settings/Account.php:106 +msgid "Remove Account" +msgstr "" + +#: ../../Zotlabs/Module/Rmagic.php:39 +msgid "Authentication failed." +msgstr "" + +#: ../../Zotlabs/Module/Rmagic.php:80 ../../include/channel.php:1945 +#: ../../boot.php:1656 +msgid "Remote Authentication" +msgstr "" + +#: ../../Zotlabs/Module/Rmagic.php:81 ../../include/channel.php:1946 +msgid "Enter your channel address (e.g. channel@example.com)" +msgstr "" + +#: ../../Zotlabs/Module/Rmagic.php:84 ../../include/channel.php:1947 +msgid "Authenticate" +msgstr "" + +#: ../../Zotlabs/Module/Ap_probe.php:18 +msgid "ActivityPub Probe Diagnostic" +msgstr "" + +#: ../../Zotlabs/Module/Ap_probe.php:19 +msgid "Object URL" +msgstr "" + +#: ../../Zotlabs/Module/Ap_probe.php:20 +msgid "Authenticated fetch" +msgstr "" + +#: ../../Zotlabs/Module/Tasks.php:102 +msgid "This app provides a simple personal and task list." +msgstr "" + +#: ../../Zotlabs/Module/Service_limits.php:23 +msgid "No service class restrictions found." +msgstr "" + +#: ../../Zotlabs/Module/Settings/Account.php:19 +msgid "Not valid email." +msgstr "" + +#: ../../Zotlabs/Module/Settings/Account.php:22 +msgid "Protected email address. Cannot change to that email." +msgstr "" + +#: ../../Zotlabs/Module/Settings/Account.php:31 +msgid "System failure storing new email. Please try again." +msgstr "" + +#: ../../Zotlabs/Module/Settings/Account.php:48 +msgid "Password verification failed." +msgstr "" + +#: ../../Zotlabs/Module/Settings/Account.php:55 +msgid "Passwords do not match. Password unchanged." +msgstr "" + +#: ../../Zotlabs/Module/Settings/Account.php:59 +msgid "Empty passwords are not allowed. Password unchanged." +msgstr "" + +#: ../../Zotlabs/Module/Settings/Account.php:73 +msgid "Password changed." +msgstr "" + +#: ../../Zotlabs/Module/Settings/Account.php:75 +msgid "Password update failed. Please try again." +msgstr "" + +#: ../../Zotlabs/Module/Settings/Account.php:100 +msgid "Account Settings" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Account.php:101 +msgid "Current Password" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Account.php:102 +msgid "Enter New Password" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Account.php:103 +msgid "Confirm New Password" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Account.php:103 +msgid "Leave password fields blank unless changing" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Account.php:105 +msgid "Email Address:" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Account.php:107 +msgid "Remove this account including all its channels" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Featured.php:25 +msgid "Affinity Slider settings updated." +msgstr "" + +#: ../../Zotlabs/Module/Settings/Featured.php:40 +msgid "No feature settings configured" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Featured.php:47 +msgid "Default maximum affinity level" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Featured.php:47 +msgid "0-99 default 99" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Featured.php:52 +msgid "Default minimum affinity level" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Featured.php:52 +msgid "0-99 - default 0" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Featured.php:56 +msgid "Affinity Slider Settings" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Featured.php:69 +msgid "Addon Settings" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Featured.php:70 +msgid "Please save/submit changes to any panel before opening another." +msgstr "" + +#: ../../Zotlabs/Module/Settings/Network.php:38 +msgid "Activity Settings" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Network.php:52 ../../include/features.php:375 +msgid "Search by Date" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Network.php:53 ../../include/features.php:376 +msgid "Ability to select posts by date ranges" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Network.php:60 +#: ../../Zotlabs/Widget/Savedsearch.php:83 ../../include/features.php:385 +msgid "Saved Searches" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Network.php:61 ../../include/features.php:386 +msgid "Save search terms for re-use" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Network.php:68 ../../include/features.php:394 +msgid "Alternate Stream Order" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Network.php:69 ../../include/features.php:395 +msgid "" +"Ability to order the stream by last post date, last comment date or " +"unthreaded activities" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Network.php:76 ../../include/features.php:403 +msgid "Contact Filter" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Network.php:77 ../../include/features.php:404 +msgid "Ability to display only posts of a selected contact" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Network.php:84 ../../include/features.php:412 +msgid "Forum Filter" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Network.php:85 ../../include/features.php:413 +msgid "Ability to display only posts of a specific forum" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Network.php:92 ../../include/features.php:421 +msgid "Personal Posts Filter" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Network.php:93 ../../include/features.php:422 +msgid "Ability to display only posts that you've interacted on" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Network.php:100 ../../include/features.php:430 +msgid "Affinity Tool" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Network.php:101 ../../include/features.php:431 +msgid "Filter stream activity by depth of relationships" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Network.php:109 ../../include/features.php:440 +msgid "Show friend and connection suggestions" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Network.php:116 ../../include/features.php:448 +msgid "Connection Filtering" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Network.php:117 ../../include/features.php:449 +msgid "Filter incoming posts from connections based on keywords/content" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Oauth.php:35 +msgid "Name is required" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Oauth.php:39 +msgid "Key and Secret are required" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Oauth.php:87 +#: ../../Zotlabs/Module/Settings/Oauth.php:113 +#: ../../Zotlabs/Module/Settings/Oauth.php:149 +#: ../../Zotlabs/Module/Settings/Oauth2.php:133 +#: ../../Zotlabs/Module/Settings/Oauth2.php:195 +msgid "Add application" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Oauth.php:90 +#: ../../Zotlabs/Module/Settings/Oauth2.php:107 +#: ../../Zotlabs/Module/Settings/Oauth2.php:136 +msgid "Name of application" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Oauth.php:91 +#: ../../Zotlabs/Module/Settings/Oauth.php:117 +msgid "Consumer Key" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Oauth.php:91 +#: ../../Zotlabs/Module/Settings/Oauth.php:92 +#: ../../Zotlabs/Module/Settings/Oauth2.php:108 +#: ../../Zotlabs/Module/Settings/Oauth2.php:109 +#: ../../Zotlabs/Module/Settings/Oauth2.php:137 +#: ../../Zotlabs/Module/Settings/Oauth2.php:138 +msgid "Automatically generated - change if desired. Max length 20" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Oauth.php:92 +#: ../../Zotlabs/Module/Settings/Oauth.php:118 +#: ../../Zotlabs/Module/Settings/Oauth2.php:109 +#: ../../Zotlabs/Module/Settings/Oauth2.php:138 +msgid "Consumer Secret" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Oauth.php:93 +#: ../../Zotlabs/Module/Settings/Oauth.php:119 +#: ../../Zotlabs/Module/Settings/Oauth2.php:110 +#: ../../Zotlabs/Module/Settings/Oauth2.php:139 +msgid "Redirect" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Oauth.php:93 +#: ../../Zotlabs/Module/Settings/Oauth2.php:110 +#: ../../Zotlabs/Module/Settings/Oauth2.php:139 +msgid "" +"Redirect URI - leave blank unless your application specifically requires this" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Oauth.php:94 +#: ../../Zotlabs/Module/Settings/Oauth.php:120 +msgid "Icon url" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Oauth.php:94 +#: ../../Zotlabs/Module/Sources.php:121 ../../Zotlabs/Module/Sources.php:156 +msgid "Optional" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Oauth.php:105 +msgid "Application not found." +msgstr "" + +#: ../../Zotlabs/Module/Settings/Oauth.php:148 +msgid "Connected Apps" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Oauth.php:152 +#: ../../Zotlabs/Module/Settings/Oauth2.php:198 +msgid "Client key starts with" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Oauth.php:153 +#: ../../Zotlabs/Module/Settings/Oauth2.php:199 +msgid "No name" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Oauth.php:154 +#: ../../Zotlabs/Module/Settings/Oauth2.php:200 +msgid "Remove authorization" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Permcats.php:24 +msgid "Permission Name is required." +msgstr "" + +#: ../../Zotlabs/Module/Settings/Permcats.php:43 +msgid "Permission category saved." +msgstr "" + +#: ../../Zotlabs/Module/Settings/Permcats.php:67 +msgid "" +"Use this form to create permission rules for various classes of people or " +"connections." +msgstr "" + +#: ../../Zotlabs/Module/Settings/Permcats.php:108 +msgid "Permission Name" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Tokens.php:33 +#, php-format +msgid "This channel is limited to %d tokens" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Tokens.php:39 +msgid "Name and Password are required." +msgstr "" + +#: ../../Zotlabs/Module/Settings/Tokens.php:81 +msgid "Token saved." +msgstr "" + +#: ../../Zotlabs/Module/Settings/Tokens.php:117 +msgid "" +"Use this form to create temporary access identifiers to share things with " +"non-members. These identities may be used in Access Control Lists and " +"visitors may login using these credentials to access private content." +msgstr "" + +#: ../../Zotlabs/Module/Settings/Tokens.php:119 +msgid "" +"You may also provide dropbox style access links to friends and " +"associates by adding the Login Password to any specific site URL as shown. " +"Examples:" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Tokens.php:151 +#: ../../Zotlabs/Widget/Settings_menu.php:96 +msgid "Guest Access Tokens" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Tokens.php:159 +msgid "Login Name" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Tokens.php:160 +msgid "Login Password" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Tokens.php:161 +msgid "Expires (yyyy-mm-dd)" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Features.php:55 +msgid "Additional Features" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Oauth2.php:48 +msgid "ID and Secret are required" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Oauth2.php:104 +msgid "Add OAuth2 application" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Oauth2.php:108 +#: ../../Zotlabs/Module/Settings/Oauth2.php:137 +msgid "Consumer ID" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Oauth2.php:111 +#: ../../Zotlabs/Module/Settings/Oauth2.php:140 +msgid "Grant Types" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Oauth2.php:111 +#: ../../Zotlabs/Module/Settings/Oauth2.php:112 +#: ../../Zotlabs/Module/Settings/Oauth2.php:140 +#: ../../Zotlabs/Module/Settings/Oauth2.php:141 +msgid "leave blank unless your application specifically requires this" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Oauth2.php:112 +#: ../../Zotlabs/Module/Settings/Oauth2.php:141 +msgid "Authorization scope" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Oauth2.php:124 +msgid "OAuth2 Application not found." +msgstr "" + +#: ../../Zotlabs/Module/Settings/Oauth2.php:194 +msgid "Connected OAuth2 Apps" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Display.php:133 +#, php-format +msgid "%s - (Experimental)" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Display.php:176 +msgid "Display Settings" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Display.php:177 +msgid "Theme Settings" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Display.php:178 +msgid "Custom Theme Settings" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Display.php:179 +msgid "Content Settings" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Display.php:185 +msgid "Display Theme:" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Display.php:186 +msgid "Select scheme" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Display.php:188 +msgid "Preload images before rendering the page" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Display.php:188 +msgid "" +"The subjective page load time will be longer but the page will be ready when " +"displayed" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Display.php:189 +msgid "Enable user zoom on mobile devices" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Display.php:190 +msgid "Update browser every xx seconds" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Display.php:190 +msgid "Minimum of 10 seconds, no maximum" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Display.php:191 +msgid "Maximum number of conversations to load at any time:" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Display.php:191 +msgid "Maximum of 100 items" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Display.php:192 +msgid "Show emoticons (smilies) as images" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Display.php:193 +msgid "Provide channel menu in navigation bar" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Display.php:193 +msgid "Default: channel menu located in app menu" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Display.php:194 +msgid "System Page Layout Editor - (advanced)" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Display.php:197 +msgid "Channel page max height of content (in pixels)" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Display.php:197 +#: ../../Zotlabs/Module/Settings/Display.php:198 +msgid "click to expand content exceeding this height" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Display.php:198 +msgid "Stream page max height of content (in pixels)" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:381 +msgid "Nobody except yourself" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:382 +msgid "Only those you specifically allow" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:383 +msgid "Approved connections" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:384 +msgid "Any connections" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:385 +msgid "Anybody on this website" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:386 +msgid "Anybody in this network" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:387 +msgid "Anybody authenticated" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:388 +msgid "Anybody on the internet" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:468 +msgid "Publish your profile in the network directory" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:473 +msgid "Allow us to suggest you as a potential friend to new members?" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:477 +#: ../../Zotlabs/Module/Settings/Channel.php:491 +msgid "or" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:483 +msgid "Your channel address is" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:485 +msgid "" +"Friends using compatible applications can use this address to connect with " +"you." +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:487 +msgid "Your files/photos are accessible as a network drive at" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:489 +msgid "(Windows)" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:490 +msgid "(other platforms)" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:536 +msgid "Automatic membership approval" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:542 +msgid "Friend-of-friend conversations" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:542 +msgid "" +"Import public third-party conversations in which your connections " +"participate." +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:546 +msgid "Enable ActivityPub protocol" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:546 +msgid "ActivityPub is an emerging internet standard for social communications" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:582 +msgid "Channel Settings" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:588 +msgid "Basic Settings" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:589 +msgid "Full name" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:591 +msgid "Your timezone" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:591 +msgid "This is important for showing the correct time on shared events" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:592 +msgid "Default post location" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:592 +msgid "Optional geographical location to display on your posts" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:593 +msgid "Obtain post location from your web browser or device" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:595 +msgid "Adult content" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:595 +msgid "" +"Enable to indicate if this channel frequently or regularly publishes adult " +"content. (Please also tag any adult material and/or nudity with #NSFW)" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:597 +msgid "Security and Privacy" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:599 +msgid "Your permissions are already configured. Click to view/adjust" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:601 +msgid "Hide my online presence" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:601 +msgid "Prevents displaying in your profile that you are online" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:602 +msgid "Allow others to view your friends and connections" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:605 +msgid "Forbid indexing of your channel content by search engines" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:606 +msgid "Allow others to tag your posts" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:606 +msgid "" +"Often used by the community to retro-actively flag inappropriate content" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:608 +msgid "Channel Permission Limits" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:610 +msgid "Expire other channel content after this many days" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:610 +msgid "0 or blank to use the website limit." +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:610 +#, php-format +msgid "This website expires after %d days." +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:610 +msgid "This website does not expire imported content." +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:610 +msgid "The website limit takes precedence if lower than your limit." +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:611 +msgid "Maximum Friend Requests/Day:" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:611 +msgid "May reduce spam activity" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:612 +msgid "Default Access List" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:614 +msgid "Use my default audience setting for the type of object published" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:615 +msgid "Profile to assign new connections" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:627 +msgid "Default Permissions Group" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:633 +msgid "Maximum private messages per day from unknown people:" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:633 +msgid "Useful to reduce spamming" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:642 +msgid "By default post a status message when:" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:643 +msgid "accepting a friend request" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:644 +msgid "joining a forum/community" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:645 +msgid "making an interesting profile change" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:646 +msgid "Send a notification email when:" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:647 +msgid "You receive a connection request" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:649 +msgid "Someone writes on your profile wall" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:650 +msgid "Someone writes a followup comment" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:651 +msgid "You receive a direct (private) message" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:653 +msgid "You are tagged in a post" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:656 +msgid "Someone likes your post/comment" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:659 +msgid "Show visual notifications including:" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:661 +msgid "Unseen stream activity" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:662 +msgid "Unseen channel activity" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:663 +msgid "Unseen direct messages" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:663 +#: ../../Zotlabs/Module/Settings/Channel.php:668 +#: ../../Zotlabs/Module/Settings/Channel.php:669 +#: ../../Zotlabs/Module/Settings/Channel.php:670 +msgid "Recommended" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:664 +msgid "Upcoming events" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:665 +msgid "Events today" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:666 +msgid "Upcoming birthdays" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:666 +msgid "Not available in all themes" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:667 +msgid "System (personal) notifications" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:668 +msgid "System info messages" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:669 +msgid "System critical alerts" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:670 +msgid "New connections" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:671 +msgid "System Registrations" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:673 +msgid "Unseen public activity" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:674 +msgid "Unseen likes and dislikes" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:675 +msgid "Unseen forum posts" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:676 +msgid "Reported content" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:677 +msgid "Email notifications sent from (hostname)" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:677 +#, php-format +msgid "" +"If your channel is mirrored to multiple locations, set this to your " +"preferred location. This will prevent duplicate email notifications. " +"Example: %s" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:678 +msgid "Show new wall posts, private messages and connections under Notices" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:679 +msgid "Accept messages from strangers which mention me" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:679 +msgid "This setting bypasses normal permissions" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:680 +msgid "" +"Accept messages from strangers which include any of the following hashtags" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:680 +msgid "comma separated, do not include the #" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:681 +msgid "Notify me of events this many days in advance" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:681 +msgid "Must be greater than 0" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:686 +msgid "Date and time" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:687 +msgid "" +"This section is reserved for use by optional addons and apps to provide " +"additional settings." +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:688 +msgid "Advanced Account/Page Type Settings" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:689 +msgid "Change the behaviour of this account for special situations" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:692 +msgid "Default photo upload folder name" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:692 +#: ../../Zotlabs/Module/Settings/Channel.php:693 +msgid "%Y - current year, %m - current month" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:693 +msgid "Default file upload folder name" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:695 +msgid "Personal menu to display in your channel pages" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:697 +msgid "Remove this channel." +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:698 +msgid "Mentions should display" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:698 +msgid "" +"Changes to this setting are applied to new posts/comments only. It is not " +"retroactive." +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:700 +msgid "the channel display name [example: @Barbara Jenkins]" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:701 +msgid "the channel nickname [example: @barbara1976]" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:702 +msgid "combined [example: @Barbara Jenkins (barbara1976)]" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:703 +msgid "no preference, use the system default" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:706 +msgid "Calendar week begins on" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:706 +msgid "This varies by country/culture" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:707 +#: ../../include/js_strings.php:88 ../../include/text.php:1307 +msgid "Sunday" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:708 +#: ../../include/js_strings.php:89 ../../include/text.php:1307 +msgid "Monday" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:709 +#: ../../include/js_strings.php:90 ../../include/text.php:1307 +msgid "Tuesday" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:710 +#: ../../include/js_strings.php:91 ../../include/text.php:1307 +msgid "Wednesday" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:711 +#: ../../include/js_strings.php:92 ../../include/text.php:1307 +msgid "Thursday" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:712 +#: ../../include/js_strings.php:93 ../../include/text.php:1307 +msgid "Friday" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:713 +#: ../../include/js_strings.php:94 ../../include/text.php:1307 +msgid "Saturday" +msgstr "" + +#: ../../Zotlabs/Module/Search.php:227 +#, php-format +msgid "Items tagged with: %s" +msgstr "" + +#: ../../Zotlabs/Module/Search.php:229 +#, php-format +msgid "Search results for: %s" +msgstr "" + +#: ../../Zotlabs/Module/Subthread.php:126 +#, php-format +msgid "%1$s is following %2$s's %3$s" +msgstr "" + +#: ../../Zotlabs/Module/Subthread.php:129 +#, php-format +msgid "%1$s stopped following %2$s's %3$s" +msgstr "" + +#: ../../Zotlabs/Module/Sharedwithme.php:103 +msgid "Files: shared with me" +msgstr "" + +#: ../../Zotlabs/Module/Sharedwithme.php:105 +msgid "NEW" +msgstr "" + +#: ../../Zotlabs/Module/Sharedwithme.php:106 +#: ../../Zotlabs/Storage/Browser.php:304 ../../include/text.php:1396 +msgid "Size" +msgstr "" + +#: ../../Zotlabs/Module/Sharedwithme.php:107 +#: ../../Zotlabs/Storage/Browser.php:305 +msgid "Last Modified" +msgstr "" + +#: ../../Zotlabs/Module/Sharedwithme.php:108 +msgid "Remove all files" +msgstr "" + +#: ../../Zotlabs/Module/Sharedwithme.php:109 +msgid "Remove this file" +msgstr "" + +#: ../../Zotlabs/Module/Siteinfo.php:29 +msgid "About this site" +msgstr "" + +#: ../../Zotlabs/Module/Siteinfo.php:31 +msgid "Site Name" +msgstr "" + +#: ../../Zotlabs/Module/Siteinfo.php:35 +msgid "Administrator" +msgstr "" + +#: ../../Zotlabs/Module/Siteinfo.php:38 +msgid "Software and Project information" +msgstr "" + +#: ../../Zotlabs/Module/Siteinfo.php:39 +msgid "This site is powered by $Projectname" +msgstr "" + +#: ../../Zotlabs/Module/Siteinfo.php:40 +msgid "" +"Federated and decentralised networking and identity services provided by Zot" +msgstr "" + +#: ../../Zotlabs/Module/Siteinfo.php:44 +msgid "Federated transport protocols:" +msgstr "" + +#: ../../Zotlabs/Module/Siteinfo.php:46 +#, php-format +msgid "Version %s" +msgstr "" + +#: ../../Zotlabs/Module/Siteinfo.php:47 +msgid "Project homepage" +msgstr "" + +#: ../../Zotlabs/Module/Siteinfo.php:48 +msgid "Developer homepage" +msgstr "" + +#: ../../Zotlabs/Module/Uexport.php:60 ../../Zotlabs/Module/Uexport.php:61 +msgid "Export Channel" +msgstr "" + +#: ../../Zotlabs/Module/Uexport.php:62 +msgid "" +"Export your basic channel information to a file. This acts as a backup of " +"your connections, permissions, profile and basic data, which can be used to " +"import your data to a new server hub, but does not contain your content." +msgstr "" + +#: ../../Zotlabs/Module/Uexport.php:63 +msgid "Export Content" +msgstr "" + +#: ../../Zotlabs/Module/Uexport.php:64 +msgid "" +"Export your channel information and recent content to a JSON backup that can " +"be restored or imported to another server hub. This backs up all of your " +"connections, permissions, profile data and several months of posts. This " +"file may be VERY large. Please be patient - it may take several minutes for " +"this download to begin." +msgstr "" + +#: ../../Zotlabs/Module/Uexport.php:66 +msgid "Export your posts from a given year." +msgstr "" + +#: ../../Zotlabs/Module/Uexport.php:68 +msgid "" +"You may also export your posts and conversations for a particular year or " +"month. Adjust the date in your browser location bar to select other dates. " +"If the export fails (possibly due to memory exhaustion on your server hub), " +"please try again selecting a more limited date range." +msgstr "" + +#: ../../Zotlabs/Module/Uexport.php:69 +#, php-format +msgid "" +"To select all posts for a given year, such as this year, visit %2$s" +msgstr "" + +#: ../../Zotlabs/Module/Uexport.php:70 +#, php-format +msgid "" +"To select all posts for a given month, such as January of this year, visit " +"%2$s" +msgstr "" + +#: ../../Zotlabs/Module/Uexport.php:71 +#, php-format +msgid "" +"These content files may be imported or restored by visiting " +"%2$s on any site containing your channel. For best results please import " +"or restore these in date order (oldest first)." msgstr "" #: ../../Zotlabs/Module/Sources.php:45 @@ -8499,450 +8913,65 @@ msgstr "" msgid "Unable to remove source." msgstr "" -#: ../../Zotlabs/Module/Layouts.php:190 ../../include/text.php:2557 -msgid "Layouts" -msgstr "" - -#: ../../Zotlabs/Module/Layouts.php:196 -msgid "Layout Description" -msgstr "" - -#: ../../Zotlabs/Module/Layouts.php:201 -msgid "Download PDL file" -msgstr "" - -#: ../../Zotlabs/Module/Attach.php:13 -msgid "Item not available." -msgstr "" - -#: ../../Zotlabs/Module/Hq.php:143 -msgid "Welcome to Hubzilla!" -msgstr "" - -#: ../../Zotlabs/Module/Hq.php:143 -msgid "You have got no unseen posts..." -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:114 -msgid "Could not locate selected profile." -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:193 -msgid "Connection updated." -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:196 -msgid "Failed to update connection record." -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:240 -msgid "is now connected to" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:365 -msgid "Could not access address book record." -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:414 -msgid "Refresh failed - channel is currently unavailable." -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:440 -msgid "Added by Connedit" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:478 -msgid "Unable to set address book parameters." -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:495 -msgid "Connection has been removed." -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:540 ../../Zotlabs/Lib/Apps.php:342 -#: ../../include/nav.php:105 -msgid "View Profile" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:543 +#: ../../Zotlabs/Module/Display.php:377 #, php-format -msgid "View %s's profile" +msgid "\"%1$s\", shared by %2$s with %3$s" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:547 -msgid "Refresh Permissions" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:550 -msgid "Fetch updated permissions" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:554 -msgid "Refresh Photo" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:557 -msgid "Fetch updated photo" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:561 ../../include/conversation.php:1041 -msgid "Recent Activity" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:564 -msgid "View recent posts and comments" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:571 -msgid "Block (or Unblock) all communications with this connection" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:572 -msgid "This connection is blocked" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:576 -msgid "Unignore" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:579 -msgid "Ignore (or Unignore) all inbound communications from this connection" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:580 -msgid "This connection is ignored" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:587 -msgid "Censor (or Uncensor) images from this connection" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:588 -msgid "This connection is censored" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:592 -msgid "Unarchive" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:592 -msgid "Archive" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:595 -msgid "" -"Archive (or Unarchive) this connection - mark channel dead but keep content" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:596 -msgid "This connection is archived" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:600 -msgid "Unhide" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:600 -msgid "Hide" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:603 -msgid "Hide or Unhide this connection from your other connections" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:604 -msgid "This connection is hidden" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:611 -msgid "Delete this connection" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:619 -msgid "Fetch Vcard" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:622 -msgid "Fetch electronic calling card for this connection" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:633 -msgid "Open Individual Permissions section by default" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:656 ../../Zotlabs/Lib/Apps.php:311 -msgid "Friend Zoom" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:659 -msgid "Open Friend Zoom section by default" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:685 -msgid "Filter" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:688 -msgid "Open Custom Filter section by default" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:725 -msgid "Approve this connection" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:725 -msgid "Accept connection to allow communication" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:730 -msgid "Set Friend Zoom" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:733 -msgid "Set Profile" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:736 -msgid "Set Friend Zoom & Profile" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:780 -msgid "This connection is unreachable from this location." -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:781 -msgid "This connection may be unreachable from other channel locations." -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:783 -msgid "Location independence is not supported by their network." -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:789 -msgid "" -"This connection is unreachable from this location. Location independence is " -"not supported by their network." -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:792 ../../include/items.php:4061 +#: ../../Zotlabs/Module/Display.php:378 #, php-format -msgid "Connection: %s" +msgid "%1$s shared this post with %2$s" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:793 -msgid "Connection requests will be approved without your interaction" +#: ../../Zotlabs/Module/Display.php:382 +msgid "Not much to read, click to see the post." msgstr "" -#: ../../Zotlabs/Module/Connedit.php:802 -msgid "This connection's primary address is" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:803 -msgid "Available locations:" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:809 -msgid "Connection Tools" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:811 -msgid "Slide to adjust your degree of friendship" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:812 ../../include/js_strings.php:20 -msgid "Rating" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:813 -msgid "Slide to adjust your rating" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:814 ../../Zotlabs/Module/Connedit.php:820 -msgid "Optionally explain your rating" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:816 -msgid "Custom Filter" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:817 ../../Zotlabs/Module/Connedit.php:818 -msgid "" -"words one per line or #tags, $categories, /patterns/, or lang=xx, leave " -"blank to import all posts" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:819 -msgid "optional - allows you to search by a name that you have chosen" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:821 -msgid "This information is public!" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:826 -msgid "Connection Pending Approval" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:831 +#: ../../Zotlabs/Module/Display.php:387 #, php-format -msgid "" -"Please choose the profile you would like to display to %s when viewing your " -"profile securely." +msgid "%1$s shared a reaction to \"%2$s\"" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:838 -msgid "" -"Some permissions may be inherited from your channel's privacy settings, which have higher priority than " -"individual settings. You can change those settings here but they wont have " -"any impact unless the inherited setting changes." -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:839 -msgid "Last update:" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:847 -msgid "Details" -msgstr "" - -#: ../../Zotlabs/Module/Email_validation.php:36 -msgid "Email Verification Required" -msgstr "" - -#: ../../Zotlabs/Module/Email_validation.php:37 +#: ../../Zotlabs/Module/Display.php:388 #, php-format -msgid "" -"A verification token was sent to your email address [%s]. Enter that token " -"here to complete the account verification step. Please allow a few minutes " -"for delivery, and check your spam folder if you do not see the message." +msgid "%s shared a reaction to this post/conversation" msgstr "" -#: ../../Zotlabs/Module/Email_validation.php:38 -msgid "Resend Email" -msgstr "" - -#: ../../Zotlabs/Module/Email_validation.php:41 -msgid "Validation token" -msgstr "" - -#: ../../Zotlabs/Module/Fbrowser.php:26 ../../Zotlabs/Lib/Apps.php:343 -#: ../../include/nav.php:408 ../../include/conversation.php:1946 -msgid "Photos" -msgstr "" - -#: ../../Zotlabs/Module/Profile.php:131 -msgid "vcard" -msgstr "" - -#: ../../Zotlabs/Module/Cover_photo.php:284 ../../include/items.php:4415 -msgid "female" -msgstr "" - -#: ../../Zotlabs/Module/Cover_photo.php:285 ../../include/items.php:4416 +#: ../../Zotlabs/Module/Display.php:396 #, php-format -msgid "%1$s updated her %2$s" +msgid "%1$s commented \"%2$s\"" msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:287 ../../include/items.php:4417 -msgid "male" -msgstr "" - -#: ../../Zotlabs/Module/Cover_photo.php:288 ../../include/items.php:4418 +#: ../../Zotlabs/Module/Display.php:397 #, php-format -msgid "%1$s updated his %2$s" +msgid "%s shared a comment of this post/conversation" msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:291 ../../include/items.php:4420 +#: ../../Zotlabs/Module/Display.php:401 #, php-format -msgid "%1$s updated their %2$s" +msgid "%1$s wrote this: \"%2$s\"" msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:294 ../../include/channel.php:1668 -msgid "cover photo" +#: ../../Zotlabs/Module/Display.php:438 +msgid "Article" msgstr "" -#: ../../Zotlabs/Module/Pdledit.php:21 -msgid "Layout updated." +#: ../../Zotlabs/Module/Display.php:490 +msgid "Item has been removed." msgstr "" -#: ../../Zotlabs/Module/Pdledit.php:42 ../../Zotlabs/Module/Pdledit.php:97 -msgid "Edit System Page Description" +#: ../../Zotlabs/Module/Tagger.php:50 +msgid "Post not found." msgstr "" -#: ../../Zotlabs/Module/Pdledit.php:63 ../../Zotlabs/Module/Pdledit.php:71 -msgid "(modified)" +#: ../../Zotlabs/Module/Tagger.php:81 ../../include/text.php:2116 +#: ../../include/conversation.php:153 +msgid "comment" msgstr "" -#: ../../Zotlabs/Module/Pdledit.php:63 ../../Zotlabs/Module/Pdledit.php:71 -#: ../../Zotlabs/Module/Lostpass.php:133 ../../Zotlabs/Lib/ThreadItem.php:915 -msgid "Reset" -msgstr "" - -#: ../../Zotlabs/Module/Pdledit.php:92 -msgid "Layout not found." -msgstr "" - -#: ../../Zotlabs/Module/Pdledit.php:98 -msgid "Module Name:" -msgstr "" - -#: ../../Zotlabs/Module/Pdledit.php:99 -msgid "Layout Help" -msgstr "" - -#: ../../Zotlabs/Module/Pdledit.php:100 -msgid "Edit another layout" -msgstr "" - -#: ../../Zotlabs/Module/Pdledit.php:101 -msgid "System layout" -msgstr "" - -#: ../../Zotlabs/Module/Item.php:564 -msgid "Comment may be moderated." -msgstr "" - -#: ../../Zotlabs/Module/Item.php:779 -msgid "Empty post discarded." -msgstr "" - -#: ../../Zotlabs/Module/Item.php:1347 -msgid "Duplicate post suppressed." -msgstr "" - -#: ../../Zotlabs/Module/Item.php:1479 -msgid "System error. Post not saved." -msgstr "" - -#: ../../Zotlabs/Module/Item.php:1519 -msgid "Your post/comment is awaiting approval." -msgstr "" - -#: ../../Zotlabs/Module/Item.php:1670 -msgid "Unable to obtain post information from database." -msgstr "" - -#: ../../Zotlabs/Module/Item.php:1678 +#: ../../Zotlabs/Module/Tagger.php:121 #, php-format -msgid "You have reached your limit of %1$.0f top level posts." -msgstr "" - -#: ../../Zotlabs/Module/Item.php:1685 -#, php-format -msgid "You have reached your limit of %1$.0f webpages." -msgstr "" - -#: ../../Zotlabs/Module/Lockview.php:75 -msgid "Remote privacy information not available." -msgstr "" - -#: ../../Zotlabs/Module/Lockview.php:96 -msgid "Visible to:" -msgstr "" - -#: ../../Zotlabs/Module/Chanview.php:132 -msgid "toggle full screen mode" +msgid "%1$s tagged %2$s's %3$s with %4$s" msgstr "" #: ../../Zotlabs/Module/Tagrm.php:48 ../../Zotlabs/Module/Tagrm.php:98 @@ -8957,95 +8986,115 @@ msgstr "" msgid "Select a tag to remove: " msgstr "" -#: ../../Zotlabs/Module/Service_limits.php:23 -msgid "No service class restrictions found." -msgstr "" - -#: ../../Zotlabs/Module/Impel.php:43 ../../include/bbcode.php:343 -msgid "webpage" -msgstr "" - -#: ../../Zotlabs/Module/Impel.php:48 ../../include/bbcode.php:349 -msgid "block" -msgstr "" - -#: ../../Zotlabs/Module/Impel.php:53 ../../include/bbcode.php:346 -msgid "layout" -msgstr "" - -#: ../../Zotlabs/Module/Impel.php:60 ../../include/bbcode.php:352 -msgid "menu" -msgstr "" - -#: ../../Zotlabs/Module/Impel.php:185 +#: ../../Zotlabs/Module/Import.php:150 #, php-format -msgid "%s element installed" +msgid "Your service plan only allows %d channels." msgstr "" -#: ../../Zotlabs/Module/Impel.php:188 -#, php-format -msgid "%s element installation failed" +#: ../../Zotlabs/Module/Import.php:180 +msgid "No channel. Import failed." msgstr "" -#: ../../Zotlabs/Module/Lostpass.php:19 -msgid "No valid account found." +#: ../../Zotlabs/Module/Import.php:540 +msgid "Import completed." msgstr "" -#: ../../Zotlabs/Module/Lostpass.php:33 -msgid "Password reset request issued. Check your email." +#: ../../Zotlabs/Module/Import.php:570 +msgid "You must be logged in to use this feature." msgstr "" -#: ../../Zotlabs/Module/Lostpass.php:39 ../../Zotlabs/Module/Lostpass.php:108 -#, php-format -msgid "Site Member (%s)" +#: ../../Zotlabs/Module/Import.php:575 +msgid "Import Channel" msgstr "" -#: ../../Zotlabs/Module/Lostpass.php:44 ../../Zotlabs/Module/Lostpass.php:49 -#, php-format -msgid "Password reset requested at %s" -msgstr "" - -#: ../../Zotlabs/Module/Lostpass.php:68 +#: ../../Zotlabs/Module/Import.php:576 msgid "" -"Request could not be verified. (You may have previously submitted it.) " -"Password reset failed." +"Use this form to import an existing channel from a different server. You may " +"retrieve the channel identity from the old server via the network or provide " +"an export file." msgstr "" -#: ../../Zotlabs/Module/Lostpass.php:92 -msgid "Your password has been reset as requested." +#: ../../Zotlabs/Module/Import.php:578 +msgid "Or provide the old server details" msgstr "" -#: ../../Zotlabs/Module/Lostpass.php:93 -msgid "Your new password is" +#: ../../Zotlabs/Module/Import.php:579 +msgid "Your old identity address (xyz@example.com)" msgstr "" -#: ../../Zotlabs/Module/Lostpass.php:94 -msgid "Save or copy your new password - and then" +#: ../../Zotlabs/Module/Import.php:580 +msgid "Your old login email address" msgstr "" -#: ../../Zotlabs/Module/Lostpass.php:95 -msgid "click here to login" +#: ../../Zotlabs/Module/Import.php:581 +msgid "Your old login password" msgstr "" -#: ../../Zotlabs/Module/Lostpass.php:96 +#: ../../Zotlabs/Module/Import.php:582 +msgid "Import a few months of posts if possible (limited by available memory" +msgstr "" + +#: ../../Zotlabs/Module/Import.php:584 msgid "" -"Your password may be changed from the Settings page after " -"successful login." +"For either option, please choose whether to make this hub your new primary " +"address, or whether your old location should continue this role. You will be " +"able to post from either location, but only one can be marked as the primary " +"location for files, photos, and media." msgstr "" -#: ../../Zotlabs/Module/Lostpass.php:117 -#, php-format -msgid "Your password has changed at %s" +#: ../../Zotlabs/Module/Import.php:586 +msgid "Make this hub my primary location" msgstr "" -#: ../../Zotlabs/Module/Lostpass.php:130 -msgid "Forgot your Password?" +#: ../../Zotlabs/Module/Import.php:587 +msgid "Move this channel (disable all previous locations)" msgstr "" -#: ../../Zotlabs/Module/Lostpass.php:131 +#: ../../Zotlabs/Module/Import.php:588 +msgid "Use this channel nickname instead of the one provided" +msgstr "" + +#: ../../Zotlabs/Module/Import.php:588 msgid "" -"Enter your email address and submit to have your password reset. Then check " -"your email for further instructions." +"Leave blank to keep your existing channel nickname. You will be randomly " +"assigned a similar nickname if either name is already allocated on this site." +msgstr "" + +#: ../../Zotlabs/Module/Import.php:590 +msgid "" +"This process may take several minutes to complete. Please submit the form " +"only once and leave this page open until finished." +msgstr "" + +#: ../../Zotlabs/Module/Sites.php:12 +msgid "" +"This page provides information about related projects and websites that are " +"currently known to this system. These are a small fraction of the thousands " +"of websites and dozens of projects and providers which make up the fediverse." +msgstr "" + +#: ../../Zotlabs/Module/Sites.php:23 +msgid "free" +msgstr "" + +#: ../../Zotlabs/Module/Sites.php:25 +msgid "subscription" +msgstr "" + +#: ../../Zotlabs/Module/Sites.php:27 +msgid "tiered service plans" +msgstr "" + +#: ../../Zotlabs/Module/Sites.php:34 +msgid "Register (requires approval)" +msgstr "" + +#: ../../Zotlabs/Module/Sites.php:74 +msgid "Project" +msgstr "" + +#: ../../Zotlabs/Module/Sites.php:82 +msgid "Access type" msgstr "" #: ../../Zotlabs/Module/Xchan.php:10 @@ -9056,1259 +9105,1248 @@ msgstr "" msgid "Lookup xchan beginning with (or webbie): " msgstr "" -#: ../../Zotlabs/Module/Channel.php:148 +#: ../../Zotlabs/Module/Categories.php:29 +msgid "This app allows you to add categories to posts and events." +msgstr "" + +#: ../../Zotlabs/Module/Zotfinger.php:23 +msgid "Zotfinger Diagnostic" +msgstr "" + +#: ../../Zotlabs/Module/Zotfinger.php:24 +msgid "Lookup URL" +msgstr "" + +#: ../../Zotlabs/Module/Photomap.php:12 +msgid "" +"This app provides a displayable map when viewing detail of photos that " +"contain location information." +msgstr "" + +#: ../../Zotlabs/Module/Photomap.php:20 +msgid "This app is currently installed." +msgstr "" + +#: ../../Zotlabs/Module/Viewconnections.php:62 +msgid "No connections." +msgstr "" + +#: ../../Zotlabs/Module/Viewconnections.php:80 #, php-format -msgid "This is the home page of %s." +msgid "Visit %1$s's profile [%2$s]" msgstr "" -#: ../../Zotlabs/Module/Channel.php:208 -msgid "Insufficient permissions. Request redirected to profile page." +#: ../../Zotlabs/Module/Viewconnections.php:109 +msgid "View Connections" msgstr "" -#: ../../Zotlabs/Module/Channel.php:585 +#: ../../Zotlabs/Module/Suggestions.php:39 +msgid "" +"This app (when installed) displays a small number of friend suggestions on " +"selected pages or you can run the app to display a full list of channel " +"suggestions." +msgstr "" + +#: ../../Zotlabs/Module/Clients.php:14 +msgid "" +"This app allows you to authorize mobile apps using OAuth and OpenID to " +"access your channel." +msgstr "" + +#: ../../Zotlabs/Module/Superblock.php:81 +msgid "Added by Superblock" +msgstr "" + +#: ../../Zotlabs/Module/Superblock.php:181 +msgid "superblock settings updated" +msgstr "" + +#: ../../Zotlabs/Module/Superblock.php:212 +msgid "Blocked channels" +msgstr "" + +#: ../../Zotlabs/Module/Superblock.php:214 +msgid "No channels currently blocked" +msgstr "" + +#: ../../Zotlabs/Module/Superblock.php:229 +msgid "Blocked servers" +msgstr "" + +#: ../../Zotlabs/Module/Superblock.php:231 +msgid "No servers currently blocked" +msgstr "" + +#: ../../Zotlabs/Module/Superblock.php:237 +#: ../../Zotlabs/Widget/Settings_menu.php:58 +msgid "Manage Blocks" +msgstr "" + +#: ../../Zotlabs/Module/Vlists.php:14 +msgid "" +"This app creates dynamic access lists corresponding to [1] all connections, " +"[2] all ActivityPub protocol connections, and [3] all Zot/6 protocol " +"connections. These additional selections will be found within the " +"Permissions setting tool." +msgstr "" + +#: ../../Zotlabs/Module/Vlists.php:21 +msgid "This app is installed. " +msgstr "" + +#: ../../Zotlabs/Module/Content_filter.php:25 +msgid "Content Filter settings updated." +msgstr "" + +#: ../../Zotlabs/Module/Content_filter.php:36 +msgid "" +"This app (when installed) allows you to filter incoming content from all " +"sources or from specific connections. The filtering may be based on words, " +"tags, regular expressions, or language" +msgstr "" + +#: ../../Zotlabs/Module/Content_filter.php:44 +msgid "" +"The settings on this page apply to all incoming content. To edit the " +"settings for individual connetions, see the similar settings on the " +"Connection Edit page for that connection." +msgstr "" + +#: ../../Zotlabs/Module/Content_filter.php:53 +#: ../../Zotlabs/Module/Content_filter.php:61 +msgid "" +"words one per line or #tags, $categories, /patterns/, lang=xx, lang!=xx - " +"leave blank to import all posts" +msgstr "" + +#: ../../Zotlabs/Module/Content_filter.php:66 +msgid "Content Filter Settings" +msgstr "" + +#: ../../Zotlabs/Module/Future.php:13 +msgid "" +"This app allows you to set an optional publish date/time for posts, which " +"may be in the future. This must be at least ten minutes into the future to " +"initiate delayed publishing. The posts will be published automatically after " +"that time has passed. Once installed, a new button will appear in the post " +"editor to set the date/time." +msgstr "" + +#: ../../Zotlabs/Module/Secrets.php:13 +msgid "" +"This app allows you to protect messages with a secret passphrase. This only " +"works across selected platforms." +msgstr "" + +#: ../../Zotlabs/Module/Secrets.php:21 +msgid "" +"This app is installed. A button to encrypt content may be found in the post " +"editor." +msgstr "" + +#: ../../Zotlabs/Module/Markup.php:14 +msgid "" +"This app adds editor buttons for bold, italic, underline, quote, and " +"possibly other common richtext constructs." +msgstr "" + +#: ../../Zotlabs/Storage/Browser.php:113 ../../Zotlabs/Storage/Browser.php:306 +msgid "parent" +msgstr "" + +#: ../../Zotlabs/Storage/Browser.php:144 +msgid "Principal" +msgstr "" + +#: ../../Zotlabs/Storage/Browser.php:147 +msgid "Addressbook" +msgstr "" + +#: ../../Zotlabs/Storage/Browser.php:153 +msgid "Schedule Inbox" +msgstr "" + +#: ../../Zotlabs/Storage/Browser.php:156 +msgid "Schedule Outbox" +msgstr "" + +#: ../../Zotlabs/Storage/Browser.php:290 +msgid "Total" +msgstr "" + +#: ../../Zotlabs/Storage/Browser.php:292 +msgid "Shared" +msgstr "" + +#: ../../Zotlabs/Storage/Browser.php:294 +msgid "Add Files" +msgstr "" + +#: ../../Zotlabs/Storage/Browser.php:303 +msgid "Type" +msgstr "" + +#: ../../Zotlabs/Storage/Browser.php:381 #, php-format -msgid "This post was published on the home page of %s." +msgid "You are using %1$s of your available file storage." msgstr "" -#: ../../Zotlabs/Module/Oexchange.php:27 -msgid "Unable to find your hub." -msgstr "" - -#: ../../Zotlabs/Module/Oexchange.php:41 -msgid "Post successful." -msgstr "" - -#: ../../Zotlabs/Module/Search.php:227 +#: ../../Zotlabs/Storage/Browser.php:385 #, php-format -msgid "Items tagged with: %s" +msgid "You are using %1$s of %2$s available file storage. (%3$s%)" msgstr "" -#: ../../Zotlabs/Module/Search.php:229 -#, php-format -msgid "Search results for: %s" +#: ../../Zotlabs/Storage/Browser.php:396 +msgid "WARNING:" msgstr "" -#: ../../Zotlabs/Module/Thing.php:133 -msgid "Thing updated" +#: ../../Zotlabs/Storage/Browser.php:408 +msgid "Create new folder" msgstr "" -#: ../../Zotlabs/Module/Thing.php:191 -msgid "Object store: failed" +#: ../../Zotlabs/Storage/Browser.php:410 +msgid "Upload file" msgstr "" -#: ../../Zotlabs/Module/Thing.php:195 -msgid "Thing added" -msgstr "" - -#: ../../Zotlabs/Module/Thing.php:221 -#, php-format -msgid "OBJ: %1$s %2$s %3$s" -msgstr "" - -#: ../../Zotlabs/Module/Thing.php:284 -msgid "Show Thing" -msgstr "" - -#: ../../Zotlabs/Module/Thing.php:291 -msgid "item not found." -msgstr "" - -#: ../../Zotlabs/Module/Thing.php:324 -msgid "Edit Thing" -msgstr "" - -#: ../../Zotlabs/Module/Thing.php:326 ../../Zotlabs/Module/Thing.php:383 -msgid "Select a profile" -msgstr "" - -#: ../../Zotlabs/Module/Thing.php:330 ../../Zotlabs/Module/Thing.php:386 -msgid "Post an activity" -msgstr "" - -#: ../../Zotlabs/Module/Thing.php:330 ../../Zotlabs/Module/Thing.php:386 -msgid "Only sends to viewers of the applicable profile" -msgstr "" - -#: ../../Zotlabs/Module/Thing.php:332 ../../Zotlabs/Module/Thing.php:388 -msgid "Name of thing e.g. something" -msgstr "" - -#: ../../Zotlabs/Module/Thing.php:334 ../../Zotlabs/Module/Thing.php:389 -msgid "URL of thing (optional)" -msgstr "" - -#: ../../Zotlabs/Module/Thing.php:336 ../../Zotlabs/Module/Thing.php:390 -msgid "URL for photo of thing (optional)" -msgstr "" - -#: ../../Zotlabs/Module/Thing.php:381 -msgid "Add Thing to your Profile" +#: ../../Zotlabs/Storage/Browser.php:423 +msgid "Drop files here to immediately upload" msgstr "" #: ../../Zotlabs/Update/_1239.php:23 msgid "Added by superblock" msgstr "" -#: ../../Zotlabs/Lib/Markdown.php:203 ../../include/bbcode.php:570 +#: ../../Zotlabs/Widget/Admin.php:23 +msgid "Site icon/logo" +msgstr "" + +#: ../../Zotlabs/Widget/Admin.php:24 +msgid "Site photo" +msgstr "" + +#: ../../Zotlabs/Widget/Admin.php:25 ../../Zotlabs/Widget/Admin.php:62 +msgid "Member registrations waiting for confirmation" +msgstr "" + +#: ../../Zotlabs/Widget/Admin.php:31 +msgid "Inspect queue" +msgstr "" + +#: ../../Zotlabs/Widget/Admin.php:33 +msgid "DB updates" +msgstr "" + +#: ../../Zotlabs/Widget/Admin.php:57 ../../include/nav.php:180 +msgid "Admin" +msgstr "" + +#: ../../Zotlabs/Widget/Admin.php:58 +msgid "Addon Features" +msgstr "" + +#: ../../Zotlabs/Widget/Appcategories.php:46 ../../Zotlabs/Widget/Filer.php:31 +#: ../../Zotlabs/Widget/Categories.php:78 +#: ../../Zotlabs/Widget/Categories.php:122 +#: ../../Zotlabs/Widget/Categories.php:169 +msgid "Everything" +msgstr "" + +#: ../../Zotlabs/Widget/Appstore.php:11 +msgid "App Collections" +msgstr "" + +#: ../../Zotlabs/Widget/Appstore.php:13 +msgid "Installed apps" +msgstr "" + +#: ../../Zotlabs/Widget/Archive.php:43 +msgid "Archives" +msgstr "" + +#: ../../Zotlabs/Widget/Bookmarkedchats.php:24 +msgid "Bookmarked Chatrooms" +msgstr "" + +#: ../../Zotlabs/Widget/Chatroom_list.php:20 +msgid "Overview" +msgstr "" + +#: ../../Zotlabs/Widget/Chatroom_members.php:11 +msgid "Chat Members" +msgstr "" + +#: ../../Zotlabs/Widget/Cover_photo.php:85 +msgid "Click to show more" +msgstr "" + +#: ../../Zotlabs/Widget/Findpeople.php:18 #, php-format -msgid "%1$s wrote the following %2$s %3$s" -msgstr "" - -#: ../../Zotlabs/Lib/Libzotdir.php:165 -msgid "Directory Options" -msgstr "" - -#: ../../Zotlabs/Lib/Libzotdir.php:167 ../../include/nav.php:95 -msgid "Safe Mode" -msgstr "" - -#: ../../Zotlabs/Lib/Libzotdir.php:168 -msgid "Public Groups Only" -msgstr "" - -#: ../../Zotlabs/Lib/Libzotdir.php:169 -msgid "Collections Only" -msgstr "" - -#: ../../Zotlabs/Lib/Libzotdir.php:171 -msgid "This Website Only" -msgstr "" - -#: ../../Zotlabs/Lib/AccessList.php:28 -msgid "" -"A deleted list with this name was revived. Existing item permissions " -"may apply to this list and any future members. If this is " -"not what you intended, please create another list with a different name." -msgstr "" - -#: ../../Zotlabs/Lib/AccessList.php:285 -msgid "Add new connections to this access list" -msgstr "" - -#: ../../Zotlabs/Lib/AccessList.php:310 -msgid "edit" -msgstr "" - -#: ../../Zotlabs/Lib/AccessList.php:331 -msgid "Edit list" -msgstr "" - -#: ../../Zotlabs/Lib/AccessList.php:332 -msgid "Create new list" -msgstr "" - -#: ../../Zotlabs/Lib/AccessList.php:333 -msgid "Channels not in any access list" -msgstr "" - -#: ../../Zotlabs/Lib/Libsync.php:891 -#, php-format -msgid "Unable to verify site signature for %s" -msgstr "" - -#: ../../Zotlabs/Lib/DB_Upgrade.php:67 -msgid "Source code of failed update: " -msgstr "" - -#: ../../Zotlabs/Lib/DB_Upgrade.php:88 -#, php-format -msgid "Update Error at %s" -msgstr "" - -#: ../../Zotlabs/Lib/DB_Upgrade.php:94 -#, php-format -msgid "Update %s failed. See error logs." -msgstr "" - -#: ../../Zotlabs/Lib/Libprofile.php:35 -msgid "Requested channel is not available." -msgstr "" - -#: ../../Zotlabs/Lib/Libprofile.php:190 -msgid "Create New Profile" -msgstr "" - -#: ../../Zotlabs/Lib/Libprofile.php:193 ../../include/nav.php:110 -msgid "Edit Profile" -msgstr "" - -#: ../../Zotlabs/Lib/Libprofile.php:211 -msgid "Visible to everybody" -msgstr "" - -#: ../../Zotlabs/Lib/Libprofile.php:289 ../../Zotlabs/Lib/Libprofile.php:445 -msgid "Gender:" -msgstr "" - -#: ../../Zotlabs/Lib/Libprofile.php:290 ../../Zotlabs/Lib/Libprofile.php:493 -msgid "Status:" -msgstr "" - -#: ../../Zotlabs/Lib/Libprofile.php:291 ../../Zotlabs/Lib/Libprofile.php:519 -msgid "Homepage:" -msgstr "" - -#: ../../Zotlabs/Lib/Libprofile.php:292 ../../Zotlabs/Lib/Libprofile.php:517 -msgid "Pronouns:" -msgstr "" - -#: ../../Zotlabs/Lib/Libprofile.php:355 -msgid "Change your profile photo" -msgstr "" - -#: ../../Zotlabs/Lib/Libprofile.php:386 -msgid "Trans" -msgstr "" - -#: ../../Zotlabs/Lib/Libprofile.php:388 -msgid "Inter" -msgstr "" - -#: ../../Zotlabs/Lib/Libprofile.php:404 -msgid "She" -msgstr "" - -#: ../../Zotlabs/Lib/Libprofile.php:406 -msgid "Him" -msgstr "" - -#: ../../Zotlabs/Lib/Libprofile.php:408 -msgid "Them" -msgstr "" - -#: ../../Zotlabs/Lib/Libprofile.php:443 -msgid "Full Name:" -msgstr "" - -#: ../../Zotlabs/Lib/Libprofile.php:478 -msgid "j F, Y" -msgstr "" - -#: ../../Zotlabs/Lib/Libprofile.php:479 -msgid "j F" -msgstr "" - -#: ../../Zotlabs/Lib/Libprofile.php:486 -msgid "Birthday:" -msgstr "" - -#: ../../Zotlabs/Lib/Libprofile.php:499 -#, php-format -msgid "for %1$d %2$s" -msgstr "" - -#: ../../Zotlabs/Lib/Libprofile.php:511 -msgid "Tags:" -msgstr "" - -#: ../../Zotlabs/Lib/Libprofile.php:515 -msgid "Sexual Preference:" -msgstr "" - -#: ../../Zotlabs/Lib/Libprofile.php:523 -msgid "Political Views:" -msgstr "" - -#: ../../Zotlabs/Lib/Libprofile.php:525 -msgid "Religion:" -msgstr "" - -#: ../../Zotlabs/Lib/Libprofile.php:529 -msgid "Hobbies/Interests:" -msgstr "" - -#: ../../Zotlabs/Lib/Libprofile.php:531 -msgid "Likes:" -msgstr "" - -#: ../../Zotlabs/Lib/Libprofile.php:533 -msgid "Dislikes:" -msgstr "" - -#: ../../Zotlabs/Lib/Libprofile.php:535 -msgid "Contact information and Social Networks:" -msgstr "" - -#: ../../Zotlabs/Lib/Libprofile.php:537 -msgid "My other channels:" -msgstr "" - -#: ../../Zotlabs/Lib/Libprofile.php:539 -msgid "Musical interests:" -msgstr "" - -#: ../../Zotlabs/Lib/Libprofile.php:541 -msgid "Books, literature:" -msgstr "" - -#: ../../Zotlabs/Lib/Libprofile.php:543 -msgid "Television:" -msgstr "" - -#: ../../Zotlabs/Lib/Libprofile.php:545 -msgid "Film/dance/culture/entertainment:" -msgstr "" - -#: ../../Zotlabs/Lib/Libprofile.php:547 -msgid "Love/Romance:" -msgstr "" - -#: ../../Zotlabs/Lib/Libprofile.php:549 -msgid "Work/employment:" -msgstr "" - -#: ../../Zotlabs/Lib/Libprofile.php:551 -msgid "School/education:" -msgstr "" - -#: ../../Zotlabs/Lib/Libprofile.php:574 -msgid "Like this thing" -msgstr "" - -#: ../../Zotlabs/Lib/Connect.php:48 ../../Zotlabs/Lib/Connect.php:144 -msgid "Channel is blocked on this site." -msgstr "" - -#: ../../Zotlabs/Lib/Connect.php:53 -msgid "Channel location missing." -msgstr "" - -#: ../../Zotlabs/Lib/Connect.php:105 -msgid "Remote channel or protocol unavailable." -msgstr "" - -#: ../../Zotlabs/Lib/Connect.php:138 -msgid "Channel discovery failed." -msgstr "" - -#: ../../Zotlabs/Lib/Connect.php:153 -msgid "Protocol not supported" -msgstr "" - -#: ../../Zotlabs/Lib/Connect.php:166 -msgid "Cannot connect to yourself." -msgstr "" - -#: ../../Zotlabs/Lib/Connect.php:244 -msgid "error saving data" -msgstr "" - -#: ../../Zotlabs/Lib/Permcat.php:73 -msgctxt "permcat" -msgid "default" -msgstr "" - -#: ../../Zotlabs/Lib/Permcat.php:124 -msgctxt "permcat" -msgid "follower" -msgstr "" - -#: ../../Zotlabs/Lib/Permcat.php:128 -msgctxt "permcat" -msgid "contributor" -msgstr "" - -#: ../../Zotlabs/Lib/Permcat.php:132 -msgctxt "permcat" -msgid "publisher" -msgstr "" - -#: ../../Zotlabs/Lib/Activity.php:2213 -#, php-format -msgid "Likes %1$s's %2$s" -msgstr "" - -#: ../../Zotlabs/Lib/Activity.php:2216 -#, php-format -msgid "Doesn't like %1$s's %2$s" -msgstr "" - -#: ../../Zotlabs/Lib/Activity.php:2222 -#, php-format -msgid "Will attend %s's event" -msgstr "" - -#: ../../Zotlabs/Lib/Activity.php:2225 -#, php-format -msgid "Will not attend %s's event" -msgstr "" - -#: ../../Zotlabs/Lib/Activity.php:2228 -#, php-format -msgid "May attend %s's event" -msgstr "" - -#: ../../Zotlabs/Lib/Activity.php:2231 -#, php-format -msgid "May not attend %s's event" -msgstr "" - -#: ../../Zotlabs/Lib/Activity.php:2656 ../../include/text.php:2842 -#, php-format -msgid "%1$s (%2$s)" -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:66 -msgid "$Projectname Notification" -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:67 -msgid "$projectname" -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:69 -msgid "Thank You," -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:71 -#, php-format -msgid "%s Administrator" -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:72 -#, php-format -msgid "This email was sent by %1$s at %2$s." -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:73 -#, php-format -msgid "" -"To stop receiving these messages, please adjust your Notification Settings " -"at %s" -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:74 -#, php-format -msgid "To stop receiving these messages, please adjust your %s." -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:74 -msgid "Notification Settings" -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:129 -#, php-format -msgid "%s " -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:133 -#, php-format -msgid "[$Projectname:Notify] New mail received at %s" -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:136 -#, php-format -msgid "%1$s sent you a new private message at %2$s." -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:137 -#, php-format -msgid "%1$s sent you %2$s." -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:137 ../../Zotlabs/Lib/Enotify.php:141 -msgid "a private message" -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:140 -#, php-format -msgid "%1$s replied to a private message at %2$s." -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:141 -#, php-format -msgid "%1$s replied to %2$s." -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:143 -#, php-format -msgid "Please visit %s to view and/or reply to your private messages." -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:157 -msgid "commented on" -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:168 -msgid "liked" -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:171 -msgid "disliked" -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:214 -#, php-format -msgid "%1$s %2$s [zrl=%3$s]a %4$s[/zrl]" -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:222 -#, php-format -msgid "%1$s %2$s [zrl=%3$s]%4$s's %5$s[/zrl]" -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:231 -#, php-format -msgid "%1$s %2$s [zrl=%3$s]your %4$s[/zrl]" -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:243 -#, php-format -msgid "[$Projectname:Notify] Moderated Comment to conversation #%1$d by %2$s" -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:247 -#, php-format -msgid "[$Projectname:Notify] Comment to conversation #%1$d by %2$s" -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:248 -#, php-format -msgid "%1$s commented on an item/conversation you have been following." -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:252 -msgid "(Moderated)" -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:255 ../../Zotlabs/Lib/Enotify.php:336 -#: ../../Zotlabs/Lib/Enotify.php:362 ../../Zotlabs/Lib/Enotify.php:392 -#: ../../Zotlabs/Lib/Enotify.php:409 ../../Zotlabs/Lib/Enotify.php:422 -#, php-format -msgid "Please visit %s to view and/or reply to the conversation." -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:259 ../../Zotlabs/Lib/Enotify.php:260 -#, php-format -msgid "Please visit %s to approve or reject this comment." -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:318 -#, php-format -msgid "%1$s liked [zrl=%2$s]your %3$s[/zrl]" -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:332 -#, php-format -msgid "[$Projectname:Notify] Like received to conversation #%1$d by %2$s" -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:333 -#, php-format -msgid "%1$s liked an item/conversation you created." -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:344 -#, php-format -msgid "[$Projectname:Notify] %s posted to your profile wall" -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:350 -#, php-format -msgid "%1$s posted to your profile wall at %2$s" -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:352 -#, php-format -msgid "%1$s posted to [zrl=%2$s]your wall[/zrl]" -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:358 ../../Zotlabs/Lib/Enotify.php:359 -msgid " - " -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:358 ../../Zotlabs/Lib/Enotify.php:359 -msgid "Moderated" -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:367 ../../Zotlabs/Lib/Enotify.php:368 -#, php-format -msgid "Please visit %s to approve or reject this post." -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:386 -#, php-format -msgid "[$Projectname:Notify] %s tagged you" -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:387 -#, php-format -msgid "%1$s tagged you at %2$s" -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:388 -#, php-format -msgid "%1$s [zrl=%2$s]tagged you[/zrl]." -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:399 -#, php-format -msgid "[$Projectname:Notify] %1$s poked you" -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:400 -#, php-format -msgid "%1$s poked you at %2$s" -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:401 -#, php-format -msgid "%1$s [zrl=%2$s]poked you[/zrl]." -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:416 -#, php-format -msgid "[$Projectname:Notify] %s tagged your post" -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:417 -#, php-format -msgid "%1$s tagged your post at %2$s" -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:418 -#, php-format -msgid "%1$s tagged [zrl=%2$s]your post[/zrl]" -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:429 -msgid "[$Projectname:Notify] Introduction received" -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:430 -#, php-format -msgid "You've received an new connection request from '%1$s' at %2$s" -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:431 -#, php-format -msgid "You've received [zrl=%1$s]a new connection request[/zrl] from %2$s." -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:434 ../../Zotlabs/Lib/Enotify.php:452 -#, php-format -msgid "You may visit their profile at %s" -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:436 -#, php-format -msgid "Please visit %s to approve or reject the connection request." -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:443 -msgid "[$Projectname:Notify] Friend suggestion received" -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:444 -#, php-format -msgid "You've received a friend suggestion from '%1$s' at %2$s" -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:445 -#, php-format -msgid "You've received [zrl=%1$s]a friend suggestion[/zrl] for %2$s from %3$s." -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:450 -msgid "Name:" -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:451 -msgid "Photo:" -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:454 -#, php-format -msgid "Please visit %s to approve or reject the suggestion." -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:704 -msgid "[$Projectname:Notify]" -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:887 -msgid "created a new post" -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:888 -#, php-format -msgid "reacted to %s's conversation" -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:890 -#, php-format -msgid "shared %s's post" -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:894 -msgid "sent a direct message" -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:901 -#, php-format -msgid "edited a post dated %s" -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:905 -#, php-format -msgid "edited a comment dated %s" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:310 -msgid "Apps" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:312 -msgid "Virtual Lists" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:313 -msgid "Markup" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:314 ../../include/nav.php:476 -#: ../../include/features.php:136 -msgid "Articles" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:318 -msgid "Clients" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:319 -msgid "Site Admin" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:320 -msgid "Content Filter" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:322 -msgid "Report Bug" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:323 -msgid "View Bookmarks" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:327 -msgid "Expire Posts" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:328 -msgid "Future Posting" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:329 -msgid "Remote Diagnostics" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:332 -msgid "Channel Manager" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:334 -msgid "Stream" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:335 -msgid "Secrets" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:337 -msgid "Sites" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:340 ../../include/nav.php:503 -#: ../../include/conversation.php:2043 -msgid "Wiki" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:341 -msgid "Channel Home" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:344 -msgid "Photomap" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:347 -msgid "No Comment" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:349 ../../include/help.php:50 -#: ../../include/nav.php:167 ../../include/nav.php:289 -msgid "Help" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:350 -msgid "Mail" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:353 -msgid "Chat" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:356 -msgid "Probe" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:357 -msgid "Suggest" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:358 -msgid "Random Channel" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:359 -msgid "Invite" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:360 -msgid "Features" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:361 -msgid "Language" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:362 -msgid "Post" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:364 -msgid "Profile Photo" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:366 -msgid "Profiles" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:369 -msgid "Order Apps" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:370 -msgid "CalDAV" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:371 -msgid "CardDAV" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:374 -msgid "Guest Access" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:376 -msgid "OAuth Apps Manager" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:377 -msgid "OAuth2 Apps Manager" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:378 -msgid "PDL Editor" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:380 -msgid "Premium Channel" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:382 -msgid "My Chatrooms" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:574 -msgid "Purchase" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:579 -msgid "Undelete" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:589 -msgid "Add to app-tray" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:590 -msgid "Remove from app-tray" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:591 -msgid "Pin to navbar" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:592 -msgid "Unpin from navbar" -msgstr "" - -#: ../../Zotlabs/Lib/Chatroom.php:25 -msgid "Missing room name" -msgstr "" - -#: ../../Zotlabs/Lib/Chatroom.php:34 -msgid "Duplicate room name" -msgstr "" - -#: ../../Zotlabs/Lib/Chatroom.php:84 ../../Zotlabs/Lib/Chatroom.php:92 -msgid "Invalid room specifier." -msgstr "" - -#: ../../Zotlabs/Lib/Chatroom.php:124 -msgid "Room not found." -msgstr "" - -#: ../../Zotlabs/Lib/Chatroom.php:145 -msgid "Room is full" -msgstr "" - -#: ../../Zotlabs/Lib/Libzot.php:718 -msgid "Unable to verify channel signature" -msgstr "" - -#: ../../Zotlabs/Lib/PermissionDescription.php:34 -#: ../../include/acl_selectors.php:34 -msgid "Visible to your default audience" -msgstr "" - -#: ../../Zotlabs/Lib/PermissionDescription.php:107 -#: ../../include/acl_selectors.php:121 -msgid "Only me" -msgstr "" - -#: ../../Zotlabs/Lib/PermissionDescription.php:108 -msgid "Public" -msgstr "" - -#: ../../Zotlabs/Lib/PermissionDescription.php:109 -msgid "Anybody in the $Projectname network" -msgstr "" - -#: ../../Zotlabs/Lib/PermissionDescription.php:110 -#, php-format -msgid "Any account on %s" -msgstr "" - -#: ../../Zotlabs/Lib/PermissionDescription.php:111 -msgid "Any of my connections" -msgstr "" - -#: ../../Zotlabs/Lib/PermissionDescription.php:112 -msgid "Only connections I specifically allow" -msgstr "" - -#: ../../Zotlabs/Lib/PermissionDescription.php:113 -msgid "Anybody authenticated (could include visitors from other networks)" -msgstr "" - -#: ../../Zotlabs/Lib/PermissionDescription.php:114 -msgid "Any connections including those who haven't yet been approved" -msgstr "" - -#: ../../Zotlabs/Lib/PermissionDescription.php:150 -msgid "" -"This is your default setting for the audience of your normal stream, and " -"posts." -msgstr "" - -#: ../../Zotlabs/Lib/PermissionDescription.php:151 -msgid "" -"This is your default setting for who can view your default channel profile" -msgstr "" - -#: ../../Zotlabs/Lib/PermissionDescription.php:152 -msgid "This is your default setting for who can view your connections" -msgstr "" - -#: ../../Zotlabs/Lib/PermissionDescription.php:153 -msgid "" -"This is your default setting for who can view your file storage and photos" -msgstr "" - -#: ../../Zotlabs/Lib/PermissionDescription.php:154 -msgid "This is your default setting for the audience of your webpages" -msgstr "" - -#: ../../Zotlabs/Lib/ThreadItem.php:113 ../../include/conversation.php:705 -msgid "Private Message" -msgstr "" - -#: ../../Zotlabs/Lib/ThreadItem.php:164 ../../include/conversation.php:695 -msgid "Select" -msgstr "" - -#: ../../Zotlabs/Lib/ThreadItem.php:191 -msgid "I will attend" -msgstr "" - -#: ../../Zotlabs/Lib/ThreadItem.php:191 -msgid "I will not attend" -msgstr "" - -#: ../../Zotlabs/Lib/ThreadItem.php:191 -msgid "I might attend" -msgstr "" - -#: ../../Zotlabs/Lib/ThreadItem.php:259 ../../include/conversation.php:712 -msgid "Message signature validated" -msgstr "" - -#: ../../Zotlabs/Lib/ThreadItem.php:260 ../../include/conversation.php:713 -msgid "Message signature incorrect" -msgstr "" - -#: ../../Zotlabs/Lib/ThreadItem.php:266 -msgid "Add Tag" -msgstr "" - -#: ../../Zotlabs/Lib/ThreadItem.php:284 ../../include/taxonomy.php:589 -msgid "like" -msgstr "" - -#: ../../Zotlabs/Lib/ThreadItem.php:285 ../../include/taxonomy.php:590 -msgid "dislike" -msgstr "" - -#: ../../Zotlabs/Lib/ThreadItem.php:289 -msgid "Repeat This" -msgstr "" - -#: ../../Zotlabs/Lib/ThreadItem.php:290 -msgid "Share this" -msgstr "" - -#: ../../Zotlabs/Lib/ThreadItem.php:300 -msgid "Delivery Report" -msgstr "" - -#: ../../Zotlabs/Lib/ThreadItem.php:330 -#, php-format -msgid "%d comment" -msgid_plural "%d comments" +msgid "%d invitation available" +msgid_plural "%d invitations available" msgstr[0] "" msgstr[1] "" -#: ../../Zotlabs/Lib/ThreadItem.php:331 +#: ../../Zotlabs/Widget/Findpeople.php:26 +msgid "Find Channels" +msgstr "" + +#: ../../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:34 +msgid "Affiliated sites" +msgstr "" + +#: ../../Zotlabs/Widget/Findpeople.php:37 +msgid "Advanced example: name=fred and country=iceland" +msgstr "" + +#: ../../Zotlabs/Widget/Eventstools.php:13 +msgid "Events Tools" +msgstr "" + +#: ../../Zotlabs/Widget/Eventstools.php:14 +msgid "Export Calendar" +msgstr "" + +#: ../../Zotlabs/Widget/Eventstools.php:15 +msgid "Import Calendar" +msgstr "" + +#: ../../Zotlabs/Widget/Follow.php:26 #, php-format -msgid "%d unseen" +msgid "You have %1$.0f of %2$.0f allowed connections." msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:369 ../../Zotlabs/Lib/ThreadItem.php:370 +#: ../../Zotlabs/Widget/Follow.php:33 +msgid "Add New Connection" +msgstr "" + +#: ../../Zotlabs/Widget/Follow.php:34 +msgid "Enter channel address" +msgstr "" + +#: ../../Zotlabs/Widget/Follow.php:35 ../../Zotlabs/Widget/Sblock.php:18 +msgid "Examples: bob@example.com, https://example.com/barbara" +msgstr "" + +#: ../../Zotlabs/Widget/Settings_menu.php:38 +msgid "Account settings" +msgstr "" + +#: ../../Zotlabs/Widget/Settings_menu.php:44 +msgid "Channel settings" +msgstr "" + +#: ../../Zotlabs/Widget/Settings_menu.php:52 +msgid "Display settings" +msgstr "" + +#: ../../Zotlabs/Widget/Settings_menu.php:66 +msgid "Manage locations" +msgstr "" + +#: ../../Zotlabs/Widget/Settings_menu.php:73 +msgid "Export channel" +msgstr "" + +#: ../../Zotlabs/Widget/Settings_menu.php:80 +msgid "OAuth1 apps" +msgstr "" + +#: ../../Zotlabs/Widget/Settings_menu.php:88 +msgid "Client apps" +msgstr "" + +#: ../../Zotlabs/Widget/Hq_controls.php:14 +msgid "HQ Control Panel" +msgstr "" + +#: ../../Zotlabs/Widget/Hq_controls.php:17 +msgid "Create a new post" +msgstr "" + +#: ../../Zotlabs/Widget/Mailmenu.php:13 +msgid "Private Mail Menu" +msgstr "" + +#: ../../Zotlabs/Widget/Mailmenu.php:15 +msgid "Combined View" +msgstr "" + +#: ../../Zotlabs/Widget/Mailmenu.php:20 +msgid "Inbox" +msgstr "" + +#: ../../Zotlabs/Widget/Mailmenu.php:25 +msgid "Outbox" +msgstr "" + +#: ../../Zotlabs/Widget/Mailmenu.php:30 +msgid "New Message" +msgstr "" + +#: ../../Zotlabs/Widget/Photo.php:48 ../../Zotlabs/Widget/Photo_rand.php:58 +msgid "photo/image" +msgstr "" + +#: ../../Zotlabs/Widget/Rating.php:51 +msgid "Rating Tools" +msgstr "" + +#: ../../Zotlabs/Widget/Rating.php:55 ../../Zotlabs/Widget/Rating.php:57 +msgid "Rate Me" +msgstr "" + +#: ../../Zotlabs/Widget/Rating.php:60 +msgid "View Ratings" +msgstr "" + +#: ../../Zotlabs/Widget/Savedsearch.php:75 +msgid "Remove term" +msgstr "" + +#: ../../Zotlabs/Widget/Stream_order.php:96 +msgid "Commented Date" +msgstr "" + +#: ../../Zotlabs/Widget/Stream_order.php:100 +msgid "Order by last commented date" +msgstr "" + +#: ../../Zotlabs/Widget/Stream_order.php:103 +msgid "Posted Date" +msgstr "" + +#: ../../Zotlabs/Widget/Stream_order.php:107 +msgid "Order by last posted date" +msgstr "" + +#: ../../Zotlabs/Widget/Stream_order.php:110 +msgid "Date Unthreaded" +msgstr "" + +#: ../../Zotlabs/Widget/Stream_order.php:114 +msgid "Order unthreaded by date" +msgstr "" + +#: ../../Zotlabs/Widget/Suggestedchats.php:32 +msgid "Suggested Chatrooms" +msgstr "" + +#: ../../Zotlabs/Widget/Tagcloud.php:22 ../../include/taxonomy.php:322 +#: ../../include/taxonomy.php:459 ../../include/taxonomy.php:480 +msgid "Tags" +msgstr "" + +#: ../../Zotlabs/Widget/Common_friends.php:40 +msgid "Common Connections" +msgstr "" + +#: ../../Zotlabs/Widget/Common_friends.php:45 #, php-format -msgid "View %s's profile - %s" +msgid "View all %d common connections" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:373 -msgid "to" +#: ../../Zotlabs/Widget/Filer.php:28 +#: ../../Zotlabs/Widget/Activity_filter.php:231 ../../include/features.php:492 +msgid "Saved Folders" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:374 ../../include/conversation.php:773 -msgid "via" +#: ../../Zotlabs/Widget/Notifications.php:17 +msgid "New Stream Activity" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:375 -msgid "Wall-to-Wall" +#: ../../Zotlabs/Widget/Notifications.php:18 +msgid "New Stream Activity Notifications" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:376 -msgid "via Wall-To-Wall:" +#: ../../Zotlabs/Widget/Notifications.php:21 +msgid "View your stream activity" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:390 ../../include/conversation.php:776 +#: ../../Zotlabs/Widget/Notifications.php:24 +msgid "Mark all notifications read" +msgstr "" + +#: ../../Zotlabs/Widget/Notifications.php:27 +#: ../../Zotlabs/Widget/Notifications.php:46 +#: ../../Zotlabs/Widget/Notifications.php:138 +msgid "Show new posts only" +msgstr "" + +#: ../../Zotlabs/Widget/Notifications.php:28 +#: ../../Zotlabs/Widget/Notifications.php:47 +#: ../../Zotlabs/Widget/Notifications.php:108 +#: ../../Zotlabs/Widget/Notifications.php:139 +msgid "Filter by name" +msgstr "" + +#: ../../Zotlabs/Widget/Notifications.php:36 +msgid "New Home Activity" +msgstr "" + +#: ../../Zotlabs/Widget/Notifications.php:37 +msgid "New Home Activity Notifications" +msgstr "" + +#: ../../Zotlabs/Widget/Notifications.php:40 +msgid "View your home activity" +msgstr "" + +#: ../../Zotlabs/Widget/Notifications.php:43 +#: ../../Zotlabs/Widget/Notifications.php:135 +msgid "Mark all notifications seen" +msgstr "" + +#: ../../Zotlabs/Widget/Notifications.php:55 +msgid "New Events" +msgstr "" + +#: ../../Zotlabs/Widget/Notifications.php:56 +msgid "New Events Notifications" +msgstr "" + +#: ../../Zotlabs/Widget/Notifications.php:59 +msgid "View events" +msgstr "" + +#: ../../Zotlabs/Widget/Notifications.php:62 +msgid "Mark all events seen" +msgstr "" + +#: ../../Zotlabs/Widget/Notifications.php:71 +msgid "New Connections Notifications" +msgstr "" + +#: ../../Zotlabs/Widget/Notifications.php:74 +msgid "View all connections" +msgstr "" + +#: ../../Zotlabs/Widget/Notifications.php:82 +msgid "New Files" +msgstr "" + +#: ../../Zotlabs/Widget/Notifications.php:83 +msgid "New Files Notifications" +msgstr "" + +#: ../../Zotlabs/Widget/Notifications.php:90 +#: ../../Zotlabs/Widget/Notifications.php:91 +msgid "Notices" +msgstr "" + +#: ../../Zotlabs/Widget/Notifications.php:94 +msgid "View all notices" +msgstr "" + +#: ../../Zotlabs/Widget/Notifications.php:97 +msgid "Mark all notices seen" +msgstr "" + +#: ../../Zotlabs/Widget/Notifications.php:105 +#: ../../Zotlabs/Widget/Notifications.php:106 +#: ../../Zotlabs/Widget/Activity_filter.php:167 +#: ../../Zotlabs/Widget/Groups.php:107 +msgid "Groups" +msgstr "" + +#: ../../Zotlabs/Widget/Notifications.php:118 +msgid "New Registrations" +msgstr "" + +#: ../../Zotlabs/Widget/Notifications.php:119 +msgid "New Registrations Notifications" +msgstr "" + +#: ../../Zotlabs/Widget/Notifications.php:129 +msgid "Public Stream Notifications" +msgstr "" + +#: ../../Zotlabs/Widget/Notifications.php:132 +msgid "View the public stream" +msgstr "" + +#: ../../Zotlabs/Widget/Notifications.php:147 +msgid "Sorry, you have got no notifications at the moment" +msgstr "" + +#: ../../Zotlabs/Widget/Affinity.php:37 +msgid "Friend zoom in/out" +msgstr "" + +#: ../../Zotlabs/Widget/Suggestions.php:49 +msgid "Ignore/Hide" +msgstr "" + +#: ../../Zotlabs/Widget/Suggestions.php:54 +msgid "Suggestions" +msgstr "" + +#: ../../Zotlabs/Widget/Suggestions.php:55 +msgid "See more..." +msgstr "" + +#: ../../Zotlabs/Widget/Activity_filter.php:26 +msgid "Direct Messages" +msgstr "" + +#: ../../Zotlabs/Widget/Activity_filter.php:30 +msgid "Show direct (private) messages" +msgstr "" + +#: ../../Zotlabs/Widget/Activity_filter.php:39 +msgid "Personal Posts" +msgstr "" + +#: ../../Zotlabs/Widget/Activity_filter.php:43 +msgid "Show posts that mention or involve me" +msgstr "" + +#: ../../Zotlabs/Widget/Activity_filter.php:52 +msgid "Saved Posts" +msgstr "" + +#: ../../Zotlabs/Widget/Activity_filter.php:56 +msgid "Show posts that I have saved" +msgstr "" + +#: ../../Zotlabs/Widget/Activity_filter.php:71 +msgid "Show posts that include events" +msgstr "" + +#: ../../Zotlabs/Widget/Activity_filter.php:75 +msgid "Polls" +msgstr "" + +#: ../../Zotlabs/Widget/Activity_filter.php:79 +msgid "Show posts that include polls" +msgstr "" + +#: ../../Zotlabs/Widget/Activity_filter.php:100 +#: ../../Zotlabs/Widget/Activity_filter.php:130 #, php-format -msgid "from %s" +msgid "Show posts related to the %s access list" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:393 ../../include/conversation.php:779 +#: ../../Zotlabs/Widget/Activity_filter.php:140 +msgid "Show my access lists" +msgstr "" + +#: ../../Zotlabs/Widget/Activity_filter.php:158 +msgid "Show posts to this group" +msgstr "" + +#: ../../Zotlabs/Widget/Activity_filter.php:160 +msgid "New post" +msgstr "" + +#: ../../Zotlabs/Widget/Activity_filter.php:171 +msgid "Show groups" +msgstr "" + +#: ../../Zotlabs/Widget/Activity_filter.php:225 #, php-format -msgid "last edited: %s" +msgid "Show posts that I have filed to %s" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:394 ../../include/conversation.php:780 +#: ../../Zotlabs/Widget/Activity_filter.php:235 +msgid "Show filed post categories" +msgstr "" + +#: ../../Zotlabs/Widget/Activity_filter.php:255 #, php-format -msgid "Expires: %s" +msgid "Show posts with hashtag %s" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:403 -msgid "Attend" +#: ../../Zotlabs/Widget/Activity_filter.php:261 +msgid "Followed Hashtags" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:404 -msgid "Attendance Options" +#: ../../Zotlabs/Widget/Activity_filter.php:265 +msgid "Show followed hashtags" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:405 -msgid "Vote" +#: ../../Zotlabs/Widget/Activity_filter.php:303 +msgid "Remove active filter" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:406 -msgid "Voting Options" +#: ../../Zotlabs/Widget/Activity_filter.php:319 +msgid "Stream Filters" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:407 -msgid "Reply" +#: ../../Zotlabs/Widget/Activity.php:58 +msgctxt "widget" +msgid "Activity" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:432 ../../include/conversation.php:795 -msgid "Pinned post" +#: ../../Zotlabs/Widget/Site_projects.php:30 +msgid "Projects" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:434 ../../include/conversation.php:797 -#: ../../include/js_strings.php:38 -msgid "Unpin this post" +#: ../../Zotlabs/Widget/Site_projects.php:32 +msgid "All projects" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:434 ../../include/conversation.php:797 -#: ../../include/js_strings.php:37 -msgid "Pin this post" +#: ../../Zotlabs/Widget/Newmember.php:29 +msgid "Profile Creation" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:435 -msgid "Save Bookmarks" +#: ../../Zotlabs/Widget/Newmember.php:31 +msgid "Upload profile photo" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:436 -msgid "Add to Calendar" +#: ../../Zotlabs/Widget/Newmember.php:32 +msgid "Upload cover photo" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:465 ../../include/conversation.php:482 -msgid "This is an unsaved preview" +#: ../../Zotlabs/Widget/Newmember.php:33 ../../include/nav.php:110 +msgid "Edit your profile" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:549 ../../include/js_strings.php:7 +#: ../../Zotlabs/Widget/Newmember.php:36 +msgid "Find and Connect with others" +msgstr "" + +#: ../../Zotlabs/Widget/Newmember.php:38 +msgid "View the directory" +msgstr "" + +#: ../../Zotlabs/Widget/Newmember.php:39 +msgid "View friend suggestions" +msgstr "" + +#: ../../Zotlabs/Widget/Newmember.php:40 +msgid "Manage your connections" +msgstr "" + +#: ../../Zotlabs/Widget/Newmember.php:43 +msgid "Communicate" +msgstr "" + +#: ../../Zotlabs/Widget/Newmember.php:45 +msgid "View your channel homepage" +msgstr "" + +#: ../../Zotlabs/Widget/Newmember.php:46 +msgid "View your stream" +msgstr "" + +#: ../../Zotlabs/Widget/Newmember.php:62 +msgid "View public stream" +msgstr "" + +#: ../../Zotlabs/Widget/Newmember.php:66 ../../include/features.php:60 +msgid "New Member Links" +msgstr "" + +#: ../../Zotlabs/Widget/Sblock.php:16 +msgid "Block channel or site" +msgstr "" + +#: ../../Zotlabs/Widget/Sblock.php:17 +msgid "Enter channel address or URL" +msgstr "" + +#: ../../Zotlabs/Widget/Cdav.php:37 +msgid "Select Channel" +msgstr "" + +#: ../../Zotlabs/Widget/Cdav.php:42 +msgid "Read-write" +msgstr "" + +#: ../../Zotlabs/Widget/Cdav.php:43 +msgid "Read-only" +msgstr "" + +#: ../../Zotlabs/Widget/Cdav.php:127 +msgid "Channel Calendar" +msgstr "" + +#: ../../Zotlabs/Widget/Cdav.php:131 +msgid "Shared CalDAV Calendars" +msgstr "" + +#: ../../Zotlabs/Widget/Cdav.php:135 +msgid "Share this calendar" +msgstr "" + +#: ../../Zotlabs/Widget/Cdav.php:137 +msgid "Calendar name and color" +msgstr "" + +#: ../../Zotlabs/Widget/Cdav.php:139 +msgid "Create new CalDAV calendar" +msgstr "" + +#: ../../Zotlabs/Widget/Cdav.php:141 +msgid "Calendar Name" +msgstr "" + +#: ../../Zotlabs/Widget/Cdav.php:142 +msgid "Calendar Tools" +msgstr "" + +#: ../../Zotlabs/Widget/Cdav.php:144 +msgid "Import calendar" +msgstr "" + +#: ../../Zotlabs/Widget/Cdav.php:145 +msgid "Select a calendar to import to" +msgstr "" + +#: ../../Zotlabs/Widget/Cdav.php:172 +msgid "Addressbooks" +msgstr "" + +#: ../../Zotlabs/Widget/Cdav.php:174 +msgid "Addressbook name" +msgstr "" + +#: ../../Zotlabs/Widget/Cdav.php:176 +msgid "Create new addressbook" +msgstr "" + +#: ../../Zotlabs/Widget/Cdav.php:177 +msgid "Addressbook Name" +msgstr "" + +#: ../../Zotlabs/Widget/Cdav.php:179 +msgid "Addressbook Tools" +msgstr "" + +#: ../../Zotlabs/Widget/Cdav.php:180 +msgid "Import addressbook" +msgstr "" + +#: ../../Zotlabs/Widget/Cdav.php:181 +msgid "Select an addressbook to import to" +msgstr "" + +#: ../../include/js_strings.php:5 +msgid "Delete this item?" +msgstr "" + +#: ../../include/js_strings.php:8 #, php-format -msgid "%s show all" +msgid "%s show less" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:905 ../../include/conversation.php:1407 -msgid "Bold" +#: ../../include/js_strings.php:9 +#, php-format +msgid "%s expand" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:906 ../../include/conversation.php:1408 -msgid "Italic" +#: ../../include/js_strings.php:10 +#, php-format +msgid "%s collapse" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:907 ../../include/conversation.php:1409 -msgid "Underline" +#: ../../include/js_strings.php:11 +msgid "Password too short" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:908 ../../include/conversation.php:1410 -msgid "Quote" +#: ../../include/js_strings.php:12 +msgid "Passwords do not match" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:909 ../../include/conversation.php:1411 -msgid "Code" +#: ../../include/js_strings.php:13 +msgid "everybody" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:910 -msgid "Image" +#: ../../include/js_strings.php:14 +msgid "Secret Passphrase" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:911 ../../include/conversation.php:1412 -msgid "Attach/Upload file" +#: ../../include/js_strings.php:15 +msgid "Passphrase hint" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:912 -msgid "Insert Link" +#: ../../include/js_strings.php:16 +msgid "Notice: Permissions have changed but have not yet been submitted." msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:913 -msgid "Video" +#: ../../include/js_strings.php:17 +msgid "close all" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:925 -msgid "Your full name (required)" +#: ../../include/js_strings.php:18 +msgid "Nothing new here" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:926 -msgid "Your email address (required)" +#: ../../include/js_strings.php:19 +msgid "Rate This Channel (this is public)" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:927 -msgid "Your website URL (optional)" +#: ../../include/js_strings.php:21 +msgid "Describe (optional)" msgstr "" -#: ../../Zotlabs/Access/Permissions.php:56 -msgid "Grant viewing access to and delivery of your channel stream and posts" +#: ../../include/js_strings.php:23 +msgid "Please enter a link URL" msgstr "" -#: ../../Zotlabs/Access/Permissions.php:57 -msgid "Grant viewing access to your default channel profile" +#: ../../include/js_strings.php:24 +msgid "Unsaved changes. Are you sure you wish to leave this page?" msgstr "" -#: ../../Zotlabs/Access/Permissions.php:58 -msgid "Grant viewing access to your address book (connections)" +#: ../../include/js_strings.php:26 +msgid "lovely" msgstr "" -#: ../../Zotlabs/Access/Permissions.php:59 -msgid "Grant viewing access to your file storage and photos" +#: ../../include/js_strings.php:27 +msgid "wonderful" msgstr "" -#: ../../Zotlabs/Access/Permissions.php:60 -msgid "Grant permission to post on your channel (wall) page" +#: ../../include/js_strings.php:28 +msgid "fantastic" msgstr "" -#: ../../Zotlabs/Access/Permissions.php:61 -msgid "Accept delivery of their posts and all comments to their posts" +#: ../../include/js_strings.php:29 +msgid "great" msgstr "" -#: ../../Zotlabs/Access/Permissions.php:62 -msgid "Accept delivery of their comments and likes on your posts" +#: ../../include/js_strings.php:30 +msgid "" +"Your chosen nickname was either already taken or not valid. Please use our " +"suggestion (" msgstr "" -#: ../../Zotlabs/Access/Permissions.php:63 -msgid "Grant upload permissions to your file storage and photos" +#: ../../include/js_strings.php:31 +msgid ") or enter a new one." msgstr "" -#: ../../Zotlabs/Access/Permissions.php:64 -msgid "Grant permission to republish/mirror your posts" +#: ../../include/js_strings.php:32 +msgid "Thank you, this nickname is valid." msgstr "" -#: ../../Zotlabs/Access/Permissions.php:65 -msgid "Accept comments and wall posts only after approval (moderation)" +#: ../../include/js_strings.php:33 +msgid "A channel name is required." msgstr "" -#: ../../Zotlabs/Access/Permissions.php:66 -msgid "Grant channel administration (delegation) permission" +#: ../../include/js_strings.php:34 +msgid "This is a " msgstr "" -#: ../../Zotlabs/Access/PermissionRoles.php:176 -msgid "Social Networking" +#: ../../include/js_strings.php:35 +msgid " channel name" msgstr "" -#: ../../Zotlabs/Access/PermissionRoles.php:177 -msgid "Social - Normal" +#: ../../include/js_strings.php:36 +msgid "Pinned" msgstr "" -#: ../../Zotlabs/Access/PermissionRoles.php:178 -msgid "Social - Restricted" +#: ../../include/js_strings.php:44 +msgid "timeago.prefixAgo" msgstr "" -#: ../../Zotlabs/Access/PermissionRoles.php:181 -msgid "Community Group" +#: ../../include/js_strings.php:45 +msgid "timeago.prefixFromNow" msgstr "" -#: ../../Zotlabs/Access/PermissionRoles.php:182 -msgid "Group - Normal" +#: ../../include/js_strings.php:46 +msgid "timeago.suffixAgo" msgstr "" -#: ../../Zotlabs/Access/PermissionRoles.php:183 -msgid "Group - Restricted" +#: ../../include/js_strings.php:47 +msgid "timeago.suffixFromNow" msgstr "" -#: ../../Zotlabs/Access/PermissionRoles.php:184 -msgid "Group - Moderated" +#: ../../include/js_strings.php:50 +msgid "less than a minute" msgstr "" -#: ../../Zotlabs/Access/PermissionRoles.php:188 -msgid "Collection - Normal" +#: ../../include/js_strings.php:51 +msgid "about a minute" msgstr "" -#: ../../Zotlabs/Access/PermissionRoles.php:189 -msgid "Collection - Restricted" +#: ../../include/js_strings.php:52 +#, php-format +msgid "%d minutes" +msgstr "" + +#: ../../include/js_strings.php:53 +msgid "about an hour" +msgstr "" + +#: ../../include/js_strings.php:54 +#, php-format +msgid "about %d hours" +msgstr "" + +#: ../../include/js_strings.php:55 +msgid "a day" +msgstr "" + +#: ../../include/js_strings.php:56 +#, php-format +msgid "%d days" +msgstr "" + +#: ../../include/js_strings.php:57 +msgid "about a month" +msgstr "" + +#: ../../include/js_strings.php:58 +#, php-format +msgid "%d months" +msgstr "" + +#: ../../include/js_strings.php:59 +msgid "about a year" +msgstr "" + +#: ../../include/js_strings.php:60 +#, php-format +msgid "%d years" +msgstr "" + +#: ../../include/js_strings.php:61 +msgid " " +msgstr "" + +#: ../../include/js_strings.php:62 +msgid "timeago.numbers" +msgstr "" + +#: ../../include/js_strings.php:64 ../../include/text.php:1311 +msgid "January" +msgstr "" + +#: ../../include/js_strings.php:65 ../../include/text.php:1311 +msgid "February" +msgstr "" + +#: ../../include/js_strings.php:66 ../../include/text.php:1311 +msgid "March" +msgstr "" + +#: ../../include/js_strings.php:67 ../../include/text.php:1311 +msgid "April" +msgstr "" + +#: ../../include/js_strings.php:68 +msgctxt "long" +msgid "May" +msgstr "" + +#: ../../include/js_strings.php:69 ../../include/text.php:1311 +msgid "June" +msgstr "" + +#: ../../include/js_strings.php:70 ../../include/text.php:1311 +msgid "July" +msgstr "" + +#: ../../include/js_strings.php:71 ../../include/text.php:1311 +msgid "August" +msgstr "" + +#: ../../include/js_strings.php:72 ../../include/text.php:1311 +msgid "September" +msgstr "" + +#: ../../include/js_strings.php:73 ../../include/text.php:1311 +msgid "October" +msgstr "" + +#: ../../include/js_strings.php:74 ../../include/text.php:1311 +msgid "November" +msgstr "" + +#: ../../include/js_strings.php:75 ../../include/text.php:1311 +msgid "December" +msgstr "" + +#: ../../include/js_strings.php:76 +msgid "Jan" +msgstr "" + +#: ../../include/js_strings.php:77 +msgid "Feb" +msgstr "" + +#: ../../include/js_strings.php:78 +msgid "Mar" +msgstr "" + +#: ../../include/js_strings.php:79 +msgid "Apr" +msgstr "" + +#: ../../include/js_strings.php:80 +msgctxt "short" +msgid "May" +msgstr "" + +#: ../../include/js_strings.php:81 +msgid "Jun" +msgstr "" + +#: ../../include/js_strings.php:82 +msgid "Jul" +msgstr "" + +#: ../../include/js_strings.php:83 +msgid "Aug" +msgstr "" + +#: ../../include/js_strings.php:84 +msgid "Sep" +msgstr "" + +#: ../../include/js_strings.php:85 +msgid "Oct" +msgstr "" + +#: ../../include/js_strings.php:86 +msgid "Nov" +msgstr "" + +#: ../../include/js_strings.php:87 +msgid "Dec" +msgstr "" + +#: ../../include/js_strings.php:95 +msgid "Sun" +msgstr "" + +#: ../../include/js_strings.php:96 +msgid "Mon" +msgstr "" + +#: ../../include/js_strings.php:97 +msgid "Tue" +msgstr "" + +#: ../../include/js_strings.php:98 +msgid "Wed" +msgstr "" + +#: ../../include/js_strings.php:99 +msgid "Thu" +msgstr "" + +#: ../../include/js_strings.php:100 +msgid "Fri" +msgstr "" + +#: ../../include/js_strings.php:101 +msgid "Sat" +msgstr "" + +#: ../../include/js_strings.php:102 +msgctxt "calendar" +msgid "today" +msgstr "" + +#: ../../include/js_strings.php:103 +msgctxt "calendar" +msgid "month" +msgstr "" + +#: ../../include/js_strings.php:104 +msgctxt "calendar" +msgid "week" +msgstr "" + +#: ../../include/js_strings.php:105 +msgctxt "calendar" +msgid "day" +msgstr "" + +#: ../../include/js_strings.php:106 +msgctxt "calendar" +msgid "All day" +msgstr "" + +#: ../../include/network.php:1506 ../../include/network.php:1507 +msgid "Friendica" +msgstr "" + +#: ../../include/network.php:1508 +msgid "OStatus" +msgstr "" + +#: ../../include/network.php:1509 +msgid "GNU-Social" +msgstr "" + +#: ../../include/network.php:1510 +msgid "RSS/Atom" +msgstr "" + +#: ../../include/network.php:1513 +msgid "Diaspora" +msgstr "" + +#: ../../include/network.php:1514 +msgid "Facebook" +msgstr "" + +#: ../../include/network.php:1516 +msgid "LinkedIn" +msgstr "" + +#: ../../include/network.php:1517 +msgid "XMPP/IM" +msgstr "" + +#: ../../include/network.php:1518 +msgid "MySpace" +msgstr "" + +#: ../../include/auth.php:196 +msgid "Delegation session ended." +msgstr "" + +#: ../../include/auth.php:200 +msgid "Logged out." +msgstr "" + +#: ../../include/auth.php:296 +msgid "Email validation is incomplete. Please check your email." +msgstr "" + +#: ../../include/auth.php:312 +msgid "Failed authentication" +msgstr "" + +#: ../../include/auth.php:322 +msgid "Login failed." +msgstr "" + +#: ../../include/import.php:30 +msgid "Unable to import a removed channel." +msgstr "" + +#: ../../include/import.php:57 +msgid "" +"A channel with these settings was discovered and is not usable as it was " +"removed or reserved for system use. Import failed." +msgstr "" + +#: ../../include/import.php:66 +msgid "" +"Cannot create a duplicate channel identifier on this system. Import failed." +msgstr "" + +#: ../../include/import.php:87 +msgid "Unable to create a unique channel address. Import failed." +msgstr "" + +#: ../../include/import.php:133 +msgid "Cloned channel not found. Import failed." msgstr "" #: ../../include/event.php:32 ../../include/event.php:101 @@ -10323,188 +10361,69 @@ msgstr "" msgid "Finishes:" msgstr "" -#: ../../include/event.php:1063 +#: ../../include/event.php:1065 msgid "This event has been added to your calendar." msgstr "" -#: ../../include/event.php:1288 +#: ../../include/event.php:1290 msgid "Not specified" msgstr "" -#: ../../include/event.php:1289 +#: ../../include/event.php:1291 msgid "Needs Action" msgstr "" -#: ../../include/event.php:1290 +#: ../../include/event.php:1292 msgid "Completed" msgstr "" -#: ../../include/event.php:1291 +#: ../../include/event.php:1293 msgid "In Process" msgstr "" -#: ../../include/event.php:1292 +#: ../../include/event.php:1294 msgid "Cancelled" msgstr "" -#: ../../include/event.php:1376 ../../include/connections.php:777 +#: ../../include/event.php:1378 ../../include/connections.php:777 msgid "Home, Voice" msgstr "" -#: ../../include/event.php:1377 ../../include/connections.php:778 +#: ../../include/event.php:1379 ../../include/connections.php:778 msgid "Home, Fax" msgstr "" -#: ../../include/event.php:1379 ../../include/connections.php:780 +#: ../../include/event.php:1381 ../../include/connections.php:780 msgid "Work, Voice" msgstr "" -#: ../../include/event.php:1380 ../../include/connections.php:781 +#: ../../include/event.php:1382 ../../include/connections.php:781 msgid "Work, Fax" msgstr "" -#: ../../include/bbcode.php:270 ../../include/bbcode.php:1643 -msgid "Encrypted content" -msgstr "" - -#: ../../include/bbcode.php:289 -#, php-format -msgid "(Embedded app '%s' could not be displayed)." -msgstr "" - -#: ../../include/bbcode.php:329 -#, php-format -msgid "Install %1$s element %2$s" -msgstr "" - -#: ../../include/bbcode.php:333 -#, php-format -msgid "" -"This post contains an installable %s element, however you lack permissions " -"to install it on this site." -msgstr "" - -#: ../../include/bbcode.php:562 -msgid "card" -msgstr "" - -#: ../../include/bbcode.php:564 -msgid "article" -msgstr "" - -#: ../../include/bbcode.php:647 ../../include/bbcode.php:655 -msgid "Click to open/close" -msgstr "" - -#: ../../include/bbcode.php:655 -msgid "spoiler" -msgstr "" - -#: ../../include/bbcode.php:1081 ../../include/bbcode.php:1283 -msgid "Different viewers will see this text differently" -msgstr "" - -#: ../../include/bbcode.php:1602 -msgid "$1 wrote:" -msgstr "" - #: ../../include/dba/dba_driver.php:179 #, php-format msgid "Cannot locate DNS info for database server '%s'" msgstr "" -#: ../../include/attach.php:273 ../../include/attach.php:392 -msgid "Item was not found." +#: ../../include/oembed.php:153 +msgid "View PDF" msgstr "" -#: ../../include/attach.php:290 -msgid "Unknown error." +#: ../../include/oembed.php:358 +msgid " by " msgstr "" -#: ../../include/attach.php:581 -msgid "No source file." +#: ../../include/oembed.php:359 +msgid " on " msgstr "" -#: ../../include/attach.php:603 -msgid "Cannot locate file to replace" +#: ../../include/oembed.php:388 +msgid "Embedded content" msgstr "" -#: ../../include/attach.php:622 -msgid "Cannot locate file to revise/update" -msgstr "" - -#: ../../include/attach.php:766 -#, php-format -msgid "File exceeds size limit of %d" -msgstr "" - -#: ../../include/attach.php:787 -#, php-format -msgid "You have reached your limit of %1$.0f Mbytes attachment storage." -msgstr "" - -#: ../../include/attach.php:970 -msgid "File upload failed. Possible system limit or action terminated." -msgstr "" - -#: ../../include/attach.php:999 -msgid "Stored file could not be verified. Upload failed." -msgstr "" - -#: ../../include/attach.php:1073 ../../include/attach.php:1089 -msgid "Path not available." -msgstr "" - -#: ../../include/attach.php:1138 ../../include/attach.php:1303 -msgid "Empty pathname" -msgstr "" - -#: ../../include/attach.php:1164 -msgid "duplicate filename or path" -msgstr "" - -#: ../../include/attach.php:1189 -msgid "Path not found." -msgstr "" - -#: ../../include/attach.php:1257 -msgid "mkdir failed." -msgstr "" - -#: ../../include/attach.php:1261 -msgid "database storage failed." -msgstr "" - -#: ../../include/attach.php:1309 -msgid "Empty path" -msgstr "" - -#: ../../include/security.php:601 -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/connections.php:157 -msgid "New window" -msgstr "" - -#: ../../include/connections.php:158 -msgid "Open the selected location in a different window or browser tab" -msgstr "" - -#: ../../include/connections.php:880 -msgid "No connections" -msgstr "" - -#: ../../include/connections.php:912 -#, php-format -msgid "View all %s connections" -msgstr "" - -#: ../../include/connections.php:945 -#, php-format -msgid "Network: %s" +#: ../../include/oembed.php:397 +msgid "Embedding disabled" msgstr "" #: ../../include/zid.php:359 @@ -10512,187 +10431,6 @@ msgstr "" msgid "OpenWebAuth: %1$s welcomes %2$s" msgstr "" -#: ../../include/taxonomy.php:322 -msgid "Trending" -msgstr "" - -#: ../../include/taxonomy.php:566 -msgid "Keywords" -msgstr "" - -#: ../../include/taxonomy.php:587 -msgid "have" -msgstr "" - -#: ../../include/taxonomy.php:587 -msgid "has" -msgstr "" - -#: ../../include/taxonomy.php:588 -msgid "want" -msgstr "" - -#: ../../include/taxonomy.php:588 -msgid "wants" -msgstr "" - -#: ../../include/taxonomy.php:589 -msgid "likes" -msgstr "" - -#: ../../include/taxonomy.php:590 -msgid "dislikes" -msgstr "" - -#: ../../include/nav.php:82 -msgid "Remote authentication" -msgstr "" - -#: ../../include/nav.php:82 -msgid "Click to authenticate to your home hub" -msgstr "" - -#: ../../include/nav.php:88 -msgid "Manage your channels" -msgstr "" - -#: ../../include/nav.php:91 -msgid "Manage your access lists" -msgstr "" - -#: ../../include/nav.php:93 -msgid "Account/Channel Settings" -msgstr "" - -#: ../../include/nav.php:95 -msgid "(is on)" -msgstr "" - -#: ../../include/nav.php:95 -msgid "(is off)" -msgstr "" - -#: ../../include/nav.php:95 -msgid "Content filtering" -msgstr "" - -#: ../../include/nav.php:102 ../../include/nav.php:131 -msgid "End this session" -msgstr "" - -#: ../../include/nav.php:105 -msgid "Your profile page" -msgstr "" - -#: ../../include/nav.php:108 -msgid "Manage/Edit profiles" -msgstr "" - -#: ../../include/nav.php:117 ../../include/nav.php:121 -msgid "Sign in" -msgstr "" - -#: ../../include/nav.php:148 -msgid "Take me home" -msgstr "" - -#: ../../include/nav.php:150 -msgid "Log me out of this site" -msgstr "" - -#: ../../include/nav.php:155 -msgid "Create an account" -msgstr "" - -#: ../../include/nav.php:167 -msgid "Help and documentation" -msgstr "" - -#: ../../include/nav.php:174 -msgid "Search site @name, #tag, content" -msgstr "" - -#: ../../include/nav.php:180 -msgid "Site Setup and Configuration" -msgstr "" - -#: ../../include/nav.php:288 -msgid "Powered by $Projectname" -msgstr "" - -#: ../../include/nav.php:299 -msgid "@name, #tag, content" -msgstr "" - -#: ../../include/nav.php:300 -msgid "Please wait..." -msgstr "" - -#: ../../include/nav.php:306 -msgid "My Apps" -msgstr "" - -#: ../../include/nav.php:308 -msgid "Arrange Apps" -msgstr "" - -#: ../../include/nav.php:309 -msgid "Toggle System Apps" -msgstr "" - -#: ../../include/nav.php:388 ../../include/conversation.php:1926 -msgid "Status Messages and Posts" -msgstr "" - -#: ../../include/nav.php:398 ../../include/conversation.php:1936 -msgid "About" -msgstr "" - -#: ../../include/nav.php:401 ../../include/conversation.php:1939 -msgid "Profile Details" -msgstr "" - -#: ../../include/nav.php:411 ../../include/photos.php:712 -#: ../../include/conversation.php:1949 -msgid "Photo Albums" -msgstr "" - -#: ../../include/nav.php:419 ../../include/conversation.php:1957 -msgid "Files and Storage" -msgstr "" - -#: ../../include/nav.php:454 ../../include/conversation.php:1994 -msgid "Bookmarks" -msgstr "" - -#: ../../include/nav.php:457 ../../include/conversation.php:1997 -msgid "Saved Bookmarks" -msgstr "" - -#: ../../include/nav.php:468 ../../include/conversation.php:2008 -msgid "View Cards" -msgstr "" - -#: ../../include/nav.php:479 ../../include/conversation.php:2019 -msgid "View Articles" -msgstr "" - -#: ../../include/nav.php:491 ../../include/conversation.php:2030 -msgid "View Webpages" -msgstr "" - -#: ../../include/nav.php:500 ../../include/conversation.php:2040 -msgid "Wikis" -msgstr "" - -#: ../../include/language.php:396 ../../include/text.php:1952 -msgid "default" -msgstr "" - -#: ../../include/language.php:409 -msgid "Select an alternate language" -msgstr "" - #: ../../include/features.php:56 msgid "General Features" msgstr "" @@ -10849,6 +10587,326 @@ msgstr "" msgid "Provide a personal tag cloud on your channel page" msgstr "" +#: ../../include/items.php:1007 +msgid "(Unknown)" +msgstr "" + +#: ../../include/items.php:1190 +msgid "Visible to anybody on the internet." +msgstr "" + +#: ../../include/items.php:1192 +msgid "Visible to you only." +msgstr "" + +#: ../../include/items.php:1194 +msgid "Visible to anybody in this network." +msgstr "" + +#: ../../include/items.php:1196 +msgid "Visible to anybody authenticated." +msgstr "" + +#: ../../include/items.php:1198 +#, php-format +msgid "Visible to anybody on %s." +msgstr "" + +#: ../../include/items.php:1200 +msgid "Visible to all connections." +msgstr "" + +#: ../../include/items.php:1202 +msgid "Visible to approved connections." +msgstr "" + +#: ../../include/items.php:1204 +msgid "Visible to specific connections." +msgstr "" + +#: ../../include/items.php:4050 +msgid "Privacy group is empty." +msgstr "" + +#: ../../include/items.php:4428 +msgid "profile photo" +msgstr "" + +#: ../../include/items.php:4632 +#, php-format +msgid "[Edited %s]" +msgstr "" + +#: ../../include/items.php:4632 +msgctxt "edit_activity" +msgid "Post" +msgstr "" + +#: ../../include/items.php:4632 +msgctxt "edit_activity" +msgid "Comment" +msgstr "" + +#: ../../include/attach.php:273 ../../include/attach.php:392 +msgid "Item was not found." +msgstr "" + +#: ../../include/attach.php:290 +msgid "Unknown error." +msgstr "" + +#: ../../include/attach.php:581 +msgid "No source file." +msgstr "" + +#: ../../include/attach.php:603 +msgid "Cannot locate file to replace" +msgstr "" + +#: ../../include/attach.php:622 +msgid "Cannot locate file to revise/update" +msgstr "" + +#: ../../include/attach.php:766 +#, php-format +msgid "File exceeds size limit of %d" +msgstr "" + +#: ../../include/attach.php:787 +#, php-format +msgid "You have reached your limit of %1$.0f Mbytes attachment storage." +msgstr "" + +#: ../../include/attach.php:970 +msgid "File upload failed. Possible system limit or action terminated." +msgstr "" + +#: ../../include/attach.php:999 +msgid "Stored file could not be verified. Upload failed." +msgstr "" + +#: ../../include/attach.php:1073 ../../include/attach.php:1089 +msgid "Path not available." +msgstr "" + +#: ../../include/attach.php:1138 ../../include/attach.php:1303 +msgid "Empty pathname" +msgstr "" + +#: ../../include/attach.php:1164 +msgid "duplicate filename or path" +msgstr "" + +#: ../../include/attach.php:1189 +msgid "Path not found." +msgstr "" + +#: ../../include/attach.php:1257 +msgid "mkdir failed." +msgstr "" + +#: ../../include/attach.php:1261 +msgid "database storage failed." +msgstr "" + +#: ../../include/attach.php:1309 +msgid "Empty path" +msgstr "" + +#: ../../include/taxonomy.php:322 +msgid "Trending" +msgstr "" + +#: ../../include/taxonomy.php:566 +msgid "Keywords" +msgstr "" + +#: ../../include/taxonomy.php:587 +msgid "have" +msgstr "" + +#: ../../include/taxonomy.php:587 +msgid "has" +msgstr "" + +#: ../../include/taxonomy.php:588 +msgid "want" +msgstr "" + +#: ../../include/taxonomy.php:588 +msgid "wants" +msgstr "" + +#: ../../include/taxonomy.php:589 +msgid "likes" +msgstr "" + +#: ../../include/taxonomy.php:590 +msgid "dislikes" +msgstr "" + +#: ../../include/account.php:31 +msgid "Not a valid email address" +msgstr "" + +#: ../../include/account.php:34 +msgid "Your email domain is not among those allowed on this site" +msgstr "" + +#: ../../include/account.php:41 +msgid "Your email address is already registered at this site." +msgstr "" + +#: ../../include/account.php:74 +msgid "An invitation is required." +msgstr "" + +#: ../../include/account.php:78 +msgid "Invitation could not be verified." +msgstr "" + +#: ../../include/account.php:157 +msgid "Please enter the required information." +msgstr "" + +#: ../../include/account.php:221 +msgid "Failed to store account information." +msgstr "" + +#: ../../include/account.php:310 +#, php-format +msgid "Registration confirmation for %s" +msgstr "" + +#: ../../include/account.php:386 +#, php-format +msgid "Registration request at %s" +msgstr "" + +#: ../../include/account.php:410 +msgid "your registration password" +msgstr "" + +#: ../../include/account.php:416 ../../include/account.php:479 +#, php-format +msgid "Registration details for %s" +msgstr "" + +#: ../../include/account.php:491 +msgid "Account approved." +msgstr "" + +#: ../../include/account.php:533 +#, php-format +msgid "Registration revoked for %s" +msgstr "" + +#: ../../include/account.php:820 ../../include/account.php:822 +msgid "Click here to upgrade." +msgstr "" + +#: ../../include/account.php:828 +msgid "This action exceeds the limits set by your subscription plan." +msgstr "" + +#: ../../include/account.php:833 +msgid "This action is not available under your subscription plan." +msgstr "" + +#: ../../include/datetime.php:142 +msgid "Birthday" +msgstr "" + +#: ../../include/datetime.php:142 +msgid "Age: " +msgstr "" + +#: ../../include/datetime.php:142 +msgid "YYYY-MM-DD or MM-DD" +msgstr "" + +#: ../../include/datetime.php:240 ../../boot.php:2500 +msgid "never" +msgstr "" + +#: ../../include/datetime.php:244 +msgid "from now" +msgstr "" + +#: ../../include/datetime.php:248 +msgid "ago" +msgstr "" + +#: ../../include/datetime.php:253 +#, php-format +msgid "less than a second %s" +msgstr "" + +#: ../../include/datetime.php:271 +#, php-format +msgctxt "e.g. 22 hours ago, 1 minute ago" +msgid "%1$d %2$s %3$s" +msgstr "" + +#: ../../include/datetime.php:282 +msgctxt "relative_date" +msgid "year" +msgid_plural "years" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/datetime.php:285 +msgctxt "relative_date" +msgid "month" +msgid_plural "months" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/datetime.php:288 +msgctxt "relative_date" +msgid "week" +msgid_plural "weeks" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/datetime.php:291 +msgctxt "relative_date" +msgid "day" +msgid_plural "days" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/datetime.php:294 +msgctxt "relative_date" +msgid "hour" +msgid_plural "hours" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/datetime.php:297 +msgctxt "relative_date" +msgid "minute" +msgid_plural "minutes" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/datetime.php:300 +msgctxt "relative_date" +msgid "second" +msgid_plural "seconds" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/datetime.php:529 +#, php-format +msgid "%1$s's birthday" +msgstr "" + +#: ../../include/datetime.php:530 +#, php-format +msgid "Happy Birthday %1$s" +msgstr "" + #: ../../include/channel.php:45 msgid "Unable to obtain identity information from database" msgstr "" @@ -10881,31 +10939,590 @@ msgstr "" msgid "Unable to retrieve modified identity" msgstr "" -#: ../../include/photos.php:151 +#: ../../include/text.php:497 +msgid "prev" +msgstr "" + +#: ../../include/text.php:499 +msgid "first" +msgstr "" + +#: ../../include/text.php:528 +msgid "last" +msgstr "" + +#: ../../include/text.php:531 +msgid "next" +msgstr "" + +#: ../../include/text.php:542 +msgid "older" +msgstr "" + +#: ../../include/text.php:544 +msgid "newer" +msgstr "" + +#: ../../include/text.php:1076 ../../include/text.php:1080 +msgid "poke" +msgstr "" + +#: ../../include/text.php:1076 ../../include/text.php:1080 +#: ../../include/conversation.php:267 +msgid "poked" +msgstr "" + +#: ../../include/text.php:1081 +msgid "ping" +msgstr "" + +#: ../../include/text.php:1081 +msgid "pinged" +msgstr "" + +#: ../../include/text.php:1082 +msgid "prod" +msgstr "" + +#: ../../include/text.php:1082 +msgid "prodded" +msgstr "" + +#: ../../include/text.php:1083 +msgid "slap" +msgstr "" + +#: ../../include/text.php:1083 +msgid "slapped" +msgstr "" + +#: ../../include/text.php:1084 +msgid "finger" +msgstr "" + +#: ../../include/text.php:1084 +msgid "fingered" +msgstr "" + +#: ../../include/text.php:1085 +msgid "rebuff" +msgstr "" + +#: ../../include/text.php:1085 +msgid "rebuffed" +msgstr "" + +#: ../../include/text.php:1108 +msgid "happy" +msgstr "" + +#: ../../include/text.php:1109 +msgid "sad" +msgstr "" + +#: ../../include/text.php:1110 +msgid "mellow" +msgstr "" + +#: ../../include/text.php:1111 +msgid "tired" +msgstr "" + +#: ../../include/text.php:1112 +msgid "perky" +msgstr "" + +#: ../../include/text.php:1113 +msgid "angry" +msgstr "" + +#: ../../include/text.php:1114 +msgid "stupefied" +msgstr "" + +#: ../../include/text.php:1115 +msgid "puzzled" +msgstr "" + +#: ../../include/text.php:1116 +msgid "interested" +msgstr "" + +#: ../../include/text.php:1117 +msgid "bitter" +msgstr "" + +#: ../../include/text.php:1118 +msgid "cheerful" +msgstr "" + +#: ../../include/text.php:1119 +msgid "alive" +msgstr "" + +#: ../../include/text.php:1120 +msgid "annoyed" +msgstr "" + +#: ../../include/text.php:1121 +msgid "anxious" +msgstr "" + +#: ../../include/text.php:1122 +msgid "cranky" +msgstr "" + +#: ../../include/text.php:1123 +msgid "disturbed" +msgstr "" + +#: ../../include/text.php:1124 +msgid "frustrated" +msgstr "" + +#: ../../include/text.php:1125 +msgid "depressed" +msgstr "" + +#: ../../include/text.php:1126 +msgid "motivated" +msgstr "" + +#: ../../include/text.php:1127 +msgid "relaxed" +msgstr "" + +#: ../../include/text.php:1128 +msgid "surprised" +msgstr "" + +#: ../../include/text.php:1311 +msgid "May" +msgstr "" + +#: ../../include/text.php:1393 +msgid "Unknown Attachment" +msgstr "" + +#: ../../include/text.php:1396 +msgid "unknown" +msgstr "" + +#: ../../include/text.php:1436 +msgid "remove category" +msgstr "" + +#: ../../include/text.php:1510 +msgid "remove from file" +msgstr "" + +#: ../../include/text.php:1650 +msgid "Added to your calendar" +msgstr "" + +#: ../../include/text.php:1730 +msgid "Link" +msgstr "" + +#: ../../include/text.php:1816 +msgid "Poll has ended." +msgstr "" + +#: ../../include/text.php:1819 #, php-format -msgid "Image exceeds website size limit of %lu bytes" +msgid "Poll ends: %1$s (%2$s)" msgstr "" -#: ../../include/photos.php:162 -msgid "Image file is empty." +#: ../../include/text.php:1824 +msgid "vote" msgstr "" -#: ../../include/photos.php:333 -msgid "Photo storage failed." +#: ../../include/text.php:1836 +msgid "Download binary/encrypted content" msgstr "" -#: ../../include/photos.php:390 -msgid "a new photo" +#: ../../include/text.php:1960 +msgid "Page layout" msgstr "" -#: ../../include/photos.php:394 +#: ../../include/text.php:1960 +msgid "You can create your own with the layouts tool" +msgstr "" + +#: ../../include/text.php:1970 +msgid "BBcode" +msgstr "" + +#: ../../include/text.php:1971 +msgid "HTML" +msgstr "" + +#: ../../include/text.php:1972 +msgid "Markdown" +msgstr "" + +#: ../../include/text.php:1973 +msgid "Text" +msgstr "" + +#: ../../include/text.php:1974 +msgid "Comanche Layout" +msgstr "" + +#: ../../include/text.php:1979 +msgid "PHP" +msgstr "" + +#: ../../include/text.php:1988 +msgid "Page content type" +msgstr "" + +#: ../../include/text.php:2121 +msgid "activity" +msgstr "" + +#: ../../include/text.php:2225 +msgid "a-z, 0-9, -, and _ only" +msgstr "" + +#: ../../include/text.php:2552 +msgid "Design Tools" +msgstr "" + +#: ../../include/text.php:2558 +msgid "Pages" +msgstr "" + +#: ../../include/text.php:2580 +msgid "Import website..." +msgstr "" + +#: ../../include/text.php:2581 +msgid "Select folder to import" +msgstr "" + +#: ../../include/text.php:2582 +msgid "Import from a zipped folder:" +msgstr "" + +#: ../../include/text.php:2583 +msgid "Import from cloud files:" +msgstr "" + +#: ../../include/text.php:2584 +msgid "/cloud/channel/path/to/folder" +msgstr "" + +#: ../../include/text.php:2585 +msgid "Enter path to website files" +msgstr "" + +#: ../../include/text.php:2586 +msgid "Select folder" +msgstr "" + +#: ../../include/text.php:2587 +msgid "Export website..." +msgstr "" + +#: ../../include/text.php:2588 +msgid "Export to a zip file" +msgstr "" + +#: ../../include/text.php:2589 +msgid "website.zip" +msgstr "" + +#: ../../include/text.php:2590 +msgid "Enter a name for the zip file." +msgstr "" + +#: ../../include/text.php:2591 +msgid "Export to cloud files" +msgstr "" + +#: ../../include/text.php:2592 +msgid "/path/to/export/folder" +msgstr "" + +#: ../../include/text.php:2593 +msgid "Enter a path to a cloud files destination." +msgstr "" + +#: ../../include/text.php:2594 +msgid "Specify folder" +msgstr "" + +#: ../../include/nav.php:82 +msgid "Remote authentication" +msgstr "" + +#: ../../include/nav.php:82 +msgid "Click to authenticate to your home hub" +msgstr "" + +#: ../../include/nav.php:88 +msgid "Manage your channels" +msgstr "" + +#: ../../include/nav.php:91 +msgid "Manage your access lists" +msgstr "" + +#: ../../include/nav.php:93 +msgid "Account/Channel Settings" +msgstr "" + +#: ../../include/nav.php:95 +msgid "(is on)" +msgstr "" + +#: ../../include/nav.php:95 +msgid "(is off)" +msgstr "" + +#: ../../include/nav.php:95 +msgid "Content filtering" +msgstr "" + +#: ../../include/nav.php:102 ../../include/nav.php:131 +#: ../../include/nav.php:150 ../../boot.php:1654 +msgid "Logout" +msgstr "" + +#: ../../include/nav.php:102 ../../include/nav.php:131 +msgid "End this session" +msgstr "" + +#: ../../include/nav.php:105 +msgid "Your profile page" +msgstr "" + +#: ../../include/nav.php:108 +msgid "Manage/Edit profiles" +msgstr "" + +#: ../../include/nav.php:117 ../../include/nav.php:121 +msgid "Sign in" +msgstr "" + +#: ../../include/nav.php:148 +msgid "Take me home" +msgstr "" + +#: ../../include/nav.php:150 +msgid "Log me out of this site" +msgstr "" + +#: ../../include/nav.php:155 +msgid "Create an account" +msgstr "" + +#: ../../include/nav.php:167 +msgid "Help and documentation" +msgstr "" + +#: ../../include/nav.php:174 +msgid "Search site @name, #tag, content" +msgstr "" + +#: ../../include/nav.php:180 +msgid "Site Setup and Configuration" +msgstr "" + +#: ../../include/nav.php:288 +msgid "Powered by $Projectname" +msgstr "" + +#: ../../include/nav.php:299 +msgid "@name, #tag, content" +msgstr "" + +#: ../../include/nav.php:300 +msgid "Please wait..." +msgstr "" + +#: ../../include/nav.php:306 +msgid "My Apps" +msgstr "" + +#: ../../include/nav.php:308 +msgid "Arrange Apps" +msgstr "" + +#: ../../include/nav.php:309 +msgid "Toggle System Apps" +msgstr "" + +#: ../../include/nav.php:388 ../../include/conversation.php:1926 +msgid "Status Messages and Posts" +msgstr "" + +#: ../../include/nav.php:398 ../../include/conversation.php:1936 +msgid "About" +msgstr "" + +#: ../../include/nav.php:401 ../../include/conversation.php:1939 +msgid "Profile Details" +msgstr "" + +#: ../../include/nav.php:411 ../../include/conversation.php:1949 +#: ../../include/photos.php:712 +msgid "Photo Albums" +msgstr "" + +#: ../../include/nav.php:419 ../../include/conversation.php:1957 +msgid "Files and Storage" +msgstr "" + +#: ../../include/nav.php:454 ../../include/conversation.php:1994 +msgid "Bookmarks" +msgstr "" + +#: ../../include/nav.php:457 ../../include/conversation.php:1997 +msgid "Saved Bookmarks" +msgstr "" + +#: ../../include/nav.php:468 ../../include/conversation.php:2008 +msgid "View Cards" +msgstr "" + +#: ../../include/nav.php:479 ../../include/conversation.php:2019 +msgid "View Articles" +msgstr "" + +#: ../../include/nav.php:491 ../../include/conversation.php:2030 +msgid "View Webpages" +msgstr "" + +#: ../../include/nav.php:500 ../../include/conversation.php:2040 +msgid "Wikis" +msgstr "" + +#: ../../include/security.php:601 +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/bbcode.php:271 +msgid "Encrypted content" +msgstr "" + +#: ../../include/bbcode.php:290 #, php-format -msgctxt "photo_upload" -msgid "%1$s posted %2$s to %3$s" +msgid "(Embedded app '%s' could not be displayed)." msgstr "" -#: ../../include/photos.php:717 -msgid "Upload New Photos" +#: ../../include/bbcode.php:330 +#, php-format +msgid "Install %1$s element %2$s" +msgstr "" + +#: ../../include/bbcode.php:334 +#, php-format +msgid "" +"This post contains an installable %s element, however you lack permissions " +"to install it on this site." +msgstr "" + +#: ../../include/bbcode.php:563 +msgid "card" +msgstr "" + +#: ../../include/bbcode.php:565 +msgid "article" +msgstr "" + +#: ../../include/bbcode.php:648 ../../include/bbcode.php:656 +msgid "Click to open/close" +msgstr "" + +#: ../../include/bbcode.php:656 +msgid "spoiler" +msgstr "" + +#: ../../include/bbcode.php:1129 ../../include/bbcode.php:1349 +msgid "Different viewers will see this text differently" +msgstr "" + +#: ../../include/bbcode.php:1668 +msgid "$1 wrote:" +msgstr "" + +#: ../../include/connections.php:157 +msgid "New window" +msgstr "" + +#: ../../include/connections.php:158 +msgid "Open the selected location in a different window or browser tab" +msgstr "" + +#: ../../include/connections.php:880 +msgid "No connections" +msgstr "" + +#: ../../include/connections.php:912 +#, php-format +msgid "View all %s connections" +msgstr "" + +#: ../../include/connections.php:945 +#, php-format +msgid "Network: %s" +msgstr "" + +#: ../../include/acl_selectors.php:90 +msgid "(List)" +msgstr "" + +#: ../../include/acl_selectors.php:96 +msgid "My connections" +msgstr "" + +#: ../../include/acl_selectors.php:96 ../../include/acl_selectors.php:99 +#: ../../include/acl_selectors.php:102 +msgid "(Virtual List)" +msgstr "" + +#: ../../include/acl_selectors.php:99 +msgid "My ActivityPub connections" +msgstr "" + +#: ../../include/acl_selectors.php:102 +msgid "My Zot connections" +msgstr "" + +#: ../../include/acl_selectors.php:114 +msgid "(Group)" +msgstr "" + +#: ../../include/acl_selectors.php:128 +msgid "Who can see this?" +msgstr "" + +#: ../../include/acl_selectors.php:129 +msgid "Custom selection" +msgstr "" + +#: ../../include/acl_selectors.php:130 +msgid "" +"Select \"Show\" to allow viewing. \"Don't show\" lets you override and limit " +"the scope of \"Show\"." +msgstr "" + +#: ../../include/acl_selectors.php:131 +msgid "Show" +msgstr "" + +#: ../../include/acl_selectors.php:132 +msgid "Don't show" +msgstr "" + +#: ../../include/acl_selectors.php:165 +msgid "" +"Post permissions cannot be changed after a post is shared.
These " +"permissions set who is allowed to view the post." msgstr "" #: ../../include/conversation.php:173 @@ -10938,11 +11555,6 @@ msgstr "" msgid "%1$s poked %2$s" msgstr "" -#: ../../include/conversation.php:267 ../../include/text.php:1076 -#: ../../include/text.php:1080 -msgid "poked" -msgstr "" - #: ../../include/conversation.php:700 msgid "Toggle Star Status" msgstr "" @@ -11235,1018 +11847,446 @@ msgid_plural "Abstains" msgstr[0] "" msgstr[1] "" -#: ../../include/network.php:1506 ../../include/network.php:1507 -msgid "Friendica" -msgstr "" - -#: ../../include/network.php:1508 -msgid "OStatus" -msgstr "" - -#: ../../include/network.php:1509 -msgid "GNU-Social" -msgstr "" - -#: ../../include/network.php:1510 -msgid "RSS/Atom" -msgstr "" - -#: ../../include/network.php:1513 -msgid "Diaspora" -msgstr "" - -#: ../../include/network.php:1514 -msgid "Facebook" -msgstr "" - -#: ../../include/network.php:1515 -msgid "Zot" -msgstr "" - -#: ../../include/network.php:1516 -msgid "LinkedIn" -msgstr "" - -#: ../../include/network.php:1517 -msgid "XMPP/IM" -msgstr "" - -#: ../../include/network.php:1518 -msgid "MySpace" -msgstr "" - -#: ../../include/account.php:31 -msgid "Not a valid email address" -msgstr "" - -#: ../../include/account.php:34 -msgid "Your email domain is not among those allowed on this site" -msgstr "" - -#: ../../include/account.php:41 -msgid "Your email address is already registered at this site." -msgstr "" - -#: ../../include/account.php:74 -msgid "An invitation is required." -msgstr "" - -#: ../../include/account.php:78 -msgid "Invitation could not be verified." -msgstr "" - -#: ../../include/account.php:157 -msgid "Please enter the required information." -msgstr "" - -#: ../../include/account.php:221 -msgid "Failed to store account information." -msgstr "" - -#: ../../include/account.php:310 +#: ../../include/photos.php:151 #, php-format -msgid "Registration confirmation for %s" +msgid "Image exceeds website size limit of %lu bytes" msgstr "" -#: ../../include/account.php:386 +#: ../../include/photos.php:162 +msgid "Image file is empty." +msgstr "" + +#: ../../include/photos.php:333 +msgid "Photo storage failed." +msgstr "" + +#: ../../include/photos.php:390 +msgid "a new photo" +msgstr "" + +#: ../../include/photos.php:394 #, php-format -msgid "Registration request at %s" +msgctxt "photo_upload" +msgid "%1$s posted %2$s to %3$s" msgstr "" -#: ../../include/account.php:410 -msgid "your registration password" +#: ../../include/photos.php:717 +msgid "Upload New Photos" msgstr "" -#: ../../include/account.php:416 ../../include/account.php:479 -#, php-format -msgid "Registration details for %s" +#: ../../view/theme/redbasic/php/config.php:16 +#: ../../view/theme/redbasic/php/config.php:19 +msgid "Focus (Hubzilla default)" msgstr "" -#: ../../include/account.php:491 -msgid "Account approved." +#: ../../view/theme/redbasic/php/config.php:97 +msgid "Theme settings" msgstr "" -#: ../../include/account.php:533 -#, php-format -msgid "Registration revoked for %s" +#: ../../view/theme/redbasic/php/config.php:98 +msgid "Narrow navbar" msgstr "" -#: ../../include/account.php:820 ../../include/account.php:822 -msgid "Click here to upgrade." +#: ../../view/theme/redbasic/php/config.php:99 +msgid "Navigation bar background color" msgstr "" -#: ../../include/account.php:828 -msgid "This action exceeds the limits set by your subscription plan." +#: ../../view/theme/redbasic/php/config.php:100 +msgid "Navigation bar icon color " msgstr "" -#: ../../include/account.php:833 -msgid "This action is not available under your subscription plan." +#: ../../view/theme/redbasic/php/config.php:101 +msgid "Navigation bar active icon color " msgstr "" -#: ../../include/datetime.php:142 -msgid "Birthday" +#: ../../view/theme/redbasic/php/config.php:102 +msgid "Link color" msgstr "" -#: ../../include/datetime.php:142 -msgid "Age: " +#: ../../view/theme/redbasic/php/config.php:103 +msgid "Set font-color for banner" msgstr "" -#: ../../include/datetime.php:142 -msgid "YYYY-MM-DD or MM-DD" +#: ../../view/theme/redbasic/php/config.php:104 +msgid "Set the background color" msgstr "" -#: ../../include/datetime.php:246 -msgid "less than a second ago" +#: ../../view/theme/redbasic/php/config.php:105 +msgid "Set the background image" msgstr "" -#: ../../include/datetime.php:264 -#, php-format -msgctxt "e.g. 22 hours ago, 1 minute ago" -msgid "%1$d %2$s ago" +#: ../../view/theme/redbasic/php/config.php:106 +msgid "Set the background color of items" msgstr "" -#: ../../include/datetime.php:275 -msgctxt "relative_date" -msgid "year" -msgid_plural "years" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/datetime.php:278 -msgctxt "relative_date" -msgid "month" -msgid_plural "months" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/datetime.php:281 -msgctxt "relative_date" -msgid "week" -msgid_plural "weeks" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/datetime.php:284 -msgctxt "relative_date" -msgid "day" -msgid_plural "days" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/datetime.php:287 -msgctxt "relative_date" -msgid "hour" -msgid_plural "hours" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/datetime.php:290 -msgctxt "relative_date" -msgid "minute" -msgid_plural "minutes" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/datetime.php:293 -msgctxt "relative_date" -msgid "second" -msgid_plural "seconds" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/datetime.php:522 -#, php-format -msgid "%1$s's birthday" -msgstr "" - -#: ../../include/datetime.php:523 -#, php-format -msgid "Happy Birthday %1$s" -msgstr "" - -#: ../../include/oembed.php:153 -msgid "View PDF" -msgstr "" - -#: ../../include/oembed.php:358 -msgid " by " -msgstr "" - -#: ../../include/oembed.php:359 -msgid " on " -msgstr "" - -#: ../../include/oembed.php:388 -msgid "Embedded content" -msgstr "" - -#: ../../include/oembed.php:397 -msgid "Embedding disabled" -msgstr "" - -#: ../../include/text.php:497 -msgid "prev" -msgstr "" - -#: ../../include/text.php:499 -msgid "first" -msgstr "" - -#: ../../include/text.php:528 -msgid "last" -msgstr "" - -#: ../../include/text.php:531 -msgid "next" -msgstr "" - -#: ../../include/text.php:542 -msgid "older" -msgstr "" - -#: ../../include/text.php:544 -msgid "newer" -msgstr "" - -#: ../../include/text.php:1076 ../../include/text.php:1080 -msgid "poke" -msgstr "" - -#: ../../include/text.php:1081 -msgid "ping" -msgstr "" - -#: ../../include/text.php:1081 -msgid "pinged" -msgstr "" - -#: ../../include/text.php:1082 -msgid "prod" -msgstr "" - -#: ../../include/text.php:1082 -msgid "prodded" -msgstr "" - -#: ../../include/text.php:1083 -msgid "slap" -msgstr "" - -#: ../../include/text.php:1083 -msgid "slapped" -msgstr "" - -#: ../../include/text.php:1084 -msgid "finger" -msgstr "" - -#: ../../include/text.php:1084 -msgid "fingered" -msgstr "" - -#: ../../include/text.php:1085 -msgid "rebuff" -msgstr "" - -#: ../../include/text.php:1085 -msgid "rebuffed" -msgstr "" - -#: ../../include/text.php:1108 -msgid "happy" -msgstr "" - -#: ../../include/text.php:1109 -msgid "sad" -msgstr "" - -#: ../../include/text.php:1110 -msgid "mellow" -msgstr "" - -#: ../../include/text.php:1111 -msgid "tired" -msgstr "" - -#: ../../include/text.php:1112 -msgid "perky" -msgstr "" - -#: ../../include/text.php:1113 -msgid "angry" -msgstr "" - -#: ../../include/text.php:1114 -msgid "stupefied" -msgstr "" - -#: ../../include/text.php:1115 -msgid "puzzled" -msgstr "" - -#: ../../include/text.php:1116 -msgid "interested" -msgstr "" - -#: ../../include/text.php:1117 -msgid "bitter" -msgstr "" - -#: ../../include/text.php:1118 -msgid "cheerful" -msgstr "" - -#: ../../include/text.php:1119 -msgid "alive" -msgstr "" - -#: ../../include/text.php:1120 -msgid "annoyed" -msgstr "" - -#: ../../include/text.php:1121 -msgid "anxious" -msgstr "" - -#: ../../include/text.php:1122 -msgid "cranky" -msgstr "" - -#: ../../include/text.php:1123 -msgid "disturbed" -msgstr "" - -#: ../../include/text.php:1124 -msgid "frustrated" -msgstr "" - -#: ../../include/text.php:1125 -msgid "depressed" -msgstr "" - -#: ../../include/text.php:1126 -msgid "motivated" -msgstr "" - -#: ../../include/text.php:1127 -msgid "relaxed" -msgstr "" - -#: ../../include/text.php:1128 -msgid "surprised" -msgstr "" - -#: ../../include/text.php:1311 ../../include/js_strings.php:64 -msgid "January" -msgstr "" - -#: ../../include/text.php:1311 ../../include/js_strings.php:65 -msgid "February" -msgstr "" - -#: ../../include/text.php:1311 ../../include/js_strings.php:66 -msgid "March" -msgstr "" - -#: ../../include/text.php:1311 ../../include/js_strings.php:67 -msgid "April" -msgstr "" - -#: ../../include/text.php:1311 -msgid "May" -msgstr "" - -#: ../../include/text.php:1311 ../../include/js_strings.php:69 -msgid "June" -msgstr "" - -#: ../../include/text.php:1311 ../../include/js_strings.php:70 -msgid "July" -msgstr "" - -#: ../../include/text.php:1311 ../../include/js_strings.php:71 -msgid "August" -msgstr "" - -#: ../../include/text.php:1311 ../../include/js_strings.php:72 -msgid "September" -msgstr "" - -#: ../../include/text.php:1311 ../../include/js_strings.php:73 -msgid "October" -msgstr "" - -#: ../../include/text.php:1311 ../../include/js_strings.php:74 -msgid "November" -msgstr "" - -#: ../../include/text.php:1311 ../../include/js_strings.php:75 -msgid "December" -msgstr "" - -#: ../../include/text.php:1393 -msgid "Unknown Attachment" -msgstr "" - -#: ../../include/text.php:1396 -msgid "unknown" -msgstr "" - -#: ../../include/text.php:1436 -msgid "remove category" -msgstr "" - -#: ../../include/text.php:1510 -msgid "remove from file" -msgstr "" - -#: ../../include/text.php:1650 -msgid "Added to your calendar" -msgstr "" - -#: ../../include/text.php:1730 -msgid "Link" -msgstr "" - -#: ../../include/text.php:1816 -msgid "Poll has ended." -msgstr "" - -#: ../../include/text.php:1819 -#, php-format -msgid "Poll ends: %s" -msgstr "" - -#: ../../include/text.php:1824 -msgid "vote" -msgstr "" - -#: ../../include/text.php:1836 -msgid "Download binary/encrypted content" -msgstr "" - -#: ../../include/text.php:1960 -msgid "Page layout" -msgstr "" - -#: ../../include/text.php:1960 -msgid "You can create your own with the layouts tool" -msgstr "" - -#: ../../include/text.php:1970 -msgid "BBcode" -msgstr "" - -#: ../../include/text.php:1971 -msgid "HTML" -msgstr "" - -#: ../../include/text.php:1972 -msgid "Markdown" -msgstr "" - -#: ../../include/text.php:1973 -msgid "Text" -msgstr "" - -#: ../../include/text.php:1974 -msgid "Comanche Layout" -msgstr "" - -#: ../../include/text.php:1979 -msgid "PHP" -msgstr "" - -#: ../../include/text.php:1988 -msgid "Page content type" -msgstr "" - -#: ../../include/text.php:2121 -msgid "activity" -msgstr "" - -#: ../../include/text.php:2225 -msgid "a-z, 0-9, -, and _ only" -msgstr "" - -#: ../../include/text.php:2552 -msgid "Design Tools" -msgstr "" - -#: ../../include/text.php:2558 -msgid "Pages" -msgstr "" - -#: ../../include/text.php:2580 -msgid "Import website..." -msgstr "" - -#: ../../include/text.php:2581 -msgid "Select folder to import" -msgstr "" - -#: ../../include/text.php:2582 -msgid "Import from a zipped folder:" -msgstr "" - -#: ../../include/text.php:2583 -msgid "Import from cloud files:" -msgstr "" - -#: ../../include/text.php:2584 -msgid "/cloud/channel/path/to/folder" -msgstr "" - -#: ../../include/text.php:2585 -msgid "Enter path to website files" -msgstr "" - -#: ../../include/text.php:2586 -msgid "Select folder" -msgstr "" - -#: ../../include/text.php:2587 -msgid "Export website..." -msgstr "" - -#: ../../include/text.php:2588 -msgid "Export to a zip file" -msgstr "" - -#: ../../include/text.php:2589 -msgid "website.zip" -msgstr "" - -#: ../../include/text.php:2590 -msgid "Enter a name for the zip file." -msgstr "" - -#: ../../include/text.php:2591 -msgid "Export to cloud files" -msgstr "" - -#: ../../include/text.php:2592 -msgid "/path/to/export/folder" -msgstr "" - -#: ../../include/text.php:2593 -msgid "Enter a path to a cloud files destination." -msgstr "" - -#: ../../include/text.php:2594 -msgid "Specify folder" -msgstr "" - -#: ../../include/import.php:30 -msgid "Unable to import a removed channel." -msgstr "" - -#: ../../include/import.php:57 -msgid "" -"A channel with these settings was discovered and is not usable as it was " -"removed or reserved for system use. Import failed." -msgstr "" - -#: ../../include/import.php:66 -msgid "" -"Cannot create a duplicate channel identifier on this system. Import failed." -msgstr "" - -#: ../../include/import.php:87 -msgid "Unable to create a unique channel address. Import failed." -msgstr "" - -#: ../../include/import.php:133 -msgid "Cloned channel not found. Import failed." -msgstr "" - -#: ../../include/auth.php:196 -msgid "Delegation session ended." -msgstr "" - -#: ../../include/auth.php:200 -msgid "Logged out." -msgstr "" - -#: ../../include/auth.php:296 -msgid "Email validation is incomplete. Please check your email." -msgstr "" - -#: ../../include/auth.php:312 -msgid "Failed authentication" -msgstr "" - -#: ../../include/auth.php:322 -msgid "Login failed." -msgstr "" - -#: ../../include/acl_selectors.php:90 -msgid "(List)" -msgstr "" - -#: ../../include/acl_selectors.php:96 -msgid "My connections" -msgstr "" - -#: ../../include/acl_selectors.php:96 ../../include/acl_selectors.php:99 -#: ../../include/acl_selectors.php:102 -msgid "(Virtual List)" -msgstr "" - -#: ../../include/acl_selectors.php:99 -msgid "My ActivityPub connections" -msgstr "" - -#: ../../include/acl_selectors.php:102 -msgid "My Zot connections" -msgstr "" - -#: ../../include/acl_selectors.php:114 -msgid "(Group)" -msgstr "" - -#: ../../include/acl_selectors.php:128 -msgid "Who can see this?" -msgstr "" - -#: ../../include/acl_selectors.php:129 -msgid "Custom selection" -msgstr "" - -#: ../../include/acl_selectors.php:130 -msgid "" -"Select \"Show\" to allow viewing. \"Don't show\" lets you override and limit " -"the scope of \"Show\"." -msgstr "" - -#: ../../include/acl_selectors.php:131 -msgid "Show" -msgstr "" - -#: ../../include/acl_selectors.php:132 -msgid "Don't show" -msgstr "" - -#: ../../include/acl_selectors.php:165 -msgid "" -"Post permissions cannot be changed after a post is shared.
These " -"permissions set who is allowed to view the post." -msgstr "" - -#: ../../include/items.php:1007 -msgid "(Unknown)" -msgstr "" - -#: ../../include/items.php:1190 -msgid "Visible to anybody on the internet." -msgstr "" - -#: ../../include/items.php:1192 -msgid "Visible to you only." -msgstr "" - -#: ../../include/items.php:1194 -msgid "Visible to anybody in this network." -msgstr "" - -#: ../../include/items.php:1196 -msgid "Visible to anybody authenticated." -msgstr "" - -#: ../../include/items.php:1198 -#, php-format -msgid "Visible to anybody on %s." -msgstr "" - -#: ../../include/items.php:1200 -msgid "Visible to all connections." -msgstr "" - -#: ../../include/items.php:1202 -msgid "Visible to approved connections." -msgstr "" - -#: ../../include/items.php:1204 -msgid "Visible to specific connections." -msgstr "" - -#: ../../include/items.php:4044 -msgid "Privacy group is empty." -msgstr "" - -#: ../../include/items.php:4422 -msgid "profile photo" -msgstr "" - -#: ../../include/items.php:4626 -#, php-format -msgid "[Edited %s]" -msgstr "" - -#: ../../include/items.php:4626 -msgctxt "edit_activity" -msgid "Post" -msgstr "" - -#: ../../include/items.php:4626 -msgctxt "edit_activity" -msgid "Comment" -msgstr "" - -#: ../../include/js_strings.php:5 -msgid "Delete this item?" -msgstr "" - -#: ../../include/js_strings.php:8 -#, php-format -msgid "%s show less" -msgstr "" - -#: ../../include/js_strings.php:9 -#, php-format -msgid "%s expand" -msgstr "" - -#: ../../include/js_strings.php:10 -#, php-format -msgid "%s collapse" -msgstr "" - -#: ../../include/js_strings.php:11 -msgid "Password too short" -msgstr "" - -#: ../../include/js_strings.php:12 -msgid "Passwords do not match" -msgstr "" - -#: ../../include/js_strings.php:13 -msgid "everybody" -msgstr "" - -#: ../../include/js_strings.php:14 -msgid "Secret Passphrase" -msgstr "" - -#: ../../include/js_strings.php:15 -msgid "Passphrase hint" -msgstr "" - -#: ../../include/js_strings.php:16 -msgid "Notice: Permissions have changed but have not yet been submitted." -msgstr "" - -#: ../../include/js_strings.php:17 -msgid "close all" -msgstr "" - -#: ../../include/js_strings.php:18 -msgid "Nothing new here" -msgstr "" - -#: ../../include/js_strings.php:19 -msgid "Rate This Channel (this is public)" -msgstr "" - -#: ../../include/js_strings.php:21 -msgid "Describe (optional)" -msgstr "" - -#: ../../include/js_strings.php:23 -msgid "Please enter a link URL" -msgstr "" - -#: ../../include/js_strings.php:24 -msgid "Unsaved changes. Are you sure you wish to leave this page?" -msgstr "" - -#: ../../include/js_strings.php:26 -msgid "lovely" -msgstr "" - -#: ../../include/js_strings.php:27 -msgid "wonderful" -msgstr "" - -#: ../../include/js_strings.php:28 -msgid "fantastic" -msgstr "" - -#: ../../include/js_strings.php:29 -msgid "great" -msgstr "" - -#: ../../include/js_strings.php:30 -msgid "" -"Your chosen nickname was either already taken or not valid. Please use our " -"suggestion (" -msgstr "" - -#: ../../include/js_strings.php:31 -msgid ") or enter a new one." -msgstr "" - -#: ../../include/js_strings.php:32 -msgid "Thank you, this nickname is valid." -msgstr "" - -#: ../../include/js_strings.php:33 -msgid "A channel name is required." -msgstr "" - -#: ../../include/js_strings.php:34 -msgid "This is a " -msgstr "" - -#: ../../include/js_strings.php:35 -msgid " channel name" -msgstr "" - -#: ../../include/js_strings.php:36 -msgid "Pinned" -msgstr "" - -#: ../../include/js_strings.php:44 -msgid "timeago.prefixAgo" -msgstr "" - -#: ../../include/js_strings.php:45 -msgid "timeago.prefixFromNow" -msgstr "" - -#: ../../include/js_strings.php:46 -msgid "timeago.suffixAgo" -msgstr "" - -#: ../../include/js_strings.php:47 -msgid "timeago.suffixFromNow" -msgstr "" - -#: ../../include/js_strings.php:50 -msgid "less than a minute" -msgstr "" - -#: ../../include/js_strings.php:51 -msgid "about a minute" -msgstr "" - -#: ../../include/js_strings.php:52 -#, php-format -msgid "%d minutes" -msgstr "" - -#: ../../include/js_strings.php:53 -msgid "about an hour" -msgstr "" - -#: ../../include/js_strings.php:54 -#, php-format -msgid "about %d hours" -msgstr "" - -#: ../../include/js_strings.php:55 -msgid "a day" -msgstr "" - -#: ../../include/js_strings.php:56 -#, php-format -msgid "%d days" -msgstr "" - -#: ../../include/js_strings.php:57 -msgid "about a month" -msgstr "" - -#: ../../include/js_strings.php:58 -#, php-format -msgid "%d months" -msgstr "" - -#: ../../include/js_strings.php:59 -msgid "about a year" -msgstr "" - -#: ../../include/js_strings.php:60 -#, php-format -msgid "%d years" -msgstr "" - -#: ../../include/js_strings.php:61 -msgid " " -msgstr "" - -#: ../../include/js_strings.php:62 -msgid "timeago.numbers" -msgstr "" - -#: ../../include/js_strings.php:68 -msgctxt "long" -msgid "May" -msgstr "" - -#: ../../include/js_strings.php:76 -msgid "Jan" -msgstr "" - -#: ../../include/js_strings.php:77 -msgid "Feb" -msgstr "" - -#: ../../include/js_strings.php:78 -msgid "Mar" -msgstr "" - -#: ../../include/js_strings.php:79 -msgid "Apr" -msgstr "" - -#: ../../include/js_strings.php:80 -msgctxt "short" -msgid "May" -msgstr "" - -#: ../../include/js_strings.php:81 -msgid "Jun" -msgstr "" - -#: ../../include/js_strings.php:82 -msgid "Jul" -msgstr "" - -#: ../../include/js_strings.php:83 -msgid "Aug" -msgstr "" - -#: ../../include/js_strings.php:84 -msgid "Sep" -msgstr "" - -#: ../../include/js_strings.php:85 -msgid "Oct" -msgstr "" - -#: ../../include/js_strings.php:86 -msgid "Nov" -msgstr "" - -#: ../../include/js_strings.php:87 -msgid "Dec" -msgstr "" - -#: ../../include/js_strings.php:95 -msgid "Sun" -msgstr "" - -#: ../../include/js_strings.php:96 -msgid "Mon" +#: ../../view/theme/redbasic/php/config.php:107 +msgid "Set the background color of comments" msgstr "" -#: ../../include/js_strings.php:97 -msgid "Tue" +#: ../../view/theme/redbasic/php/config.php:108 +msgid "Set font-size for the entire application" msgstr "" -#: ../../include/js_strings.php:98 -msgid "Wed" +#: ../../view/theme/redbasic/php/config.php:108 +msgid "Examples: 1rem, 100%, 16px" msgstr "" -#: ../../include/js_strings.php:99 -msgid "Thu" +#: ../../view/theme/redbasic/php/config.php:109 +msgid "Set font-color for posts and comments" msgstr "" -#: ../../include/js_strings.php:100 -msgid "Fri" +#: ../../view/theme/redbasic/php/config.php:110 +msgid "Set radius of corners" msgstr "" -#: ../../include/js_strings.php:101 -msgid "Sat" +#: ../../view/theme/redbasic/php/config.php:110 +msgid "Example: 4px" msgstr "" -#: ../../include/js_strings.php:102 -msgctxt "calendar" -msgid "today" +#: ../../view/theme/redbasic/php/config.php:111 +msgid "Set shadow depth of photos" msgstr "" -#: ../../include/js_strings.php:103 -msgctxt "calendar" -msgid "month" +#: ../../view/theme/redbasic/php/config.php:112 +msgid "Set maximum width of content region in pixel" msgstr "" -#: ../../include/js_strings.php:104 -msgctxt "calendar" -msgid "week" +#: ../../view/theme/redbasic/php/config.php:112 +msgid "Leave empty for default width" msgstr "" -#: ../../include/js_strings.php:105 -msgctxt "calendar" -msgid "day" +#: ../../view/theme/redbasic/php/config.php:113 +msgid "Set size of conversation author photo" msgstr "" -#: ../../include/js_strings.php:106 -msgctxt "calendar" -msgid "All day" +#: ../../view/theme/redbasic/php/config.php:114 +msgid "Set size of followup author photos" msgstr "" -#: ../../cache/smarty3/compiled/f4f75679f7041af28e8797486bc652fb65771437_0.file.cover_photo.tpl.php:140 -#: ../../cache/smarty3/compiled/659ff1776e30a515258b5c54bf528e9f10e603e5_0.file.admin_cover_photo.tpl.php:143 +#: ../../store/[data]/smarty3/compiled/ac14d8b7b4a606fb8f9b8bf58de15e7cca1afd0c_0.file.cover_photo.tpl.php:140 +#: ../../cache/smarty3/compiled/ac14d8b7b4a606fb8f9b8bf58de15e7cca1afd0c_0.file.cover_photo.tpl.php:140 +#: ../../cache/smarty3/compiled/6de1ea2749ed8a619548e67d6462a252a0576f33_0.file.admin_cover_photo.tpl.php:142 msgid "Cover Photo" msgstr "" + +#: ../../extend/addon/a/ldapauth/ldapauth.php:72 +msgid "An account has been created for you." +msgstr "" + +#: ../../extend/addon/a/ldapauth/ldapauth.php:79 +msgid "Authentication successful but rejected: account creation is disabled." +msgstr "" + +#: ../../extend/addon/a/logrot/logrot.php:37 +msgid "Logfile archive directory" +msgstr "" + +#: ../../extend/addon/a/logrot/logrot.php:37 +msgid "Directory to store rotated logs" +msgstr "" + +#: ../../extend/addon/a/logrot/logrot.php:38 +msgid "Logfile size in bytes before rotating, example 10M" +msgstr "" + +#: ../../extend/addon/a/logrot/logrot.php:39 +msgid "Number of logfiles to retain" +msgstr "" + +#: ../../extend/addon/a/nsfw/nsfw.php:162 +msgid "Conversation muted" +msgstr "" + +#: ../../extend/addon/a/nsfw/nsfw.php:169 +msgid "Possible adult content" +msgstr "" + +#: ../../extend/addon/a/nsfw/nsfw.php:184 +#, php-format +msgid "%s - view" +msgstr "" + +#: ../../extend/addon/a/nsfw/Mod_Nsfw.php:20 +msgid "NSFW Settings saved." +msgstr "" + +#: ../../extend/addon/a/nsfw/Mod_Nsfw.php:30 +msgid "" +"This addon app looks in posts for the words/text you specify below, and " +"collapses any content containing those keywords so it is not displayed at " +"inappropriate times, such as sexual innuendo that may be improper in a work " +"setting. It is polite and recommended to tag any content containing nudity " +"with #NSFW. This filter can also match any other word/text you specify, and " +"can thereby be used as a general purpose content filter." +msgstr "" + +#: ../../extend/addon/a/nsfw/Mod_Nsfw.php:42 +msgid "Comma separated list of keywords to hide" +msgstr "" + +#: ../../extend/addon/a/nsfw/Mod_Nsfw.php:42 +msgid "Word, /regular-expression/, lang=xx, lang!=xx" +msgstr "" + +#: ../../extend/addon/a/nsfw/Mod_Nsfw.php:50 +msgid "Not Safe For Work Settings" +msgstr "" + +#: ../../extend/addon/a/nsfw/Mod_Nsfw.php:50 +msgid "General Purpose Content Filter" +msgstr "" + +#: ../../extend/addon/a/stream_order/Mod_Stream_Order.php:14 +msgid "" +"This addon app provides a selector on your stream page allowing you to " +"change the sort order of the page between 'recently commented' (default), " +"'posted order', or 'unthreaded' which displays single activities as received." +msgstr "" + +#: ../../extend/addon/a/zotpost/Mod_zotpost.php:24 +msgid "Channel is required." +msgstr "" + +#: ../../extend/addon/a/zotpost/Mod_zotpost.php:37 +msgid "Zotpost Settings saved." +msgstr "" + +#: ../../extend/addon/a/zotpost/Mod_zotpost.php:45 +msgid "" +"This addon app allows you to cross-post to other Zot services and channels. " +"After installing the app, select it to configure the destination settings " +"and preferences." +msgstr "" + +#: ../../extend/addon/a/zotpost/Mod_zotpost.php:65 +msgid "Zot server URL" +msgstr "" + +#: ../../extend/addon/a/zotpost/Mod_zotpost.php:65 +msgid "https://example.com" +msgstr "" + +#: ../../extend/addon/a/zotpost/Mod_zotpost.php:69 +msgid "Zot channel name" +msgstr "" + +#: ../../extend/addon/a/zotpost/Mod_zotpost.php:73 +msgid "Zot password" +msgstr "" + +#: ../../extend/addon/a/zotpost/Mod_zotpost.php:77 +msgid "Send public postings to Zot channel by default" +msgstr "" + +#: ../../extend/addon/a/zotpost/Mod_zotpost.php:81 +msgid "Zotpost Settings" +msgstr "" + +#: ../../extend/addon/a/zotpost/zotpost.php:40 +msgid "Post to Zot" +msgstr "" + +#: ../../extend/addon/a/rainbowtag/Mod_Rainbowtag.php:15 +msgid "Add some colour to tag clouds" +msgstr "" + +#: ../../extend/addon/a/rainbowtag/Mod_Rainbowtag.php:34 +msgid "Rainbow Tag" +msgstr "" + +#: ../../extend/addon/a/content_import/Mod_content_import.php:27 +msgid "No server specified" +msgstr "" + +#: ../../extend/addon/a/content_import/Mod_content_import.php:73 +msgid "Posts imported" +msgstr "" + +#: ../../extend/addon/a/content_import/Mod_content_import.php:113 +msgid "Files imported" +msgstr "" + +#: ../../extend/addon/a/content_import/Mod_content_import.php:122 +msgid "" +"This addon app copies existing content and file storage to a cloned/copied " +"channel. Once the app is installed, visit the newly installed app. This will " +"allow you to set the location of your original channel and an optional date " +"range of files/conversations to copy." +msgstr "" + +#: ../../extend/addon/a/content_import/Mod_content_import.php:136 +msgid "" +"This will import all your conversations and cloud files from a cloned " +"channel on another server. This may take a while if you have lots of posts " +"and or files." +msgstr "" + +#: ../../extend/addon/a/content_import/Mod_content_import.php:137 +msgid "Include posts" +msgstr "" + +#: ../../extend/addon/a/content_import/Mod_content_import.php:137 +msgid "Conversations, Articles, Cards, and other posted content" +msgstr "" + +#: ../../extend/addon/a/content_import/Mod_content_import.php:138 +msgid "Include files" +msgstr "" + +#: ../../extend/addon/a/content_import/Mod_content_import.php:138 +msgid "Files, Photos and other cloud storage" +msgstr "" + +#: ../../extend/addon/a/content_import/Mod_content_import.php:139 +msgid "Original Server base URL" +msgstr "" + +#: ../../extend/addon/a/content_import/Mod_content_import.php:140 +msgid "Since modified date yyyy-mm-dd" +msgstr "" + +#: ../../extend/addon/a/content_import/Mod_content_import.php:141 +msgid "Until modified date yyyy-mm-dd" +msgstr "" + +#: ../../extend/addon/a/openstreetmap/openstreetmap.php:154 +msgid "View Larger" +msgstr "" + +#: ../../extend/addon/a/openstreetmap/openstreetmap.php:224 +msgid "Tile Server URL" +msgstr "" + +#: ../../extend/addon/a/openstreetmap/openstreetmap.php:224 +msgid "" +"A list of public tile servers" +msgstr "" + +#: ../../extend/addon/a/openstreetmap/openstreetmap.php:225 +msgid "Nominatim (reverse geocoding) Server URL" +msgstr "" + +#: ../../extend/addon/a/openstreetmap/openstreetmap.php:225 +msgid "" +"A list of Nominatim servers" +msgstr "" + +#: ../../extend/addon/a/openstreetmap/openstreetmap.php:226 +msgid "Default zoom" +msgstr "" + +#: ../../extend/addon/a/openstreetmap/openstreetmap.php:226 +msgid "" +"The default zoom level. (1:world, 18:highest, also depends on tile server)" +msgstr "" + +#: ../../extend/addon/a/openstreetmap/openstreetmap.php:227 +msgid "Include marker on map" +msgstr "" + +#: ../../extend/addon/a/openstreetmap/openstreetmap.php:227 +msgid "Include a marker on the map." +msgstr "" + +#: ../../extend/addon/a/flashcards/Mod_Flashcards.php:51 +#: ../../extend/addon/a/faces/Mod_Faces.php:58 +msgid "Profile Unavailable." +msgstr "" + +#: ../../extend/addon/a/flashcards/Mod_Flashcards.php:218 +msgid "Not allowed." +msgstr "" + +#: ../../extend/addon/a/gallery/gallery.php:49 +msgid "Photo Gallery" +msgstr "" + +#: ../../extend/addon/a/gallery/Mod_Gallery.php:59 +msgid "Gallery App" +msgstr "" + +#: ../../extend/addon/a/gallery/Mod_Gallery.php:60 +msgid "A simple gallery for your photo albums" +msgstr "" + +#: ../../extend/addon/a/faces/faces.php:237 +msgid "Errors encountered deleting all rows of database table " +msgstr "" + +#: ../../extend/addon/a/faces/Mod_Faces.php:1694 +msgid "Face detection is not activated" +msgstr "" + +#: ../../extend/addon/a/faces/Mod_Faces.php:1704 +msgid "Face detection is still busy" +msgstr "" + +#: ../../extend/addon/a/donate/donate_widget.php:9 +msgid "" +"Your contributions fund the continuing development of our ground-breaking " +"work in ethical and safe social networking" +msgstr "" + +#: ../../extend/addon/a/donate/donate_widget.php:13 +msgid "One time donation" +msgstr "" + +#: ../../extend/addon/a/donate/donate_widget.php:14 +msgid "Or become a continuing sponsor" +msgstr "" + +#: ../../extend/addon/a/donate/donate_widget.php:15 +msgid "Donate" +msgstr "" + +#: ../../extend/addon/a/donate/donate_widget.php:16 +msgid "Recurring donation options" +msgstr "" + +#: ../../extend/addon/a/donate/donate_widget.php:17 +msgid "Sponsor" +msgstr "" + +#: ../../extend/addon/a/donate/donate_widget.php:21 +msgid "Support our work" +msgstr "" + +#: ../../boot.php:1634 +msgid "Create an account to access services and applications" +msgstr "" + +#: ../../boot.php:1658 +msgid "Login/Email" +msgstr "" + +#: ../../boot.php:1659 +msgid "Password" +msgstr "" + +#: ../../boot.php:1660 +msgid "Remember me" +msgstr "" + +#: ../../boot.php:1663 +msgid "Forgot your password?" +msgstr "" + +#: ../../boot.php:2445 +#, php-format +msgid "[$Projectname] Website SSL error for %s" +msgstr "" + +#: ../../boot.php:2450 +msgid "Website SSL certificate is not valid. Please correct." +msgstr "" + +#: ../../boot.php:2494 +#, php-format +msgid "[$Projectname] Cron tasks not running on %s" +msgstr "" + +#: ../../boot.php:2499 +msgid "Cron/Scheduled tasks not running." +msgstr "" From c7eea8264b1e2dfb57c9ae6bccbf5f35974dc914 Mon Sep 17 00:00:00 2001 From: nobody Date: Tue, 20 Oct 2020 17:59:03 -0700 Subject: [PATCH 04/22] whitespace --- Zotlabs/Daemon/Convo.php | 2 +- Zotlabs/Lib/Activity.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Zotlabs/Daemon/Convo.php b/Zotlabs/Daemon/Convo.php index dee2b44f1..51ab15ac5 100644 --- a/Zotlabs/Daemon/Convo.php +++ b/Zotlabs/Daemon/Convo.php @@ -1,4 +1,4 @@ - Date: Tue, 20 Oct 2020 18:03:37 -0700 Subject: [PATCH 05/22] wrong array path --- Zotlabs/Lib/Activity.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Zotlabs/Lib/Activity.php b/Zotlabs/Lib/Activity.php index 54b1e8415..cf4e6c4c1 100644 --- a/Zotlabs/Lib/Activity.php +++ b/Zotlabs/Lib/Activity.php @@ -2956,9 +2956,9 @@ class Activity { dbesc($parent[0]['owner_xchan']) ); if (! $x) { - $id = ((array_path_exists('obj/replies/id',$parent[0])) ? $parent[0]['obj']['replies']['id'] : false); + $id = ((array_path_exists('object/replies/id',$parent[0])) ? $parent[0]['object']['replies']['id'] : false); if (! $id) { - $id = ((array_path_exists('obj/replies',$parent[0]) && is_string($parent[0]['obj']['replies'])) ? $parent[0]['obj']['replies'] : false); + $id = ((array_path_exists('object/replies',$parent[0]) && is_string($parent[0]['object']['replies'])) ? $parent[0]['object']['replies'] : false); } if ($id) { Run::Summon( [ 'Convo', $id, $channel['channel_id'], $observer_hash ] ); From 00583e050c739ddec44e5fe6883154cf06505183 Mon Sep 17 00:00:00 2001 From: nobody Date: Tue, 20 Oct 2020 19:01:35 -0700 Subject: [PATCH 06/22] undo last change and increase logging for top-down conversation fetch --- Zotlabs/Lib/Activity.php | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/Zotlabs/Lib/Activity.php b/Zotlabs/Lib/Activity.php index cf4e6c4c1..38e6a7c0f 100644 --- a/Zotlabs/Lib/Activity.php +++ b/Zotlabs/Lib/Activity.php @@ -2948,6 +2948,7 @@ class Activity { } if ($fetch_parents && $parent && ! intval($parent[0]['item_private'])) { + logger('topfetch', LOGGER_DEBUG); // if the thread owner is a connnection, we will already receive any additional comments to their posts // but if they are not we can try to fetch others in the background $x = q("SELECT abook.*, xchan.* FROM abook left join xchan on abook_xchan = xchan_hash @@ -2956,9 +2957,11 @@ class Activity { dbesc($parent[0]['owner_xchan']) ); if (! $x) { - $id = ((array_path_exists('object/replies/id',$parent[0])) ? $parent[0]['object']['replies']['id'] : false); + logger('topfetch: ' . print_r($parent[0],true), LOGGER_DEBUG); + + $id = ((array_path_exists('obj/replies/id',$parent[0])) ? $parent[0]['obj']['replies']['id'] : false); if (! $id) { - $id = ((array_path_exists('object/replies',$parent[0]) && is_string($parent[0]['object']['replies'])) ? $parent[0]['object']['replies'] : false); + $id = ((array_path_exists('obj/replies',$parent[0]) && is_string($parent[0]['obj']['replies'])) ? $parent[0]['obj']['replies'] : false); } if ($id) { Run::Summon( [ 'Convo', $id, $channel['channel_id'], $observer_hash ] ); From 000ed1d779f33b76e76b1f332662e558de6877e2 Mon Sep 17 00:00:00 2001 From: nobody Date: Tue, 20 Oct 2020 21:42:26 -0700 Subject: [PATCH 07/22] modernise zot_probe --- Zotlabs/Module/Zot_probe.php | 32 ++++++++++++++++---------------- view/tpl/zot_probe.tpl | 10 ++++++++++ 2 files changed, 26 insertions(+), 16 deletions(-) create mode 100644 view/tpl/zot_probe.tpl diff --git a/Zotlabs/Module/Zot_probe.php b/Zotlabs/Module/Zot_probe.php index 128595abe..781a03808 100644 --- a/Zotlabs/Module/Zot_probe.php +++ b/Zotlabs/Module/Zot_probe.php @@ -10,31 +10,31 @@ use Zotlabs\Web\HTTPSig; class Zot_probe extends \Zotlabs\Web\Controller { function get() { - - $o .= '

Zot6 Probe Diagnostic

'; - - $o .= '
'; - $o .= 'Lookup URI:
'; - $o .= '
'; - - $o .= '

'; - - if(x($_GET,'addr')) { - $addr = $_GET['addr']; - $channel = (($_GET['auth']) ? \App::get_channel() : null); - if(strpos($addr,'x-zot:') === 0) { - $x = ZotURL::fetch($addr,$channel); + $o = replace_macros(get_markup_template('zot_probe.tpl'), [ + '$page_title' => t('Zot6 Probe Diagnostic'), + '$resource' => [ 'resource', t('Object URL') , $_REQUEST['resource'], EMPTY_STR ], + '$authf' => [ 'authf', t('Authenticated fetch'), $_REQUEST['authf'], EMPTY_STR, [ t('No'), t('Yes') ] ], + '$submit' => t('Submit') + ]); + + + if(x($_GET,'resource')) { + $resource = $_GET['resource']; + $channel = (($_GET['authf']) ? \App::get_channel() : null); + + if(strpos($resource,'x-zot:') === 0) { + $x = ZotURL::fetch($resource,$channel); } else { - $x = Zotfinger::exec($addr,$channel); + $x = Zotfinger::exec($resource,$channel); $o .= '
' . htmlspecialchars(print_array($x)) . '
'; $headers = 'Accept: application/x-zot+json, application/jrd+json, application/json'; $redirects = 0; - $x = z_fetch_url($addr,true,$redirects, [ 'headers' => [ $headers ]]); + $x = z_fetch_url($resource,true,$redirects, [ 'headers' => [ $headers ]]); } if($x['success']) { diff --git a/view/tpl/zot_probe.tpl b/view/tpl/zot_probe.tpl new file mode 100644 index 000000000..bd64cefbe --- /dev/null +++ b/view/tpl/zot_probe.tpl @@ -0,0 +1,10 @@ +

{{$page_title}}

+ +
+ {{include file="field_input.tpl" field=$resource}} + {{include file="field_checkbox.tpl" field=$authf}} + +
+
+
+ From ae79f1674fc156c87c0d6757fe834d8d9d50978c Mon Sep 17 00:00:00 2001 From: nobody Date: Tue, 20 Oct 2020 22:18:30 -0700 Subject: [PATCH 08/22] more debugging --- Zotlabs/Lib/Activity.php | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/Zotlabs/Lib/Activity.php b/Zotlabs/Lib/Activity.php index 38e6a7c0f..5c96960eb 100644 --- a/Zotlabs/Lib/Activity.php +++ b/Zotlabs/Lib/Activity.php @@ -2893,7 +2893,7 @@ class Activity { if ($is_child_node) { - $parent = q("select parent_mid from item where mid = '%s' and uid = %d limit 1", + $parent = q("select * from item where mid = '%s' and uid = %d limit 1", dbesc($item['parent_mid']), intval($item['uid']) ); @@ -2907,7 +2907,7 @@ class Activity { $fetch = (($fetch_parents) ? self::fetch_and_store_parents($channel,$observer_hash,$act,$item) : false); } if ($fetch) { - $parent = q("select parent_mid from item where mid = '%s' and uid = %d limit 1", + $parent = q("select * from item where mid = '%s' and uid = %d limit 1", dbesc($item['parent_mid']), intval($item['uid']) ); @@ -2957,8 +2957,11 @@ class Activity { dbesc($parent[0]['owner_xchan']) ); if (! $x) { - logger('topfetch: ' . print_r($parent[0],true), LOGGER_DEBUG); - + // determine if the top-level post provides a replies collection + if ($parent[0]['obj']) { + $parent[0]['obj'] = json_decode($parent[0]['obj'],true); + } + logger('topfetch: ' . print_r($parent[0],true), LOGGER_ALL); $id = ((array_path_exists('obj/replies/id',$parent[0])) ? $parent[0]['obj']['replies']['id'] : false); if (! $id) { $id = ((array_path_exists('obj/replies',$parent[0]) && is_string($parent[0]['obj']['replies'])) ? $parent[0]['obj']['replies'] : false); From fa0ca2afaebe66b869534f6d220cf360df5c91ad Mon Sep 17 00:00:00 2001 From: nobody Date: Tue, 20 Oct 2020 22:54:05 -0700 Subject: [PATCH 09/22] more work on topfetch and provide an animated avatar preference --- Zotlabs/Daemon/Convo.php | 4 +++- Zotlabs/Module/Profile_photo.php | 10 ++++++---- Zotlabs/Photo/PhotoDriver.php | 10 +++++----- Zotlabs/Photo/PhotoGd.php | 2 +- Zotlabs/Photo/PhotoImagick.php | 7 +++++-- include/photo_factory.php | 8 +++++--- 6 files changed, 25 insertions(+), 16 deletions(-) diff --git a/Zotlabs/Daemon/Convo.php b/Zotlabs/Daemon/Convo.php index 146c9eb5c..f07c7d2ae 100644 --- a/Zotlabs/Daemon/Convo.php +++ b/Zotlabs/Daemon/Convo.php @@ -47,7 +47,9 @@ class Convo { } $AS = new ActivityStreams($message); if ($AS->is_valid() && is_array($AS->obj)) { - $item = Activity::decode_note($AS,true); + // set client flag because comments will probably just be objects and not full blown activities + // and that lets us use implied_create + $item = Activity::decode_note($AS,true,true); Activity::store($channel,$contact['abook_xchan'],$AS,$item); } } diff --git a/Zotlabs/Module/Profile_photo.php b/Zotlabs/Module/Profile_photo.php index ce2ad047a..711f4a5a6 100644 --- a/Zotlabs/Module/Profile_photo.php +++ b/Zotlabs/Module/Profile_photo.php @@ -119,21 +119,23 @@ class Profile_photo extends Controller { 'created' => $base_image['created'], 'edited' => $base_image['edited'] ]; - + + $animated = get_config('system','animated_avatars',true); + $p['imgscale'] = PHOTO_RES_PROFILE_300; $p['photo_usage'] = (($is_default_profile) ? PHOTO_PROFILE : PHOTO_NORMAL); - $r1 = $im->storeThumbnail($p, PHOTO_RES_PROFILE_300); + $r1 = $im->storeThumbnail($p, PHOTO_RES_PROFILE_300, $animated); $im->scaleImage(80); $p['imgscale'] = PHOTO_RES_PROFILE_80; - $r2 = $im->storeThumbnail($p, PHOTO_RES_PROFILE_80); + $r2 = $im->storeThumbnail($p, PHOTO_RES_PROFILE_80, $animated); $im->scaleImage(48); $p['imgscale'] = PHOTO_RES_PROFILE_48; - $r3 = $im->storeThumbnail($p, PHOTO_RES_PROFILE_48); + $r3 = $im->storeThumbnail($p, PHOTO_RES_PROFILE_48, $animated); if ($r1 === false || $r2 === false || $r3 === false) { // if one failed, delete them all so we can start over. diff --git a/Zotlabs/Photo/PhotoDriver.php b/Zotlabs/Photo/PhotoDriver.php index d0bee0533..030ee2cc6 100644 --- a/Zotlabs/Photo/PhotoDriver.php +++ b/Zotlabs/Photo/PhotoDriver.php @@ -103,7 +103,7 @@ abstract class PhotoDriver { * * @return string A Binary String. */ - abstract public function imageString(); + abstract public function imageString($animations = true); abstract public function clearexif(); @@ -169,11 +169,11 @@ abstract class PhotoDriver { * @param string $path Path and filename where to save the image * @return boolean False on failure, otherwise true */ - public function saveImage($path) { + public function saveImage($path, $animated = true) { if (! $this->is_valid()) { return false; } - return (file_put_contents($path, $this->imageString()) ? true : false); + return (file_put_contents($path, $this->imageString($animated)) ? true : false); } /** @@ -522,7 +522,7 @@ abstract class PhotoDriver { * @return boolean|array */ - public function storeThumbnail($arr, $scale = 0) { + public function storeThumbnail($arr, $scale = 0, $animated = true) { $arr['imgscale'] = $scale; @@ -530,7 +530,7 @@ abstract class PhotoDriver { $channel = channelx_by_n($arr['uid']); $arr['os_storage'] = 1; $arr['os_syspath'] = 'store/' . $channel['channel_address'] . '/' . $arr['os_path'] . '-' . $scale; - if (! $this->saveImage($arr['os_syspath'])) { + if (! $this->saveImage($arr['os_syspath'], $animated)) { return false; } } diff --git a/Zotlabs/Photo/PhotoGd.php b/Zotlabs/Photo/PhotoGd.php index 7c80734ff..83c450968 100644 --- a/Zotlabs/Photo/PhotoGd.php +++ b/Zotlabs/Photo/PhotoGd.php @@ -157,7 +157,7 @@ class PhotoGd extends PhotoDriver { * {@inheritDoc} * @see \Zotlabs\Photo\PhotoDriver::imageString() */ - public function imageString() { + public function imageString($animated = true) { if (! $this->is_valid()) { return false; } diff --git a/Zotlabs/Photo/PhotoImagick.php b/Zotlabs/Photo/PhotoImagick.php index 48bb0d08d..56867866d 100644 --- a/Zotlabs/Photo/PhotoImagick.php +++ b/Zotlabs/Photo/PhotoImagick.php @@ -201,14 +201,17 @@ class PhotoImagick extends PhotoDriver { $this->doScaleImage($maxx, $maxy); } - public function imageString() { + public function imageString($animated = true) { if (! $this->is_valid()) { return false; } /* Clean it */ $this->image = $this->image->deconstructImages(); - return $this->image->getImagesBlob(); + if ($animated) { + return $this->image->getImagesBlob(); + } + return $this->image->getImageBlob(); } } diff --git a/include/photo_factory.php b/include/photo_factory.php index 39f9d5fe3..56e569ee5 100644 --- a/include/photo_factory.php +++ b/include/photo_factory.php @@ -346,6 +346,8 @@ function import_remote_xchan_photo($photo, $xchan, $thing = false) { $hash = basename($path); + $animated = get_config('system','animated_avatars',true); + $modified = ((file_exists($outfile)) ? @filemtime($outfile) : 0); // Maybe it's already a cached xchan photo @@ -415,7 +417,7 @@ function import_remote_xchan_photo($photo, $xchan, $thing = false) { $savepath = $path . '-' . $p['imgscale'] . (($thing) ? '.obj' : EMPTY_STR); $photo = z_root() . '/xp/' . $hash . '-' . $p['imgscale'] . (($thing) ? '.obj' : EMPTY_STR); - $r = $img->saveImage($savepath); + $r = $img->saveImage($savepath,$animated); if ($r === false) { $failed = true; } @@ -423,7 +425,7 @@ function import_remote_xchan_photo($photo, $xchan, $thing = false) { $p['imgscale'] = 5; $savepath = $path . '-' . $p['imgscale'] . (($thing) ? '.obj' : EMPTY_STR); $thumb = z_root() . '/xp/' . $hash . '-' . $p['imgscale'] . (($thing) ? '.obj' : EMPTY_STR); - $r = $img->saveImage($savepath); + $r = $img->saveImage($savepath,$animated); if ($r === false) { $failed = true; } @@ -431,7 +433,7 @@ function import_remote_xchan_photo($photo, $xchan, $thing = false) { $p['imgscale'] = 6; $savepath = $path . '-' . $p['imgscale'] . (($thing) ? '.obj' : EMPTY_STR); $micro = z_root() . '/xp/' . $hash . '-' . $p['imgscale'] . (($thing) ? '.obj' : EMPTY_STR); - $r = $img->saveImage($savepath); + $r = $img->saveImage($savepath,$animated); if ($r === false) { $failed = true; } From dafe879aac2cf9613fcc14338dd4b5eac6d0fd52 Mon Sep 17 00:00:00 2001 From: nobody Date: Wed, 21 Oct 2020 01:34:53 -0700 Subject: [PATCH 10/22] animated avatar setting --- Zotlabs/Module/Admin/Site.php | 4 ++++ view/tpl/admin_site.tpl | 1 + 2 files changed, 5 insertions(+) diff --git a/Zotlabs/Module/Admin/Site.php b/Zotlabs/Module/Admin/Site.php index c3797e33f..5a54a7a63 100644 --- a/Zotlabs/Module/Admin/Site.php +++ b/Zotlabs/Module/Admin/Site.php @@ -56,6 +56,7 @@ class Site { $disable_discover_tab = ((x($_POST,'disable_discover_tab')) ? False : True); $site_firehose = ((x($_POST,'site_firehose')) ? True : False); $open_pubstream = ((x($_POST,'open_pubstream')) ? True : False); + $animations = ((x($_POST,'animations')) ? True : False); $login_on_homepage = ((x($_POST,'login_on_homepage')) ? True : False); $enable_context_help = ((x($_POST,'enable_context_help')) ? True : False); $global_directory = ((x($_POST,'directory_submit_url')) ? notags(trim($_POST['directory_submit_url'])) : ''); @@ -116,6 +117,8 @@ class Site { set_config('system', 'pubstream_excl',$pub_excl); set_config('system', 'block_public_directory', $block_public_dir); set_config('system', 'max_imported_follow', $max_imported_follow); + set_config('system', 'animated_avatars', $animations); + if ($directory_server) { set_config('system','directory_server',$directory_server); @@ -315,6 +318,7 @@ class Site { '$site_firehose' => [ 'site_firehose', t('Site only Public stream'), get_config('system','site_firehose'), t('Provide access to public content originating only from this site if Public stream is disabled.') ], '$open_pubstream' => [ 'open_pubstream', t('Allow anybody on the internet to access the Public stream'), get_config('system','open_pubstream',0), t('Default is to only allow viewing by site members. Warning: this content is unmoderated.') ], '$show_like_counts' => [ 'show_like_counts', t('Show numbers of likes and dislikes in conversations'), get_config('system','show_like_counts',1), t('If disabled, the presence of likes and dislikes will be shown, but without totals.') ], + '$animations' => [ 'animations', t('Permit animated profile photos'), get_config('system','animated_avatars',true), t('changing this may take several days to work through the system') ], '$incl' => [ 'pub_incl',t('Only import Public stream posts with this text'), get_config('system','pubstream_incl'),t('words one per line or #tags or /patterns/ or lang=xx, leave blank to import all posts') ], '$excl' => [ 'pub_excl',t('Do not import Public stream posts with this text'), get_config('system','pubstream_excl'),t('words one per line or #tags or /patterns/ or lang=xx, leave blank to import all posts') ], '$max_imported_follow' => [ 'max_imported_follow', t('Maximum number of imported friends of friends'), get_config('system','max_imported_follow',10), t('Warning: higher numbers will improve the quality of friend suggestions and directory results but can exponentially increase resource usage') ], diff --git a/view/tpl/admin_site.tpl b/view/tpl/admin_site.tpl index 0d7819ee8..25459111a 100755 --- a/view/tpl/admin_site.tpl +++ b/view/tpl/admin_site.tpl @@ -110,6 +110,7 @@ {{include file="field_checkbox.tpl" field=$verify_email}} {{include file="field_checkbox.tpl" field=$show_like_counts}} {{include file="field_checkbox.tpl" field=$ap_contacts}} + {{include file="field_checkbox.tpl" field=$animations}} {{include file="field_checkbox.tpl" field=$block_public_dir}} {{include file="field_checkbox.tpl" field=$force_publish}} {{include file="field_checkbox.tpl" field=$disable_discover_tab}} From 6fbf30a58dc99474792a0f79a306aa71e38b487d Mon Sep 17 00:00:00 2001 From: nobody Date: Wed, 21 Oct 2020 01:35:43 -0700 Subject: [PATCH 11/22] minor tweak --- Zotlabs/Daemon/Convo.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Zotlabs/Daemon/Convo.php b/Zotlabs/Daemon/Convo.php index f07c7d2ae..7cc6453e8 100644 --- a/Zotlabs/Daemon/Convo.php +++ b/Zotlabs/Daemon/Convo.php @@ -49,7 +49,7 @@ class Convo { if ($AS->is_valid() && is_array($AS->obj)) { // set client flag because comments will probably just be objects and not full blown activities // and that lets us use implied_create - $item = Activity::decode_note($AS,true,true); + $item = Activity::decode_note($AS,null,true); Activity::store($channel,$contact['abook_xchan'],$AS,$item); } } From 38db595c127bdc7e099e2e2f1fbe061f5cfc49ab Mon Sep 17 00:00:00 2001 From: nobody Date: Wed, 21 Oct 2020 15:22:23 -0700 Subject: [PATCH 12/22] tagadelic app --- Zotlabs/Lib/Apps.php | 1 + Zotlabs/Module/Tagadelic.php | 48 ++++++++++++++++++++++++++++++++ Zotlabs/Widget/Catcloud_wall.php | 8 ++++-- Zotlabs/Widget/Tagcloud_wall.php | 9 ++++-- app/tagadelic.apd | 6 ++++ view/pdl/mod_channel.pdl | 2 +- 6 files changed, 67 insertions(+), 7 deletions(-) create mode 100644 Zotlabs/Module/Tagadelic.php create mode 100644 app/tagadelic.apd diff --git a/Zotlabs/Lib/Apps.php b/Zotlabs/Lib/Apps.php index a9d95fa15..966678fd0 100644 --- a/Zotlabs/Lib/Apps.php +++ b/Zotlabs/Lib/Apps.php @@ -344,6 +344,7 @@ class Apps { 'Photomap' => t('Photomap'), 'Events' => t('Events'), 'Tasks' => t('Tasks'), + 'Tagadelic' => t('Tagadelic'), 'No Comment' => t('No Comment'), 'Directory' => t('Directory'), 'Help' => t('Help'), diff --git a/Zotlabs/Module/Tagadelic.php b/Zotlabs/Module/Tagadelic.php new file mode 100644 index 000000000..d17fdb36a --- /dev/null +++ b/Zotlabs/Module/Tagadelic.php @@ -0,0 +1,48 @@ +' . $desc . ''; + + if(! ( local_channel() && Apps::system_app_installed(local_channel(),'Tagadelic'))) { + return $text; + } + + $desc = t('This app is installed. It displays a hashtag cloud on your channel homepage.'); + + $text = ''; + + + $c = new Comanche; + return $text . EOL . EOL . $c->widget('tagcloud_wall',EMPTY_STR); + + } + + +} diff --git a/Zotlabs/Widget/Catcloud_wall.php b/Zotlabs/Widget/Catcloud_wall.php index 3795987cc..4e06a8e1c 100644 --- a/Zotlabs/Widget/Catcloud_wall.php +++ b/Zotlabs/Widget/Catcloud_wall.php @@ -2,18 +2,20 @@ namespace Zotlabs\Widget; +use App; + class Catcloud_wall { function widget($arr) { - if((! \App::$profile['profile_uid']) || (! \App::$profile['channel_hash'])) + if((! App::$profile['profile_uid']) || (! App::$profile['channel_hash'])) return ''; - if(! perm_is_allowed(\App::$profile['profile_uid'], get_observer_hash(), 'view_stream')) + if(! perm_is_allowed(App::$profile['profile_uid'], get_observer_hash(), 'view_stream')) return ''; $limit = ((array_key_exists('limit',$arr)) ? intval($arr['limit']) : 50); - return catblock(\App::$profile['profile_uid'], $limit, '', \App::$profile['channel_hash'], 'wall'); + return catblock(App::$profile['profile_uid'], $limit, '', App::$profile['channel_hash'], 'wall'); } } diff --git a/Zotlabs/Widget/Tagcloud_wall.php b/Zotlabs/Widget/Tagcloud_wall.php index 7cff6ce09..d8d53bd10 100644 --- a/Zotlabs/Widget/Tagcloud_wall.php +++ b/Zotlabs/Widget/Tagcloud_wall.php @@ -2,18 +2,21 @@ namespace Zotlabs\Widget; +use App; +use Zotlabs\Lib\Apps; + class Tagcloud_wall { function widget($arr) { - if((! \App::$profile['profile_uid']) || (! \App::$profile['channel_hash'])) + if((! App::$profile['profile_uid']) || (! App::$profile['channel_hash'])) return ''; if(! perm_is_allowed(\App::$profile['profile_uid'], get_observer_hash(), 'view_stream')) return ''; $limit = ((array_key_exists('limit', $arr)) ? intval($arr['limit']) : 50); - if(feature_enabled(\App::$profile['profile_uid'], 'tagadelic')) - return wtagblock(\App::$profile['profile_uid'], $limit, '', \App::$profile['channel_hash'], 'wall'); + if(Apps::system_app_installed(App::$profile['profile_uid'], 'Tagadelic')) + return wtagblock(App::$profile['profile_uid'], $limit, '', App::$profile['channel_hash'], 'wall'); return ''; } diff --git a/app/tagadelic.apd b/app/tagadelic.apd new file mode 100644 index 000000000..afb8affee --- /dev/null +++ b/app/tagadelic.apd @@ -0,0 +1,6 @@ +version: 1 +url: $baseurl/tagadelic +requires: local_channel +name: Tagadelic +photo: icon:tags +categories: Networking diff --git a/view/pdl/mod_channel.pdl b/view/pdl/mod_channel.pdl index 5857fca95..b7696fbe9 100644 --- a/view/pdl/mod_channel.pdl +++ b/view/pdl/mod_channel.pdl @@ -5,7 +5,7 @@ [widget=fullprofile][/widget] [widget=common_friends][/widget] [widget=archive][var=wall]1[/var][/widget] -[widget=categories][/widget] +[widget=catcloud_wall][/widget] [widget=tagcloud_wall][var=limit]24[/var][/widget] [/region] [region=right_aside] From f4c7d9a9e321b246a55d9618687bdfb99bd9c664 Mon Sep 17 00:00:00 2001 From: nobody Date: Wed, 21 Oct 2020 15:37:58 -0700 Subject: [PATCH 13/22] syntax --- Zotlabs/Daemon/Convo.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Zotlabs/Daemon/Convo.php b/Zotlabs/Daemon/Convo.php index 7cc6453e8..d6414786d 100644 --- a/Zotlabs/Daemon/Convo.php +++ b/Zotlabs/Daemon/Convo.php @@ -45,11 +45,11 @@ class Convo { if (is_string($message)) { $message = Activity::fetch($message,$channel); } - $AS = new ActivityStreams($message); + // set client flag because comments will probably just be objects and not full blown activities + // and that lets us use implied_create + $AS = new ActivityStreams($message, null, true); if ($AS->is_valid() && is_array($AS->obj)) { - // set client flag because comments will probably just be objects and not full blown activities - // and that lets us use implied_create - $item = Activity::decode_note($AS,null,true); + $item = Activity::decode_note($AS,true); Activity::store($channel,$contact['abook_xchan'],$AS,$item); } } From 65c65377f172cf1f9ad3a535aada1800f65a6614 Mon Sep 17 00:00:00 2001 From: nobody Date: Wed, 21 Oct 2020 19:21:33 -0700 Subject: [PATCH 14/22] nodeinfo client library --- Zotlabs/Lib/Nodeinfo.php | 37 +++++++++++++++++++++++++++++++++++++ include/bbcode.php | 3 +-- 2 files changed, 38 insertions(+), 2 deletions(-) create mode 100644 Zotlabs/Lib/Nodeinfo.php diff --git a/Zotlabs/Lib/Nodeinfo.php b/Zotlabs/Lib/Nodeinfo.php new file mode 100644 index 000000000..2361c6ae0 --- /dev/null +++ b/Zotlabs/Lib/Nodeinfo.php @@ -0,0 +1,37 @@ +', $content[4]); - return sprintf('
%s
', $class, $content); + return sprintf('
%s
', $class, bb_code_protect($content)); } function md_italic($content) { @@ -1302,7 +1302,6 @@ function bbcode($Text, $options = []) { $Text = preg_replace('#(?$2',$Text); // The character check is so we don't mistake underscore in the middle of a code variable as an italic trigger. $Text = preg_replace_callback('#(^| )(?$2',$Text); $Text = preg_replace_callback('{ ^(.+?)[ ]*\n(=+|-+)[ ]*\n+ }mx','md_topheader', $Text); $Text = preg_replace_callback('#^(\#{1,6})\s+([^\#]+?)\s*\#*$#m','md_header', $Text); $Text = preg_replace_callback('#(^|\n)([`~]{3,})(?: *\.?([a-zA-Z0-9\-.]+))?\n+([\s\S]+?)\n+\2(\n|$)#','md_codeblock',$Text); From aa7f138a33097d6b4636a71cdb9ec7516397972d Mon Sep 17 00:00:00 2001 From: nobody Date: Wed, 21 Oct 2020 21:29:07 -0700 Subject: [PATCH 15/22] add a site entry from nodeinfo if available in actor_store --- Zotlabs/Lib/Activity.php | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) diff --git a/Zotlabs/Lib/Activity.php b/Zotlabs/Lib/Activity.php index 5c96960eb..214f4d5f0 100644 --- a/Zotlabs/Lib/Activity.php +++ b/Zotlabs/Lib/Activity.php @@ -13,6 +13,7 @@ use Zotlabs\Lib\Config; use Zotlabs\Lib\LibBlock; use Zotlabs\Lib\Markdown; use Zotlabs\Lib\Libzotdir; +use Zotlabs\Lib\Nodeinfo; use Emoji; require_once('include/html2bbcode.php'); @@ -1867,6 +1868,40 @@ class Activity { } } + $m = parse_url($url); + if ($m['scheme'] && $m['host']) { + $site_url = $m['scheme'] . '://' . $m['host']; + $ni = Nodeinfo::fetch($site_url); + if ($ni && is_array($ni)) { + $software = ((array_path_exists('software/name',$ni)) ? $ni['software']['name'] : ''); + $version = ((array_path_exists('software/version',$ni)) ? $ni['software']['version'] : ''); + + $r = q("select * from site where site_url = '%s'", + dbesc($site_url) + ); + if ($r) { + q("update site set site_type = %d, site_project = '%s', site_version = '%s' where site_url = '%s'", + intval(SITE_TYPE_NOTZOT), + dbesc($software), + dbesc($version), + dbesc($site_url) + ); + } + else { + site_store_lowlevel( + [ + 'site_url' => $site_url, + 'site_update' => datetime_convert(), + 'site_dead' => 0, + 'site_type' => SITE_TYPE_NOTZOT, + 'site_project' => $software, + 'site_version' => $version + ] + ); + } + } + } + Libzotdir::import_directory_profile($url,[ 'about' => $about, 'keywords' => $keywords, 'dob' => '0000-00-00' ], null,0,true); if ($collections) { From d3785db44773c48b75a476588e0c831ac176554f Mon Sep 17 00:00:00 2001 From: nobody Date: Thu, 22 Oct 2020 15:28:13 -0700 Subject: [PATCH 16/22] issue with summaries beginning with parens and markdown --- include/text.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/include/text.php b/include/text.php index cb6dd77b3..95c97dd2c 100644 --- a/include/text.php +++ b/include/text.php @@ -1617,7 +1617,8 @@ function prepare_body(&$item,$attach = false,$opts = false) { } else { if($item['summary']) { - $s .= prepare_text('[summary]' . $item['summary'] . '[/summary]' . $item['body'],$item['mimetype'],$opts); + // 8203 is a zero-width space so as not to trigger a markdown link if the summary starts with parentheses + $s .= prepare_text('[summary]​' . $item['summary'] . '[/summary]' . $item['body'],$item['mimetype'],$opts); } else { if ($item['html']) { From 15030b0c265140f799609eba7cb4d6c54ad16860 Mon Sep 17 00:00:00 2001 From: nobody Date: Thu, 22 Oct 2020 17:28:05 -0700 Subject: [PATCH 17/22] more work on site indexing --- Zotlabs/Lib/Queue.php | 2 +- Zotlabs/Module/Admin/Site.php | 2 +- boot.php | 2 +- util/messages.po | 1145 +++++++++++++++++---------------- 4 files changed, 589 insertions(+), 562 deletions(-) diff --git a/Zotlabs/Lib/Queue.php b/Zotlabs/Lib/Queue.php index 558b4f0ea..8f065653b 100644 --- a/Zotlabs/Lib/Queue.php +++ b/Zotlabs/Lib/Queue.php @@ -166,7 +166,7 @@ class Queue { 'site_url' => $base, 'site_update' => datetime_convert(), 'site_dead' => 0, - 'site_type' => intval(($outq['outq_driver'] === 'post') ? SITE_TYPE_NOTZOT : SITE_TYPE_UNKNOWN), + 'site_type' => ((in_array($outq['outq_driver'], [ 'post', 'activitypub' ])) ? SITE_TYPE_NOTZOT : SITE_TYPE_UNKNOWN), 'site_crypto' => '' ] ); diff --git a/Zotlabs/Module/Admin/Site.php b/Zotlabs/Module/Admin/Site.php index 5a54a7a63..eeb0525cc 100644 --- a/Zotlabs/Module/Admin/Site.php +++ b/Zotlabs/Module/Admin/Site.php @@ -318,7 +318,7 @@ class Site { '$site_firehose' => [ 'site_firehose', t('Site only Public stream'), get_config('system','site_firehose'), t('Provide access to public content originating only from this site if Public stream is disabled.') ], '$open_pubstream' => [ 'open_pubstream', t('Allow anybody on the internet to access the Public stream'), get_config('system','open_pubstream',0), t('Default is to only allow viewing by site members. Warning: this content is unmoderated.') ], '$show_like_counts' => [ 'show_like_counts', t('Show numbers of likes and dislikes in conversations'), get_config('system','show_like_counts',1), t('If disabled, the presence of likes and dislikes will be shown, but without totals.') ], - '$animations' => [ 'animations', t('Permit animated profile photos'), get_config('system','animated_avatars',true), t('changing this may take several days to work through the system') ], + '$animations' => [ 'animations', t('Permit animated profile photos'), get_config('system','animated_avatars',true), t('Changing this may take several days to work through the system') ], '$incl' => [ 'pub_incl',t('Only import Public stream posts with this text'), get_config('system','pubstream_incl'),t('words one per line or #tags or /patterns/ or lang=xx, leave blank to import all posts') ], '$excl' => [ 'pub_excl',t('Do not import Public stream posts with this text'), get_config('system','pubstream_excl'),t('words one per line or #tags or /patterns/ or lang=xx, leave blank to import all posts') ], '$max_imported_follow' => [ 'max_imported_follow', t('Maximum number of imported friends of friends'), get_config('system','max_imported_follow',10), t('Warning: higher numbers will improve the quality of friend suggestions and directory results but can exponentially increase resource usage') ], diff --git a/boot.php b/boot.php index 254f0f4fb..7489441dc 100755 --- a/boot.php +++ b/boot.php @@ -16,7 +16,7 @@ use Zotlabs\Daemon\Run; * @brief This file defines some global constants and includes the central App class. */ -define ( 'STD_VERSION', '20.10.21' ); +define ( 'STD_VERSION', '20.10.23' ); define ( 'ZOT_REVISION', '6.0' ); define ( 'DB_UPDATE_VERSION', 1243 ); diff --git a/util/messages.po b/util/messages.po index aeb6a4c96..e7ca7c264 100644 --- a/util/messages.po +++ b/util/messages.po @@ -6,9 +6,9 @@ #, fuzzy msgid "" msgstr "" -"Project-Id-Version: 20.10.21\n" +"Project-Id-Version: 20.10.22\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-10-20 16:25-0700\n" +"POT-Creation-Date: 2020-10-21 17:12-0700\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -167,8 +167,8 @@ msgstr "" #: ../../Zotlabs/Module/Profile.php:139 ../../Zotlabs/Module/Pdledit.php:29 #: ../../Zotlabs/Module/Setup.php:221 ../../Zotlabs/Module/Profiles.php:197 #: ../../Zotlabs/Module/Profiles.php:633 ../../Zotlabs/Module/Poke.php:155 -#: ../../Zotlabs/Module/Profile_photo.php:342 -#: ../../Zotlabs/Module/Profile_photo.php:356 +#: ../../Zotlabs/Module/Profile_photo.php:344 +#: ../../Zotlabs/Module/Profile_photo.php:358 #: ../../Zotlabs/Module/Photos.php:72 ../../Zotlabs/Module/Regmod.php:20 #: ../../Zotlabs/Module/Service_limits.php:11 #: ../../Zotlabs/Module/Settings.php:66 @@ -676,7 +676,7 @@ msgstr "" msgid "Channel Manager" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:333 ../../Zotlabs/Lib/Apps.php:375 +#: ../../Zotlabs/Lib/Apps.php:333 ../../Zotlabs/Lib/Apps.php:376 #: ../../Zotlabs/Widget/Notes.php:20 msgid "Notes" msgstr "" @@ -744,159 +744,163 @@ msgid "Tasks" msgstr "" #: ../../Zotlabs/Lib/Apps.php:347 +msgid "Tagadelic" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:348 msgid "No Comment" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:348 ../../Zotlabs/Module/Directory.php:433 +#: ../../Zotlabs/Lib/Apps.php:349 ../../Zotlabs/Module/Directory.php:433 msgid "Directory" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:349 ../../include/help.php:50 +#: ../../Zotlabs/Lib/Apps.php:350 ../../include/help.php:50 #: ../../include/nav.php:167 ../../include/nav.php:289 msgid "Help" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:350 +#: ../../Zotlabs/Lib/Apps.php:351 msgid "Mail" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:351 ../../Zotlabs/Module/Mood.php:152 +#: ../../Zotlabs/Lib/Apps.php:352 ../../Zotlabs/Module/Mood.php:152 msgid "Mood" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:352 ../../Zotlabs/Module/Poke.php:197 +#: ../../Zotlabs/Lib/Apps.php:353 ../../Zotlabs/Module/Poke.php:197 msgid "Poke" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:353 +#: ../../Zotlabs/Lib/Apps.php:354 msgid "Chat" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:354 ../../Zotlabs/Module/Connections.php:373 +#: ../../Zotlabs/Lib/Apps.php:355 ../../Zotlabs/Module/Connections.php:373 #: ../../Zotlabs/Module/Search.php:47 ../../Zotlabs/Widget/Sitesearch.php:31 #: ../../include/text.php:974 ../../include/text.php:986 #: ../../include/nav.php:174 ../../include/acl_selectors.php:133 msgid "Search" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:355 ../../Zotlabs/Widget/Stream_order.php:129 +#: ../../Zotlabs/Lib/Apps.php:356 ../../Zotlabs/Widget/Stream_order.php:129 msgid "Stream Order" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:356 +#: ../../Zotlabs/Lib/Apps.php:357 msgid "Probe" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:357 +#: ../../Zotlabs/Lib/Apps.php:358 msgid "Suggest" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:358 +#: ../../Zotlabs/Lib/Apps.php:359 msgid "Random Channel" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:359 +#: ../../Zotlabs/Lib/Apps.php:360 msgid "Invite" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:360 +#: ../../Zotlabs/Lib/Apps.php:361 msgid "Features" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:361 +#: ../../Zotlabs/Lib/Apps.php:362 msgid "Language" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:362 +#: ../../Zotlabs/Lib/Apps.php:363 msgid "Post" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:363 +#: ../../Zotlabs/Lib/Apps.php:364 #: ../../extend/addon/a/zotpost/Mod_zotpost.php:54 msgid "ZotPost" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:364 +#: ../../Zotlabs/Lib/Apps.php:365 msgid "Profile Photo" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:365 ../../Zotlabs/Lib/Libprofile.php:572 +#: ../../Zotlabs/Lib/Apps.php:366 ../../Zotlabs/Lib/Libprofile.php:572 #: ../../Zotlabs/Lib/Activity.php:2228 ../../Zotlabs/Lib/Activity.php:2231 #: ../../Zotlabs/Module/Profperm.php:117 msgid "Profile" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:366 +#: ../../Zotlabs/Lib/Apps.php:367 msgid "Profiles" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:367 ../../Zotlabs/Lib/AccessList.php:365 +#: ../../Zotlabs/Lib/Apps.php:368 ../../Zotlabs/Lib/AccessList.php:365 #: ../../Zotlabs/Widget/Activity_filter.php:136 ../../include/nav.php:91 msgid "Lists" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:368 ../../Zotlabs/Module/Settings/Channel.php:641 +#: ../../Zotlabs/Lib/Apps.php:369 ../../Zotlabs/Module/Settings/Channel.php:641 msgid "Notifications" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:369 +#: ../../Zotlabs/Lib/Apps.php:370 msgid "Order Apps" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:370 +#: ../../Zotlabs/Lib/Apps.php:371 msgid "CalDAV" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:371 +#: ../../Zotlabs/Lib/Apps.php:372 msgid "CardDAV" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:372 ../../Zotlabs/Module/Sources.php:105 +#: ../../Zotlabs/Lib/Apps.php:373 ../../Zotlabs/Module/Sources.php:105 #: ../../Zotlabs/Widget/Settings_menu.php:121 msgid "Channel Sources" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:373 ../../extend/addon/a/gallery/gallery.php:46 +#: ../../Zotlabs/Lib/Apps.php:374 ../../extend/addon/a/gallery/gallery.php:46 #: ../../extend/addon/a/gallery/Mod_Gallery.php:137 msgid "Gallery" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:374 +#: ../../Zotlabs/Lib/Apps.php:375 msgid "Guest Access" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:376 +#: ../../Zotlabs/Lib/Apps.php:377 msgid "OAuth Apps Manager" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:377 +#: ../../Zotlabs/Lib/Apps.php:378 msgid "OAuth2 Apps Manager" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:378 +#: ../../Zotlabs/Lib/Apps.php:379 msgid "PDL Editor" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:379 +#: ../../Zotlabs/Lib/Apps.php:380 #: ../../Zotlabs/Module/Settings/Permcats.php:100 #: ../../Zotlabs/Widget/Settings_menu.php:104 msgid "Permission Categories" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:380 +#: ../../Zotlabs/Lib/Apps.php:381 msgid "Premium Channel" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:381 ../../Zotlabs/Module/Pubstream.php:94 +#: ../../Zotlabs/Lib/Apps.php:382 ../../Zotlabs/Module/Pubstream.php:94 #: ../../Zotlabs/Widget/Notifications.php:128 msgid "Public Stream" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:382 +#: ../../Zotlabs/Lib/Apps.php:383 msgid "My Chatrooms" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:557 ../../Zotlabs/Module/Admin/Addons.php:451 +#: ../../Zotlabs/Lib/Apps.php:558 ../../Zotlabs/Module/Admin/Addons.php:451 #: ../../Zotlabs/Module/Cdav.php:1050 ../../Zotlabs/Module/Cdav.php:1365 #: ../../Zotlabs/Module/Connedit.php:865 ../../Zotlabs/Module/Profiles.php:801 #: ../../Zotlabs/Module/Settings/Oauth.php:43 @@ -906,15 +910,15 @@ msgstr "" msgid "Update" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:557 ../../Zotlabs/Module/Admin/Addons.php:420 +#: ../../Zotlabs/Lib/Apps.php:558 ../../Zotlabs/Module/Admin/Addons.php:420 msgid "Install" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:574 +#: ../../Zotlabs/Lib/Apps.php:575 msgid "Purchase" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:577 ../../Zotlabs/Lib/Libprofile.php:189 +#: ../../Zotlabs/Lib/Apps.php:578 ../../Zotlabs/Lib/Libprofile.php:189 #: ../../Zotlabs/Lib/Libprofile.php:193 ../../Zotlabs/Lib/ThreadItem.php:129 #: ../../Zotlabs/Module/Admin/Profs.php:175 ../../Zotlabs/Module/Blocks.php:164 #: ../../Zotlabs/Module/Connections.php:315 @@ -933,7 +937,7 @@ msgstr "" msgid "Edit" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:578 ../../Zotlabs/Lib/ThreadItem.php:155 +#: ../../Zotlabs/Lib/Apps.php:579 ../../Zotlabs/Lib/ThreadItem.php:155 #: ../../Zotlabs/Module/Admin/Profs.php:176 #: ../../Zotlabs/Module/Admin/Accounts.php:175 #: ../../Zotlabs/Module/Admin/Channels.php:156 @@ -953,27 +957,27 @@ msgstr "" msgid "Delete" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:579 +#: ../../Zotlabs/Lib/Apps.php:580 msgid "Undelete" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:589 +#: ../../Zotlabs/Lib/Apps.php:590 msgid "Add to app-tray" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:590 +#: ../../Zotlabs/Lib/Apps.php:591 msgid "Remove from app-tray" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:591 +#: ../../Zotlabs/Lib/Apps.php:592 msgid "Pin to navbar" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:592 +#: ../../Zotlabs/Lib/Apps.php:593 msgid "Unpin from navbar" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:1075 ../../Zotlabs/Lib/Apps.php:1164 +#: ../../Zotlabs/Lib/Apps.php:1076 ../../Zotlabs/Lib/Apps.php:1165 #: ../../Zotlabs/Lib/Activity.php:1696 ../../Zotlabs/Module/Cdav.php:853 #: ../../Zotlabs/Module/Cdav.php:854 ../../Zotlabs/Module/Cdav.php:861 #: ../../Zotlabs/Module/Embedphotos.php:216 ../../Zotlabs/Module/Photos.php:813 @@ -1608,7 +1612,7 @@ msgstr "" #: ../../Zotlabs/Module/Admin/Addons.php:436 #: ../../Zotlabs/Module/Admin/Channels.php:154 #: ../../Zotlabs/Module/Admin/Security.php:161 -#: ../../Zotlabs/Module/Admin/Site.php:285 ../../Zotlabs/Module/Cal.php:350 +#: ../../Zotlabs/Module/Admin/Site.php:288 ../../Zotlabs/Module/Cal.php:350 #: ../../Zotlabs/Module/Expire.php:46 ../../Zotlabs/Module/Connedit.php:830 #: ../../Zotlabs/Module/Appman.php:144 ../../Zotlabs/Module/Defperms.php:239 #: ../../Zotlabs/Module/Editpost.php:94 ../../Zotlabs/Module/Events.php:524 @@ -1625,7 +1629,7 @@ msgstr "" #: ../../Zotlabs/Module/Profiles.php:721 ../../Zotlabs/Module/Poke.php:215 #: ../../Zotlabs/Module/Photos.php:1076 ../../Zotlabs/Module/Photos.php:1116 #: ../../Zotlabs/Module/Photos.php:1234 ../../Zotlabs/Module/Affinity.php:83 -#: ../../Zotlabs/Module/Ap_probe.php:21 +#: ../../Zotlabs/Module/Zot_probe.php:18 ../../Zotlabs/Module/Ap_probe.php:21 #: ../../Zotlabs/Module/Settings/Account.php:104 #: ../../Zotlabs/Module/Settings/Featured.php:56 #: ../../Zotlabs/Module/Settings/Network.php:41 @@ -1728,7 +1732,7 @@ msgstr "" #: ../../Zotlabs/Lib/Libzotdir.php:167 ../../Zotlabs/Lib/Libzotdir.php:168 #: ../../Zotlabs/Lib/Libzotdir.php:169 ../../Zotlabs/Lib/Libzotdir.php:171 -#: ../../Zotlabs/Module/Admin/Site.php:251 ../../Zotlabs/Module/Api.php:99 +#: ../../Zotlabs/Module/Admin/Site.php:254 ../../Zotlabs/Module/Api.php:99 #: ../../Zotlabs/Module/Connedit.php:333 ../../Zotlabs/Module/Connedit.php:725 #: ../../Zotlabs/Module/Defperms.php:171 ../../Zotlabs/Module/Events.php:501 #: ../../Zotlabs/Module/Events.php:502 ../../Zotlabs/Module/Events.php:527 @@ -1737,7 +1741,8 @@ msgstr "" #: ../../Zotlabs/Module/Mitem.php:181 ../../Zotlabs/Module/Mitem.php:260 #: ../../Zotlabs/Module/Mitem.php:261 ../../Zotlabs/Module/Menu.php:165 #: ../../Zotlabs/Module/Menu.php:224 ../../Zotlabs/Module/Profiles.php:679 -#: ../../Zotlabs/Module/Photos.php:689 ../../Zotlabs/Module/Ap_probe.php:20 +#: ../../Zotlabs/Module/Photos.php:689 ../../Zotlabs/Module/Zot_probe.php:17 +#: ../../Zotlabs/Module/Ap_probe.php:20 #: ../../Zotlabs/Module/Settings/Display.php:94 #: ../../Zotlabs/Module/Settings/Channel.php:363 #: ../../Zotlabs/Module/Sources.php:122 ../../Zotlabs/Module/Sources.php:157 @@ -1754,7 +1759,7 @@ msgstr "" #: ../../Zotlabs/Lib/Libzotdir.php:167 ../../Zotlabs/Lib/Libzotdir.php:168 #: ../../Zotlabs/Lib/Libzotdir.php:169 ../../Zotlabs/Lib/Libzotdir.php:171 -#: ../../Zotlabs/Module/Admin/Site.php:253 ../../Zotlabs/Module/Api.php:98 +#: ../../Zotlabs/Module/Admin/Site.php:256 ../../Zotlabs/Module/Api.php:98 #: ../../Zotlabs/Module/Connedit.php:333 ../../Zotlabs/Module/Defperms.php:171 #: ../../Zotlabs/Module/Events.php:501 ../../Zotlabs/Module/Events.php:502 #: ../../Zotlabs/Module/Events.php:527 ../../Zotlabs/Module/Filestorage.php:236 @@ -1762,7 +1767,8 @@ msgstr "" #: ../../Zotlabs/Module/Mitem.php:181 ../../Zotlabs/Module/Mitem.php:260 #: ../../Zotlabs/Module/Mitem.php:261 ../../Zotlabs/Module/Menu.php:165 #: ../../Zotlabs/Module/Menu.php:224 ../../Zotlabs/Module/Profiles.php:679 -#: ../../Zotlabs/Module/Photos.php:689 ../../Zotlabs/Module/Ap_probe.php:20 +#: ../../Zotlabs/Module/Photos.php:689 ../../Zotlabs/Module/Zot_probe.php:17 +#: ../../Zotlabs/Module/Ap_probe.php:20 #: ../../Zotlabs/Module/Settings/Display.php:94 #: ../../Zotlabs/Module/Settings/Channel.php:363 #: ../../Zotlabs/Module/Sources.php:122 ../../Zotlabs/Module/Sources.php:157 @@ -1914,7 +1920,7 @@ msgstr "" #: ../../Zotlabs/Module/Admin/Addons.php:434 #: ../../Zotlabs/Module/Admin/Channels.php:152 #: ../../Zotlabs/Module/Admin/Security.php:128 -#: ../../Zotlabs/Module/Admin/Site.php:283 ../../Zotlabs/Module/Admin.php:172 +#: ../../Zotlabs/Module/Admin/Site.php:286 ../../Zotlabs/Module/Admin.php:172 msgid "Administration" msgstr "" @@ -2401,7 +2407,7 @@ msgstr "" #: ../../Zotlabs/Module/Fbrowser.php:63 ../../Zotlabs/Module/Fbrowser.php:85 #: ../../Zotlabs/Module/Card_edit.php:133 #: ../../Zotlabs/Module/Editblock.php:145 ../../Zotlabs/Module/Profiles.php:803 -#: ../../Zotlabs/Module/Profile_photo.php:509 +#: ../../Zotlabs/Module/Profile_photo.php:511 #: ../../Zotlabs/Module/Settings/Oauth.php:89 #: ../../Zotlabs/Module/Settings/Oauth.php:115 #: ../../Zotlabs/Module/Settings/Oauth2.php:106 @@ -2740,14 +2746,14 @@ msgstr "" #: ../../Zotlabs/Module/Admin/Cover_photo.php:198 #: ../../Zotlabs/Module/Admin/Profile_photo.php:143 #: ../../Zotlabs/Module/Cover_photo.php:198 -#: ../../Zotlabs/Module/Profile_photo.php:140 +#: ../../Zotlabs/Module/Profile_photo.php:142 msgid "Image resize failed." msgstr "" #: ../../Zotlabs/Module/Admin/Cover_photo.php:208 #: ../../Zotlabs/Module/Admin/Profile_photo.php:188 #: ../../Zotlabs/Module/Cover_photo.php:212 -#: ../../Zotlabs/Module/Profile_photo.php:223 ../../include/photos.php:196 +#: ../../Zotlabs/Module/Profile_photo.php:225 ../../include/photos.php:196 msgid "Unable to process image" msgstr "" @@ -2757,8 +2763,8 @@ msgstr "" #: ../../Zotlabs/Module/Admin/Profile_photo.php:392 #: ../../Zotlabs/Module/Cover_photo.php:368 #: ../../Zotlabs/Module/Cover_photo.php:384 -#: ../../Zotlabs/Module/Profile_photo.php:383 -#: ../../Zotlabs/Module/Profile_photo.php:431 +#: ../../Zotlabs/Module/Profile_photo.php:385 +#: ../../Zotlabs/Module/Profile_photo.php:433 msgid "Photo not available." msgstr "" @@ -2770,14 +2776,14 @@ msgstr "" #: ../../Zotlabs/Module/Admin/Cover_photo.php:371 #: ../../Zotlabs/Module/Admin/Profile_photo.php:462 #: ../../Zotlabs/Module/Cover_photo.php:422 -#: ../../Zotlabs/Module/Profile_photo.php:500 +#: ../../Zotlabs/Module/Profile_photo.php:502 msgid "Upload File:" msgstr "" #: ../../Zotlabs/Module/Admin/Cover_photo.php:372 #: ../../Zotlabs/Module/Admin/Profile_photo.php:463 #: ../../Zotlabs/Module/Cover_photo.php:423 -#: ../../Zotlabs/Module/Profile_photo.php:501 +#: ../../Zotlabs/Module/Profile_photo.php:503 msgid "Select a profile:" msgstr "" @@ -2790,7 +2796,7 @@ msgstr "" #: ../../Zotlabs/Module/Admin/Profile_photo.php:465 #: ../../Zotlabs/Module/Cover_photo.php:425 #: ../../Zotlabs/Module/Embedphotos.php:227 -#: ../../Zotlabs/Module/Profile_photo.php:503 +#: ../../Zotlabs/Module/Profile_photo.php:505 #: ../../Zotlabs/Module/Photos.php:704 ../../Zotlabs/Storage/Browser.php:411 #: ../../Zotlabs/Widget/Portfolio.php:110 ../../Zotlabs/Widget/Album.php:101 #: ../../Zotlabs/Widget/Cdav.php:146 ../../Zotlabs/Widget/Cdav.php:182 @@ -2803,15 +2809,15 @@ msgstr "" #: ../../Zotlabs/Module/Admin/Profile_photo.php:470 #: ../../Zotlabs/Module/Cover_photo.php:427 #: ../../Zotlabs/Module/Cover_photo.php:428 -#: ../../Zotlabs/Module/Profile_photo.php:507 -#: ../../Zotlabs/Module/Profile_photo.php:508 +#: ../../Zotlabs/Module/Profile_photo.php:509 +#: ../../Zotlabs/Module/Profile_photo.php:510 msgid "Use a photo from your albums" msgstr "" #: ../../Zotlabs/Module/Admin/Cover_photo.php:379 #: ../../Zotlabs/Module/Admin/Profile_photo.php:472 #: ../../Zotlabs/Module/Cover_photo.php:430 -#: ../../Zotlabs/Module/Profile_photo.php:510 +#: ../../Zotlabs/Module/Profile_photo.php:512 #: ../../include/conversation.php:1419 ../../include/conversation.php:1474 #: ../../include/conversation.php:1476 msgid "OK" @@ -2820,7 +2826,7 @@ msgstr "" #: ../../Zotlabs/Module/Admin/Cover_photo.php:380 #: ../../Zotlabs/Module/Admin/Profile_photo.php:473 #: ../../Zotlabs/Module/Cover_photo.php:431 -#: ../../Zotlabs/Module/Profile_photo.php:511 +#: ../../Zotlabs/Module/Profile_photo.php:513 #: ../../include/conversation.php:1334 msgid "Choose images to embed" msgstr "" @@ -2828,7 +2834,7 @@ msgstr "" #: ../../Zotlabs/Module/Admin/Cover_photo.php:381 #: ../../Zotlabs/Module/Admin/Profile_photo.php:474 #: ../../Zotlabs/Module/Cover_photo.php:432 -#: ../../Zotlabs/Module/Profile_photo.php:512 +#: ../../Zotlabs/Module/Profile_photo.php:514 #: ../../include/conversation.php:1335 msgid "Choose an album" msgstr "" @@ -2836,14 +2842,14 @@ msgstr "" #: ../../Zotlabs/Module/Admin/Cover_photo.php:382 #: ../../Zotlabs/Module/Admin/Profile_photo.php:475 #: ../../Zotlabs/Module/Cover_photo.php:433 -#: ../../Zotlabs/Module/Profile_photo.php:513 +#: ../../Zotlabs/Module/Profile_photo.php:515 msgid "Choose a different album" msgstr "" #: ../../Zotlabs/Module/Admin/Cover_photo.php:383 #: ../../Zotlabs/Module/Admin/Profile_photo.php:476 #: ../../Zotlabs/Module/Cover_photo.php:434 -#: ../../Zotlabs/Module/Profile_photo.php:514 +#: ../../Zotlabs/Module/Profile_photo.php:516 #: ../../include/conversation.php:1337 msgid "Error getting album list" msgstr "" @@ -2851,7 +2857,7 @@ msgstr "" #: ../../Zotlabs/Module/Admin/Cover_photo.php:384 #: ../../Zotlabs/Module/Admin/Profile_photo.php:477 #: ../../Zotlabs/Module/Cover_photo.php:435 -#: ../../Zotlabs/Module/Profile_photo.php:515 +#: ../../Zotlabs/Module/Profile_photo.php:517 #: ../../include/conversation.php:1338 msgid "Error getting photo link" msgstr "" @@ -2859,7 +2865,7 @@ msgstr "" #: ../../Zotlabs/Module/Admin/Cover_photo.php:385 #: ../../Zotlabs/Module/Admin/Profile_photo.php:478 #: ../../Zotlabs/Module/Cover_photo.php:436 -#: ../../Zotlabs/Module/Profile_photo.php:516 +#: ../../Zotlabs/Module/Profile_photo.php:518 #: ../../include/conversation.php:1339 msgid "Error getting album" msgstr "" @@ -2867,521 +2873,58 @@ msgstr "" #: ../../Zotlabs/Module/Admin/Cover_photo.php:387 #: ../../Zotlabs/Module/Admin/Profile_photo.php:480 #: ../../Zotlabs/Module/Cover_photo.php:438 -#: ../../Zotlabs/Module/Profile_photo.php:518 +#: ../../Zotlabs/Module/Profile_photo.php:520 msgid "Select previously uploaded photo" msgstr "" #: ../../Zotlabs/Module/Admin/Cover_photo.php:404 #: ../../Zotlabs/Module/Admin/Profile_photo.php:497 #: ../../Zotlabs/Module/Cover_photo.php:455 -#: ../../Zotlabs/Module/Profile_photo.php:535 +#: ../../Zotlabs/Module/Profile_photo.php:537 msgid "Crop Image" msgstr "" #: ../../Zotlabs/Module/Admin/Cover_photo.php:405 #: ../../Zotlabs/Module/Admin/Profile_photo.php:498 #: ../../Zotlabs/Module/Cover_photo.php:456 -#: ../../Zotlabs/Module/Profile_photo.php:536 +#: ../../Zotlabs/Module/Profile_photo.php:538 msgid "Please adjust the image cropping for optimum viewing." msgstr "" #: ../../Zotlabs/Module/Admin/Cover_photo.php:407 #: ../../Zotlabs/Module/Admin/Profile_photo.php:500 #: ../../Zotlabs/Module/Cover_photo.php:458 -#: ../../Zotlabs/Module/Profile_photo.php:538 +#: ../../Zotlabs/Module/Profile_photo.php:540 msgid "Done Editing" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:162 -msgid "Site settings updated." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:189 ../../include/text.php:3246 -#: ../../view/theme/redbasic/php/config.php:15 -msgid "Default" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:200 -#: ../../Zotlabs/Module/Settings/Display.php:124 -#, php-format -msgid "%s - (Incompatible)" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:207 -msgid "mobile" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:209 -msgid "experimental" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:211 -msgid "unsupported" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:252 -msgid "Yes - with approval" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:258 -msgid "My site is not a public server" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:259 -msgid "My site provides free public access" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:260 -msgid "My site provides paid public access" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:261 -msgid "My site provides free public access and premium paid plans" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:276 -msgid "Default permission role for new accounts" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:276 -msgid "" -"This role will be used for the first channel created after registration." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:284 ../../Zotlabs/Widget/Admin.php:22 -msgid "Site" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:286 -msgid "Site Configuration" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:287 -#: ../../Zotlabs/Module/Register.php:283 -msgid "Registration" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:288 -msgid "File upload" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:289 -msgid "Policies" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:290 -#: ../../Zotlabs/Widget/Findpeople.php:23 -msgid "Advanced" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:292 -msgid "Site name" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:293 -msgid "Administrator Information" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:293 -msgid "" -"Contact information for site administrators. Displayed on siteinfo page. " -"BBCode may be used here." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:294 ../../Zotlabs/Module/Siteinfo.php:33 -msgid "Site Information" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:294 -msgid "" -"Publicly visible description of this site. Displayed on siteinfo page. " -"BBCode may be used here." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:295 -msgid "System language" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:296 -msgid "System theme" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:296 -msgid "" -"Default system theme - may be over-ridden by user profiles - change theme settings" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:299 -msgid "ActivityPub protocol" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:299 -msgid "Provides access to software supporting the ActivityPub protocol." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:300 -msgid "Maximum image size" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:300 -msgid "" -"Maximum size in bytes of uploaded images. Default is 0, which means no " -"limits." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:301 -msgid "Cache all public images" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:301 -msgid "If disabled, proxy non-SSL images, but do not store locally" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:302 -msgid "Does this site allow new member registration?" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:303 -msgid "Invitation only" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:303 -msgid "" -"Only allow new member registrations with an invitation code. New member " -"registration must be allowed for this to work." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:304 -msgid "Minimum age" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:304 -msgid "Minimum age (in years) for who may register on this site." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:305 -msgid "Which best describes the types of account offered by this hub?" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:305 -msgid "" -"If a public server policy is selected, this information may be displayed on " -"the public server site list." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:306 -msgid "Register text" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:306 -msgid "Will be displayed prominently on the registration page." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:308 -msgid "Site homepage to show visitors (default: login box)" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:308 -msgid "" -"example: 'public' to show public stream, 'page/sys/home' to show a system " -"webpage called 'home' or 'include:home.html' to include a file." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:309 -msgid "Preserve site homepage URL" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:309 -msgid "" -"Present the site homepage in a frame at the original location instead of " -"redirecting" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:310 -msgid "Accounts abandoned after x days" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:310 -msgid "" -"Will not waste system resources polling external sites for abandonded " -"accounts. Enter 0 for no time limit." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:311 -msgid "Block directory from visitors" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:311 -msgid "Only allow authenticated access to directory." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:312 -msgid "Verify Email Addresses" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:312 -msgid "" -"Check to verify email addresses used in account registration (recommended)." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:313 -msgid "Force publish in directory" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:313 -msgid "" -"Check to force all profiles on this site to be listed in the site directory." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:314 -msgid "Public stream" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:314 -msgid "" -"Provide access to public content from other sites. Warning: this content is " -"unmoderated." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:315 -msgid "Site only Public stream" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:315 -msgid "" -"Provide access to public content originating only from this site if Public " -"stream is disabled." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:316 -msgid "Allow anybody on the internet to access the Public stream" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:316 -msgid "" -"Default is to only allow viewing by site members. Warning: this content is " -"unmoderated." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:317 -msgid "Show numbers of likes and dislikes in conversations" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:317 -msgid "" -"If disabled, the presence of likes and dislikes will be shown, but without " -"totals." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:318 -msgid "Only import Public stream posts with this text" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:318 -#: ../../Zotlabs/Module/Admin/Site.php:319 -msgid "" -"words one per line or #tags or /patterns/ or lang=xx, leave blank to import " -"all posts" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:319 -msgid "Do not import Public stream posts with this text" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:320 -msgid "Maximum number of imported friends of friends" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:320 -msgid "" -"Warning: higher numbers will improve the quality of friend suggestions and " -"directory results but can exponentially increase resource usage" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:321 -msgid "Login on Homepage" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:321 -msgid "" -"Present a login box to visitors on the home page if no other content has " -"been configured." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:322 -msgid "Enable context help" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:322 -msgid "" -"Display contextual help for the current page when the help button is pressed." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:323 -msgid "Reply-to email address for system generated email." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:324 -msgid "Sender (From) email address for system generated email." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:325 -msgid "Display name of email sender for system generated email." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:326 -msgid "Directory Server URL" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:326 -msgid "Default directory server" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:327 -msgid "Proxy user" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:328 -msgid "Proxy URL" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:329 -msgid "Network timeout" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:329 -msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:330 -msgid "Delivery interval" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:330 -msgid "" -"Delay background delivery processes by this many seconds to reduce system " -"load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 " -"for large dedicated servers." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:331 -msgid "Deliveries per process" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:331 -msgid "" -"Number of deliveries to attempt in a single operating system process. Adjust " -"if necessary to tune system performance. Recommend: 1-5." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:332 -msgid "Queue Threshold" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:332 -msgid "" -"Always defer immediate delivery if queue contains more than this number of " -"entries." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:333 -msgid "Poll interval" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:333 -msgid "" -"Delay background polling processes by this many seconds to reduce system " -"load. If 0, use delivery interval." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:334 -msgid "Path to ImageMagick convert program" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:334 -msgid "" -"If set, use this program to generate photo thumbnails for huge images ( > " -"4000 pixels in either dimension), otherwise memory exhaustion may occur. " -"Example: /usr/bin/convert" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:335 -msgid "Maximum Load Average" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:335 -msgid "" -"Maximum system load before delivery and poll processes are deferred - " -"default 50." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:336 -msgid "Expiration period in days for imported streams and cached images" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:336 -msgid "0 for no expiration of imported content" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:337 -msgid "" -"Do not expire any posts which have comments less than this many days ago" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:338 -msgid "" -"Public servers: Optional landing (marketing) webpage for new registrants" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:338 -#, php-format -msgid "Create this page first. Default is %s/register" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:339 -msgid "Page to display after creating a new channel" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:339 -msgid "Default: profiles" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:340 -msgid "Site location" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:340 -msgid "Region or country - shared with other sites" -msgstr "" - #: ../../Zotlabs/Module/Admin/Profile_photo.php:119 #: ../../Zotlabs/Module/Admin/Profile_photo.php:252 #: ../../Zotlabs/Module/Profile_photo.php:116 -#: ../../Zotlabs/Module/Profile_photo.php:287 -#: ../../include/photo_factory.php:525 +#: ../../Zotlabs/Module/Profile_photo.php:289 +#: ../../include/photo_factory.php:527 msgid "Profile Photos" msgstr "" #: ../../Zotlabs/Module/Admin/Profile_photo.php:184 -#: ../../Zotlabs/Module/Profile_photo.php:216 +#: ../../Zotlabs/Module/Profile_photo.php:218 msgid "" "Shift-reload the page or clear browser cache if the new photo does not " "display immediately." msgstr "" #: ../../Zotlabs/Module/Admin/Profile_photo.php:266 -#: ../../Zotlabs/Module/Profile_photo.php:301 +#: ../../Zotlabs/Module/Profile_photo.php:303 msgid "Image upload failed." msgstr "" #: ../../Zotlabs/Module/Admin/Profile_photo.php:285 -#: ../../Zotlabs/Module/Profile_photo.php:320 +#: ../../Zotlabs/Module/Profile_photo.php:322 msgid "Unable to process image." msgstr "" #: ../../Zotlabs/Module/Admin/Profile_photo.php:460 -#: ../../Zotlabs/Module/Profile_photo.php:498 +#: ../../Zotlabs/Module/Profile_photo.php:500 msgid "" "Your default profile photo is visible to anybody on the internet. Profile " "photos for alternate profiles will inherit the permissions of the profile" @@ -3402,10 +2945,481 @@ msgid "Change Site Logo" msgstr "" #: ../../Zotlabs/Module/Admin/Profile_photo.php:465 -#: ../../Zotlabs/Module/Profile_photo.php:503 +#: ../../Zotlabs/Module/Profile_photo.php:505 msgid "Use" msgstr "" +#: ../../Zotlabs/Module/Admin/Site.php:165 +msgid "Site settings updated." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:192 ../../include/text.php:3246 +#: ../../view/theme/redbasic/php/config.php:15 +msgid "Default" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:203 +#: ../../Zotlabs/Module/Settings/Display.php:124 +#, php-format +msgid "%s - (Incompatible)" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:210 +msgid "mobile" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:212 +msgid "experimental" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:214 +msgid "unsupported" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:255 +msgid "Yes - with approval" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:261 +msgid "My site is not a public server" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:262 +msgid "My site provides free public access" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:263 +msgid "My site provides paid public access" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:264 +msgid "My site provides free public access and premium paid plans" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:279 +msgid "Default permission role for new accounts" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:279 +msgid "" +"This role will be used for the first channel created after registration." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:287 ../../Zotlabs/Widget/Admin.php:22 +msgid "Site" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:289 +msgid "Site Configuration" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:290 +#: ../../Zotlabs/Module/Register.php:283 +msgid "Registration" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:291 +msgid "File upload" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:292 +msgid "Policies" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:293 +#: ../../Zotlabs/Widget/Findpeople.php:23 +msgid "Advanced" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:295 +msgid "Site name" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:296 +msgid "Administrator Information" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:296 +msgid "" +"Contact information for site administrators. Displayed on siteinfo page. " +"BBCode may be used here." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:297 ../../Zotlabs/Module/Siteinfo.php:33 +msgid "Site Information" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:297 +msgid "" +"Publicly visible description of this site. Displayed on siteinfo page. " +"BBCode may be used here." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:298 +msgid "System language" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:299 +msgid "System theme" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:299 +msgid "" +"Default system theme - may be over-ridden by user profiles - change theme settings" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:302 +msgid "ActivityPub protocol" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:302 +msgid "Provides access to software supporting the ActivityPub protocol." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:303 +msgid "Maximum image size" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:303 +msgid "" +"Maximum size in bytes of uploaded images. Default is 0, which means no " +"limits." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:304 +msgid "Cache all public images" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:304 +msgid "If disabled, proxy non-SSL images, but do not store locally" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:305 +msgid "Does this site allow new member registration?" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:306 +msgid "Invitation only" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:306 +msgid "" +"Only allow new member registrations with an invitation code. New member " +"registration must be allowed for this to work." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:307 +msgid "Minimum age" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:307 +msgid "Minimum age (in years) for who may register on this site." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:308 +msgid "Which best describes the types of account offered by this hub?" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:308 +msgid "" +"If a public server policy is selected, this information may be displayed on " +"the public server site list." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:309 +msgid "Register text" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:309 +msgid "Will be displayed prominently on the registration page." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:311 +msgid "Site homepage to show visitors (default: login box)" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:311 +msgid "" +"example: 'public' to show public stream, 'page/sys/home' to show a system " +"webpage called 'home' or 'include:home.html' to include a file." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:312 +msgid "Preserve site homepage URL" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:312 +msgid "" +"Present the site homepage in a frame at the original location instead of " +"redirecting" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:313 +msgid "Accounts abandoned after x days" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:313 +msgid "" +"Will not waste system resources polling external sites for abandonded " +"accounts. Enter 0 for no time limit." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:314 +msgid "Block directory from visitors" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:314 +msgid "Only allow authenticated access to directory." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:315 +msgid "Verify Email Addresses" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:315 +msgid "" +"Check to verify email addresses used in account registration (recommended)." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:316 +msgid "Force publish in directory" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:316 +msgid "" +"Check to force all profiles on this site to be listed in the site directory." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:317 +msgid "Public stream" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:317 +msgid "" +"Provide access to public content from other sites. Warning: this content is " +"unmoderated." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:318 +msgid "Site only Public stream" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:318 +msgid "" +"Provide access to public content originating only from this site if Public " +"stream is disabled." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:319 +msgid "Allow anybody on the internet to access the Public stream" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:319 +msgid "" +"Default is to only allow viewing by site members. Warning: this content is " +"unmoderated." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:320 +msgid "Show numbers of likes and dislikes in conversations" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:320 +msgid "" +"If disabled, the presence of likes and dislikes will be shown, but without " +"totals." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:321 +msgid "Permit animated profile photos" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:321 +msgid "Changing this may take several days to work through the system" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:322 +msgid "Only import Public stream posts with this text" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:322 +#: ../../Zotlabs/Module/Admin/Site.php:323 +msgid "" +"words one per line or #tags or /patterns/ or lang=xx, leave blank to import " +"all posts" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:323 +msgid "Do not import Public stream posts with this text" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:324 +msgid "Maximum number of imported friends of friends" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:324 +msgid "" +"Warning: higher numbers will improve the quality of friend suggestions and " +"directory results but can exponentially increase resource usage" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:325 +msgid "Login on Homepage" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:325 +msgid "" +"Present a login box to visitors on the home page if no other content has " +"been configured." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:326 +msgid "Enable context help" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:326 +msgid "" +"Display contextual help for the current page when the help button is pressed." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:327 +msgid "Reply-to email address for system generated email." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:328 +msgid "Sender (From) email address for system generated email." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:329 +msgid "Display name of email sender for system generated email." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:330 +msgid "Directory Server URL" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:330 +msgid "Default directory server" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:331 +msgid "Proxy user" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:332 +msgid "Proxy URL" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:333 +msgid "Network timeout" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:333 +msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:334 +msgid "Delivery interval" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:334 +msgid "" +"Delay background delivery processes by this many seconds to reduce system " +"load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 " +"for large dedicated servers." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:335 +msgid "Deliveries per process" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:335 +msgid "" +"Number of deliveries to attempt in a single operating system process. Adjust " +"if necessary to tune system performance. Recommend: 1-5." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:336 +msgid "Queue Threshold" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:336 +msgid "" +"Always defer immediate delivery if queue contains more than this number of " +"entries." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:337 +msgid "Poll interval" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:337 +msgid "" +"Delay background polling processes by this many seconds to reduce system " +"load. If 0, use delivery interval." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:338 +msgid "Path to ImageMagick convert program" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:338 +msgid "" +"If set, use this program to generate photo thumbnails for huge images ( > " +"4000 pixels in either dimension), otherwise memory exhaustion may occur. " +"Example: /usr/bin/convert" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:339 +msgid "Maximum Load Average" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:339 +msgid "" +"Maximum system load before delivery and poll processes are deferred - " +"default 50." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:340 +msgid "Expiration period in days for imported streams and cached images" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:340 +msgid "0 for no expiration of imported content" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:341 +msgid "" +"Do not expire any posts which have comments less than this many days ago" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:342 +msgid "" +"Public servers: Optional landing (marketing) webpage for new registrants" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:342 +#, php-format +msgid "Create this page first. Default is %s/register" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:343 +msgid "Page to display after creating a new channel" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:343 +msgid "Default: profiles" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:344 +msgid "Site location" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:344 +msgid "Region or country - shared with other sites" +msgstr "" + #: ../../Zotlabs/Module/Channel.php:49 ../../Zotlabs/Module/Chat.php:26 msgid "You must be logged in to see this page." msgstr "" @@ -7422,17 +7436,17 @@ msgstr "" msgid "Make this post private" msgstr "" -#: ../../Zotlabs/Module/Profile_photo.php:498 +#: ../../Zotlabs/Module/Profile_photo.php:500 msgid "" "Your profile photo is visible to anybody on the internet and may be " "distributed to other websites." msgstr "" -#: ../../Zotlabs/Module/Profile_photo.php:502 +#: ../../Zotlabs/Module/Profile_photo.php:504 msgid "Use Photo for Profile" msgstr "" -#: ../../Zotlabs/Module/Profile_photo.php:502 +#: ../../Zotlabs/Module/Profile_photo.php:504 msgid "Change Profile Photo" msgstr "" @@ -7678,6 +7692,18 @@ msgstr "" msgid "Connection added." msgstr "" +#: ../../Zotlabs/Module/Zot_probe.php:15 +msgid "Zot6 Probe Diagnostic" +msgstr "" + +#: ../../Zotlabs/Module/Zot_probe.php:16 ../../Zotlabs/Module/Ap_probe.php:19 +msgid "Object URL" +msgstr "" + +#: ../../Zotlabs/Module/Zot_probe.php:17 ../../Zotlabs/Module/Ap_probe.php:20 +msgid "Authenticated fetch" +msgstr "" + #: ../../Zotlabs/Module/Home.php:112 #, php-format msgid "Welcome to %s" @@ -7733,14 +7759,6 @@ msgstr "" msgid "ActivityPub Probe Diagnostic" msgstr "" -#: ../../Zotlabs/Module/Ap_probe.php:19 -msgid "Object URL" -msgstr "" - -#: ../../Zotlabs/Module/Ap_probe.php:20 -msgid "Authenticated fetch" -msgstr "" - #: ../../Zotlabs/Module/Tasks.php:102 msgid "This app provides a simple personal and task list." msgstr "" @@ -9194,6 +9212,15 @@ msgstr "" msgid "This app is installed. " msgstr "" +#: ../../Zotlabs/Module/Tagadelic.php:29 +msgid "This app displays a hashtag cloud on your channel homepage." +msgstr "" + +#: ../../Zotlabs/Module/Tagadelic.php:37 +msgid "" +"This app is installed. It displays a hashtag cloud on your channel homepage." +msgstr "" + #: ../../Zotlabs/Module/Content_filter.php:25 msgid "Content Filter settings updated." msgstr "" From 582534f57ddd90557951a951dd7296492a9e12d6 Mon Sep 17 00:00:00 2001 From: nobody Date: Sat, 24 Oct 2020 14:56:09 -0700 Subject: [PATCH 18/22] site page anomalies --- Zotlabs/Lib/Activity.php | 3 +-- Zotlabs/Widget/Site_projects.php | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/Zotlabs/Lib/Activity.php b/Zotlabs/Lib/Activity.php index 214f4d5f0..0256e58f7 100644 --- a/Zotlabs/Lib/Activity.php +++ b/Zotlabs/Lib/Activity.php @@ -1880,8 +1880,7 @@ class Activity { dbesc($site_url) ); if ($r) { - q("update site set site_type = %d, site_project = '%s', site_version = '%s' where site_url = '%s'", - intval(SITE_TYPE_NOTZOT), + q("update site set site_project = '%s', site_version = '%s' where site_url = '%s'", dbesc($software), dbesc($version), dbesc($site_url) diff --git a/Zotlabs/Widget/Site_projects.php b/Zotlabs/Widget/Site_projects.php index a18d88532..3dd0f392b 100644 --- a/Zotlabs/Widget/Site_projects.php +++ b/Zotlabs/Widget/Site_projects.php @@ -9,7 +9,7 @@ class Site_projects { - $r = q("select site_project, count(site_project) as total from site where site_project != '' and site_flags != 256 and site_dead = 0 group by site_project order by site_project desc"); + $r = q("select site_project, count(site_project) as total from site where site_project != '' and site_flags != 256 and site_dead = 0 and site_type = 0 group by site_project order by site_project desc"); $results = []; From 99cf3888872a87f3408fa7e50b2b2d52a9af4202 Mon Sep 17 00:00:00 2001 From: nobody Date: Sun, 25 Oct 2020 16:21:53 -0700 Subject: [PATCH 19/22] add webfinger and mailto to linkinfo --- Zotlabs/Module/Linkinfo.php | 25 ++++++++++++++++++++++--- 1 file changed, 22 insertions(+), 3 deletions(-) diff --git a/Zotlabs/Module/Linkinfo.php b/Zotlabs/Module/Linkinfo.php index c67b59fc8..4e526dda2 100644 --- a/Zotlabs/Module/Linkinfo.php +++ b/Zotlabs/Module/Linkinfo.php @@ -62,9 +62,28 @@ class Linkinfo extends Controller { killme(); } - if ((substr($url,0,1) != '/') && (substr($url,0,4) != 'http')) - $url = 'http://' . $url; - + $m = parse_url($url); + + if (! $m['scheme']) { + if (strpos($url,'@')) { + $xc = discover_by_webbie($url); + if ($xc) { + $x = q("select * from xchan where xchan_hash = '%s'", + dbesc($xc) + ); + if ($x) { + $url = $x['xchan_url']; + } + } + else { + echo $br . '[url=mailto:' . $url . ']' . $url . '[/url]' . $br; + killme(); + } + } + else { + $url = 'http://' . $url; + } + } if ($_GET['title']) $title = strip_tags(trim($_GET['title'])); From 7dbe6e184fc5473e61ad7998d343ba039cc08043 Mon Sep 17 00:00:00 2001 From: nobody Date: Sun, 25 Oct 2020 16:50:38 -0700 Subject: [PATCH 20/22] typo --- Zotlabs/Module/Linkinfo.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Zotlabs/Module/Linkinfo.php b/Zotlabs/Module/Linkinfo.php index 4e526dda2..22046cfc0 100644 --- a/Zotlabs/Module/Linkinfo.php +++ b/Zotlabs/Module/Linkinfo.php @@ -72,7 +72,7 @@ class Linkinfo extends Controller { dbesc($xc) ); if ($x) { - $url = $x['xchan_url']; + $url = $x[0]['xchan_url']; } } else { From 540a4b29dae8fea016eba38276e003f741cb1ccc Mon Sep 17 00:00:00 2001 From: nobody Date: Sun, 25 Oct 2020 18:15:51 -0700 Subject: [PATCH 21/22] improve escaping of AP actor objects --- Zotlabs/Lib/Activity.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Zotlabs/Lib/Activity.php b/Zotlabs/Lib/Activity.php index 0256e58f7..d768bfaad 100644 --- a/Zotlabs/Lib/Activity.php +++ b/Zotlabs/Lib/Activity.php @@ -1690,13 +1690,13 @@ class Activity { return; } - $name = $person_obj['name']; + $name = escape_tags($person_obj['name']); if (! $name) - $name = $person_obj['preferredUsername']; + $name = escape_tags($person_obj['preferredUsername']); if (! $name) - $name = t('Unknown'); + $name = escape_tags( t('Unknown')); - $username = $person_obj['preferredUsername']; + $username = escape_tags($person_obj['preferredUsername']); $h = parse_url($url); if ($h && $h['host']) { $username .= '@' . $h['host']; From d699b2a4b815aa398982319f18ff9fbb711e6a59 Mon Sep 17 00:00:00 2001 From: nobody Date: Sun, 25 Oct 2020 18:16:34 -0700 Subject: [PATCH 22/22] revision --- boot.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/boot.php b/boot.php index 7489441dc..7a87b23c6 100755 --- a/boot.php +++ b/boot.php @@ -16,7 +16,7 @@ use Zotlabs\Daemon\Run; * @brief This file defines some global constants and includes the central App class. */ -define ( 'STD_VERSION', '20.10.23' ); +define ( 'STD_VERSION', '20.10.26' ); define ( 'ZOT_REVISION', '6.0' ); define ( 'DB_UPDATE_VERSION', 1243 );