From a10f5e9e06a03789af8f08481409f0ac95059fed Mon Sep 17 00:00:00 2001 From: redmatrix Date: Thu, 9 Jun 2016 16:11:58 -0700 Subject: allow an exclusion for transmitting hidden file activities. There may be a better way to do this, but it was pointed out recently that transmitting some hidden activities might cause a problem. I cannot locate the conversation at the moment to summarise the exact issue. --- Zotlabs/Daemon/Notifier.php | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Zotlabs/Daemon/Notifier.php b/Zotlabs/Daemon/Notifier.php index 590be31ee..ebc9d83a5 100644 --- a/Zotlabs/Daemon/Notifier.php +++ b/Zotlabs/Daemon/Notifier.php @@ -278,7 +278,11 @@ class Notifier { logger('notifier: target item not forwardable: type ' . $target_item['item_type'], LOGGER_DEBUG); return; } - if(intval($target_item['item_unpublished']) || intval($target_item['item_delayed']) || intval($target_item['item_hidden'])) { + + // Check for non published items, but allow an exclusion for transmitting hidden file activities + + if(intval($target_item['item_unpublished']) || intval($target_item['item_delayed']) || + ( intval($target_item['item_hidden']) && ($target_item['obj_type'] !== ACTIVITY_OBJ_FILE))) { logger('notifier: target item not published, so not forwardable', LOGGER_DEBUG); return; } -- cgit v1.2.3 From 0dcea87b9944c106bce3e9604c8facf58fa9225f Mon Sep 17 00:00:00 2001 From: redmatrix Date: Thu, 9 Jun 2016 16:20:16 -0700 Subject: namespace issue with openid reverse auth --- Zotlabs/Module/Rmagic.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Zotlabs/Module/Rmagic.php b/Zotlabs/Module/Rmagic.php index bcdbf6c90..26b0c46a6 100644 --- a/Zotlabs/Module/Rmagic.php +++ b/Zotlabs/Module/Rmagic.php @@ -24,7 +24,7 @@ class Rmagic extends \Zotlabs\Web\Controller { } } - function post() { + function post() { $address = trim($_REQUEST['address']); @@ -34,13 +34,13 @@ class Rmagic extends \Zotlabs\Web\Controller { try { require_once('library/openid/openid.php'); - $openid = new LightOpenID(z_root()); + $openid = new \LightOpenID(z_root()); $openid->identity = $address; $openid->returnUrl = z_root() . '/openid'; $openid->required = array('namePerson/friendly', 'namePerson'); $openid->optional = array('namePerson/first','media/image/aspect11','media/image/default'); goaway($openid->authUrl()); - } catch (Exception $e) { + } catch (\Exception $e) { notice( t('We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID.').'

'. t('The error message was:').' '.$e->getMessage()); } @@ -82,7 +82,7 @@ class Rmagic extends \Zotlabs\Web\Controller { } - function get() { + function get() { $o = replace_macros(get_markup_template('rmagic.tpl'),array( '$title' => t('Remote Authentication'), -- cgit v1.2.3 From ee5372784e129ed7a162c7433f56fa3a1e877a67 Mon Sep 17 00:00:00 2001 From: redmatrix Date: Thu, 9 Jun 2016 16:45:53 -0700 Subject: remove the automatic ajax page load on pgdn key; it can load content much faster than you can page and potentially lead to memory exhaustion. --- view/js/main.js | 16 ---------------- 1 file changed, 16 deletions(-) diff --git a/view/js/main.js b/view/js/main.js index 15a6b4b8d..f279417d9 100644 --- a/view/js/main.js +++ b/view/js/main.js @@ -321,22 +321,6 @@ $(function() { return false; } } - if(event.keyCode == '34') { - if((pageHasMoreContent) && (! loadingPage)) { - $('#more').hide(); - $('#no-more').hide(); - - next_page++; - scroll_next = true; - loadingPage = true; - - if(($('.directory-end').length == 0) && ($('.photos-end').length == 0)) - liveUpdate(); - else - pageUpdate(); - return true; - } - } if(event.keyCode == '19' || (event.ctrlKey && event.which == '32')) { event.preventDefault(); -- cgit v1.2.3 From ed597146fa42a4187a9b0d4eabc42f42cf73bb2b Mon Sep 17 00:00:00 2001 From: redmatrix Date: Thu, 9 Jun 2016 18:31:42 -0700 Subject: Create the initial 1.8 changelog entry (subject to further changes) --- CHANGELOG | 69 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 69 insertions(+) diff --git a/CHANGELOG b/CHANGELOG index cf8386317..7ff7ba388 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,72 @@ +Hubzilla 1.8 + Administration: + Cleanup and resolve some edge cases with addon repository manager + Provide sort field and direction on all fields of account and channel administration tables + Rename 'user' administration to account administration to reflect its true purpose + Security: + Edited comments to private posts could lose their privacy settings under some circumstances + Provide zot-finger signatures to prevent a possible but rare exploit involving DNS spoofing and phishing + ACL selections: + Various improvements to the ACL editor to further simplify the concepts and make it more intuitive + Chat: + Notifications of chatroom activity using standard browser notification interfaces. + Themes: + Allow a theme:schema string to represent a valid theme name. This fixes issues with setting schemas on site themes. + Pubsites: + Show server role (identify UNO or basic sites as opposed to hubzilla pro) and link to statistics + Documentation: + Clarify privacy rights of commenters w/r/t conversation owners, as this policy is network dependent. + Account Cloning: + Regression on clone channel creation created a new channel name each time. + New issue (fixed) with directory creation on cloned file content + Content Rendering: + Add inline code (in addition to the existing code blocks) to BBcode + Add emoji reactions + Add emojis as extended smilies with auto-complete support + Emoji added as feature so it can be enabled/disabled and locked + Ability to configure the standard reactions available on a site basis + Disable 'convenience' ajax autoload on pgdn key, as it could lead to premature memory exhaustion + Photos: + Change album sort ordering, allow widgets and plugins to define other orderings + Apps: + Synchronise app list with changes to system apps + Preserve existing app categories on app updates/edits + Architecture: + Provide autoloaded class files and libraries for plugins. + Further refactoring of session driver to sort out some cookie anomolies + Experimental PDO database driver + Creation of Daemon Master class and port all daemon (background task) interfaces to use it + Create separate class for each of 'Cron', 'Cron daily', and 'Cron weekly'. + Always run a Cron maintenance task if not run in the last four hours + Refactor the template classes + Refactor the ConversationItem mess into ThreadItem and ThreadStream + Refactor Apps, Enotify, and Chat library code + Refactor the various Config libraries (Config, PConfig, XConfig, AConfig, AbConfig, and IConfig) + Created WebServer class for top level + Remove mcrypt dependencies (deprecated in PHP 7.1) + Remove all reserved (including merely 'not recommended') words as DB table column names + Provide mutex lock on DB logging to prevent recursion under rare failure modes. + Bugfixes: + Remove db_close function on page end - not needed and will not work with persistent DB connections. + Undefined ref_session_write + Some session functions needed to be static to work with CalDAV/CardDAV + CLI interface: argc and argv were reversed + HTML entities double encoded in edited titles + Prevent delivering to empty recipients + Sabre library setting some security headers for SAML after we've emitted HTML content + Always initialise miniApp (caused obscure warning message if not set) + Block 'sys' channels from being 'random profile' candidates + DB update failed email could be sent in the wrong language under rare circumstances + Openid remote authentication used incorrect namespace + Plugins: + CalDAV/CardDAV plugin provided + Issue sending Diaspora 'like' activities from sources that did not propagate the DCV + Allow 'superblock' to work across API calls from third party clients + statistics.json: use 'zot' as protocol + Ability to follow Diaspora tags + Parse issue with Diaspora reshare content + Chess: moved to main repo, ported to 1.8 + Hubzilla 1.6 Cleanup and standardise the interfaces to the "jot" editor Router re-written to support calling class object methods as controllers -- cgit v1.2.3 From 77442dfcdc6bc2dfd4b4f8d0c99c03370607f72b Mon Sep 17 00:00:00 2001 From: redmatrix Date: Thu, 9 Jun 2016 18:34:25 -0700 Subject: add safemode tool --- CHANGELOG | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG b/CHANGELOG index 7ff7ba388..08aa438f2 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -3,6 +3,7 @@ Hubzilla 1.8 Cleanup and resolve some edge cases with addon repository manager Provide sort field and direction on all fields of account and channel administration tables Rename 'user' administration to account administration to reflect its true purpose + 'safemode' tool to quickly disable and re-enable addons during a hypothetical upgrade crisis Security: Edited comments to private posts could lose their privacy settings under some circumstances Provide zot-finger signatures to prevent a possible but rare exploit involving DNS spoofing and phishing -- cgit v1.2.3 From 135d84ba37efad077bff4289b1b67238b288584d Mon Sep 17 00:00:00 2001 From: redmatrix Date: Thu, 9 Jun 2016 19:06:31 -0700 Subject: several "to-do" updates --- doc/roadmap.bb | 12 +----------- doc/roadmapv4.bb | 12 ++++++------ doc/to_do_code.bb | 7 ++----- 3 files changed, 9 insertions(+), 22 deletions(-) diff --git a/doc/roadmap.bb b/doc/roadmap.bb index f57c76b74..9ef9f146a 100644 --- a/doc/roadmap.bb +++ b/doc/roadmap.bb @@ -8,18 +8,8 @@ Roadmap for $Projectname V3 Crypto Convert E2EE to dynamic loading (on demand) using jQuery.getScript() [or other methods] to only load encryption libs when you require them. This should also support multiple encryption libraries (e.g. SJCL, others) triggered from the choice of algorithm and remain pluggable. -Diaspora - Convert core Diaspora federation code into a plugin. This presents a number of challenges since it touches and special cases a lot of core functionality. (HZ - in progress) - Subscriptions and business models - Build enough into core(/addons) to generate income (or at least try and cover costs) out of the box (in progress Habeas Codice) - -Merge all uploads into common DAV interface - Separate photo albums from photos and turn them into file directories. (HZ - done) - Upload everything direct to /store (HZ - done) - If photo, generate thumbnails and image resources (HZ - done) - Provide default upload folders with %y (and other?) macros for both photos and other file resources (HZ - done) - Allow "media" (anything that we can generate a thumbnail for) in the Photos section (and show thumbnails in the Files section where possible) (HZ - done) + Build enough into core(/addons) to generate income (or at least try and cover costs) out of the box Resolve the "every photo has an item" confusion, perhaps every file should also - but only if we can explain it and separate them conceptually. diff --git a/doc/roadmapv4.bb b/doc/roadmapv4.bb index 33a3384c5..419cd8d4c 100644 --- a/doc/roadmapv4.bb +++ b/doc/roadmapv4.bb @@ -9,20 +9,20 @@ Goals/Highlights: Focus on visual website design tools, widgets, and sharing mechanisms -App organisation. +[x] App organisation. -Conversion of core application to a composer format living under the namespace "Zotlabs" +[x] Conversion of core application to a composer format living under the namespace "Zotlabs" -Conversion of Modules to a more general purpose Controllers layout with DB/memory based +[x] Conversion of Modules to a more general purpose Controllers layout with DB/memory based controller routing as opposed to filesystem routing. -Conversion of core Zot Protocol to a class library +[x] (partial) Conversion of core Zot Protocol to a class library -Abstraction of nomadic identity so that sending/receiving to/from singleton networks to/from any clone works flawlessly - [b]provided[/b] the clone physically connected to that singleton identity is up. +[x] Abstraction of nomadic identity so that sending/receiving to/from singleton networks to/from any clone works flawlessly - [b]provided[/b] the clone physically connected to that singleton identity is up. [h3]Community Development[/h3] -CalDAV/CardDAV +[x] CalDAV/CardDAV E-Commerce diff --git a/doc/to_do_code.bb b/doc/to_do_code.bb index 577d0e66f..b1c4923b1 100644 --- a/doc/to_do_code.bb +++ b/doc/to_do_code.bb @@ -6,6 +6,7 @@ We need much more than this, but here are areas where developers can help. Pleas [li]Include TOS link in registration/verification email[/li] [li]Auto preview posts/comments (configurable timer kicks in the preview if not 0)[/li] [li]SAML 2.0 and OpenID Connect provider functionality[/li] +[li]relmeauth (aka indieauth) support[/li] [li]Create bug tracker module[/li] [li]Filing posts - provide a dropdown menu integrated with the 'post actions menu'[/li] [li]translation plugins - moses or apertium[/li] @@ -17,7 +18,6 @@ We need much more than this, but here are areas where developers can help. Pleas [li]Integrate the "open site" list with the register page[/li] [li]Support comments and member notes on documentation pages (to achieve an effect similar to php.net)[/li] [li]Support comments on webpages[/li] -[li]refactor the oembed client interface so that we can safely sandbox remote content[/li] [li]Write more webpage layouts[/li] [li]Write more webpage widgets[/li] [li]restricted access OAuth clients[/li] @@ -27,14 +27,11 @@ We need much more than this, but here are areas where developers can help. Pleas [li]External post connectors, add popular services[/li] [li]service classes - provide a pluggable subscription payment gateway for premium accounts[/li] [li]service classes - account overview page showing resources consumed by channel. With special consideration this page can also be accessed at a meta level by the site admin to drill down on problematic accounts/channels.[/li] -[li]implement CalDAV/CardDAV sync[/li] [li]Uploads - integrate #^[url=https://github.com/blueimp/jQuery-File-Upload]https://github.com/blueimp/jQuery-File-Upload[/url][/li] [li]API extensions, for Twitter API - search, friending, threading. For Red API, lots of stuff[/li] [li]Import channel from Diaspora/Friendica (Diaspora partially done)[/li] [li]MediaGoblin photo "crosspost" connector[/li] -[li]App taxonomy[/li] -[li]Customisable App collection pages[/li] -[li]replace the tinymce visual editor and/or make the visual editor pluggable and responsive to different output formats. We probably want library/bbedit for bbcode. This needs a fair bit of work to catch up with our "enhanced bbcode", but start with images, links, bold and highlight and work from there.[/li] +[li]provide a visual editor[/li] [li]Create mobile clients for the top platforms - which involves extending the API so that we can do stuff far beyond the current crop of Twitter/Statusnet clients. Ditto for mobile themes. We can probably use something like the Friendica Android app as a base to start from.[/li] [li]Implement owned and exchangeable "things".[/li] [li]Family Account creation - using service classes (an account holder can create a certain number of sub-accounts which are all tied to their subscription - if the subscription lapses they all go away).[/li] -- cgit v1.2.3 From 8f181bb18888db6bdd15d470717da4d53ea7606a Mon Sep 17 00:00:00 2001 From: redmatrix Date: Thu, 9 Jun 2016 20:28:37 -0700 Subject: change loglevel --- CHANGELOG | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG b/CHANGELOG index 08aa438f2..da071574c 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -64,7 +64,7 @@ Hubzilla 1.8 Issue sending Diaspora 'like' activities from sources that did not propagate the DCV Allow 'superblock' to work across API calls from third party clients statistics.json: use 'zot' as protocol - Ability to follow Diaspora tags + Issues fixed during testing of ability to follow Diaspora tags Parse issue with Diaspora reshare content Chess: moved to main repo, ported to 1.8 -- cgit v1.2.3 From bb3d56a0b2e3676e780b4b6dd4e1b31b211c7b5e Mon Sep 17 00:00:00 2001 From: redmatrix Date: Thu, 9 Jun 2016 22:07:27 -0700 Subject: foreach: invalid argument --- Zotlabs/Module/Acl.php | 28 +++++++++++++++------------- Zotlabs/Module/Admin.php | 2 +- 2 files changed, 16 insertions(+), 14 deletions(-) diff --git a/Zotlabs/Module/Acl.php b/Zotlabs/Module/Acl.php index 7bc197a93..2bc4ba62d 100644 --- a/Zotlabs/Module/Acl.php +++ b/Zotlabs/Module/Acl.php @@ -65,18 +65,20 @@ class Acl extends \Zotlabs\Web\Controller { intval($count), intval($start) ); - - foreach($r as $g){ - // logger('acl: group: ' . $g['gname'] . ' members: ' . group_get_members_xchan($g['id'])); - $groups[] = array( - "type" => "g", - "photo" => "images/twopeople.png", - "name" => $g['gname'], - "id" => $g['id'], - "xid" => $g['hash'], - "uids" => group_get_members_xchan($g['id']), - "link" => '' - ); + + if($r) { + foreach($r as $g){ + // logger('acl: group: ' . $g['gname'] . ' members: ' . group_get_members_xchan($g['id'])); + $groups[] = array( + "type" => "g", + "photo" => "images/twopeople.png", + "name" => $g['gname'], + "id" => $g['id'], + "xid" => $g['hash'], + "uids" => group_get_members_xchan($g['id']), + "link" => '' + ); + } } } @@ -204,7 +206,7 @@ class Acl extends \Zotlabs\Web\Controller { else $r = array(); - if(count($r)) { + if($r) { foreach($r as $g){ // remove RSS feeds from ACLs - they are inaccessible diff --git a/Zotlabs/Module/Admin.php b/Zotlabs/Module/Admin.php index 21ab7f6a7..085d13fd7 100644 --- a/Zotlabs/Module/Admin.php +++ b/Zotlabs/Module/Admin.php @@ -1738,7 +1738,7 @@ class Admin extends \Zotlabs\Web\Controller { // name, label, value, help string, extra data... '$debugging' => array('debugging', t("Debugging"),get_config('system','debugging'), ""), - '$logfile' => array('logfile', t("Log file"), get_config('system','logfile'), t("Must be writable by web server. Relative to your Red top-level directory.")), + '$logfile' => array('logfile', t("Log file"), get_config('system','logfile'), t("Must be writable by web server. Relative to your top-level webserver directory.")), '$loglevel' => array('loglevel', t("Log level"), get_config('system','loglevel'), "", $log_choices), '$form_security_token' => get_form_security_token('admin_logs'), -- cgit v1.2.3 From cf415a4312f3a926c3b080fb49042752441f23b4 Mon Sep 17 00:00:00 2001 From: redmatrix Date: Fri, 10 Jun 2016 01:18:52 -0700 Subject: strings update --- util/hmessages.po | 8006 +++++++++++++++++++++++++++-------------------------- 1 file changed, 4004 insertions(+), 4002 deletions(-) diff --git a/util/hmessages.po b/util/hmessages.po index 572114522..2ec494c7c 100644 --- a/util/hmessages.po +++ b/util/hmessages.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-06-03 00:02-0700\n" +"POT-Creation-Date: 2016-06-10 00:02-0700\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -21,7 +21,7 @@ msgstr "" msgid "parent" msgstr "" -#: ../../Zotlabs/Storage/Browser.php:131 ../../include/text.php:2605 +#: ../../Zotlabs/Storage/Browser.php:131 ../../include/text.php:2620 msgid "Collection" msgstr "" @@ -47,14 +47,14 @@ msgstr "" #: ../../Zotlabs/Storage/Browser.php:164 ../../Zotlabs/Module/Photos.php:798 #: ../../Zotlabs/Module/Photos.php:1243 ../../Zotlabs/Lib/Apps.php:486 -#: ../../Zotlabs/Lib/Apps.php:561 ../../include/conversation.php:1032 -#: ../../include/widgets.php:1503 +#: ../../Zotlabs/Lib/Apps.php:561 ../../include/widgets.php:1505 +#: ../../include/conversation.php:1032 msgid "Unknown" msgstr "" #: ../../Zotlabs/Storage/Browser.php:226 ../../Zotlabs/Module/Fbrowser.php:85 -#: ../../Zotlabs/Lib/Apps.php:216 ../../include/conversation.php:1639 -#: ../../include/nav.php:93 +#: ../../Zotlabs/Lib/Apps.php:216 ../../include/nav.php:93 +#: ../../include/conversation.php:1639 msgid "Files" msgstr "" @@ -75,13 +75,13 @@ msgstr "" #: ../../Zotlabs/Storage/Browser.php:231 ../../Zotlabs/Storage/Browser.php:308 #: ../../Zotlabs/Module/Cover_photo.php:357 -#: ../../Zotlabs/Module/Photos.php:825 ../../Zotlabs/Module/Photos.php:1368 -#: ../../Zotlabs/Module/Profile_photo.php:368 ../../include/widgets.php:1516 +#: ../../Zotlabs/Module/Photos.php:825 ../../Zotlabs/Module/Photos.php:1364 +#: ../../Zotlabs/Module/Profile_photo.php:368 ../../include/widgets.php:1518 msgid "Upload" msgstr "" -#: ../../Zotlabs/Storage/Browser.php:235 ../../Zotlabs/Module/Admin.php:1204 -#: ../../Zotlabs/Module/Chat.php:247 ../../Zotlabs/Module/Settings.php:592 +#: ../../Zotlabs/Storage/Browser.php:235 ../../Zotlabs/Module/Chat.php:247 +#: ../../Zotlabs/Module/Admin.php:1223 ../../Zotlabs/Module/Settings.php:592 #: ../../Zotlabs/Module/Settings.php:618 #: ../../Zotlabs/Module/Sharedwithme.php:99 msgid "Name" @@ -92,7 +92,7 @@ msgid "Type" msgstr "" #: ../../Zotlabs/Storage/Browser.php:237 -#: ../../Zotlabs/Module/Sharedwithme.php:101 ../../include/text.php:1329 +#: ../../Zotlabs/Module/Sharedwithme.php:101 ../../include/text.php:1344 msgid "Size" msgstr "" @@ -101,35 +101,34 @@ msgstr "" msgid "Last Modified" msgstr "" -#: ../../Zotlabs/Storage/Browser.php:240 ../../Zotlabs/Module/Admin.php:2093 -#: ../../Zotlabs/Module/Blocks.php:157 +#: ../../Zotlabs/Storage/Browser.php:240 ../../Zotlabs/Module/Blocks.php:157 +#: ../../Zotlabs/Module/Editblock.php:109 #: ../../Zotlabs/Module/Connections.php:290 #: ../../Zotlabs/Module/Connections.php:310 -#: ../../Zotlabs/Module/Editblock.php:109 -#: ../../Zotlabs/Module/Editlayout.php:113 #: ../../Zotlabs/Module/Editpost.php:84 +#: ../../Zotlabs/Module/Editlayout.php:113 #: ../../Zotlabs/Module/Editwebpage.php:146 #: ../../Zotlabs/Module/Layouts.php:190 ../../Zotlabs/Module/Menu.php:112 -#: ../../Zotlabs/Module/Settings.php:652 ../../Zotlabs/Module/Thing.php:260 -#: ../../Zotlabs/Module/Webpages.php:187 ../../Zotlabs/Lib/Apps.php:337 -#: ../../Zotlabs/Lib/ThreadItem.php:96 ../../include/channel.php:937 -#: ../../include/channel.php:941 ../../include/menu.php:108 -#: ../../include/page_widgets.php:8 ../../include/page_widgets.php:36 +#: ../../Zotlabs/Module/Admin.php:2113 ../../Zotlabs/Module/Settings.php:652 +#: ../../Zotlabs/Module/Thing.php:260 ../../Zotlabs/Module/Webpages.php:187 +#: ../../Zotlabs/Lib/Apps.php:337 ../../Zotlabs/Lib/ThreadItem.php:106 +#: ../../include/channel.php:937 ../../include/channel.php:941 +#: ../../include/menu.php:108 ../../include/page_widgets.php:8 +#: ../../include/page_widgets.php:36 msgid "Edit" msgstr "" -#: ../../Zotlabs/Storage/Browser.php:241 ../../Zotlabs/Module/Admin.php:1041 -#: ../../Zotlabs/Module/Admin.php:1198 ../../Zotlabs/Module/Admin.php:2094 -#: ../../Zotlabs/Module/Blocks.php:159 -#: ../../Zotlabs/Module/Connections.php:263 +#: ../../Zotlabs/Storage/Browser.php:241 ../../Zotlabs/Module/Blocks.php:159 #: ../../Zotlabs/Module/Connedit.php:572 #: ../../Zotlabs/Module/Editblock.php:134 +#: ../../Zotlabs/Module/Connections.php:263 #: ../../Zotlabs/Module/Editlayout.php:136 #: ../../Zotlabs/Module/Editwebpage.php:170 ../../Zotlabs/Module/Group.php:177 -#: ../../Zotlabs/Module/Photos.php:1173 ../../Zotlabs/Module/Settings.php:653 -#: ../../Zotlabs/Module/Thing.php:261 ../../Zotlabs/Module/Webpages.php:189 -#: ../../Zotlabs/Lib/Apps.php:338 ../../Zotlabs/Lib/ThreadItem.php:116 -#: ../../include/conversation.php:657 +#: ../../Zotlabs/Module/Photos.php:1173 ../../Zotlabs/Module/Admin.php:1039 +#: ../../Zotlabs/Module/Admin.php:1213 ../../Zotlabs/Module/Admin.php:2114 +#: ../../Zotlabs/Module/Settings.php:653 ../../Zotlabs/Module/Thing.php:261 +#: ../../Zotlabs/Module/Webpages.php:189 ../../Zotlabs/Lib/Apps.php:338 +#: ../../Zotlabs/Lib/ThreadItem.php:126 ../../include/conversation.php:657 msgid "Delete" msgstr "" @@ -155,50 +154,57 @@ msgstr "" msgid "Upload file" msgstr "" -#: ../../Zotlabs/Web/Router.php:65 ../../Zotlabs/Web/WebServer.php:121 -#: ../../Zotlabs/Module/Achievements.php:34 ../../Zotlabs/Module/Api.php:13 -#: ../../Zotlabs/Module/Api.php:18 ../../Zotlabs/Module/Appman.php:75 +#: ../../Zotlabs/Web/WebServer.php:120 ../../Zotlabs/Module/Dreport.php:10 +#: ../../Zotlabs/Module/Dreport.php:49 ../../Zotlabs/Module/Group.php:72 +#: ../../Zotlabs/Module/Like.php:284 ../../Zotlabs/Module/Import_items.php:112 +#: ../../Zotlabs/Module/Profperm.php:28 ../../Zotlabs/Module/Subthread.php:62 +#: ../../include/items.php:385 +msgid "Permission denied" +msgstr "" + +#: ../../Zotlabs/Web/WebServer.php:121 ../../Zotlabs/Web/Router.php:65 +#: ../../Zotlabs/Module/Achievements.php:34 ../../Zotlabs/Module/Blocks.php:73 +#: ../../Zotlabs/Module/Blocks.php:80 ../../Zotlabs/Module/Channel.php:105 +#: ../../Zotlabs/Module/Channel.php:226 ../../Zotlabs/Module/Channel.php:267 +#: ../../Zotlabs/Module/Chat.php:100 ../../Zotlabs/Module/Chat.php:105 #: ../../Zotlabs/Module/Authtest.php:16 ../../Zotlabs/Module/Block.php:26 -#: ../../Zotlabs/Module/Block.php:76 ../../Zotlabs/Module/Blocks.php:73 -#: ../../Zotlabs/Module/Blocks.php:80 ../../Zotlabs/Module/Bookmarks.php:61 -#: ../../Zotlabs/Module/Channel.php:105 ../../Zotlabs/Module/Channel.php:226 -#: ../../Zotlabs/Module/Channel.php:267 ../../Zotlabs/Module/Chat.php:100 -#: ../../Zotlabs/Module/Chat.php:105 ../../Zotlabs/Module/Common.php:39 -#: ../../Zotlabs/Module/Connections.php:33 -#: ../../Zotlabs/Module/Connedit.php:366 +#: ../../Zotlabs/Module/Block.php:76 ../../Zotlabs/Module/Bookmarks.php:61 +#: ../../Zotlabs/Module/Connedit.php:366 ../../Zotlabs/Module/Editblock.php:67 +#: ../../Zotlabs/Module/Common.php:39 ../../Zotlabs/Module/Connections.php:33 #: ../../Zotlabs/Module/Cover_photo.php:277 #: ../../Zotlabs/Module/Cover_photo.php:290 -#: ../../Zotlabs/Module/Editblock.php:67 +#: ../../Zotlabs/Module/Editpost.php:17 ../../Zotlabs/Module/Events.php:265 #: ../../Zotlabs/Module/Editlayout.php:67 -#: ../../Zotlabs/Module/Editlayout.php:90 ../../Zotlabs/Module/Editpost.php:17 +#: ../../Zotlabs/Module/Editlayout.php:90 #: ../../Zotlabs/Module/Editwebpage.php:69 #: ../../Zotlabs/Module/Editwebpage.php:90 #: ../../Zotlabs/Module/Editwebpage.php:105 -#: ../../Zotlabs/Module/Editwebpage.php:127 -#: ../../Zotlabs/Module/Events.php:265 ../../Zotlabs/Module/Filestorage.php:24 +#: ../../Zotlabs/Module/Editwebpage.php:127 ../../Zotlabs/Module/Group.php:13 +#: ../../Zotlabs/Module/Api.php:13 ../../Zotlabs/Module/Api.php:18 +#: ../../Zotlabs/Module/Filestorage.php:24 #: ../../Zotlabs/Module/Filestorage.php:79 #: ../../Zotlabs/Module/Filestorage.php:94 -#: ../../Zotlabs/Module/Filestorage.php:121 ../../Zotlabs/Module/Group.php:13 -#: ../../Zotlabs/Module/Id.php:76 ../../Zotlabs/Module/Invite.php:17 -#: ../../Zotlabs/Module/Invite.php:91 ../../Zotlabs/Module/Item.php:210 +#: ../../Zotlabs/Module/Filestorage.php:121 ../../Zotlabs/Module/Item.php:210 #: ../../Zotlabs/Module/Item.php:218 ../../Zotlabs/Module/Item.php:1070 #: ../../Zotlabs/Module/Layouts.php:71 ../../Zotlabs/Module/Layouts.php:78 -#: ../../Zotlabs/Module/Layouts.php:89 ../../Zotlabs/Module/Like.php:181 -#: ../../Zotlabs/Module/Locs.php:87 ../../Zotlabs/Module/Mail.php:129 -#: ../../Zotlabs/Module/Manage.php:10 ../../Zotlabs/Module/Menu.php:78 -#: ../../Zotlabs/Module/Message.php:18 ../../Zotlabs/Module/Mitem.php:115 +#: ../../Zotlabs/Module/Layouts.php:89 ../../Zotlabs/Module/Id.php:76 +#: ../../Zotlabs/Module/Like.php:181 ../../Zotlabs/Module/Invite.php:17 +#: ../../Zotlabs/Module/Invite.php:91 ../../Zotlabs/Module/Locs.php:87 +#: ../../Zotlabs/Module/Mail.php:129 ../../Zotlabs/Module/Manage.php:10 +#: ../../Zotlabs/Module/Menu.php:78 ../../Zotlabs/Module/Message.php:18 #: ../../Zotlabs/Module/Mood.php:116 ../../Zotlabs/Module/Network.php:17 -#: ../../Zotlabs/Module/New_channel.php:77 +#: ../../Zotlabs/Module/Mitem.php:115 ../../Zotlabs/Module/New_channel.php:77 #: ../../Zotlabs/Module/New_channel.php:104 -#: ../../Zotlabs/Module/Notifications.php:70 ../../Zotlabs/Module/Page.php:35 +#: ../../Zotlabs/Module/Notifications.php:70 +#: ../../Zotlabs/Module/Photos.php:75 ../../Zotlabs/Module/Page.php:35 #: ../../Zotlabs/Module/Page.php:90 ../../Zotlabs/Module/Pdledit.php:26 -#: ../../Zotlabs/Module/Photos.php:75 ../../Zotlabs/Module/Poke.php:137 -#: ../../Zotlabs/Module/Profile.php:68 ../../Zotlabs/Module/Profile.php:76 +#: ../../Zotlabs/Module/Poke.php:137 ../../Zotlabs/Module/Profile.php:68 +#: ../../Zotlabs/Module/Profile.php:76 ../../Zotlabs/Module/Profiles.php:203 +#: ../../Zotlabs/Module/Profiles.php:601 #: ../../Zotlabs/Module/Profile_photo.php:256 #: ../../Zotlabs/Module/Profile_photo.php:269 -#: ../../Zotlabs/Module/Profiles.php:203 ../../Zotlabs/Module/Profiles.php:601 -#: ../../Zotlabs/Module/Rate.php:113 ../../Zotlabs/Module/Register.php:77 -#: ../../Zotlabs/Module/Regmod.php:21 +#: ../../Zotlabs/Module/Rate.php:113 ../../Zotlabs/Module/Appman.php:75 +#: ../../Zotlabs/Module/Register.php:77 ../../Zotlabs/Module/Regmod.php:21 #: ../../Zotlabs/Module/Service_limits.php:11 #: ../../Zotlabs/Module/Settings.php:572 ../../Zotlabs/Module/Setup.php:215 #: ../../Zotlabs/Module/Sharedwithme.php:11 @@ -208,14 +214,14 @@ msgstr "" #: ../../Zotlabs/Module/Viewconnections.php:25 #: ../../Zotlabs/Module/Viewconnections.php:30 #: ../../Zotlabs/Module/Viewsrc.php:18 ../../Zotlabs/Module/Webpages.php:74 -#: ../../Zotlabs/Lib/Chatroom.php:137 ../../include/photos.php:27 +#: ../../Zotlabs/Lib/Chatroom.php:137 ../../include/items.php:3438 #: ../../include/attach.php:141 ../../include/attach.php:189 #: ../../include/attach.php:252 ../../include/attach.php:266 #: ../../include/attach.php:273 ../../include/attach.php:338 #: ../../include/attach.php:352 ../../include/attach.php:359 #: ../../include/attach.php:437 ../../include/attach.php:895 #: ../../include/attach.php:966 ../../include/attach.php:1118 -#: ../../include/items.php:3440 +#: ../../include/photos.php:27 msgid "Permission denied." msgstr "" @@ -229,14 +235,6 @@ msgstr "" msgid "Page not found." msgstr "" -#: ../../Zotlabs/Web/WebServer.php:120 ../../Zotlabs/Module/Dreport.php:10 -#: ../../Zotlabs/Module/Dreport.php:49 ../../Zotlabs/Module/Group.php:72 -#: ../../Zotlabs/Module/Import_items.php:112 ../../Zotlabs/Module/Like.php:284 -#: ../../Zotlabs/Module/Profperm.php:28 ../../Zotlabs/Module/Subthread.php:62 -#: ../../include/items.php:385 -msgid "Permission denied" -msgstr "" - #: ../../Zotlabs/Zot/Auth.php:138 msgid "" "Remote authentication blocked. You are logged into this site locally. Please " @@ -263,198 +261,110 @@ msgstr "" msgid "Some blurb about what to do when you're new here" msgstr "" -#: ../../Zotlabs/Module/Acl.php:225 -msgid "network" -msgstr "" - -#: ../../Zotlabs/Module/Acl.php:235 -msgid "RSS" -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:77 -msgid "Theme settings updated." -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:164 ../../Zotlabs/Module/Admin.php:1235 -#: ../../Zotlabs/Module/Admin.php:1541 ../../Zotlabs/Module/Display.php:40 -#: ../../Zotlabs/Module/Filestorage.php:33 ../../Zotlabs/Module/Thing.php:89 -#: ../../Zotlabs/Module/Viewsrc.php:24 ../../include/items.php:3361 -msgid "Item not found." -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:197 -msgid "# Accounts" -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:198 -msgid "# blocked accounts" -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:199 -msgid "# expired accounts" -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:200 -msgid "# expiring accounts" -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:211 -msgid "# Channels" -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:212 -msgid "# primary" -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:213 -msgid "# clones" -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:219 -msgid "Message queues" -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:236 -msgid "Your software should be updated" -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:241 ../../Zotlabs/Module/Admin.php:490 -#: ../../Zotlabs/Module/Admin.php:711 ../../Zotlabs/Module/Admin.php:755 -#: ../../Zotlabs/Module/Admin.php:1032 ../../Zotlabs/Module/Admin.php:1194 -#: ../../Zotlabs/Module/Admin.php:1309 ../../Zotlabs/Module/Admin.php:1399 -#: ../../Zotlabs/Module/Admin.php:1592 ../../Zotlabs/Module/Admin.php:1626 -#: ../../Zotlabs/Module/Admin.php:1711 -msgid "Administration" -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:242 -msgid "Summary" -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:245 -msgid "Registered accounts" -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:246 ../../Zotlabs/Module/Admin.php:715 -msgid "Pending registrations" -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:247 -msgid "Registered channels" -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:248 ../../Zotlabs/Module/Admin.php:716 -msgid "Active plugins" +#: ../../Zotlabs/Module/Blocks.php:97 ../../Zotlabs/Module/Blocks.php:152 +#: ../../Zotlabs/Module/Editblock.php:108 +msgid "Block Name" msgstr "" -#: ../../Zotlabs/Module/Admin.php:249 -msgid "Version" +#: ../../Zotlabs/Module/Blocks.php:151 ../../include/text.php:2265 +msgid "Blocks" msgstr "" -#: ../../Zotlabs/Module/Admin.php:250 -msgid "Repository version (master)" +#: ../../Zotlabs/Module/Blocks.php:153 +msgid "Block Title" msgstr "" -#: ../../Zotlabs/Module/Admin.php:251 -msgid "Repository version (dev)" +#: ../../Zotlabs/Module/Blocks.php:154 ../../Zotlabs/Module/Layouts.php:188 +#: ../../Zotlabs/Module/Menu.php:114 ../../Zotlabs/Module/Webpages.php:198 +#: ../../include/page_widgets.php:44 +msgid "Created" msgstr "" -#: ../../Zotlabs/Module/Admin.php:373 -msgid "Site settings updated." +#: ../../Zotlabs/Module/Blocks.php:155 ../../Zotlabs/Module/Layouts.php:189 +#: ../../Zotlabs/Module/Menu.php:115 ../../Zotlabs/Module/Webpages.php:199 +#: ../../include/page_widgets.php:45 +msgid "Edited" msgstr "" -#: ../../Zotlabs/Module/Admin.php:400 ../../include/text.php:2826 -msgid "Default" +#: ../../Zotlabs/Module/Blocks.php:158 ../../Zotlabs/Module/Layouts.php:191 +#: ../../Zotlabs/Module/Photos.php:1072 ../../Zotlabs/Module/Webpages.php:188 +#: ../../include/conversation.php:1208 +msgid "Share" msgstr "" -#: ../../Zotlabs/Module/Admin.php:410 ../../Zotlabs/Module/Settings.php:798 -msgid "mobile" +#: ../../Zotlabs/Module/Blocks.php:163 ../../Zotlabs/Module/Layouts.php:195 +#: ../../Zotlabs/Module/Pubsites.php:47 ../../Zotlabs/Module/Webpages.php:193 +#: ../../include/page_widgets.php:39 +msgid "View" msgstr "" -#: ../../Zotlabs/Module/Admin.php:412 -msgid "experimental" +#: ../../Zotlabs/Module/Cal.php:62 ../../Zotlabs/Module/Block.php:43 +#: ../../Zotlabs/Module/Page.php:56 ../../Zotlabs/Module/Wall_upload.php:33 +msgid "Channel not found." msgstr "" -#: ../../Zotlabs/Module/Admin.php:414 -msgid "unsupported" +#: ../../Zotlabs/Module/Cal.php:69 +msgid "Permissions denied." msgstr "" -#: ../../Zotlabs/Module/Admin.php:459 ../../Zotlabs/Module/Api.php:89 -#: ../../Zotlabs/Module/Connedit.php:379 ../../Zotlabs/Module/Connedit.php:654 -#: ../../Zotlabs/Module/Events.php:459 ../../Zotlabs/Module/Events.php:460 -#: ../../Zotlabs/Module/Events.php:469 -#: ../../Zotlabs/Module/Filestorage.php:157 -#: ../../Zotlabs/Module/Filestorage.php:165 ../../Zotlabs/Module/Menu.php:100 -#: ../../Zotlabs/Module/Menu.php:157 ../../Zotlabs/Module/Mitem.php:158 -#: ../../Zotlabs/Module/Mitem.php:159 ../../Zotlabs/Module/Mitem.php:232 -#: ../../Zotlabs/Module/Mitem.php:233 ../../Zotlabs/Module/Photos.php:666 -#: ../../Zotlabs/Module/Profiles.php:647 ../../Zotlabs/Module/Removeme.php:61 -#: ../../Zotlabs/Module/Settings.php:581 ../../include/dir_fns.php:143 -#: ../../include/dir_fns.php:144 ../../include/dir_fns.php:145 -#: ../../view/theme/redbasic/php/config.php:105 -#: ../../view/theme/redbasic/php/config.php:130 ../../boot.php:1699 -msgid "No" +#: ../../Zotlabs/Module/Cal.php:259 ../../Zotlabs/Module/Events.php:588 +msgid "l, F j" msgstr "" -#: ../../Zotlabs/Module/Admin.php:460 -msgid "Yes - with approval" +#: ../../Zotlabs/Module/Cal.php:308 ../../Zotlabs/Module/Events.php:637 +#: ../../include/text.php:1732 +msgid "Link to Source" msgstr "" -#: ../../Zotlabs/Module/Admin.php:461 ../../Zotlabs/Module/Api.php:88 -#: ../../Zotlabs/Module/Connedit.php:379 ../../Zotlabs/Module/Events.php:459 -#: ../../Zotlabs/Module/Events.php:460 ../../Zotlabs/Module/Events.php:469 -#: ../../Zotlabs/Module/Filestorage.php:157 -#: ../../Zotlabs/Module/Filestorage.php:165 ../../Zotlabs/Module/Menu.php:100 -#: ../../Zotlabs/Module/Menu.php:157 ../../Zotlabs/Module/Mitem.php:158 -#: ../../Zotlabs/Module/Mitem.php:159 ../../Zotlabs/Module/Mitem.php:232 -#: ../../Zotlabs/Module/Mitem.php:233 ../../Zotlabs/Module/Photos.php:666 -#: ../../Zotlabs/Module/Profiles.php:647 ../../Zotlabs/Module/Removeme.php:61 -#: ../../Zotlabs/Module/Settings.php:581 ../../include/dir_fns.php:143 -#: ../../include/dir_fns.php:144 ../../include/dir_fns.php:145 -#: ../../view/theme/redbasic/php/config.php:105 -#: ../../view/theme/redbasic/php/config.php:130 ../../boot.php:1699 -msgid "Yes" +#: ../../Zotlabs/Module/Cal.php:331 ../../Zotlabs/Module/Events.php:665 +msgid "Edit Event" msgstr "" -#: ../../Zotlabs/Module/Admin.php:466 -msgid "My site is not a public server" +#: ../../Zotlabs/Module/Cal.php:331 ../../Zotlabs/Module/Events.php:665 +msgid "Create Event" msgstr "" -#: ../../Zotlabs/Module/Admin.php:467 -msgid "My site has paid access only" +#: ../../Zotlabs/Module/Cal.php:332 ../../Zotlabs/Module/Cal.php:339 +#: ../../Zotlabs/Module/Events.php:666 ../../Zotlabs/Module/Events.php:673 +#: ../../Zotlabs/Module/Photos.php:949 +msgid "Previous" msgstr "" -#: ../../Zotlabs/Module/Admin.php:468 -msgid "My site has free access only" +#: ../../Zotlabs/Module/Cal.php:333 ../../Zotlabs/Module/Cal.php:340 +#: ../../Zotlabs/Module/Events.php:667 ../../Zotlabs/Module/Events.php:674 +#: ../../Zotlabs/Module/Photos.php:958 ../../Zotlabs/Module/Setup.php:267 +msgid "Next" msgstr "" -#: ../../Zotlabs/Module/Admin.php:469 -msgid "My site offers free accounts with optional paid upgrades" +#: ../../Zotlabs/Module/Cal.php:334 ../../Zotlabs/Module/Events.php:668 +#: ../../include/widgets.php:755 +msgid "Export" msgstr "" -#: ../../Zotlabs/Module/Admin.php:491 ../../include/widgets.php:1380 -msgid "Site" +#: ../../Zotlabs/Module/Cal.php:337 ../../Zotlabs/Module/Events.php:671 +#: ../../include/widgets.php:756 +msgid "Import" msgstr "" -#: ../../Zotlabs/Module/Admin.php:492 ../../Zotlabs/Module/Admin.php:688 -#: ../../Zotlabs/Module/Admin.php:771 ../../Zotlabs/Module/Admin.php:1034 -#: ../../Zotlabs/Module/Admin.php:1196 ../../Zotlabs/Module/Admin.php:1401 -#: ../../Zotlabs/Module/Admin.php:1628 ../../Zotlabs/Module/Admin.php:1713 -#: ../../Zotlabs/Module/Admin.php:2096 ../../Zotlabs/Module/Appman.php:126 #: ../../Zotlabs/Module/Cal.php:338 ../../Zotlabs/Module/Chat.php:196 #: ../../Zotlabs/Module/Chat.php:238 ../../Zotlabs/Module/Connect.php:98 #: ../../Zotlabs/Module/Connedit.php:731 ../../Zotlabs/Module/Events.php:475 -#: ../../Zotlabs/Module/Events.php:672 -#: ../../Zotlabs/Module/Filestorage.php:162 ../../Zotlabs/Module/Group.php:85 +#: ../../Zotlabs/Module/Events.php:672 ../../Zotlabs/Module/Group.php:85 +#: ../../Zotlabs/Module/Filestorage.php:162 #: ../../Zotlabs/Module/Import.php:550 #: ../../Zotlabs/Module/Import_items.php:120 #: ../../Zotlabs/Module/Invite.php:146 ../../Zotlabs/Module/Locs.php:121 -#: ../../Zotlabs/Module/Mail.php:378 ../../Zotlabs/Module/Mitem.php:235 -#: ../../Zotlabs/Module/Mood.php:139 ../../Zotlabs/Module/Pconfig.php:107 -#: ../../Zotlabs/Module/Pdledit.php:66 ../../Zotlabs/Module/Photos.php:677 +#: ../../Zotlabs/Module/Mail.php:378 ../../Zotlabs/Module/Mood.php:139 +#: ../../Zotlabs/Module/Mitem.php:235 ../../Zotlabs/Module/Photos.php:677 #: ../../Zotlabs/Module/Photos.php:1052 ../../Zotlabs/Module/Photos.php:1092 -#: ../../Zotlabs/Module/Photos.php:1210 ../../Zotlabs/Module/Poke.php:186 +#: ../../Zotlabs/Module/Photos.php:1210 ../../Zotlabs/Module/Pconfig.php:107 +#: ../../Zotlabs/Module/Pdledit.php:66 ../../Zotlabs/Module/Poke.php:186 #: ../../Zotlabs/Module/Profiles.php:687 ../../Zotlabs/Module/Rate.php:170 +#: ../../Zotlabs/Module/Admin.php:492 ../../Zotlabs/Module/Admin.php:688 +#: ../../Zotlabs/Module/Admin.php:771 ../../Zotlabs/Module/Admin.php:1032 +#: ../../Zotlabs/Module/Admin.php:1211 ../../Zotlabs/Module/Admin.php:1421 +#: ../../Zotlabs/Module/Admin.php:1648 ../../Zotlabs/Module/Admin.php:1733 +#: ../../Zotlabs/Module/Admin.php:2116 ../../Zotlabs/Module/Appman.php:126 #: ../../Zotlabs/Module/Settings.php:590 ../../Zotlabs/Module/Settings.php:703 #: ../../Zotlabs/Module/Settings.php:731 ../../Zotlabs/Module/Settings.php:754 #: ../../Zotlabs/Module/Settings.php:842 @@ -462,4186 +372,4274 @@ msgstr "" #: ../../Zotlabs/Module/Setup.php:353 ../../Zotlabs/Module/Sources.php:114 #: ../../Zotlabs/Module/Sources.php:149 ../../Zotlabs/Module/Thing.php:316 #: ../../Zotlabs/Module/Thing.php:362 ../../Zotlabs/Module/Xchan.php:15 -#: ../../Zotlabs/Lib/ThreadItem.php:699 ../../include/widgets.php:757 +#: ../../Zotlabs/Lib/ThreadItem.php:710 ../../include/widgets.php:757 #: ../../include/widgets.php:769 ../../include/js_strings.php:22 #: ../../view/theme/redbasic/php/config.php:99 msgid "Submit" msgstr "" -#: ../../Zotlabs/Module/Admin.php:493 ../../Zotlabs/Module/Register.php:245 -msgid "Registration" +#: ../../Zotlabs/Module/Cal.php:341 ../../Zotlabs/Module/Events.php:675 +msgid "Today" msgstr "" -#: ../../Zotlabs/Module/Admin.php:494 -msgid "File upload" +#: ../../Zotlabs/Module/Channel.php:29 ../../Zotlabs/Module/Chat.php:25 +msgid "You must be logged in to see this page." msgstr "" -#: ../../Zotlabs/Module/Admin.php:495 -msgid "Policies" +#: ../../Zotlabs/Module/Channel.php:41 +msgid "Posts and comments" msgstr "" -#: ../../Zotlabs/Module/Admin.php:496 ../../include/contact_widgets.php:16 -msgid "Advanced" +#: ../../Zotlabs/Module/Channel.php:42 +msgid "Only posts" msgstr "" -#: ../../Zotlabs/Module/Admin.php:500 -msgid "Site name" +#: ../../Zotlabs/Module/Channel.php:102 +msgid "Insufficient permissions. Request redirected to profile page." msgstr "" -#: ../../Zotlabs/Module/Admin.php:501 -msgid "Banner/Logo" +#: ../../Zotlabs/Module/Chat.php:181 +msgid "Room not found" msgstr "" -#: ../../Zotlabs/Module/Admin.php:502 -msgid "Administrator Information" +#: ../../Zotlabs/Module/Chat.php:197 +msgid "Leave Room" msgstr "" -#: ../../Zotlabs/Module/Admin.php:502 -msgid "" -"Contact information for site administrators. Displayed on siteinfo page. " -"BBCode can be used here" +#: ../../Zotlabs/Module/Chat.php:198 +msgid "Delete Room" msgstr "" -#: ../../Zotlabs/Module/Admin.php:503 -msgid "System language" +#: ../../Zotlabs/Module/Chat.php:199 +msgid "I am away right now" msgstr "" -#: ../../Zotlabs/Module/Admin.php:504 -msgid "System theme" +#: ../../Zotlabs/Module/Chat.php:200 +msgid "I am online" msgstr "" -#: ../../Zotlabs/Module/Admin.php:504 -msgid "" -"Default system theme - may be over-ridden by user profiles - change theme settings" +#: ../../Zotlabs/Module/Chat.php:202 +msgid "Bookmark this room" msgstr "" -#: ../../Zotlabs/Module/Admin.php:505 -msgid "Mobile system theme" +#: ../../Zotlabs/Module/Chat.php:205 ../../Zotlabs/Module/Mail.php:205 +#: ../../Zotlabs/Module/Mail.php:314 ../../include/conversation.php:1176 +msgid "Please enter a link URL:" msgstr "" -#: ../../Zotlabs/Module/Admin.php:505 -msgid "Theme for mobile devices" +#: ../../Zotlabs/Module/Chat.php:206 ../../Zotlabs/Module/Mail.php:258 +#: ../../Zotlabs/Module/Mail.php:383 ../../Zotlabs/Lib/ThreadItem.php:722 +#: ../../include/conversation.php:1256 +msgid "Encrypt text" msgstr "" -#: ../../Zotlabs/Module/Admin.php:507 -msgid "Allow Feeds as Connections" +#: ../../Zotlabs/Module/Chat.php:207 ../../Zotlabs/Module/Editblock.php:111 +#: ../../Zotlabs/Module/Editwebpage.php:147 ../../Zotlabs/Module/Mail.php:252 +#: ../../Zotlabs/Module/Mail.php:377 ../../include/conversation.php:1143 +msgid "Insert web link" msgstr "" -#: ../../Zotlabs/Module/Admin.php:507 -msgid "(Heavy system resource usage)" +#: ../../Zotlabs/Module/Chat.php:218 +msgid "Feature disabled." msgstr "" -#: ../../Zotlabs/Module/Admin.php:508 -msgid "Maximum image size" +#: ../../Zotlabs/Module/Chat.php:232 +msgid "New Chatroom" msgstr "" -#: ../../Zotlabs/Module/Admin.php:508 -msgid "" -"Maximum size in bytes of uploaded images. Default is 0, which means no " -"limits." +#: ../../Zotlabs/Module/Chat.php:233 +msgid "Chatroom name" msgstr "" -#: ../../Zotlabs/Module/Admin.php:509 -msgid "Does this site allow new member registration?" +#: ../../Zotlabs/Module/Chat.php:234 +msgid "Expiration of chats (minutes)" msgstr "" -#: ../../Zotlabs/Module/Admin.php:510 -msgid "Invitation only" +#: ../../Zotlabs/Module/Chat.php:235 ../../Zotlabs/Module/Filestorage.php:153 +#: ../../Zotlabs/Module/Photos.php:671 ../../Zotlabs/Module/Photos.php:1045 +#: ../../Zotlabs/Module/Thing.php:313 ../../Zotlabs/Module/Thing.php:359 +#: ../../include/acl_selectors.php:283 +msgid "Permissions" msgstr "" -#: ../../Zotlabs/Module/Admin.php:510 -msgid "" -"Only allow new member registrations with an invitation code. Above register " -"policy must be set to Yes." +#: ../../Zotlabs/Module/Chat.php:246 +#, php-format +msgid "%1$s's Chatrooms" msgstr "" -#: ../../Zotlabs/Module/Admin.php:511 -msgid "Which best describes the types of account offered by this hub?" +#: ../../Zotlabs/Module/Chat.php:251 +msgid "No chatrooms available" msgstr "" -#: ../../Zotlabs/Module/Admin.php:512 -msgid "Register text" +#: ../../Zotlabs/Module/Chat.php:252 ../../Zotlabs/Module/Manage.php:143 +#: ../../Zotlabs/Module/Profiles.php:778 +msgid "Create New" msgstr "" -#: ../../Zotlabs/Module/Admin.php:512 -msgid "Will be displayed prominently on the registration page." +#: ../../Zotlabs/Module/Chat.php:255 +msgid "Expiration" msgstr "" -#: ../../Zotlabs/Module/Admin.php:513 -msgid "Site homepage to show visitors (default: login box)" +#: ../../Zotlabs/Module/Chat.php:256 +msgid "min" msgstr "" -#: ../../Zotlabs/Module/Admin.php:513 -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." +#: ../../Zotlabs/Module/Chatsvc.php:117 +msgid "Away" msgstr "" -#: ../../Zotlabs/Module/Admin.php:514 -msgid "Preserve site homepage URL" +#: ../../Zotlabs/Module/Chatsvc.php:122 +msgid "Online" msgstr "" -#: ../../Zotlabs/Module/Admin.php:514 -msgid "" -"Present the site homepage in a frame at the original location instead of " -"redirecting" +#: ../../Zotlabs/Module/Block.php:31 ../../Zotlabs/Module/Page.php:40 +msgid "Invalid item." msgstr "" -#: ../../Zotlabs/Module/Admin.php:515 -msgid "Accounts abandoned after x days" +#: ../../Zotlabs/Module/Bookmarks.php:53 +msgid "Bookmark added" msgstr "" -#: ../../Zotlabs/Module/Admin.php:515 -msgid "" -"Will not waste system resources polling external sites for abandonded " -"accounts. Enter 0 for no time limit." +#: ../../Zotlabs/Module/Bookmarks.php:75 +msgid "My Bookmarks" msgstr "" -#: ../../Zotlabs/Module/Admin.php:516 -msgid "Allowed friend domains" +#: ../../Zotlabs/Module/Bookmarks.php:86 +msgid "My Connections Bookmarks" msgstr "" -#: ../../Zotlabs/Module/Admin.php:516 -msgid "" -"Comma separated list of domains which are allowed to establish friendships " -"with this site. Wildcards are accepted. Empty to allow any domains" +#: ../../Zotlabs/Module/Connect.php:61 ../../Zotlabs/Module/Connect.php:109 +msgid "Continue" msgstr "" -#: ../../Zotlabs/Module/Admin.php:517 -msgid "Allowed email domains" +#: ../../Zotlabs/Module/Connect.php:90 +msgid "Premium Channel Setup" msgstr "" -#: ../../Zotlabs/Module/Admin.php:517 -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" +#: ../../Zotlabs/Module/Connect.php:92 +msgid "Enable premium channel connection restrictions" msgstr "" -#: ../../Zotlabs/Module/Admin.php:518 -msgid "Not allowed email domains" +#: ../../Zotlabs/Module/Connect.php:93 +msgid "" +"Please enter your restrictions or conditions, such as paypal receipt, usage " +"guidelines, etc." msgstr "" -#: ../../Zotlabs/Module/Admin.php:518 +#: ../../Zotlabs/Module/Connect.php:95 ../../Zotlabs/Module/Connect.php:115 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." +"This channel may require additional steps or acknowledgement of the " +"following conditions prior to connecting:" msgstr "" -#: ../../Zotlabs/Module/Admin.php:519 -msgid "Verify Email Addresses" +#: ../../Zotlabs/Module/Connect.php:96 +msgid "" +"Potential connections will then see the following text before proceeding:" msgstr "" -#: ../../Zotlabs/Module/Admin.php:519 +#: ../../Zotlabs/Module/Connect.php:97 ../../Zotlabs/Module/Connect.php:118 msgid "" -"Check to verify email addresses used in account registration (recommended)." +"By continuing, I certify that I have complied with any instructions provided " +"on this page." msgstr "" -#: ../../Zotlabs/Module/Admin.php:520 -msgid "Force publish" +#: ../../Zotlabs/Module/Connect.php:106 +msgid "(No specific instructions have been provided by the channel owner.)" msgstr "" -#: ../../Zotlabs/Module/Admin.php:520 -msgid "" -"Check to force all profiles on this site to be listed in the site directory." +#: ../../Zotlabs/Module/Connect.php:114 +msgid "Restricted or Premium Channel" msgstr "" -#: ../../Zotlabs/Module/Admin.php:521 -msgid "Import Public Streams" +#: ../../Zotlabs/Module/Connedit.php:80 +msgid "Could not access contact record." msgstr "" -#: ../../Zotlabs/Module/Admin.php:521 -msgid "" -"Import and allow access to public content pulled from other sites. Warning: " -"this content is unmoderated." +#: ../../Zotlabs/Module/Connedit.php:104 +msgid "Could not locate selected profile." msgstr "" -#: ../../Zotlabs/Module/Admin.php:522 -msgid "Login on Homepage" +#: ../../Zotlabs/Module/Connedit.php:227 +msgid "Connection updated." msgstr "" -#: ../../Zotlabs/Module/Admin.php:522 -msgid "" -"Present a login box to visitors on the home page if no other content has " -"been configured." +#: ../../Zotlabs/Module/Connedit.php:229 +msgid "Failed to update connection record." msgstr "" -#: ../../Zotlabs/Module/Admin.php:523 -msgid "Enable context help" +#: ../../Zotlabs/Module/Connedit.php:276 +msgid "is now connected to" msgstr "" -#: ../../Zotlabs/Module/Admin.php:523 -msgid "" -"Display contextual help for the current page when the help button is pressed." +#: ../../Zotlabs/Module/Connedit.php:379 ../../Zotlabs/Module/Connedit.php:654 +#: ../../Zotlabs/Module/Events.php:459 ../../Zotlabs/Module/Events.php:460 +#: ../../Zotlabs/Module/Events.php:469 ../../Zotlabs/Module/Api.php:89 +#: ../../Zotlabs/Module/Filestorage.php:157 +#: ../../Zotlabs/Module/Filestorage.php:165 ../../Zotlabs/Module/Menu.php:100 +#: ../../Zotlabs/Module/Menu.php:157 ../../Zotlabs/Module/Mitem.php:158 +#: ../../Zotlabs/Module/Mitem.php:159 ../../Zotlabs/Module/Mitem.php:232 +#: ../../Zotlabs/Module/Mitem.php:233 ../../Zotlabs/Module/Photos.php:666 +#: ../../Zotlabs/Module/Profiles.php:647 ../../Zotlabs/Module/Admin.php:459 +#: ../../Zotlabs/Module/Removeme.php:61 ../../Zotlabs/Module/Settings.php:581 +#: ../../include/dir_fns.php:143 ../../include/dir_fns.php:144 +#: ../../include/dir_fns.php:145 ../../view/theme/redbasic/php/config.php:105 +#: ../../view/theme/redbasic/php/config.php:130 ../../boot.php:1707 +msgid "No" msgstr "" -#: ../../Zotlabs/Module/Admin.php:525 -msgid "Directory Server URL" +#: ../../Zotlabs/Module/Connedit.php:379 ../../Zotlabs/Module/Events.php:459 +#: ../../Zotlabs/Module/Events.php:460 ../../Zotlabs/Module/Events.php:469 +#: ../../Zotlabs/Module/Api.php:88 ../../Zotlabs/Module/Filestorage.php:157 +#: ../../Zotlabs/Module/Filestorage.php:165 ../../Zotlabs/Module/Menu.php:100 +#: ../../Zotlabs/Module/Menu.php:157 ../../Zotlabs/Module/Mitem.php:158 +#: ../../Zotlabs/Module/Mitem.php:159 ../../Zotlabs/Module/Mitem.php:232 +#: ../../Zotlabs/Module/Mitem.php:233 ../../Zotlabs/Module/Photos.php:666 +#: ../../Zotlabs/Module/Profiles.php:647 ../../Zotlabs/Module/Admin.php:461 +#: ../../Zotlabs/Module/Removeme.php:61 ../../Zotlabs/Module/Settings.php:581 +#: ../../include/dir_fns.php:143 ../../include/dir_fns.php:144 +#: ../../include/dir_fns.php:145 ../../view/theme/redbasic/php/config.php:105 +#: ../../view/theme/redbasic/php/config.php:130 ../../boot.php:1707 +msgid "Yes" msgstr "" -#: ../../Zotlabs/Module/Admin.php:525 -msgid "Default directory server" +#: ../../Zotlabs/Module/Connedit.php:411 +msgid "Could not access address book record." msgstr "" -#: ../../Zotlabs/Module/Admin.php:527 -msgid "Proxy user" +#: ../../Zotlabs/Module/Connedit.php:425 +msgid "Refresh failed - channel is currently unavailable." msgstr "" -#: ../../Zotlabs/Module/Admin.php:528 -msgid "Proxy URL" +#: ../../Zotlabs/Module/Connedit.php:440 ../../Zotlabs/Module/Connedit.php:449 +#: ../../Zotlabs/Module/Connedit.php:458 ../../Zotlabs/Module/Connedit.php:467 +#: ../../Zotlabs/Module/Connedit.php:480 +msgid "Unable to set address book parameters." msgstr "" -#: ../../Zotlabs/Module/Admin.php:529 -msgid "Network timeout" +#: ../../Zotlabs/Module/Connedit.php:503 +msgid "Connection has been removed." msgstr "" -#: ../../Zotlabs/Module/Admin.php:529 -msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." +#: ../../Zotlabs/Module/Connedit.php:519 ../../Zotlabs/Lib/Apps.php:219 +#: ../../include/nav.php:86 ../../include/conversation.php:954 +msgid "View Profile" msgstr "" -#: ../../Zotlabs/Module/Admin.php:530 -msgid "Delivery interval" +#: ../../Zotlabs/Module/Connedit.php:522 +#, php-format +msgid "View %s's profile" msgstr "" -#: ../../Zotlabs/Module/Admin.php:530 -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." +#: ../../Zotlabs/Module/Connedit.php:526 +msgid "Refresh Permissions" msgstr "" -#: ../../Zotlabs/Module/Admin.php:531 -msgid "Deliveries per process" +#: ../../Zotlabs/Module/Connedit.php:529 +msgid "Fetch updated permissions" msgstr "" -#: ../../Zotlabs/Module/Admin.php:531 -msgid "" -"Number of deliveries to attempt in a single operating system process. Adjust " -"if necessary to tune system performance. Recommend: 1-5." +#: ../../Zotlabs/Module/Connedit.php:533 +msgid "Recent Activity" msgstr "" -#: ../../Zotlabs/Module/Admin.php:532 -msgid "Poll interval" +#: ../../Zotlabs/Module/Connedit.php:536 +msgid "View recent posts and comments" msgstr "" -#: ../../Zotlabs/Module/Admin.php:532 -msgid "" -"Delay background polling processes by this many seconds to reduce system " -"load. If 0, use delivery interval." +#: ../../Zotlabs/Module/Connedit.php:540 ../../Zotlabs/Module/Admin.php:1041 +msgid "Unblock" msgstr "" -#: ../../Zotlabs/Module/Admin.php:533 -msgid "Maximum Load Average" +#: ../../Zotlabs/Module/Connedit.php:540 ../../Zotlabs/Module/Admin.php:1040 +msgid "Block" msgstr "" -#: ../../Zotlabs/Module/Admin.php:533 -msgid "" -"Maximum system load before delivery and poll processes are deferred - " -"default 50." +#: ../../Zotlabs/Module/Connedit.php:543 +msgid "Block (or Unblock) all communications with this connection" msgstr "" -#: ../../Zotlabs/Module/Admin.php:534 -msgid "Expiration period in days for imported (grid/network) content" +#: ../../Zotlabs/Module/Connedit.php:544 +msgid "This connection is blocked!" msgstr "" -#: ../../Zotlabs/Module/Admin.php:534 -msgid "0 for no expiration of imported content" +#: ../../Zotlabs/Module/Connedit.php:548 +msgid "Unignore" msgstr "" -#: ../../Zotlabs/Module/Admin.php:677 ../../Zotlabs/Module/Admin.php:678 -#: ../../Zotlabs/Module/Settings.php:722 -msgid "Off" +#: ../../Zotlabs/Module/Connedit.php:548 +#: ../../Zotlabs/Module/Connections.php:277 +#: ../../Zotlabs/Module/Notifications.php:55 +msgid "Ignore" msgstr "" -#: ../../Zotlabs/Module/Admin.php:677 ../../Zotlabs/Module/Admin.php:678 -#: ../../Zotlabs/Module/Settings.php:722 -msgid "On" +#: ../../Zotlabs/Module/Connedit.php:551 +msgid "Ignore (or Unignore) all inbound communications from this connection" msgstr "" -#: ../../Zotlabs/Module/Admin.php:678 -#, php-format -msgid "Lock feature %s" +#: ../../Zotlabs/Module/Connedit.php:552 +msgid "This connection is ignored!" msgstr "" -#: ../../Zotlabs/Module/Admin.php:686 -msgid "Manage Additional Features" +#: ../../Zotlabs/Module/Connedit.php:556 +msgid "Unarchive" msgstr "" -#: ../../Zotlabs/Module/Admin.php:703 -msgid "No server found" +#: ../../Zotlabs/Module/Connedit.php:556 +msgid "Archive" msgstr "" -#: ../../Zotlabs/Module/Admin.php:710 ../../Zotlabs/Module/Admin.php:1046 -msgid "ID" +#: ../../Zotlabs/Module/Connedit.php:559 +msgid "" +"Archive (or Unarchive) this connection - mark channel dead but keep content" msgstr "" -#: ../../Zotlabs/Module/Admin.php:710 -msgid "for channel" +#: ../../Zotlabs/Module/Connedit.php:560 +msgid "This connection is archived!" msgstr "" -#: ../../Zotlabs/Module/Admin.php:710 -msgid "on server" +#: ../../Zotlabs/Module/Connedit.php:564 +msgid "Unhide" msgstr "" -#: ../../Zotlabs/Module/Admin.php:710 ../../Zotlabs/Module/Connections.php:270 -msgid "Status" +#: ../../Zotlabs/Module/Connedit.php:564 +msgid "Hide" msgstr "" -#: ../../Zotlabs/Module/Admin.php:712 -msgid "Server" +#: ../../Zotlabs/Module/Connedit.php:567 +msgid "Hide or Unhide this connection from your other connections" msgstr "" -#: ../../Zotlabs/Module/Admin.php:746 -msgid "" -"By default, unfiltered HTML is allowed in embedded media. This is inherently " -"insecure." +#: ../../Zotlabs/Module/Connedit.php:568 +msgid "This connection is hidden!" msgstr "" -#: ../../Zotlabs/Module/Admin.php:749 -msgid "" -"The recommended setting is to only allow unfiltered HTML from the following " -"sites:" +#: ../../Zotlabs/Module/Connedit.php:575 +msgid "Delete this connection" msgstr "" -#: ../../Zotlabs/Module/Admin.php:750 -msgid "" -"https://youtube.com/
https://www.youtube.com/
https://youtu.be/" -"
https://vimeo.com/
https://soundcloud.com/
" +#: ../../Zotlabs/Module/Connedit.php:590 ../../include/widgets.php:493 +msgid "Me" msgstr "" -#: ../../Zotlabs/Module/Admin.php:751 -msgid "" -"All other embedded content will be filtered, unless " -"embedded content from that site is explicitly blocked." +#: ../../Zotlabs/Module/Connedit.php:591 ../../include/widgets.php:494 +msgid "Family" msgstr "" -#: ../../Zotlabs/Module/Admin.php:756 ../../include/widgets.php:1383 -msgid "Security" +#: ../../Zotlabs/Module/Connedit.php:592 ../../Zotlabs/Module/Settings.php:342 +#: ../../Zotlabs/Module/Settings.php:346 ../../Zotlabs/Module/Settings.php:347 +#: ../../Zotlabs/Module/Settings.php:350 ../../Zotlabs/Module/Settings.php:361 +#: ../../include/widgets.php:495 ../../include/selectors.php:123 +#: ../../include/channel.php:389 ../../include/channel.php:390 +#: ../../include/channel.php:397 +msgid "Friends" msgstr "" -#: ../../Zotlabs/Module/Admin.php:758 -msgid "Block public" +#: ../../Zotlabs/Module/Connedit.php:593 ../../include/widgets.php:496 +msgid "Acquaintances" msgstr "" -#: ../../Zotlabs/Module/Admin.php:758 -msgid "" -"Check to block public access to all otherwise public personal pages on this " -"site unless you are currently authenticated." +#: ../../Zotlabs/Module/Connedit.php:594 +#: ../../Zotlabs/Module/Connections.php:92 +#: ../../Zotlabs/Module/Connections.php:107 ../../include/widgets.php:497 +msgid "All" msgstr "" -#: ../../Zotlabs/Module/Admin.php:759 -msgid "Set \"Transport Security\" HTTP header" +#: ../../Zotlabs/Module/Connedit.php:654 +msgid "Approve this connection" msgstr "" -#: ../../Zotlabs/Module/Admin.php:760 -msgid "Set \"Content Security Policy\" HTTP header" +#: ../../Zotlabs/Module/Connedit.php:654 +msgid "Accept connection to allow communication" msgstr "" -#: ../../Zotlabs/Module/Admin.php:761 -msgid "Allow communications only from these sites" +#: ../../Zotlabs/Module/Connedit.php:659 +msgid "Set Affinity" msgstr "" -#: ../../Zotlabs/Module/Admin.php:761 -msgid "" -"One site per line. Leave empty to allow communication from anywhere by " -"default" +#: ../../Zotlabs/Module/Connedit.php:662 +msgid "Set Profile" msgstr "" -#: ../../Zotlabs/Module/Admin.php:762 -msgid "Block communications from these sites" +#: ../../Zotlabs/Module/Connedit.php:665 +msgid "Set Affinity & Profile" msgstr "" -#: ../../Zotlabs/Module/Admin.php:763 -msgid "Allow communications only from these channels" +#: ../../Zotlabs/Module/Connedit.php:698 +msgid "none" msgstr "" -#: ../../Zotlabs/Module/Admin.php:763 -msgid "" -"One channel (hash) per line. Leave empty to allow from any channel by default" +#: ../../Zotlabs/Module/Connedit.php:702 ../../include/widgets.php:614 +msgid "Connection Default Permissions" msgstr "" -#: ../../Zotlabs/Module/Admin.php:764 -msgid "Block communications from these channels" +#: ../../Zotlabs/Module/Connedit.php:702 ../../include/items.php:3926 +#, php-format +msgid "Connection: %s" msgstr "" -#: ../../Zotlabs/Module/Admin.php:765 -msgid "Only allow embeds from secure (SSL) websites and links." +#: ../../Zotlabs/Module/Connedit.php:703 +msgid "Apply these permissions automatically" msgstr "" -#: ../../Zotlabs/Module/Admin.php:766 -msgid "Allow unfiltered embedded HTML content only from these domains" +#: ../../Zotlabs/Module/Connedit.php:703 +msgid "Connection requests will be approved without your interaction" msgstr "" -#: ../../Zotlabs/Module/Admin.php:766 -msgid "One site per line. By default embedded content is filtered." +#: ../../Zotlabs/Module/Connedit.php:705 +msgid "This connection's primary address is" msgstr "" -#: ../../Zotlabs/Module/Admin.php:767 -msgid "Block embedded HTML from these domains" +#: ../../Zotlabs/Module/Connedit.php:706 +msgid "Available locations:" msgstr "" -#: ../../Zotlabs/Module/Admin.php:785 -msgid "Update has been marked successful" +#: ../../Zotlabs/Module/Connedit.php:710 +msgid "" +"The permissions indicated on this page will be applied to all new " +"connections." msgstr "" -#: ../../Zotlabs/Module/Admin.php:795 -#, php-format -msgid "Executing %s failed. Check system logs." +#: ../../Zotlabs/Module/Connedit.php:711 +msgid "Connection Tools" msgstr "" -#: ../../Zotlabs/Module/Admin.php:798 -#, php-format -msgid "Update %s was successfully applied." +#: ../../Zotlabs/Module/Connedit.php:713 +msgid "Slide to adjust your degree of friendship" msgstr "" -#: ../../Zotlabs/Module/Admin.php:802 -#, php-format -msgid "Update %s did not return a status. Unknown if it succeeded." +#: ../../Zotlabs/Module/Connedit.php:714 ../../Zotlabs/Module/Rate.php:159 +#: ../../include/js_strings.php:20 +msgid "Rating" msgstr "" -#: ../../Zotlabs/Module/Admin.php:805 -#, php-format -msgid "Update function %s could not be found." +#: ../../Zotlabs/Module/Connedit.php:715 +msgid "Slide to adjust your rating" msgstr "" -#: ../../Zotlabs/Module/Admin.php:821 -msgid "No failed updates." +#: ../../Zotlabs/Module/Connedit.php:716 ../../Zotlabs/Module/Connedit.php:721 +msgid "Optionally explain your rating" msgstr "" -#: ../../Zotlabs/Module/Admin.php:825 -msgid "Failed Updates" +#: ../../Zotlabs/Module/Connedit.php:718 +msgid "Custom Filter" msgstr "" -#: ../../Zotlabs/Module/Admin.php:827 -msgid "Mark success (if update was manually applied)" +#: ../../Zotlabs/Module/Connedit.php:719 +msgid "Only import posts with this text" msgstr "" -#: ../../Zotlabs/Module/Admin.php:828 -msgid "Attempt to execute this update step automatically" +#: ../../Zotlabs/Module/Connedit.php:719 ../../Zotlabs/Module/Connedit.php:720 +msgid "" +"words one per line or #tags or /patterns/ or lang=xx, leave blank to import " +"all posts" msgstr "" -#: ../../Zotlabs/Module/Admin.php:859 -msgid "Queue Statistics" +#: ../../Zotlabs/Module/Connedit.php:720 +msgid "Do not import posts with this text" msgstr "" -#: ../../Zotlabs/Module/Admin.php:860 -msgid "Total Entries" +#: ../../Zotlabs/Module/Connedit.php:722 +msgid "This information is public!" msgstr "" -#: ../../Zotlabs/Module/Admin.php:861 -msgid "Priority" +#: ../../Zotlabs/Module/Connedit.php:727 +msgid "Connection Pending Approval" msgstr "" -#: ../../Zotlabs/Module/Admin.php:862 -msgid "Destination URL" +#: ../../Zotlabs/Module/Connedit.php:730 +msgid "inherited" msgstr "" -#: ../../Zotlabs/Module/Admin.php:863 -msgid "Mark hub permanently offline" +#: ../../Zotlabs/Module/Connedit.php:732 +#, php-format +msgid "" +"Please choose the profile you would like to display to %s when viewing your " +"profile securely." msgstr "" -#: ../../Zotlabs/Module/Admin.php:864 -msgid "Empty queue for this hub" +#: ../../Zotlabs/Module/Connedit.php:734 +msgid "Their Settings" msgstr "" -#: ../../Zotlabs/Module/Admin.php:865 -msgid "Last known contact" +#: ../../Zotlabs/Module/Connedit.php:735 +msgid "My Settings" msgstr "" -#: ../../Zotlabs/Module/Admin.php:901 -#, php-format -msgid "%s account blocked/unblocked" -msgid_plural "%s account blocked/unblocked" -msgstr[0] "" -msgstr[1] "" +#: ../../Zotlabs/Module/Connedit.php:737 +msgid "Individual Permissions" +msgstr "" -#: ../../Zotlabs/Module/Admin.php:908 -#, php-format -msgid "%s account deleted" -msgid_plural "%s accounts deleted" -msgstr[0] "" -msgstr[1] "" +#: ../../Zotlabs/Module/Connedit.php:738 +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/Admin.php:944 -msgid "Account not found" +#: ../../Zotlabs/Module/Connedit.php:739 +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/Admin.php:955 -#, php-format -msgid "Account '%s' deleted" +#: ../../Zotlabs/Module/Connedit.php:740 +msgid "Last update:" msgstr "" -#: ../../Zotlabs/Module/Admin.php:963 -#, php-format -msgid "Account '%s' blocked" +#: ../../Zotlabs/Module/Directory.php:63 ../../Zotlabs/Module/Display.php:17 +#: ../../Zotlabs/Module/Photos.php:522 ../../Zotlabs/Module/Ratings.php:86 +#: ../../Zotlabs/Module/Search.php:17 +#: ../../Zotlabs/Module/Viewconnections.php:20 +msgid "Public access denied." msgstr "" -#: ../../Zotlabs/Module/Admin.php:971 +#: ../../Zotlabs/Module/Directory.php:243 #, php-format -msgid "Account '%s' unblocked" -msgstr "" +msgid "%d rating" +msgid_plural "%d ratings" +msgstr[0] "" +msgstr[1] "" -#: ../../Zotlabs/Module/Admin.php:1033 ../../Zotlabs/Module/Admin.php:1045 -msgid "Users" +#: ../../Zotlabs/Module/Directory.php:254 +msgid "Gender: " msgstr "" -#: ../../Zotlabs/Module/Admin.php:1035 ../../Zotlabs/Module/Admin.php:1197 -msgid "select all" +#: ../../Zotlabs/Module/Directory.php:256 +msgid "Status: " msgstr "" -#: ../../Zotlabs/Module/Admin.php:1036 -msgid "User registrations waiting for confirm" +#: ../../Zotlabs/Module/Directory.php:258 +msgid "Homepage: " msgstr "" -#: ../../Zotlabs/Module/Admin.php:1037 -msgid "Request date" +#: ../../Zotlabs/Module/Directory.php:306 ../../include/channel.php:1183 +msgid "Age:" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1037 ../../Zotlabs/Module/Admin.php:1046 -#: ../../Zotlabs/Module/Id.php:17 ../../Zotlabs/Module/Id.php:18 -#: ../../include/network.php:2151 ../../boot.php:1697 -msgid "Email" +#: ../../Zotlabs/Module/Directory.php:311 ../../include/event.php:52 +#: ../../include/event.php:84 ../../include/channel.php:1027 +#: ../../include/bb2diaspora.php:507 +msgid "Location:" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1038 -msgid "No registrations." +#: ../../Zotlabs/Module/Directory.php:317 +msgid "Description:" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1039 -#: ../../Zotlabs/Module/Connections.php:275 -msgid "Approve" +#: ../../Zotlabs/Module/Directory.php:322 ../../include/channel.php:1199 +msgid "Hometown:" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1040 -msgid "Deny" +#: ../../Zotlabs/Module/Directory.php:324 ../../include/channel.php:1207 +msgid "About:" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1042 ../../Zotlabs/Module/Connedit.php:540 -msgid "Block" +#: ../../Zotlabs/Module/Directory.php:325 ../../Zotlabs/Module/Match.php:68 +#: ../../Zotlabs/Module/Suggest.php:56 ../../include/widgets.php:147 +#: ../../include/widgets.php:184 ../../include/connections.php:78 +#: ../../include/conversation.php:956 ../../include/channel.php:1012 +msgid "Connect" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1043 ../../Zotlabs/Module/Connedit.php:540 -msgid "Unblock" +#: ../../Zotlabs/Module/Directory.php:326 +msgid "Public Forum:" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1046 ../../include/group.php:267 -msgid "All Channels" +#: ../../Zotlabs/Module/Directory.php:329 +msgid "Keywords: " msgstr "" -#: ../../Zotlabs/Module/Admin.php:1046 -msgid "Register date" +#: ../../Zotlabs/Module/Directory.php:332 +msgid "Don't suggest" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1046 -msgid "Last login" +#: ../../Zotlabs/Module/Directory.php:334 +msgid "Common connections:" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1046 -msgid "Expires" +#: ../../Zotlabs/Module/Directory.php:383 +msgid "Global Directory" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1046 -msgid "Service Class" +#: ../../Zotlabs/Module/Directory.php:383 +msgid "Local Directory" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1048 -msgid "" -"Selected accounts will be deleted!\\n\\nEverything these accounts had posted " -"on this site will be permanently deleted!\\n\\nAre you sure?" +#: ../../Zotlabs/Module/Directory.php:388 +#: ../../Zotlabs/Module/Directory.php:393 +#: ../../Zotlabs/Module/Connections.php:309 +#: ../../include/contact_widgets.php:23 +msgid "Find" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1049 -msgid "" -"The account {0} will be deleted!\\n\\nEverything this account has posted on " -"this site will be permanently deleted!\\n\\nAre you sure?" +#: ../../Zotlabs/Module/Directory.php:389 +msgid "Finding:" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1085 -#, php-format -msgid "%s channel censored/uncensored" -msgid_plural "%s channels censored/uncensored" -msgstr[0] "" -msgstr[1] "" - -#: ../../Zotlabs/Module/Admin.php:1094 -#, php-format -msgid "%s channel code allowed/disallowed" -msgid_plural "%s channels code allowed/disallowed" -msgstr[0] "" -msgstr[1] "" - -#: ../../Zotlabs/Module/Admin.php:1100 -#, php-format -msgid "%s channel deleted" -msgid_plural "%s channels deleted" -msgstr[0] "" -msgstr[1] "" - -#: ../../Zotlabs/Module/Admin.php:1120 -msgid "Channel not found" +#: ../../Zotlabs/Module/Directory.php:392 ../../Zotlabs/Module/Suggest.php:64 +#: ../../include/contact_widgets.php:24 +msgid "Channel Suggestions" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1130 -#, php-format -msgid "Channel '%s' deleted" +#: ../../Zotlabs/Module/Directory.php:394 +msgid "next page" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1142 -#, php-format -msgid "Channel '%s' censored" +#: ../../Zotlabs/Module/Directory.php:394 +msgid "previous page" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1142 -#, php-format -msgid "Channel '%s' uncensored" +#: ../../Zotlabs/Module/Directory.php:395 +msgid "Sort options" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1153 -#, php-format -msgid "Channel '%s' code allowed" +#: ../../Zotlabs/Module/Directory.php:396 +msgid "Alphabetic" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1153 -#, php-format -msgid "Channel '%s' code disallowed" +#: ../../Zotlabs/Module/Directory.php:397 +msgid "Reverse Alphabetic" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1195 ../../include/widgets.php:1382 -msgid "Channels" +#: ../../Zotlabs/Module/Directory.php:398 +msgid "Newest to Oldest" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1199 -msgid "Censor" +#: ../../Zotlabs/Module/Directory.php:399 +msgid "Oldest to Newest" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1200 -msgid "Uncensor" +#: ../../Zotlabs/Module/Directory.php:416 +msgid "No entries (some entries may be hidden)." msgstr "" -#: ../../Zotlabs/Module/Admin.php:1201 -msgid "Allow Code" +#: ../../Zotlabs/Module/Display.php:40 ../../Zotlabs/Module/Filestorage.php:33 +#: ../../Zotlabs/Module/Admin.php:164 ../../Zotlabs/Module/Admin.php:1255 +#: ../../Zotlabs/Module/Admin.php:1561 ../../Zotlabs/Module/Thing.php:89 +#: ../../Zotlabs/Module/Viewsrc.php:24 ../../include/items.php:3359 +msgid "Item not found." msgstr "" -#: ../../Zotlabs/Module/Admin.php:1202 -msgid "Disallow Code" +#: ../../Zotlabs/Module/Editblock.php:79 ../../Zotlabs/Module/Editblock.php:95 +#: ../../Zotlabs/Module/Editpost.php:24 ../../Zotlabs/Module/Editlayout.php:79 +#: ../../Zotlabs/Module/Editwebpage.php:81 +msgid "Item not found" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1203 ../../include/conversation.php:1611 -msgid "Channel" +#: ../../Zotlabs/Module/Editblock.php:124 ../../include/conversation.php:1228 +msgid "Title (optional)" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1204 -msgid "UID" +#: ../../Zotlabs/Module/Editblock.php:133 +msgid "Edit Block" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1204 ../../Zotlabs/Module/Locs.php:118 -#: ../../Zotlabs/Module/Profiles.php:470 -msgid "Address" +#: ../../Zotlabs/Module/Common.php:14 +msgid "No channel." msgstr "" -#: ../../Zotlabs/Module/Admin.php:1206 -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?" +#: ../../Zotlabs/Module/Common.php:43 +msgid "Common connections" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1207 -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?" +#: ../../Zotlabs/Module/Common.php:48 +msgid "No connections in common." msgstr "" -#: ../../Zotlabs/Module/Admin.php:1264 -#, php-format -msgid "Plugin %s disabled." +#: ../../Zotlabs/Module/Connections.php:56 +#: ../../Zotlabs/Module/Connections.php:161 +#: ../../Zotlabs/Module/Connections.php:242 +msgid "Blocked" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1268 -#, php-format -msgid "Plugin %s enabled." +#: ../../Zotlabs/Module/Connections.php:61 +#: ../../Zotlabs/Module/Connections.php:168 +#: ../../Zotlabs/Module/Connections.php:241 +msgid "Ignored" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1278 ../../Zotlabs/Module/Admin.php:1565 -msgid "Disable" +#: ../../Zotlabs/Module/Connections.php:66 +#: ../../Zotlabs/Module/Connections.php:182 +#: ../../Zotlabs/Module/Connections.php:240 +msgid "Hidden" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1281 ../../Zotlabs/Module/Admin.php:1567 -msgid "Enable" +#: ../../Zotlabs/Module/Connections.php:71 +#: ../../Zotlabs/Module/Connections.php:175 +#: ../../Zotlabs/Module/Connections.php:239 +msgid "Archived" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1310 ../../Zotlabs/Module/Admin.php:1400 -#: ../../include/widgets.php:1385 -msgid "Plugins" +#: ../../Zotlabs/Module/Connections.php:76 +#: ../../Zotlabs/Module/Connections.php:86 ../../Zotlabs/Module/Menu.php:116 +#: ../../include/conversation.php:1535 +msgid "New" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1311 ../../Zotlabs/Module/Admin.php:1594 -msgid "Toggle" +#: ../../Zotlabs/Module/Connections.php:138 +msgid "New Connections" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1312 ../../Zotlabs/Module/Admin.php:1595 -#: ../../Zotlabs/Lib/Apps.php:215 ../../include/nav.php:208 -#: ../../include/widgets.php:638 -msgid "Settings" +#: ../../Zotlabs/Module/Connections.php:141 +msgid "Show pending (new) connections" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1319 ../../Zotlabs/Module/Admin.php:1604 -msgid "Author: " +#: ../../Zotlabs/Module/Connections.php:145 +#: ../../Zotlabs/Module/Profperm.php:144 +msgid "All Connections" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1320 ../../Zotlabs/Module/Admin.php:1605 -msgid "Maintainer: " +#: ../../Zotlabs/Module/Connections.php:148 +msgid "Show all connections" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1321 -msgid "Minimum project version: " +#: ../../Zotlabs/Module/Connections.php:164 +msgid "Only show blocked connections" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1322 -msgid "Maximum project version: " +#: ../../Zotlabs/Module/Connections.php:171 +msgid "Only show ignored connections" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1323 -msgid "Minimum PHP version: " +#: ../../Zotlabs/Module/Connections.php:178 +msgid "Only show archived connections" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1324 -msgid "Requires: " +#: ../../Zotlabs/Module/Connections.php:185 +msgid "Only show hidden connections" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1325 ../../Zotlabs/Module/Admin.php:1405 -msgid "Disabled - version incompatibility" +#: ../../Zotlabs/Module/Connections.php:238 +msgid "Pending approval" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1374 -msgid "Enter the public git repository URL of the plugin repo." +#: ../../Zotlabs/Module/Connections.php:254 +#, php-format +msgid "%1$s [%2$s]" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1375 -msgid "Plugin repo git URL" +#: ../../Zotlabs/Module/Connections.php:255 +msgid "Edit connection" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1376 -msgid "Custom repo name" +#: ../../Zotlabs/Module/Connections.php:256 +msgid "Delete connection" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1376 -msgid "(optional)" +#: ../../Zotlabs/Module/Connections.php:265 +msgid "Channel address" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1377 -msgid "Download Plugin Repo" +#: ../../Zotlabs/Module/Connections.php:267 +msgid "Network" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1384 -msgid "Install new repo" +#: ../../Zotlabs/Module/Connections.php:270 ../../Zotlabs/Module/Admin.php:710 +msgid "Status" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1385 ../../Zotlabs/Lib/Apps.php:330 -msgid "Install" +#: ../../Zotlabs/Module/Connections.php:272 +msgid "Connected" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1386 ../../Zotlabs/Module/Fbrowser.php:66 -#: ../../Zotlabs/Module/Fbrowser.php:88 ../../Zotlabs/Module/Settings.php:591 -#: ../../Zotlabs/Module/Settings.php:617 ../../Zotlabs/Module/Tagrm.php:15 -#: ../../Zotlabs/Module/Tagrm.php:138 ../../include/conversation.php:1259 -msgid "Cancel" +#: ../../Zotlabs/Module/Connections.php:274 +msgid "Approve connection" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1407 -msgid "Manage Repos" +#: ../../Zotlabs/Module/Connections.php:275 +#: ../../Zotlabs/Module/Admin.php:1037 +msgid "Approve" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1408 -msgid "Installed Plugin Repositories" +#: ../../Zotlabs/Module/Connections.php:276 +msgid "Ignore connection" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1409 -msgid "Install a New Plugin Repository" +#: ../../Zotlabs/Module/Connections.php:278 +msgid "Recent activity" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1415 ../../Zotlabs/Module/Settings.php:77 -#: ../../Zotlabs/Module/Settings.php:616 ../../Zotlabs/Lib/Apps.php:330 -msgid "Update" +#: ../../Zotlabs/Module/Connections.php:302 ../../Zotlabs/Lib/Apps.php:208 +#: ../../include/text.php:875 ../../include/nav.php:186 +msgid "Connections" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1416 -msgid "Switch branch" +#: ../../Zotlabs/Module/Connections.php:306 ../../Zotlabs/Module/Search.php:44 +#: ../../Zotlabs/Lib/Apps.php:228 ../../include/text.php:945 +#: ../../include/text.php:957 ../../include/nav.php:165 +#: ../../include/acl_selectors.php:276 +msgid "Search" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1417 ../../Zotlabs/Module/Photos.php:998 -#: ../../Zotlabs/Module/Tagrm.php:137 -msgid "Remove" +#: ../../Zotlabs/Module/Connections.php:307 +msgid "Search your connections" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1530 -msgid "No themes found." +#: ../../Zotlabs/Module/Connections.php:308 +msgid "Connections search" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1586 -msgid "Screenshot" +#: ../../Zotlabs/Module/Cover_photo.php:58 +#: ../../Zotlabs/Module/Profile_photo.php:79 +msgid "Image uploaded but image cropping failed." msgstr "" -#: ../../Zotlabs/Module/Admin.php:1593 ../../Zotlabs/Module/Admin.php:1627 -#: ../../include/widgets.php:1386 -msgid "Themes" +#: ../../Zotlabs/Module/Cover_photo.php:134 +#: ../../Zotlabs/Module/Cover_photo.php:181 +msgid "Cover Photos" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1632 -msgid "[Experimental]" +#: ../../Zotlabs/Module/Cover_photo.php:154 +#: ../../Zotlabs/Module/Profile_photo.php:133 +msgid "Image resize failed." msgstr "" -#: ../../Zotlabs/Module/Admin.php:1633 -msgid "[Unsupported]" +#: ../../Zotlabs/Module/Cover_photo.php:168 +#: ../../Zotlabs/Module/Profile_photo.php:192 ../../include/photos.php:144 +msgid "Unable to process image" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1657 -msgid "Log settings updated." +#: ../../Zotlabs/Module/Cover_photo.php:192 +#: ../../Zotlabs/Module/Profile_photo.php:217 +msgid "Image upload failed." msgstr "" -#: ../../Zotlabs/Module/Admin.php:1712 ../../include/widgets.php:1407 -#: ../../include/widgets.php:1417 -msgid "Logs" +#: ../../Zotlabs/Module/Cover_photo.php:210 +#: ../../Zotlabs/Module/Profile_photo.php:236 +msgid "Unable to process image." msgstr "" -#: ../../Zotlabs/Module/Admin.php:1714 -msgid "Clear" +#: ../../Zotlabs/Module/Cover_photo.php:233 ../../include/items.php:4270 +msgid "female" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1720 -msgid "Debugging" +#: ../../Zotlabs/Module/Cover_photo.php:234 ../../include/items.php:4271 +#, php-format +msgid "%1$s updated her %2$s" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1721 -msgid "Log file" +#: ../../Zotlabs/Module/Cover_photo.php:235 ../../include/items.php:4272 +msgid "male" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1721 -msgid "" -"Must be writable by web server. Relative to your Red top-level directory." +#: ../../Zotlabs/Module/Cover_photo.php:236 ../../include/items.php:4273 +#, php-format +msgid "%1$s updated his %2$s" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1722 -msgid "Log level" +#: ../../Zotlabs/Module/Cover_photo.php:238 ../../include/items.php:4275 +#, php-format +msgid "%1$s updated their %2$s" msgstr "" -#: ../../Zotlabs/Module/Admin.php:2008 -msgid "New Profile Field" +#: ../../Zotlabs/Module/Cover_photo.php:240 ../../include/channel.php:1661 +msgid "cover photo" msgstr "" -#: ../../Zotlabs/Module/Admin.php:2009 ../../Zotlabs/Module/Admin.php:2029 -msgid "Field nickname" +#: ../../Zotlabs/Module/Cover_photo.php:303 +#: ../../Zotlabs/Module/Cover_photo.php:318 +#: ../../Zotlabs/Module/Profile_photo.php:283 +#: ../../Zotlabs/Module/Profile_photo.php:324 +msgid "Photo not available." msgstr "" -#: ../../Zotlabs/Module/Admin.php:2009 ../../Zotlabs/Module/Admin.php:2029 -msgid "System name of field" +#: ../../Zotlabs/Module/Cover_photo.php:354 +#: ../../Zotlabs/Module/Profile_photo.php:365 +msgid "Upload File:" msgstr "" -#: ../../Zotlabs/Module/Admin.php:2010 ../../Zotlabs/Module/Admin.php:2030 -msgid "Input type" +#: ../../Zotlabs/Module/Cover_photo.php:355 +#: ../../Zotlabs/Module/Profile_photo.php:366 +msgid "Select a profile:" msgstr "" -#: ../../Zotlabs/Module/Admin.php:2011 ../../Zotlabs/Module/Admin.php:2031 -msgid "Field Name" +#: ../../Zotlabs/Module/Cover_photo.php:356 +msgid "Upload Cover Photo" msgstr "" -#: ../../Zotlabs/Module/Admin.php:2011 ../../Zotlabs/Module/Admin.php:2031 -msgid "Label on profile pages" +#: ../../Zotlabs/Module/Cover_photo.php:361 +#: ../../Zotlabs/Module/Profile_photo.php:374 +#: ../../Zotlabs/Module/Settings.php:985 +msgid "or" msgstr "" -#: ../../Zotlabs/Module/Admin.php:2012 ../../Zotlabs/Module/Admin.php:2032 -msgid "Help text" +#: ../../Zotlabs/Module/Cover_photo.php:361 +#: ../../Zotlabs/Module/Profile_photo.php:374 +msgid "skip this step" msgstr "" -#: ../../Zotlabs/Module/Admin.php:2012 ../../Zotlabs/Module/Admin.php:2032 -msgid "Additional info (optional)" +#: ../../Zotlabs/Module/Cover_photo.php:361 +#: ../../Zotlabs/Module/Profile_photo.php:374 +msgid "select a photo from your photo albums" msgstr "" -#: ../../Zotlabs/Module/Admin.php:2013 ../../Zotlabs/Module/Admin.php:2033 -#: ../../Zotlabs/Module/Filer.php:53 ../../Zotlabs/Module/Rbmark.php:32 -#: ../../Zotlabs/Module/Rbmark.php:104 ../../include/widgets.php:201 -#: ../../include/text.php:946 ../../include/text.php:958 -msgid "Save" +#: ../../Zotlabs/Module/Cover_photo.php:377 +#: ../../Zotlabs/Module/Profile_photo.php:390 +msgid "Crop Image" msgstr "" -#: ../../Zotlabs/Module/Admin.php:2022 -msgid "Field definition not found" +#: ../../Zotlabs/Module/Cover_photo.php:378 +#: ../../Zotlabs/Module/Profile_photo.php:391 +msgid "Please adjust the image cropping for optimum viewing." msgstr "" -#: ../../Zotlabs/Module/Admin.php:2028 -msgid "Edit Profile Field" +#: ../../Zotlabs/Module/Cover_photo.php:380 +#: ../../Zotlabs/Module/Profile_photo.php:393 +msgid "Done Editing" msgstr "" -#: ../../Zotlabs/Module/Admin.php:2086 ../../include/widgets.php:1388 -msgid "Profile Fields" +#: ../../Zotlabs/Module/Editpost.php:35 +msgid "Item is not editable" msgstr "" -#: ../../Zotlabs/Module/Admin.php:2087 -msgid "Basic Profile Fields" +#: ../../Zotlabs/Module/Editpost.php:106 ../../Zotlabs/Module/Rpost.php:135 +msgid "Edit post" msgstr "" -#: ../../Zotlabs/Module/Admin.php:2088 -msgid "Advanced Profile Fields" +#: ../../Zotlabs/Module/Events.php:26 +msgid "Calendar entries imported." msgstr "" -#: ../../Zotlabs/Module/Admin.php:2088 -msgid "(In addition to basic fields)" +#: ../../Zotlabs/Module/Events.php:28 +msgid "No calendar entries found." msgstr "" -#: ../../Zotlabs/Module/Admin.php:2090 -msgid "All available fields" +#: ../../Zotlabs/Module/Events.php:105 +msgid "Event can not end before it has started." msgstr "" -#: ../../Zotlabs/Module/Admin.php:2091 -msgid "Custom Fields" +#: ../../Zotlabs/Module/Events.php:107 ../../Zotlabs/Module/Events.php:116 +#: ../../Zotlabs/Module/Events.php:136 +msgid "Unable to generate preview." msgstr "" -#: ../../Zotlabs/Module/Admin.php:2095 -msgid "Create Custom Field" +#: ../../Zotlabs/Module/Events.php:114 +msgid "Event title and start time are required." msgstr "" -#: ../../Zotlabs/Module/Api.php:61 ../../Zotlabs/Module/Api.php:85 -msgid "Authorize application connection" +#: ../../Zotlabs/Module/Events.php:134 ../../Zotlabs/Module/Events.php:259 +msgid "Event not found." msgstr "" -#: ../../Zotlabs/Module/Api.php:62 -msgid "Return to your app and insert this Securty Code:" +#: ../../Zotlabs/Module/Events.php:254 ../../Zotlabs/Module/Like.php:373 +#: ../../Zotlabs/Module/Tagger.php:51 ../../include/event.php:949 +#: ../../include/text.php:1943 ../../include/conversation.php:123 +msgid "event" msgstr "" -#: ../../Zotlabs/Module/Api.php:72 -msgid "Please login to continue." +#: ../../Zotlabs/Module/Events.php:449 +msgid "Edit event title" msgstr "" -#: ../../Zotlabs/Module/Api.php:87 -msgid "" -"Do you want to authorize this application to access your posts and contacts, " -"and/or create new posts for you?" +#: ../../Zotlabs/Module/Events.php:449 +msgid "Event title" msgstr "" -#: ../../Zotlabs/Module/Appman.php:37 ../../Zotlabs/Module/Appman.php:53 -msgid "App installed." +#: ../../Zotlabs/Module/Events.php:449 ../../Zotlabs/Module/Events.php:454 +#: ../../Zotlabs/Module/Profiles.php:709 ../../Zotlabs/Module/Profiles.php:713 +#: ../../Zotlabs/Module/Appman.php:115 ../../Zotlabs/Module/Appman.php:116 +#: ../../include/datetime.php:245 +msgid "Required" msgstr "" -#: ../../Zotlabs/Module/Appman.php:46 -msgid "Malformed app." +#: ../../Zotlabs/Module/Events.php:451 +msgid "Categories (comma-separated list)" msgstr "" -#: ../../Zotlabs/Module/Appman.php:104 -msgid "Embed code" +#: ../../Zotlabs/Module/Events.php:452 +msgid "Edit Category" msgstr "" -#: ../../Zotlabs/Module/Appman.php:110 ../../include/widgets.php:107 -msgid "Edit App" +#: ../../Zotlabs/Module/Events.php:452 +msgid "Category" msgstr "" -#: ../../Zotlabs/Module/Appman.php:110 -msgid "Create App" +#: ../../Zotlabs/Module/Events.php:455 +msgid "Edit start date and time" msgstr "" -#: ../../Zotlabs/Module/Appman.php:115 -msgid "Name of app" +#: ../../Zotlabs/Module/Events.php:455 +msgid "Start date and time" msgstr "" -#: ../../Zotlabs/Module/Appman.php:115 ../../Zotlabs/Module/Appman.php:116 -#: ../../Zotlabs/Module/Events.php:449 ../../Zotlabs/Module/Events.php:454 -#: ../../Zotlabs/Module/Profiles.php:709 ../../Zotlabs/Module/Profiles.php:713 -#: ../../include/datetime.php:245 -msgid "Required" +#: ../../Zotlabs/Module/Events.php:456 ../../Zotlabs/Module/Events.php:459 +msgid "Finish date and time are not known or not relevant" msgstr "" -#: ../../Zotlabs/Module/Appman.php:116 -msgid "Location (URL) of app" +#: ../../Zotlabs/Module/Events.php:458 +msgid "Edit finish date and time" msgstr "" -#: ../../Zotlabs/Module/Appman.php:117 ../../Zotlabs/Module/Events.php:462 -#: ../../Zotlabs/Module/Rbmark.php:101 -msgid "Description" +#: ../../Zotlabs/Module/Events.php:458 +msgid "Finish date and time" msgstr "" -#: ../../Zotlabs/Module/Appman.php:118 -msgid "Photo icon URL" +#: ../../Zotlabs/Module/Events.php:460 ../../Zotlabs/Module/Events.php:461 +msgid "Adjust for viewer timezone" msgstr "" -#: ../../Zotlabs/Module/Appman.php:118 -msgid "80 x 80 pixels - optional" +#: ../../Zotlabs/Module/Events.php:460 +msgid "" +"Important for events that happen in a particular place. Not practical for " +"global holidays." msgstr "" -#: ../../Zotlabs/Module/Appman.php:119 -msgid "Categories (optional, comma separated list)" +#: ../../Zotlabs/Module/Events.php:462 +msgid "Edit Description" msgstr "" -#: ../../Zotlabs/Module/Appman.php:120 -msgid "Version ID" +#: ../../Zotlabs/Module/Events.php:462 ../../Zotlabs/Module/Appman.php:117 +#: ../../Zotlabs/Module/Rbmark.php:101 +msgid "Description" msgstr "" -#: ../../Zotlabs/Module/Appman.php:121 -msgid "Price of app" +#: ../../Zotlabs/Module/Events.php:464 +msgid "Edit Location" msgstr "" -#: ../../Zotlabs/Module/Appman.php:122 -msgid "Location (URL) to purchase app" +#: ../../Zotlabs/Module/Events.php:464 ../../Zotlabs/Module/Locs.php:117 +#: ../../Zotlabs/Module/Profiles.php:477 ../../Zotlabs/Module/Profiles.php:698 +#: ../../Zotlabs/Module/Pubsites.php:41 ../../include/js_strings.php:25 +msgid "Location" msgstr "" -#: ../../Zotlabs/Module/Apps.php:47 ../../include/nav.php:163 -#: ../../include/widgets.php:102 -msgid "Apps" +#: ../../Zotlabs/Module/Events.php:467 ../../Zotlabs/Module/Events.php:469 +msgid "Share this event" msgstr "" -#: ../../Zotlabs/Module/Attach.php:13 -msgid "Item not available." +#: ../../Zotlabs/Module/Events.php:470 ../../Zotlabs/Module/Photos.php:1093 +#: ../../Zotlabs/Module/Webpages.php:194 ../../Zotlabs/Lib/ThreadItem.php:719 +#: ../../include/conversation.php:1187 ../../include/page_widgets.php:40 +msgid "Preview" msgstr "" -#: ../../Zotlabs/Module/Block.php:31 ../../Zotlabs/Module/Page.php:40 -msgid "Invalid item." +#: ../../Zotlabs/Module/Events.php:471 ../../include/conversation.php:1232 +msgid "Permission settings" msgstr "" -#: ../../Zotlabs/Module/Block.php:43 ../../Zotlabs/Module/Cal.php:62 -#: ../../Zotlabs/Module/Page.php:56 ../../Zotlabs/Module/Wall_upload.php:33 -msgid "Channel not found." +#: ../../Zotlabs/Module/Events.php:476 +msgid "Advanced Options" msgstr "" -#: ../../Zotlabs/Module/Blocks.php:97 ../../Zotlabs/Module/Blocks.php:152 -#: ../../Zotlabs/Module/Editblock.php:108 -msgid "Block Name" +#: ../../Zotlabs/Module/Events.php:610 +msgid "Edit event" msgstr "" -#: ../../Zotlabs/Module/Blocks.php:151 ../../include/text.php:2250 -msgid "Blocks" +#: ../../Zotlabs/Module/Events.php:612 +msgid "Delete event" msgstr "" -#: ../../Zotlabs/Module/Blocks.php:153 -msgid "Block Title" +#: ../../Zotlabs/Module/Events.php:646 +msgid "calendar" msgstr "" -#: ../../Zotlabs/Module/Blocks.php:154 ../../Zotlabs/Module/Layouts.php:188 -#: ../../Zotlabs/Module/Menu.php:114 ../../Zotlabs/Module/Webpages.php:198 -#: ../../include/page_widgets.php:44 -msgid "Created" +#: ../../Zotlabs/Module/Events.php:706 +msgid "Event removed" msgstr "" -#: ../../Zotlabs/Module/Blocks.php:155 ../../Zotlabs/Module/Layouts.php:189 -#: ../../Zotlabs/Module/Menu.php:115 ../../Zotlabs/Module/Webpages.php:199 -#: ../../include/page_widgets.php:45 -msgid "Edited" +#: ../../Zotlabs/Module/Events.php:709 +msgid "Failed to remove event" msgstr "" -#: ../../Zotlabs/Module/Blocks.php:158 ../../Zotlabs/Module/Layouts.php:191 -#: ../../Zotlabs/Module/Photos.php:1072 ../../Zotlabs/Module/Webpages.php:188 -#: ../../include/conversation.php:1208 -msgid "Share" +#: ../../Zotlabs/Module/Fbrowser.php:29 ../../Zotlabs/Lib/Apps.php:220 +#: ../../include/nav.php:92 ../../include/conversation.php:1632 +msgid "Photos" msgstr "" -#: ../../Zotlabs/Module/Blocks.php:163 ../../Zotlabs/Module/Layouts.php:195 -#: ../../Zotlabs/Module/Pubsites.php:47 ../../Zotlabs/Module/Webpages.php:193 -#: ../../include/page_widgets.php:39 -msgid "View" +#: ../../Zotlabs/Module/Fbrowser.php:66 ../../Zotlabs/Module/Fbrowser.php:88 +#: ../../Zotlabs/Module/Admin.php:1406 ../../Zotlabs/Module/Settings.php:591 +#: ../../Zotlabs/Module/Settings.php:617 ../../Zotlabs/Module/Tagrm.php:15 +#: ../../Zotlabs/Module/Tagrm.php:138 ../../include/conversation.php:1259 +msgid "Cancel" msgstr "" -#: ../../Zotlabs/Module/Bookmarks.php:53 -msgid "Bookmark added" +#: ../../Zotlabs/Module/Dirsearch.php:25 ../../Zotlabs/Module/Regdir.php:49 +msgid "This site is not a directory server" msgstr "" -#: ../../Zotlabs/Module/Bookmarks.php:75 -msgid "My Bookmarks" +#: ../../Zotlabs/Module/Dirsearch.php:33 +msgid "This directory server requires an access token" msgstr "" -#: ../../Zotlabs/Module/Bookmarks.php:86 -msgid "My Connections Bookmarks" +#: ../../Zotlabs/Module/Filer.php:52 +msgid "Save to Folder:" msgstr "" -#: ../../Zotlabs/Module/Cal.php:69 -msgid "Permissions denied." +#: ../../Zotlabs/Module/Filer.php:52 +msgid "- select -" msgstr "" -#: ../../Zotlabs/Module/Cal.php:259 ../../Zotlabs/Module/Events.php:588 -msgid "l, F j" +#: ../../Zotlabs/Module/Filer.php:53 ../../Zotlabs/Module/Admin.php:2033 +#: ../../Zotlabs/Module/Admin.php:2053 ../../Zotlabs/Module/Rbmark.php:32 +#: ../../Zotlabs/Module/Rbmark.php:104 ../../include/text.php:946 +#: ../../include/text.php:958 ../../include/widgets.php:201 +msgid "Save" msgstr "" -#: ../../Zotlabs/Module/Cal.php:308 ../../Zotlabs/Module/Events.php:637 -#: ../../include/text.php:1717 -msgid "Link to Source" +#: ../../Zotlabs/Module/Dreport.php:27 +msgid "Invalid message" msgstr "" -#: ../../Zotlabs/Module/Cal.php:331 ../../Zotlabs/Module/Events.php:665 -msgid "Edit Event" +#: ../../Zotlabs/Module/Dreport.php:59 +msgid "no results" msgstr "" -#: ../../Zotlabs/Module/Cal.php:331 ../../Zotlabs/Module/Events.php:665 -msgid "Create Event" +#: ../../Zotlabs/Module/Dreport.php:64 +#, php-format +msgid "Delivery report for %1$s" msgstr "" -#: ../../Zotlabs/Module/Cal.php:332 ../../Zotlabs/Module/Cal.php:339 -#: ../../Zotlabs/Module/Events.php:666 ../../Zotlabs/Module/Events.php:673 -#: ../../Zotlabs/Module/Photos.php:949 -msgid "Previous" +#: ../../Zotlabs/Module/Dreport.php:78 +msgid "channel sync processed" msgstr "" -#: ../../Zotlabs/Module/Cal.php:333 ../../Zotlabs/Module/Cal.php:340 -#: ../../Zotlabs/Module/Events.php:667 ../../Zotlabs/Module/Events.php:674 -#: ../../Zotlabs/Module/Photos.php:958 ../../Zotlabs/Module/Setup.php:267 -msgid "Next" +#: ../../Zotlabs/Module/Dreport.php:82 +msgid "queued" msgstr "" -#: ../../Zotlabs/Module/Cal.php:334 ../../Zotlabs/Module/Events.php:668 -#: ../../include/widgets.php:755 -msgid "Export" +#: ../../Zotlabs/Module/Dreport.php:86 +msgid "posted" msgstr "" -#: ../../Zotlabs/Module/Cal.php:337 ../../Zotlabs/Module/Events.php:671 -#: ../../include/widgets.php:756 -msgid "Import" +#: ../../Zotlabs/Module/Dreport.php:90 +msgid "accepted for delivery" msgstr "" -#: ../../Zotlabs/Module/Cal.php:341 ../../Zotlabs/Module/Events.php:675 -msgid "Today" +#: ../../Zotlabs/Module/Dreport.php:94 +msgid "updated" msgstr "" -#: ../../Zotlabs/Module/Channel.php:29 ../../Zotlabs/Module/Chat.php:25 -msgid "You must be logged in to see this page." +#: ../../Zotlabs/Module/Dreport.php:97 +msgid "update ignored" msgstr "" -#: ../../Zotlabs/Module/Channel.php:41 -msgid "Posts and comments" +#: ../../Zotlabs/Module/Dreport.php:100 +msgid "permission denied" msgstr "" -#: ../../Zotlabs/Module/Channel.php:42 -msgid "Only posts" +#: ../../Zotlabs/Module/Dreport.php:104 +msgid "recipient not found" msgstr "" -#: ../../Zotlabs/Module/Channel.php:102 -msgid "Insufficient permissions. Request redirected to profile page." +#: ../../Zotlabs/Module/Dreport.php:107 +msgid "mail recalled" msgstr "" -#: ../../Zotlabs/Module/Chat.php:181 -msgid "Room not found" +#: ../../Zotlabs/Module/Dreport.php:110 +msgid "duplicate mail received" msgstr "" -#: ../../Zotlabs/Module/Chat.php:197 -msgid "Leave Room" +#: ../../Zotlabs/Module/Dreport.php:113 +msgid "mail delivered" msgstr "" -#: ../../Zotlabs/Module/Chat.php:198 -msgid "Delete Room" +#: ../../Zotlabs/Module/Editlayout.php:126 +#: ../../Zotlabs/Module/Layouts.php:127 ../../Zotlabs/Module/Layouts.php:186 +msgid "Layout Name" msgstr "" -#: ../../Zotlabs/Module/Chat.php:199 -msgid "I am away right now" +#: ../../Zotlabs/Module/Editlayout.php:127 +#: ../../Zotlabs/Module/Layouts.php:130 +msgid "Layout Description (Optional)" msgstr "" -#: ../../Zotlabs/Module/Chat.php:200 -msgid "I am online" +#: ../../Zotlabs/Module/Editlayout.php:135 +msgid "Edit Layout" msgstr "" -#: ../../Zotlabs/Module/Chat.php:202 -msgid "Bookmark this room" +#: ../../Zotlabs/Module/Editwebpage.php:143 +msgid "Page link" msgstr "" -#: ../../Zotlabs/Module/Chat.php:205 ../../Zotlabs/Module/Mail.php:205 -#: ../../Zotlabs/Module/Mail.php:314 ../../include/conversation.php:1176 -msgid "Please enter a link URL:" +#: ../../Zotlabs/Module/Editwebpage.php:169 +msgid "Edit Webpage" msgstr "" -#: ../../Zotlabs/Module/Chat.php:206 ../../Zotlabs/Module/Mail.php:258 -#: ../../Zotlabs/Module/Mail.php:383 ../../Zotlabs/Lib/ThreadItem.php:711 -#: ../../include/conversation.php:1256 -msgid "Encrypt text" +#: ../../Zotlabs/Module/Follow.php:34 +msgid "Channel added." msgstr "" -#: ../../Zotlabs/Module/Chat.php:207 ../../Zotlabs/Module/Editblock.php:111 -#: ../../Zotlabs/Module/Editwebpage.php:147 ../../Zotlabs/Module/Mail.php:252 -#: ../../Zotlabs/Module/Mail.php:377 ../../include/conversation.php:1143 -msgid "Insert web link" +#: ../../Zotlabs/Module/Acl.php:227 +msgid "network" msgstr "" -#: ../../Zotlabs/Module/Chat.php:218 -msgid "Feature disabled." +#: ../../Zotlabs/Module/Acl.php:237 +msgid "RSS" msgstr "" -#: ../../Zotlabs/Module/Chat.php:232 -msgid "New Chatroom" +#: ../../Zotlabs/Module/Group.php:24 +msgid "Privacy group created." msgstr "" -#: ../../Zotlabs/Module/Chat.php:233 -msgid "Chatroom name" +#: ../../Zotlabs/Module/Group.php:30 +msgid "Could not create privacy group." msgstr "" -#: ../../Zotlabs/Module/Chat.php:234 -msgid "Expiration of chats (minutes)" +#: ../../Zotlabs/Module/Group.php:42 ../../Zotlabs/Module/Group.php:141 +#: ../../include/items.php:3893 +msgid "Privacy group not found." msgstr "" -#: ../../Zotlabs/Module/Chat.php:235 ../../Zotlabs/Module/Filestorage.php:153 -#: ../../Zotlabs/Module/Photos.php:671 ../../Zotlabs/Module/Photos.php:1045 -#: ../../Zotlabs/Module/Thing.php:313 ../../Zotlabs/Module/Thing.php:359 -#: ../../include/acl_selectors.php:283 -msgid "Permissions" +#: ../../Zotlabs/Module/Group.php:58 +msgid "Privacy group updated." msgstr "" -#: ../../Zotlabs/Module/Chat.php:246 -#, php-format -msgid "%1$s's Chatrooms" +#: ../../Zotlabs/Module/Group.php:90 +msgid "Create a group of channels." msgstr "" -#: ../../Zotlabs/Module/Chat.php:251 -msgid "No chatrooms available" +#: ../../Zotlabs/Module/Group.php:91 ../../Zotlabs/Module/Group.php:184 +msgid "Privacy group name: " msgstr "" -#: ../../Zotlabs/Module/Chat.php:252 ../../Zotlabs/Module/Manage.php:143 -#: ../../Zotlabs/Module/Profiles.php:778 -msgid "Create New" +#: ../../Zotlabs/Module/Group.php:93 ../../Zotlabs/Module/Group.php:187 +msgid "Members are visible to other channels" msgstr "" -#: ../../Zotlabs/Module/Chat.php:255 -msgid "Expiration" +#: ../../Zotlabs/Module/Group.php:111 +msgid "Privacy group removed." msgstr "" -#: ../../Zotlabs/Module/Chat.php:256 -msgid "min" +#: ../../Zotlabs/Module/Group.php:113 +msgid "Unable to remove privacy group." msgstr "" -#: ../../Zotlabs/Module/Chatsvc.php:117 -msgid "Away" +#: ../../Zotlabs/Module/Group.php:183 +msgid "Privacy group editor" msgstr "" -#: ../../Zotlabs/Module/Chatsvc.php:122 -msgid "Online" +#: ../../Zotlabs/Module/Group.php:197 +msgid "Members" msgstr "" -#: ../../Zotlabs/Module/Common.php:14 -msgid "No channel." +#: ../../Zotlabs/Module/Group.php:199 +msgid "All Connected Channels" msgstr "" -#: ../../Zotlabs/Module/Common.php:43 -msgid "Common connections" +#: ../../Zotlabs/Module/Group.php:231 +msgid "Click on a channel to add or remove." msgstr "" -#: ../../Zotlabs/Module/Common.php:48 -msgid "No connections in common." +#: ../../Zotlabs/Module/Ffsapi.php:12 +msgid "Share content from Firefox to $Projectname" msgstr "" -#: ../../Zotlabs/Module/Connect.php:61 ../../Zotlabs/Module/Connect.php:109 -msgid "Continue" +#: ../../Zotlabs/Module/Ffsapi.php:15 +msgid "Activate the Firefox $Projectname provider" msgstr "" -#: ../../Zotlabs/Module/Connect.php:90 -msgid "Premium Channel Setup" +#: ../../Zotlabs/Module/Api.php:61 ../../Zotlabs/Module/Api.php:85 +msgid "Authorize application connection" msgstr "" -#: ../../Zotlabs/Module/Connect.php:92 -msgid "Enable premium channel connection restrictions" +#: ../../Zotlabs/Module/Api.php:62 +msgid "Return to your app and insert this Securty Code:" msgstr "" -#: ../../Zotlabs/Module/Connect.php:93 -msgid "" -"Please enter your restrictions or conditions, such as paypal receipt, usage " -"guidelines, etc." +#: ../../Zotlabs/Module/Api.php:72 +msgid "Please login to continue." msgstr "" -#: ../../Zotlabs/Module/Connect.php:95 ../../Zotlabs/Module/Connect.php:115 +#: ../../Zotlabs/Module/Api.php:87 msgid "" -"This channel may require additional steps or acknowledgement of the " -"following conditions prior to connecting:" +"Do you want to authorize this application to access your posts and contacts, " +"and/or create new posts for you?" msgstr "" -#: ../../Zotlabs/Module/Connect.php:96 -msgid "" -"Potential connections will then see the following text before proceeding:" +#: ../../Zotlabs/Module/Help.php:26 +msgid "Documentation Search" msgstr "" -#: ../../Zotlabs/Module/Connect.php:97 ../../Zotlabs/Module/Connect.php:118 -msgid "" -"By continuing, I certify that I have complied with any instructions provided " -"on this page." +#: ../../Zotlabs/Module/Help.php:67 ../../Zotlabs/Module/Help.php:73 +#: ../../Zotlabs/Module/Help.php:79 +msgid "Help:" msgstr "" -#: ../../Zotlabs/Module/Connect.php:106 -msgid "(No specific instructions have been provided by the channel owner.)" +#: ../../Zotlabs/Module/Help.php:85 ../../Zotlabs/Module/Help.php:90 +#: ../../Zotlabs/Module/Layouts.php:183 ../../Zotlabs/Lib/Apps.php:223 +#: ../../include/nav.php:159 +msgid "Help" msgstr "" -#: ../../Zotlabs/Module/Connect.php:114 -msgid "Restricted or Premium Channel" +#: ../../Zotlabs/Module/Help.php:120 +msgid "$Projectname Documentation" msgstr "" -#: ../../Zotlabs/Module/Connections.php:56 -#: ../../Zotlabs/Module/Connections.php:161 -#: ../../Zotlabs/Module/Connections.php:242 -msgid "Blocked" +#: ../../Zotlabs/Module/Filestorage.php:88 +msgid "Permission Denied." msgstr "" -#: ../../Zotlabs/Module/Connections.php:61 -#: ../../Zotlabs/Module/Connections.php:168 -#: ../../Zotlabs/Module/Connections.php:241 -msgid "Ignored" +#: ../../Zotlabs/Module/Filestorage.php:104 +msgid "File not found." msgstr "" -#: ../../Zotlabs/Module/Connections.php:66 -#: ../../Zotlabs/Module/Connections.php:182 -#: ../../Zotlabs/Module/Connections.php:240 -msgid "Hidden" +#: ../../Zotlabs/Module/Filestorage.php:147 +msgid "Edit file permissions" msgstr "" -#: ../../Zotlabs/Module/Connections.php:71 -#: ../../Zotlabs/Module/Connections.php:175 -#: ../../Zotlabs/Module/Connections.php:239 -msgid "Archived" +#: ../../Zotlabs/Module/Filestorage.php:156 +msgid "Set/edit permissions" msgstr "" -#: ../../Zotlabs/Module/Connections.php:76 -#: ../../Zotlabs/Module/Connections.php:86 ../../Zotlabs/Module/Menu.php:116 -#: ../../include/conversation.php:1535 -msgid "New" +#: ../../Zotlabs/Module/Filestorage.php:157 +msgid "Include all files and sub folders" msgstr "" -#: ../../Zotlabs/Module/Connections.php:92 -#: ../../Zotlabs/Module/Connections.php:107 -#: ../../Zotlabs/Module/Connedit.php:594 ../../include/widgets.php:497 -msgid "All" +#: ../../Zotlabs/Module/Filestorage.php:158 +msgid "Return to file list" msgstr "" -#: ../../Zotlabs/Module/Connections.php:138 -msgid "New Connections" +#: ../../Zotlabs/Module/Filestorage.php:160 +msgid "Copy/paste this code to attach file to a post" msgstr "" -#: ../../Zotlabs/Module/Connections.php:141 -msgid "Show pending (new) connections" +#: ../../Zotlabs/Module/Filestorage.php:161 +msgid "Copy/paste this URL to link file from a web page" msgstr "" -#: ../../Zotlabs/Module/Connections.php:145 -#: ../../Zotlabs/Module/Profperm.php:144 -msgid "All Connections" +#: ../../Zotlabs/Module/Filestorage.php:163 +msgid "Share this file" msgstr "" -#: ../../Zotlabs/Module/Connections.php:148 -msgid "Show all connections" +#: ../../Zotlabs/Module/Filestorage.php:164 +msgid "Show URL to this file" msgstr "" -#: ../../Zotlabs/Module/Connections.php:164 -msgid "Only show blocked connections" +#: ../../Zotlabs/Module/Filestorage.php:165 +msgid "Notify your contacts about this file" msgstr "" -#: ../../Zotlabs/Module/Connections.php:171 -msgid "Only show ignored connections" +#: ../../Zotlabs/Module/Apps.php:47 ../../include/widgets.php:102 +#: ../../include/nav.php:163 +msgid "Apps" msgstr "" -#: ../../Zotlabs/Module/Connections.php:178 -msgid "Only show archived connections" +#: ../../Zotlabs/Module/Attach.php:13 +msgid "Item not available." msgstr "" -#: ../../Zotlabs/Module/Connections.php:185 -msgid "Only show hidden connections" +#: ../../Zotlabs/Module/Import.php:32 +#, php-format +msgid "Your service plan only allows %d channels." msgstr "" -#: ../../Zotlabs/Module/Connections.php:238 -msgid "Pending approval" +#: ../../Zotlabs/Module/Import.php:70 ../../Zotlabs/Module/Import_items.php:42 +msgid "Nothing to import." msgstr "" -#: ../../Zotlabs/Module/Connections.php:254 -#, php-format -msgid "%1$s [%2$s]" +#: ../../Zotlabs/Module/Import.php:94 ../../Zotlabs/Module/Import_items.php:66 +msgid "Unable to download data from old server" msgstr "" -#: ../../Zotlabs/Module/Connections.php:255 -msgid "Edit connection" +#: ../../Zotlabs/Module/Import.php:100 +#: ../../Zotlabs/Module/Import_items.php:72 +msgid "Imported file is empty." msgstr "" -#: ../../Zotlabs/Module/Connections.php:256 -msgid "Delete connection" +#: ../../Zotlabs/Module/Import.php:122 +#: ../../Zotlabs/Module/Import_items.php:86 +#, php-format +msgid "Warning: Database versions differ by %1$d updates." msgstr "" -#: ../../Zotlabs/Module/Connections.php:265 -msgid "Channel address" +#: ../../Zotlabs/Module/Import.php:150 ../../include/import.php:86 +msgid "Cloned channel not found. Import failed." msgstr "" -#: ../../Zotlabs/Module/Connections.php:267 -msgid "Network" +#: ../../Zotlabs/Module/Import.php:160 +msgid "No channel. Import failed." msgstr "" -#: ../../Zotlabs/Module/Connections.php:272 -msgid "Connected" +#: ../../Zotlabs/Module/Import.php:510 +#: ../../include/Import/import_diaspora.php:142 +msgid "Import completed." msgstr "" -#: ../../Zotlabs/Module/Connections.php:274 -msgid "Approve connection" +#: ../../Zotlabs/Module/Import.php:532 +msgid "You must be logged in to use this feature." msgstr "" -#: ../../Zotlabs/Module/Connections.php:276 -msgid "Ignore connection" +#: ../../Zotlabs/Module/Import.php:537 +msgid "Import Channel" msgstr "" -#: ../../Zotlabs/Module/Connections.php:277 -#: ../../Zotlabs/Module/Connedit.php:548 -#: ../../Zotlabs/Module/Notifications.php:55 -msgid "Ignore" +#: ../../Zotlabs/Module/Import.php:538 +msgid "" +"Use this form to import an existing channel from a different server/hub. You " +"may retrieve the channel identity from the old server/hub via the network or " +"provide an export file." msgstr "" -#: ../../Zotlabs/Module/Connections.php:278 -msgid "Recent activity" +#: ../../Zotlabs/Module/Import.php:539 +#: ../../Zotlabs/Module/Import_items.php:119 +msgid "File to Upload" msgstr "" -#: ../../Zotlabs/Module/Connections.php:302 ../../Zotlabs/Lib/Apps.php:208 -#: ../../include/nav.php:186 ../../include/text.php:875 -msgid "Connections" +#: ../../Zotlabs/Module/Import.php:540 +msgid "Or provide the old server/hub details" msgstr "" -#: ../../Zotlabs/Module/Connections.php:306 ../../Zotlabs/Module/Search.php:44 -#: ../../Zotlabs/Lib/Apps.php:228 ../../include/nav.php:165 -#: ../../include/acl_selectors.php:276 ../../include/text.php:945 -#: ../../include/text.php:957 -msgid "Search" +#: ../../Zotlabs/Module/Import.php:541 +msgid "Your old identity address (xyz@example.com)" msgstr "" -#: ../../Zotlabs/Module/Connections.php:307 -msgid "Search your connections" +#: ../../Zotlabs/Module/Import.php:542 +msgid "Your old login email address" msgstr "" -#: ../../Zotlabs/Module/Connections.php:308 -msgid "Connections search" +#: ../../Zotlabs/Module/Import.php:543 +msgid "Your old login password" msgstr "" -#: ../../Zotlabs/Module/Connections.php:309 -#: ../../Zotlabs/Module/Directory.php:388 -#: ../../Zotlabs/Module/Directory.php:393 ../../include/contact_widgets.php:23 -msgid "Find" +#: ../../Zotlabs/Module/Import.php:544 +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/Connedit.php:80 -msgid "Could not access contact record." +#: ../../Zotlabs/Module/Import.php:545 +msgid "Make this hub my primary location" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:104 -msgid "Could not locate selected profile." +#: ../../Zotlabs/Module/Import.php:546 +msgid "" +"Import existing posts if possible (experimental - limited by available memory" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:227 -msgid "Connection updated." +#: ../../Zotlabs/Module/Import.php:547 +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/Connedit.php:229 -msgid "Failed to update connection record." +#: ../../Zotlabs/Module/Item.php:178 +msgid "Unable to locate original post." msgstr "" -#: ../../Zotlabs/Module/Connedit.php:276 -msgid "is now connected to" +#: ../../Zotlabs/Module/Item.php:427 +msgid "Empty post discarded." msgstr "" -#: ../../Zotlabs/Module/Connedit.php:411 -msgid "Could not access address book record." +#: ../../Zotlabs/Module/Item.php:467 +msgid "Executable content type not permitted to this channel." msgstr "" -#: ../../Zotlabs/Module/Connedit.php:425 -msgid "Refresh failed - channel is currently unavailable." +#: ../../Zotlabs/Module/Item.php:847 +msgid "Duplicate post suppressed." msgstr "" -#: ../../Zotlabs/Module/Connedit.php:440 ../../Zotlabs/Module/Connedit.php:449 -#: ../../Zotlabs/Module/Connedit.php:458 ../../Zotlabs/Module/Connedit.php:467 -#: ../../Zotlabs/Module/Connedit.php:480 -msgid "Unable to set address book parameters." +#: ../../Zotlabs/Module/Item.php:977 +msgid "System error. Post not saved." msgstr "" -#: ../../Zotlabs/Module/Connedit.php:503 -msgid "Connection has been removed." +#: ../../Zotlabs/Module/Item.php:1241 +msgid "Unable to obtain post information from database." msgstr "" -#: ../../Zotlabs/Module/Connedit.php:519 ../../Zotlabs/Lib/Apps.php:219 -#: ../../include/conversation.php:954 ../../include/nav.php:86 -msgid "View Profile" +#: ../../Zotlabs/Module/Item.php:1248 +#, php-format +msgid "You have reached your limit of %1$.0f top level posts." msgstr "" -#: ../../Zotlabs/Module/Connedit.php:522 +#: ../../Zotlabs/Module/Item.php:1255 #, php-format -msgid "View %s's profile" +msgid "You have reached your limit of %1$.0f webpages." msgstr "" -#: ../../Zotlabs/Module/Connedit.php:526 -msgid "Refresh Permissions" +#: ../../Zotlabs/Module/Layouts.php:181 ../../include/text.php:2267 +msgid "Layouts" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:529 -msgid "Fetch updated permissions" +#: ../../Zotlabs/Module/Layouts.php:183 +msgid "Comanche page description language help" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:533 -msgid "Recent Activity" +#: ../../Zotlabs/Module/Layouts.php:187 +msgid "Layout Description" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:536 -msgid "View recent posts and comments" +#: ../../Zotlabs/Module/Layouts.php:192 +msgid "Download PDL file" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:543 -msgid "Block (or Unblock) all communications with this connection" +#: ../../Zotlabs/Module/Home.php:61 ../../Zotlabs/Module/Home.php:69 +#: ../../Zotlabs/Module/Siteinfo.php:65 +msgid "$Projectname" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:544 -msgid "This connection is blocked!" +#: ../../Zotlabs/Module/Home.php:79 +#, php-format +msgid "Welcome to %s" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:548 -msgid "Unignore" +#: ../../Zotlabs/Module/Id.php:13 +msgid "First Name" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:551 -msgid "Ignore (or Unignore) all inbound communications from this connection" +#: ../../Zotlabs/Module/Id.php:14 +msgid "Last Name" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:552 -msgid "This connection is ignored!" +#: ../../Zotlabs/Module/Id.php:15 +msgid "Nickname" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:556 -msgid "Unarchive" +#: ../../Zotlabs/Module/Id.php:16 +msgid "Full Name" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:556 -msgid "Archive" +#: ../../Zotlabs/Module/Id.php:17 ../../Zotlabs/Module/Id.php:18 +#: ../../Zotlabs/Module/Admin.php:1035 ../../Zotlabs/Module/Admin.php:1047 +#: ../../include/network.php:2151 ../../boot.php:1705 +msgid "Email" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:559 -msgid "" -"Archive (or Unarchive) this connection - mark channel dead but keep content" +#: ../../Zotlabs/Module/Id.php:19 ../../Zotlabs/Module/Id.php:20 +#: ../../Zotlabs/Module/Id.php:21 ../../Zotlabs/Lib/Apps.php:236 +msgid "Profile Photo" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:560 -msgid "This connection is archived!" +#: ../../Zotlabs/Module/Id.php:22 +msgid "Profile Photo 16px" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:564 -msgid "Unhide" +#: ../../Zotlabs/Module/Id.php:23 +msgid "Profile Photo 32px" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:564 -msgid "Hide" +#: ../../Zotlabs/Module/Id.php:24 +msgid "Profile Photo 48px" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:567 -msgid "Hide or Unhide this connection from your other connections" +#: ../../Zotlabs/Module/Id.php:25 +msgid "Profile Photo 64px" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:568 -msgid "This connection is hidden!" +#: ../../Zotlabs/Module/Id.php:26 +msgid "Profile Photo 80px" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:575 -msgid "Delete this connection" +#: ../../Zotlabs/Module/Id.php:27 +msgid "Profile Photo 128px" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:590 ../../include/widgets.php:493 -msgid "Me" +#: ../../Zotlabs/Module/Id.php:28 +msgid "Timezone" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:591 ../../include/widgets.php:494 -msgid "Family" +#: ../../Zotlabs/Module/Id.php:29 ../../Zotlabs/Module/Profiles.php:731 +msgid "Homepage URL" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:592 ../../Zotlabs/Module/Settings.php:342 -#: ../../Zotlabs/Module/Settings.php:346 ../../Zotlabs/Module/Settings.php:347 -#: ../../Zotlabs/Module/Settings.php:350 ../../Zotlabs/Module/Settings.php:361 -#: ../../include/selectors.php:123 ../../include/channel.php:389 -#: ../../include/channel.php:390 ../../include/channel.php:397 -#: ../../include/widgets.php:495 -msgid "Friends" +#: ../../Zotlabs/Module/Id.php:30 ../../Zotlabs/Lib/Apps.php:234 +msgid "Language" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:593 ../../include/widgets.php:496 -msgid "Acquaintances" +#: ../../Zotlabs/Module/Id.php:31 +msgid "Birth Year" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:654 -msgid "Approve this connection" +#: ../../Zotlabs/Module/Id.php:32 +msgid "Birth Month" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:654 -msgid "Accept connection to allow communication" +#: ../../Zotlabs/Module/Id.php:33 +msgid "Birth Day" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:659 -msgid "Set Affinity" +#: ../../Zotlabs/Module/Id.php:34 +msgid "Birthdate" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:662 -msgid "Set Profile" +#: ../../Zotlabs/Module/Id.php:35 ../../Zotlabs/Module/Profiles.php:454 +msgid "Gender" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:665 -msgid "Set Affinity & Profile" +#: ../../Zotlabs/Module/Id.php:108 ../../include/selectors.php:49 +#: ../../include/selectors.php:66 +msgid "Male" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:698 -msgid "none" +#: ../../Zotlabs/Module/Id.php:110 ../../include/selectors.php:49 +#: ../../include/selectors.php:66 +msgid "Female" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:702 ../../include/widgets.php:614 -msgid "Connection Default Permissions" +#: ../../Zotlabs/Module/Impel.php:41 ../../include/bbcode.php:192 +msgid "webpage" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:702 ../../include/items.php:3928 -#, php-format -msgid "Connection: %s" +#: ../../Zotlabs/Module/Impel.php:46 ../../include/bbcode.php:198 +msgid "block" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:703 -msgid "Apply these permissions automatically" +#: ../../Zotlabs/Module/Impel.php:51 ../../include/bbcode.php:195 +msgid "layout" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:703 -msgid "Connection requests will be approved without your interaction" +#: ../../Zotlabs/Module/Impel.php:58 ../../include/bbcode.php:201 +msgid "menu" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:705 -msgid "This connection's primary address is" +#: ../../Zotlabs/Module/Impel.php:196 +#, php-format +msgid "%s element installed" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:706 -msgid "Available locations:" +#: ../../Zotlabs/Module/Impel.php:199 +#, php-format +msgid "%s element installation failed" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:710 -msgid "" -"The permissions indicated on this page will be applied to all new " -"connections." +#: ../../Zotlabs/Module/Like.php:19 +msgid "Like/Dislike" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:711 -msgid "Connection Tools" +#: ../../Zotlabs/Module/Like.php:24 +msgid "This action is restricted to members." msgstr "" -#: ../../Zotlabs/Module/Connedit.php:713 -msgid "Slide to adjust your degree of friendship" +#: ../../Zotlabs/Module/Like.php:25 +msgid "" +"Please login with your $Projectname ID or register as a new $Projectname member to continue." msgstr "" -#: ../../Zotlabs/Module/Connedit.php:714 ../../Zotlabs/Module/Rate.php:159 -#: ../../include/js_strings.php:20 -msgid "Rating" +#: ../../Zotlabs/Module/Like.php:105 ../../Zotlabs/Module/Like.php:131 +#: ../../Zotlabs/Module/Like.php:169 +msgid "Invalid request." msgstr "" -#: ../../Zotlabs/Module/Connedit.php:715 -msgid "Slide to adjust your rating" +#: ../../Zotlabs/Module/Like.php:117 ../../include/conversation.php:126 +msgid "channel" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:716 ../../Zotlabs/Module/Connedit.php:721 -msgid "Optionally explain your rating" +#: ../../Zotlabs/Module/Like.php:146 +msgid "thing" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:718 -msgid "Custom Filter" +#: ../../Zotlabs/Module/Like.php:192 +msgid "Channel unavailable." msgstr "" -#: ../../Zotlabs/Module/Connedit.php:719 -msgid "Only import posts with this text" +#: ../../Zotlabs/Module/Like.php:240 +msgid "Previous action reversed." msgstr "" -#: ../../Zotlabs/Module/Connedit.php:719 ../../Zotlabs/Module/Connedit.php:720 -msgid "" -"words one per line or #tags or /patterns/ or lang=xx, leave blank to import " -"all posts" +#: ../../Zotlabs/Module/Like.php:371 ../../Zotlabs/Module/Subthread.php:87 +#: ../../Zotlabs/Module/Tagger.php:47 ../../include/text.php:1940 +#: ../../include/conversation.php:120 +msgid "photo" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:720 -msgid "Do not import posts with this text" +#: ../../Zotlabs/Module/Like.php:371 ../../Zotlabs/Module/Subthread.php:87 +#: ../../include/text.php:1946 ../../include/conversation.php:148 +msgid "status" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:722 -msgid "This information is public!" +#: ../../Zotlabs/Module/Like.php:420 ../../include/conversation.php:164 +#, php-format +msgid "%1$s likes %2$s's %3$s" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:727 -msgid "Connection Pending Approval" +#: ../../Zotlabs/Module/Like.php:422 ../../include/conversation.php:167 +#, php-format +msgid "%1$s doesn't like %2$s's %3$s" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:730 -msgid "inherited" +#: ../../Zotlabs/Module/Like.php:424 +#, php-format +msgid "%1$s agrees with %2$s's %3$s" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:732 +#: ../../Zotlabs/Module/Like.php:426 #, php-format -msgid "" -"Please choose the profile you would like to display to %s when viewing your " -"profile securely." +msgid "%1$s doesn't agree with %2$s's %3$s" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:734 -msgid "Their Settings" +#: ../../Zotlabs/Module/Like.php:428 +#, php-format +msgid "%1$s abstains from a decision on %2$s's %3$s" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:735 -msgid "My Settings" +#: ../../Zotlabs/Module/Like.php:430 +#, php-format +msgid "%1$s is attending %2$s's %3$s" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:737 -msgid "Individual Permissions" +#: ../../Zotlabs/Module/Like.php:432 +#, php-format +msgid "%1$s is not attending %2$s's %3$s" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:738 -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." +#: ../../Zotlabs/Module/Like.php:434 +#, php-format +msgid "%1$s may attend %2$s's %3$s" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:739 -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." +#: ../../Zotlabs/Module/Like.php:537 +msgid "Action completed." msgstr "" -#: ../../Zotlabs/Module/Connedit.php:740 -msgid "Last update:" +#: ../../Zotlabs/Module/Like.php:538 +msgid "Thank you." msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:58 -#: ../../Zotlabs/Module/Profile_photo.php:79 -msgid "Image uploaded but image cropping failed." +#: ../../Zotlabs/Module/Import_items.php:102 +msgid "Import completed" msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:134 -#: ../../Zotlabs/Module/Cover_photo.php:181 -msgid "Cover Photos" +#: ../../Zotlabs/Module/Import_items.php:117 +msgid "Import Items" msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:154 -#: ../../Zotlabs/Module/Profile_photo.php:133 -msgid "Image resize failed." +#: ../../Zotlabs/Module/Import_items.php:118 +msgid "Use this form to import existing posts and content from an export file." msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:168 -#: ../../Zotlabs/Module/Profile_photo.php:192 ../../include/photos.php:144 -msgid "Unable to process image" +#: ../../Zotlabs/Module/Invite.php:29 +msgid "Total invitation limit exceeded." msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:192 -#: ../../Zotlabs/Module/Profile_photo.php:217 -msgid "Image upload failed." +#: ../../Zotlabs/Module/Invite.php:53 +#, php-format +msgid "%s : Not a valid email address." msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:210 -#: ../../Zotlabs/Module/Profile_photo.php:236 -msgid "Unable to process image." +#: ../../Zotlabs/Module/Invite.php:63 +msgid "Please join us on $Projectname" msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:233 ../../include/items.php:4272 -msgid "female" +#: ../../Zotlabs/Module/Invite.php:74 +msgid "Invitation limit exceeded. Please contact your site administrator." msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:234 ../../include/items.php:4273 +#: ../../Zotlabs/Module/Invite.php:79 #, php-format -msgid "%1$s updated her %2$s" +msgid "%s : Message delivery failed." msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:235 ../../include/items.php:4274 -msgid "male" +#: ../../Zotlabs/Module/Invite.php:83 +#, php-format +msgid "%d message sent." +msgid_plural "%d messages sent." +msgstr[0] "" +msgstr[1] "" + +#: ../../Zotlabs/Module/Invite.php:102 +msgid "You have no more invitations available" msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:236 ../../include/items.php:4275 -#, php-format -msgid "%1$s updated his %2$s" +#: ../../Zotlabs/Module/Invite.php:133 +msgid "Send invitations" msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:238 ../../include/items.php:4277 -#, php-format -msgid "%1$s updated their %2$s" +#: ../../Zotlabs/Module/Invite.php:134 +msgid "Enter email addresses, one per line:" msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:240 ../../include/channel.php:1661 -msgid "cover photo" +#: ../../Zotlabs/Module/Invite.php:135 ../../Zotlabs/Module/Mail.php:249 +msgid "Your message:" msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:303 -#: ../../Zotlabs/Module/Cover_photo.php:318 -#: ../../Zotlabs/Module/Profile_photo.php:283 -#: ../../Zotlabs/Module/Profile_photo.php:324 -msgid "Photo not available." +#: ../../Zotlabs/Module/Invite.php:136 +msgid "Please join my community on $Projectname." msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:354 -#: ../../Zotlabs/Module/Profile_photo.php:365 -msgid "Upload File:" +#: ../../Zotlabs/Module/Invite.php:138 +msgid "You will need to supply this invitation code:" msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:355 -#: ../../Zotlabs/Module/Profile_photo.php:366 -msgid "Select a profile:" +#: ../../Zotlabs/Module/Invite.php:139 +msgid "1. Register at any $Projectname location (they are all inter-connected)" msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:356 -msgid "Upload Cover Photo" +#: ../../Zotlabs/Module/Invite.php:141 +msgid "2. Enter my $Projectname network address into the site searchbar." msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:361 -#: ../../Zotlabs/Module/Profile_photo.php:374 -#: ../../Zotlabs/Module/Settings.php:985 -msgid "or" +#: ../../Zotlabs/Module/Invite.php:142 +msgid "or visit" msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:361 -#: ../../Zotlabs/Module/Profile_photo.php:374 -msgid "skip this step" +#: ../../Zotlabs/Module/Invite.php:144 +msgid "3. Click [Connect]" msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:361 -#: ../../Zotlabs/Module/Profile_photo.php:374 -msgid "select a photo from your photo albums" +#: ../../Zotlabs/Module/Lockview.php:61 +msgid "Remote privacy information not available." msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:377 -#: ../../Zotlabs/Module/Profile_photo.php:390 -msgid "Crop Image" +#: ../../Zotlabs/Module/Lockview.php:82 +msgid "Visible to:" msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:378 -#: ../../Zotlabs/Module/Profile_photo.php:391 -msgid "Please adjust the image cropping for optimum viewing." +#: ../../Zotlabs/Module/Locs.php:25 ../../Zotlabs/Module/Locs.php:54 +msgid "Location not found." msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:380 -#: ../../Zotlabs/Module/Profile_photo.php:393 -msgid "Done Editing" +#: ../../Zotlabs/Module/Locs.php:62 +msgid "Location lookup failed." +msgstr "" + +#: ../../Zotlabs/Module/Locs.php:66 +msgid "" +"Please select another location to become primary before removing the primary " +"location." +msgstr "" + +#: ../../Zotlabs/Module/Locs.php:95 +msgid "Syncing locations" +msgstr "" + +#: ../../Zotlabs/Module/Locs.php:105 +msgid "No locations found." +msgstr "" + +#: ../../Zotlabs/Module/Locs.php:116 +msgid "Manage Channel Locations" +msgstr "" + +#: ../../Zotlabs/Module/Locs.php:118 ../../Zotlabs/Module/Profiles.php:470 +#: ../../Zotlabs/Module/Admin.php:1224 +msgid "Address" +msgstr "" + +#: ../../Zotlabs/Module/Locs.php:119 +msgid "Primary" +msgstr "" + +#: ../../Zotlabs/Module/Locs.php:120 ../../Zotlabs/Module/Menu.php:113 +msgid "Drop" +msgstr "" + +#: ../../Zotlabs/Module/Locs.php:122 +msgid "Sync Now" +msgstr "" + +#: ../../Zotlabs/Module/Locs.php:123 +msgid "Please wait several minutes between consecutive operations." +msgstr "" + +#: ../../Zotlabs/Module/Locs.php:124 +msgid "" +"When possible, drop a location by logging into that website/hub and removing " +"your channel." +msgstr "" + +#: ../../Zotlabs/Module/Locs.php:125 +msgid "Use this form to drop the location if the hub is no longer operating." +msgstr "" + +#: ../../Zotlabs/Module/Magic.php:71 +msgid "Hub not found." +msgstr "" + +#: ../../Zotlabs/Module/Mail.php:38 +msgid "Unable to lookup recipient." +msgstr "" + +#: ../../Zotlabs/Module/Mail.php:45 +msgid "Unable to communicate with requested channel." +msgstr "" + +#: ../../Zotlabs/Module/Mail.php:52 +msgid "Cannot verify requested channel." +msgstr "" + +#: ../../Zotlabs/Module/Mail.php:78 +msgid "Selected channel has private message restrictions. Send failed." +msgstr "" + +#: ../../Zotlabs/Module/Mail.php:143 +msgid "Messages" +msgstr "" + +#: ../../Zotlabs/Module/Mail.php:178 +msgid "Message recalled." +msgstr "" + +#: ../../Zotlabs/Module/Mail.php:191 +msgid "Conversation removed." +msgstr "" + +#: ../../Zotlabs/Module/Mail.php:206 ../../Zotlabs/Module/Mail.php:315 +msgid "Expires YYYY-MM-DD HH:MM" msgstr "" -#: ../../Zotlabs/Module/Directory.php:63 ../../Zotlabs/Module/Display.php:17 -#: ../../Zotlabs/Module/Photos.php:522 ../../Zotlabs/Module/Ratings.php:86 -#: ../../Zotlabs/Module/Search.php:17 -#: ../../Zotlabs/Module/Viewconnections.php:20 -msgid "Public access denied." +#: ../../Zotlabs/Module/Mail.php:234 +msgid "Requested channel is not in this network" msgstr "" -#: ../../Zotlabs/Module/Directory.php:243 -#, php-format -msgid "%d rating" -msgid_plural "%d ratings" -msgstr[0] "" -msgstr[1] "" - -#: ../../Zotlabs/Module/Directory.php:254 -msgid "Gender: " +#: ../../Zotlabs/Module/Mail.php:242 +msgid "Send Private Message" msgstr "" -#: ../../Zotlabs/Module/Directory.php:256 -msgid "Status: " +#: ../../Zotlabs/Module/Mail.php:243 ../../Zotlabs/Module/Mail.php:368 +msgid "To:" msgstr "" -#: ../../Zotlabs/Module/Directory.php:258 -msgid "Homepage: " +#: ../../Zotlabs/Module/Mail.php:246 ../../Zotlabs/Module/Mail.php:370 +msgid "Subject:" msgstr "" -#: ../../Zotlabs/Module/Directory.php:306 ../../include/channel.php:1183 -msgid "Age:" +#: ../../Zotlabs/Module/Mail.php:251 ../../Zotlabs/Module/Mail.php:376 +#: ../../include/conversation.php:1220 +msgid "Attach file" msgstr "" -#: ../../Zotlabs/Module/Directory.php:311 ../../include/event.php:52 -#: ../../include/event.php:84 ../../include/channel.php:1027 -#: ../../include/bb2diaspora.php:507 -msgid "Location:" +#: ../../Zotlabs/Module/Mail.php:253 +msgid "Send" msgstr "" -#: ../../Zotlabs/Module/Directory.php:317 -msgid "Description:" +#: ../../Zotlabs/Module/Mail.php:256 ../../Zotlabs/Module/Mail.php:381 +#: ../../include/conversation.php:1251 +msgid "Set expiration date" msgstr "" -#: ../../Zotlabs/Module/Directory.php:322 ../../include/channel.php:1199 -msgid "Hometown:" +#: ../../Zotlabs/Module/Mail.php:340 +msgid "Delete message" msgstr "" -#: ../../Zotlabs/Module/Directory.php:324 ../../include/channel.php:1207 -msgid "About:" +#: ../../Zotlabs/Module/Mail.php:341 +msgid "Delivery report" msgstr "" -#: ../../Zotlabs/Module/Directory.php:325 ../../Zotlabs/Module/Match.php:68 -#: ../../Zotlabs/Module/Suggest.php:56 ../../include/connections.php:78 -#: ../../include/conversation.php:956 ../../include/channel.php:1012 -#: ../../include/widgets.php:147 ../../include/widgets.php:184 -msgid "Connect" +#: ../../Zotlabs/Module/Mail.php:342 +msgid "Recall message" msgstr "" -#: ../../Zotlabs/Module/Directory.php:326 -msgid "Public Forum:" +#: ../../Zotlabs/Module/Mail.php:344 +msgid "Message has been recalled." msgstr "" -#: ../../Zotlabs/Module/Directory.php:329 -msgid "Keywords: " +#: ../../Zotlabs/Module/Mail.php:361 +msgid "Delete Conversation" msgstr "" -#: ../../Zotlabs/Module/Directory.php:332 -msgid "Don't suggest" +#: ../../Zotlabs/Module/Mail.php:363 +msgid "" +"No secure communications available. You may be able to " +"respond from the sender's profile page." msgstr "" -#: ../../Zotlabs/Module/Directory.php:334 -msgid "Common connections:" +#: ../../Zotlabs/Module/Mail.php:367 +msgid "Send Reply" msgstr "" -#: ../../Zotlabs/Module/Directory.php:383 -msgid "Global Directory" +#: ../../Zotlabs/Module/Mail.php:372 +#, php-format +msgid "Your message for %s (%s):" msgstr "" -#: ../../Zotlabs/Module/Directory.php:383 -msgid "Local Directory" +#: ../../Zotlabs/Module/Manage.php:136 +#: ../../Zotlabs/Module/New_channel.php:121 +#, php-format +msgid "You have created %1$.0f of %2$.0f allowed channels." msgstr "" -#: ../../Zotlabs/Module/Directory.php:389 -msgid "Finding:" +#: ../../Zotlabs/Module/Manage.php:143 +msgid "Create a new channel" msgstr "" -#: ../../Zotlabs/Module/Directory.php:392 ../../Zotlabs/Module/Suggest.php:64 -#: ../../include/contact_widgets.php:24 -msgid "Channel Suggestions" +#: ../../Zotlabs/Module/Manage.php:164 ../../Zotlabs/Lib/Apps.php:213 +#: ../../include/nav.php:206 +msgid "Channel Manager" msgstr "" -#: ../../Zotlabs/Module/Directory.php:394 -msgid "next page" +#: ../../Zotlabs/Module/Manage.php:165 +msgid "Current Channel" msgstr "" -#: ../../Zotlabs/Module/Directory.php:394 -msgid "previous page" +#: ../../Zotlabs/Module/Manage.php:167 +msgid "Switch to one of your channels by selecting it." msgstr "" -#: ../../Zotlabs/Module/Directory.php:395 -msgid "Sort options" +#: ../../Zotlabs/Module/Manage.php:168 +msgid "Default Channel" msgstr "" -#: ../../Zotlabs/Module/Directory.php:396 -msgid "Alphabetic" +#: ../../Zotlabs/Module/Manage.php:169 +msgid "Make Default" msgstr "" -#: ../../Zotlabs/Module/Directory.php:397 -msgid "Reverse Alphabetic" +#: ../../Zotlabs/Module/Manage.php:172 +#, php-format +msgid "%d new messages" msgstr "" -#: ../../Zotlabs/Module/Directory.php:398 -msgid "Newest to Oldest" +#: ../../Zotlabs/Module/Manage.php:173 +#, php-format +msgid "%d new introductions" msgstr "" -#: ../../Zotlabs/Module/Directory.php:399 -msgid "Oldest to Newest" +#: ../../Zotlabs/Module/Manage.php:175 +msgid "Delegated Channel" msgstr "" -#: ../../Zotlabs/Module/Directory.php:416 -msgid "No entries (some entries may be hidden)." +#: ../../Zotlabs/Module/Lostpass.php:19 +msgid "No valid account found." msgstr "" -#: ../../Zotlabs/Module/Dirsearch.php:25 ../../Zotlabs/Module/Regdir.php:49 -msgid "This site is not a directory server" +#: ../../Zotlabs/Module/Lostpass.php:33 +msgid "Password reset request issued. Check your email." msgstr "" -#: ../../Zotlabs/Module/Dirsearch.php:33 -msgid "This directory server requires an access token" +#: ../../Zotlabs/Module/Lostpass.php:39 ../../Zotlabs/Module/Lostpass.php:107 +#, php-format +msgid "Site Member (%s)" msgstr "" -#: ../../Zotlabs/Module/Dreport.php:27 -msgid "Invalid message" +#: ../../Zotlabs/Module/Lostpass.php:44 +#, php-format +msgid "Password reset requested at %s" msgstr "" -#: ../../Zotlabs/Module/Dreport.php:59 -msgid "no results" +#: ../../Zotlabs/Module/Lostpass.php:67 +msgid "" +"Request could not be verified. (You may have previously submitted it.) " +"Password reset failed." msgstr "" -#: ../../Zotlabs/Module/Dreport.php:64 -#, php-format -msgid "Delivery report for %1$s" +#: ../../Zotlabs/Module/Lostpass.php:90 ../../boot.php:1711 +msgid "Password Reset" msgstr "" -#: ../../Zotlabs/Module/Dreport.php:78 -msgid "channel sync processed" +#: ../../Zotlabs/Module/Lostpass.php:91 +msgid "Your password has been reset as requested." msgstr "" -#: ../../Zotlabs/Module/Dreport.php:82 -msgid "queued" +#: ../../Zotlabs/Module/Lostpass.php:92 +msgid "Your new password is" msgstr "" -#: ../../Zotlabs/Module/Dreport.php:86 -msgid "posted" +#: ../../Zotlabs/Module/Lostpass.php:93 +msgid "Save or copy your new password - and then" msgstr "" -#: ../../Zotlabs/Module/Dreport.php:90 -msgid "accepted for delivery" +#: ../../Zotlabs/Module/Lostpass.php:94 +msgid "click here to login" msgstr "" -#: ../../Zotlabs/Module/Dreport.php:94 -msgid "updated" +#: ../../Zotlabs/Module/Lostpass.php:95 +msgid "" +"Your password may be changed from the Settings page after " +"successful login." msgstr "" -#: ../../Zotlabs/Module/Dreport.php:97 -msgid "update ignored" +#: ../../Zotlabs/Module/Lostpass.php:112 +#, php-format +msgid "Your password has changed at %s" msgstr "" -#: ../../Zotlabs/Module/Dreport.php:100 -msgid "permission denied" +#: ../../Zotlabs/Module/Lostpass.php:127 +msgid "Forgot your Password?" msgstr "" -#: ../../Zotlabs/Module/Dreport.php:104 -msgid "recipient not found" +#: ../../Zotlabs/Module/Lostpass.php:128 +msgid "" +"Enter your email address and submit to have your password reset. Then check " +"your email for further instructions." msgstr "" -#: ../../Zotlabs/Module/Dreport.php:107 -msgid "mail recalled" +#: ../../Zotlabs/Module/Lostpass.php:129 +msgid "Email Address" msgstr "" -#: ../../Zotlabs/Module/Dreport.php:110 -msgid "duplicate mail received" +#: ../../Zotlabs/Module/Lostpass.php:130 +msgid "Reset" msgstr "" -#: ../../Zotlabs/Module/Dreport.php:113 -msgid "mail delivered" +#: ../../Zotlabs/Module/Menu.php:49 +msgid "Unable to update menu." msgstr "" -#: ../../Zotlabs/Module/Editblock.php:79 ../../Zotlabs/Module/Editblock.php:95 -#: ../../Zotlabs/Module/Editlayout.php:79 ../../Zotlabs/Module/Editpost.php:24 -#: ../../Zotlabs/Module/Editwebpage.php:81 -msgid "Item not found" +#: ../../Zotlabs/Module/Menu.php:60 +msgid "Unable to create menu." msgstr "" -#: ../../Zotlabs/Module/Editblock.php:124 ../../include/conversation.php:1228 -msgid "Title (optional)" +#: ../../Zotlabs/Module/Menu.php:98 ../../Zotlabs/Module/Menu.php:110 +msgid "Menu Name" msgstr "" -#: ../../Zotlabs/Module/Editblock.php:133 -msgid "Edit Block" +#: ../../Zotlabs/Module/Menu.php:98 +msgid "Unique name (not visible on webpage) - required" msgstr "" -#: ../../Zotlabs/Module/Editlayout.php:126 -#: ../../Zotlabs/Module/Layouts.php:127 ../../Zotlabs/Module/Layouts.php:186 -msgid "Layout Name" +#: ../../Zotlabs/Module/Menu.php:99 ../../Zotlabs/Module/Menu.php:111 +msgid "Menu Title" msgstr "" -#: ../../Zotlabs/Module/Editlayout.php:127 -#: ../../Zotlabs/Module/Layouts.php:130 -msgid "Layout Description (Optional)" +#: ../../Zotlabs/Module/Menu.php:99 +msgid "Visible on webpage - leave empty for no title" msgstr "" -#: ../../Zotlabs/Module/Editlayout.php:135 -msgid "Edit Layout" +#: ../../Zotlabs/Module/Menu.php:100 +msgid "Allow Bookmarks" msgstr "" -#: ../../Zotlabs/Module/Editpost.php:35 -msgid "Item is not editable" +#: ../../Zotlabs/Module/Menu.php:100 ../../Zotlabs/Module/Menu.php:157 +msgid "Menu may be used to store saved bookmarks" msgstr "" -#: ../../Zotlabs/Module/Editpost.php:106 ../../Zotlabs/Module/Rpost.php:135 -msgid "Edit post" +#: ../../Zotlabs/Module/Menu.php:101 ../../Zotlabs/Module/Menu.php:159 +msgid "Submit and proceed" msgstr "" -#: ../../Zotlabs/Module/Editwebpage.php:143 -msgid "Page link" +#: ../../Zotlabs/Module/Menu.php:107 ../../include/text.php:2266 +msgid "Menus" msgstr "" -#: ../../Zotlabs/Module/Editwebpage.php:169 -msgid "Edit Webpage" +#: ../../Zotlabs/Module/Menu.php:117 +msgid "Bookmarks allowed" msgstr "" -#: ../../Zotlabs/Module/Events.php:26 -msgid "Calendar entries imported." +#: ../../Zotlabs/Module/Menu.php:119 +msgid "Delete this menu" msgstr "" -#: ../../Zotlabs/Module/Events.php:28 -msgid "No calendar entries found." +#: ../../Zotlabs/Module/Menu.php:120 ../../Zotlabs/Module/Menu.php:154 +msgid "Edit menu contents" msgstr "" -#: ../../Zotlabs/Module/Events.php:105 -msgid "Event can not end before it has started." +#: ../../Zotlabs/Module/Menu.php:121 +msgid "Edit this menu" +msgstr "" + +#: ../../Zotlabs/Module/Menu.php:136 +msgid "Menu could not be deleted." msgstr "" -#: ../../Zotlabs/Module/Events.php:107 ../../Zotlabs/Module/Events.php:116 -#: ../../Zotlabs/Module/Events.php:136 -msgid "Unable to generate preview." +#: ../../Zotlabs/Module/Menu.php:144 ../../Zotlabs/Module/Mitem.php:28 +msgid "Menu not found." msgstr "" -#: ../../Zotlabs/Module/Events.php:114 -msgid "Event title and start time are required." +#: ../../Zotlabs/Module/Menu.php:149 +msgid "Edit Menu" msgstr "" -#: ../../Zotlabs/Module/Events.php:134 ../../Zotlabs/Module/Events.php:259 -msgid "Event not found." +#: ../../Zotlabs/Module/Menu.php:153 +msgid "Add or remove entries to this menu" msgstr "" -#: ../../Zotlabs/Module/Events.php:254 ../../Zotlabs/Module/Like.php:373 -#: ../../Zotlabs/Module/Tagger.php:51 ../../include/conversation.php:123 -#: ../../include/event.php:949 ../../include/text.php:1928 -msgid "event" +#: ../../Zotlabs/Module/Menu.php:155 +msgid "Menu name" msgstr "" -#: ../../Zotlabs/Module/Events.php:449 -msgid "Edit event title" +#: ../../Zotlabs/Module/Menu.php:155 +msgid "Must be unique, only seen by you" msgstr "" -#: ../../Zotlabs/Module/Events.php:449 -msgid "Event title" +#: ../../Zotlabs/Module/Menu.php:156 +msgid "Menu title" msgstr "" -#: ../../Zotlabs/Module/Events.php:451 -msgid "Categories (comma-separated list)" +#: ../../Zotlabs/Module/Menu.php:156 +msgid "Menu title as seen by others" msgstr "" -#: ../../Zotlabs/Module/Events.php:452 -msgid "Edit Category" +#: ../../Zotlabs/Module/Menu.php:157 +msgid "Allow bookmarks" msgstr "" -#: ../../Zotlabs/Module/Events.php:452 -msgid "Category" +#: ../../Zotlabs/Module/Menu.php:166 ../../Zotlabs/Module/Mitem.php:120 +#: ../../Zotlabs/Module/Xchan.php:41 +msgid "Not found." msgstr "" -#: ../../Zotlabs/Module/Events.php:455 -msgid "Edit start date and time" +#: ../../Zotlabs/Module/Mood.php:67 ../../include/conversation.php:260 +#, php-format +msgctxt "mood" +msgid "%1$s is %2$s" msgstr "" -#: ../../Zotlabs/Module/Events.php:455 -msgid "Start date and time" +#: ../../Zotlabs/Module/Mood.php:135 ../../Zotlabs/Lib/Apps.php:225 +msgid "Mood" msgstr "" -#: ../../Zotlabs/Module/Events.php:456 ../../Zotlabs/Module/Events.php:459 -msgid "Finish date and time are not known or not relevant" +#: ../../Zotlabs/Module/Mood.php:136 +msgid "Set your current mood and tell your friends" msgstr "" -#: ../../Zotlabs/Module/Events.php:458 -msgid "Edit finish date and time" +#: ../../Zotlabs/Module/Match.php:26 +msgid "Profile Match" msgstr "" -#: ../../Zotlabs/Module/Events.php:458 -msgid "Finish date and time" +#: ../../Zotlabs/Module/Match.php:35 +msgid "No keywords to match. Please add keywords to your default profile." msgstr "" -#: ../../Zotlabs/Module/Events.php:460 ../../Zotlabs/Module/Events.php:461 -msgid "Adjust for viewer timezone" +#: ../../Zotlabs/Module/Match.php:67 +msgid "is interested in:" msgstr "" -#: ../../Zotlabs/Module/Events.php:460 -msgid "" -"Important for events that happen in a particular place. Not practical for " -"global holidays." +#: ../../Zotlabs/Module/Match.php:74 +msgid "No matches" msgstr "" -#: ../../Zotlabs/Module/Events.php:462 -msgid "Edit Description" +#: ../../Zotlabs/Module/Network.php:96 +msgid "No such group" msgstr "" -#: ../../Zotlabs/Module/Events.php:464 -msgid "Edit Location" +#: ../../Zotlabs/Module/Network.php:136 +msgid "No such channel" msgstr "" -#: ../../Zotlabs/Module/Events.php:464 ../../Zotlabs/Module/Locs.php:117 -#: ../../Zotlabs/Module/Profiles.php:477 ../../Zotlabs/Module/Profiles.php:698 -#: ../../Zotlabs/Module/Pubsites.php:41 ../../include/js_strings.php:25 -msgid "Location" +#: ../../Zotlabs/Module/Network.php:141 +msgid "forum" msgstr "" -#: ../../Zotlabs/Module/Events.php:467 ../../Zotlabs/Module/Events.php:469 -msgid "Share this event" +#: ../../Zotlabs/Module/Network.php:153 +msgid "Search Results For:" msgstr "" -#: ../../Zotlabs/Module/Events.php:470 ../../Zotlabs/Module/Photos.php:1093 -#: ../../Zotlabs/Module/Webpages.php:194 ../../Zotlabs/Lib/ThreadItem.php:708 -#: ../../include/conversation.php:1187 ../../include/page_widgets.php:40 -msgid "Preview" +#: ../../Zotlabs/Module/Network.php:217 +msgid "Privacy group is empty" msgstr "" -#: ../../Zotlabs/Module/Events.php:471 ../../include/conversation.php:1232 -msgid "Permission settings" +#: ../../Zotlabs/Module/Network.php:226 +msgid "Privacy group: " msgstr "" -#: ../../Zotlabs/Module/Events.php:476 -msgid "Advanced Options" +#: ../../Zotlabs/Module/Network.php:252 +msgid "Invalid connection." msgstr "" -#: ../../Zotlabs/Module/Events.php:610 -msgid "Edit event" +#: ../../Zotlabs/Module/Notify.php:57 +#: ../../Zotlabs/Module/Notifications.php:98 +msgid "No more system notifications." msgstr "" -#: ../../Zotlabs/Module/Events.php:612 -msgid "Delete event" +#: ../../Zotlabs/Module/Notify.php:61 +#: ../../Zotlabs/Module/Notifications.php:102 +msgid "System Notifications" msgstr "" -#: ../../Zotlabs/Module/Events.php:646 -msgid "calendar" +#: ../../Zotlabs/Module/Mitem.php:52 +msgid "Unable to create element." msgstr "" -#: ../../Zotlabs/Module/Events.php:706 -msgid "Event removed" +#: ../../Zotlabs/Module/Mitem.php:76 +msgid "Unable to update menu element." msgstr "" -#: ../../Zotlabs/Module/Events.php:709 -msgid "Failed to remove event" +#: ../../Zotlabs/Module/Mitem.php:92 +msgid "Unable to add menu element." msgstr "" -#: ../../Zotlabs/Module/Fbrowser.php:29 ../../Zotlabs/Lib/Apps.php:220 -#: ../../include/conversation.php:1632 ../../include/nav.php:92 -msgid "Photos" +#: ../../Zotlabs/Module/Mitem.php:153 ../../Zotlabs/Module/Mitem.php:226 +msgid "Menu Item Permissions" msgstr "" -#: ../../Zotlabs/Module/Ffsapi.php:12 -msgid "Share content from Firefox to $Projectname" +#: ../../Zotlabs/Module/Mitem.php:154 ../../Zotlabs/Module/Mitem.php:227 +#: ../../Zotlabs/Module/Settings.php:1068 +msgid "(click to open/close)" msgstr "" -#: ../../Zotlabs/Module/Ffsapi.php:15 -msgid "Activate the Firefox $Projectname provider" +#: ../../Zotlabs/Module/Mitem.php:156 ../../Zotlabs/Module/Mitem.php:172 +msgid "Link Name" msgstr "" -#: ../../Zotlabs/Module/Filer.php:52 -msgid "Save to Folder:" +#: ../../Zotlabs/Module/Mitem.php:157 ../../Zotlabs/Module/Mitem.php:231 +msgid "Link or Submenu Target" msgstr "" -#: ../../Zotlabs/Module/Filer.php:52 -msgid "- select -" +#: ../../Zotlabs/Module/Mitem.php:157 +msgid "Enter URL of the link or select a menu name to create a submenu" msgstr "" -#: ../../Zotlabs/Module/Filestorage.php:88 -msgid "Permission Denied." +#: ../../Zotlabs/Module/Mitem.php:158 ../../Zotlabs/Module/Mitem.php:232 +msgid "Use magic-auth if available" msgstr "" -#: ../../Zotlabs/Module/Filestorage.php:104 -msgid "File not found." +#: ../../Zotlabs/Module/Mitem.php:159 ../../Zotlabs/Module/Mitem.php:233 +msgid "Open link in new window" msgstr "" -#: ../../Zotlabs/Module/Filestorage.php:147 -msgid "Edit file permissions" +#: ../../Zotlabs/Module/Mitem.php:160 ../../Zotlabs/Module/Mitem.php:234 +msgid "Order in list" msgstr "" -#: ../../Zotlabs/Module/Filestorage.php:156 -msgid "Set/edit permissions" +#: ../../Zotlabs/Module/Mitem.php:160 ../../Zotlabs/Module/Mitem.php:234 +msgid "Higher numbers will sink to bottom of listing" msgstr "" -#: ../../Zotlabs/Module/Filestorage.php:157 -msgid "Include all files and sub folders" +#: ../../Zotlabs/Module/Mitem.php:161 +msgid "Submit and finish" msgstr "" -#: ../../Zotlabs/Module/Filestorage.php:158 -msgid "Return to file list" +#: ../../Zotlabs/Module/Mitem.php:162 +msgid "Submit and continue" msgstr "" -#: ../../Zotlabs/Module/Filestorage.php:160 -msgid "Copy/paste this code to attach file to a post" +#: ../../Zotlabs/Module/Mitem.php:170 +msgid "Menu:" msgstr "" -#: ../../Zotlabs/Module/Filestorage.php:161 -msgid "Copy/paste this URL to link file from a web page" +#: ../../Zotlabs/Module/Mitem.php:173 +msgid "Link Target" msgstr "" -#: ../../Zotlabs/Module/Filestorage.php:163 -msgid "Share this file" +#: ../../Zotlabs/Module/Mitem.php:176 +msgid "Edit menu" msgstr "" -#: ../../Zotlabs/Module/Filestorage.php:164 -msgid "Show URL to this file" +#: ../../Zotlabs/Module/Mitem.php:179 +msgid "Edit element" msgstr "" -#: ../../Zotlabs/Module/Filestorage.php:165 -msgid "Notify your contacts about this file" +#: ../../Zotlabs/Module/Mitem.php:180 +msgid "Drop element" msgstr "" -#: ../../Zotlabs/Module/Follow.php:34 -msgid "Channel added." +#: ../../Zotlabs/Module/Mitem.php:181 +msgid "New element" msgstr "" -#: ../../Zotlabs/Module/Group.php:24 -msgid "Privacy group created." +#: ../../Zotlabs/Module/Mitem.php:182 +msgid "Edit this menu container" msgstr "" -#: ../../Zotlabs/Module/Group.php:30 -msgid "Could not create privacy group." +#: ../../Zotlabs/Module/Mitem.php:183 +msgid "Add menu element" msgstr "" -#: ../../Zotlabs/Module/Group.php:42 ../../Zotlabs/Module/Group.php:141 -#: ../../include/items.php:3895 -msgid "Privacy group not found." +#: ../../Zotlabs/Module/Mitem.php:184 +msgid "Delete this menu item" msgstr "" -#: ../../Zotlabs/Module/Group.php:58 -msgid "Privacy group updated." +#: ../../Zotlabs/Module/Mitem.php:185 +msgid "Edit this menu item" msgstr "" -#: ../../Zotlabs/Module/Group.php:90 -msgid "Create a group of channels." +#: ../../Zotlabs/Module/Mitem.php:202 +msgid "Menu item not found." msgstr "" -#: ../../Zotlabs/Module/Group.php:91 ../../Zotlabs/Module/Group.php:184 -msgid "Privacy group name: " +#: ../../Zotlabs/Module/Mitem.php:215 +msgid "Menu item deleted." msgstr "" -#: ../../Zotlabs/Module/Group.php:93 ../../Zotlabs/Module/Group.php:187 -msgid "Members are visible to other channels" +#: ../../Zotlabs/Module/Mitem.php:217 +msgid "Menu item could not be deleted." msgstr "" -#: ../../Zotlabs/Module/Group.php:111 -msgid "Privacy group removed." +#: ../../Zotlabs/Module/Mitem.php:224 +msgid "Edit Menu Element" msgstr "" -#: ../../Zotlabs/Module/Group.php:113 -msgid "Unable to remove privacy group." +#: ../../Zotlabs/Module/Mitem.php:230 +msgid "Link text" msgstr "" -#: ../../Zotlabs/Module/Group.php:183 -msgid "Privacy group editor" +#: ../../Zotlabs/Module/New_channel.php:128 +#: ../../Zotlabs/Module/Register.php:231 +msgid "Name or caption" msgstr "" -#: ../../Zotlabs/Module/Group.php:197 -msgid "Members" +#: ../../Zotlabs/Module/New_channel.php:128 +#: ../../Zotlabs/Module/Register.php:231 +msgid "" +"Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation " +"Group\"" msgstr "" -#: ../../Zotlabs/Module/Group.php:199 -msgid "All Connected Channels" +#: ../../Zotlabs/Module/New_channel.php:130 +#: ../../Zotlabs/Module/Register.php:233 +msgid "Choose a short nickname" msgstr "" -#: ../../Zotlabs/Module/Group.php:231 -msgid "Click on a channel to add or remove." +#: ../../Zotlabs/Module/New_channel.php:130 +#: ../../Zotlabs/Module/Register.php:233 +#, php-format +msgid "" +"Your nickname will be used to create an easy to remember channel address e." +"g. nickname%s" msgstr "" -#: ../../Zotlabs/Module/Help.php:26 -msgid "Documentation Search" +#: ../../Zotlabs/Module/New_channel.php:132 +#: ../../Zotlabs/Module/Register.php:235 +msgid "Channel role and privacy" msgstr "" -#: ../../Zotlabs/Module/Help.php:67 ../../Zotlabs/Module/Help.php:73 -#: ../../Zotlabs/Module/Help.php:79 -msgid "Help:" +#: ../../Zotlabs/Module/New_channel.php:132 +#: ../../Zotlabs/Module/Register.php:235 +msgid "Select a channel role with your privacy requirements." msgstr "" -#: ../../Zotlabs/Module/Help.php:85 ../../Zotlabs/Module/Help.php:90 -#: ../../Zotlabs/Module/Layouts.php:183 ../../Zotlabs/Lib/Apps.php:223 -#: ../../include/nav.php:159 -msgid "Help" +#: ../../Zotlabs/Module/New_channel.php:132 +#: ../../Zotlabs/Module/Register.php:235 +msgid "Read more about roles" msgstr "" -#: ../../Zotlabs/Module/Help.php:120 -msgid "$Projectname Documentation" +#: ../../Zotlabs/Module/New_channel.php:135 +msgid "Create Channel" msgstr "" -#: ../../Zotlabs/Module/Home.php:61 ../../Zotlabs/Module/Home.php:69 -#: ../../Zotlabs/Module/Siteinfo.php:65 -msgid "$Projectname" +#: ../../Zotlabs/Module/New_channel.php:136 +msgid "" +"A channel is your identity on this network. It can represent a person, a " +"blog, or a forum to name a few. Channels can make connections with other " +"channels to share information with highly detailed permissions." msgstr "" -#: ../../Zotlabs/Module/Home.php:79 -#, php-format -msgid "Welcome to %s" +#: ../../Zotlabs/Module/New_channel.php:137 +msgid "" +"or import an existing channel from another location." msgstr "" -#: ../../Zotlabs/Module/Id.php:13 -msgid "First Name" +#: ../../Zotlabs/Module/Notifications.php:30 +msgid "Invalid request identifier." msgstr "" -#: ../../Zotlabs/Module/Id.php:14 -msgid "Last Name" +#: ../../Zotlabs/Module/Notifications.php:39 +msgid "Discard" msgstr "" -#: ../../Zotlabs/Module/Id.php:15 -msgid "Nickname" +#: ../../Zotlabs/Module/Notifications.php:103 ../../include/nav.php:191 +msgid "Mark all system notifications seen" msgstr "" -#: ../../Zotlabs/Module/Id.php:16 -msgid "Full Name" +#: ../../Zotlabs/Module/Photos.php:84 +msgid "Page owner information could not be retrieved." msgstr "" -#: ../../Zotlabs/Module/Id.php:19 ../../Zotlabs/Module/Id.php:20 -#: ../../Zotlabs/Module/Id.php:21 ../../Zotlabs/Lib/Apps.php:236 -msgid "Profile Photo" +#: ../../Zotlabs/Module/Photos.php:99 ../../Zotlabs/Module/Photos.php:743 +#: ../../Zotlabs/Module/Profile_photo.php:114 +#: ../../Zotlabs/Module/Profile_photo.php:206 +#: ../../Zotlabs/Module/Profile_photo.php:294 +#: ../../include/photo/photo_driver.php:718 +msgid "Profile Photos" msgstr "" -#: ../../Zotlabs/Module/Id.php:22 -msgid "Profile Photo 16px" +#: ../../Zotlabs/Module/Photos.php:105 ../../Zotlabs/Module/Photos.php:149 +msgid "Album not found." msgstr "" -#: ../../Zotlabs/Module/Id.php:23 -msgid "Profile Photo 32px" +#: ../../Zotlabs/Module/Photos.php:132 +msgid "Delete Album" msgstr "" -#: ../../Zotlabs/Module/Id.php:24 -msgid "Profile Photo 48px" +#: ../../Zotlabs/Module/Photos.php:153 +msgid "" +"Multiple storage folders exist with this album name, but within different " +"directories. Please remove the desired folder or folders using the Files " +"manager" msgstr "" -#: ../../Zotlabs/Module/Id.php:25 -msgid "Profile Photo 64px" +#: ../../Zotlabs/Module/Photos.php:210 ../../Zotlabs/Module/Photos.php:1053 +msgid "Delete Photo" msgstr "" -#: ../../Zotlabs/Module/Id.php:26 -msgid "Profile Photo 80px" +#: ../../Zotlabs/Module/Photos.php:533 +msgid "No photos selected" msgstr "" -#: ../../Zotlabs/Module/Id.php:27 -msgid "Profile Photo 128px" +#: ../../Zotlabs/Module/Photos.php:582 +msgid "Access to this item is restricted." msgstr "" -#: ../../Zotlabs/Module/Id.php:28 -msgid "Timezone" +#: ../../Zotlabs/Module/Photos.php:621 +#, php-format +msgid "%1$.2f MB of %2$.2f MB photo storage used." msgstr "" -#: ../../Zotlabs/Module/Id.php:29 ../../Zotlabs/Module/Profiles.php:731 -msgid "Homepage URL" +#: ../../Zotlabs/Module/Photos.php:624 +#, php-format +msgid "%1$.2f MB photo storage used." msgstr "" -#: ../../Zotlabs/Module/Id.php:30 ../../Zotlabs/Lib/Apps.php:234 -msgid "Language" +#: ../../Zotlabs/Module/Photos.php:660 +msgid "Upload Photos" msgstr "" -#: ../../Zotlabs/Module/Id.php:31 -msgid "Birth Year" +#: ../../Zotlabs/Module/Photos.php:664 +msgid "Enter an album name" msgstr "" -#: ../../Zotlabs/Module/Id.php:32 -msgid "Birth Month" +#: ../../Zotlabs/Module/Photos.php:665 +msgid "or select an existing album (doubleclick)" msgstr "" -#: ../../Zotlabs/Module/Id.php:33 -msgid "Birth Day" +#: ../../Zotlabs/Module/Photos.php:666 +msgid "Create a status post for this upload" msgstr "" -#: ../../Zotlabs/Module/Id.php:34 -msgid "Birthdate" +#: ../../Zotlabs/Module/Photos.php:667 +msgid "Caption (optional):" msgstr "" -#: ../../Zotlabs/Module/Id.php:35 ../../Zotlabs/Module/Profiles.php:454 -msgid "Gender" +#: ../../Zotlabs/Module/Photos.php:668 +msgid "Description (optional):" msgstr "" -#: ../../Zotlabs/Module/Id.php:108 ../../include/selectors.php:49 -#: ../../include/selectors.php:66 -msgid "Male" +#: ../../Zotlabs/Module/Photos.php:695 +msgid "Album name could not be decoded" msgstr "" -#: ../../Zotlabs/Module/Id.php:110 ../../include/selectors.php:49 -#: ../../include/selectors.php:66 -msgid "Female" +#: ../../Zotlabs/Module/Photos.php:743 +msgid "Contact Photos" msgstr "" -#: ../../Zotlabs/Module/Impel.php:41 ../../include/bbcode.php:192 -msgid "webpage" +#: ../../Zotlabs/Module/Photos.php:766 +msgid "Show Newest First" msgstr "" -#: ../../Zotlabs/Module/Impel.php:46 ../../include/bbcode.php:198 -msgid "block" +#: ../../Zotlabs/Module/Photos.php:768 +msgid "Show Oldest First" msgstr "" -#: ../../Zotlabs/Module/Impel.php:51 ../../include/bbcode.php:195 -msgid "layout" +#: ../../Zotlabs/Module/Photos.php:792 ../../Zotlabs/Module/Photos.php:1331 +#: ../../include/widgets.php:1499 +msgid "View Photo" msgstr "" -#: ../../Zotlabs/Module/Impel.php:58 ../../include/bbcode.php:201 -msgid "menu" +#: ../../Zotlabs/Module/Photos.php:823 ../../include/widgets.php:1516 +msgid "Edit Album" msgstr "" -#: ../../Zotlabs/Module/Impel.php:196 -#, php-format -msgid "%s element installed" +#: ../../Zotlabs/Module/Photos.php:870 +msgid "Permission denied. Access to this item may be restricted." msgstr "" -#: ../../Zotlabs/Module/Impel.php:199 -#, php-format -msgid "%s element installation failed" +#: ../../Zotlabs/Module/Photos.php:872 +msgid "Photo not available" msgstr "" -#: ../../Zotlabs/Module/Import.php:32 -#, php-format -msgid "Your service plan only allows %d channels." +#: ../../Zotlabs/Module/Photos.php:930 +msgid "Use as profile photo" msgstr "" -#: ../../Zotlabs/Module/Import.php:70 ../../Zotlabs/Module/Import_items.php:42 -msgid "Nothing to import." +#: ../../Zotlabs/Module/Photos.php:931 +msgid "Use as cover photo" msgstr "" -#: ../../Zotlabs/Module/Import.php:94 ../../Zotlabs/Module/Import_items.php:66 -msgid "Unable to download data from old server" +#: ../../Zotlabs/Module/Photos.php:938 +msgid "Private Photo" msgstr "" -#: ../../Zotlabs/Module/Import.php:100 -#: ../../Zotlabs/Module/Import_items.php:72 -msgid "Imported file is empty." +#: ../../Zotlabs/Module/Photos.php:953 +msgid "View Full Size" msgstr "" -#: ../../Zotlabs/Module/Import.php:122 -#: ../../Zotlabs/Module/Import_items.php:86 -#, php-format -msgid "Warning: Database versions differ by %1$d updates." +#: ../../Zotlabs/Module/Photos.php:998 ../../Zotlabs/Module/Admin.php:1437 +#: ../../Zotlabs/Module/Tagrm.php:137 +msgid "Remove" msgstr "" -#: ../../Zotlabs/Module/Import.php:150 ../../include/import.php:86 -msgid "Cloned channel not found. Import failed." +#: ../../Zotlabs/Module/Photos.php:1032 +msgid "Edit photo" msgstr "" -#: ../../Zotlabs/Module/Import.php:160 -msgid "No channel. Import failed." +#: ../../Zotlabs/Module/Photos.php:1034 +msgid "Rotate CW (right)" msgstr "" -#: ../../Zotlabs/Module/Import.php:510 -#: ../../include/Import/import_diaspora.php:142 -msgid "Import completed." +#: ../../Zotlabs/Module/Photos.php:1035 +msgid "Rotate CCW (left)" msgstr "" -#: ../../Zotlabs/Module/Import.php:532 -msgid "You must be logged in to use this feature." +#: ../../Zotlabs/Module/Photos.php:1038 +msgid "Enter a new album name" msgstr "" -#: ../../Zotlabs/Module/Import.php:537 -msgid "Import Channel" +#: ../../Zotlabs/Module/Photos.php:1039 +msgid "or select an existing one (doubleclick)" msgstr "" -#: ../../Zotlabs/Module/Import.php:538 -msgid "" -"Use this form to import an existing channel from a different server/hub. You " -"may retrieve the channel identity from the old server/hub via the network or " -"provide an export file." +#: ../../Zotlabs/Module/Photos.php:1042 +msgid "Caption" msgstr "" -#: ../../Zotlabs/Module/Import.php:539 -#: ../../Zotlabs/Module/Import_items.php:119 -msgid "File to Upload" +#: ../../Zotlabs/Module/Photos.php:1044 +msgid "Add a Tag" msgstr "" -#: ../../Zotlabs/Module/Import.php:540 -msgid "Or provide the old server/hub details" +#: ../../Zotlabs/Module/Photos.php:1048 +msgid "Example: @bob, @Barbara_Jensen, @jim@example.com" msgstr "" -#: ../../Zotlabs/Module/Import.php:541 -msgid "Your old identity address (xyz@example.com)" +#: ../../Zotlabs/Module/Photos.php:1051 +msgid "Flag as adult in album view" msgstr "" -#: ../../Zotlabs/Module/Import.php:542 -msgid "Your old login email address" +#: ../../Zotlabs/Module/Photos.php:1070 ../../Zotlabs/Lib/ThreadItem.php:261 +msgid "I like this (toggle)" msgstr "" -#: ../../Zotlabs/Module/Import.php:543 -msgid "Your old login password" +#: ../../Zotlabs/Module/Photos.php:1071 ../../Zotlabs/Lib/ThreadItem.php:262 +msgid "I don't like this (toggle)" msgstr "" -#: ../../Zotlabs/Module/Import.php:544 -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." +#: ../../Zotlabs/Module/Photos.php:1073 ../../Zotlabs/Lib/ThreadItem.php:397 +#: ../../include/conversation.php:740 +msgid "Please wait" msgstr "" -#: ../../Zotlabs/Module/Import.php:545 -msgid "Make this hub my primary location" +#: ../../Zotlabs/Module/Photos.php:1089 ../../Zotlabs/Module/Photos.php:1207 +#: ../../Zotlabs/Lib/ThreadItem.php:707 +msgid "This is you" msgstr "" -#: ../../Zotlabs/Module/Import.php:546 -msgid "" -"Import existing posts if possible (experimental - limited by available memory" +#: ../../Zotlabs/Module/Photos.php:1091 ../../Zotlabs/Module/Photos.php:1209 +#: ../../Zotlabs/Lib/ThreadItem.php:709 ../../include/js_strings.php:6 +msgid "Comment" msgstr "" -#: ../../Zotlabs/Module/Import.php:547 -msgid "" -"This process may take several minutes to complete. Please submit the form " -"only once and leave this page open until finished." +#: ../../Zotlabs/Module/Photos.php:1107 ../../include/conversation.php:574 +msgctxt "title" +msgid "Likes" msgstr "" -#: ../../Zotlabs/Module/Import_items.php:102 -msgid "Import completed" +#: ../../Zotlabs/Module/Photos.php:1107 ../../include/conversation.php:574 +msgctxt "title" +msgid "Dislikes" msgstr "" -#: ../../Zotlabs/Module/Import_items.php:117 -msgid "Import Items" +#: ../../Zotlabs/Module/Photos.php:1108 ../../include/conversation.php:575 +msgctxt "title" +msgid "Agree" msgstr "" -#: ../../Zotlabs/Module/Import_items.php:118 -msgid "Use this form to import existing posts and content from an export file." +#: ../../Zotlabs/Module/Photos.php:1108 ../../include/conversation.php:575 +msgctxt "title" +msgid "Disagree" msgstr "" -#: ../../Zotlabs/Module/Invite.php:29 -msgid "Total invitation limit exceeded." +#: ../../Zotlabs/Module/Photos.php:1108 ../../include/conversation.php:575 +msgctxt "title" +msgid "Abstain" msgstr "" -#: ../../Zotlabs/Module/Invite.php:53 -#, php-format -msgid "%s : Not a valid email address." +#: ../../Zotlabs/Module/Photos.php:1109 ../../include/conversation.php:576 +msgctxt "title" +msgid "Attending" msgstr "" -#: ../../Zotlabs/Module/Invite.php:63 -msgid "Please join us on $Projectname" +#: ../../Zotlabs/Module/Photos.php:1109 ../../include/conversation.php:576 +msgctxt "title" +msgid "Not attending" msgstr "" -#: ../../Zotlabs/Module/Invite.php:74 -msgid "Invitation limit exceeded. Please contact your site administrator." +#: ../../Zotlabs/Module/Photos.php:1109 ../../include/conversation.php:576 +msgctxt "title" +msgid "Might attend" msgstr "" -#: ../../Zotlabs/Module/Invite.php:79 -#, php-format -msgid "%s : Message delivery failed." +#: ../../Zotlabs/Module/Photos.php:1126 ../../Zotlabs/Module/Photos.php:1138 +#: ../../Zotlabs/Lib/ThreadItem.php:181 ../../Zotlabs/Lib/ThreadItem.php:193 +#: ../../include/conversation.php:1717 +msgid "View all" msgstr "" -#: ../../Zotlabs/Module/Invite.php:83 -#, php-format -msgid "%d message sent." -msgid_plural "%d messages sent." +#: ../../Zotlabs/Module/Photos.php:1130 ../../Zotlabs/Lib/ThreadItem.php:185 +#: ../../include/taxonomy.php:403 ../../include/conversation.php:1741 +#: ../../include/channel.php:1158 +msgctxt "noun" +msgid "Like" +msgid_plural "Likes" msgstr[0] "" msgstr[1] "" -#: ../../Zotlabs/Module/Invite.php:102 -msgid "You have no more invitations available" -msgstr "" - -#: ../../Zotlabs/Module/Invite.php:133 -msgid "Send invitations" -msgstr "" - -#: ../../Zotlabs/Module/Invite.php:134 -msgid "Enter email addresses, one per line:" -msgstr "" - -#: ../../Zotlabs/Module/Invite.php:135 ../../Zotlabs/Module/Mail.php:249 -msgid "Your message:" -msgstr "" +#: ../../Zotlabs/Module/Photos.php:1135 ../../Zotlabs/Lib/ThreadItem.php:190 +#: ../../include/conversation.php:1744 +msgctxt "noun" +msgid "Dislike" +msgid_plural "Dislikes" +msgstr[0] "" +msgstr[1] "" -#: ../../Zotlabs/Module/Invite.php:136 -msgid "Please join my community on $Projectname." +#: ../../Zotlabs/Module/Photos.php:1235 +msgid "Photo Tools" msgstr "" -#: ../../Zotlabs/Module/Invite.php:138 -msgid "You will need to supply this invitation code:" +#: ../../Zotlabs/Module/Photos.php:1244 +msgid "In This Photo:" msgstr "" -#: ../../Zotlabs/Module/Invite.php:139 -msgid "1. Register at any $Projectname location (they are all inter-connected)" +#: ../../Zotlabs/Module/Photos.php:1249 +msgid "Map" msgstr "" -#: ../../Zotlabs/Module/Invite.php:141 -msgid "2. Enter my $Projectname network address into the site searchbar." +#: ../../Zotlabs/Module/Photos.php:1257 ../../Zotlabs/Lib/ThreadItem.php:386 +msgctxt "noun" +msgid "Likes" msgstr "" -#: ../../Zotlabs/Module/Invite.php:142 -msgid "or visit" +#: ../../Zotlabs/Module/Photos.php:1258 ../../Zotlabs/Lib/ThreadItem.php:387 +msgctxt "noun" +msgid "Dislikes" msgstr "" -#: ../../Zotlabs/Module/Invite.php:144 -msgid "3. Click [Connect]" +#: ../../Zotlabs/Module/Photos.php:1263 ../../Zotlabs/Lib/ThreadItem.php:392 +#: ../../include/acl_selectors.php:285 +msgid "Close" msgstr "" -#: ../../Zotlabs/Module/Item.php:178 -msgid "Unable to locate original post." +#: ../../Zotlabs/Module/Photos.php:1337 +msgid "View Album" msgstr "" -#: ../../Zotlabs/Module/Item.php:427 -msgid "Empty post discarded." +#: ../../Zotlabs/Module/Photos.php:1348 ../../Zotlabs/Module/Photos.php:1361 +#: ../../Zotlabs/Module/Photos.php:1362 +msgid "Recent Photos" msgstr "" -#: ../../Zotlabs/Module/Item.php:467 -msgid "Executable content type not permitted to this channel." +#: ../../Zotlabs/Module/Ping.php:265 +msgid "sent you a private message" msgstr "" -#: ../../Zotlabs/Module/Item.php:847 -msgid "Duplicate post suppressed." +#: ../../Zotlabs/Module/Ping.php:313 +msgid "added your channel" msgstr "" -#: ../../Zotlabs/Module/Item.php:977 -msgid "System error. Post not saved." +#: ../../Zotlabs/Module/Ping.php:323 +msgid "g A l F d" msgstr "" -#: ../../Zotlabs/Module/Item.php:1241 -msgid "Unable to obtain post information from database." +#: ../../Zotlabs/Module/Ping.php:346 +msgid "[today]" msgstr "" -#: ../../Zotlabs/Module/Item.php:1248 -#, php-format -msgid "You have reached your limit of %1$.0f top level posts." +#: ../../Zotlabs/Module/Ping.php:355 +msgid "posted an event" msgstr "" -#: ../../Zotlabs/Module/Item.php:1255 -#, php-format -msgid "You have reached your limit of %1$.0f webpages." +#: ../../Zotlabs/Module/Oexchange.php:27 +msgid "Unable to find your hub." msgstr "" -#: ../../Zotlabs/Module/Layouts.php:181 ../../include/text.php:2252 -msgid "Layouts" +#: ../../Zotlabs/Module/Oexchange.php:41 +msgid "Post successful." msgstr "" -#: ../../Zotlabs/Module/Layouts.php:183 -msgid "Comanche page description language help" +#: ../../Zotlabs/Module/Openid.php:30 +msgid "OpenID protocol error. No ID returned." msgstr "" -#: ../../Zotlabs/Module/Layouts.php:187 -msgid "Layout Description" +#: ../../Zotlabs/Module/Openid.php:193 ../../include/auth.php:226 +msgid "Login failed." msgstr "" -#: ../../Zotlabs/Module/Layouts.php:192 -msgid "Download PDL file" +#: ../../Zotlabs/Module/Page.php:133 +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/Like.php:19 -msgid "Like/Dislike" +#: ../../Zotlabs/Module/Pconfig.php:26 ../../Zotlabs/Module/Pconfig.php:59 +msgid "This setting requires special processing and editing has been blocked." msgstr "" -#: ../../Zotlabs/Module/Like.php:24 -msgid "This action is restricted to members." +#: ../../Zotlabs/Module/Pconfig.php:48 +msgid "Configuration Editor" msgstr "" -#: ../../Zotlabs/Module/Like.php:25 +#: ../../Zotlabs/Module/Pconfig.php:49 msgid "" -"Please login with your $Projectname ID or register as a new $Projectname member to continue." +"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/Like.php:105 ../../Zotlabs/Module/Like.php:131 -#: ../../Zotlabs/Module/Like.php:169 -msgid "Invalid request." +#: ../../Zotlabs/Module/Pdledit.php:18 +msgid "Layout updated." msgstr "" -#: ../../Zotlabs/Module/Like.php:117 ../../include/conversation.php:126 -msgid "channel" +#: ../../Zotlabs/Module/Pdledit.php:34 ../../Zotlabs/Module/Pdledit.php:61 +msgid "Edit System Page Description" msgstr "" -#: ../../Zotlabs/Module/Like.php:146 -msgid "thing" +#: ../../Zotlabs/Module/Pdledit.php:56 +msgid "Layout not found." msgstr "" -#: ../../Zotlabs/Module/Like.php:192 -msgid "Channel unavailable." +#: ../../Zotlabs/Module/Pdledit.php:62 +msgid "Module Name:" msgstr "" -#: ../../Zotlabs/Module/Like.php:240 -msgid "Previous action reversed." +#: ../../Zotlabs/Module/Pdledit.php:63 +msgid "Layout Help" msgstr "" -#: ../../Zotlabs/Module/Like.php:371 ../../Zotlabs/Module/Subthread.php:87 -#: ../../Zotlabs/Module/Tagger.php:47 ../../include/conversation.php:120 -#: ../../include/text.php:1925 -msgid "photo" +#: ../../Zotlabs/Module/Poke.php:168 ../../Zotlabs/Lib/Apps.php:226 +#: ../../include/conversation.php:960 +msgid "Poke" msgstr "" -#: ../../Zotlabs/Module/Like.php:371 ../../Zotlabs/Module/Subthread.php:87 -#: ../../include/conversation.php:148 ../../include/text.php:1931 -msgid "status" +#: ../../Zotlabs/Module/Poke.php:169 +msgid "Poke somebody" msgstr "" -#: ../../Zotlabs/Module/Like.php:420 ../../include/conversation.php:164 -#, php-format -msgid "%1$s likes %2$s's %3$s" +#: ../../Zotlabs/Module/Poke.php:172 +msgid "Poke/Prod" msgstr "" -#: ../../Zotlabs/Module/Like.php:422 ../../include/conversation.php:167 -#, php-format -msgid "%1$s doesn't like %2$s's %3$s" +#: ../../Zotlabs/Module/Poke.php:173 +msgid "Poke, prod or do other things to somebody" msgstr "" -#: ../../Zotlabs/Module/Like.php:424 -#, php-format -msgid "%1$s agrees with %2$s's %3$s" +#: ../../Zotlabs/Module/Poke.php:180 +msgid "Recipient" msgstr "" -#: ../../Zotlabs/Module/Like.php:426 -#, php-format -msgid "%1$s doesn't agree with %2$s's %3$s" +#: ../../Zotlabs/Module/Poke.php:181 +msgid "Choose what you wish to do to recipient" msgstr "" -#: ../../Zotlabs/Module/Like.php:428 -#, php-format -msgid "%1$s abstains from a decision on %2$s's %3$s" +#: ../../Zotlabs/Module/Poke.php:184 ../../Zotlabs/Module/Poke.php:185 +msgid "Make this post private" msgstr "" -#: ../../Zotlabs/Module/Like.php:430 +#: ../../Zotlabs/Module/Probe.php:30 ../../Zotlabs/Module/Probe.php:34 #, php-format -msgid "%1$s is attending %2$s's %3$s" +msgid "Fetching URL returns error: %1$s" msgstr "" -#: ../../Zotlabs/Module/Like.php:432 -#, php-format -msgid "%1$s is not attending %2$s's %3$s" +#: ../../Zotlabs/Module/Profiles.php:24 ../../Zotlabs/Module/Profiles.php:189 +#: ../../Zotlabs/Module/Profiles.php:246 ../../Zotlabs/Module/Profiles.php:625 +msgid "Profile not found." msgstr "" -#: ../../Zotlabs/Module/Like.php:434 -#, php-format -msgid "%1$s may attend %2$s's %3$s" +#: ../../Zotlabs/Module/Profiles.php:44 +msgid "Profile deleted." msgstr "" -#: ../../Zotlabs/Module/Like.php:537 -msgid "Action completed." +#: ../../Zotlabs/Module/Profiles.php:68 ../../Zotlabs/Module/Profiles.php:104 +msgid "Profile-" msgstr "" -#: ../../Zotlabs/Module/Like.php:538 -msgid "Thank you." +#: ../../Zotlabs/Module/Profiles.php:89 ../../Zotlabs/Module/Profiles.php:132 +msgid "New profile created." msgstr "" -#: ../../Zotlabs/Module/Lockview.php:61 -msgid "Remote privacy information not available." +#: ../../Zotlabs/Module/Profiles.php:110 +msgid "Profile unavailable to clone." msgstr "" -#: ../../Zotlabs/Module/Lockview.php:82 -msgid "Visible to:" +#: ../../Zotlabs/Module/Profiles.php:151 +msgid "Profile unavailable to export." msgstr "" -#: ../../Zotlabs/Module/Locs.php:25 ../../Zotlabs/Module/Locs.php:54 -msgid "Location not found." +#: ../../Zotlabs/Module/Profiles.php:256 +msgid "Profile Name is required." msgstr "" -#: ../../Zotlabs/Module/Locs.php:62 -msgid "Location lookup failed." +#: ../../Zotlabs/Module/Profiles.php:427 +msgid "Marital Status" msgstr "" -#: ../../Zotlabs/Module/Locs.php:66 -msgid "" -"Please select another location to become primary before removing the primary " -"location." +#: ../../Zotlabs/Module/Profiles.php:431 +msgid "Romantic Partner" msgstr "" -#: ../../Zotlabs/Module/Locs.php:95 -msgid "Syncing locations" +#: ../../Zotlabs/Module/Profiles.php:435 ../../Zotlabs/Module/Profiles.php:736 +msgid "Likes" msgstr "" -#: ../../Zotlabs/Module/Locs.php:105 -msgid "No locations found." +#: ../../Zotlabs/Module/Profiles.php:439 ../../Zotlabs/Module/Profiles.php:737 +msgid "Dislikes" msgstr "" -#: ../../Zotlabs/Module/Locs.php:116 -msgid "Manage Channel Locations" +#: ../../Zotlabs/Module/Profiles.php:443 ../../Zotlabs/Module/Profiles.php:744 +msgid "Work/Employment" msgstr "" -#: ../../Zotlabs/Module/Locs.php:119 -msgid "Primary" +#: ../../Zotlabs/Module/Profiles.php:446 +msgid "Religion" msgstr "" -#: ../../Zotlabs/Module/Locs.php:120 ../../Zotlabs/Module/Menu.php:113 -msgid "Drop" +#: ../../Zotlabs/Module/Profiles.php:450 +msgid "Political Views" msgstr "" -#: ../../Zotlabs/Module/Locs.php:122 -msgid "Sync Now" +#: ../../Zotlabs/Module/Profiles.php:458 +msgid "Sexual Preference" msgstr "" -#: ../../Zotlabs/Module/Locs.php:123 -msgid "Please wait several minutes between consecutive operations." +#: ../../Zotlabs/Module/Profiles.php:462 +msgid "Homepage" msgstr "" -#: ../../Zotlabs/Module/Locs.php:124 -msgid "" -"When possible, drop a location by logging into that website/hub and removing " -"your channel." +#: ../../Zotlabs/Module/Profiles.php:466 +msgid "Interests" msgstr "" -#: ../../Zotlabs/Module/Locs.php:125 -msgid "Use this form to drop the location if the hub is no longer operating." +#: ../../Zotlabs/Module/Profiles.php:560 +msgid "Profile updated." msgstr "" -#: ../../Zotlabs/Module/Lostpass.php:19 -msgid "No valid account found." +#: ../../Zotlabs/Module/Profiles.php:644 +msgid "Hide your connections list from viewers of this profile" msgstr "" -#: ../../Zotlabs/Module/Lostpass.php:33 -msgid "Password reset request issued. Check your email." +#: ../../Zotlabs/Module/Profiles.php:686 +msgid "Edit Profile Details" msgstr "" -#: ../../Zotlabs/Module/Lostpass.php:39 ../../Zotlabs/Module/Lostpass.php:107 -#, php-format -msgid "Site Member (%s)" +#: ../../Zotlabs/Module/Profiles.php:688 +msgid "View this profile" msgstr "" -#: ../../Zotlabs/Module/Lostpass.php:44 -#, php-format -msgid "Password reset requested at %s" +#: ../../Zotlabs/Module/Profiles.php:689 ../../Zotlabs/Module/Profiles.php:771 +#: ../../include/channel.php:959 +msgid "Edit visibility" msgstr "" -#: ../../Zotlabs/Module/Lostpass.php:67 -msgid "" -"Request could not be verified. (You may have previously submitted it.) " -"Password reset failed." +#: ../../Zotlabs/Module/Profiles.php:690 +msgid "Profile Tools" msgstr "" -#: ../../Zotlabs/Module/Lostpass.php:90 ../../boot.php:1703 -msgid "Password Reset" +#: ../../Zotlabs/Module/Profiles.php:691 +msgid "Change cover photo" msgstr "" -#: ../../Zotlabs/Module/Lostpass.php:91 -msgid "Your password has been reset as requested." +#: ../../Zotlabs/Module/Profiles.php:692 ../../include/channel.php:930 +msgid "Change profile photo" msgstr "" -#: ../../Zotlabs/Module/Lostpass.php:92 -msgid "Your new password is" +#: ../../Zotlabs/Module/Profiles.php:693 +msgid "Create a new profile using these settings" msgstr "" -#: ../../Zotlabs/Module/Lostpass.php:93 -msgid "Save or copy your new password - and then" +#: ../../Zotlabs/Module/Profiles.php:694 +msgid "Clone this profile" msgstr "" -#: ../../Zotlabs/Module/Lostpass.php:94 -msgid "click here to login" +#: ../../Zotlabs/Module/Profiles.php:695 +msgid "Delete this profile" msgstr "" -#: ../../Zotlabs/Module/Lostpass.php:95 -msgid "" -"Your password may be changed from the Settings page after " -"successful login." +#: ../../Zotlabs/Module/Profiles.php:696 +msgid "Add profile things" msgstr "" -#: ../../Zotlabs/Module/Lostpass.php:112 -#, php-format -msgid "Your password has changed at %s" +#: ../../Zotlabs/Module/Profiles.php:697 ../../include/widgets.php:105 +#: ../../include/conversation.php:1526 +msgid "Personal" msgstr "" -#: ../../Zotlabs/Module/Lostpass.php:127 -msgid "Forgot your Password?" +#: ../../Zotlabs/Module/Profiles.php:699 +msgid "Relation" msgstr "" -#: ../../Zotlabs/Module/Lostpass.php:128 -msgid "" -"Enter your email address and submit to have your password reset. Then check " -"your email for further instructions." +#: ../../Zotlabs/Module/Profiles.php:700 ../../include/datetime.php:48 +msgid "Miscellaneous" msgstr "" -#: ../../Zotlabs/Module/Lostpass.php:129 -msgid "Email Address" +#: ../../Zotlabs/Module/Profiles.php:702 +msgid "Import profile from file" msgstr "" -#: ../../Zotlabs/Module/Lostpass.php:130 -msgid "Reset" +#: ../../Zotlabs/Module/Profiles.php:703 +msgid "Export profile to file" msgstr "" -#: ../../Zotlabs/Module/Magic.php:71 -msgid "Hub not found." +#: ../../Zotlabs/Module/Profiles.php:704 +msgid "Your gender" msgstr "" -#: ../../Zotlabs/Module/Mail.php:38 -msgid "Unable to lookup recipient." +#: ../../Zotlabs/Module/Profiles.php:705 +msgid "Marital status" msgstr "" -#: ../../Zotlabs/Module/Mail.php:45 -msgid "Unable to communicate with requested channel." +#: ../../Zotlabs/Module/Profiles.php:706 +msgid "Sexual preference" msgstr "" -#: ../../Zotlabs/Module/Mail.php:52 -msgid "Cannot verify requested channel." +#: ../../Zotlabs/Module/Profiles.php:709 +msgid "Profile name" msgstr "" -#: ../../Zotlabs/Module/Mail.php:78 -msgid "Selected channel has private message restrictions. Send failed." +#: ../../Zotlabs/Module/Profiles.php:711 +msgid "This is your default profile." msgstr "" -#: ../../Zotlabs/Module/Mail.php:143 -msgid "Messages" +#: ../../Zotlabs/Module/Profiles.php:713 +msgid "Your full name" msgstr "" -#: ../../Zotlabs/Module/Mail.php:178 -msgid "Message recalled." +#: ../../Zotlabs/Module/Profiles.php:714 +msgid "Title/Description" msgstr "" -#: ../../Zotlabs/Module/Mail.php:191 -msgid "Conversation removed." +#: ../../Zotlabs/Module/Profiles.php:717 +msgid "Street address" msgstr "" -#: ../../Zotlabs/Module/Mail.php:206 ../../Zotlabs/Module/Mail.php:315 -msgid "Expires YYYY-MM-DD HH:MM" +#: ../../Zotlabs/Module/Profiles.php:718 +msgid "Locality/City" msgstr "" -#: ../../Zotlabs/Module/Mail.php:234 -msgid "Requested channel is not in this network" +#: ../../Zotlabs/Module/Profiles.php:719 +msgid "Region/State" msgstr "" -#: ../../Zotlabs/Module/Mail.php:242 -msgid "Send Private Message" +#: ../../Zotlabs/Module/Profiles.php:720 +msgid "Postal/Zip code" msgstr "" -#: ../../Zotlabs/Module/Mail.php:243 ../../Zotlabs/Module/Mail.php:368 -msgid "To:" +#: ../../Zotlabs/Module/Profiles.php:721 +msgid "Country" msgstr "" -#: ../../Zotlabs/Module/Mail.php:246 ../../Zotlabs/Module/Mail.php:370 -msgid "Subject:" +#: ../../Zotlabs/Module/Profiles.php:726 +msgid "Who (if applicable)" msgstr "" -#: ../../Zotlabs/Module/Mail.php:251 ../../Zotlabs/Module/Mail.php:376 -#: ../../include/conversation.php:1220 -msgid "Attach file" +#: ../../Zotlabs/Module/Profiles.php:726 +msgid "Examples: cathy123, Cathy Williams, cathy@example.com" msgstr "" -#: ../../Zotlabs/Module/Mail.php:253 -msgid "Send" +#: ../../Zotlabs/Module/Profiles.php:727 +msgid "Since (date)" msgstr "" -#: ../../Zotlabs/Module/Mail.php:256 ../../Zotlabs/Module/Mail.php:381 -#: ../../include/conversation.php:1251 -msgid "Set expiration date" +#: ../../Zotlabs/Module/Profiles.php:730 +msgid "Tell us about yourself" msgstr "" -#: ../../Zotlabs/Module/Mail.php:340 -msgid "Delete message" +#: ../../Zotlabs/Module/Profiles.php:732 +msgid "Hometown" msgstr "" -#: ../../Zotlabs/Module/Mail.php:341 -msgid "Delivery report" +#: ../../Zotlabs/Module/Profiles.php:733 +msgid "Political views" msgstr "" -#: ../../Zotlabs/Module/Mail.php:342 -msgid "Recall message" +#: ../../Zotlabs/Module/Profiles.php:734 +msgid "Religious views" msgstr "" -#: ../../Zotlabs/Module/Mail.php:344 -msgid "Message has been recalled." +#: ../../Zotlabs/Module/Profiles.php:735 +msgid "Keywords used in directory listings" msgstr "" -#: ../../Zotlabs/Module/Mail.php:361 -msgid "Delete Conversation" +#: ../../Zotlabs/Module/Profiles.php:735 +msgid "Example: fishing photography software" msgstr "" -#: ../../Zotlabs/Module/Mail.php:363 -msgid "" -"No secure communications available. You may be able to " -"respond from the sender's profile page." +#: ../../Zotlabs/Module/Profiles.php:738 +msgid "Musical interests" msgstr "" -#: ../../Zotlabs/Module/Mail.php:367 -msgid "Send Reply" +#: ../../Zotlabs/Module/Profiles.php:739 +msgid "Books, literature" msgstr "" -#: ../../Zotlabs/Module/Mail.php:372 -#, php-format -msgid "Your message for %s (%s):" +#: ../../Zotlabs/Module/Profiles.php:740 +msgid "Television" msgstr "" -#: ../../Zotlabs/Module/Manage.php:136 -#: ../../Zotlabs/Module/New_channel.php:121 -#, php-format -msgid "You have created %1$.0f of %2$.0f allowed channels." +#: ../../Zotlabs/Module/Profiles.php:741 +msgid "Film/Dance/Culture/Entertainment" msgstr "" -#: ../../Zotlabs/Module/Manage.php:143 -msgid "Create a new channel" +#: ../../Zotlabs/Module/Profiles.php:742 +msgid "Hobbies/Interests" msgstr "" -#: ../../Zotlabs/Module/Manage.php:164 ../../Zotlabs/Lib/Apps.php:213 -#: ../../include/nav.php:206 -msgid "Channel Manager" +#: ../../Zotlabs/Module/Profiles.php:743 +msgid "Love/Romance" msgstr "" -#: ../../Zotlabs/Module/Manage.php:165 -msgid "Current Channel" +#: ../../Zotlabs/Module/Profiles.php:745 +msgid "School/Education" msgstr "" -#: ../../Zotlabs/Module/Manage.php:167 -msgid "Switch to one of your channels by selecting it." +#: ../../Zotlabs/Module/Profiles.php:746 +msgid "Contact information and social networks" msgstr "" -#: ../../Zotlabs/Module/Manage.php:168 -msgid "Default Channel" +#: ../../Zotlabs/Module/Profiles.php:747 +msgid "My other channels" msgstr "" -#: ../../Zotlabs/Module/Manage.php:169 -msgid "Make Default" +#: ../../Zotlabs/Module/Profiles.php:767 ../../include/channel.php:955 +msgid "Profile Image" msgstr "" -#: ../../Zotlabs/Module/Manage.php:172 -#, php-format -msgid "%d new messages" +#: ../../Zotlabs/Module/Profiles.php:777 ../../include/nav.php:88 +#: ../../include/channel.php:937 +msgid "Edit Profiles" msgstr "" -#: ../../Zotlabs/Module/Manage.php:173 -#, php-format -msgid "%d new introductions" +#: ../../Zotlabs/Module/Profile_photo.php:179 +msgid "" +"Shift-reload the page or clear browser cache if the new photo does not " +"display immediately." +msgstr "" + +#: ../../Zotlabs/Module/Profile_photo.php:367 +msgid "Upload Profile Photo" msgstr "" -#: ../../Zotlabs/Module/Manage.php:175 -msgid "Delegated Channel" +#: ../../Zotlabs/Module/Profperm.php:34 ../../Zotlabs/Module/Profperm.php:63 +msgid "Invalid profile identifier." msgstr "" -#: ../../Zotlabs/Module/Match.php:26 -msgid "Profile Match" +#: ../../Zotlabs/Module/Profperm.php:115 +msgid "Profile Visibility Editor" msgstr "" -#: ../../Zotlabs/Module/Match.php:35 -msgid "No keywords to match. Please add keywords to your default profile." +#: ../../Zotlabs/Module/Profperm.php:117 ../../include/channel.php:1249 +msgid "Profile" msgstr "" -#: ../../Zotlabs/Module/Match.php:67 -msgid "is interested in:" +#: ../../Zotlabs/Module/Profperm.php:119 +msgid "Click on a contact to add or remove." msgstr "" -#: ../../Zotlabs/Module/Match.php:74 -msgid "No matches" +#: ../../Zotlabs/Module/Profperm.php:128 +msgid "Visible To" msgstr "" -#: ../../Zotlabs/Module/Menu.php:49 -msgid "Unable to update menu." +#: ../../Zotlabs/Module/Pubsites.php:22 ../../include/widgets.php:1270 +msgid "Public Hubs" msgstr "" -#: ../../Zotlabs/Module/Menu.php:60 -msgid "Unable to create menu." +#: ../../Zotlabs/Module/Pubsites.php:25 +msgid "" +"The listed hubs allow public registration for the $Projectname network. All " +"hubs in the network are interlinked so membership on any of them conveys " +"membership in the network as a whole. Some hubs may require subscription or " +"provide tiered service plans. The hub itself may provide " +"additional details." msgstr "" -#: ../../Zotlabs/Module/Menu.php:98 ../../Zotlabs/Module/Menu.php:110 -msgid "Menu Name" +#: ../../Zotlabs/Module/Pubsites.php:31 +msgid "Hub URL" msgstr "" -#: ../../Zotlabs/Module/Menu.php:98 -msgid "Unique name (not visible on webpage) - required" +#: ../../Zotlabs/Module/Pubsites.php:31 +msgid "Access Type" msgstr "" -#: ../../Zotlabs/Module/Menu.php:99 ../../Zotlabs/Module/Menu.php:111 -msgid "Menu Title" +#: ../../Zotlabs/Module/Pubsites.php:31 +msgid "Registration Policy" msgstr "" -#: ../../Zotlabs/Module/Menu.php:99 -msgid "Visible on webpage - leave empty for no title" +#: ../../Zotlabs/Module/Pubsites.php:31 +msgid "Stats" msgstr "" -#: ../../Zotlabs/Module/Menu.php:100 -msgid "Allow Bookmarks" +#: ../../Zotlabs/Module/Pubsites.php:31 +msgid "Software" msgstr "" -#: ../../Zotlabs/Module/Menu.php:100 ../../Zotlabs/Module/Menu.php:157 -msgid "Menu may be used to store saved bookmarks" +#: ../../Zotlabs/Module/Pubsites.php:31 ../../Zotlabs/Module/Ratings.php:103 +#: ../../include/conversation.php:959 +msgid "Ratings" msgstr "" -#: ../../Zotlabs/Module/Menu.php:101 ../../Zotlabs/Module/Menu.php:159 -msgid "Submit and proceed" +#: ../../Zotlabs/Module/Pubsites.php:38 +msgid "Rate" msgstr "" -#: ../../Zotlabs/Module/Menu.php:107 ../../include/text.php:2251 -msgid "Menus" +#: ../../Zotlabs/Module/Rate.php:160 +msgid "Website:" msgstr "" -#: ../../Zotlabs/Module/Menu.php:117 -msgid "Bookmarks allowed" +#: ../../Zotlabs/Module/Rate.php:163 +#, php-format +msgid "Remote Channel [%s] (not yet known on this site)" msgstr "" -#: ../../Zotlabs/Module/Menu.php:119 -msgid "Delete this menu" +#: ../../Zotlabs/Module/Rate.php:164 +msgid "Rating (this information is public)" msgstr "" -#: ../../Zotlabs/Module/Menu.php:120 ../../Zotlabs/Module/Menu.php:154 -msgid "Edit menu contents" +#: ../../Zotlabs/Module/Rate.php:165 +msgid "Optionally explain your rating (this information is public)" msgstr "" -#: ../../Zotlabs/Module/Menu.php:121 -msgid "Edit this menu" +#: ../../Zotlabs/Module/Ratings.php:73 +msgid "No ratings" msgstr "" -#: ../../Zotlabs/Module/Menu.php:136 -msgid "Menu could not be deleted." +#: ../../Zotlabs/Module/Ratings.php:104 +msgid "Rating: " msgstr "" -#: ../../Zotlabs/Module/Menu.php:144 ../../Zotlabs/Module/Mitem.php:28 -msgid "Menu not found." +#: ../../Zotlabs/Module/Ratings.php:105 +msgid "Website: " msgstr "" -#: ../../Zotlabs/Module/Menu.php:149 -msgid "Edit Menu" +#: ../../Zotlabs/Module/Ratings.php:107 +msgid "Description: " msgstr "" -#: ../../Zotlabs/Module/Menu.php:153 -msgid "Add or remove entries to this menu" +#: ../../Zotlabs/Module/Admin.php:77 +msgid "Theme settings updated." msgstr "" -#: ../../Zotlabs/Module/Menu.php:155 -msgid "Menu name" +#: ../../Zotlabs/Module/Admin.php:197 +msgid "# Accounts" msgstr "" -#: ../../Zotlabs/Module/Menu.php:155 -msgid "Must be unique, only seen by you" +#: ../../Zotlabs/Module/Admin.php:198 +msgid "# blocked accounts" msgstr "" -#: ../../Zotlabs/Module/Menu.php:156 -msgid "Menu title" +#: ../../Zotlabs/Module/Admin.php:199 +msgid "# expired accounts" msgstr "" -#: ../../Zotlabs/Module/Menu.php:156 -msgid "Menu title as seen by others" +#: ../../Zotlabs/Module/Admin.php:200 +msgid "# expiring accounts" msgstr "" -#: ../../Zotlabs/Module/Menu.php:157 -msgid "Allow bookmarks" +#: ../../Zotlabs/Module/Admin.php:211 +msgid "# Channels" msgstr "" -#: ../../Zotlabs/Module/Menu.php:166 ../../Zotlabs/Module/Mitem.php:120 -#: ../../Zotlabs/Module/Xchan.php:41 -msgid "Not found." +#: ../../Zotlabs/Module/Admin.php:212 +msgid "# primary" msgstr "" -#: ../../Zotlabs/Module/Mitem.php:52 -msgid "Unable to create element." +#: ../../Zotlabs/Module/Admin.php:213 +msgid "# clones" msgstr "" -#: ../../Zotlabs/Module/Mitem.php:76 -msgid "Unable to update menu element." +#: ../../Zotlabs/Module/Admin.php:219 +msgid "Message queues" msgstr "" -#: ../../Zotlabs/Module/Mitem.php:92 -msgid "Unable to add menu element." +#: ../../Zotlabs/Module/Admin.php:236 +msgid "Your software should be updated" msgstr "" -#: ../../Zotlabs/Module/Mitem.php:153 ../../Zotlabs/Module/Mitem.php:226 -msgid "Menu Item Permissions" +#: ../../Zotlabs/Module/Admin.php:241 ../../Zotlabs/Module/Admin.php:490 +#: ../../Zotlabs/Module/Admin.php:711 ../../Zotlabs/Module/Admin.php:755 +#: ../../Zotlabs/Module/Admin.php:1030 ../../Zotlabs/Module/Admin.php:1209 +#: ../../Zotlabs/Module/Admin.php:1329 ../../Zotlabs/Module/Admin.php:1419 +#: ../../Zotlabs/Module/Admin.php:1612 ../../Zotlabs/Module/Admin.php:1646 +#: ../../Zotlabs/Module/Admin.php:1731 +msgid "Administration" msgstr "" -#: ../../Zotlabs/Module/Mitem.php:154 ../../Zotlabs/Module/Mitem.php:227 -#: ../../Zotlabs/Module/Settings.php:1068 -msgid "(click to open/close)" +#: ../../Zotlabs/Module/Admin.php:242 +msgid "Summary" msgstr "" -#: ../../Zotlabs/Module/Mitem.php:156 ../../Zotlabs/Module/Mitem.php:172 -msgid "Link Name" +#: ../../Zotlabs/Module/Admin.php:245 +msgid "Registered accounts" msgstr "" -#: ../../Zotlabs/Module/Mitem.php:157 ../../Zotlabs/Module/Mitem.php:231 -msgid "Link or Submenu Target" +#: ../../Zotlabs/Module/Admin.php:246 ../../Zotlabs/Module/Admin.php:715 +msgid "Pending registrations" msgstr "" -#: ../../Zotlabs/Module/Mitem.php:157 -msgid "Enter URL of the link or select a menu name to create a submenu" +#: ../../Zotlabs/Module/Admin.php:247 +msgid "Registered channels" msgstr "" -#: ../../Zotlabs/Module/Mitem.php:158 ../../Zotlabs/Module/Mitem.php:232 -msgid "Use magic-auth if available" +#: ../../Zotlabs/Module/Admin.php:248 ../../Zotlabs/Module/Admin.php:716 +msgid "Active plugins" msgstr "" -#: ../../Zotlabs/Module/Mitem.php:159 ../../Zotlabs/Module/Mitem.php:233 -msgid "Open link in new window" +#: ../../Zotlabs/Module/Admin.php:249 +msgid "Version" msgstr "" -#: ../../Zotlabs/Module/Mitem.php:160 ../../Zotlabs/Module/Mitem.php:234 -msgid "Order in list" +#: ../../Zotlabs/Module/Admin.php:250 +msgid "Repository version (master)" msgstr "" -#: ../../Zotlabs/Module/Mitem.php:160 ../../Zotlabs/Module/Mitem.php:234 -msgid "Higher numbers will sink to bottom of listing" +#: ../../Zotlabs/Module/Admin.php:251 +msgid "Repository version (dev)" msgstr "" -#: ../../Zotlabs/Module/Mitem.php:161 -msgid "Submit and finish" +#: ../../Zotlabs/Module/Admin.php:373 +msgid "Site settings updated." msgstr "" -#: ../../Zotlabs/Module/Mitem.php:162 -msgid "Submit and continue" +#: ../../Zotlabs/Module/Admin.php:400 ../../include/text.php:2841 +msgid "Default" msgstr "" -#: ../../Zotlabs/Module/Mitem.php:170 -msgid "Menu:" +#: ../../Zotlabs/Module/Admin.php:410 ../../Zotlabs/Module/Settings.php:798 +msgid "mobile" msgstr "" -#: ../../Zotlabs/Module/Mitem.php:173 -msgid "Link Target" +#: ../../Zotlabs/Module/Admin.php:412 +msgid "experimental" msgstr "" -#: ../../Zotlabs/Module/Mitem.php:176 -msgid "Edit menu" +#: ../../Zotlabs/Module/Admin.php:414 +msgid "unsupported" msgstr "" -#: ../../Zotlabs/Module/Mitem.php:179 -msgid "Edit element" +#: ../../Zotlabs/Module/Admin.php:460 +msgid "Yes - with approval" msgstr "" -#: ../../Zotlabs/Module/Mitem.php:180 -msgid "Drop element" +#: ../../Zotlabs/Module/Admin.php:466 +msgid "My site is not a public server" msgstr "" -#: ../../Zotlabs/Module/Mitem.php:181 -msgid "New element" +#: ../../Zotlabs/Module/Admin.php:467 +msgid "My site has paid access only" msgstr "" -#: ../../Zotlabs/Module/Mitem.php:182 -msgid "Edit this menu container" +#: ../../Zotlabs/Module/Admin.php:468 +msgid "My site has free access only" msgstr "" -#: ../../Zotlabs/Module/Mitem.php:183 -msgid "Add menu element" +#: ../../Zotlabs/Module/Admin.php:469 +msgid "My site offers free accounts with optional paid upgrades" msgstr "" -#: ../../Zotlabs/Module/Mitem.php:184 -msgid "Delete this menu item" +#: ../../Zotlabs/Module/Admin.php:491 ../../include/widgets.php:1382 +msgid "Site" msgstr "" -#: ../../Zotlabs/Module/Mitem.php:185 -msgid "Edit this menu item" +#: ../../Zotlabs/Module/Admin.php:493 ../../Zotlabs/Module/Register.php:245 +msgid "Registration" msgstr "" -#: ../../Zotlabs/Module/Mitem.php:202 -msgid "Menu item not found." +#: ../../Zotlabs/Module/Admin.php:494 +msgid "File upload" msgstr "" -#: ../../Zotlabs/Module/Mitem.php:215 -msgid "Menu item deleted." +#: ../../Zotlabs/Module/Admin.php:495 +msgid "Policies" msgstr "" -#: ../../Zotlabs/Module/Mitem.php:217 -msgid "Menu item could not be deleted." +#: ../../Zotlabs/Module/Admin.php:496 ../../include/contact_widgets.php:16 +msgid "Advanced" msgstr "" -#: ../../Zotlabs/Module/Mitem.php:224 -msgid "Edit Menu Element" +#: ../../Zotlabs/Module/Admin.php:500 +msgid "Site name" msgstr "" -#: ../../Zotlabs/Module/Mitem.php:230 -msgid "Link text" +#: ../../Zotlabs/Module/Admin.php:501 +msgid "Banner/Logo" msgstr "" -#: ../../Zotlabs/Module/Mood.php:67 ../../include/conversation.php:260 -#, php-format -msgctxt "mood" -msgid "%1$s is %2$s" +#: ../../Zotlabs/Module/Admin.php:502 +msgid "Administrator Information" msgstr "" -#: ../../Zotlabs/Module/Mood.php:135 ../../Zotlabs/Lib/Apps.php:225 -msgid "Mood" +#: ../../Zotlabs/Module/Admin.php:502 +msgid "" +"Contact information for site administrators. Displayed on siteinfo page. " +"BBCode can be used here" msgstr "" -#: ../../Zotlabs/Module/Mood.php:136 -msgid "Set your current mood and tell your friends" +#: ../../Zotlabs/Module/Admin.php:503 +msgid "System language" msgstr "" -#: ../../Zotlabs/Module/Network.php:96 -msgid "No such group" +#: ../../Zotlabs/Module/Admin.php:504 +msgid "System theme" msgstr "" -#: ../../Zotlabs/Module/Network.php:136 -msgid "No such channel" +#: ../../Zotlabs/Module/Admin.php:504 +msgid "" +"Default system theme - may be over-ridden by user profiles - change theme settings" msgstr "" -#: ../../Zotlabs/Module/Network.php:141 -msgid "forum" +#: ../../Zotlabs/Module/Admin.php:505 +msgid "Mobile system theme" msgstr "" -#: ../../Zotlabs/Module/Network.php:153 -msgid "Search Results For:" +#: ../../Zotlabs/Module/Admin.php:505 +msgid "Theme for mobile devices" msgstr "" -#: ../../Zotlabs/Module/Network.php:217 -msgid "Privacy group is empty" +#: ../../Zotlabs/Module/Admin.php:507 +msgid "Allow Feeds as Connections" msgstr "" -#: ../../Zotlabs/Module/Network.php:226 -msgid "Privacy group: " +#: ../../Zotlabs/Module/Admin.php:507 +msgid "(Heavy system resource usage)" msgstr "" -#: ../../Zotlabs/Module/Network.php:252 -msgid "Invalid connection." +#: ../../Zotlabs/Module/Admin.php:508 +msgid "Maximum image size" msgstr "" -#: ../../Zotlabs/Module/New_channel.php:128 -#: ../../Zotlabs/Module/Register.php:231 -msgid "Name or caption" +#: ../../Zotlabs/Module/Admin.php:508 +msgid "" +"Maximum size in bytes of uploaded images. Default is 0, which means no " +"limits." msgstr "" -#: ../../Zotlabs/Module/New_channel.php:128 -#: ../../Zotlabs/Module/Register.php:231 -msgid "" -"Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation " -"Group\"" +#: ../../Zotlabs/Module/Admin.php:509 +msgid "Does this site allow new member registration?" msgstr "" -#: ../../Zotlabs/Module/New_channel.php:130 -#: ../../Zotlabs/Module/Register.php:233 -msgid "Choose a short nickname" +#: ../../Zotlabs/Module/Admin.php:510 +msgid "Invitation only" msgstr "" -#: ../../Zotlabs/Module/New_channel.php:130 -#: ../../Zotlabs/Module/Register.php:233 -#, php-format +#: ../../Zotlabs/Module/Admin.php:510 msgid "" -"Your nickname will be used to create an easy to remember channel address e." -"g. nickname%s" +"Only allow new member registrations with an invitation code. Above register " +"policy must be set to Yes." msgstr "" -#: ../../Zotlabs/Module/New_channel.php:132 -#: ../../Zotlabs/Module/Register.php:235 -msgid "Channel role and privacy" +#: ../../Zotlabs/Module/Admin.php:511 +msgid "Which best describes the types of account offered by this hub?" msgstr "" -#: ../../Zotlabs/Module/New_channel.php:132 -#: ../../Zotlabs/Module/Register.php:235 -msgid "Select a channel role with your privacy requirements." +#: ../../Zotlabs/Module/Admin.php:512 +msgid "Register text" msgstr "" -#: ../../Zotlabs/Module/New_channel.php:132 -#: ../../Zotlabs/Module/Register.php:235 -msgid "Read more about roles" +#: ../../Zotlabs/Module/Admin.php:512 +msgid "Will be displayed prominently on the registration page." msgstr "" -#: ../../Zotlabs/Module/New_channel.php:135 -msgid "Create Channel" +#: ../../Zotlabs/Module/Admin.php:513 +msgid "Site homepage to show visitors (default: login box)" msgstr "" -#: ../../Zotlabs/Module/New_channel.php:136 +#: ../../Zotlabs/Module/Admin.php:513 msgid "" -"A channel is your identity on this network. It can represent a person, a " -"blog, or a forum to name a few. Channels can make connections with other " -"channels to share information with highly detailed permissions." +"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/New_channel.php:137 -msgid "" -"or import an existing channel from another location." +#: ../../Zotlabs/Module/Admin.php:514 +msgid "Preserve site homepage URL" msgstr "" -#: ../../Zotlabs/Module/Notifications.php:30 -msgid "Invalid request identifier." +#: ../../Zotlabs/Module/Admin.php:514 +msgid "" +"Present the site homepage in a frame at the original location instead of " +"redirecting" msgstr "" -#: ../../Zotlabs/Module/Notifications.php:39 -msgid "Discard" +#: ../../Zotlabs/Module/Admin.php:515 +msgid "Accounts abandoned after x days" msgstr "" -#: ../../Zotlabs/Module/Notifications.php:98 -#: ../../Zotlabs/Module/Notify.php:57 -msgid "No more system notifications." +#: ../../Zotlabs/Module/Admin.php:515 +msgid "" +"Will not waste system resources polling external sites for abandonded " +"accounts. Enter 0 for no time limit." msgstr "" -#: ../../Zotlabs/Module/Notifications.php:102 -#: ../../Zotlabs/Module/Notify.php:61 -msgid "System Notifications" +#: ../../Zotlabs/Module/Admin.php:516 +msgid "Allowed friend domains" msgstr "" -#: ../../Zotlabs/Module/Notifications.php:103 ../../include/nav.php:191 -msgid "Mark all system notifications seen" +#: ../../Zotlabs/Module/Admin.php:516 +msgid "" +"Comma separated list of domains which are allowed to establish friendships " +"with this site. Wildcards are accepted. Empty to allow any domains" msgstr "" -#: ../../Zotlabs/Module/Oexchange.php:27 -msgid "Unable to find your hub." +#: ../../Zotlabs/Module/Admin.php:517 +msgid "Allowed email domains" msgstr "" -#: ../../Zotlabs/Module/Oexchange.php:41 -msgid "Post successful." +#: ../../Zotlabs/Module/Admin.php:517 +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/Openid.php:30 -msgid "OpenID protocol error. No ID returned." +#: ../../Zotlabs/Module/Admin.php:518 +msgid "Not allowed email domains" msgstr "" -#: ../../Zotlabs/Module/Openid.php:193 ../../include/auth.php:226 -msgid "Login failed." +#: ../../Zotlabs/Module/Admin.php:518 +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/Page.php:133 -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." +#: ../../Zotlabs/Module/Admin.php:519 +msgid "Verify Email Addresses" msgstr "" -#: ../../Zotlabs/Module/Pconfig.php:26 ../../Zotlabs/Module/Pconfig.php:59 -msgid "This setting requires special processing and editing has been blocked." +#: ../../Zotlabs/Module/Admin.php:519 +msgid "" +"Check to verify email addresses used in account registration (recommended)." msgstr "" -#: ../../Zotlabs/Module/Pconfig.php:48 -msgid "Configuration Editor" +#: ../../Zotlabs/Module/Admin.php:520 +msgid "Force publish" msgstr "" -#: ../../Zotlabs/Module/Pconfig.php:49 +#: ../../Zotlabs/Module/Admin.php:520 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." +"Check to force all profiles on this site to be listed in the site directory." msgstr "" -#: ../../Zotlabs/Module/Pdledit.php:18 -msgid "Layout updated." +#: ../../Zotlabs/Module/Admin.php:521 +msgid "Import Public Streams" msgstr "" -#: ../../Zotlabs/Module/Pdledit.php:34 ../../Zotlabs/Module/Pdledit.php:61 -msgid "Edit System Page Description" +#: ../../Zotlabs/Module/Admin.php:521 +msgid "" +"Import and allow access to public content pulled from other sites. Warning: " +"this content is unmoderated." msgstr "" -#: ../../Zotlabs/Module/Pdledit.php:56 -msgid "Layout not found." +#: ../../Zotlabs/Module/Admin.php:522 +msgid "Login on Homepage" msgstr "" -#: ../../Zotlabs/Module/Pdledit.php:62 -msgid "Module Name:" +#: ../../Zotlabs/Module/Admin.php:522 +msgid "" +"Present a login box to visitors on the home page if no other content has " +"been configured." msgstr "" -#: ../../Zotlabs/Module/Pdledit.php:63 -msgid "Layout Help" +#: ../../Zotlabs/Module/Admin.php:523 +msgid "Enable context help" msgstr "" -#: ../../Zotlabs/Module/Photos.php:84 -msgid "Page owner information could not be retrieved." +#: ../../Zotlabs/Module/Admin.php:523 +msgid "" +"Display contextual help for the current page when the help button is pressed." msgstr "" -#: ../../Zotlabs/Module/Photos.php:99 ../../Zotlabs/Module/Photos.php:743 -#: ../../Zotlabs/Module/Profile_photo.php:114 -#: ../../Zotlabs/Module/Profile_photo.php:206 -#: ../../Zotlabs/Module/Profile_photo.php:294 -#: ../../include/photo/photo_driver.php:718 -msgid "Profile Photos" +#: ../../Zotlabs/Module/Admin.php:525 +msgid "Directory Server URL" msgstr "" -#: ../../Zotlabs/Module/Photos.php:105 ../../Zotlabs/Module/Photos.php:149 -msgid "Album not found." +#: ../../Zotlabs/Module/Admin.php:525 +msgid "Default directory server" msgstr "" -#: ../../Zotlabs/Module/Photos.php:132 -msgid "Delete Album" +#: ../../Zotlabs/Module/Admin.php:527 +msgid "Proxy user" msgstr "" -#: ../../Zotlabs/Module/Photos.php:153 -msgid "" -"Multiple storage folders exist with this album name, but within different " -"directories. Please remove the desired folder or folders using the Files " -"manager" +#: ../../Zotlabs/Module/Admin.php:528 +msgid "Proxy URL" msgstr "" -#: ../../Zotlabs/Module/Photos.php:210 ../../Zotlabs/Module/Photos.php:1053 -msgid "Delete Photo" +#: ../../Zotlabs/Module/Admin.php:529 +msgid "Network timeout" msgstr "" -#: ../../Zotlabs/Module/Photos.php:533 -msgid "No photos selected" +#: ../../Zotlabs/Module/Admin.php:529 +msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." msgstr "" -#: ../../Zotlabs/Module/Photos.php:582 -msgid "Access to this item is restricted." +#: ../../Zotlabs/Module/Admin.php:530 +msgid "Delivery interval" msgstr "" -#: ../../Zotlabs/Module/Photos.php:621 -#, php-format -msgid "%1$.2f MB of %2$.2f MB photo storage used." +#: ../../Zotlabs/Module/Admin.php:530 +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/Photos.php:624 -#, php-format -msgid "%1$.2f MB photo storage used." +#: ../../Zotlabs/Module/Admin.php:531 +msgid "Deliveries per process" msgstr "" -#: ../../Zotlabs/Module/Photos.php:660 -msgid "Upload Photos" +#: ../../Zotlabs/Module/Admin.php:531 +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/Photos.php:664 -msgid "Enter an album name" +#: ../../Zotlabs/Module/Admin.php:532 +msgid "Poll interval" msgstr "" -#: ../../Zotlabs/Module/Photos.php:665 -msgid "or select an existing album (doubleclick)" +#: ../../Zotlabs/Module/Admin.php:532 +msgid "" +"Delay background polling processes by this many seconds to reduce system " +"load. If 0, use delivery interval." msgstr "" -#: ../../Zotlabs/Module/Photos.php:666 -msgid "Create a status post for this upload" +#: ../../Zotlabs/Module/Admin.php:533 +msgid "Maximum Load Average" msgstr "" -#: ../../Zotlabs/Module/Photos.php:667 -msgid "Caption (optional):" +#: ../../Zotlabs/Module/Admin.php:533 +msgid "" +"Maximum system load before delivery and poll processes are deferred - " +"default 50." msgstr "" -#: ../../Zotlabs/Module/Photos.php:668 -msgid "Description (optional):" +#: ../../Zotlabs/Module/Admin.php:534 +msgid "Expiration period in days for imported (grid/network) content" msgstr "" -#: ../../Zotlabs/Module/Photos.php:695 -msgid "Album name could not be decoded" +#: ../../Zotlabs/Module/Admin.php:534 +msgid "0 for no expiration of imported content" msgstr "" -#: ../../Zotlabs/Module/Photos.php:743 ../../Zotlabs/Module/Photos.php:1284 -#: ../../Zotlabs/Module/Photos.php:1302 -msgid "Contact Photos" +#: ../../Zotlabs/Module/Admin.php:677 ../../Zotlabs/Module/Admin.php:678 +#: ../../Zotlabs/Module/Settings.php:722 +msgid "Off" msgstr "" -#: ../../Zotlabs/Module/Photos.php:766 -msgid "Show Newest First" +#: ../../Zotlabs/Module/Admin.php:677 ../../Zotlabs/Module/Admin.php:678 +#: ../../Zotlabs/Module/Settings.php:722 +msgid "On" msgstr "" -#: ../../Zotlabs/Module/Photos.php:768 -msgid "Show Oldest First" +#: ../../Zotlabs/Module/Admin.php:678 +#, php-format +msgid "Lock feature %s" msgstr "" -#: ../../Zotlabs/Module/Photos.php:792 ../../Zotlabs/Module/Photos.php:1335 -#: ../../include/widgets.php:1497 -msgid "View Photo" +#: ../../Zotlabs/Module/Admin.php:686 +msgid "Manage Additional Features" msgstr "" -#: ../../Zotlabs/Module/Photos.php:823 ../../include/widgets.php:1514 -msgid "Edit Album" +#: ../../Zotlabs/Module/Admin.php:703 +msgid "No server found" msgstr "" -#: ../../Zotlabs/Module/Photos.php:870 -msgid "Permission denied. Access to this item may be restricted." +#: ../../Zotlabs/Module/Admin.php:710 ../../Zotlabs/Module/Admin.php:1046 +msgid "ID" msgstr "" -#: ../../Zotlabs/Module/Photos.php:872 -msgid "Photo not available" +#: ../../Zotlabs/Module/Admin.php:710 +msgid "for channel" msgstr "" -#: ../../Zotlabs/Module/Photos.php:930 -msgid "Use as profile photo" +#: ../../Zotlabs/Module/Admin.php:710 +msgid "on server" msgstr "" -#: ../../Zotlabs/Module/Photos.php:931 -msgid "Use as cover photo" +#: ../../Zotlabs/Module/Admin.php:712 +msgid "Server" msgstr "" -#: ../../Zotlabs/Module/Photos.php:938 -msgid "Private Photo" +#: ../../Zotlabs/Module/Admin.php:746 +msgid "" +"By default, unfiltered HTML is allowed in embedded media. This is inherently " +"insecure." msgstr "" -#: ../../Zotlabs/Module/Photos.php:953 -msgid "View Full Size" +#: ../../Zotlabs/Module/Admin.php:749 +msgid "" +"The recommended setting is to only allow unfiltered HTML from the following " +"sites:" msgstr "" -#: ../../Zotlabs/Module/Photos.php:1032 -msgid "Edit photo" +#: ../../Zotlabs/Module/Admin.php:750 +msgid "" +"https://youtube.com/
https://www.youtube.com/
https://youtu.be/" +"
https://vimeo.com/
https://soundcloud.com/
" msgstr "" -#: ../../Zotlabs/Module/Photos.php:1034 -msgid "Rotate CW (right)" +#: ../../Zotlabs/Module/Admin.php:751 +msgid "" +"All other embedded content will be filtered, unless " +"embedded content from that site is explicitly blocked." msgstr "" -#: ../../Zotlabs/Module/Photos.php:1035 -msgid "Rotate CCW (left)" +#: ../../Zotlabs/Module/Admin.php:756 ../../include/widgets.php:1385 +msgid "Security" msgstr "" -#: ../../Zotlabs/Module/Photos.php:1038 -msgid "Enter a new album name" +#: ../../Zotlabs/Module/Admin.php:758 +msgid "Block public" msgstr "" -#: ../../Zotlabs/Module/Photos.php:1039 -msgid "or select an existing one (doubleclick)" +#: ../../Zotlabs/Module/Admin.php:758 +msgid "" +"Check to block public access to all otherwise public personal pages on this " +"site unless you are currently authenticated." msgstr "" -#: ../../Zotlabs/Module/Photos.php:1042 -msgid "Caption" +#: ../../Zotlabs/Module/Admin.php:759 +msgid "Set \"Transport Security\" HTTP header" msgstr "" -#: ../../Zotlabs/Module/Photos.php:1044 -msgid "Add a Tag" +#: ../../Zotlabs/Module/Admin.php:760 +msgid "Set \"Content Security Policy\" HTTP header" msgstr "" -#: ../../Zotlabs/Module/Photos.php:1048 -msgid "Example: @bob, @Barbara_Jensen, @jim@example.com" +#: ../../Zotlabs/Module/Admin.php:761 +msgid "Allow communications only from these sites" msgstr "" -#: ../../Zotlabs/Module/Photos.php:1051 -msgid "Flag as adult in album view" +#: ../../Zotlabs/Module/Admin.php:761 +msgid "" +"One site per line. Leave empty to allow communication from anywhere by " +"default" msgstr "" -#: ../../Zotlabs/Module/Photos.php:1070 ../../Zotlabs/Lib/ThreadItem.php:251 -msgid "I like this (toggle)" +#: ../../Zotlabs/Module/Admin.php:762 +msgid "Block communications from these sites" msgstr "" -#: ../../Zotlabs/Module/Photos.php:1071 ../../Zotlabs/Lib/ThreadItem.php:252 -msgid "I don't like this (toggle)" +#: ../../Zotlabs/Module/Admin.php:763 +msgid "Allow communications only from these channels" msgstr "" -#: ../../Zotlabs/Module/Photos.php:1073 ../../Zotlabs/Lib/ThreadItem.php:386 -#: ../../include/conversation.php:740 -msgid "Please wait" +#: ../../Zotlabs/Module/Admin.php:763 +msgid "" +"One channel (hash) per line. Leave empty to allow from any channel by default" msgstr "" -#: ../../Zotlabs/Module/Photos.php:1089 ../../Zotlabs/Module/Photos.php:1207 -#: ../../Zotlabs/Lib/ThreadItem.php:696 -msgid "This is you" +#: ../../Zotlabs/Module/Admin.php:764 +msgid "Block communications from these channels" msgstr "" -#: ../../Zotlabs/Module/Photos.php:1091 ../../Zotlabs/Module/Photos.php:1209 -#: ../../Zotlabs/Lib/ThreadItem.php:698 ../../include/js_strings.php:6 -msgid "Comment" +#: ../../Zotlabs/Module/Admin.php:765 +msgid "Only allow embeds from secure (SSL) websites and links." msgstr "" -#: ../../Zotlabs/Module/Photos.php:1107 ../../include/conversation.php:574 -msgctxt "title" -msgid "Likes" +#: ../../Zotlabs/Module/Admin.php:766 +msgid "Allow unfiltered embedded HTML content only from these domains" msgstr "" -#: ../../Zotlabs/Module/Photos.php:1107 ../../include/conversation.php:574 -msgctxt "title" -msgid "Dislikes" +#: ../../Zotlabs/Module/Admin.php:766 +msgid "One site per line. By default embedded content is filtered." msgstr "" -#: ../../Zotlabs/Module/Photos.php:1108 ../../include/conversation.php:575 -msgctxt "title" -msgid "Agree" +#: ../../Zotlabs/Module/Admin.php:767 +msgid "Block embedded HTML from these domains" msgstr "" -#: ../../Zotlabs/Module/Photos.php:1108 ../../include/conversation.php:575 -msgctxt "title" -msgid "Disagree" +#: ../../Zotlabs/Module/Admin.php:785 +msgid "Update has been marked successful" msgstr "" -#: ../../Zotlabs/Module/Photos.php:1108 ../../include/conversation.php:575 -msgctxt "title" -msgid "Abstain" +#: ../../Zotlabs/Module/Admin.php:795 +#, php-format +msgid "Executing %s failed. Check system logs." msgstr "" -#: ../../Zotlabs/Module/Photos.php:1109 ../../include/conversation.php:576 -msgctxt "title" -msgid "Attending" +#: ../../Zotlabs/Module/Admin.php:798 +#, php-format +msgid "Update %s was successfully applied." msgstr "" -#: ../../Zotlabs/Module/Photos.php:1109 ../../include/conversation.php:576 -msgctxt "title" -msgid "Not attending" +#: ../../Zotlabs/Module/Admin.php:802 +#, php-format +msgid "Update %s did not return a status. Unknown if it succeeded." msgstr "" -#: ../../Zotlabs/Module/Photos.php:1109 ../../include/conversation.php:576 -msgctxt "title" -msgid "Might attend" +#: ../../Zotlabs/Module/Admin.php:805 +#, php-format +msgid "Update function %s could not be found." msgstr "" -#: ../../Zotlabs/Module/Photos.php:1126 ../../Zotlabs/Module/Photos.php:1138 -#: ../../Zotlabs/Lib/ThreadItem.php:171 ../../Zotlabs/Lib/ThreadItem.php:183 -#: ../../include/conversation.php:1717 -msgid "View all" +#: ../../Zotlabs/Module/Admin.php:821 +msgid "No failed updates." msgstr "" -#: ../../Zotlabs/Module/Photos.php:1130 ../../Zotlabs/Lib/ThreadItem.php:175 -#: ../../include/conversation.php:1741 ../../include/channel.php:1158 -#: ../../include/taxonomy.php:403 -msgctxt "noun" -msgid "Like" -msgid_plural "Likes" -msgstr[0] "" -msgstr[1] "" - -#: ../../Zotlabs/Module/Photos.php:1135 ../../Zotlabs/Lib/ThreadItem.php:180 -#: ../../include/conversation.php:1744 -msgctxt "noun" -msgid "Dislike" -msgid_plural "Dislikes" -msgstr[0] "" -msgstr[1] "" - -#: ../../Zotlabs/Module/Photos.php:1235 -msgid "Photo Tools" +#: ../../Zotlabs/Module/Admin.php:825 +msgid "Failed Updates" msgstr "" -#: ../../Zotlabs/Module/Photos.php:1244 -msgid "In This Photo:" +#: ../../Zotlabs/Module/Admin.php:827 +msgid "Mark success (if update was manually applied)" msgstr "" -#: ../../Zotlabs/Module/Photos.php:1249 -msgid "Map" +#: ../../Zotlabs/Module/Admin.php:828 +msgid "Attempt to execute this update step automatically" msgstr "" -#: ../../Zotlabs/Module/Photos.php:1257 ../../Zotlabs/Lib/ThreadItem.php:375 -msgctxt "noun" -msgid "Likes" +#: ../../Zotlabs/Module/Admin.php:859 +msgid "Queue Statistics" msgstr "" -#: ../../Zotlabs/Module/Photos.php:1258 ../../Zotlabs/Lib/ThreadItem.php:376 -msgctxt "noun" -msgid "Dislikes" +#: ../../Zotlabs/Module/Admin.php:860 +msgid "Total Entries" msgstr "" -#: ../../Zotlabs/Module/Photos.php:1263 ../../Zotlabs/Lib/ThreadItem.php:381 -#: ../../include/acl_selectors.php:285 -msgid "Close" +#: ../../Zotlabs/Module/Admin.php:861 +msgid "Priority" msgstr "" -#: ../../Zotlabs/Module/Photos.php:1341 -msgid "View Album" +#: ../../Zotlabs/Module/Admin.php:862 +msgid "Destination URL" msgstr "" -#: ../../Zotlabs/Module/Photos.php:1352 ../../Zotlabs/Module/Photos.php:1365 -#: ../../Zotlabs/Module/Photos.php:1366 -msgid "Recent Photos" +#: ../../Zotlabs/Module/Admin.php:863 +msgid "Mark hub permanently offline" msgstr "" -#: ../../Zotlabs/Module/Ping.php:265 -msgid "sent you a private message" +#: ../../Zotlabs/Module/Admin.php:864 +msgid "Empty queue for this hub" msgstr "" -#: ../../Zotlabs/Module/Ping.php:313 -msgid "added your channel" +#: ../../Zotlabs/Module/Admin.php:865 +msgid "Last known contact" msgstr "" -#: ../../Zotlabs/Module/Ping.php:323 -msgid "g A l F d" -msgstr "" +#: ../../Zotlabs/Module/Admin.php:901 +#, php-format +msgid "%s account blocked/unblocked" +msgid_plural "%s account blocked/unblocked" +msgstr[0] "" +msgstr[1] "" -#: ../../Zotlabs/Module/Ping.php:346 -msgid "[today]" -msgstr "" +#: ../../Zotlabs/Module/Admin.php:908 +#, php-format +msgid "%s account deleted" +msgid_plural "%s accounts deleted" +msgstr[0] "" +msgstr[1] "" -#: ../../Zotlabs/Module/Ping.php:355 -msgid "posted an event" +#: ../../Zotlabs/Module/Admin.php:944 +msgid "Account not found" msgstr "" -#: ../../Zotlabs/Module/Poke.php:168 ../../Zotlabs/Lib/Apps.php:226 -#: ../../include/conversation.php:960 -msgid "Poke" +#: ../../Zotlabs/Module/Admin.php:955 +#, php-format +msgid "Account '%s' deleted" msgstr "" -#: ../../Zotlabs/Module/Poke.php:169 -msgid "Poke somebody" +#: ../../Zotlabs/Module/Admin.php:963 +#, php-format +msgid "Account '%s' blocked" msgstr "" -#: ../../Zotlabs/Module/Poke.php:172 -msgid "Poke/Prod" +#: ../../Zotlabs/Module/Admin.php:971 +#, php-format +msgid "Account '%s' unblocked" msgstr "" -#: ../../Zotlabs/Module/Poke.php:173 -msgid "Poke, prod or do other things to somebody" +#: ../../Zotlabs/Module/Admin.php:1031 ../../Zotlabs/Module/Admin.php:1044 +#: ../../include/widgets.php:1383 +msgid "Accounts" msgstr "" -#: ../../Zotlabs/Module/Poke.php:180 -msgid "Recipient" +#: ../../Zotlabs/Module/Admin.php:1033 ../../Zotlabs/Module/Admin.php:1212 +msgid "select all" msgstr "" -#: ../../Zotlabs/Module/Poke.php:181 -msgid "Choose what you wish to do to recipient" +#: ../../Zotlabs/Module/Admin.php:1034 +msgid "Registrations waiting for confirm" msgstr "" -#: ../../Zotlabs/Module/Poke.php:184 ../../Zotlabs/Module/Poke.php:185 -msgid "Make this post private" +#: ../../Zotlabs/Module/Admin.php:1035 +msgid "Request date" msgstr "" -#: ../../Zotlabs/Module/Probe.php:30 ../../Zotlabs/Module/Probe.php:34 -#, php-format -msgid "Fetching URL returns error: %1$s" +#: ../../Zotlabs/Module/Admin.php:1036 +msgid "No registrations." msgstr "" -#: ../../Zotlabs/Module/Profile_photo.php:179 -msgid "" -"Shift-reload the page or clear browser cache if the new photo does not " -"display immediately." +#: ../../Zotlabs/Module/Admin.php:1038 +msgid "Deny" msgstr "" -#: ../../Zotlabs/Module/Profile_photo.php:367 -msgid "Upload Profile Photo" +#: ../../Zotlabs/Module/Admin.php:1048 ../../include/group.php:267 +msgid "All Channels" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:24 ../../Zotlabs/Module/Profiles.php:189 -#: ../../Zotlabs/Module/Profiles.php:246 ../../Zotlabs/Module/Profiles.php:625 -msgid "Profile not found." +#: ../../Zotlabs/Module/Admin.php:1049 +msgid "Register date" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:44 -msgid "Profile deleted." +#: ../../Zotlabs/Module/Admin.php:1050 +msgid "Last login" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:68 ../../Zotlabs/Module/Profiles.php:104 -msgid "Profile-" +#: ../../Zotlabs/Module/Admin.php:1051 +msgid "Expires" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:89 ../../Zotlabs/Module/Profiles.php:132 -msgid "New profile created." +#: ../../Zotlabs/Module/Admin.php:1052 +msgid "Service Class" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:110 -msgid "Profile unavailable to clone." +#: ../../Zotlabs/Module/Admin.php:1054 +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/Profiles.php:151 -msgid "Profile unavailable to export." +#: ../../Zotlabs/Module/Admin.php:1055 +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/Profiles.php:256 -msgid "Profile Name is required." +#: ../../Zotlabs/Module/Admin.php:1091 +#, php-format +msgid "%s channel censored/uncensored" +msgid_plural "%s channels censored/uncensored" +msgstr[0] "" +msgstr[1] "" + +#: ../../Zotlabs/Module/Admin.php:1100 +#, php-format +msgid "%s channel code allowed/disallowed" +msgid_plural "%s channels code allowed/disallowed" +msgstr[0] "" +msgstr[1] "" + +#: ../../Zotlabs/Module/Admin.php:1106 +#, php-format +msgid "%s channel deleted" +msgid_plural "%s channels deleted" +msgstr[0] "" +msgstr[1] "" + +#: ../../Zotlabs/Module/Admin.php:1126 +msgid "Channel not found" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:427 -msgid "Marital Status" +#: ../../Zotlabs/Module/Admin.php:1136 +#, php-format +msgid "Channel '%s' deleted" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:431 -msgid "Romantic Partner" +#: ../../Zotlabs/Module/Admin.php:1148 +#, php-format +msgid "Channel '%s' censored" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:435 ../../Zotlabs/Module/Profiles.php:736 -msgid "Likes" +#: ../../Zotlabs/Module/Admin.php:1148 +#, php-format +msgid "Channel '%s' uncensored" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:439 ../../Zotlabs/Module/Profiles.php:737 -msgid "Dislikes" +#: ../../Zotlabs/Module/Admin.php:1159 +#, php-format +msgid "Channel '%s' code allowed" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:443 ../../Zotlabs/Module/Profiles.php:744 -msgid "Work/Employment" +#: ../../Zotlabs/Module/Admin.php:1159 +#, php-format +msgid "Channel '%s' code disallowed" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:446 -msgid "Religion" +#: ../../Zotlabs/Module/Admin.php:1210 ../../include/widgets.php:1384 +msgid "Channels" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:450 -msgid "Political Views" +#: ../../Zotlabs/Module/Admin.php:1214 +msgid "Censor" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:458 -msgid "Sexual Preference" +#: ../../Zotlabs/Module/Admin.php:1215 +msgid "Uncensor" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:462 -msgid "Homepage" +#: ../../Zotlabs/Module/Admin.php:1216 +msgid "Allow Code" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:466 -msgid "Interests" +#: ../../Zotlabs/Module/Admin.php:1217 +msgid "Disallow Code" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:560 -msgid "Profile updated." +#: ../../Zotlabs/Module/Admin.php:1218 ../../include/conversation.php:1611 +msgid "Channel" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:644 -msgid "Hide your connections list from viewers of this profile" +#: ../../Zotlabs/Module/Admin.php:1222 +msgid "UID" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:686 -msgid "Edit Profile Details" +#: ../../Zotlabs/Module/Admin.php:1226 +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/Profiles.php:688 -msgid "View this profile" +#: ../../Zotlabs/Module/Admin.php:1227 +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/Profiles.php:689 ../../Zotlabs/Module/Profiles.php:771 -#: ../../include/channel.php:959 -msgid "Edit visibility" +#: ../../Zotlabs/Module/Admin.php:1284 +#, php-format +msgid "Plugin %s disabled." msgstr "" -#: ../../Zotlabs/Module/Profiles.php:690 -msgid "Profile Tools" +#: ../../Zotlabs/Module/Admin.php:1288 +#, php-format +msgid "Plugin %s enabled." msgstr "" -#: ../../Zotlabs/Module/Profiles.php:691 -msgid "Change cover photo" +#: ../../Zotlabs/Module/Admin.php:1298 ../../Zotlabs/Module/Admin.php:1585 +msgid "Disable" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:692 ../../include/channel.php:930 -msgid "Change profile photo" +#: ../../Zotlabs/Module/Admin.php:1301 ../../Zotlabs/Module/Admin.php:1587 +msgid "Enable" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:693 -msgid "Create a new profile using these settings" +#: ../../Zotlabs/Module/Admin.php:1330 ../../Zotlabs/Module/Admin.php:1420 +#: ../../include/widgets.php:1387 +msgid "Plugins" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:694 -msgid "Clone this profile" +#: ../../Zotlabs/Module/Admin.php:1331 ../../Zotlabs/Module/Admin.php:1614 +msgid "Toggle" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:695 -msgid "Delete this profile" +#: ../../Zotlabs/Module/Admin.php:1332 ../../Zotlabs/Module/Admin.php:1615 +#: ../../Zotlabs/Lib/Apps.php:215 ../../include/widgets.php:638 +#: ../../include/nav.php:208 +msgid "Settings" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:696 -msgid "Add profile things" +#: ../../Zotlabs/Module/Admin.php:1339 ../../Zotlabs/Module/Admin.php:1624 +msgid "Author: " msgstr "" -#: ../../Zotlabs/Module/Profiles.php:697 ../../include/conversation.php:1526 -#: ../../include/widgets.php:105 -msgid "Personal" +#: ../../Zotlabs/Module/Admin.php:1340 ../../Zotlabs/Module/Admin.php:1625 +msgid "Maintainer: " msgstr "" -#: ../../Zotlabs/Module/Profiles.php:699 -msgid "Relation" +#: ../../Zotlabs/Module/Admin.php:1341 +msgid "Minimum project version: " msgstr "" -#: ../../Zotlabs/Module/Profiles.php:700 ../../include/datetime.php:48 -msgid "Miscellaneous" +#: ../../Zotlabs/Module/Admin.php:1342 +msgid "Maximum project version: " msgstr "" -#: ../../Zotlabs/Module/Profiles.php:702 -msgid "Import profile from file" +#: ../../Zotlabs/Module/Admin.php:1343 +msgid "Minimum PHP version: " msgstr "" -#: ../../Zotlabs/Module/Profiles.php:703 -msgid "Export profile to file" +#: ../../Zotlabs/Module/Admin.php:1344 +msgid "Requires: " msgstr "" -#: ../../Zotlabs/Module/Profiles.php:704 -msgid "Your gender" +#: ../../Zotlabs/Module/Admin.php:1345 ../../Zotlabs/Module/Admin.php:1425 +msgid "Disabled - version incompatibility" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:705 -msgid "Marital status" +#: ../../Zotlabs/Module/Admin.php:1394 +msgid "Enter the public git repository URL of the plugin repo." msgstr "" -#: ../../Zotlabs/Module/Profiles.php:706 -msgid "Sexual preference" +#: ../../Zotlabs/Module/Admin.php:1395 +msgid "Plugin repo git URL" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:709 -msgid "Profile name" +#: ../../Zotlabs/Module/Admin.php:1396 +msgid "Custom repo name" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:711 -msgid "This is your default profile." +#: ../../Zotlabs/Module/Admin.php:1396 +msgid "(optional)" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:713 -msgid "Your full name" +#: ../../Zotlabs/Module/Admin.php:1397 +msgid "Download Plugin Repo" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:714 -msgid "Title/Description" +#: ../../Zotlabs/Module/Admin.php:1404 +msgid "Install new repo" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:717 -msgid "Street address" +#: ../../Zotlabs/Module/Admin.php:1405 ../../Zotlabs/Lib/Apps.php:330 +msgid "Install" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:718 -msgid "Locality/City" +#: ../../Zotlabs/Module/Admin.php:1427 +msgid "Manage Repos" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:719 -msgid "Region/State" +#: ../../Zotlabs/Module/Admin.php:1428 +msgid "Installed Plugin Repositories" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:720 -msgid "Postal/Zip code" +#: ../../Zotlabs/Module/Admin.php:1429 +msgid "Install a New Plugin Repository" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:721 -msgid "Country" +#: ../../Zotlabs/Module/Admin.php:1435 ../../Zotlabs/Module/Settings.php:77 +#: ../../Zotlabs/Module/Settings.php:616 ../../Zotlabs/Lib/Apps.php:330 +msgid "Update" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:726 -msgid "Who (if applicable)" +#: ../../Zotlabs/Module/Admin.php:1436 +msgid "Switch branch" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:726 -msgid "Examples: cathy123, Cathy Williams, cathy@example.com" +#: ../../Zotlabs/Module/Admin.php:1550 +msgid "No themes found." msgstr "" -#: ../../Zotlabs/Module/Profiles.php:727 -msgid "Since (date)" +#: ../../Zotlabs/Module/Admin.php:1606 +msgid "Screenshot" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:730 -msgid "Tell us about yourself" +#: ../../Zotlabs/Module/Admin.php:1613 ../../Zotlabs/Module/Admin.php:1647 +#: ../../include/widgets.php:1388 +msgid "Themes" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:732 -msgid "Hometown" +#: ../../Zotlabs/Module/Admin.php:1652 +msgid "[Experimental]" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:733 -msgid "Political views" +#: ../../Zotlabs/Module/Admin.php:1653 +msgid "[Unsupported]" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:734 -msgid "Religious views" +#: ../../Zotlabs/Module/Admin.php:1677 +msgid "Log settings updated." msgstr "" -#: ../../Zotlabs/Module/Profiles.php:735 -msgid "Keywords used in directory listings" +#: ../../Zotlabs/Module/Admin.php:1732 ../../include/widgets.php:1409 +#: ../../include/widgets.php:1419 +msgid "Logs" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:735 -msgid "Example: fishing photography software" +#: ../../Zotlabs/Module/Admin.php:1734 +msgid "Clear" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:738 -msgid "Musical interests" +#: ../../Zotlabs/Module/Admin.php:1740 +msgid "Debugging" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:739 -msgid "Books, literature" +#: ../../Zotlabs/Module/Admin.php:1741 +msgid "Log file" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:740 -msgid "Television" +#: ../../Zotlabs/Module/Admin.php:1741 +msgid "" +"Must be writable by web server. Relative to your top-level webserver " +"directory." msgstr "" -#: ../../Zotlabs/Module/Profiles.php:741 -msgid "Film/Dance/Culture/Entertainment" +#: ../../Zotlabs/Module/Admin.php:1742 +msgid "Log level" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:742 -msgid "Hobbies/Interests" +#: ../../Zotlabs/Module/Admin.php:2028 +msgid "New Profile Field" +msgstr "" + +#: ../../Zotlabs/Module/Admin.php:2029 ../../Zotlabs/Module/Admin.php:2049 +msgid "Field nickname" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:743 -msgid "Love/Romance" +#: ../../Zotlabs/Module/Admin.php:2029 ../../Zotlabs/Module/Admin.php:2049 +msgid "System name of field" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:745 -msgid "School/Education" +#: ../../Zotlabs/Module/Admin.php:2030 ../../Zotlabs/Module/Admin.php:2050 +msgid "Input type" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:746 -msgid "Contact information and social networks" +#: ../../Zotlabs/Module/Admin.php:2031 ../../Zotlabs/Module/Admin.php:2051 +msgid "Field Name" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:747 -msgid "My other channels" +#: ../../Zotlabs/Module/Admin.php:2031 ../../Zotlabs/Module/Admin.php:2051 +msgid "Label on profile pages" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:767 ../../include/channel.php:955 -msgid "Profile Image" +#: ../../Zotlabs/Module/Admin.php:2032 ../../Zotlabs/Module/Admin.php:2052 +msgid "Help text" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:777 ../../include/channel.php:937 -#: ../../include/nav.php:88 -msgid "Edit Profiles" +#: ../../Zotlabs/Module/Admin.php:2032 ../../Zotlabs/Module/Admin.php:2052 +msgid "Additional info (optional)" msgstr "" -#: ../../Zotlabs/Module/Profperm.php:34 ../../Zotlabs/Module/Profperm.php:63 -msgid "Invalid profile identifier." +#: ../../Zotlabs/Module/Admin.php:2042 +msgid "Field definition not found" msgstr "" -#: ../../Zotlabs/Module/Profperm.php:115 -msgid "Profile Visibility Editor" +#: ../../Zotlabs/Module/Admin.php:2048 +msgid "Edit Profile Field" msgstr "" -#: ../../Zotlabs/Module/Profperm.php:117 ../../include/channel.php:1249 -msgid "Profile" +#: ../../Zotlabs/Module/Admin.php:2106 ../../include/widgets.php:1390 +msgid "Profile Fields" msgstr "" -#: ../../Zotlabs/Module/Profperm.php:119 -msgid "Click on a contact to add or remove." +#: ../../Zotlabs/Module/Admin.php:2107 +msgid "Basic Profile Fields" msgstr "" -#: ../../Zotlabs/Module/Profperm.php:128 -msgid "Visible To" +#: ../../Zotlabs/Module/Admin.php:2108 +msgid "Advanced Profile Fields" msgstr "" -#: ../../Zotlabs/Module/Pubsites.php:22 ../../include/widgets.php:1268 -msgid "Public Hubs" +#: ../../Zotlabs/Module/Admin.php:2108 +msgid "(In addition to basic fields)" msgstr "" -#: ../../Zotlabs/Module/Pubsites.php:25 -msgid "" -"The listed hubs allow public registration for the $Projectname network. All " -"hubs in the network are interlinked so membership on any of them conveys " -"membership in the network as a whole. Some hubs may require subscription or " -"provide tiered service plans. The hub itself may provide " -"additional details." +#: ../../Zotlabs/Module/Admin.php:2110 +msgid "All available fields" msgstr "" -#: ../../Zotlabs/Module/Pubsites.php:31 -msgid "Hub URL" +#: ../../Zotlabs/Module/Admin.php:2111 +msgid "Custom Fields" msgstr "" -#: ../../Zotlabs/Module/Pubsites.php:31 -msgid "Access Type" +#: ../../Zotlabs/Module/Admin.php:2115 +msgid "Create Custom Field" msgstr "" -#: ../../Zotlabs/Module/Pubsites.php:31 -msgid "Registration Policy" +#: ../../Zotlabs/Module/Appman.php:37 ../../Zotlabs/Module/Appman.php:53 +msgid "App installed." msgstr "" -#: ../../Zotlabs/Module/Pubsites.php:31 -msgid "Stats" +#: ../../Zotlabs/Module/Appman.php:46 +msgid "Malformed app." msgstr "" -#: ../../Zotlabs/Module/Pubsites.php:31 -msgid "Software" +#: ../../Zotlabs/Module/Appman.php:104 +msgid "Embed code" msgstr "" -#: ../../Zotlabs/Module/Pubsites.php:31 ../../Zotlabs/Module/Ratings.php:103 -#: ../../include/conversation.php:959 -msgid "Ratings" +#: ../../Zotlabs/Module/Appman.php:110 ../../include/widgets.php:107 +msgid "Edit App" msgstr "" -#: ../../Zotlabs/Module/Pubsites.php:38 -msgid "Rate" +#: ../../Zotlabs/Module/Appman.php:110 +msgid "Create App" msgstr "" -#: ../../Zotlabs/Module/Rate.php:160 -msgid "Website:" +#: ../../Zotlabs/Module/Appman.php:115 +msgid "Name of app" msgstr "" -#: ../../Zotlabs/Module/Rate.php:163 -#, php-format -msgid "Remote Channel [%s] (not yet known on this site)" +#: ../../Zotlabs/Module/Appman.php:116 +msgid "Location (URL) of app" msgstr "" -#: ../../Zotlabs/Module/Rate.php:164 -msgid "Rating (this information is public)" +#: ../../Zotlabs/Module/Appman.php:118 +msgid "Photo icon URL" msgstr "" -#: ../../Zotlabs/Module/Rate.php:165 -msgid "Optionally explain your rating (this information is public)" +#: ../../Zotlabs/Module/Appman.php:118 +msgid "80 x 80 pixels - optional" msgstr "" -#: ../../Zotlabs/Module/Ratings.php:73 -msgid "No ratings" +#: ../../Zotlabs/Module/Appman.php:119 +msgid "Categories (optional, comma separated list)" msgstr "" -#: ../../Zotlabs/Module/Ratings.php:104 -msgid "Rating: " +#: ../../Zotlabs/Module/Appman.php:120 +msgid "Version ID" msgstr "" -#: ../../Zotlabs/Module/Ratings.php:105 -msgid "Website: " +#: ../../Zotlabs/Module/Appman.php:121 +msgid "Price of app" msgstr "" -#: ../../Zotlabs/Module/Ratings.php:107 -msgid "Description: " +#: ../../Zotlabs/Module/Appman.php:122 +msgid "Location (URL) to purchase app" msgstr "" #: ../../Zotlabs/Module/Rbmark.php:94 @@ -4747,7 +4745,7 @@ msgid "Membership on this site is by invitation only." msgstr "" #: ../../Zotlabs/Module/Register.php:262 ../../include/nav.php:147 -#: ../../boot.php:1677 +#: ../../boot.php:1685 msgid "Register" msgstr "" @@ -6076,8 +6074,8 @@ msgstr "" msgid "post" msgstr "" -#: ../../Zotlabs/Module/Tagger.php:57 ../../include/conversation.php:150 -#: ../../include/text.php:1933 +#: ../../Zotlabs/Module/Tagger.php:57 ../../include/text.php:1948 +#: ../../include/conversation.php:150 msgid "comment" msgstr "" @@ -6231,7 +6229,7 @@ msgid "Source of Item" msgstr "" #: ../../Zotlabs/Module/Webpages.php:184 ../../Zotlabs/Lib/Apps.php:217 -#: ../../include/conversation.php:1685 ../../include/nav.php:106 +#: ../../include/nav.php:106 ../../include/conversation.php:1685 msgid "Webpages" msgstr "" @@ -6252,288 +6250,113 @@ msgid "Xchan Lookup" msgstr "" #: ../../Zotlabs/Module/Xchan.php:13 -msgid "Lookup xchan beginning with (or webbie): " -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:204 -msgid "Site Admin" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:205 -msgid "Bug Report" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:206 -msgid "View Bookmarks" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:207 -msgid "My Chatrooms" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:209 -msgid "Firefox Share" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:210 -msgid "Remote Diagnostics" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:211 ../../include/features.php:89 -msgid "Suggest Channels" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:212 ../../include/nav.php:110 -#: ../../boot.php:1695 -msgid "Login" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:214 ../../include/nav.php:179 -msgid "Grid" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:218 ../../include/nav.php:182 -msgid "Channel Home" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:221 ../../include/conversation.php:1649 -#: ../../include/conversation.php:1652 ../../include/nav.php:201 -msgid "Events" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:222 ../../include/nav.php:167 -msgid "Directory" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:224 ../../include/nav.php:193 -msgid "Mail" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:227 ../../include/nav.php:96 -msgid "Chat" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:229 -msgid "Probe" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:230 -msgid "Suggest" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:231 -msgid "Random Channel" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:232 -msgid "Invite" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:233 ../../include/widgets.php:1384 -msgid "Features" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:235 -msgid "Post" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:335 -msgid "Purchase" -msgstr "" - -#: ../../Zotlabs/Lib/Chatroom.php:27 -msgid "Missing room name" -msgstr "" - -#: ../../Zotlabs/Lib/Chatroom.php:36 -msgid "Duplicate room name" -msgstr "" - -#: ../../Zotlabs/Lib/Chatroom.php:86 ../../Zotlabs/Lib/Chatroom.php:94 -msgid "Invalid room specifier." -msgstr "" - -#: ../../Zotlabs/Lib/Chatroom.php:126 -msgid "Room not found." -msgstr "" - -#: ../../Zotlabs/Lib/Chatroom.php:147 -msgid "Room is full" -msgstr "" - -#: ../../Zotlabs/Lib/ThreadItem.php:85 ../../include/conversation.php:664 -msgid "Private Message" -msgstr "" - -#: ../../Zotlabs/Lib/ThreadItem.php:122 ../../include/conversation.php:656 -msgid "Select" -msgstr "" - -#: ../../Zotlabs/Lib/ThreadItem.php:126 -msgid "Save to Folder" -msgstr "" - -#: ../../Zotlabs/Lib/ThreadItem.php:147 -msgid "I will attend" -msgstr "" - -#: ../../Zotlabs/Lib/ThreadItem.php:147 -msgid "I will not attend" -msgstr "" - -#: ../../Zotlabs/Lib/ThreadItem.php:147 -msgid "I might attend" -msgstr "" - -#: ../../Zotlabs/Lib/ThreadItem.php:157 -msgid "I agree" -msgstr "" - -#: ../../Zotlabs/Lib/ThreadItem.php:157 -msgid "I disagree" -msgstr "" - -#: ../../Zotlabs/Lib/ThreadItem.php:157 -msgid "I abstain" -msgstr "" - -#: ../../Zotlabs/Lib/ThreadItem.php:208 -msgid "Add Star" -msgstr "" - -#: ../../Zotlabs/Lib/ThreadItem.php:209 -msgid "Remove Star" -msgstr "" - -#: ../../Zotlabs/Lib/ThreadItem.php:210 -msgid "Toggle Star Status" -msgstr "" - -#: ../../Zotlabs/Lib/ThreadItem.php:214 -msgid "starred" -msgstr "" - -#: ../../Zotlabs/Lib/ThreadItem.php:224 ../../include/conversation.php:671 -msgid "Message signature validated" -msgstr "" - -#: ../../Zotlabs/Lib/ThreadItem.php:225 ../../include/conversation.php:672 -msgid "Message signature incorrect" +msgid "Lookup xchan beginning with (or webbie): " msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:233 -msgid "Add Tag" +#: ../../Zotlabs/Lib/Apps.php:204 +msgid "Site Admin" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:251 ../../include/taxonomy.php:316 -msgid "like" +#: ../../Zotlabs/Lib/Apps.php:205 +msgid "Bug Report" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:252 ../../include/taxonomy.php:317 -msgid "dislike" +#: ../../Zotlabs/Lib/Apps.php:206 +msgid "View Bookmarks" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:256 -msgid "Share This" +#: ../../Zotlabs/Lib/Apps.php:207 +msgid "My Chatrooms" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:256 -msgid "share" +#: ../../Zotlabs/Lib/Apps.php:209 +msgid "Firefox Share" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:265 -msgid "Delivery Report" +#: ../../Zotlabs/Lib/Apps.php:210 +msgid "Remote Diagnostics" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:283 -#, php-format -msgid "%d comment" -msgid_plural "%d comments" -msgstr[0] "" -msgstr[1] "" - -#: ../../Zotlabs/Lib/ThreadItem.php:312 ../../Zotlabs/Lib/ThreadItem.php:313 -#, php-format -msgid "View %s's profile - %s" +#: ../../Zotlabs/Lib/Apps.php:211 ../../include/features.php:89 +msgid "Suggest Channels" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:316 -msgid "to" +#: ../../Zotlabs/Lib/Apps.php:212 ../../include/nav.php:110 +#: ../../boot.php:1703 +msgid "Login" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:317 -msgid "via" +#: ../../Zotlabs/Lib/Apps.php:214 ../../include/nav.php:179 +msgid "Grid" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:318 -msgid "Wall-to-Wall" +#: ../../Zotlabs/Lib/Apps.php:218 ../../include/nav.php:182 +msgid "Channel Home" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:319 -msgid "via Wall-To-Wall:" +#: ../../Zotlabs/Lib/Apps.php:221 ../../include/nav.php:201 +#: ../../include/conversation.php:1649 ../../include/conversation.php:1652 +msgid "Events" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:331 ../../include/conversation.php:719 -#, php-format -msgid "from %s" +#: ../../Zotlabs/Lib/Apps.php:222 ../../include/nav.php:167 +msgid "Directory" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:334 ../../include/conversation.php:722 -#, php-format -msgid "last edited: %s" +#: ../../Zotlabs/Lib/Apps.php:224 ../../include/nav.php:193 +msgid "Mail" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:335 ../../include/conversation.php:723 -#, php-format -msgid "Expires: %s" +#: ../../Zotlabs/Lib/Apps.php:227 ../../include/nav.php:96 +msgid "Chat" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:359 -msgid "Save Bookmarks" +#: ../../Zotlabs/Lib/Apps.php:229 +msgid "Probe" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:360 -msgid "Add to Calendar" +#: ../../Zotlabs/Lib/Apps.php:230 +msgid "Suggest" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:369 -msgid "Mark all seen" +#: ../../Zotlabs/Lib/Apps.php:231 +msgid "Random Channel" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:410 ../../include/js_strings.php:7 -msgid "[+] show all" +#: ../../Zotlabs/Lib/Apps.php:232 +msgid "Invite" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:700 ../../include/conversation.php:1215 -msgid "Bold" +#: ../../Zotlabs/Lib/Apps.php:233 ../../include/widgets.php:1386 +msgid "Features" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:701 ../../include/conversation.php:1216 -msgid "Italic" +#: ../../Zotlabs/Lib/Apps.php:235 +msgid "Post" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:702 ../../include/conversation.php:1217 -msgid "Underline" +#: ../../Zotlabs/Lib/Apps.php:335 +msgid "Purchase" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:703 ../../include/conversation.php:1218 -msgid "Quote" +#: ../../Zotlabs/Lib/Chatroom.php:27 +msgid "Missing room name" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:704 ../../include/conversation.php:1219 -msgid "Code" +#: ../../Zotlabs/Lib/Chatroom.php:36 +msgid "Duplicate room name" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:705 -msgid "Image" +#: ../../Zotlabs/Lib/Chatroom.php:86 ../../Zotlabs/Lib/Chatroom.php:94 +msgid "Invalid room specifier." msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:706 -msgid "Insert Link" +#: ../../Zotlabs/Lib/Chatroom.php:126 +msgid "Room not found." msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:707 -msgid "Video" +#: ../../Zotlabs/Lib/Chatroom.php:147 +msgid "Room is full" msgstr "" #: ../../Zotlabs/Lib/Enotify.php:60 ../../include/network.php:1823 @@ -6740,761 +6563,935 @@ msgstr "" msgid "commented on %s's post" msgstr "" -#: ../../include/Import/import_diaspora.php:16 -msgid "No username found in import file." +#: ../../Zotlabs/Lib/ThreadItem.php:95 ../../include/conversation.php:664 +msgid "Private Message" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:132 ../../include/conversation.php:656 +msgid "Select" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:136 +msgid "Save to Folder" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:157 +msgid "I will attend" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:157 +msgid "I will not attend" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:157 +msgid "I might attend" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:167 +msgid "I agree" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:167 +msgid "I disagree" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:167 +msgid "I abstain" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:218 +msgid "Add Star" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:219 +msgid "Remove Star" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:220 +msgid "Toggle Star Status" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:224 +msgid "starred" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:234 ../../include/conversation.php:671 +msgid "Message signature validated" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:235 ../../include/conversation.php:672 +msgid "Message signature incorrect" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:243 +msgid "Add Tag" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:261 ../../include/taxonomy.php:316 +msgid "like" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:262 ../../include/taxonomy.php:317 +msgid "dislike" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:266 +msgid "Share This" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:266 +msgid "share" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:275 +msgid "Delivery Report" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:293 +#, php-format +msgid "%d comment" +msgid_plural "%d comments" +msgstr[0] "" +msgstr[1] "" + +#: ../../Zotlabs/Lib/ThreadItem.php:322 ../../Zotlabs/Lib/ThreadItem.php:323 +#, php-format +msgid "View %s's profile - %s" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:326 +msgid "to" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:327 +msgid "via" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:328 +msgid "Wall-to-Wall" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:329 +msgid "via Wall-To-Wall:" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:341 ../../include/conversation.php:719 +#, php-format +msgid "from %s" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:344 ../../include/conversation.php:722 +#, php-format +msgid "last edited: %s" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:345 ../../include/conversation.php:723 +#, php-format +msgid "Expires: %s" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:370 +msgid "Save Bookmarks" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:371 +msgid "Add to Calendar" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:380 +msgid "Mark all seen" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:421 ../../include/js_strings.php:7 +msgid "[+] show all" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:711 ../../include/conversation.php:1215 +msgid "Bold" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:712 ../../include/conversation.php:1216 +msgid "Italic" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:713 ../../include/conversation.php:1217 +msgid "Underline" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:714 ../../include/conversation.php:1218 +msgid "Quote" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:715 ../../include/conversation.php:1219 +msgid "Code" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:716 +msgid "Image" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:717 +msgid "Insert Link" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:718 +msgid "Video" +msgstr "" + +#: ../../include/Import/import_diaspora.php:16 +msgid "No username found in import file." +msgstr "" + +#: ../../include/Import/import_diaspora.php:41 ../../include/import.php:50 +msgid "Unable to create a unique channel address. Import failed." +msgstr "" + +#: ../../include/dba/dba_driver.php:171 +#, php-format +msgid "Cannot locate DNS info for database server '%s'" +msgstr "" + +#: ../../include/taxonomy.php:188 ../../include/taxonomy.php:270 +#: ../../include/widgets.php:46 ../../include/widgets.php:429 +#: ../../include/contact_widgets.php:91 +msgid "Categories" +msgstr "" + +#: ../../include/taxonomy.php:228 ../../include/taxonomy.php:249 +msgid "Tags" +msgstr "" + +#: ../../include/taxonomy.php:293 +msgid "Keywords" +msgstr "" + +#: ../../include/taxonomy.php:314 +msgid "have" +msgstr "" + +#: ../../include/taxonomy.php:314 +msgid "has" +msgstr "" + +#: ../../include/taxonomy.php:315 +msgid "want" msgstr "" -#: ../../include/Import/import_diaspora.php:41 ../../include/import.php:50 -msgid "Unable to create a unique channel address. Import failed." +#: ../../include/taxonomy.php:315 +msgid "wants" msgstr "" -#: ../../include/dba/dba_driver.php:171 -#, php-format -msgid "Cannot locate DNS info for database server '%s'" +#: ../../include/taxonomy.php:316 +msgid "likes" msgstr "" -#: ../../include/network.php:657 -msgid "view full size" +#: ../../include/taxonomy.php:317 +msgid "dislikes" msgstr "" -#: ../../include/network.php:1871 ../../include/account.php:317 -#: ../../include/account.php:344 ../../include/account.php:404 -msgid "Administrator" +#: ../../include/event.php:22 ../../include/event.php:69 +#: ../../include/bb2diaspora.php:485 +msgid "l F d, Y \\@ g:i A" msgstr "" -#: ../../include/network.php:1885 -msgid "No Subject" +#: ../../include/event.php:30 ../../include/event.php:73 +#: ../../include/bb2diaspora.php:491 +msgid "Starts:" msgstr "" -#: ../../include/network.php:2146 ../../include/network.php:2147 -msgid "Friendica" +#: ../../include/event.php:40 ../../include/event.php:77 +#: ../../include/bb2diaspora.php:499 +msgid "Finishes:" msgstr "" -#: ../../include/network.php:2148 -msgid "OStatus" +#: ../../include/event.php:812 +msgid "This event has been added to your calendar." msgstr "" -#: ../../include/network.php:2149 -msgid "GNU-Social" +#: ../../include/event.php:1012 +msgid "Not specified" msgstr "" -#: ../../include/network.php:2150 -msgid "RSS/Atom" +#: ../../include/event.php:1013 +msgid "Needs Action" msgstr "" -#: ../../include/network.php:2152 -msgid "Diaspora" +#: ../../include/event.php:1014 +msgid "Completed" msgstr "" -#: ../../include/network.php:2153 -msgid "Facebook" +#: ../../include/event.php:1015 +msgid "In Process" msgstr "" -#: ../../include/network.php:2154 -msgid "Zot" +#: ../../include/event.php:1016 +msgid "Cancelled" msgstr "" -#: ../../include/network.php:2155 -msgid "LinkedIn" +#: ../../include/import.php:29 +msgid "" +"Cannot create a duplicate channel identifier on this system. Import failed." msgstr "" -#: ../../include/network.php:2156 -msgid "XMPP/IM" +#: ../../include/import.php:76 +msgid "Channel clone failed. Import failed." msgstr "" -#: ../../include/network.php:2157 -msgid "MySpace" +#: ../../include/items.php:892 ../../include/items.php:937 +msgid "(Unknown)" msgstr "" -#: ../../include/photos.php:110 -#, php-format -msgid "Image exceeds website size limit of %lu bytes" +#: ../../include/items.php:1136 +msgid "Visible to anybody on the internet." msgstr "" -#: ../../include/photos.php:117 -msgid "Image file is empty." +#: ../../include/items.php:1138 +msgid "Visible to you only." msgstr "" -#: ../../include/photos.php:255 -msgid "Photo storage failed." +#: ../../include/items.php:1140 +msgid "Visible to anybody in this network." msgstr "" -#: ../../include/photos.php:295 -msgid "a new photo" +#: ../../include/items.php:1142 +msgid "Visible to anybody authenticated." msgstr "" -#: ../../include/photos.php:299 +#: ../../include/items.php:1144 #, php-format -msgctxt "photo_upload" -msgid "%1$s posted %2$s to %3$s" +msgid "Visible to anybody on %s." msgstr "" -#: ../../include/photos.php:504 ../../include/conversation.php:1635 -msgid "Photo Albums" +#: ../../include/items.php:1146 +msgid "Visible to all connections." msgstr "" -#: ../../include/photos.php:508 -msgid "Upload New Photos" +#: ../../include/items.php:1148 +msgid "Visible to approved connections." msgstr "" -#: ../../include/connections.php:95 -msgid "New window" +#: ../../include/items.php:1150 +msgid "Visible to specific connections." msgstr "" -#: ../../include/connections.php:96 -msgid "Open the selected location in a different window or browser tab" +#: ../../include/items.php:3909 +msgid "Privacy group is empty." msgstr "" -#: ../../include/connections.php:214 +#: ../../include/items.php:3916 #, php-format -msgid "User '%s' deleted" +msgid "Privacy group: %s" msgstr "" -#: ../../include/oembed.php:324 -msgid "Embedded content" +#: ../../include/items.php:3928 +msgid "Connection not found." msgstr "" -#: ../../include/oembed.php:333 -msgid "Embedding disabled" +#: ../../include/items.php:4277 +msgid "profile photo" msgstr "" -#: ../../include/contact_widgets.php:11 -#, php-format -msgid "%d invitation available" -msgid_plural "%d invitations available" -msgstr[0] "" -msgstr[1] "" +#: ../../include/message.php:20 +msgid "No recipient provided." +msgstr "" -#: ../../include/contact_widgets.php:19 -msgid "Find Channels" +#: ../../include/message.php:25 +msgid "[no subject]" msgstr "" -#: ../../include/contact_widgets.php:20 -msgid "Enter name or interest" +#: ../../include/message.php:45 +msgid "Unable to determine sender." msgstr "" -#: ../../include/contact_widgets.php:21 -msgid "Connect/Follow" +#: ../../include/message.php:222 +msgid "Stored post could not be verified." msgstr "" -#: ../../include/contact_widgets.php:22 -msgid "Examples: Robert Morgenstein, Fishing" +#: ../../include/text.php:428 +msgid "prev" msgstr "" -#: ../../include/contact_widgets.php:26 -msgid "Random Profile" +#: ../../include/text.php:430 +msgid "first" msgstr "" -#: ../../include/contact_widgets.php:27 -msgid "Invite Friends" +#: ../../include/text.php:459 +msgid "last" msgstr "" -#: ../../include/contact_widgets.php:29 -msgid "Advanced example: name=fred and country=iceland" +#: ../../include/text.php:462 +msgid "next" msgstr "" -#: ../../include/contact_widgets.php:53 ../../include/widgets.php:310 -#: ../../include/features.php:97 -msgid "Saved Folders" +#: ../../include/text.php:472 +msgid "older" msgstr "" -#: ../../include/contact_widgets.php:56 ../../include/contact_widgets.php:94 -#: ../../include/widgets.php:313 ../../include/widgets.php:432 -msgid "Everything" +#: ../../include/text.php:474 +msgid "newer" msgstr "" -#: ../../include/contact_widgets.php:91 ../../include/widgets.php:46 -#: ../../include/widgets.php:429 ../../include/taxonomy.php:188 -#: ../../include/taxonomy.php:270 -msgid "Categories" +#: ../../include/text.php:863 +msgid "No connections" msgstr "" -#: ../../include/contact_widgets.php:122 +#: ../../include/text.php:888 #, php-format -msgid "%d connection in common" -msgid_plural "%d connections in common" -msgstr[0] "" -msgstr[1] "" +msgid "View all %s connections" +msgstr "" -#: ../../include/contact_widgets.php:127 -msgid "show more" +#: ../../include/text.php:1033 ../../include/text.php:1038 +msgid "poke" msgstr "" -#: ../../include/conversation.php:204 -#, php-format -msgid "%1$s is now connected with %2$s" +#: ../../include/text.php:1033 ../../include/text.php:1038 +#: ../../include/conversation.php:243 +msgid "poked" msgstr "" -#: ../../include/conversation.php:239 -#, php-format -msgid "%1$s poked %2$s" +#: ../../include/text.php:1039 +msgid "ping" msgstr "" -#: ../../include/conversation.php:243 ../../include/text.php:1033 -#: ../../include/text.php:1038 -msgid "poked" +#: ../../include/text.php:1039 +msgid "pinged" msgstr "" -#: ../../include/conversation.php:691 -#, php-format -msgid "View %s's profile @ %s" +#: ../../include/text.php:1040 +msgid "prod" msgstr "" -#: ../../include/conversation.php:710 -msgid "Categories:" +#: ../../include/text.php:1040 +msgid "prodded" msgstr "" -#: ../../include/conversation.php:711 -msgid "Filed under:" +#: ../../include/text.php:1041 +msgid "slap" msgstr "" -#: ../../include/conversation.php:738 -msgid "View in context" +#: ../../include/text.php:1041 +msgid "slapped" msgstr "" -#: ../../include/conversation.php:847 -msgid "remove" +#: ../../include/text.php:1042 +msgid "finger" msgstr "" -#: ../../include/conversation.php:851 ../../include/nav.php:247 -msgid "Loading..." +#: ../../include/text.php:1042 +msgid "fingered" msgstr "" -#: ../../include/conversation.php:852 -msgid "Delete Selected Items" +#: ../../include/text.php:1043 +msgid "rebuff" msgstr "" -#: ../../include/conversation.php:948 -msgid "View Source" +#: ../../include/text.php:1043 +msgid "rebuffed" msgstr "" -#: ../../include/conversation.php:949 -msgid "Follow Thread" +#: ../../include/text.php:1055 +msgid "happy" msgstr "" -#: ../../include/conversation.php:950 -msgid "Unfollow Thread" +#: ../../include/text.php:1056 +msgid "sad" msgstr "" -#: ../../include/conversation.php:955 -msgid "Activity/Posts" +#: ../../include/text.php:1057 +msgid "mellow" msgstr "" -#: ../../include/conversation.php:957 -msgid "Edit Connection" +#: ../../include/text.php:1058 +msgid "tired" msgstr "" -#: ../../include/conversation.php:958 -msgid "Message" +#: ../../include/text.php:1059 +msgid "perky" msgstr "" -#: ../../include/conversation.php:1075 -#, php-format -msgid "%s likes this." +#: ../../include/text.php:1060 +msgid "angry" msgstr "" -#: ../../include/conversation.php:1075 -#, php-format -msgid "%s doesn't like this." +#: ../../include/text.php:1061 +msgid "stupefied" msgstr "" -#: ../../include/conversation.php:1079 -#, php-format -msgid "%2$d people like this." -msgid_plural "%2$d people like this." -msgstr[0] "" -msgstr[1] "" +#: ../../include/text.php:1062 +msgid "puzzled" +msgstr "" -#: ../../include/conversation.php:1081 -#, php-format -msgid "%2$d people don't like this." -msgid_plural "%2$d people don't like this." -msgstr[0] "" -msgstr[1] "" +#: ../../include/text.php:1063 +msgid "interested" +msgstr "" -#: ../../include/conversation.php:1087 -msgid "and" +#: ../../include/text.php:1064 +msgid "bitter" msgstr "" -#: ../../include/conversation.php:1090 -#, php-format -msgid ", and %d other people" -msgid_plural ", and %d other people" -msgstr[0] "" -msgstr[1] "" +#: ../../include/text.php:1065 +msgid "cheerful" +msgstr "" -#: ../../include/conversation.php:1091 -#, php-format -msgid "%s like this." +#: ../../include/text.php:1066 +msgid "alive" msgstr "" -#: ../../include/conversation.php:1091 -#, php-format -msgid "%s don't like this." +#: ../../include/text.php:1067 +msgid "annoyed" msgstr "" -#: ../../include/conversation.php:1130 -msgid "Set your location" +#: ../../include/text.php:1068 +msgid "anxious" msgstr "" -#: ../../include/conversation.php:1131 -msgid "Clear browser location" +#: ../../include/text.php:1069 +msgid "cranky" msgstr "" -#: ../../include/conversation.php:1177 -msgid "Tag term:" +#: ../../include/text.php:1070 +msgid "disturbed" msgstr "" -#: ../../include/conversation.php:1178 -msgid "Where are you right now?" +#: ../../include/text.php:1071 +msgid "frustrated" msgstr "" -#: ../../include/conversation.php:1210 -msgid "Page link name" +#: ../../include/text.php:1072 +msgid "depressed" msgstr "" -#: ../../include/conversation.php:1213 -msgid "Post as" +#: ../../include/text.php:1073 +msgid "motivated" msgstr "" -#: ../../include/conversation.php:1223 -msgid "Toggle voting" +#: ../../include/text.php:1074 +msgid "relaxed" msgstr "" -#: ../../include/conversation.php:1231 -msgid "Categories (optional, comma-separated list)" +#: ../../include/text.php:1075 +msgid "surprised" msgstr "" -#: ../../include/conversation.php:1254 -msgid "Set publish date" +#: ../../include/text.php:1257 ../../include/js_strings.php:70 +msgid "Monday" msgstr "" -#: ../../include/conversation.php:1258 -msgid "OK" +#: ../../include/text.php:1257 ../../include/js_strings.php:71 +msgid "Tuesday" msgstr "" -#: ../../include/conversation.php:1503 -msgid "Discover" +#: ../../include/text.php:1257 ../../include/js_strings.php:72 +msgid "Wednesday" msgstr "" -#: ../../include/conversation.php:1506 -msgid "Imported public streams" +#: ../../include/text.php:1257 ../../include/js_strings.php:73 +msgid "Thursday" msgstr "" -#: ../../include/conversation.php:1511 -msgid "Commented Order" +#: ../../include/text.php:1257 ../../include/js_strings.php:74 +msgid "Friday" msgstr "" -#: ../../include/conversation.php:1514 -msgid "Sort by Comment Date" +#: ../../include/text.php:1257 ../../include/js_strings.php:75 +msgid "Saturday" msgstr "" -#: ../../include/conversation.php:1518 -msgid "Posted Order" +#: ../../include/text.php:1257 ../../include/js_strings.php:69 +msgid "Sunday" msgstr "" -#: ../../include/conversation.php:1521 -msgid "Sort by Post Date" +#: ../../include/text.php:1261 ../../include/js_strings.php:45 +msgid "January" msgstr "" -#: ../../include/conversation.php:1529 -msgid "Posts that mention or involve you" +#: ../../include/text.php:1261 ../../include/js_strings.php:46 +msgid "February" msgstr "" -#: ../../include/conversation.php:1538 -msgid "Activity Stream - by date" +#: ../../include/text.php:1261 ../../include/js_strings.php:47 +msgid "March" msgstr "" -#: ../../include/conversation.php:1544 -msgid "Starred" +#: ../../include/text.php:1261 ../../include/js_strings.php:48 +msgid "April" msgstr "" -#: ../../include/conversation.php:1547 -msgid "Favourite Posts" +#: ../../include/text.php:1261 +msgid "May" msgstr "" -#: ../../include/conversation.php:1554 -msgid "Spam" +#: ../../include/text.php:1261 ../../include/js_strings.php:50 +msgid "June" msgstr "" -#: ../../include/conversation.php:1557 -msgid "Posts flagged as SPAM" +#: ../../include/text.php:1261 ../../include/js_strings.php:51 +msgid "July" msgstr "" -#: ../../include/conversation.php:1614 -msgid "Status Messages and Posts" +#: ../../include/text.php:1261 ../../include/js_strings.php:52 +msgid "August" msgstr "" -#: ../../include/conversation.php:1623 -msgid "About" +#: ../../include/text.php:1261 ../../include/js_strings.php:53 +msgid "September" msgstr "" -#: ../../include/conversation.php:1626 -msgid "Profile Details" +#: ../../include/text.php:1261 ../../include/js_strings.php:54 +msgid "October" msgstr "" -#: ../../include/conversation.php:1642 -msgid "Files and Storage" +#: ../../include/text.php:1261 ../../include/js_strings.php:55 +msgid "November" msgstr "" -#: ../../include/conversation.php:1662 ../../include/conversation.php:1665 -#: ../../include/widgets.php:840 -msgid "Chatrooms" +#: ../../include/text.php:1261 ../../include/js_strings.php:56 +msgid "December" msgstr "" -#: ../../include/conversation.php:1675 ../../include/nav.php:102 -msgid "Bookmarks" +#: ../../include/text.php:1338 ../../include/text.php:1342 +msgid "Unknown Attachment" msgstr "" -#: ../../include/conversation.php:1678 -msgid "Saved Bookmarks" +#: ../../include/text.php:1344 +msgid "unknown" msgstr "" -#: ../../include/conversation.php:1688 -msgid "Manage Webpages" +#: ../../include/text.php:1380 +msgid "remove category" msgstr "" -#: ../../include/conversation.php:1747 -msgctxt "noun" -msgid "Attending" -msgid_plural "Attending" -msgstr[0] "" -msgstr[1] "" +#: ../../include/text.php:1457 +msgid "remove from file" +msgstr "" -#: ../../include/conversation.php:1750 -msgctxt "noun" -msgid "Not Attending" -msgid_plural "Not Attending" -msgstr[0] "" -msgstr[1] "" +#: ../../include/text.php:1753 ../../include/text.php:1824 +msgid "default" +msgstr "" -#: ../../include/conversation.php:1753 -msgctxt "noun" -msgid "Undecided" -msgid_plural "Undecided" -msgstr[0] "" -msgstr[1] "" +#: ../../include/text.php:1761 +msgid "Page layout" +msgstr "" -#: ../../include/conversation.php:1756 -msgctxt "noun" -msgid "Agree" -msgid_plural "Agrees" -msgstr[0] "" -msgstr[1] "" +#: ../../include/text.php:1761 +msgid "You can create your own with the layouts tool" +msgstr "" -#: ../../include/conversation.php:1759 -msgctxt "noun" -msgid "Disagree" -msgid_plural "Disagrees" -msgstr[0] "" -msgstr[1] "" +#: ../../include/text.php:1803 +msgid "Page content type" +msgstr "" -#: ../../include/conversation.php:1762 -msgctxt "noun" -msgid "Abstain" -msgid_plural "Abstains" -msgstr[0] "" -msgstr[1] "" +#: ../../include/text.php:1836 +msgid "Select an alternate language" +msgstr "" -#: ../../include/event.php:22 ../../include/event.php:69 -#: ../../include/bb2diaspora.php:485 -msgid "l F d, Y \\@ g:i A" +#: ../../include/text.php:1953 +msgid "activity" msgstr "" -#: ../../include/event.php:30 ../../include/event.php:73 -#: ../../include/bb2diaspora.php:491 -msgid "Starts:" +#: ../../include/text.php:2262 +msgid "Design Tools" msgstr "" -#: ../../include/event.php:40 ../../include/event.php:77 -#: ../../include/bb2diaspora.php:499 -msgid "Finishes:" +#: ../../include/text.php:2268 +msgid "Pages" msgstr "" -#: ../../include/event.php:812 -msgid "This event has been added to your calendar." +#: ../../include/widgets.php:103 +msgid "System" msgstr "" -#: ../../include/event.php:1012 -msgid "Not specified" +#: ../../include/widgets.php:106 +msgid "New App" msgstr "" -#: ../../include/event.php:1013 -msgid "Needs Action" +#: ../../include/widgets.php:154 +msgid "Suggestions" msgstr "" -#: ../../include/event.php:1014 -msgid "Completed" +#: ../../include/widgets.php:155 +msgid "See more..." msgstr "" -#: ../../include/event.php:1015 -msgid "In Process" +#: ../../include/widgets.php:175 +#, php-format +msgid "You have %1$.0f of %2$.0f allowed connections." msgstr "" -#: ../../include/event.php:1016 -msgid "Cancelled" +#: ../../include/widgets.php:181 +msgid "Add New Connection" msgstr "" -#: ../../include/message.php:20 -msgid "No recipient provided." +#: ../../include/widgets.php:182 +msgid "Enter channel address" msgstr "" -#: ../../include/message.php:25 -msgid "[no subject]" +#: ../../include/widgets.php:183 +msgid "Examples: bob@example.com, https://example.com/barbara" msgstr "" -#: ../../include/message.php:45 -msgid "Unable to determine sender." +#: ../../include/widgets.php:199 +msgid "Notes" msgstr "" -#: ../../include/message.php:222 -msgid "Stored post could not be verified." +#: ../../include/widgets.php:273 +msgid "Remove term" msgstr "" -#: ../../include/selectors.php:30 -msgid "Frequently" +#: ../../include/widgets.php:281 ../../include/features.php:84 +msgid "Saved Searches" msgstr "" -#: ../../include/selectors.php:31 -msgid "Hourly" +#: ../../include/widgets.php:282 ../../include/group.php:316 +msgid "add" msgstr "" -#: ../../include/selectors.php:32 -msgid "Twice daily" +#: ../../include/widgets.php:310 ../../include/contact_widgets.php:53 +#: ../../include/features.php:98 +msgid "Saved Folders" msgstr "" -#: ../../include/selectors.php:33 -msgid "Daily" +#: ../../include/widgets.php:313 ../../include/widgets.php:432 +#: ../../include/contact_widgets.php:56 ../../include/contact_widgets.php:94 +msgid "Everything" msgstr "" -#: ../../include/selectors.php:34 -msgid "Weekly" +#: ../../include/widgets.php:354 +msgid "Archives" +msgstr "" + +#: ../../include/widgets.php:516 +msgid "Refresh" +msgstr "" + +#: ../../include/widgets.php:556 +msgid "Account settings" msgstr "" -#: ../../include/selectors.php:35 -msgid "Monthly" +#: ../../include/widgets.php:562 +msgid "Channel settings" msgstr "" -#: ../../include/selectors.php:49 -msgid "Currently Male" +#: ../../include/widgets.php:571 +msgid "Additional features" msgstr "" -#: ../../include/selectors.php:49 -msgid "Currently Female" +#: ../../include/widgets.php:578 +msgid "Feature/Addon settings" msgstr "" -#: ../../include/selectors.php:49 -msgid "Mostly Male" +#: ../../include/widgets.php:584 +msgid "Display settings" msgstr "" -#: ../../include/selectors.php:49 -msgid "Mostly Female" +#: ../../include/widgets.php:591 +msgid "Manage locations" msgstr "" -#: ../../include/selectors.php:49 -msgid "Transgender" +#: ../../include/widgets.php:600 +msgid "Export channel" msgstr "" -#: ../../include/selectors.php:49 -msgid "Intersex" +#: ../../include/widgets.php:607 +msgid "Connected apps" msgstr "" -#: ../../include/selectors.php:49 -msgid "Transsexual" +#: ../../include/widgets.php:622 +msgid "Premium Channel Settings" msgstr "" -#: ../../include/selectors.php:49 -msgid "Hermaphrodite" +#: ../../include/widgets.php:651 +msgid "Private Mail Menu" msgstr "" -#: ../../include/selectors.php:49 -msgid "Neuter" +#: ../../include/widgets.php:653 +msgid "Combined View" msgstr "" -#: ../../include/selectors.php:49 -msgid "Non-specific" +#: ../../include/widgets.php:658 ../../include/nav.php:196 +msgid "Inbox" msgstr "" -#: ../../include/selectors.php:49 ../../include/selectors.php:66 -#: ../../include/selectors.php:104 ../../include/selectors.php:140 -#: ../../include/permissions.php:881 -msgid "Other" +#: ../../include/widgets.php:663 ../../include/nav.php:197 +msgid "Outbox" msgstr "" -#: ../../include/selectors.php:49 -msgid "Undecided" +#: ../../include/widgets.php:668 ../../include/nav.php:198 +msgid "New Message" msgstr "" -#: ../../include/selectors.php:85 ../../include/selectors.php:104 -msgid "Males" +#: ../../include/widgets.php:685 ../../include/widgets.php:697 +msgid "Conversations" msgstr "" -#: ../../include/selectors.php:85 ../../include/selectors.php:104 -msgid "Females" +#: ../../include/widgets.php:689 +msgid "Received Messages" msgstr "" -#: ../../include/selectors.php:85 -msgid "Gay" +#: ../../include/widgets.php:693 +msgid "Sent Messages" msgstr "" -#: ../../include/selectors.php:85 -msgid "Lesbian" +#: ../../include/widgets.php:707 +msgid "No messages." msgstr "" -#: ../../include/selectors.php:85 -msgid "No Preference" +#: ../../include/widgets.php:725 +msgid "Delete conversation" msgstr "" -#: ../../include/selectors.php:85 -msgid "Bisexual" +#: ../../include/widgets.php:751 +msgid "Events Menu" msgstr "" -#: ../../include/selectors.php:85 -msgid "Autosexual" +#: ../../include/widgets.php:752 +msgid "Day View" msgstr "" -#: ../../include/selectors.php:85 -msgid "Abstinent" +#: ../../include/widgets.php:753 +msgid "Week View" msgstr "" -#: ../../include/selectors.php:85 -msgid "Virgin" +#: ../../include/widgets.php:754 +msgid "Month View" msgstr "" -#: ../../include/selectors.php:85 -msgid "Deviant" +#: ../../include/widgets.php:766 +msgid "Events Tools" msgstr "" -#: ../../include/selectors.php:85 -msgid "Fetish" +#: ../../include/widgets.php:767 +msgid "Export Calendar" msgstr "" -#: ../../include/selectors.php:85 -msgid "Oodles" +#: ../../include/widgets.php:768 +msgid "Import Calendar" msgstr "" -#: ../../include/selectors.php:85 -msgid "Nonsexual" +#: ../../include/widgets.php:842 ../../include/conversation.php:1662 +#: ../../include/conversation.php:1665 +msgid "Chatrooms" msgstr "" -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "Single" +#: ../../include/widgets.php:846 +msgid "Overview" msgstr "" -#: ../../include/selectors.php:123 -msgid "Lonely" +#: ../../include/widgets.php:853 +msgid "Chat Members" msgstr "" -#: ../../include/selectors.php:123 -msgid "Available" +#: ../../include/widgets.php:876 +msgid "Bookmarked Chatrooms" msgstr "" -#: ../../include/selectors.php:123 -msgid "Unavailable" +#: ../../include/widgets.php:899 +msgid "Suggested Chatrooms" msgstr "" -#: ../../include/selectors.php:123 -msgid "Has crush" +#: ../../include/widgets.php:1044 ../../include/widgets.php:1156 +msgid "photo/image" msgstr "" -#: ../../include/selectors.php:123 -msgid "Infatuated" +#: ../../include/widgets.php:1099 +msgid "Click to show more" msgstr "" -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "Dating" +#: ../../include/widgets.php:1250 +msgid "Rating Tools" msgstr "" -#: ../../include/selectors.php:123 -msgid "Unfaithful" +#: ../../include/widgets.php:1254 ../../include/widgets.php:1256 +msgid "Rate Me" msgstr "" -#: ../../include/selectors.php:123 -msgid "Sex Addict" +#: ../../include/widgets.php:1259 +msgid "View Ratings" msgstr "" -#: ../../include/selectors.php:123 -msgid "Friends/Benefits" +#: ../../include/widgets.php:1316 +msgid "Forums" msgstr "" -#: ../../include/selectors.php:123 -msgid "Casual" +#: ../../include/widgets.php:1345 +msgid "Tasks" msgstr "" -#: ../../include/selectors.php:123 -msgid "Engaged" +#: ../../include/widgets.php:1354 +msgid "Documentation" msgstr "" -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "Married" +#: ../../include/widgets.php:1356 +msgid "Project/Site Information" msgstr "" -#: ../../include/selectors.php:123 -msgid "Imaginarily married" +#: ../../include/widgets.php:1357 +msgid "For Members" msgstr "" -#: ../../include/selectors.php:123 -msgid "Partners" +#: ../../include/widgets.php:1358 +msgid "For Administrators" msgstr "" -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "Cohabiting" +#: ../../include/widgets.php:1359 +msgid "For Developers" msgstr "" -#: ../../include/selectors.php:123 -msgid "Common law" +#: ../../include/widgets.php:1383 ../../include/widgets.php:1421 +msgid "Member registrations waiting for confirmation" msgstr "" -#: ../../include/selectors.php:123 -msgid "Happy" +#: ../../include/widgets.php:1389 +msgid "Inspect queue" msgstr "" -#: ../../include/selectors.php:123 -msgid "Not looking" +#: ../../include/widgets.php:1391 +msgid "DB updates" msgstr "" -#: ../../include/selectors.php:123 -msgid "Swinger" +#: ../../include/widgets.php:1416 ../../include/nav.php:216 +msgid "Admin" msgstr "" -#: ../../include/selectors.php:123 -msgid "Betrayed" +#: ../../include/widgets.php:1417 +msgid "Plugin Features" msgstr "" -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "Separated" +#: ../../include/follow.php:27 +msgid "Channel is blocked on this site." msgstr "" -#: ../../include/selectors.php:123 -msgid "Unstable" +#: ../../include/follow.php:32 +msgid "Channel location missing." msgstr "" -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "Divorced" +#: ../../include/follow.php:81 +msgid "Response from remote channel was incomplete." msgstr "" -#: ../../include/selectors.php:123 -msgid "Imaginarily divorced" +#: ../../include/follow.php:98 +msgid "Channel was deleted and no longer exists." msgstr "" -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "Widowed" +#: ../../include/follow.php:154 ../../include/follow.php:190 +msgid "Protocol disabled." msgstr "" -#: ../../include/selectors.php:123 -msgid "Uncertain" +#: ../../include/follow.php:178 +msgid "Channel discovery failed." msgstr "" -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "It's complicated" +#: ../../include/follow.php:216 +msgid "Cannot connect to yourself." msgstr "" -#: ../../include/selectors.php:123 -msgid "Don't care" +#: ../../include/bookmarks.php:35 +#, php-format +msgid "%1$s's bookmarks" msgstr "" -#: ../../include/selectors.php:123 -msgid "Ask me" +#: ../../include/api.php:1336 +msgid "Public Timeline" msgstr "" #: ../../include/bbcode.php:123 ../../include/bbcode.php:844 @@ -7544,773 +7541,829 @@ msgstr "" msgid "$1 wrote:" msgstr "" -#: ../../include/bookmarks.php:35 -#, php-format -msgid "%1$s's bookmarks" +#: ../../include/dir_fns.php:141 +msgid "Directory Options" msgstr "" -#: ../../include/attach.php:247 ../../include/attach.php:333 -msgid "Item was not found." +#: ../../include/dir_fns.php:143 +msgid "Safe Mode" msgstr "" -#: ../../include/attach.php:497 -msgid "No source file." +#: ../../include/dir_fns.php:144 +msgid "Public Forums Only" msgstr "" -#: ../../include/attach.php:519 -msgid "Cannot locate file to replace" +#: ../../include/dir_fns.php:145 +msgid "This Website Only" msgstr "" -#: ../../include/attach.php:537 -msgid "Cannot locate file to revise/update" +#: ../../include/security.php:383 +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/attach.php:672 -#, php-format -msgid "File exceeds size limit of %d" +#: ../../include/nav.php:82 ../../include/nav.php:113 ../../boot.php:1702 +msgid "Logout" msgstr "" -#: ../../include/attach.php:686 -#, php-format -msgid "You have reached your limit of %1$.0f Mbytes attachment storage." +#: ../../include/nav.php:82 ../../include/nav.php:113 +msgid "End this session" +msgstr "" + +#: ../../include/nav.php:85 ../../include/nav.php:144 +msgid "Home" +msgstr "" + +#: ../../include/nav.php:85 +msgid "Your posts and conversations" +msgstr "" + +#: ../../include/nav.php:86 +msgid "Your profile page" +msgstr "" + +#: ../../include/nav.php:88 +msgid "Manage/Edit profiles" msgstr "" -#: ../../include/attach.php:842 -msgid "File upload failed. Possible system limit or action terminated." +#: ../../include/nav.php:90 ../../include/channel.php:941 +msgid "Edit Profile" msgstr "" -#: ../../include/attach.php:855 -msgid "Stored file could not be verified. Upload failed." +#: ../../include/nav.php:90 +msgid "Edit your profile" msgstr "" -#: ../../include/attach.php:909 ../../include/attach.php:925 -msgid "Path not available." +#: ../../include/nav.php:92 +msgid "Your photos" msgstr "" -#: ../../include/attach.php:971 ../../include/attach.php:1123 -msgid "Empty pathname" +#: ../../include/nav.php:93 +msgid "Your files" msgstr "" -#: ../../include/attach.php:997 -msgid "duplicate filename or path" +#: ../../include/nav.php:96 +msgid "Your chatrooms" msgstr "" -#: ../../include/attach.php:1019 -msgid "Path not found." +#: ../../include/nav.php:102 ../../include/conversation.php:1675 +msgid "Bookmarks" msgstr "" -#: ../../include/attach.php:1077 -msgid "mkdir failed." +#: ../../include/nav.php:102 +msgid "Your bookmarks" msgstr "" -#: ../../include/attach.php:1081 -msgid "database storage failed." +#: ../../include/nav.php:106 +msgid "Your webpages" msgstr "" -#: ../../include/attach.php:1129 -msgid "Empty path" +#: ../../include/nav.php:110 +msgid "Sign in" msgstr "" -#: ../../include/channel.php:32 -msgid "Unable to obtain identity information from database" +#: ../../include/nav.php:127 +#, php-format +msgid "%s - click to logout" msgstr "" -#: ../../include/channel.php:66 -msgid "Empty name" +#: ../../include/nav.php:130 +msgid "Remote authentication" msgstr "" -#: ../../include/channel.php:69 -msgid "Name too long" +#: ../../include/nav.php:130 +msgid "Click to authenticate to your home hub" msgstr "" -#: ../../include/channel.php:180 -msgid "No account identifier" +#: ../../include/nav.php:144 +msgid "Home Page" msgstr "" -#: ../../include/channel.php:192 -msgid "Nickname is required." +#: ../../include/nav.php:147 +msgid "Create an account" msgstr "" -#: ../../include/channel.php:206 -msgid "Reserved nickname. Please choose another." +#: ../../include/nav.php:159 +msgid "Help and documentation" msgstr "" -#: ../../include/channel.php:211 -msgid "" -"Nickname has unsupported characters or is already being used on this site." +#: ../../include/nav.php:163 +msgid "Applications, utilities, links, games" msgstr "" -#: ../../include/channel.php:287 -msgid "Unable to retrieve created identity" +#: ../../include/nav.php:165 +msgid "Search site @name, #tag, ?docs, content" msgstr "" -#: ../../include/channel.php:345 -msgid "Default Profile" +#: ../../include/nav.php:167 +msgid "Channel Directory" msgstr "" -#: ../../include/channel.php:791 -msgid "Requested channel is not available." +#: ../../include/nav.php:179 +msgid "Your grid" msgstr "" -#: ../../include/channel.php:938 -msgid "Create New Profile" +#: ../../include/nav.php:180 +msgid "Mark all grid notifications seen" msgstr "" -#: ../../include/channel.php:941 ../../include/nav.php:90 -msgid "Edit Profile" +#: ../../include/nav.php:182 +msgid "Channel home" msgstr "" -#: ../../include/channel.php:958 -msgid "Visible to everybody" +#: ../../include/nav.php:183 +msgid "Mark all channel notifications seen" msgstr "" -#: ../../include/channel.php:1031 ../../include/channel.php:1142 -msgid "Gender:" +#: ../../include/nav.php:189 +msgid "Notices" msgstr "" -#: ../../include/channel.php:1032 ../../include/channel.php:1186 -msgid "Status:" +#: ../../include/nav.php:189 +msgid "Notifications" msgstr "" -#: ../../include/channel.php:1033 ../../include/channel.php:1197 -msgid "Homepage:" +#: ../../include/nav.php:190 +msgid "See all notifications" msgstr "" -#: ../../include/channel.php:1034 -msgid "Online Now" +#: ../../include/nav.php:193 +msgid "Private mail" msgstr "" -#: ../../include/channel.php:1147 -msgid "Like this channel" +#: ../../include/nav.php:194 +msgid "See all private messages" msgstr "" -#: ../../include/channel.php:1171 -msgid "j F, Y" +#: ../../include/nav.php:195 +msgid "Mark all private messages seen" msgstr "" -#: ../../include/channel.php:1172 -msgid "j F" +#: ../../include/nav.php:201 +msgid "Event Calendar" msgstr "" -#: ../../include/channel.php:1179 -msgid "Birthday:" +#: ../../include/nav.php:202 +msgid "See all events" msgstr "" -#: ../../include/channel.php:1192 -#, php-format -msgid "for %1$d %2$s" +#: ../../include/nav.php:203 +msgid "Mark all events seen" msgstr "" -#: ../../include/channel.php:1195 -msgid "Sexual Preference:" +#: ../../include/nav.php:206 +msgid "Manage Your Channels" msgstr "" -#: ../../include/channel.php:1201 -msgid "Tags:" +#: ../../include/nav.php:208 +msgid "Account/Channel Settings" msgstr "" -#: ../../include/channel.php:1203 -msgid "Political Views:" +#: ../../include/nav.php:216 +msgid "Site Setup and Configuration" msgstr "" -#: ../../include/channel.php:1205 -msgid "Religion:" +#: ../../include/nav.php:247 ../../include/conversation.php:851 +msgid "Loading..." msgstr "" -#: ../../include/channel.php:1209 -msgid "Hobbies/Interests:" +#: ../../include/nav.php:252 +msgid "@name, #tag, ?doc, content" msgstr "" -#: ../../include/channel.php:1211 -msgid "Likes:" +#: ../../include/nav.php:253 +msgid "Please wait..." msgstr "" -#: ../../include/channel.php:1213 -msgid "Dislikes:" +#: ../../include/connections.php:95 +msgid "New window" msgstr "" -#: ../../include/channel.php:1215 -msgid "Contact information and Social Networks:" +#: ../../include/connections.php:96 +msgid "Open the selected location in a different window or browser tab" msgstr "" -#: ../../include/channel.php:1217 -msgid "My other channels:" +#: ../../include/connections.php:214 +#, php-format +msgid "User '%s' deleted" msgstr "" -#: ../../include/channel.php:1219 -msgid "Musical interests:" +#: ../../include/contact_widgets.php:11 +#, php-format +msgid "%d invitation available" +msgid_plural "%d invitations available" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/contact_widgets.php:19 +msgid "Find Channels" msgstr "" -#: ../../include/channel.php:1221 -msgid "Books, literature:" +#: ../../include/contact_widgets.php:20 +msgid "Enter name or interest" msgstr "" -#: ../../include/channel.php:1223 -msgid "Television:" +#: ../../include/contact_widgets.php:21 +msgid "Connect/Follow" msgstr "" -#: ../../include/channel.php:1225 -msgid "Film/dance/culture/entertainment:" +#: ../../include/contact_widgets.php:22 +msgid "Examples: Robert Morgenstein, Fishing" msgstr "" -#: ../../include/channel.php:1227 -msgid "Love/Romance:" +#: ../../include/contact_widgets.php:26 +msgid "Random Profile" msgstr "" -#: ../../include/channel.php:1229 -msgid "Work/employment:" +#: ../../include/contact_widgets.php:27 +msgid "Invite Friends" msgstr "" -#: ../../include/channel.php:1231 -msgid "School/education:" +#: ../../include/contact_widgets.php:29 +msgid "Advanced example: name=fred and country=iceland" msgstr "" -#: ../../include/channel.php:1251 -msgid "Like this thing" +#: ../../include/contact_widgets.php:122 +#, php-format +msgid "%d connection in common" +msgid_plural "%d connections in common" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/contact_widgets.php:127 +msgid "show more" msgstr "" -#: ../../include/security.php:383 -msgid "" -"The form security token was not correct. This probably happened because the " -"form has been opened for too long (>3 hours) before submitting it." +#: ../../include/conversation.php:204 +#, php-format +msgid "%1$s is now connected with %2$s" msgstr "" -#: ../../include/nav.php:82 ../../include/nav.php:113 ../../boot.php:1694 -msgid "Logout" +#: ../../include/conversation.php:239 +#, php-format +msgid "%1$s poked %2$s" msgstr "" -#: ../../include/nav.php:82 ../../include/nav.php:113 -msgid "End this session" +#: ../../include/conversation.php:691 +#, php-format +msgid "View %s's profile @ %s" msgstr "" -#: ../../include/nav.php:85 ../../include/nav.php:144 -msgid "Home" +#: ../../include/conversation.php:710 +msgid "Categories:" msgstr "" -#: ../../include/nav.php:85 -msgid "Your posts and conversations" +#: ../../include/conversation.php:711 +msgid "Filed under:" msgstr "" -#: ../../include/nav.php:86 -msgid "Your profile page" +#: ../../include/conversation.php:738 +msgid "View in context" msgstr "" -#: ../../include/nav.php:88 -msgid "Manage/Edit profiles" +#: ../../include/conversation.php:847 +msgid "remove" msgstr "" -#: ../../include/nav.php:90 -msgid "Edit your profile" +#: ../../include/conversation.php:852 +msgid "Delete Selected Items" msgstr "" -#: ../../include/nav.php:92 -msgid "Your photos" +#: ../../include/conversation.php:948 +msgid "View Source" msgstr "" -#: ../../include/nav.php:93 -msgid "Your files" +#: ../../include/conversation.php:949 +msgid "Follow Thread" msgstr "" -#: ../../include/nav.php:96 -msgid "Your chatrooms" +#: ../../include/conversation.php:950 +msgid "Unfollow Thread" msgstr "" -#: ../../include/nav.php:102 -msgid "Your bookmarks" +#: ../../include/conversation.php:955 +msgid "Activity/Posts" msgstr "" -#: ../../include/nav.php:106 -msgid "Your webpages" +#: ../../include/conversation.php:957 +msgid "Edit Connection" msgstr "" -#: ../../include/nav.php:110 -msgid "Sign in" +#: ../../include/conversation.php:958 +msgid "Message" msgstr "" -#: ../../include/nav.php:127 +#: ../../include/conversation.php:1075 #, php-format -msgid "%s - click to logout" +msgid "%s likes this." msgstr "" -#: ../../include/nav.php:130 -msgid "Remote authentication" +#: ../../include/conversation.php:1075 +#, php-format +msgid "%s doesn't like this." msgstr "" -#: ../../include/nav.php:130 -msgid "Click to authenticate to your home hub" -msgstr "" +#: ../../include/conversation.php:1079 +#, php-format +msgid "%2$d people like this." +msgid_plural "%2$d people like this." +msgstr[0] "" +msgstr[1] "" -#: ../../include/nav.php:144 -msgid "Home Page" -msgstr "" +#: ../../include/conversation.php:1081 +#, php-format +msgid "%2$d people don't like this." +msgid_plural "%2$d people don't like this." +msgstr[0] "" +msgstr[1] "" -#: ../../include/nav.php:147 -msgid "Create an account" +#: ../../include/conversation.php:1087 +msgid "and" msgstr "" -#: ../../include/nav.php:159 -msgid "Help and documentation" -msgstr "" +#: ../../include/conversation.php:1090 +#, php-format +msgid ", and %d other people" +msgid_plural ", and %d other people" +msgstr[0] "" +msgstr[1] "" -#: ../../include/nav.php:163 -msgid "Applications, utilities, links, games" +#: ../../include/conversation.php:1091 +#, php-format +msgid "%s like this." msgstr "" -#: ../../include/nav.php:165 -msgid "Search site @name, #tag, ?docs, content" +#: ../../include/conversation.php:1091 +#, php-format +msgid "%s don't like this." msgstr "" -#: ../../include/nav.php:167 -msgid "Channel Directory" +#: ../../include/conversation.php:1130 +msgid "Set your location" msgstr "" -#: ../../include/nav.php:179 -msgid "Your grid" +#: ../../include/conversation.php:1131 +msgid "Clear browser location" msgstr "" -#: ../../include/nav.php:180 -msgid "Mark all grid notifications seen" +#: ../../include/conversation.php:1177 +msgid "Tag term:" msgstr "" -#: ../../include/nav.php:182 -msgid "Channel home" +#: ../../include/conversation.php:1178 +msgid "Where are you right now?" msgstr "" -#: ../../include/nav.php:183 -msgid "Mark all channel notifications seen" +#: ../../include/conversation.php:1210 +msgid "Page link name" msgstr "" -#: ../../include/nav.php:189 -msgid "Notices" +#: ../../include/conversation.php:1213 +msgid "Post as" msgstr "" -#: ../../include/nav.php:189 -msgid "Notifications" +#: ../../include/conversation.php:1223 +msgid "Toggle voting" msgstr "" -#: ../../include/nav.php:190 -msgid "See all notifications" +#: ../../include/conversation.php:1231 +msgid "Categories (optional, comma-separated list)" msgstr "" -#: ../../include/nav.php:193 -msgid "Private mail" +#: ../../include/conversation.php:1254 +msgid "Set publish date" msgstr "" -#: ../../include/nav.php:194 -msgid "See all private messages" +#: ../../include/conversation.php:1258 +msgid "OK" msgstr "" -#: ../../include/nav.php:195 -msgid "Mark all private messages seen" +#: ../../include/conversation.php:1503 +msgid "Discover" msgstr "" -#: ../../include/nav.php:196 ../../include/widgets.php:658 -msgid "Inbox" +#: ../../include/conversation.php:1506 +msgid "Imported public streams" msgstr "" -#: ../../include/nav.php:197 ../../include/widgets.php:663 -msgid "Outbox" +#: ../../include/conversation.php:1511 +msgid "Commented Order" msgstr "" -#: ../../include/nav.php:198 ../../include/widgets.php:668 -msgid "New Message" +#: ../../include/conversation.php:1514 +msgid "Sort by Comment Date" msgstr "" -#: ../../include/nav.php:201 -msgid "Event Calendar" +#: ../../include/conversation.php:1518 +msgid "Posted Order" msgstr "" -#: ../../include/nav.php:202 -msgid "See all events" +#: ../../include/conversation.php:1521 +msgid "Sort by Post Date" msgstr "" -#: ../../include/nav.php:203 -msgid "Mark all events seen" +#: ../../include/conversation.php:1529 +msgid "Posts that mention or involve you" msgstr "" -#: ../../include/nav.php:206 -msgid "Manage Your Channels" +#: ../../include/conversation.php:1538 +msgid "Activity Stream - by date" msgstr "" -#: ../../include/nav.php:208 -msgid "Account/Channel Settings" +#: ../../include/conversation.php:1544 +msgid "Starred" msgstr "" -#: ../../include/nav.php:216 ../../include/widgets.php:1414 -msgid "Admin" +#: ../../include/conversation.php:1547 +msgid "Favourite Posts" msgstr "" -#: ../../include/nav.php:216 -msgid "Site Setup and Configuration" +#: ../../include/conversation.php:1554 +msgid "Spam" msgstr "" -#: ../../include/nav.php:252 -msgid "@name, #tag, ?doc, content" +#: ../../include/conversation.php:1557 +msgid "Posts flagged as SPAM" msgstr "" -#: ../../include/nav.php:253 -msgid "Please wait..." +#: ../../include/conversation.php:1614 +msgid "Status Messages and Posts" msgstr "" -#: ../../include/widgets.php:103 -msgid "System" +#: ../../include/conversation.php:1623 +msgid "About" msgstr "" -#: ../../include/widgets.php:106 -msgid "New App" +#: ../../include/conversation.php:1626 +msgid "Profile Details" msgstr "" -#: ../../include/widgets.php:154 -msgid "Suggestions" +#: ../../include/conversation.php:1635 ../../include/photos.php:502 +msgid "Photo Albums" msgstr "" -#: ../../include/widgets.php:155 -msgid "See more..." +#: ../../include/conversation.php:1642 +msgid "Files and Storage" msgstr "" -#: ../../include/widgets.php:175 -#, php-format -msgid "You have %1$.0f of %2$.0f allowed connections." +#: ../../include/conversation.php:1678 +msgid "Saved Bookmarks" msgstr "" -#: ../../include/widgets.php:181 -msgid "Add New Connection" +#: ../../include/conversation.php:1688 +msgid "Manage Webpages" msgstr "" -#: ../../include/widgets.php:182 -msgid "Enter channel address" -msgstr "" +#: ../../include/conversation.php:1747 +msgctxt "noun" +msgid "Attending" +msgid_plural "Attending" +msgstr[0] "" +msgstr[1] "" -#: ../../include/widgets.php:183 -msgid "Examples: bob@example.com, https://example.com/barbara" +#: ../../include/conversation.php:1750 +msgctxt "noun" +msgid "Not Attending" +msgid_plural "Not Attending" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/conversation.php:1753 +msgctxt "noun" +msgid "Undecided" +msgid_plural "Undecided" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/conversation.php:1756 +msgctxt "noun" +msgid "Agree" +msgid_plural "Agrees" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/conversation.php:1759 +msgctxt "noun" +msgid "Disagree" +msgid_plural "Disagrees" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/conversation.php:1762 +msgctxt "noun" +msgid "Abstain" +msgid_plural "Abstains" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/selectors.php:30 +msgid "Frequently" msgstr "" -#: ../../include/widgets.php:199 -msgid "Notes" +#: ../../include/selectors.php:31 +msgid "Hourly" msgstr "" -#: ../../include/widgets.php:273 -msgid "Remove term" +#: ../../include/selectors.php:32 +msgid "Twice daily" msgstr "" -#: ../../include/widgets.php:281 ../../include/features.php:84 -msgid "Saved Searches" +#: ../../include/selectors.php:33 +msgid "Daily" msgstr "" -#: ../../include/widgets.php:282 ../../include/group.php:316 -msgid "add" +#: ../../include/selectors.php:34 +msgid "Weekly" msgstr "" -#: ../../include/widgets.php:354 -msgid "Archives" +#: ../../include/selectors.php:35 +msgid "Monthly" msgstr "" -#: ../../include/widgets.php:516 -msgid "Refresh" +#: ../../include/selectors.php:49 +msgid "Currently Male" msgstr "" -#: ../../include/widgets.php:556 -msgid "Account settings" +#: ../../include/selectors.php:49 +msgid "Currently Female" msgstr "" -#: ../../include/widgets.php:562 -msgid "Channel settings" +#: ../../include/selectors.php:49 +msgid "Mostly Male" msgstr "" -#: ../../include/widgets.php:571 -msgid "Additional features" +#: ../../include/selectors.php:49 +msgid "Mostly Female" msgstr "" -#: ../../include/widgets.php:578 -msgid "Feature/Addon settings" +#: ../../include/selectors.php:49 +msgid "Transgender" msgstr "" -#: ../../include/widgets.php:584 -msgid "Display settings" +#: ../../include/selectors.php:49 +msgid "Intersex" msgstr "" -#: ../../include/widgets.php:591 -msgid "Manage locations" +#: ../../include/selectors.php:49 +msgid "Transsexual" msgstr "" -#: ../../include/widgets.php:600 -msgid "Export channel" +#: ../../include/selectors.php:49 +msgid "Hermaphrodite" msgstr "" -#: ../../include/widgets.php:607 -msgid "Connected apps" +#: ../../include/selectors.php:49 +msgid "Neuter" msgstr "" -#: ../../include/widgets.php:622 -msgid "Premium Channel Settings" +#: ../../include/selectors.php:49 +msgid "Non-specific" msgstr "" -#: ../../include/widgets.php:651 -msgid "Private Mail Menu" +#: ../../include/selectors.php:49 ../../include/selectors.php:66 +#: ../../include/selectors.php:104 ../../include/selectors.php:140 +#: ../../include/permissions.php:881 +msgid "Other" msgstr "" -#: ../../include/widgets.php:653 -msgid "Combined View" +#: ../../include/selectors.php:49 +msgid "Undecided" msgstr "" -#: ../../include/widgets.php:685 ../../include/widgets.php:697 -msgid "Conversations" +#: ../../include/selectors.php:85 ../../include/selectors.php:104 +msgid "Males" msgstr "" -#: ../../include/widgets.php:689 -msgid "Received Messages" +#: ../../include/selectors.php:85 ../../include/selectors.php:104 +msgid "Females" msgstr "" -#: ../../include/widgets.php:693 -msgid "Sent Messages" +#: ../../include/selectors.php:85 +msgid "Gay" msgstr "" -#: ../../include/widgets.php:707 -msgid "No messages." +#: ../../include/selectors.php:85 +msgid "Lesbian" msgstr "" -#: ../../include/widgets.php:725 -msgid "Delete conversation" +#: ../../include/selectors.php:85 +msgid "No Preference" msgstr "" -#: ../../include/widgets.php:751 -msgid "Events Menu" +#: ../../include/selectors.php:85 +msgid "Bisexual" msgstr "" -#: ../../include/widgets.php:752 -msgid "Day View" +#: ../../include/selectors.php:85 +msgid "Autosexual" msgstr "" -#: ../../include/widgets.php:753 -msgid "Week View" +#: ../../include/selectors.php:85 +msgid "Abstinent" msgstr "" -#: ../../include/widgets.php:754 -msgid "Month View" +#: ../../include/selectors.php:85 +msgid "Virgin" msgstr "" -#: ../../include/widgets.php:766 -msgid "Events Tools" +#: ../../include/selectors.php:85 +msgid "Deviant" msgstr "" -#: ../../include/widgets.php:767 -msgid "Export Calendar" +#: ../../include/selectors.php:85 +msgid "Fetish" msgstr "" -#: ../../include/widgets.php:768 -msgid "Import Calendar" +#: ../../include/selectors.php:85 +msgid "Oodles" msgstr "" -#: ../../include/widgets.php:844 -msgid "Overview" +#: ../../include/selectors.php:85 +msgid "Nonsexual" msgstr "" -#: ../../include/widgets.php:851 -msgid "Chat Members" +#: ../../include/selectors.php:123 ../../include/selectors.php:140 +msgid "Single" msgstr "" -#: ../../include/widgets.php:874 -msgid "Bookmarked Chatrooms" +#: ../../include/selectors.php:123 +msgid "Lonely" msgstr "" -#: ../../include/widgets.php:897 -msgid "Suggested Chatrooms" +#: ../../include/selectors.php:123 +msgid "Available" msgstr "" -#: ../../include/widgets.php:1042 ../../include/widgets.php:1154 -msgid "photo/image" +#: ../../include/selectors.php:123 +msgid "Unavailable" msgstr "" -#: ../../include/widgets.php:1097 -msgid "Click to show more" +#: ../../include/selectors.php:123 +msgid "Has crush" msgstr "" -#: ../../include/widgets.php:1248 -msgid "Rating Tools" +#: ../../include/selectors.php:123 +msgid "Infatuated" msgstr "" -#: ../../include/widgets.php:1252 ../../include/widgets.php:1254 -msgid "Rate Me" +#: ../../include/selectors.php:123 ../../include/selectors.php:140 +msgid "Dating" msgstr "" -#: ../../include/widgets.php:1257 -msgid "View Ratings" +#: ../../include/selectors.php:123 +msgid "Unfaithful" msgstr "" -#: ../../include/widgets.php:1314 -msgid "Forums" +#: ../../include/selectors.php:123 +msgid "Sex Addict" msgstr "" -#: ../../include/widgets.php:1343 -msgid "Tasks" +#: ../../include/selectors.php:123 +msgid "Friends/Benefits" msgstr "" -#: ../../include/widgets.php:1352 -msgid "Documentation" +#: ../../include/selectors.php:123 +msgid "Casual" msgstr "" -#: ../../include/widgets.php:1354 -msgid "Project/Site Information" +#: ../../include/selectors.php:123 +msgid "Engaged" msgstr "" -#: ../../include/widgets.php:1355 -msgid "For Members" +#: ../../include/selectors.php:123 ../../include/selectors.php:140 +msgid "Married" msgstr "" -#: ../../include/widgets.php:1356 -msgid "For Administrators" +#: ../../include/selectors.php:123 +msgid "Imaginarily married" msgstr "" -#: ../../include/widgets.php:1357 -msgid "For Developers" +#: ../../include/selectors.php:123 +msgid "Partners" msgstr "" -#: ../../include/widgets.php:1381 -msgid "Accounts" +#: ../../include/selectors.php:123 ../../include/selectors.php:140 +msgid "Cohabiting" msgstr "" -#: ../../include/widgets.php:1381 ../../include/widgets.php:1419 -msgid "Member registrations waiting for confirmation" +#: ../../include/selectors.php:123 +msgid "Common law" msgstr "" -#: ../../include/widgets.php:1387 -msgid "Inspect queue" +#: ../../include/selectors.php:123 +msgid "Happy" msgstr "" -#: ../../include/widgets.php:1389 -msgid "DB updates" +#: ../../include/selectors.php:123 +msgid "Not looking" msgstr "" -#: ../../include/widgets.php:1415 -msgid "Plugin Features" +#: ../../include/selectors.php:123 +msgid "Swinger" msgstr "" -#: ../../include/acl_selectors.php:232 -#: ../../include/PermissionDescription.php:31 -msgid "Visible to your default audience" +#: ../../include/selectors.php:123 +msgid "Betrayed" msgstr "" -#: ../../include/acl_selectors.php:268 -#: ../../include/PermissionDescription.php:115 -msgid "Only me" +#: ../../include/selectors.php:123 ../../include/selectors.php:140 +msgid "Separated" msgstr "" -#: ../../include/acl_selectors.php:271 -msgid "Who can see this?" +#: ../../include/selectors.php:123 +msgid "Unstable" msgstr "" -#: ../../include/acl_selectors.php:272 -msgid "Custom selection" +#: ../../include/selectors.php:123 ../../include/selectors.php:140 +msgid "Divorced" msgstr "" -#: ../../include/acl_selectors.php:273 -msgid "" -"Select \"Show\" to allow viewing. \"Don't show\" lets you override and limit " -"the scope of \"Show\"." +#: ../../include/selectors.php:123 +msgid "Imaginarily divorced" msgstr "" -#: ../../include/acl_selectors.php:274 -msgid "Show" +#: ../../include/selectors.php:123 ../../include/selectors.php:140 +msgid "Widowed" msgstr "" -#: ../../include/acl_selectors.php:275 -msgid "Don't show" +#: ../../include/selectors.php:123 +msgid "Uncertain" msgstr "" -#: ../../include/acl_selectors.php:281 -msgid "Other networks and post services" +#: ../../include/selectors.php:123 ../../include/selectors.php:140 +msgid "It's complicated" msgstr "" -#: ../../include/acl_selectors.php:311 -#, php-format -msgid "" -"Post permissions %s cannot be changed %s after a post is shared.
These " -"permissions set who is allowed to view the post." +#: ../../include/selectors.php:123 +msgid "Don't care" msgstr "" -#: ../../include/datetime.php:135 -msgid "Birthday" +#: ../../include/selectors.php:123 +msgid "Ask me" msgstr "" -#: ../../include/datetime.php:137 -msgid "Age: " +#: ../../include/PermissionDescription.php:31 +#: ../../include/acl_selectors.php:232 +msgid "Visible to your default audience" msgstr "" -#: ../../include/datetime.php:139 -msgid "YYYY-MM-DD or MM-DD" +#: ../../include/PermissionDescription.php:115 +#: ../../include/acl_selectors.php:268 +msgid "Only me" msgstr "" -#: ../../include/datetime.php:272 ../../boot.php:2462 -msgid "never" +#: ../../include/PermissionDescription.php:116 +msgid "Public" msgstr "" -#: ../../include/datetime.php:278 -msgid "less than a second ago" +#: ../../include/PermissionDescription.php:117 +msgid "Anybody in the $Projectname network" msgstr "" -#: ../../include/datetime.php:296 +#: ../../include/PermissionDescription.php:118 #, php-format -msgctxt "e.g. 22 hours ago, 1 minute ago" -msgid "%1$d %2$s ago" +msgid "Any account on %s" msgstr "" -#: ../../include/datetime.php:307 -msgctxt "relative_date" -msgid "year" -msgid_plural "years" -msgstr[0] "" -msgstr[1] "" +#: ../../include/PermissionDescription.php:119 +msgid "Any of my connections" +msgstr "" -#: ../../include/datetime.php:310 -msgctxt "relative_date" -msgid "month" -msgid_plural "months" -msgstr[0] "" -msgstr[1] "" +#: ../../include/PermissionDescription.php:120 +msgid "Only connections I specifically allow" +msgstr "" -#: ../../include/datetime.php:313 -msgctxt "relative_date" -msgid "week" -msgid_plural "weeks" -msgstr[0] "" -msgstr[1] "" +#: ../../include/PermissionDescription.php:121 +msgid "Anybody authenticated (could include visitors from other networks)" +msgstr "" -#: ../../include/datetime.php:316 -msgctxt "relative_date" -msgid "day" -msgid_plural "days" -msgstr[0] "" -msgstr[1] "" +#: ../../include/PermissionDescription.php:122 +msgid "Any connections including those who haven't yet been approved" +msgstr "" -#: ../../include/datetime.php:319 -msgctxt "relative_date" -msgid "hour" -msgid_plural "hours" -msgstr[0] "" -msgstr[1] "" +#: ../../include/PermissionDescription.php:161 +msgid "" +"This is your default setting for the audience of your normal stream, and " +"posts." +msgstr "" -#: ../../include/datetime.php:322 -msgctxt "relative_date" -msgid "minute" -msgid_plural "minutes" -msgstr[0] "" -msgstr[1] "" +#: ../../include/PermissionDescription.php:162 +msgid "" +"This is your default setting for who can view your default channel profile" +msgstr "" -#: ../../include/datetime.php:325 -msgctxt "relative_date" -msgid "second" -msgid_plural "seconds" -msgstr[0] "" -msgstr[1] "" +#: ../../include/PermissionDescription.php:163 +msgid "This is your default setting for who can view your connections" +msgstr "" -#: ../../include/datetime.php:562 -#, php-format -msgid "%1$s's birthday" +#: ../../include/PermissionDescription.php:164 +msgid "" +"This is your default setting for who can view your file storage and photos" msgstr "" -#: ../../include/datetime.php:563 -#, php-format -msgid "Happy Birthday %1$s" +#: ../../include/PermissionDescription.php:165 +msgid "This is your default setting for the audience of your webpages" msgstr "" #: ../../include/account.php:28 @@ -8351,6 +8404,11 @@ msgstr "" msgid "Registration request at %s" msgstr "" +#: ../../include/account.php:317 ../../include/account.php:344 +#: ../../include/account.php:404 ../../include/network.php:1871 +msgid "Administrator" +msgstr "" + #: ../../include/account.php:339 msgid "your registration password" msgstr "" @@ -8385,107 +8443,220 @@ msgstr "" msgid "This action is not available under your subscription plan." msgstr "" -#: ../../include/api.php:1336 -msgid "Public Timeline" +#: ../../include/attach.php:247 ../../include/attach.php:333 +msgid "Item was not found." msgstr "" -#: ../../include/auth.php:105 -msgid "Logged out." +#: ../../include/attach.php:497 +msgid "No source file." msgstr "" -#: ../../include/auth.php:212 -msgid "Failed authentication" +#: ../../include/attach.php:519 +msgid "Cannot locate file to replace" msgstr "" -#: ../../include/follow.php:27 -msgid "Channel is blocked on this site." +#: ../../include/attach.php:537 +msgid "Cannot locate file to revise/update" msgstr "" -#: ../../include/follow.php:32 -msgid "Channel location missing." +#: ../../include/attach.php:672 +#, php-format +msgid "File exceeds size limit of %d" msgstr "" -#: ../../include/follow.php:81 -msgid "Response from remote channel was incomplete." +#: ../../include/attach.php:686 +#, php-format +msgid "You have reached your limit of %1$.0f Mbytes attachment storage." msgstr "" -#: ../../include/follow.php:98 -msgid "Channel was deleted and no longer exists." +#: ../../include/attach.php:842 +msgid "File upload failed. Possible system limit or action terminated." msgstr "" -#: ../../include/follow.php:154 ../../include/follow.php:190 -msgid "Protocol disabled." +#: ../../include/attach.php:855 +msgid "Stored file could not be verified. Upload failed." msgstr "" -#: ../../include/follow.php:178 -msgid "Channel discovery failed." +#: ../../include/attach.php:909 ../../include/attach.php:925 +msgid "Path not available." msgstr "" -#: ../../include/follow.php:216 -msgid "Cannot connect to yourself." +#: ../../include/attach.php:971 ../../include/attach.php:1123 +msgid "Empty pathname" msgstr "" -#: ../../include/import.php:29 +#: ../../include/attach.php:997 +msgid "duplicate filename or path" +msgstr "" + +#: ../../include/attach.php:1019 +msgid "Path not found." +msgstr "" + +#: ../../include/attach.php:1077 +msgid "mkdir failed." +msgstr "" + +#: ../../include/attach.php:1081 +msgid "database storage failed." +msgstr "" + +#: ../../include/attach.php:1129 +msgid "Empty path" +msgstr "" + +#: ../../include/channel.php:32 +msgid "Unable to obtain identity information from database" +msgstr "" + +#: ../../include/channel.php:66 +msgid "Empty name" +msgstr "" + +#: ../../include/channel.php:69 +msgid "Name too long" +msgstr "" + +#: ../../include/channel.php:180 +msgid "No account identifier" +msgstr "" + +#: ../../include/channel.php:192 +msgid "Nickname is required." +msgstr "" + +#: ../../include/channel.php:206 +msgid "Reserved nickname. Please choose another." +msgstr "" + +#: ../../include/channel.php:211 msgid "" -"Cannot create a duplicate channel identifier on this system. Import failed." +"Nickname has unsupported characters or is already being used on this site." msgstr "" -#: ../../include/import.php:76 -msgid "Channel clone failed. Import failed." +#: ../../include/channel.php:287 +msgid "Unable to retrieve created identity" msgstr "" -#: ../../include/items.php:892 ../../include/items.php:937 -msgid "(Unknown)" +#: ../../include/channel.php:345 +msgid "Default Profile" msgstr "" -#: ../../include/items.php:1136 -msgid "Visible to anybody on the internet." +#: ../../include/channel.php:791 +msgid "Requested channel is not available." msgstr "" -#: ../../include/items.php:1138 -msgid "Visible to you only." +#: ../../include/channel.php:938 +msgid "Create New Profile" msgstr "" -#: ../../include/items.php:1140 -msgid "Visible to anybody in this network." +#: ../../include/channel.php:958 +msgid "Visible to everybody" msgstr "" -#: ../../include/items.php:1142 -msgid "Visible to anybody authenticated." +#: ../../include/channel.php:1031 ../../include/channel.php:1142 +msgid "Gender:" msgstr "" -#: ../../include/items.php:1144 -#, php-format -msgid "Visible to anybody on %s." +#: ../../include/channel.php:1032 ../../include/channel.php:1186 +msgid "Status:" msgstr "" -#: ../../include/items.php:1146 -msgid "Visible to all connections." +#: ../../include/channel.php:1033 ../../include/channel.php:1197 +msgid "Homepage:" msgstr "" -#: ../../include/items.php:1148 -msgid "Visible to approved connections." +#: ../../include/channel.php:1034 +msgid "Online Now" msgstr "" -#: ../../include/items.php:1150 -msgid "Visible to specific connections." +#: ../../include/channel.php:1147 +msgid "Like this channel" msgstr "" -#: ../../include/items.php:3911 -msgid "Privacy group is empty." +#: ../../include/channel.php:1171 +msgid "j F, Y" +msgstr "" + +#: ../../include/channel.php:1172 +msgid "j F" +msgstr "" + +#: ../../include/channel.php:1179 +msgid "Birthday:" msgstr "" -#: ../../include/items.php:3918 +#: ../../include/channel.php:1192 #, php-format -msgid "Privacy group: %s" +msgid "for %1$d %2$s" msgstr "" -#: ../../include/items.php:3930 -msgid "Connection not found." +#: ../../include/channel.php:1195 +msgid "Sexual Preference:" msgstr "" -#: ../../include/items.php:4279 -msgid "profile photo" +#: ../../include/channel.php:1201 +msgid "Tags:" +msgstr "" + +#: ../../include/channel.php:1203 +msgid "Political Views:" +msgstr "" + +#: ../../include/channel.php:1205 +msgid "Religion:" +msgstr "" + +#: ../../include/channel.php:1209 +msgid "Hobbies/Interests:" +msgstr "" + +#: ../../include/channel.php:1211 +msgid "Likes:" +msgstr "" + +#: ../../include/channel.php:1213 +msgid "Dislikes:" +msgstr "" + +#: ../../include/channel.php:1215 +msgid "Contact information and Social Networks:" +msgstr "" + +#: ../../include/channel.php:1217 +msgid "My other channels:" +msgstr "" + +#: ../../include/channel.php:1219 +msgid "Musical interests:" +msgstr "" + +#: ../../include/channel.php:1221 +msgid "Books, literature:" +msgstr "" + +#: ../../include/channel.php:1223 +msgid "Television:" +msgstr "" + +#: ../../include/channel.php:1225 +msgid "Film/dance/culture/entertainment:" +msgstr "" + +#: ../../include/channel.php:1227 +msgid "Love/Romance:" +msgstr "" + +#: ../../include/channel.php:1229 +msgid "Work/employment:" +msgstr "" + +#: ../../include/channel.php:1231 +msgid "School/education:" +msgstr "" + +#: ../../include/channel.php:1251 +msgid "Like this thing" msgstr "" #: ../../include/features.php:48 @@ -8736,392 +8907,200 @@ msgid "Add categories to your posts" msgstr "" #: ../../include/features.php:97 -msgid "Ability to file posts under folders" +msgid "Emoji Reactions" msgstr "" -#: ../../include/features.php:98 -msgid "Dislike Posts" +#: ../../include/features.php:97 +msgid "Add emoji reaction ability to posts" msgstr "" #: ../../include/features.php:98 -msgid "Ability to dislike posts/comments" +msgid "Ability to file posts under folders" msgstr "" #: ../../include/features.php:99 -msgid "Star Posts" +msgid "Dislike Posts" msgstr "" #: ../../include/features.php:99 -msgid "Ability to mark special posts with a star indicator" +msgid "Ability to dislike posts/comments" msgstr "" #: ../../include/features.php:100 -msgid "Tag Cloud" +msgid "Star Posts" msgstr "" #: ../../include/features.php:100 -msgid "Provide a personal tag cloud on your channel page" -msgstr "" - -#: ../../include/group.php:26 -msgid "" -"A deleted group with this name was revived. Existing item permissions " -"may apply to this group and any future members. If this is " -"not what you intended, please create another group with a different name." -msgstr "" - -#: ../../include/group.php:248 -msgid "Add new connections to this privacy group" -msgstr "" - -#: ../../include/group.php:289 -msgid "edit" -msgstr "" - -#: ../../include/group.php:312 -msgid "Edit group" -msgstr "" - -#: ../../include/group.php:313 -msgid "Add privacy group" -msgstr "" - -#: ../../include/group.php:314 -msgid "Channels not in any privacy group" -msgstr "" - -#: ../../include/text.php:428 -msgid "prev" -msgstr "" - -#: ../../include/text.php:430 -msgid "first" -msgstr "" - -#: ../../include/text.php:459 -msgid "last" -msgstr "" - -#: ../../include/text.php:462 -msgid "next" -msgstr "" - -#: ../../include/text.php:472 -msgid "older" -msgstr "" - -#: ../../include/text.php:474 -msgid "newer" -msgstr "" - -#: ../../include/text.php:863 -msgid "No connections" -msgstr "" - -#: ../../include/text.php:888 -#, php-format -msgid "View all %s connections" -msgstr "" - -#: ../../include/text.php:1033 ../../include/text.php:1038 -msgid "poke" -msgstr "" - -#: ../../include/text.php:1039 -msgid "ping" -msgstr "" - -#: ../../include/text.php:1039 -msgid "pinged" -msgstr "" - -#: ../../include/text.php:1040 -msgid "prod" -msgstr "" - -#: ../../include/text.php:1040 -msgid "prodded" -msgstr "" - -#: ../../include/text.php:1041 -msgid "slap" -msgstr "" - -#: ../../include/text.php:1041 -msgid "slapped" -msgstr "" - -#: ../../include/text.php:1042 -msgid "finger" -msgstr "" - -#: ../../include/text.php:1042 -msgid "fingered" -msgstr "" - -#: ../../include/text.php:1043 -msgid "rebuff" -msgstr "" - -#: ../../include/text.php:1043 -msgid "rebuffed" -msgstr "" - -#: ../../include/text.php:1055 -msgid "happy" -msgstr "" - -#: ../../include/text.php:1056 -msgid "sad" -msgstr "" - -#: ../../include/text.php:1057 -msgid "mellow" -msgstr "" - -#: ../../include/text.php:1058 -msgid "tired" -msgstr "" - -#: ../../include/text.php:1059 -msgid "perky" -msgstr "" - -#: ../../include/text.php:1060 -msgid "angry" -msgstr "" - -#: ../../include/text.php:1061 -msgid "stupefied" -msgstr "" - -#: ../../include/text.php:1062 -msgid "puzzled" -msgstr "" - -#: ../../include/text.php:1063 -msgid "interested" -msgstr "" - -#: ../../include/text.php:1064 -msgid "bitter" -msgstr "" - -#: ../../include/text.php:1065 -msgid "cheerful" -msgstr "" - -#: ../../include/text.php:1066 -msgid "alive" -msgstr "" - -#: ../../include/text.php:1067 -msgid "annoyed" -msgstr "" - -#: ../../include/text.php:1068 -msgid "anxious" -msgstr "" - -#: ../../include/text.php:1069 -msgid "cranky" -msgstr "" - -#: ../../include/text.php:1070 -msgid "disturbed" -msgstr "" - -#: ../../include/text.php:1071 -msgid "frustrated" -msgstr "" - -#: ../../include/text.php:1072 -msgid "depressed" -msgstr "" - -#: ../../include/text.php:1073 -msgid "motivated" -msgstr "" - -#: ../../include/text.php:1074 -msgid "relaxed" -msgstr "" - -#: ../../include/text.php:1075 -msgid "surprised" -msgstr "" - -#: ../../include/text.php:1242 ../../include/js_strings.php:70 -msgid "Monday" -msgstr "" - -#: ../../include/text.php:1242 ../../include/js_strings.php:71 -msgid "Tuesday" -msgstr "" - -#: ../../include/text.php:1242 ../../include/js_strings.php:72 -msgid "Wednesday" -msgstr "" - -#: ../../include/text.php:1242 ../../include/js_strings.php:73 -msgid "Thursday" -msgstr "" - -#: ../../include/text.php:1242 ../../include/js_strings.php:74 -msgid "Friday" -msgstr "" - -#: ../../include/text.php:1242 ../../include/js_strings.php:75 -msgid "Saturday" -msgstr "" - -#: ../../include/text.php:1242 ../../include/js_strings.php:69 -msgid "Sunday" -msgstr "" - -#: ../../include/text.php:1246 ../../include/js_strings.php:45 -msgid "January" -msgstr "" - -#: ../../include/text.php:1246 ../../include/js_strings.php:46 -msgid "February" -msgstr "" - -#: ../../include/text.php:1246 ../../include/js_strings.php:47 -msgid "March" -msgstr "" - -#: ../../include/text.php:1246 ../../include/js_strings.php:48 -msgid "April" +msgid "Ability to mark special posts with a star indicator" msgstr "" -#: ../../include/text.php:1246 -msgid "May" +#: ../../include/features.php:101 +msgid "Tag Cloud" msgstr "" -#: ../../include/text.php:1246 ../../include/js_strings.php:50 -msgid "June" +#: ../../include/features.php:101 +msgid "Provide a personal tag cloud on your channel page" msgstr "" -#: ../../include/text.php:1246 ../../include/js_strings.php:51 -msgid "July" +#: ../../include/oembed.php:324 +msgid "Embedded content" msgstr "" -#: ../../include/text.php:1246 ../../include/js_strings.php:52 -msgid "August" +#: ../../include/oembed.php:333 +msgid "Embedding disabled" msgstr "" -#: ../../include/text.php:1246 ../../include/js_strings.php:53 -msgid "September" +#: ../../include/acl_selectors.php:271 +msgid "Who can see this?" msgstr "" -#: ../../include/text.php:1246 ../../include/js_strings.php:54 -msgid "October" +#: ../../include/acl_selectors.php:272 +msgid "Custom selection" msgstr "" -#: ../../include/text.php:1246 ../../include/js_strings.php:55 -msgid "November" +#: ../../include/acl_selectors.php:273 +msgid "" +"Select \"Show\" to allow viewing. \"Don't show\" lets you override and limit " +"the scope of \"Show\"." msgstr "" -#: ../../include/text.php:1246 ../../include/js_strings.php:56 -msgid "December" +#: ../../include/acl_selectors.php:274 +msgid "Show" msgstr "" -#: ../../include/text.php:1323 ../../include/text.php:1327 -msgid "Unknown Attachment" +#: ../../include/acl_selectors.php:275 +msgid "Don't show" msgstr "" -#: ../../include/text.php:1329 -msgid "unknown" +#: ../../include/acl_selectors.php:281 +msgid "Other networks and post services" msgstr "" -#: ../../include/text.php:1365 -msgid "remove category" +#: ../../include/acl_selectors.php:311 +#, php-format +msgid "" +"Post permissions %s cannot be changed %s after a post is shared.
These " +"permissions set who is allowed to view the post." msgstr "" -#: ../../include/text.php:1442 -msgid "remove from file" +#: ../../include/auth.php:105 +msgid "Logged out." msgstr "" -#: ../../include/text.php:1738 ../../include/text.php:1809 -msgid "default" +#: ../../include/auth.php:212 +msgid "Failed authentication" msgstr "" -#: ../../include/text.php:1746 -msgid "Page layout" +#: ../../include/datetime.php:135 +msgid "Birthday" msgstr "" -#: ../../include/text.php:1746 -msgid "You can create your own with the layouts tool" +#: ../../include/datetime.php:137 +msgid "Age: " msgstr "" -#: ../../include/text.php:1788 -msgid "Page content type" +#: ../../include/datetime.php:139 +msgid "YYYY-MM-DD or MM-DD" msgstr "" -#: ../../include/text.php:1821 -msgid "Select an alternate language" +#: ../../include/datetime.php:272 ../../boot.php:2470 +msgid "never" msgstr "" -#: ../../include/text.php:1938 -msgid "activity" +#: ../../include/datetime.php:278 +msgid "less than a second ago" msgstr "" -#: ../../include/text.php:2247 -msgid "Design Tools" +#: ../../include/datetime.php:296 +#, php-format +msgctxt "e.g. 22 hours ago, 1 minute ago" +msgid "%1$d %2$s ago" msgstr "" -#: ../../include/text.php:2253 -msgid "Pages" -msgstr "" +#: ../../include/datetime.php:307 +msgctxt "relative_date" +msgid "year" +msgid_plural "years" +msgstr[0] "" +msgstr[1] "" -#: ../../include/zot.php:699 -msgid "Invalid data packet" -msgstr "" +#: ../../include/datetime.php:310 +msgctxt "relative_date" +msgid "month" +msgid_plural "months" +msgstr[0] "" +msgstr[1] "" -#: ../../include/zot.php:715 -msgid "Unable to verify channel signature" -msgstr "" +#: ../../include/datetime.php:313 +msgctxt "relative_date" +msgid "week" +msgid_plural "weeks" +msgstr[0] "" +msgstr[1] "" -#: ../../include/zot.php:2363 -#, php-format -msgid "Unable to verify site signature for %s" -msgstr "" +#: ../../include/datetime.php:316 +msgctxt "relative_date" +msgid "day" +msgid_plural "days" +msgstr[0] "" +msgstr[1] "" -#: ../../include/zot.php:3712 -msgid "invalid target signature" -msgstr "" +#: ../../include/datetime.php:319 +msgctxt "relative_date" +msgid "hour" +msgid_plural "hours" +msgstr[0] "" +msgstr[1] "" -#: ../../include/taxonomy.php:228 ../../include/taxonomy.php:249 -msgid "Tags" +#: ../../include/datetime.php:322 +msgctxt "relative_date" +msgid "minute" +msgid_plural "minutes" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/datetime.php:325 +msgctxt "relative_date" +msgid "second" +msgid_plural "seconds" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/datetime.php:562 +#, php-format +msgid "%1$s's birthday" msgstr "" -#: ../../include/taxonomy.php:293 -msgid "Keywords" +#: ../../include/datetime.php:563 +#, php-format +msgid "Happy Birthday %1$s" msgstr "" -#: ../../include/taxonomy.php:314 -msgid "have" +#: ../../include/group.php:26 +msgid "" +"A deleted group with this name was revived. Existing item permissions " +"may apply to this group and any future members. If this is " +"not what you intended, please create another group with a different name." msgstr "" -#: ../../include/taxonomy.php:314 -msgid "has" +#: ../../include/group.php:248 +msgid "Add new connections to this privacy group" msgstr "" -#: ../../include/taxonomy.php:315 -msgid "want" +#: ../../include/group.php:289 +msgid "edit" msgstr "" -#: ../../include/taxonomy.php:315 -msgid "wants" +#: ../../include/group.php:312 +msgid "Edit group" msgstr "" -#: ../../include/taxonomy.php:316 -msgid "likes" +#: ../../include/group.php:313 +msgid "Add privacy group" msgstr "" -#: ../../include/taxonomy.php:317 -msgid "dislikes" +#: ../../include/group.php:314 +msgid "Channels not in any privacy group" msgstr "" #: ../../include/js_strings.php:5 @@ -9368,96 +9347,96 @@ msgctxt "calendar" msgid "All day" msgstr "" -#: ../../include/PermissionDescription.php:116 -msgid "Public" +#: ../../include/network.php:657 +msgid "view full size" msgstr "" -#: ../../include/PermissionDescription.php:117 -msgid "Anybody in the $Projectname network" +#: ../../include/network.php:1885 +msgid "No Subject" msgstr "" -#: ../../include/PermissionDescription.php:118 -#, php-format -msgid "Any account on %s" +#: ../../include/network.php:2146 ../../include/network.php:2147 +msgid "Friendica" msgstr "" -#: ../../include/PermissionDescription.php:119 -msgid "Any of my connections" +#: ../../include/network.php:2148 +msgid "OStatus" msgstr "" -#: ../../include/PermissionDescription.php:120 -msgid "Only connections I specifically allow" +#: ../../include/network.php:2149 +msgid "GNU-Social" msgstr "" -#: ../../include/PermissionDescription.php:121 -msgid "Anybody authenticated (could include visitors from other networks)" +#: ../../include/network.php:2150 +msgid "RSS/Atom" msgstr "" -#: ../../include/PermissionDescription.php:122 -msgid "Any connections including those who haven't yet been approved" +#: ../../include/network.php:2152 +msgid "Diaspora" msgstr "" -#: ../../include/PermissionDescription.php:161 -msgid "" -"This is your default setting for the audience of your normal stream, and " -"posts." +#: ../../include/network.php:2153 +msgid "Facebook" msgstr "" -#: ../../include/PermissionDescription.php:162 -msgid "" -"This is your default setting for who can view your default channel profile" +#: ../../include/network.php:2154 +msgid "Zot" msgstr "" -#: ../../include/PermissionDescription.php:163 -msgid "This is your default setting for who can view your connections" +#: ../../include/network.php:2155 +msgid "LinkedIn" msgstr "" -#: ../../include/PermissionDescription.php:164 -msgid "" -"This is your default setting for who can view your file storage and photos" +#: ../../include/network.php:2156 +msgid "XMPP/IM" msgstr "" -#: ../../include/PermissionDescription.php:165 -msgid "This is your default setting for the audience of your webpages" +#: ../../include/network.php:2157 +msgid "MySpace" msgstr "" -#: ../../include/activities.php:41 -msgid " and " +#: ../../include/photos.php:110 +#, php-format +msgid "Image exceeds website size limit of %lu bytes" msgstr "" -#: ../../include/activities.php:49 -msgid "public profile" +#: ../../include/photos.php:117 +msgid "Image file is empty." msgstr "" -#: ../../include/activities.php:58 -#, php-format -msgid "%1$s changed %2$s to “%3$s”" +#: ../../include/photos.php:255 +msgid "Photo storage failed." msgstr "" -#: ../../include/activities.php:59 -#, php-format -msgid "Visit %1$s's %2$s" +#: ../../include/photos.php:295 +msgid "a new photo" msgstr "" -#: ../../include/activities.php:62 +#: ../../include/photos.php:299 #, php-format -msgid "%1$s has an updated %2$s, changing %3$s." +msgctxt "photo_upload" +msgid "%1$s posted %2$s to %3$s" msgstr "" -#: ../../include/dir_fns.php:141 -msgid "Directory Options" +#: ../../include/photos.php:506 +msgid "Upload New Photos" msgstr "" -#: ../../include/dir_fns.php:143 -msgid "Safe Mode" +#: ../../include/zot.php:699 +msgid "Invalid data packet" msgstr "" -#: ../../include/dir_fns.php:144 -msgid "Public Forums Only" +#: ../../include/zot.php:715 +msgid "Unable to verify channel signature" msgstr "" -#: ../../include/dir_fns.php:145 -msgid "This Website Only" +#: ../../include/zot.php:2363 +#, php-format +msgid "Unable to verify site signature for %s" +msgstr "" + +#: ../../include/zot.php:3712 +msgid "invalid target signature" msgstr "" #: ../../include/page_widgets.php:6 @@ -9608,6 +9587,29 @@ msgstr "" msgid "Custom/Expert Mode" msgstr "" +#: ../../include/activities.php:41 +msgid " and " +msgstr "" + +#: ../../include/activities.php:49 +msgid "public profile" +msgstr "" + +#: ../../include/activities.php:58 +#, php-format +msgid "%1$s changed %2$s to “%3$s”" +msgstr "" + +#: ../../include/activities.php:59 +#, php-format +msgid "Visit %1$s's %2$s" +msgstr "" + +#: ../../include/activities.php:62 +#, php-format +msgid "%1$s has an updated %2$s, changing %3$s." +msgstr "" + #: ../../include/bb2diaspora.php:398 msgid "Attachments:" msgstr "" @@ -9752,62 +9754,62 @@ msgstr "" msgid "Set size of followup author photos" msgstr "" -#: ../../boot.php:1161 +#: ../../boot.php:1162 #, php-format msgctxt "opensearch" msgid "Search %1$s (%2$s)" msgstr "" -#: ../../boot.php:1161 +#: ../../boot.php:1162 msgctxt "opensearch" msgid "$Projectname" msgstr "" -#: ../../boot.php:1473 +#: ../../boot.php:1480 #, php-format msgid "Update %s failed. See error logs." msgstr "" -#: ../../boot.php:1476 +#: ../../boot.php:1483 #, php-format msgid "Update Error at %s" msgstr "" -#: ../../boot.php:1676 +#: ../../boot.php:1684 msgid "" "Create an account to access services and applications within the Hubzilla" msgstr "" -#: ../../boot.php:1698 +#: ../../boot.php:1706 msgid "Password" msgstr "" -#: ../../boot.php:1699 +#: ../../boot.php:1707 msgid "Remember me" msgstr "" -#: ../../boot.php:1702 +#: ../../boot.php:1710 msgid "Forgot your password?" msgstr "" -#: ../../boot.php:2268 +#: ../../boot.php:2276 msgid "toggle mobile" msgstr "" -#: ../../boot.php:2417 +#: ../../boot.php:2425 msgid "Website SSL certificate is not valid. Please correct." msgstr "" -#: ../../boot.php:2420 +#: ../../boot.php:2428 #, php-format msgid "[hubzilla] Website SSL error for %s" msgstr "" -#: ../../boot.php:2461 +#: ../../boot.php:2469 msgid "Cron/Scheduled tasks not running." msgstr "" -#: ../../boot.php:2465 +#: ../../boot.php:2473 #, php-format msgid "[hubzilla] Cron tasks not running on %s" msgstr "" -- cgit v1.2.3