From 0754da58da96316a9ff4505f9c7c712c1f0094b6 Mon Sep 17 00:00:00 2001 From: redmatrix Date: Sat, 17 Sep 2016 14:51:57 -0700 Subject: [PATCH] some changes merged from wrong branch... new function channel_reddress() instead of hardwired generation and which fixes case-sensitivity; allow dot notation in config and pconfig utils, updated string file --- Zotlabs/Module/Connect.php | 4 +- Zotlabs/Module/Fhublocs.php | 4 +- Zotlabs/Module/Import.php | 4 +- Zotlabs/Module/Magic.php | 2 +- Zotlabs/Module/Xrd.php | 2 +- include/channel.php | 5 + util/config | 6 +- util/hmessages.po | 7646 +++++++++++++++++------------------ util/pconfig | 7 + 9 files changed, 3848 insertions(+), 3832 deletions(-) diff --git a/Zotlabs/Module/Connect.php b/Zotlabs/Module/Connect.php index 962c05cce..dec375104 100644 --- a/Zotlabs/Module/Connect.php +++ b/Zotlabs/Module/Connect.php @@ -60,13 +60,13 @@ class Connect extends \Zotlabs\Web\Controller { $observer = \App::get_observer(); if(($observer) && ($_POST['submit'] === t('Continue'))) { if($observer['xchan_follow']) - $url = sprintf($observer['xchan_follow'],urlencode(\App::$data['channel']['channel_address'] . '@' . \App::get_hostname())); + $url = sprintf($observer['xchan_follow'],urlencode(channel_reddress(\App::$data['channel']))); if(! $url) { $r = q("select * from hubloc where hubloc_hash = '%s' order by hubloc_id desc limit 1", dbesc($observer['xchan_hash']) ); if($r) - $url = $r[0]['hubloc_url'] . '/follow?f=&url=' . urlencode(\App::$data['channel']['channel_address'] . '@' . \App::get_hostname()); + $url = $r[0]['hubloc_url'] . '/follow?f=&url=' . urlencode(channel_reddress(\App::$data['channel'])); } } if($url) diff --git a/Zotlabs/Module/Fhublocs.php b/Zotlabs/Module/Fhublocs.php index f5b439421..cdf323a41 100644 --- a/Zotlabs/Module/Fhublocs.php +++ b/Zotlabs/Module/Fhublocs.php @@ -42,7 +42,7 @@ class Fhublocs extends \Zotlabs\Web\Controller { if($y) $primary_address = $y[0]['xchan_addr']; - $hub_address = $rr['channel']['channel_address'] . '@' . \App::get_hostname(); + $hub_address = channel_reddress($rr['channel']); $primary = (($hub_address === $primary_address) ? 1 : 0); @@ -61,7 +61,7 @@ class Fhublocs extends \Zotlabs\Web\Controller { dbesc($rr['channel_guid']), dbesc($rr['channel_guid_sig']), dbesc($rr['channel_hash']), - dbesc($rr['channel_address'] . '@' . \App::get_hostname()), + dbesc(channel_reddress($rr)), intval($primary), dbesc(z_root()), dbesc(base64url_encode(rsa_sign(z_root(),$rr['channel_prvkey']))), diff --git a/Zotlabs/Module/Import.php b/Zotlabs/Module/Import.php index d27f013b9..9574de07c 100644 --- a/Zotlabs/Module/Import.php +++ b/Zotlabs/Module/Import.php @@ -209,7 +209,7 @@ class Import extends \Zotlabs\Web\Controller { dbesc($channel['channel_guid']), dbesc($channel['channel_guid_sig']), dbesc($channel['channel_hash']), - dbesc($channel['channel_address'] . '@' . \App::get_hostname()), + dbesc(channel_reddress($channel)), dbesc('zot'), intval(($seize) ? 1 : 0), dbesc(z_root()), @@ -252,7 +252,7 @@ class Import extends \Zotlabs\Web\Controller { dbesc(z_root() . "/photo/profile/l/" . $channel['channel_id']), dbesc(z_root() . "/photo/profile/m/" . $channel['channel_id']), dbesc(z_root() . "/photo/profile/s/" . $channel['channel_id']), - dbesc($channel['channel_address'] . '@' . \App::get_hostname()), + dbesc(channel_reddress($channel)), dbesc(z_root() . '/channel/' . $channel['channel_address']), dbesc(z_root() . '/follow?f=&url=%s'), dbesc(z_root() . '/poco/' . $channel['channel_address']), diff --git a/Zotlabs/Module/Magic.php b/Zotlabs/Module/Magic.php index 6798f72a9..9ee5f9324 100644 --- a/Zotlabs/Module/Magic.php +++ b/Zotlabs/Module/Magic.php @@ -140,7 +140,7 @@ class Magic extends \Zotlabs\Web\Controller { \Zotlabs\Zot\Verify::create('auth',$channel['channel_id'],$token,$x[0]['hubloc_url']); - $target_url = $x[0]['hubloc_callback'] . '/?f=&auth=' . urlencode($channel['channel_address'] . '@' . \App::get_hostname()) + $target_url = $x[0]['hubloc_callback'] . '/?f=&auth=' . urlencode(channel_reddress($channel)) . '&sec=' . $token . '&dest=' . urlencode($dest) . '&version=' . ZOT_REVISION; if($delegate) diff --git a/Zotlabs/Module/Xrd.php b/Zotlabs/Module/Xrd.php index d71fae695..3ed19962b 100644 --- a/Zotlabs/Module/Xrd.php +++ b/Zotlabs/Module/Xrd.php @@ -43,7 +43,7 @@ class Xrd extends \Zotlabs\Web\Controller { header("Content-type: application/xrd+xml"); - $aliases = array('acct:' . $r[0]['channel_address'] . '@' . \App::get_hostname(), z_root() . '/channel/' . $r[0]['channel_address'], z_root() . '/~' . $r[0]['channel_address']); + $aliases = array('acct:' . channel_reddress($r[0]), z_root() . '/channel/' . $r[0]['channel_address'], z_root() . '/~' . $r[0]['channel_address']); for($x = 0; $x < count($aliases); $x ++) { if($aliases[$x] === $resource) diff --git a/include/channel.php b/include/channel.php index 7bfa2b6a2..ce515c917 100644 --- a/include/channel.php +++ b/include/channel.php @@ -1894,3 +1894,8 @@ function channelx_by_n($id) { return(($r) ? $r[0] : false); } +function channel_reddress($channel) { + if(! ($channel && array_key_exists('channel_address',$channel))) + return ''; + return strtolower($channel['channel_address'] . '@' . App::get_hostname()); +} \ No newline at end of file diff --git a/util/config b/util/config index d4bcd5da1..38d2fed4f 100755 --- a/util/config +++ b/util/config @@ -48,7 +48,11 @@ EndOfOutput; return; } - +if($argc > 1 && strpos($argv[1],'.')) { + $x = explode('.',$argv[1]); + $argv = [ $argv[0], $x[0], $x[1], (($argc > 2) ? $argv[2] : null) ]; + $argc = $argc + 1; +} if($argc > 3) { set_config($argv[1],$argv[2],$argv[3]); diff --git a/util/hmessages.po b/util/hmessages.po index 71cf4ef02..ffd91669f 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-09-09 00:02-0700\n" +"POT-Creation-Date: 2016-09-17 14:51-0700\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -88,12 +88,12 @@ msgid "Special - Group Repository" msgstr "" #: ../../Zotlabs/Access/PermissionRoles.php:204 -#: ../../Zotlabs/Module/New_channel.php:132 #: ../../Zotlabs/Module/Register.php:213 +#: ../../Zotlabs/Module/New_channel.php:132 #: ../../Zotlabs/Module/Settings/Channel.php:442 -#: ../../include/selectors.php:49 ../../include/selectors.php:66 -#: ../../include/selectors.php:104 ../../include/selectors.php:140 -#: ../../include/permissions.php:949 +#: ../../include/permissions.php:949 ../../include/selectors.php:49 +#: ../../include/selectors.php:66 ../../include/selectors.php:104 +#: ../../include/selectors.php:140 msgid "Other" msgstr "" @@ -170,7 +170,7 @@ msgstr "" msgid "parent" msgstr "" -#: ../../Zotlabs/Storage/Browser.php:131 ../../include/text.php:2708 +#: ../../Zotlabs/Storage/Browser.php:131 ../../include/text.php:2711 msgid "Collection" msgstr "" @@ -217,16 +217,16 @@ msgid "Shared" msgstr "" #: ../../Zotlabs/Storage/Browser.php:230 ../../Zotlabs/Storage/Browser.php:323 -#: ../../Zotlabs/Module/Menu.php:118 ../../Zotlabs/Module/New_channel.php:147 +#: ../../Zotlabs/Module/Menu.php:118 ../../Zotlabs/Module/Webpages.php:239 +#: ../../Zotlabs/Module/New_channel.php:147 #: ../../Zotlabs/Module/Blocks.php:159 ../../Zotlabs/Module/Layouts.php:184 -#: ../../Zotlabs/Module/Webpages.php:239 msgid "Create" msgstr "" #: ../../Zotlabs/Storage/Browser.php:231 ../../Zotlabs/Storage/Browser.php:325 #: ../../Zotlabs/Module/Cover_photo.php:357 -#: ../../Zotlabs/Module/Photos.php:816 ../../Zotlabs/Module/Photos.php:1370 #: ../../Zotlabs/Module/Profile_photo.php:390 +#: ../../Zotlabs/Module/Photos.php:816 ../../Zotlabs/Module/Photos.php:1370 #: ../../Zotlabs/Module/Embedphotos.php:159 ../../include/widgets.php:1692 msgid "Upload" msgstr "" @@ -244,7 +244,7 @@ msgid "Type" msgstr "" #: ../../Zotlabs/Storage/Browser.php:237 -#: ../../Zotlabs/Module/Sharedwithme.php:101 ../../include/text.php:1369 +#: ../../Zotlabs/Module/Sharedwithme.php:101 ../../include/text.php:1372 msgid "Size" msgstr "" @@ -254,33 +254,33 @@ msgid "Last Modified" msgstr "" #: ../../Zotlabs/Storage/Browser.php:240 +#: ../../Zotlabs/Module/Admin/Profs.php:154 #: ../../Zotlabs/Module/Connections.php:290 #: ../../Zotlabs/Module/Connections.php:310 #: ../../Zotlabs/Module/Editblock.php:109 #: ../../Zotlabs/Module/Editlayout.php:114 #: ../../Zotlabs/Module/Editwebpage.php:145 ../../Zotlabs/Module/Menu.php:112 -#: ../../Zotlabs/Module/Admin/Profs.php:154 -#: ../../Zotlabs/Module/Blocks.php:160 ../../Zotlabs/Module/Layouts.php:192 -#: ../../Zotlabs/Module/Editpost.php:84 ../../Zotlabs/Module/Webpages.php:240 +#: ../../Zotlabs/Module/Webpages.php:240 ../../Zotlabs/Module/Blocks.php:160 +#: ../../Zotlabs/Module/Layouts.php:192 ../../Zotlabs/Module/Editpost.php:84 #: ../../Zotlabs/Module/Thing.php:260 #: ../../Zotlabs/Module/Settings/Oauth.php:149 ../../Zotlabs/Lib/Apps.php:341 -#: ../../Zotlabs/Lib/ThreadItem.php:106 ../../include/channel.php:959 -#: ../../include/channel.php:963 ../../include/page_widgets.php:9 -#: ../../include/page_widgets.php:39 ../../include/menu.php:113 +#: ../../Zotlabs/Lib/ThreadItem.php:106 ../../include/page_widgets.php:9 +#: ../../include/page_widgets.php:39 ../../include/channel.php:959 +#: ../../include/channel.php:963 ../../include/menu.php:113 msgid "Edit" msgstr "" #: ../../Zotlabs/Storage/Browser.php:241 -#: ../../Zotlabs/Module/Connections.php:263 -#: ../../Zotlabs/Module/Editblock.php:134 -#: ../../Zotlabs/Module/Editlayout.php:137 -#: ../../Zotlabs/Module/Editwebpage.php:170 -#: ../../Zotlabs/Module/Photos.php:1179 ../../Zotlabs/Module/Group.php:177 #: ../../Zotlabs/Module/Admin/Accounts.php:174 #: ../../Zotlabs/Module/Admin/Channels.php:153 #: ../../Zotlabs/Module/Admin/Profs.php:155 -#: ../../Zotlabs/Module/Blocks.php:162 ../../Zotlabs/Module/Webpages.php:242 -#: ../../Zotlabs/Module/Thing.php:261 ../../Zotlabs/Module/Connedit.php:607 +#: ../../Zotlabs/Module/Connections.php:263 +#: ../../Zotlabs/Module/Editblock.php:134 +#: ../../Zotlabs/Module/Editlayout.php:137 +#: ../../Zotlabs/Module/Editwebpage.php:170 ../../Zotlabs/Module/Group.php:177 +#: ../../Zotlabs/Module/Webpages.php:242 ../../Zotlabs/Module/Blocks.php:162 +#: ../../Zotlabs/Module/Connedit.php:607 ../../Zotlabs/Module/Thing.php:261 +#: ../../Zotlabs/Module/Photos.php:1179 #: ../../Zotlabs/Module/Settings/Oauth.php:150 ../../Zotlabs/Lib/Apps.php:342 #: ../../Zotlabs/Lib/ThreadItem.php:126 ../../include/conversation.php:660 msgid "Delete" @@ -314,52 +314,52 @@ msgstr "" #: ../../Zotlabs/Web/Router.php:65 ../../Zotlabs/Web/WebServer.php:128 #: ../../Zotlabs/Module/Achievements.php:34 -#: ../../Zotlabs/Module/Authtest.php:16 ../../Zotlabs/Module/Bookmarks.php:61 -#: ../../Zotlabs/Module/Pdledit.php:29 ../../Zotlabs/Module/Page.php:35 -#: ../../Zotlabs/Module/Page.php:91 ../../Zotlabs/Module/Api.php:12 -#: ../../Zotlabs/Module/Connections.php:33 +#: ../../Zotlabs/Module/Register.php:77 ../../Zotlabs/Module/Authtest.php:16 +#: ../../Zotlabs/Module/Bookmarks.php:61 ../../Zotlabs/Module/Page.php:35 +#: ../../Zotlabs/Module/Page.php:91 ../../Zotlabs/Module/Connections.php:33 #: ../../Zotlabs/Module/Cover_photo.php:277 #: ../../Zotlabs/Module/Cover_photo.php:290 -#: ../../Zotlabs/Module/Network.php:15 ../../Zotlabs/Module/Editblock.php:67 +#: ../../Zotlabs/Module/Editblock.php:67 #: ../../Zotlabs/Module/Editlayout.php:67 #: ../../Zotlabs/Module/Editlayout.php:90 #: ../../Zotlabs/Module/Editwebpage.php:68 #: ../../Zotlabs/Module/Editwebpage.php:89 #: ../../Zotlabs/Module/Editwebpage.php:104 #: ../../Zotlabs/Module/Editwebpage.php:126 ../../Zotlabs/Module/Menu.php:78 -#: ../../Zotlabs/Module/Appman.php:75 ../../Zotlabs/Module/Setup.php:220 -#: ../../Zotlabs/Module/Photos.php:73 ../../Zotlabs/Module/Filestorage.php:23 +#: ../../Zotlabs/Module/Appman.php:75 ../../Zotlabs/Module/Mail.php:121 +#: ../../Zotlabs/Module/Settings.php:59 +#: ../../Zotlabs/Module/Filestorage.php:23 #: ../../Zotlabs/Module/Filestorage.php:78 #: ../../Zotlabs/Module/Filestorage.php:93 #: ../../Zotlabs/Module/Filestorage.php:120 ../../Zotlabs/Module/Group.php:13 -#: ../../Zotlabs/Module/Block.php:26 ../../Zotlabs/Module/Block.php:76 -#: ../../Zotlabs/Module/Invite.php:17 ../../Zotlabs/Module/Invite.php:91 -#: ../../Zotlabs/Module/Locs.php:87 ../../Zotlabs/Module/Like.php:181 +#: ../../Zotlabs/Module/Webpages.php:116 ../../Zotlabs/Module/Block.php:26 +#: ../../Zotlabs/Module/Block.php:76 ../../Zotlabs/Module/Invite.php:17 +#: ../../Zotlabs/Module/Invite.php:91 ../../Zotlabs/Module/Locs.php:87 +#: ../../Zotlabs/Module/Network.php:15 ../../Zotlabs/Module/Like.php:181 #: ../../Zotlabs/Module/Manage.php:10 ../../Zotlabs/Module/Mitem.php:115 -#: ../../Zotlabs/Module/Message.php:18 ../../Zotlabs/Module/Mood.php:116 -#: ../../Zotlabs/Module/Profiles.php:203 ../../Zotlabs/Module/Profiles.php:601 -#: ../../Zotlabs/Module/Events.php:264 ../../Zotlabs/Module/New_channel.php:77 +#: ../../Zotlabs/Module/Message.php:18 ../../Zotlabs/Module/Rate.php:113 +#: ../../Zotlabs/Module/Mood.php:116 ../../Zotlabs/Module/Profiles.php:203 +#: ../../Zotlabs/Module/Profiles.php:601 ../../Zotlabs/Module/Api.php:12 +#: ../../Zotlabs/Module/Events.php:264 ../../Zotlabs/Module/Item.php:214 +#: ../../Zotlabs/Module/Item.php:222 ../../Zotlabs/Module/Item.php:1073 +#: ../../Zotlabs/Module/New_channel.php:77 #: ../../Zotlabs/Module/New_channel.php:104 #: ../../Zotlabs/Module/Notifications.php:70 ../../Zotlabs/Module/Poke.php:137 -#: ../../Zotlabs/Module/Register.php:77 ../../Zotlabs/Module/Profile.php:68 -#: ../../Zotlabs/Module/Profile.php:76 ../../Zotlabs/Module/Rate.php:113 -#: ../../Zotlabs/Module/Blocks.php:73 ../../Zotlabs/Module/Blocks.php:80 -#: ../../Zotlabs/Module/Layouts.php:71 ../../Zotlabs/Module/Layouts.php:78 -#: ../../Zotlabs/Module/Layouts.php:89 +#: ../../Zotlabs/Module/Setup.php:220 ../../Zotlabs/Module/Profile.php:68 +#: ../../Zotlabs/Module/Profile.php:76 ../../Zotlabs/Module/Blocks.php:73 +#: ../../Zotlabs/Module/Blocks.php:80 ../../Zotlabs/Module/Layouts.php:71 +#: ../../Zotlabs/Module/Layouts.php:78 ../../Zotlabs/Module/Layouts.php:89 #: ../../Zotlabs/Module/Profile_photo.php:265 #: ../../Zotlabs/Module/Profile_photo.php:278 -#: ../../Zotlabs/Module/Common.php:39 ../../Zotlabs/Module/Settings.php:59 -#: ../../Zotlabs/Module/Mail.php:121 ../../Zotlabs/Module/Item.php:214 -#: ../../Zotlabs/Module/Item.php:222 ../../Zotlabs/Module/Item.php:1073 -#: ../../Zotlabs/Module/Regmod.php:21 ../../Zotlabs/Module/Editpost.php:17 -#: ../../Zotlabs/Module/Webpages.php:116 +#: ../../Zotlabs/Module/Common.php:39 ../../Zotlabs/Module/Pdledit.php:29 +#: ../../Zotlabs/Module/Connedit.php:395 ../../Zotlabs/Module/Regmod.php:21 +#: ../../Zotlabs/Module/Editpost.php:17 ../../Zotlabs/Module/Channel.php:104 +#: ../../Zotlabs/Module/Channel.php:228 ../../Zotlabs/Module/Channel.php:269 #: ../../Zotlabs/Module/Service_limits.php:11 #: ../../Zotlabs/Module/Thing.php:274 ../../Zotlabs/Module/Thing.php:294 -#: ../../Zotlabs/Module/Thing.php:335 ../../Zotlabs/Module/Channel.php:104 -#: ../../Zotlabs/Module/Channel.php:228 ../../Zotlabs/Module/Channel.php:269 -#: ../../Zotlabs/Module/Sharedwithme.php:11 +#: ../../Zotlabs/Module/Thing.php:335 ../../Zotlabs/Module/Sharedwithme.php:11 #: ../../Zotlabs/Module/Sources.php:74 ../../Zotlabs/Module/Suggest.php:30 -#: ../../Zotlabs/Module/Connedit.php:395 +#: ../../Zotlabs/Module/Photos.php:73 #: ../../Zotlabs/Module/Viewconnections.php:28 #: ../../Zotlabs/Module/Viewconnections.php:33 #: ../../Zotlabs/Module/Viewsrc.php:18 ../../Zotlabs/Module/Chat.php:100 @@ -407,10 +407,10 @@ msgstr "" #: ../../Zotlabs/Module/Editblock.php:31 #: ../../Zotlabs/Module/Editlayout.php:31 #: ../../Zotlabs/Module/Editwebpage.php:32 -#: ../../Zotlabs/Module/Filestorage.php:59 ../../Zotlabs/Module/Hcard.php:12 +#: ../../Zotlabs/Module/Filestorage.php:59 ../../Zotlabs/Module/Connect.php:17 +#: ../../Zotlabs/Module/Webpages.php:33 ../../Zotlabs/Module/Hcard.php:12 #: ../../Zotlabs/Module/Profile.php:20 ../../Zotlabs/Module/Blocks.php:33 -#: ../../Zotlabs/Module/Layouts.php:31 ../../Zotlabs/Module/Connect.php:17 -#: ../../Zotlabs/Module/Webpages.php:33 ../../include/channel.php:859 +#: ../../Zotlabs/Module/Layouts.php:31 ../../include/channel.php:859 msgid "Requested profile is not available." msgstr "" @@ -426,9 +426,69 @@ msgstr "" msgid "Online" msgstr "" -#: ../../Zotlabs/Module/Apps.php:46 ../../include/nav.php:168 -#: ../../include/widgets.php:102 -msgid "Apps" +#: ../../Zotlabs/Module/Dreport.php:44 +msgid "Invalid message" +msgstr "" + +#: ../../Zotlabs/Module/Dreport.php:76 +msgid "no results" +msgstr "" + +#: ../../Zotlabs/Module/Dreport.php:91 +msgid "channel sync processed" +msgstr "" + +#: ../../Zotlabs/Module/Dreport.php:95 +msgid "queued" +msgstr "" + +#: ../../Zotlabs/Module/Dreport.php:99 +msgid "posted" +msgstr "" + +#: ../../Zotlabs/Module/Dreport.php:103 +msgid "accepted for delivery" +msgstr "" + +#: ../../Zotlabs/Module/Dreport.php:107 +msgid "updated" +msgstr "" + +#: ../../Zotlabs/Module/Dreport.php:110 +msgid "update ignored" +msgstr "" + +#: ../../Zotlabs/Module/Dreport.php:113 +msgid "permission denied" +msgstr "" + +#: ../../Zotlabs/Module/Dreport.php:117 +msgid "recipient not found" +msgstr "" + +#: ../../Zotlabs/Module/Dreport.php:120 +msgid "mail recalled" +msgstr "" + +#: ../../Zotlabs/Module/Dreport.php:123 +msgid "duplicate mail received" +msgstr "" + +#: ../../Zotlabs/Module/Dreport.php:126 +msgid "mail delivered" +msgstr "" + +#: ../../Zotlabs/Module/Dreport.php:146 +#, php-format +msgid "Delivery report for %1$s" +msgstr "" + +#: ../../Zotlabs/Module/Dreport.php:149 +msgid "Options" +msgstr "" + +#: ../../Zotlabs/Module/Dreport.php:150 +msgid "Redeliver" msgstr "" #: ../../Zotlabs/Module/Probe.php:28 ../../Zotlabs/Module/Probe.php:32 @@ -436,13 +496,1389 @@ msgstr "" msgid "Fetching URL returns error: %1$s" msgstr "" -#: ../../Zotlabs/Module/Rpost.php:138 ../../Zotlabs/Module/Editpost.php:106 -msgid "Edit post" +#: ../../Zotlabs/Module/Register.php:49 +msgid "Maximum daily site registrations exceeded. Please try again tomorrow." msgstr "" -#: ../../Zotlabs/Module/Directory.php:63 ../../Zotlabs/Module/Display.php:17 -#: ../../Zotlabs/Module/Photos.php:509 ../../Zotlabs/Module/Ratings.php:83 -#: ../../Zotlabs/Module/Search.php:17 +#: ../../Zotlabs/Module/Register.php:55 +msgid "" +"Please indicate acceptance of the Terms of Service. Registration failed." +msgstr "" + +#: ../../Zotlabs/Module/Register.php:89 +msgid "Passwords do not match." +msgstr "" + +#: ../../Zotlabs/Module/Register.php:131 +msgid "" +"Registration successful. Please check your email for validation instructions." +msgstr "" + +#: ../../Zotlabs/Module/Register.php:137 +msgid "Your registration is pending approval by the site owner." +msgstr "" + +#: ../../Zotlabs/Module/Register.php:140 +msgid "Your registration can not be processed." +msgstr "" + +#: ../../Zotlabs/Module/Register.php:184 +msgid "Registration on this hub is disabled." +msgstr "" + +#: ../../Zotlabs/Module/Register.php:193 +msgid "Registration on this hub is by approval only." +msgstr "" + +#: ../../Zotlabs/Module/Register.php:194 +msgid "Register at another affiliated hub." +msgstr "" + +#: ../../Zotlabs/Module/Register.php:204 +msgid "" +"This site has exceeded the number of allowed daily account registrations. " +"Please try again tomorrow." +msgstr "" + +#: ../../Zotlabs/Module/Register.php:221 +msgid "Terms of Service" +msgstr "" + +#: ../../Zotlabs/Module/Register.php:227 +#, php-format +msgid "I accept the %s for this website" +msgstr "" + +#: ../../Zotlabs/Module/Register.php:229 +#, php-format +msgid "I am over 13 years of age and accept the %s for this website" +msgstr "" + +#: ../../Zotlabs/Module/Register.php:233 +msgid "Your email address" +msgstr "" + +#: ../../Zotlabs/Module/Register.php:234 +msgid "Choose a password" +msgstr "" + +#: ../../Zotlabs/Module/Register.php:235 +msgid "Please re-enter your password" +msgstr "" + +#: ../../Zotlabs/Module/Register.php:236 +msgid "Please enter your invitation code" +msgstr "" + +#: ../../Zotlabs/Module/Register.php:237 +#: ../../Zotlabs/Module/New_channel.php:134 +msgid "Name or caption" +msgstr "" + +#: ../../Zotlabs/Module/Register.php:237 +#: ../../Zotlabs/Module/New_channel.php:134 +msgid "" +"Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation " +"Group\"" +msgstr "" + +#: ../../Zotlabs/Module/Register.php:239 +#: ../../Zotlabs/Module/New_channel.php:136 +msgid "Choose a short nickname" +msgstr "" + +#: ../../Zotlabs/Module/Register.php:239 +#: ../../Zotlabs/Module/New_channel.php:136 +#, php-format +msgid "" +"Your nickname will be used to create an easy to remember channel address e." +"g. nickname%s" +msgstr "" + +#: ../../Zotlabs/Module/Register.php:240 +#: ../../Zotlabs/Module/New_channel.php:137 +msgid "Channel role and privacy" +msgstr "" + +#: ../../Zotlabs/Module/Register.php:240 +#: ../../Zotlabs/Module/New_channel.php:137 +msgid "Select a channel role with your privacy requirements." +msgstr "" + +#: ../../Zotlabs/Module/Register.php:240 +#: ../../Zotlabs/Module/New_channel.php:137 +msgid "Read more about roles" +msgstr "" + +#: ../../Zotlabs/Module/Register.php:241 +msgid "no" +msgstr "" + +#: ../../Zotlabs/Module/Register.php:241 +msgid "yes" +msgstr "" + +#: ../../Zotlabs/Module/Register.php:253 +#: ../../Zotlabs/Module/Admin/Site.php:268 +msgid "Registration" +msgstr "" + +#: ../../Zotlabs/Module/Register.php:258 +msgid "Membership on this site is by invitation only." +msgstr "" + +#: ../../Zotlabs/Module/Register.php:270 ../../include/nav.php:152 +#: ../../boot.php:1721 +msgid "Register" +msgstr "" + +#: ../../Zotlabs/Module/Register.php:271 +msgid "" +"This site may require email verification after submitting this form. If you " +"are returned to a login page, please check your email for instructions." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Accounts.php:36 +#, php-format +msgid "%s account blocked/unblocked" +msgid_plural "%s account blocked/unblocked" +msgstr[0] "" +msgstr[1] "" + +#: ../../Zotlabs/Module/Admin/Accounts.php:43 +#, php-format +msgid "%s account deleted" +msgid_plural "%s accounts deleted" +msgstr[0] "" +msgstr[1] "" + +#: ../../Zotlabs/Module/Admin/Accounts.php:79 +msgid "Account not found" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Accounts.php:90 +#, php-format +msgid "Account '%s' deleted" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Accounts.php:98 +#, php-format +msgid "Account '%s' blocked" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Accounts.php:106 +#, php-format +msgid "Account '%s' unblocked" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Accounts.php:165 +#: ../../Zotlabs/Module/Admin/Channels.php:149 +#: ../../Zotlabs/Module/Admin/Logs.php:82 +#: ../../Zotlabs/Module/Admin/Plugins.php:336 +#: ../../Zotlabs/Module/Admin/Plugins.php:427 +#: ../../Zotlabs/Module/Admin/Security.php:86 +#: ../../Zotlabs/Module/Admin/Site.php:265 +#: ../../Zotlabs/Module/Admin/Themes.php:120 +#: ../../Zotlabs/Module/Admin/Themes.php:154 +#: ../../Zotlabs/Module/Admin.php:141 +msgid "Administration" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Accounts.php:166 +#: ../../Zotlabs/Module/Admin/Accounts.php:179 ../../include/widgets.php:1557 +msgid "Accounts" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Accounts.php:167 +#: ../../Zotlabs/Module/Admin/Channels.php:151 +#: ../../Zotlabs/Module/Admin/Features.php:66 +#: ../../Zotlabs/Module/Admin/Logs.php:84 +#: ../../Zotlabs/Module/Admin/Plugins.php:429 +#: ../../Zotlabs/Module/Admin/Profs.php:157 +#: ../../Zotlabs/Module/Admin/Security.php:104 +#: ../../Zotlabs/Module/Admin/Site.php:267 +#: ../../Zotlabs/Module/Admin/Themes.php:156 +#: ../../Zotlabs/Module/Import.php:560 ../../Zotlabs/Module/Appman.php:126 +#: ../../Zotlabs/Module/Mail.php:370 ../../Zotlabs/Module/Filestorage.php:165 +#: ../../Zotlabs/Module/Connect.php:98 ../../Zotlabs/Module/Group.php:85 +#: ../../Zotlabs/Module/Import_items.php:122 +#: ../../Zotlabs/Module/Invite.php:146 ../../Zotlabs/Module/Locs.php:121 +#: ../../Zotlabs/Module/Mitem.php:243 ../../Zotlabs/Module/Rate.php:166 +#: ../../Zotlabs/Module/Mood.php:139 ../../Zotlabs/Module/Profiles.php:687 +#: ../../Zotlabs/Module/Events.php:484 ../../Zotlabs/Module/Poke.php:186 +#: ../../Zotlabs/Module/Setup.php:317 ../../Zotlabs/Module/Setup.php:365 +#: ../../Zotlabs/Module/Pconfig.php:107 ../../Zotlabs/Module/Cal.php:338 +#: ../../Zotlabs/Module/Pdledit.php:74 ../../Zotlabs/Module/Connedit.php:779 +#: ../../Zotlabs/Module/Thing.php:320 ../../Zotlabs/Module/Thing.php:370 +#: ../../Zotlabs/Module/Sources.php:114 ../../Zotlabs/Module/Sources.php:149 +#: ../../Zotlabs/Module/Photos.php:668 ../../Zotlabs/Module/Photos.php:1058 +#: ../../Zotlabs/Module/Photos.php:1098 ../../Zotlabs/Module/Photos.php:1216 +#: ../../Zotlabs/Module/Chat.php:196 ../../Zotlabs/Module/Chat.php:241 +#: ../../Zotlabs/Module/Xchan.php:15 +#: ../../Zotlabs/Module/Settings/Account.php:126 +#: ../../Zotlabs/Module/Settings/Channel.php:452 +#: ../../Zotlabs/Module/Settings/Display.php:194 +#: ../../Zotlabs/Module/Settings/Features.php:47 +#: ../../Zotlabs/Module/Settings/Oauth.php:87 +#: ../../Zotlabs/Module/Settings/Tokens.php:167 +#: ../../Zotlabs/Lib/ThreadItem.php:712 ../../include/js_strings.php:22 +#: ../../include/widgets.php:796 ../../view/theme/redbasic/php/config.php:106 +msgid "Submit" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Accounts.php:168 +#: ../../Zotlabs/Module/Admin/Channels.php:152 +msgid "select all" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Accounts.php:169 +msgid "Registrations waiting for confirm" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Accounts.php:170 +msgid "Request date" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Accounts.php:170 +#: ../../Zotlabs/Module/Admin/Accounts.php:182 ../../include/network.php:2208 +msgid "Email" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Accounts.php:171 +msgid "No registrations." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Accounts.php:172 +#: ../../Zotlabs/Module/Connections.php:275 +msgid "Approve" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Accounts.php:173 +msgid "Deny" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Accounts.php:175 +#: ../../Zotlabs/Module/Connedit.php:575 +msgid "Block" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Accounts.php:176 +#: ../../Zotlabs/Module/Connedit.php:575 +msgid "Unblock" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Accounts.php:181 +msgid "ID" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Accounts.php:183 ../../include/group.php:267 +msgid "All Channels" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Accounts.php:184 +msgid "Register date" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Accounts.php:185 +msgid "Last login" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Accounts.php:186 +msgid "Expires" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Accounts.php:187 +msgid "Service Class" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Accounts.php:189 +msgid "" +"Selected accounts will be deleted!\\n\\nEverything these accounts had posted " +"on this site will be permanently deleted!\\n\\nAre you sure?" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Accounts.php:190 +msgid "" +"The account {0} will be deleted!\\n\\nEverything this account has posted on " +"this site will be permanently deleted!\\n\\nAre you sure?" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Channels.php:30 +#, php-format +msgid "%s channel censored/uncensored" +msgid_plural "%s channels censored/uncensored" +msgstr[0] "" +msgstr[1] "" + +#: ../../Zotlabs/Module/Admin/Channels.php:39 +#, php-format +msgid "%s channel code allowed/disallowed" +msgid_plural "%s channels code allowed/disallowed" +msgstr[0] "" +msgstr[1] "" + +#: ../../Zotlabs/Module/Admin/Channels.php:45 +#, php-format +msgid "%s channel deleted" +msgid_plural "%s channels deleted" +msgstr[0] "" +msgstr[1] "" + +#: ../../Zotlabs/Module/Admin/Channels.php:66 +msgid "Channel not found" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Channels.php:76 +#, php-format +msgid "Channel '%s' deleted" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Channels.php:88 +#, php-format +msgid "Channel '%s' censored" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Channels.php:88 +#, php-format +msgid "Channel '%s' uncensored" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Channels.php:99 +#, php-format +msgid "Channel '%s' code allowed" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Channels.php:99 +#, php-format +msgid "Channel '%s' code disallowed" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Channels.php:150 ../../include/widgets.php:1558 +msgid "Channels" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Channels.php:154 +msgid "Censor" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Channels.php:155 +msgid "Uncensor" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Channels.php:156 +msgid "Allow Code" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Channels.php:157 +msgid "Disallow Code" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Channels.php:158 +#: ../../include/conversation.php:1650 +msgid "Channel" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Channels.php:162 +msgid "UID" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Channels.php:164 +#: ../../Zotlabs/Module/Locs.php:118 ../../Zotlabs/Module/Profiles.php:470 +msgid "Address" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Channels.php:166 +msgid "" +"Selected channels will be deleted!\\n\\nEverything that was posted in these " +"channels on this site will be permanently deleted!\\n\\nAre you sure?" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Channels.php:167 +msgid "" +"The channel {0} will be deleted!\\n\\nEverything that was posted in this " +"channel on this site will be permanently deleted!\\n\\nAre you sure?" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Dbsync.php:19 +msgid "Update has been marked successful" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Dbsync.php:29 +#, php-format +msgid "Executing %s failed. Check system logs." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Dbsync.php:32 +#, php-format +msgid "Update %s was successfully applied." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Dbsync.php:36 +#, php-format +msgid "Update %s did not return a status. Unknown if it succeeded." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Dbsync.php:39 +#, php-format +msgid "Update function %s could not be found." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Dbsync.php:55 +msgid "No failed updates." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Dbsync.php:59 +msgid "Failed Updates" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Dbsync.php:61 +msgid "Mark success (if update was manually applied)" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Dbsync.php:62 +msgid "Attempt to execute this update step automatically" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Features.php:55 +#: ../../Zotlabs/Module/Admin/Features.php:56 +#: ../../Zotlabs/Module/Settings/Features.php:38 +msgid "Off" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Features.php:55 +#: ../../Zotlabs/Module/Admin/Features.php:56 +#: ../../Zotlabs/Module/Settings/Features.php:38 +msgid "On" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Features.php:56 +#, php-format +msgid "Lock feature %s" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Features.php:64 +msgid "Manage Additional Features" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Logs.php:28 +msgid "Log settings updated." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Logs.php:83 ../../include/widgets.php:1583 +#: ../../include/widgets.php:1593 +msgid "Logs" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Logs.php:85 +msgid "Clear" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Logs.php:91 +msgid "Debugging" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Logs.php:92 +msgid "Log file" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Logs.php:92 +msgid "" +"Must be writable by web server. Relative to your top-level webserver " +"directory." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Logs.php:93 +msgid "Log level" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Plugins.php:254 +#: ../../Zotlabs/Module/Admin/Themes.php:69 +#: ../../Zotlabs/Module/Display.php:40 ../../Zotlabs/Module/Filestorage.php:32 +#: ../../Zotlabs/Module/Thing.php:89 ../../Zotlabs/Module/Viewsrc.php:24 +#: ../../Zotlabs/Module/Admin.php:62 ../../include/items.php:3417 +msgid "Item not found." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Plugins.php:284 +#, php-format +msgid "Plugin %s disabled." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Plugins.php:289 +#, php-format +msgid "Plugin %s enabled." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Plugins.php:305 +#: ../../Zotlabs/Module/Admin/Themes.php:93 +msgid "Disable" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Plugins.php:308 +#: ../../Zotlabs/Module/Admin/Themes.php:95 +msgid "Enable" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Plugins.php:337 +#: ../../Zotlabs/Module/Admin/Plugins.php:428 ../../include/widgets.php:1561 +msgid "Plugins" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Plugins.php:338 +#: ../../Zotlabs/Module/Admin/Themes.php:122 +msgid "Toggle" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Plugins.php:339 +#: ../../Zotlabs/Module/Admin/Themes.php:123 ../../Zotlabs/Lib/Apps.php:216 +#: ../../include/nav.php:213 ../../include/widgets.php:680 +msgid "Settings" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Plugins.php:346 +#: ../../Zotlabs/Module/Admin/Themes.php:132 +msgid "Author: " +msgstr "" + +#: ../../Zotlabs/Module/Admin/Plugins.php:347 +#: ../../Zotlabs/Module/Admin/Themes.php:133 +msgid "Maintainer: " +msgstr "" + +#: ../../Zotlabs/Module/Admin/Plugins.php:348 +msgid "Minimum project version: " +msgstr "" + +#: ../../Zotlabs/Module/Admin/Plugins.php:349 +msgid "Maximum project version: " +msgstr "" + +#: ../../Zotlabs/Module/Admin/Plugins.php:350 +msgid "Minimum PHP version: " +msgstr "" + +#: ../../Zotlabs/Module/Admin/Plugins.php:351 +msgid "Compatible Server Roles: " +msgstr "" + +#: ../../Zotlabs/Module/Admin/Plugins.php:352 +msgid "Requires: " +msgstr "" + +#: ../../Zotlabs/Module/Admin/Plugins.php:353 +#: ../../Zotlabs/Module/Admin/Plugins.php:433 +msgid "Disabled - version incompatibility" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Plugins.php:402 +msgid "Enter the public git repository URL of the plugin repo." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Plugins.php:403 +msgid "Plugin repo git URL" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Plugins.php:404 +msgid "Custom repo name" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Plugins.php:404 +msgid "(optional)" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Plugins.php:405 +msgid "Download Plugin Repo" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Plugins.php:412 +msgid "Install new repo" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Plugins.php:413 ../../Zotlabs/Lib/Apps.php:334 +msgid "Install" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Plugins.php:414 +#: ../../Zotlabs/Module/Fbrowser.php:66 ../../Zotlabs/Module/Fbrowser.php:88 +#: ../../Zotlabs/Module/Wiki.php:171 ../../Zotlabs/Module/Wiki.php:211 +#: ../../Zotlabs/Module/Tagrm.php:15 ../../Zotlabs/Module/Tagrm.php:138 +#: ../../Zotlabs/Module/Settings/Oauth.php:88 +#: ../../Zotlabs/Module/Settings/Oauth.php:114 +#: ../../include/conversation.php:1247 ../../include/conversation.php:1296 +msgid "Cancel" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Plugins.php:435 +msgid "Manage Repos" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Plugins.php:436 +msgid "Installed Plugin Repositories" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Plugins.php:437 +msgid "Install a New Plugin Repository" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Plugins.php:443 +#: ../../Zotlabs/Module/Settings/Oauth.php:42 +#: ../../Zotlabs/Module/Settings/Oauth.php:113 ../../Zotlabs/Lib/Apps.php:334 +msgid "Update" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Plugins.php:444 +msgid "Switch branch" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Plugins.php:445 +#: ../../Zotlabs/Module/Tagrm.php:137 ../../Zotlabs/Module/Photos.php:989 +msgid "Remove" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Profs.php:69 +msgid "New Profile Field" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Profs.php:70 +#: ../../Zotlabs/Module/Admin/Profs.php:90 +msgid "Field nickname" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Profs.php:70 +#: ../../Zotlabs/Module/Admin/Profs.php:90 +msgid "System name of field" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Profs.php:71 +#: ../../Zotlabs/Module/Admin/Profs.php:91 +msgid "Input type" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Profs.php:72 +#: ../../Zotlabs/Module/Admin/Profs.php:92 +msgid "Field Name" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Profs.php:72 +#: ../../Zotlabs/Module/Admin/Profs.php:92 +msgid "Label on profile pages" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Profs.php:73 +#: ../../Zotlabs/Module/Admin/Profs.php:93 +msgid "Help text" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Profs.php:73 +#: ../../Zotlabs/Module/Admin/Profs.php:93 +msgid "Additional info (optional)" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Profs.php:74 +#: ../../Zotlabs/Module/Admin/Profs.php:94 ../../Zotlabs/Module/Filer.php:53 +#: ../../Zotlabs/Module/Rbmark.php:32 ../../Zotlabs/Module/Rbmark.php:104 +#: ../../include/text.php:972 ../../include/text.php:984 +#: ../../include/widgets.php:201 +msgid "Save" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Profs.php:83 +msgid "Field definition not found" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Profs.php:89 +msgid "Edit Profile Field" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Profs.php:147 ../../include/widgets.php:1564 +msgid "Profile Fields" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Profs.php:148 +msgid "Basic Profile Fields" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Profs.php:149 +msgid "Advanced Profile Fields" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Profs.php:149 +msgid "(In addition to basic fields)" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Profs.php:151 +msgid "All available fields" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Profs.php:152 +msgid "Custom Fields" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Profs.php:156 +msgid "Create Custom Field" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Queue.php:36 +msgid "Queue Statistics" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Queue.php:37 +msgid "Total Entries" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Queue.php:38 +msgid "Priority" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Queue.php:39 +msgid "Destination URL" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Queue.php:40 +msgid "Mark hub permanently offline" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Queue.php:41 +msgid "Empty queue for this hub" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Queue.php:42 +msgid "Last known contact" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Security.php:77 +msgid "" +"By default, unfiltered HTML is allowed in embedded media. This is inherently " +"insecure." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Security.php:80 +msgid "" +"The recommended setting is to only allow unfiltered HTML from the following " +"sites:" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Security.php:81 +msgid "" +"https://youtube.com/
https://www.youtube.com/
https://youtu.be/" +"
https://vimeo.com/
https://soundcloud.com/
" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Security.php:82 +msgid "" +"All other embedded content will be filtered, unless " +"embedded content from that site is explicitly blocked." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Security.php:87 ../../include/widgets.php:1559 +msgid "Security" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Security.php:89 +msgid "Block public" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Security.php:89 +msgid "" +"Check to block public access to all otherwise public personal pages on this " +"site unless you are currently authenticated." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Security.php:90 +msgid "Set \"Transport Security\" HTTP header" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Security.php:91 +msgid "Set \"Content Security Policy\" HTTP header" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Security.php:92 +msgid "Allowed email domains" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Security.php:92 +msgid "" +"Comma separated list of domains which are allowed in email addresses for " +"registrations to this site. Wildcards are accepted. Empty to allow any " +"domains" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Security.php:93 +msgid "Not allowed email domains" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Security.php:93 +msgid "" +"Comma separated list of domains which are not allowed in email addresses for " +"registrations to this site. Wildcards are accepted. Empty to allow any " +"domains, unless allowed domains have been defined." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Security.php:94 +msgid "Allow communications only from these sites" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Security.php:94 +msgid "" +"One site per line. Leave empty to allow communication from anywhere by " +"default" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Security.php:95 +msgid "Block communications from these sites" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Security.php:96 +msgid "Allow communications only from these channels" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Security.php:96 +msgid "" +"One channel (hash) per line. Leave empty to allow from any channel by default" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Security.php:97 +msgid "Block communications from these channels" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Security.php:98 +msgid "Only allow embeds from secure (SSL) websites and links." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Security.php:99 +msgid "Allow unfiltered embedded HTML content only from these domains" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Security.php:99 +msgid "One site per line. By default embedded content is filtered." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Security.php:100 +msgid "Block embedded HTML from these domains" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:135 +msgid "Site settings updated." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:162 ../../include/text.php:2942 +msgid "Default" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:172 +#: ../../Zotlabs/Module/Settings/Display.php:141 +msgid "mobile" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:174 +msgid "experimental" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:176 +msgid "unsupported" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:221 ../../Zotlabs/Module/Menu.php:100 +#: ../../Zotlabs/Module/Menu.php:157 ../../Zotlabs/Module/Filestorage.php:160 +#: ../../Zotlabs/Module/Filestorage.php:168 ../../Zotlabs/Module/Mitem.php:162 +#: ../../Zotlabs/Module/Mitem.php:163 ../../Zotlabs/Module/Mitem.php:240 +#: ../../Zotlabs/Module/Mitem.php:241 ../../Zotlabs/Module/Profiles.php:647 +#: ../../Zotlabs/Module/Api.php:85 ../../Zotlabs/Module/Events.php:462 +#: ../../Zotlabs/Module/Events.php:463 ../../Zotlabs/Module/Events.php:472 +#: ../../Zotlabs/Module/Connedit.php:408 ../../Zotlabs/Module/Connedit.php:686 +#: ../../Zotlabs/Module/Removeme.php:63 ../../Zotlabs/Module/Photos.php:653 +#: ../../Zotlabs/Module/Settings/Channel.php:289 +#: ../../Zotlabs/Module/Settings/Display.php:101 ../../include/dir_fns.php:143 +#: ../../include/dir_fns.php:144 ../../include/dir_fns.php:145 +#: ../../view/theme/redbasic/php/config.php:111 +#: ../../view/theme/redbasic/php/config.php:136 ../../boot.php:1743 +msgid "No" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:222 +msgid "Yes - with approval" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:223 ../../Zotlabs/Module/Menu.php:100 +#: ../../Zotlabs/Module/Menu.php:157 ../../Zotlabs/Module/Filestorage.php:160 +#: ../../Zotlabs/Module/Filestorage.php:168 ../../Zotlabs/Module/Mitem.php:162 +#: ../../Zotlabs/Module/Mitem.php:163 ../../Zotlabs/Module/Mitem.php:240 +#: ../../Zotlabs/Module/Mitem.php:241 ../../Zotlabs/Module/Profiles.php:647 +#: ../../Zotlabs/Module/Api.php:84 ../../Zotlabs/Module/Events.php:462 +#: ../../Zotlabs/Module/Events.php:463 ../../Zotlabs/Module/Events.php:472 +#: ../../Zotlabs/Module/Connedit.php:408 ../../Zotlabs/Module/Removeme.php:63 +#: ../../Zotlabs/Module/Photos.php:653 +#: ../../Zotlabs/Module/Settings/Channel.php:289 +#: ../../Zotlabs/Module/Settings/Display.php:101 ../../include/dir_fns.php:143 +#: ../../include/dir_fns.php:144 ../../include/dir_fns.php:145 +#: ../../view/theme/redbasic/php/config.php:111 +#: ../../view/theme/redbasic/php/config.php:136 ../../boot.php:1743 +msgid "Yes" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:228 +msgid "My site is not a public server" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:229 +msgid "My site has paid access only" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:230 +msgid "My site has free access only" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:231 +msgid "My site offers free accounts with optional paid upgrades" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:242 ../../Zotlabs/Module/Setup.php:336 +msgid "Basic/Minimal Social Networking" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:243 ../../Zotlabs/Module/Setup.php:337 +msgid "Standard Configuration (default)" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:244 ../../Zotlabs/Module/Setup.php:338 +msgid "Professional" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:249 +#: ../../Zotlabs/Module/Settings/Account.php:105 +msgid "Beginner/Basic" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:250 +#: ../../Zotlabs/Module/Settings/Account.php:106 +msgid "Novice - not skilled but willing to learn" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:251 +#: ../../Zotlabs/Module/Settings/Account.php:107 +msgid "Intermediate - somewhat comfortable" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:252 +#: ../../Zotlabs/Module/Settings/Account.php:108 +msgid "Advanced - very comfortable" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:253 +#: ../../Zotlabs/Module/Settings/Account.php:109 +msgid "Expert - I can write computer code" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:254 +#: ../../Zotlabs/Module/Settings/Account.php:110 +msgid "Wizard - I probably know more than you do" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:266 ../../include/widgets.php:1556 +msgid "Site" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:269 +msgid "File upload" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:270 +msgid "Policies" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:271 +#: ../../include/contact_widgets.php:16 +msgid "Advanced" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:275 +msgid "Site name" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:277 ../../Zotlabs/Module/Setup.php:359 +msgid "Server Configuration/Role" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:279 +msgid "Site default technical skill level" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:279 +msgid "Used to provide a member experience matched to technical comfort level" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:281 +msgid "Lock the technical skill level setting" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:281 +msgid "Members can set their own technical comfort level by default" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:284 +msgid "Banner/Logo" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:285 +msgid "Administrator Information" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:285 +msgid "" +"Contact information for site administrators. Displayed on siteinfo page. " +"BBCode can be used here" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:286 +msgid "System language" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:287 +msgid "System theme" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:287 +msgid "" +"Default system theme - may be over-ridden by user profiles - change theme settings" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:288 +msgid "Mobile system theme" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:288 +msgid "Theme for mobile devices" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:290 +msgid "Allow Feeds as Connections" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:290 +msgid "(Heavy system resource usage)" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:291 +msgid "Maximum image size" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:291 +msgid "" +"Maximum size in bytes of uploaded images. Default is 0, which means no " +"limits." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:292 +msgid "Does this site allow new member registration?" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:293 +msgid "Invitation only" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:293 +msgid "" +"Only allow new member registrations with an invitation code. Above register " +"policy must be set to Yes." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:294 +msgid "Which best describes the types of account offered by this hub?" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:295 +msgid "Register text" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:295 +msgid "Will be displayed prominently on the registration page." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:296 +msgid "Site homepage to show visitors (default: login box)" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:296 +msgid "" +"example: 'public' to show public stream, 'page/sys/home' to show a system " +"webpage called 'home' or 'include:home.html' to include a file." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:297 +msgid "Preserve site homepage URL" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:297 +msgid "" +"Present the site homepage in a frame at the original location instead of " +"redirecting" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:298 +msgid "Accounts abandoned after x days" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:298 +msgid "" +"Will not waste system resources polling external sites for abandonded " +"accounts. Enter 0 for no time limit." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:299 +msgid "Allowed friend domains" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:299 +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/Admin/Site.php:300 +msgid "Verify Email Addresses" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:300 +msgid "" +"Check to verify email addresses used in account registration (recommended)." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:301 +msgid "Force publish" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:301 +msgid "" +"Check to force all profiles on this site to be listed in the site directory." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:302 +msgid "Import Public Streams" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:302 +msgid "" +"Import and allow access to public content pulled from other sites. Warning: " +"this content is unmoderated." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:303 +msgid "Login on Homepage" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:303 +msgid "" +"Present a login box to visitors on the home page if no other content has " +"been configured." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:304 +msgid "Enable context help" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:304 +msgid "" +"Display contextual help for the current page when the help button is pressed." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:306 +msgid "Directory Server URL" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:306 +msgid "Default directory server" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:308 +msgid "Proxy user" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:309 +msgid "Proxy URL" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:310 +msgid "Network timeout" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:310 +msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:311 +msgid "Delivery interval" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:311 +msgid "" +"Delay background delivery processes by this many seconds to reduce system " +"load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 " +"for large dedicated servers." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:312 +msgid "Deliveries per process" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:312 +msgid "" +"Number of deliveries to attempt in a single operating system process. Adjust " +"if necessary to tune system performance. Recommend: 1-5." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:313 +msgid "Poll interval" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:313 +msgid "" +"Delay background polling processes by this many seconds to reduce system " +"load. If 0, use delivery interval." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:314 +msgid "Maximum Load Average" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:314 +msgid "" +"Maximum system load before delivery and poll processes are deferred - " +"default 50." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:315 +msgid "Expiration period in days for imported (grid/network) content" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:315 +msgid "0 for no expiration of imported content" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Themes.php:18 +msgid "Theme settings updated." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Themes.php:58 +msgid "No themes found." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Themes.php:114 +msgid "Screenshot" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Themes.php:121 +#: ../../Zotlabs/Module/Admin/Themes.php:155 ../../include/widgets.php:1562 +msgid "Themes" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Themes.php:160 +msgid "[Experimental]" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Themes.php:161 +msgid "[Unsupported]" +msgstr "" + +#: ../../Zotlabs/Module/Import.php:33 +#, php-format +msgid "Your service plan only allows %d channels." +msgstr "" + +#: ../../Zotlabs/Module/Import.php:71 ../../Zotlabs/Module/Import_items.php:42 +msgid "Nothing to import." +msgstr "" + +#: ../../Zotlabs/Module/Import.php:95 ../../Zotlabs/Module/Import_items.php:66 +msgid "Unable to download data from old server" +msgstr "" + +#: ../../Zotlabs/Module/Import.php:101 +#: ../../Zotlabs/Module/Import_items.php:72 +msgid "Imported file is empty." +msgstr "" + +#: ../../Zotlabs/Module/Import.php:123 +#: ../../Zotlabs/Module/Import_items.php:88 +#, php-format +msgid "Warning: Database versions differ by %1$d updates." +msgstr "" + +#: ../../Zotlabs/Module/Import.php:153 ../../include/import.php:107 +msgid "Cloned channel not found. Import failed." +msgstr "" + +#: ../../Zotlabs/Module/Import.php:163 +msgid "No channel. Import failed." +msgstr "" + +#: ../../Zotlabs/Module/Import.php:520 +#: ../../include/Import/import_diaspora.php:142 +msgid "Import completed." +msgstr "" + +#: ../../Zotlabs/Module/Import.php:542 +msgid "You must be logged in to use this feature." +msgstr "" + +#: ../../Zotlabs/Module/Import.php:547 +msgid "Import Channel" +msgstr "" + +#: ../../Zotlabs/Module/Import.php:548 +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/Import.php:549 +#: ../../Zotlabs/Module/Import_items.php:121 +msgid "File to Upload" +msgstr "" + +#: ../../Zotlabs/Module/Import.php:550 +msgid "Or provide the old server/hub details" +msgstr "" + +#: ../../Zotlabs/Module/Import.php:551 +msgid "Your old identity address (xyz@example.com)" +msgstr "" + +#: ../../Zotlabs/Module/Import.php:552 +msgid "Your old login email address" +msgstr "" + +#: ../../Zotlabs/Module/Import.php:553 +msgid "Your old login password" +msgstr "" + +#: ../../Zotlabs/Module/Import.php:554 +msgid "" +"For either option, please choose whether to make this hub your new primary " +"address, or whether your old location should continue this role. You will be " +"able to post from either location, but only one can be marked as the primary " +"location for files, photos, and media." +msgstr "" + +#: ../../Zotlabs/Module/Import.php:555 +msgid "Make this hub my primary location" +msgstr "" + +#: ../../Zotlabs/Module/Import.php:556 +msgid "" +"Import existing posts if possible (experimental - limited by available memory" +msgstr "" + +#: ../../Zotlabs/Module/Import.php:557 +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/Directory.php:63 ../../Zotlabs/Module/Ratings.php:83 +#: ../../Zotlabs/Module/Display.php:17 ../../Zotlabs/Module/Search.php:17 +#: ../../Zotlabs/Module/Photos.php:509 #: ../../Zotlabs/Module/Viewconnections.php:23 msgid "Public access denied." msgstr "" @@ -470,9 +1906,9 @@ msgstr "" msgid "Age:" msgstr "" -#: ../../Zotlabs/Module/Directory.php:311 ../../include/channel.php:1049 -#: ../../include/bb2diaspora.php:507 ../../include/event.php:52 -#: ../../include/event.php:84 +#: ../../Zotlabs/Module/Directory.php:311 ../../include/event.php:52 +#: ../../include/event.php:84 ../../include/bb2diaspora.php:507 +#: ../../include/channel.php:1049 msgid "Location:" msgstr "" @@ -567,95 +2003,6 @@ msgstr "" msgid "No entries (some entries may be hidden)." msgstr "" -#: ../../Zotlabs/Module/Admin.php:62 ../../Zotlabs/Module/Display.php:40 -#: ../../Zotlabs/Module/Filestorage.php:32 -#: ../../Zotlabs/Module/Admin/Plugins.php:254 -#: ../../Zotlabs/Module/Admin/Themes.php:69 ../../Zotlabs/Module/Thing.php:89 -#: ../../Zotlabs/Module/Viewsrc.php:24 ../../include/items.php:3417 -msgid "Item not found." -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:97 -msgid "# Accounts" -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:98 -msgid "# blocked accounts" -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:99 -msgid "# expired accounts" -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:100 -msgid "# expiring accounts" -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:111 -msgid "# Channels" -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:112 -msgid "# primary" -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:113 -msgid "# clones" -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:119 -msgid "Message queues" -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:136 -msgid "Your software should be updated" -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:141 -#: ../../Zotlabs/Module/Admin/Accounts.php:165 -#: ../../Zotlabs/Module/Admin/Channels.php:149 -#: ../../Zotlabs/Module/Admin/Logs.php:82 -#: ../../Zotlabs/Module/Admin/Plugins.php:336 -#: ../../Zotlabs/Module/Admin/Plugins.php:427 -#: ../../Zotlabs/Module/Admin/Security.php:86 -#: ../../Zotlabs/Module/Admin/Site.php:265 -#: ../../Zotlabs/Module/Admin/Themes.php:120 -#: ../../Zotlabs/Module/Admin/Themes.php:154 -msgid "Administration" -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:142 -msgid "Summary" -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:145 -msgid "Registered accounts" -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:146 -msgid "Pending registrations" -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:147 -msgid "Registered channels" -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:148 -msgid "Active plugins" -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:149 -msgid "Version" -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:150 -msgid "Repository version (master)" -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:151 -msgid "Repository version (dev)" -msgstr "" - #: ../../Zotlabs/Module/Bookmarks.php:53 msgid "Bookmark added" msgstr "" @@ -668,119 +2015,29 @@ msgstr "" msgid "My Connections Bookmarks" msgstr "" -#: ../../Zotlabs/Module/Pubsites.php:24 ../../include/widgets.php:1392 -msgid "Public Hubs" +#: ../../Zotlabs/Module/Rpost.php:138 ../../Zotlabs/Module/Editpost.php:106 +msgid "Edit post" msgstr "" -#: ../../Zotlabs/Module/Pubsites.php:27 -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/Ratings.php:70 +msgid "No ratings" msgstr "" -#: ../../Zotlabs/Module/Pubsites.php:33 -msgid "Hub URL" -msgstr "" - -#: ../../Zotlabs/Module/Pubsites.php:33 -msgid "Access Type" -msgstr "" - -#: ../../Zotlabs/Module/Pubsites.php:33 -msgid "Registration Policy" -msgstr "" - -#: ../../Zotlabs/Module/Pubsites.php:33 -msgid "Stats" -msgstr "" - -#: ../../Zotlabs/Module/Pubsites.php:33 -msgid "Software" -msgstr "" - -#: ../../Zotlabs/Module/Pubsites.php:35 ../../Zotlabs/Module/Ratings.php:97 +#: ../../Zotlabs/Module/Ratings.php:97 ../../Zotlabs/Module/Pubsites.php:35 #: ../../include/conversation.php:960 msgid "Ratings" msgstr "" -#: ../../Zotlabs/Module/Pubsites.php:48 -msgid "Rate" +#: ../../Zotlabs/Module/Ratings.php:98 +msgid "Rating: " msgstr "" -#: ../../Zotlabs/Module/Pubsites.php:51 ../../Zotlabs/Module/Locs.php:117 -#: ../../Zotlabs/Module/Profiles.php:477 ../../Zotlabs/Module/Profiles.php:698 -#: ../../Zotlabs/Module/Events.php:467 ../../include/js_strings.php:25 -msgid "Location" +#: ../../Zotlabs/Module/Ratings.php:99 +msgid "Website: " msgstr "" -#: ../../Zotlabs/Module/Pubsites.php:59 ../../Zotlabs/Module/Events.php:680 -#: ../../Zotlabs/Module/Blocks.php:166 ../../Zotlabs/Module/Layouts.php:197 -#: ../../Zotlabs/Module/Webpages.php:246 ../../include/page_widgets.php:42 -msgid "View" -msgstr "" - -#: ../../Zotlabs/Module/Pdledit.php:21 -msgid "Layout updated." -msgstr "" - -#: ../../Zotlabs/Module/Pdledit.php:34 ../../Zotlabs/Module/Chat.php:218 -msgid "Feature disabled." -msgstr "" - -#: ../../Zotlabs/Module/Pdledit.php:42 ../../Zotlabs/Module/Pdledit.php:69 -msgid "Edit System Page Description" -msgstr "" - -#: ../../Zotlabs/Module/Pdledit.php:64 -msgid "Layout not found." -msgstr "" - -#: ../../Zotlabs/Module/Pdledit.php:70 -msgid "Module Name:" -msgstr "" - -#: ../../Zotlabs/Module/Pdledit.php:71 -msgid "Layout Help" -msgstr "" - -#: ../../Zotlabs/Module/Pdledit.php:74 ../../Zotlabs/Module/Appman.php:126 -#: ../../Zotlabs/Module/Setup.php:317 ../../Zotlabs/Module/Setup.php:365 -#: ../../Zotlabs/Module/Photos.php:668 ../../Zotlabs/Module/Photos.php:1058 -#: ../../Zotlabs/Module/Photos.php:1098 ../../Zotlabs/Module/Photos.php:1216 -#: ../../Zotlabs/Module/Filestorage.php:165 ../../Zotlabs/Module/Group.php:85 -#: ../../Zotlabs/Module/Import_items.php:122 -#: ../../Zotlabs/Module/Invite.php:146 ../../Zotlabs/Module/Locs.php:121 -#: ../../Zotlabs/Module/Mitem.php:243 ../../Zotlabs/Module/Mood.php:139 -#: ../../Zotlabs/Module/Profiles.php:687 -#: ../../Zotlabs/Module/Admin/Accounts.php:167 -#: ../../Zotlabs/Module/Admin/Channels.php:151 -#: ../../Zotlabs/Module/Admin/Features.php:66 -#: ../../Zotlabs/Module/Admin/Logs.php:84 -#: ../../Zotlabs/Module/Admin/Plugins.php:429 -#: ../../Zotlabs/Module/Admin/Profs.php:157 -#: ../../Zotlabs/Module/Admin/Security.php:104 -#: ../../Zotlabs/Module/Admin/Site.php:267 -#: ../../Zotlabs/Module/Admin/Themes.php:156 -#: ../../Zotlabs/Module/Events.php:484 ../../Zotlabs/Module/Import.php:560 -#: ../../Zotlabs/Module/Poke.php:186 ../../Zotlabs/Module/Pconfig.php:107 -#: ../../Zotlabs/Module/Rate.php:166 ../../Zotlabs/Module/Cal.php:338 -#: ../../Zotlabs/Module/Mail.php:370 ../../Zotlabs/Module/Connect.php:98 -#: ../../Zotlabs/Module/Thing.php:320 ../../Zotlabs/Module/Thing.php:370 -#: ../../Zotlabs/Module/Sources.php:114 ../../Zotlabs/Module/Sources.php:149 -#: ../../Zotlabs/Module/Connedit.php:779 ../../Zotlabs/Module/Chat.php:196 -#: ../../Zotlabs/Module/Chat.php:241 ../../Zotlabs/Module/Xchan.php:15 -#: ../../Zotlabs/Module/Settings/Account.php:126 -#: ../../Zotlabs/Module/Settings/Channel.php:452 -#: ../../Zotlabs/Module/Settings/Display.php:194 -#: ../../Zotlabs/Module/Settings/Features.php:47 -#: ../../Zotlabs/Module/Settings/Oauth.php:87 -#: ../../Zotlabs/Module/Settings/Tokens.php:167 -#: ../../Zotlabs/Lib/ThreadItem.php:712 ../../include/js_strings.php:22 -#: ../../include/widgets.php:796 ../../view/theme/redbasic/php/config.php:106 -msgid "Submit" +#: ../../Zotlabs/Module/Ratings.php:101 +msgid "Description: " msgstr "" #: ../../Zotlabs/Module/Fbrowser.php:29 ../../Zotlabs/Lib/Apps.php:222 @@ -788,16 +2045,6 @@ msgstr "" msgid "Photos" msgstr "" -#: ../../Zotlabs/Module/Fbrowser.php:66 ../../Zotlabs/Module/Fbrowser.php:88 -#: ../../Zotlabs/Module/Admin/Plugins.php:414 -#: ../../Zotlabs/Module/Wiki.php:171 ../../Zotlabs/Module/Wiki.php:211 -#: ../../Zotlabs/Module/Tagrm.php:15 ../../Zotlabs/Module/Tagrm.php:138 -#: ../../Zotlabs/Module/Settings/Oauth.php:88 -#: ../../Zotlabs/Module/Settings/Oauth.php:114 -#: ../../include/conversation.php:1247 ../../include/conversation.php:1296 -msgid "Cancel" -msgstr "" - #: ../../Zotlabs/Module/Page.php:40 ../../Zotlabs/Module/Block.php:31 msgid "Invalid item." msgstr "" @@ -825,66 +2072,6 @@ msgstr "" msgid "- select -" msgstr "" -#: ../../Zotlabs/Module/Filer.php:53 ../../Zotlabs/Module/Admin/Profs.php:74 -#: ../../Zotlabs/Module/Admin/Profs.php:94 ../../Zotlabs/Module/Rbmark.php:32 -#: ../../Zotlabs/Module/Rbmark.php:104 ../../include/text.php:969 -#: ../../include/text.php:981 ../../include/widgets.php:201 -msgid "Save" -msgstr "" - -#: ../../Zotlabs/Module/Api.php:60 ../../Zotlabs/Module/Api.php:81 -msgid "Authorize application connection" -msgstr "" - -#: ../../Zotlabs/Module/Api.php:61 -msgid "Return to your app and insert this Security Code:" -msgstr "" - -#: ../../Zotlabs/Module/Api.php:71 -msgid "Please login to continue." -msgstr "" - -#: ../../Zotlabs/Module/Api.php:83 -msgid "" -"Do you want to authorize this application to access your posts and contacts, " -"and/or create new posts for you?" -msgstr "" - -#: ../../Zotlabs/Module/Api.php:84 ../../Zotlabs/Module/Menu.php:100 -#: ../../Zotlabs/Module/Menu.php:157 ../../Zotlabs/Module/Photos.php:653 -#: ../../Zotlabs/Module/Filestorage.php:160 -#: ../../Zotlabs/Module/Filestorage.php:168 ../../Zotlabs/Module/Mitem.php:162 -#: ../../Zotlabs/Module/Mitem.php:163 ../../Zotlabs/Module/Mitem.php:240 -#: ../../Zotlabs/Module/Mitem.php:241 ../../Zotlabs/Module/Profiles.php:647 -#: ../../Zotlabs/Module/Admin/Site.php:223 ../../Zotlabs/Module/Events.php:462 -#: ../../Zotlabs/Module/Events.php:463 ../../Zotlabs/Module/Events.php:472 -#: ../../Zotlabs/Module/Removeme.php:63 ../../Zotlabs/Module/Connedit.php:408 -#: ../../Zotlabs/Module/Settings/Channel.php:289 -#: ../../Zotlabs/Module/Settings/Display.php:101 ../../include/dir_fns.php:143 -#: ../../include/dir_fns.php:144 ../../include/dir_fns.php:145 -#: ../../view/theme/redbasic/php/config.php:111 -#: ../../view/theme/redbasic/php/config.php:136 ../../boot.php:1743 -msgid "Yes" -msgstr "" - -#: ../../Zotlabs/Module/Api.php:85 ../../Zotlabs/Module/Menu.php:100 -#: ../../Zotlabs/Module/Menu.php:157 ../../Zotlabs/Module/Photos.php:653 -#: ../../Zotlabs/Module/Filestorage.php:160 -#: ../../Zotlabs/Module/Filestorage.php:168 ../../Zotlabs/Module/Mitem.php:162 -#: ../../Zotlabs/Module/Mitem.php:163 ../../Zotlabs/Module/Mitem.php:240 -#: ../../Zotlabs/Module/Mitem.php:241 ../../Zotlabs/Module/Profiles.php:647 -#: ../../Zotlabs/Module/Admin/Site.php:221 ../../Zotlabs/Module/Events.php:462 -#: ../../Zotlabs/Module/Events.php:463 ../../Zotlabs/Module/Events.php:472 -#: ../../Zotlabs/Module/Removeme.php:63 ../../Zotlabs/Module/Connedit.php:408 -#: ../../Zotlabs/Module/Connedit.php:686 -#: ../../Zotlabs/Module/Settings/Channel.php:289 -#: ../../Zotlabs/Module/Settings/Display.php:101 ../../include/dir_fns.php:143 -#: ../../include/dir_fns.php:144 ../../include/dir_fns.php:145 -#: ../../view/theme/redbasic/php/config.php:111 -#: ../../view/theme/redbasic/php/config.php:136 ../../boot.php:1743 -msgid "No" -msgstr "" - #: ../../Zotlabs/Module/Connections.php:56 #: ../../Zotlabs/Module/Connections.php:161 #: ../../Zotlabs/Module/Connections.php:242 @@ -991,11 +2178,6 @@ msgstr "" msgid "Approve connection" msgstr "" -#: ../../Zotlabs/Module/Connections.php:275 -#: ../../Zotlabs/Module/Admin/Accounts.php:172 -msgid "Approve" -msgstr "" - #: ../../Zotlabs/Module/Connections.php:276 msgid "Ignore connection" msgstr "" @@ -1011,14 +2193,14 @@ msgid "Recent activity" msgstr "" #: ../../Zotlabs/Module/Connections.php:302 ../../Zotlabs/Lib/Apps.php:209 -#: ../../include/text.php:898 ../../include/nav.php:191 +#: ../../include/nav.php:191 ../../include/text.php:901 msgid "Connections" msgstr "" #: ../../Zotlabs/Module/Connections.php:306 ../../Zotlabs/Module/Search.php:44 -#: ../../Zotlabs/Lib/Apps.php:230 ../../include/text.php:968 -#: ../../include/text.php:980 ../../include/nav.php:170 -#: ../../include/acl_selectors.php:174 ../../include/widgets.php:315 +#: ../../Zotlabs/Lib/Apps.php:230 ../../include/nav.php:170 +#: ../../include/acl_selectors.php:174 ../../include/text.php:971 +#: ../../include/text.php:983 ../../include/widgets.php:315 msgid "Search" msgstr "" @@ -1139,42 +2321,6 @@ msgstr "" msgid "Done Editing" msgstr "" -#: ../../Zotlabs/Module/Network.php:95 -msgid "No such group" -msgstr "" - -#: ../../Zotlabs/Module/Network.php:135 -msgid "No such channel" -msgstr "" - -#: ../../Zotlabs/Module/Network.php:140 -msgid "forum" -msgstr "" - -#: ../../Zotlabs/Module/Network.php:152 -msgid "Search Results For:" -msgstr "" - -#: ../../Zotlabs/Module/Network.php:218 -msgid "Privacy group is empty" -msgstr "" - -#: ../../Zotlabs/Module/Network.php:227 -msgid "Privacy group: " -msgstr "" - -#: ../../Zotlabs/Module/Network.php:253 -msgid "Invalid connection." -msgstr "" - -#: ../../Zotlabs/Module/Dirsearch.php:25 ../../Zotlabs/Module/Regdir.php:49 -msgid "This site is not a directory server" -msgstr "" - -#: ../../Zotlabs/Module/Dirsearch.php:33 -msgid "This directory server requires an access token" -msgstr "" - #: ../../Zotlabs/Module/Editblock.php:79 ../../Zotlabs/Module/Editblock.php:95 #: ../../Zotlabs/Module/Editlayout.php:79 #: ../../Zotlabs/Module/Editwebpage.php:80 @@ -1260,7 +2406,7 @@ msgstr "" msgid "Submit and proceed" msgstr "" -#: ../../Zotlabs/Module/Menu.php:107 ../../include/text.php:2306 +#: ../../Zotlabs/Module/Menu.php:107 ../../include/text.php:2309 msgid "Menus" msgstr "" @@ -1268,14 +2414,14 @@ msgstr "" msgid "Drop" msgstr "" -#: ../../Zotlabs/Module/Menu.php:114 ../../Zotlabs/Module/Blocks.php:157 -#: ../../Zotlabs/Module/Layouts.php:190 ../../Zotlabs/Module/Webpages.php:251 +#: ../../Zotlabs/Module/Menu.php:114 ../../Zotlabs/Module/Webpages.php:251 +#: ../../Zotlabs/Module/Blocks.php:157 ../../Zotlabs/Module/Layouts.php:190 #: ../../include/page_widgets.php:47 msgid "Created" msgstr "" -#: ../../Zotlabs/Module/Menu.php:115 ../../Zotlabs/Module/Blocks.php:158 -#: ../../Zotlabs/Module/Layouts.php:191 ../../Zotlabs/Module/Webpages.php:252 +#: ../../Zotlabs/Module/Menu.php:115 ../../Zotlabs/Module/Webpages.php:252 +#: ../../Zotlabs/Module/Blocks.php:158 ../../Zotlabs/Module/Layouts.php:191 #: ../../include/page_widgets.php:48 msgid "Edited" msgstr "" @@ -1401,764 +2547,122 @@ msgstr "" msgid "Location (URL) to purchase app" msgstr "" -#: ../../Zotlabs/Module/Setup.php:184 -msgid "$Projectname Server - Setup" +#: ../../Zotlabs/Module/Mail.php:38 +msgid "Unable to lookup recipient." msgstr "" -#: ../../Zotlabs/Module/Setup.php:188 -msgid "Could not connect to database." +#: ../../Zotlabs/Module/Mail.php:45 +msgid "Unable to communicate with requested channel." msgstr "" -#: ../../Zotlabs/Module/Setup.php:192 +#: ../../Zotlabs/Module/Mail.php:52 +msgid "Cannot verify requested channel." +msgstr "" + +#: ../../Zotlabs/Module/Mail.php:70 +msgid "Selected channel has private message restrictions. Send failed." +msgstr "" + +#: ../../Zotlabs/Module/Mail.php:135 +msgid "Messages" +msgstr "" + +#: ../../Zotlabs/Module/Mail.php:170 +msgid "Message recalled." +msgstr "" + +#: ../../Zotlabs/Module/Mail.php:183 +msgid "Conversation removed." +msgstr "" + +#: ../../Zotlabs/Module/Mail.php:197 ../../Zotlabs/Module/Mail.php:306 +#: ../../Zotlabs/Module/Chat.php:205 ../../include/conversation.php:1183 +msgid "Please enter a link URL:" +msgstr "" + +#: ../../Zotlabs/Module/Mail.php:198 ../../Zotlabs/Module/Mail.php:307 +msgid "Expires YYYY-MM-DD HH:MM" +msgstr "" + +#: ../../Zotlabs/Module/Mail.php:226 +msgid "Requested channel is not in this network" +msgstr "" + +#: ../../Zotlabs/Module/Mail.php:234 +msgid "Send Private Message" +msgstr "" + +#: ../../Zotlabs/Module/Mail.php:235 ../../Zotlabs/Module/Mail.php:360 +msgid "To:" +msgstr "" + +#: ../../Zotlabs/Module/Mail.php:238 ../../Zotlabs/Module/Mail.php:362 +msgid "Subject:" +msgstr "" + +#: ../../Zotlabs/Module/Mail.php:241 ../../Zotlabs/Module/Invite.php:135 +msgid "Your message:" +msgstr "" + +#: ../../Zotlabs/Module/Mail.php:243 ../../Zotlabs/Module/Mail.php:368 +#: ../../include/conversation.php:1243 +msgid "Attach file" +msgstr "" + +#: ../../Zotlabs/Module/Mail.php:245 +msgid "Send" +msgstr "" + +#: ../../Zotlabs/Module/Mail.php:248 ../../Zotlabs/Module/Mail.php:373 +#: ../../include/conversation.php:1288 +msgid "Set expiration date" +msgstr "" + +#: ../../Zotlabs/Module/Mail.php:250 ../../Zotlabs/Module/Mail.php:375 +#: ../../Zotlabs/Module/Chat.php:206 ../../Zotlabs/Lib/ThreadItem.php:724 +#: ../../include/conversation.php:1293 +msgid "Encrypt text" +msgstr "" + +#: ../../Zotlabs/Module/Mail.php:332 +msgid "Delete message" +msgstr "" + +#: ../../Zotlabs/Module/Mail.php:333 +msgid "Delivery report" +msgstr "" + +#: ../../Zotlabs/Module/Mail.php:334 +msgid "Recall message" +msgstr "" + +#: ../../Zotlabs/Module/Mail.php:336 +msgid "Message has been recalled." +msgstr "" + +#: ../../Zotlabs/Module/Mail.php:353 +msgid "Delete Conversation" +msgstr "" + +#: ../../Zotlabs/Module/Mail.php:355 msgid "" -"Could not connect to specified site URL. Possible SSL certificate or DNS " -"issue." +"No secure communications available. You may be able to " +"respond from the sender's profile page." msgstr "" -#: ../../Zotlabs/Module/Setup.php:199 -msgid "Could not create table." +#: ../../Zotlabs/Module/Mail.php:359 +msgid "Send Reply" msgstr "" -#: ../../Zotlabs/Module/Setup.php:204 -msgid "Your site database has been installed." -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:208 -msgid "" -"You may need to import the file \"install/schema_xxx.sql\" manually using a " -"database client." -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:209 ../../Zotlabs/Module/Setup.php:271 -#: ../../Zotlabs/Module/Setup.php:734 -msgid "Please see the file \"install/INSTALL.txt\"." -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:268 -msgid "System check" -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:272 ../../Zotlabs/Module/Photos.php:949 -#: ../../Zotlabs/Module/Events.php:676 ../../Zotlabs/Module/Events.php:685 -#: ../../Zotlabs/Module/Cal.php:333 ../../Zotlabs/Module/Cal.php:340 -msgid "Next" -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:273 -msgid "Check again" -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:295 -msgid "Database connection" -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:296 -msgid "" -"In order to install $Projectname we need to know how to connect to your " -"database." -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:297 -msgid "" -"Please contact your hosting provider or site administrator if you have " -"questions about these settings." -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:298 -msgid "" -"The database you specify below should already exist. If it does not, please " -"create it before continuing." -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:302 -msgid "Database Server Name" -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:302 -msgid "Default is 127.0.0.1" -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:303 -msgid "Database Port" -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:303 -msgid "Communication port number - use 0 for default" -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:304 -msgid "Database Login Name" -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:305 -msgid "Database Login Password" -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:306 -msgid "Database Name" -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:307 -msgid "Database Type" -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:309 ../../Zotlabs/Module/Setup.php:355 -msgid "Site administrator email address" -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:309 ../../Zotlabs/Module/Setup.php:355 -msgid "" -"Your account email address must match this in order to use the web admin " -"panel." -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:310 ../../Zotlabs/Module/Setup.php:357 -msgid "Website URL" -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:310 ../../Zotlabs/Module/Setup.php:357 -msgid "Please use SSL (https) URL if available." -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:311 ../../Zotlabs/Module/Setup.php:361 -msgid "Please select a default timezone for your website" -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:336 ../../Zotlabs/Module/Admin/Site.php:242 -msgid "Basic/Minimal Social Networking" -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:337 ../../Zotlabs/Module/Admin/Site.php:243 -msgid "Standard Configuration (default)" -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:338 ../../Zotlabs/Module/Admin/Site.php:244 -msgid "Professional" -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:344 -msgid "Site settings" -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:359 ../../Zotlabs/Module/Admin/Site.php:277 -msgid "Server Configuration/Role" -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:400 -msgid "PHP version 5.5 or greater is required." -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:401 -msgid "PHP version" -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:416 -msgid "Could not find a command line version of PHP in the web server PATH." -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:417 -msgid "" -"If you don't have a command line version of PHP installed on server, you " -"will not be able to run background polling via cron." -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:421 -msgid "PHP executable path" -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:421 -msgid "" -"Enter full path to php executable. You can leave this blank to continue the " -"installation." -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:426 -msgid "Command line PHP" -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:435 -msgid "" -"The command line version of PHP on your system does not have " -"\"register_argc_argv\" enabled." -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:436 -msgid "This is required for message delivery to work." -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:439 -msgid "PHP register_argc_argv" -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:457 +#: ../../Zotlabs/Module/Mail.php:364 #, php-format -msgid "" -"Your max allowed total upload size is set to %s. Maximum size of one file to " -"upload is set to %s. You are allowed to upload up to %d files at once." -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:462 -msgid "You can adjust these settings in the servers php.ini." -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:464 -msgid "PHP upload limits" -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:487 -msgid "" -"Error: the \"openssl_pkey_new\" function on this system is not able to " -"generate encryption keys" -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:488 -msgid "" -"If running under Windows, please see \"http://www.php.net/manual/en/openssl." -"installation.php\"." -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:491 -msgid "Generate encryption keys" -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:503 -msgid "libCurl PHP module" -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:504 -msgid "GD graphics PHP module" -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:505 -msgid "OpenSSL PHP module" -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:506 -msgid "mysqli or postgres PHP module" -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:507 -msgid "mb_string PHP module" -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:508 -msgid "xml PHP module" -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:512 ../../Zotlabs/Module/Setup.php:514 -msgid "Apache mod_rewrite module" -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:512 -msgid "" -"Error: Apache webserver mod-rewrite module is required but not installed." -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:518 ../../Zotlabs/Module/Setup.php:521 -msgid "proc_open" -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:518 -msgid "" -"Error: proc_open is required but is either not installed or has been " -"disabled in php.ini" -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:526 -msgid "Error: libCURL PHP module required but not installed." -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:530 -msgid "" -"Error: GD graphics PHP module with JPEG support required but not installed." -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:534 -msgid "Error: openssl PHP module required but not installed." -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:538 -msgid "" -"Error: mysqli or postgres PHP module required but neither are installed." -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:542 -msgid "Error: mb_string PHP module required but not installed." -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:546 -msgid "Error: xml PHP module required for DAV but not installed." -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:564 -msgid "" -"The web installer needs to be able to create a file called \".htconfig.php\" " -"in the top folder of your web server and it is unable to do so." -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:565 -msgid "" -"This is most often a permission setting, as the web server may not be able " -"to write files in your folder - even if you can." -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:566 -msgid "" -"At the end of this procedure, we will give you a text to save in a file " -"named .htconfig.php in your Red top folder." -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:567 -msgid "" -"You can alternatively skip this procedure and perform a manual installation. " -"Please see the file \"install/INSTALL.txt\" for instructions." -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:570 -msgid ".htconfig.php is writable" -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:584 -msgid "" -"Red uses the Smarty3 template engine to render its web views. Smarty3 " -"compiles templates to PHP to speed up rendering." -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:585 -#, php-format -msgid "" -"In order to store these compiled templates, the web server needs to have " -"write access to the directory %s under the top level web folder." -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:586 ../../Zotlabs/Module/Setup.php:607 -msgid "" -"Please ensure that the user that your web server runs as (e.g. www-data) has " -"write access to this folder." -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:587 -#, php-format -msgid "" -"Note: as a security measure, you should give the web server write access to " -"%s only--not the template files (.tpl) that it contains." -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:590 -#, php-format -msgid "%s is writable" -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:606 -msgid "" -"This software uses the store directory to save uploaded files. The web " -"server needs to have write access to the store directory under the Red top " -"level folder" -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:610 -msgid "store is writable" -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:643 -msgid "" -"SSL certificate cannot be validated. Fix certificate or disable https access " -"to this site." -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:644 -msgid "" -"If you have https access to your website or allow connections to TCP port " -"443 (the https: port), you MUST use a browser-valid certificate. You MUST " -"NOT use self-signed certificates!" -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:645 -msgid "" -"This restriction is incorporated because public posts from you may for " -"example contain references to images on your own hub." -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:646 -msgid "" -"If your certificate is not recognized, members of other sites (who may " -"themselves have valid certificates) will get a warning message on their own " -"site complaining about security issues." -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:647 -msgid "" -"This can cause usability issues elsewhere (not just on your own site) so we " -"must insist on this requirement." -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:648 -msgid "" -"Providers are available that issue free certificates which are browser-valid." -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:650 -msgid "" -"If you are confident that the certificate is valid and signed by a trusted " -"authority, check to see if you have failed to install an intermediate cert. " -"These are not normally required by browsers, but are required for server-to-" -"server communications." -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:653 -msgid "SSL certificate validation" -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:659 -msgid "" -"Url rewrite in .htaccess is not working. Check your server configuration." -"Test: " -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:662 -msgid "Url rewrite is working" -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:671 -msgid "" -"The database configuration file \".htconfig.php\" could not be written. " -"Please use the enclosed text to create a configuration file in your web " -"server root." -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:695 -msgid "Errors encountered creating database tables." -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:732 -msgid "

What next

" -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:733 -msgid "" -"IMPORTANT: You will need to [manually] setup a scheduled task for the poller." +msgid "Your message for %s (%s):" msgstr "" #: ../../Zotlabs/Module/Attach.php:13 msgid "Item not available." msgstr "" -#: ../../Zotlabs/Module/Photos.php:82 -msgid "Page owner information could not be retrieved." -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:97 ../../Zotlabs/Module/Photos.php:734 -#: ../../Zotlabs/Module/Profile_photo.php:115 -#: ../../Zotlabs/Module/Profile_photo.php:212 -#: ../../Zotlabs/Module/Profile_photo.php:311 -#: ../../include/photo/photo_driver.php:718 -msgid "Profile Photos" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:103 ../../Zotlabs/Module/Photos.php:129 -msgid "Album not found." -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:112 -msgid "Delete Album" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:133 -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/Photos.php:190 ../../Zotlabs/Module/Photos.php:1059 -msgid "Delete Photo" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:520 -msgid "No photos selected" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:569 -msgid "Access to this item is restricted." -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:608 -#, php-format -msgid "%1$.2f MB of %2$.2f MB photo storage used." -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:611 -#, php-format -msgid "%1$.2f MB photo storage used." -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:647 -msgid "Upload Photos" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:651 -msgid "Enter an album name" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:652 -msgid "or select an existing album (doubleclick)" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:653 -msgid "Create a status post for this upload" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:654 -msgid "Caption (optional):" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:655 -msgid "Description (optional):" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:658 ../../Zotlabs/Module/Photos.php:1047 -#: ../../Zotlabs/Module/Filestorage.php:152 ../../Zotlabs/Module/Thing.php:313 -#: ../../Zotlabs/Module/Thing.php:363 ../../Zotlabs/Module/Chat.php:234 -#: ../../include/acl_selectors.php:179 -msgid "Permissions" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:686 -msgid "Album name could not be decoded" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:734 -msgid "Contact Photos" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:757 -msgid "Show Newest First" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:759 -msgid "Show Oldest First" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:783 ../../Zotlabs/Module/Photos.php:1337 -#: ../../Zotlabs/Module/Embedphotos.php:141 ../../include/widgets.php:1673 -msgid "View Photo" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:814 -#: ../../Zotlabs/Module/Embedphotos.php:157 ../../include/widgets.php:1690 -msgid "Edit Album" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:861 -msgid "Permission denied. Access to this item may be restricted." -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:863 -msgid "Photo not available" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:921 -msgid "Use as profile photo" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:922 -msgid "Use as cover photo" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:929 -msgid "Private Photo" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:940 ../../Zotlabs/Module/Events.php:675 -#: ../../Zotlabs/Module/Events.php:684 ../../Zotlabs/Module/Cal.php:332 -#: ../../Zotlabs/Module/Cal.php:339 -msgid "Previous" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:944 -msgid "View Full Size" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:989 -#: ../../Zotlabs/Module/Admin/Plugins.php:445 -#: ../../Zotlabs/Module/Tagrm.php:137 -msgid "Remove" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:1033 -msgid "Edit photo" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:1035 -msgid "Rotate CW (right)" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:1036 -msgid "Rotate CCW (left)" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:1039 -msgid "Move photo to album" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:1040 -msgid "Enter a new album name" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:1041 -msgid "or select an existing one (doubleclick)" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:1044 -msgid "Caption" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:1046 -msgid "Add a Tag" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:1054 -msgid "Example: @bob, @Barbara_Jensen, @jim@example.com" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:1057 -msgid "Flag as adult in album view" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:1076 ../../Zotlabs/Lib/ThreadItem.php:263 -msgid "I like this (toggle)" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:1077 ../../Zotlabs/Lib/ThreadItem.php:264 -msgid "I don't like this (toggle)" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:1078 ../../Zotlabs/Module/Blocks.php:161 -#: ../../Zotlabs/Module/Layouts.php:193 ../../Zotlabs/Module/Webpages.php:241 -#: ../../include/conversation.php:1231 -msgid "Share" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:1079 ../../Zotlabs/Lib/ThreadItem.php:399 -#: ../../include/conversation.php:743 -msgid "Please wait" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:1095 ../../Zotlabs/Module/Photos.php:1213 -#: ../../Zotlabs/Lib/ThreadItem.php:709 -msgid "This is you" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:1097 ../../Zotlabs/Module/Photos.php:1215 -#: ../../Zotlabs/Lib/ThreadItem.php:711 ../../include/js_strings.php:6 -msgid "Comment" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:1099 ../../Zotlabs/Module/Events.php:473 -#: ../../Zotlabs/Module/Webpages.php:247 ../../Zotlabs/Lib/ThreadItem.php:721 -#: ../../include/page_widgets.php:43 ../../include/conversation.php:1200 -msgid "Preview" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:1113 ../../include/conversation.php:577 -msgctxt "title" -msgid "Likes" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:1113 ../../include/conversation.php:577 -msgctxt "title" -msgid "Dislikes" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:1114 ../../include/conversation.php:578 -msgctxt "title" -msgid "Agree" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:1114 ../../include/conversation.php:578 -msgctxt "title" -msgid "Disagree" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:1114 ../../include/conversation.php:578 -msgctxt "title" -msgid "Abstain" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:1115 ../../include/conversation.php:579 -msgctxt "title" -msgid "Attending" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:1115 ../../include/conversation.php:579 -msgctxt "title" -msgid "Not attending" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:1115 ../../include/conversation.php:579 -msgctxt "title" -msgid "Might attend" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:1132 ../../Zotlabs/Module/Photos.php:1144 -#: ../../Zotlabs/Lib/ThreadItem.php:181 ../../Zotlabs/Lib/ThreadItem.php:193 -#: ../../include/conversation.php:1762 -msgid "View all" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:1136 ../../Zotlabs/Lib/ThreadItem.php:185 -#: ../../include/channel.php:1182 ../../include/conversation.php:1786 -#: ../../include/taxonomy.php:403 -msgctxt "noun" -msgid "Like" -msgid_plural "Likes" -msgstr[0] "" -msgstr[1] "" - -#: ../../Zotlabs/Module/Photos.php:1141 ../../Zotlabs/Lib/ThreadItem.php:190 -#: ../../include/conversation.php:1789 -msgctxt "noun" -msgid "Dislike" -msgid_plural "Dislikes" -msgstr[0] "" -msgstr[1] "" - -#: ../../Zotlabs/Module/Photos.php:1241 -msgid "Photo Tools" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:1250 -msgid "In This Photo:" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:1255 -msgid "Map" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:1263 ../../Zotlabs/Lib/ThreadItem.php:388 -msgctxt "noun" -msgid "Likes" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:1264 ../../Zotlabs/Lib/ThreadItem.php:389 -msgctxt "noun" -msgid "Dislikes" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:1269 ../../Zotlabs/Lib/ThreadItem.php:394 -#: ../../include/acl_selectors.php:181 -msgid "Close" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:1343 -msgid "View Album" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:1354 ../../Zotlabs/Module/Photos.php:1367 -#: ../../Zotlabs/Module/Photos.php:1368 -msgid "Recent Photos" -msgstr "" - #: ../../Zotlabs/Module/Ffsapi.php:12 msgid "Share content from Firefox to $Projectname" msgstr "" @@ -2167,6 +2671,14 @@ msgstr "" msgid "Activate the Firefox $Projectname provider" msgstr "" +#: ../../Zotlabs/Module/Help.php:27 +msgid "Documentation Search" +msgstr "" + +#: ../../Zotlabs/Module/Help.php:57 +msgid "$Projectname Documentation" +msgstr "" + #: ../../Zotlabs/Module/Home.php:74 ../../Zotlabs/Module/Home.php:82 #: ../../Zotlabs/Module/Siteinfo.php:48 msgid "$Projectname" @@ -2197,6 +2709,13 @@ msgstr "" msgid "Edit file permissions" msgstr "" +#: ../../Zotlabs/Module/Filestorage.php:152 ../../Zotlabs/Module/Thing.php:313 +#: ../../Zotlabs/Module/Thing.php:363 ../../Zotlabs/Module/Photos.php:658 +#: ../../Zotlabs/Module/Photos.php:1047 ../../Zotlabs/Module/Chat.php:234 +#: ../../include/acl_selectors.php:179 +msgid "Permissions" +msgstr "" + #: ../../Zotlabs/Module/Filestorage.php:159 msgid "Set/edit permissions" msgstr "" @@ -2229,77 +2748,51 @@ msgstr "" msgid "Notify your contacts about this file" msgstr "" -#: ../../Zotlabs/Module/Dreport.php:44 -msgid "Invalid message" +#: ../../Zotlabs/Module/Magic.php:71 +msgid "Hub not found." msgstr "" -#: ../../Zotlabs/Module/Dreport.php:76 -msgid "no results" +#: ../../Zotlabs/Module/Connect.php:61 ../../Zotlabs/Module/Connect.php:109 +msgid "Continue" msgstr "" -#: ../../Zotlabs/Module/Dreport.php:91 -msgid "channel sync processed" +#: ../../Zotlabs/Module/Connect.php:90 +msgid "Premium Channel Setup" msgstr "" -#: ../../Zotlabs/Module/Dreport.php:95 -msgid "queued" +#: ../../Zotlabs/Module/Connect.php:92 +msgid "Enable premium channel connection restrictions" msgstr "" -#: ../../Zotlabs/Module/Dreport.php:99 -msgid "posted" +#: ../../Zotlabs/Module/Connect.php:93 +msgid "" +"Please enter your restrictions or conditions, such as paypal receipt, usage " +"guidelines, etc." msgstr "" -#: ../../Zotlabs/Module/Dreport.php:103 -msgid "accepted for delivery" +#: ../../Zotlabs/Module/Connect.php:95 ../../Zotlabs/Module/Connect.php:115 +msgid "" +"This channel may require additional steps or acknowledgement of the " +"following conditions prior to connecting:" msgstr "" -#: ../../Zotlabs/Module/Dreport.php:107 -msgid "updated" +#: ../../Zotlabs/Module/Connect.php:96 +msgid "" +"Potential connections will then see the following text before proceeding:" msgstr "" -#: ../../Zotlabs/Module/Dreport.php:110 -msgid "update ignored" +#: ../../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." msgstr "" -#: ../../Zotlabs/Module/Dreport.php:113 -msgid "permission denied" +#: ../../Zotlabs/Module/Connect.php:106 +msgid "(No specific instructions have been provided by the channel owner.)" msgstr "" -#: ../../Zotlabs/Module/Dreport.php:117 -msgid "recipient not found" -msgstr "" - -#: ../../Zotlabs/Module/Dreport.php:120 -msgid "mail recalled" -msgstr "" - -#: ../../Zotlabs/Module/Dreport.php:123 -msgid "duplicate mail received" -msgstr "" - -#: ../../Zotlabs/Module/Dreport.php:126 -msgid "mail delivered" -msgstr "" - -#: ../../Zotlabs/Module/Dreport.php:146 -#, php-format -msgid "Delivery report for %1$s" -msgstr "" - -#: ../../Zotlabs/Module/Dreport.php:149 -msgid "Options" -msgstr "" - -#: ../../Zotlabs/Module/Dreport.php:150 -msgid "Redeliver" -msgstr "" - -#: ../../Zotlabs/Module/Acl.php:313 -msgid "network" -msgstr "" - -#: ../../Zotlabs/Module/Acl.php:323 -msgid "RSS" +#: ../../Zotlabs/Module/Connect.php:114 +msgid "Restricted or Premium Channel" msgstr "" #: ../../Zotlabs/Module/Group.php:24 @@ -2355,6 +2848,77 @@ msgstr "" msgid "Click on a channel to add or remove." msgstr "" +#: ../../Zotlabs/Module/Webpages.php:52 +msgid "Import Webpage Elements" +msgstr "" + +#: ../../Zotlabs/Module/Webpages.php:53 +msgid "Import selected" +msgstr "" + +#: ../../Zotlabs/Module/Webpages.php:76 +msgid "Export Webpage Elements" +msgstr "" + +#: ../../Zotlabs/Module/Webpages.php:77 +msgid "Export selected" +msgstr "" + +#: ../../Zotlabs/Module/Webpages.php:237 ../../Zotlabs/Lib/Apps.php:218 +#: ../../include/nav.php:109 ../../include/conversation.php:1724 +msgid "Webpages" +msgstr "" + +#: ../../Zotlabs/Module/Webpages.php:241 ../../Zotlabs/Module/Blocks.php:161 +#: ../../Zotlabs/Module/Layouts.php:193 ../../Zotlabs/Module/Photos.php:1078 +#: ../../include/conversation.php:1231 +msgid "Share" +msgstr "" + +#: ../../Zotlabs/Module/Webpages.php:246 ../../Zotlabs/Module/Events.php:680 +#: ../../Zotlabs/Module/Blocks.php:166 ../../Zotlabs/Module/Layouts.php:197 +#: ../../Zotlabs/Module/Pubsites.php:59 ../../include/page_widgets.php:42 +msgid "View" +msgstr "" + +#: ../../Zotlabs/Module/Webpages.php:247 ../../Zotlabs/Module/Events.php:473 +#: ../../Zotlabs/Module/Photos.php:1099 ../../Zotlabs/Lib/ThreadItem.php:721 +#: ../../include/page_widgets.php:43 ../../include/conversation.php:1200 +msgid "Preview" +msgstr "" + +#: ../../Zotlabs/Module/Webpages.php:248 ../../include/page_widgets.php:44 +msgid "Actions" +msgstr "" + +#: ../../Zotlabs/Module/Webpages.php:249 ../../include/page_widgets.php:45 +msgid "Page Link" +msgstr "" + +#: ../../Zotlabs/Module/Webpages.php:250 +msgid "Page Title" +msgstr "" + +#: ../../Zotlabs/Module/Webpages.php:280 +msgid "Invalid file type." +msgstr "" + +#: ../../Zotlabs/Module/Webpages.php:292 +msgid "Error opening zip file" +msgstr "" + +#: ../../Zotlabs/Module/Webpages.php:303 +msgid "Invalid folder path." +msgstr "" + +#: ../../Zotlabs/Module/Webpages.php:330 +msgid "No webpage elements detected." +msgstr "" + +#: ../../Zotlabs/Module/Webpages.php:405 +msgid "Import complete." +msgstr "" + #: ../../Zotlabs/Module/Impel.php:41 ../../include/bbcode.php:192 msgid "webpage" msgstr "" @@ -2381,25 +2945,6 @@ msgstr "" msgid "%s element installation failed" msgstr "" -#: ../../Zotlabs/Module/Import_items.php:42 ../../Zotlabs/Module/Import.php:71 -msgid "Nothing to import." -msgstr "" - -#: ../../Zotlabs/Module/Import_items.php:66 ../../Zotlabs/Module/Import.php:95 -msgid "Unable to download data from old server" -msgstr "" - -#: ../../Zotlabs/Module/Import_items.php:72 -#: ../../Zotlabs/Module/Import.php:101 -msgid "Imported file is empty." -msgstr "" - -#: ../../Zotlabs/Module/Import_items.php:88 -#: ../../Zotlabs/Module/Import.php:123 -#, php-format -msgid "Warning: Database versions differ by %1$d updates." -msgstr "" - #: ../../Zotlabs/Module/Import_items.php:104 msgid "Import completed" msgstr "" @@ -2412,11 +2957,6 @@ msgstr "" msgid "Use this form to import existing posts and content from an export file." msgstr "" -#: ../../Zotlabs/Module/Import_items.php:121 -#: ../../Zotlabs/Module/Import.php:549 -msgid "File to Upload" -msgstr "" - #: ../../Zotlabs/Module/Invite.php:29 msgid "Total invitation limit exceeded." msgstr "" @@ -2458,10 +2998,6 @@ msgstr "" msgid "Enter email addresses, one per line:" msgstr "" -#: ../../Zotlabs/Module/Invite.php:135 ../../Zotlabs/Module/Mail.php:241 -msgid "Your message:" -msgstr "" - #: ../../Zotlabs/Module/Invite.php:136 msgid "Please join my community on $Projectname." msgstr "" @@ -2512,9 +3048,10 @@ msgstr "" msgid "Manage Channel Locations" msgstr "" -#: ../../Zotlabs/Module/Locs.php:118 ../../Zotlabs/Module/Profiles.php:470 -#: ../../Zotlabs/Module/Admin/Channels.php:164 -msgid "Address" +#: ../../Zotlabs/Module/Locs.php:117 ../../Zotlabs/Module/Profiles.php:477 +#: ../../Zotlabs/Module/Profiles.php:698 ../../Zotlabs/Module/Events.php:467 +#: ../../Zotlabs/Module/Pubsites.php:51 ../../include/js_strings.php:25 +msgid "Location" msgstr "" #: ../../Zotlabs/Module/Locs.php:119 @@ -2539,8 +3076,32 @@ msgstr "" 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." +#: ../../Zotlabs/Module/Network.php:95 +msgid "No such group" +msgstr "" + +#: ../../Zotlabs/Module/Network.php:135 +msgid "No such channel" +msgstr "" + +#: ../../Zotlabs/Module/Network.php:140 +msgid "forum" +msgstr "" + +#: ../../Zotlabs/Module/Network.php:152 +msgid "Search Results For:" +msgstr "" + +#: ../../Zotlabs/Module/Network.php:218 +msgid "Privacy group is empty" +msgstr "" + +#: ../../Zotlabs/Module/Network.php:227 +msgid "Privacy group: " +msgstr "" + +#: ../../Zotlabs/Module/Network.php:253 +msgid "Invalid connection." msgstr "" #: ../../Zotlabs/Module/Like.php:19 @@ -2579,19 +3140,19 @@ msgid "Previous action reversed." msgstr "" #: ../../Zotlabs/Module/Like.php:370 ../../Zotlabs/Module/Subthread.php:87 -#: ../../Zotlabs/Module/Tagger.php:47 ../../include/text.php:1988 -#: ../../include/conversation.php:120 +#: ../../Zotlabs/Module/Tagger.php:47 ../../include/conversation.php:120 +#: ../../include/text.php:1991 msgid "photo" msgstr "" #: ../../Zotlabs/Module/Like.php:370 ../../Zotlabs/Module/Subthread.php:87 -#: ../../include/text.php:1994 ../../include/conversation.php:148 +#: ../../include/conversation.php:148 ../../include/text.php:1997 msgid "status" msgstr "" #: ../../Zotlabs/Module/Like.php:372 ../../Zotlabs/Module/Events.php:253 -#: ../../Zotlabs/Module/Tagger.php:51 ../../include/text.php:1991 -#: ../../include/conversation.php:123 ../../include/event.php:958 +#: ../../Zotlabs/Module/Tagger.php:51 ../../include/event.php:958 +#: ../../include/conversation.php:123 ../../include/text.php:1994 msgid "event" msgstr "" @@ -2810,6 +3371,28 @@ msgstr "" msgid "Link text" msgstr "" +#: ../../Zotlabs/Module/Rate.php:155 ../../Zotlabs/Module/Connedit.php:762 +#: ../../include/js_strings.php:20 +msgid "Rating" +msgstr "" + +#: ../../Zotlabs/Module/Rate.php:156 +msgid "Website:" +msgstr "" + +#: ../../Zotlabs/Module/Rate.php:159 +#, php-format +msgid "Remote Channel [%s] (not yet known on this site)" +msgstr "" + +#: ../../Zotlabs/Module/Rate.php:160 +msgid "Rating (this information is public)" +msgstr "" + +#: ../../Zotlabs/Module/Rate.php:161 +msgid "Optionally explain your rating (this information is public)" +msgstr "" + #: ../../Zotlabs/Module/Lostpass.php:19 msgid "No valid account found." msgstr "" @@ -3168,8 +3751,8 @@ msgstr "" msgid "Profile Image" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:777 ../../include/channel.php:959 -#: ../../include/nav.php:91 +#: ../../Zotlabs/Module/Profiles.php:777 ../../include/nav.php:91 +#: ../../include/channel.php:959 msgid "Edit Profiles" msgstr "" @@ -3199,1010 +3782,22 @@ msgstr "" msgid "No matches" msgstr "" -#: ../../Zotlabs/Module/Admin/Accounts.php:36 -#, php-format -msgid "%s account blocked/unblocked" -msgid_plural "%s account blocked/unblocked" -msgstr[0] "" -msgstr[1] "" - -#: ../../Zotlabs/Module/Admin/Accounts.php:43 -#, php-format -msgid "%s account deleted" -msgid_plural "%s accounts deleted" -msgstr[0] "" -msgstr[1] "" - -#: ../../Zotlabs/Module/Admin/Accounts.php:79 -msgid "Account not found" +#: ../../Zotlabs/Module/Api.php:60 ../../Zotlabs/Module/Api.php:81 +msgid "Authorize application connection" msgstr "" -#: ../../Zotlabs/Module/Admin/Accounts.php:90 -#, php-format -msgid "Account '%s' deleted" +#: ../../Zotlabs/Module/Api.php:61 +msgid "Return to your app and insert this Security Code:" msgstr "" -#: ../../Zotlabs/Module/Admin/Accounts.php:98 -#, php-format -msgid "Account '%s' blocked" +#: ../../Zotlabs/Module/Api.php:71 +msgid "Please login to continue." msgstr "" -#: ../../Zotlabs/Module/Admin/Accounts.php:106 -#, php-format -msgid "Account '%s' unblocked" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Accounts.php:166 -#: ../../Zotlabs/Module/Admin/Accounts.php:179 ../../include/widgets.php:1557 -msgid "Accounts" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Accounts.php:168 -#: ../../Zotlabs/Module/Admin/Channels.php:152 -msgid "select all" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Accounts.php:169 -msgid "Registrations waiting for confirm" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Accounts.php:170 -msgid "Request date" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Accounts.php:170 -#: ../../Zotlabs/Module/Admin/Accounts.php:182 ../../include/network.php:2208 -msgid "Email" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Accounts.php:171 -msgid "No registrations." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Accounts.php:173 -msgid "Deny" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Accounts.php:175 -#: ../../Zotlabs/Module/Connedit.php:575 -msgid "Block" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Accounts.php:176 -#: ../../Zotlabs/Module/Connedit.php:575 -msgid "Unblock" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Accounts.php:181 -msgid "ID" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Accounts.php:183 ../../include/group.php:267 -msgid "All Channels" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Accounts.php:184 -msgid "Register date" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Accounts.php:185 -msgid "Last login" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Accounts.php:186 -msgid "Expires" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Accounts.php:187 -msgid "Service Class" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Accounts.php:189 +#: ../../Zotlabs/Module/Api.php:83 msgid "" -"Selected accounts will be deleted!\\n\\nEverything these accounts had posted " -"on this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Accounts.php:190 -msgid "" -"The account {0} will be deleted!\\n\\nEverything this account has posted on " -"this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Channels.php:30 -#, php-format -msgid "%s channel censored/uncensored" -msgid_plural "%s channels censored/uncensored" -msgstr[0] "" -msgstr[1] "" - -#: ../../Zotlabs/Module/Admin/Channels.php:39 -#, php-format -msgid "%s channel code allowed/disallowed" -msgid_plural "%s channels code allowed/disallowed" -msgstr[0] "" -msgstr[1] "" - -#: ../../Zotlabs/Module/Admin/Channels.php:45 -#, php-format -msgid "%s channel deleted" -msgid_plural "%s channels deleted" -msgstr[0] "" -msgstr[1] "" - -#: ../../Zotlabs/Module/Admin/Channels.php:66 -msgid "Channel not found" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Channels.php:76 -#, php-format -msgid "Channel '%s' deleted" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Channels.php:88 -#, php-format -msgid "Channel '%s' censored" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Channels.php:88 -#, php-format -msgid "Channel '%s' uncensored" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Channels.php:99 -#, php-format -msgid "Channel '%s' code allowed" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Channels.php:99 -#, php-format -msgid "Channel '%s' code disallowed" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Channels.php:150 ../../include/widgets.php:1558 -msgid "Channels" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Channels.php:154 -msgid "Censor" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Channels.php:155 -msgid "Uncensor" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Channels.php:156 -msgid "Allow Code" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Channels.php:157 -msgid "Disallow Code" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Channels.php:158 -#: ../../include/conversation.php:1650 -msgid "Channel" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Channels.php:162 -msgid "UID" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Channels.php:166 -msgid "" -"Selected channels will be deleted!\\n\\nEverything that was posted in these " -"channels on this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Channels.php:167 -msgid "" -"The channel {0} will be deleted!\\n\\nEverything that was posted in this " -"channel on this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Dbsync.php:19 -msgid "Update has been marked successful" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Dbsync.php:29 -#, php-format -msgid "Executing %s failed. Check system logs." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Dbsync.php:32 -#, php-format -msgid "Update %s was successfully applied." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Dbsync.php:36 -#, php-format -msgid "Update %s did not return a status. Unknown if it succeeded." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Dbsync.php:39 -#, php-format -msgid "Update function %s could not be found." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Dbsync.php:55 -msgid "No failed updates." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Dbsync.php:59 -msgid "Failed Updates" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Dbsync.php:61 -msgid "Mark success (if update was manually applied)" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Dbsync.php:62 -msgid "Attempt to execute this update step automatically" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Features.php:55 -#: ../../Zotlabs/Module/Admin/Features.php:56 -#: ../../Zotlabs/Module/Settings/Features.php:38 -msgid "Off" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Features.php:55 -#: ../../Zotlabs/Module/Admin/Features.php:56 -#: ../../Zotlabs/Module/Settings/Features.php:38 -msgid "On" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Features.php:56 -#, php-format -msgid "Lock feature %s" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Features.php:64 -msgid "Manage Additional Features" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Logs.php:28 -msgid "Log settings updated." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Logs.php:83 ../../include/widgets.php:1583 -#: ../../include/widgets.php:1593 -msgid "Logs" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Logs.php:85 -msgid "Clear" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Logs.php:91 -msgid "Debugging" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Logs.php:92 -msgid "Log file" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Logs.php:92 -msgid "" -"Must be writable by web server. Relative to your top-level webserver " -"directory." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Logs.php:93 -msgid "Log level" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Plugins.php:284 -#, php-format -msgid "Plugin %s disabled." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Plugins.php:289 -#, php-format -msgid "Plugin %s enabled." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Plugins.php:305 -#: ../../Zotlabs/Module/Admin/Themes.php:93 -msgid "Disable" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Plugins.php:308 -#: ../../Zotlabs/Module/Admin/Themes.php:95 -msgid "Enable" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Plugins.php:337 -#: ../../Zotlabs/Module/Admin/Plugins.php:428 ../../include/widgets.php:1561 -msgid "Plugins" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Plugins.php:338 -#: ../../Zotlabs/Module/Admin/Themes.php:122 -msgid "Toggle" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Plugins.php:339 -#: ../../Zotlabs/Module/Admin/Themes.php:123 ../../Zotlabs/Lib/Apps.php:216 -#: ../../include/nav.php:213 ../../include/widgets.php:680 -msgid "Settings" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Plugins.php:346 -#: ../../Zotlabs/Module/Admin/Themes.php:132 -msgid "Author: " -msgstr "" - -#: ../../Zotlabs/Module/Admin/Plugins.php:347 -#: ../../Zotlabs/Module/Admin/Themes.php:133 -msgid "Maintainer: " -msgstr "" - -#: ../../Zotlabs/Module/Admin/Plugins.php:348 -msgid "Minimum project version: " -msgstr "" - -#: ../../Zotlabs/Module/Admin/Plugins.php:349 -msgid "Maximum project version: " -msgstr "" - -#: ../../Zotlabs/Module/Admin/Plugins.php:350 -msgid "Minimum PHP version: " -msgstr "" - -#: ../../Zotlabs/Module/Admin/Plugins.php:351 -msgid "Compatible Server Roles: " -msgstr "" - -#: ../../Zotlabs/Module/Admin/Plugins.php:352 -msgid "Requires: " -msgstr "" - -#: ../../Zotlabs/Module/Admin/Plugins.php:353 -#: ../../Zotlabs/Module/Admin/Plugins.php:433 -msgid "Disabled - version incompatibility" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Plugins.php:402 -msgid "Enter the public git repository URL of the plugin repo." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Plugins.php:403 -msgid "Plugin repo git URL" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Plugins.php:404 -msgid "Custom repo name" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Plugins.php:404 -msgid "(optional)" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Plugins.php:405 -msgid "Download Plugin Repo" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Plugins.php:412 -msgid "Install new repo" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Plugins.php:413 ../../Zotlabs/Lib/Apps.php:334 -msgid "Install" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Plugins.php:435 -msgid "Manage Repos" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Plugins.php:436 -msgid "Installed Plugin Repositories" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Plugins.php:437 -msgid "Install a New Plugin Repository" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Plugins.php:443 -#: ../../Zotlabs/Module/Settings/Oauth.php:42 -#: ../../Zotlabs/Module/Settings/Oauth.php:113 ../../Zotlabs/Lib/Apps.php:334 -msgid "Update" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Plugins.php:444 -msgid "Switch branch" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Profs.php:69 -msgid "New Profile Field" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Profs.php:70 -#: ../../Zotlabs/Module/Admin/Profs.php:90 -msgid "Field nickname" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Profs.php:70 -#: ../../Zotlabs/Module/Admin/Profs.php:90 -msgid "System name of field" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Profs.php:71 -#: ../../Zotlabs/Module/Admin/Profs.php:91 -msgid "Input type" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Profs.php:72 -#: ../../Zotlabs/Module/Admin/Profs.php:92 -msgid "Field Name" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Profs.php:72 -#: ../../Zotlabs/Module/Admin/Profs.php:92 -msgid "Label on profile pages" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Profs.php:73 -#: ../../Zotlabs/Module/Admin/Profs.php:93 -msgid "Help text" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Profs.php:73 -#: ../../Zotlabs/Module/Admin/Profs.php:93 -msgid "Additional info (optional)" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Profs.php:83 -msgid "Field definition not found" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Profs.php:89 -msgid "Edit Profile Field" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Profs.php:147 ../../include/widgets.php:1564 -msgid "Profile Fields" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Profs.php:148 -msgid "Basic Profile Fields" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Profs.php:149 -msgid "Advanced Profile Fields" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Profs.php:149 -msgid "(In addition to basic fields)" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Profs.php:151 -msgid "All available fields" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Profs.php:152 -msgid "Custom Fields" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Profs.php:156 -msgid "Create Custom Field" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Queue.php:36 -msgid "Queue Statistics" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Queue.php:37 -msgid "Total Entries" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Queue.php:38 -msgid "Priority" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Queue.php:39 -msgid "Destination URL" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Queue.php:40 -msgid "Mark hub permanently offline" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Queue.php:41 -msgid "Empty queue for this hub" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Queue.php:42 -msgid "Last known contact" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Security.php:77 -msgid "" -"By default, unfiltered HTML is allowed in embedded media. This is inherently " -"insecure." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Security.php:80 -msgid "" -"The recommended setting is to only allow unfiltered HTML from the following " -"sites:" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Security.php:81 -msgid "" -"https://youtube.com/
https://www.youtube.com/
https://youtu.be/" -"
https://vimeo.com/
https://soundcloud.com/
" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Security.php:82 -msgid "" -"All other embedded content will be filtered, unless " -"embedded content from that site is explicitly blocked." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Security.php:87 ../../include/widgets.php:1559 -msgid "Security" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Security.php:89 -msgid "Block public" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Security.php:89 -msgid "" -"Check to block public access to all otherwise public personal pages on this " -"site unless you are currently authenticated." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Security.php:90 -msgid "Set \"Transport Security\" HTTP header" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Security.php:91 -msgid "Set \"Content Security Policy\" HTTP header" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Security.php:92 -msgid "Allowed email domains" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Security.php:92 -msgid "" -"Comma separated list of domains which are allowed in email addresses for " -"registrations to this site. Wildcards are accepted. Empty to allow any " -"domains" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Security.php:93 -msgid "Not allowed email domains" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Security.php:93 -msgid "" -"Comma separated list of domains which are not allowed in email addresses for " -"registrations to this site. Wildcards are accepted. Empty to allow any " -"domains, unless allowed domains have been defined." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Security.php:94 -msgid "Allow communications only from these sites" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Security.php:94 -msgid "" -"One site per line. Leave empty to allow communication from anywhere by " -"default" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Security.php:95 -msgid "Block communications from these sites" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Security.php:96 -msgid "Allow communications only from these channels" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Security.php:96 -msgid "" -"One channel (hash) per line. Leave empty to allow from any channel by default" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Security.php:97 -msgid "Block communications from these channels" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Security.php:98 -msgid "Only allow embeds from secure (SSL) websites and links." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Security.php:99 -msgid "Allow unfiltered embedded HTML content only from these domains" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Security.php:99 -msgid "One site per line. By default embedded content is filtered." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Security.php:100 -msgid "Block embedded HTML from these domains" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:135 -msgid "Site settings updated." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:162 ../../include/text.php:2939 -msgid "Default" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:172 -#: ../../Zotlabs/Module/Settings/Display.php:141 -msgid "mobile" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:174 -msgid "experimental" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:176 -msgid "unsupported" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:222 -msgid "Yes - with approval" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:228 -msgid "My site is not a public server" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:229 -msgid "My site has paid access only" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:230 -msgid "My site has free access only" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:231 -msgid "My site offers free accounts with optional paid upgrades" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:249 -#: ../../Zotlabs/Module/Settings/Account.php:105 -msgid "Beginner/Basic" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:250 -#: ../../Zotlabs/Module/Settings/Account.php:106 -msgid "Novice - not skilled but willing to learn" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:251 -#: ../../Zotlabs/Module/Settings/Account.php:107 -msgid "Intermediate - somewhat comfortable" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:252 -#: ../../Zotlabs/Module/Settings/Account.php:108 -msgid "Advanced - very comfortable" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:253 -#: ../../Zotlabs/Module/Settings/Account.php:109 -msgid "Expert - I can write computer code" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:254 -#: ../../Zotlabs/Module/Settings/Account.php:110 -msgid "Wizard - I probably know more than you do" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:266 ../../include/widgets.php:1556 -msgid "Site" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:268 -#: ../../Zotlabs/Module/Register.php:253 -msgid "Registration" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:269 -msgid "File upload" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:270 -msgid "Policies" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:271 -#: ../../include/contact_widgets.php:16 -msgid "Advanced" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:275 -msgid "Site name" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:279 -msgid "Site default technical skill level" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:279 -msgid "Used to provide a member experience matched to technical comfort level" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:281 -msgid "Lock the technical skill level setting" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:281 -msgid "Members can set their own technical comfort level by default" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:284 -msgid "Banner/Logo" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:285 -msgid "Administrator Information" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:285 -msgid "" -"Contact information for site administrators. Displayed on siteinfo page. " -"BBCode can be used here" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:286 -msgid "System language" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:287 -msgid "System theme" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:287 -msgid "" -"Default system theme - may be over-ridden by user profiles - change theme settings" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:288 -msgid "Mobile system theme" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:288 -msgid "Theme for mobile devices" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:290 -msgid "Allow Feeds as Connections" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:290 -msgid "(Heavy system resource usage)" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:291 -msgid "Maximum image size" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:291 -msgid "" -"Maximum size in bytes of uploaded images. Default is 0, which means no " -"limits." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:292 -msgid "Does this site allow new member registration?" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:293 -msgid "Invitation only" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:293 -msgid "" -"Only allow new member registrations with an invitation code. Above register " -"policy must be set to Yes." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:294 -msgid "Which best describes the types of account offered by this hub?" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:295 -msgid "Register text" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:295 -msgid "Will be displayed prominently on the registration page." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:296 -msgid "Site homepage to show visitors (default: login box)" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:296 -msgid "" -"example: 'public' to show public stream, 'page/sys/home' to show a system " -"webpage called 'home' or 'include:home.html' to include a file." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:297 -msgid "Preserve site homepage URL" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:297 -msgid "" -"Present the site homepage in a frame at the original location instead of " -"redirecting" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:298 -msgid "Accounts abandoned after x days" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:298 -msgid "" -"Will not waste system resources polling external sites for abandonded " -"accounts. Enter 0 for no time limit." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:299 -msgid "Allowed friend domains" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:299 -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/Admin/Site.php:300 -msgid "Verify Email Addresses" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:300 -msgid "" -"Check to verify email addresses used in account registration (recommended)." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:301 -msgid "Force publish" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:301 -msgid "" -"Check to force all profiles on this site to be listed in the site directory." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:302 -msgid "Import Public Streams" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:302 -msgid "" -"Import and allow access to public content pulled from other sites. Warning: " -"this content is unmoderated." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:303 -msgid "Login on Homepage" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:303 -msgid "" -"Present a login box to visitors on the home page if no other content has " -"been configured." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:304 -msgid "Enable context help" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:304 -msgid "" -"Display contextual help for the current page when the help button is pressed." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:306 -msgid "Directory Server URL" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:306 -msgid "Default directory server" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:308 -msgid "Proxy user" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:309 -msgid "Proxy URL" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:310 -msgid "Network timeout" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:310 -msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:311 -msgid "Delivery interval" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:311 -msgid "" -"Delay background delivery processes by this many seconds to reduce system " -"load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 " -"for large dedicated servers." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:312 -msgid "Deliveries per process" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:312 -msgid "" -"Number of deliveries to attempt in a single operating system process. Adjust " -"if necessary to tune system performance. Recommend: 1-5." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:313 -msgid "Poll interval" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:313 -msgid "" -"Delay background polling processes by this many seconds to reduce system " -"load. If 0, use delivery interval." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:314 -msgid "Maximum Load Average" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:314 -msgid "" -"Maximum system load before delivery and poll processes are deferred - " -"default 50." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:315 -msgid "Expiration period in days for imported (grid/network) content" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:315 -msgid "0 for no expiration of imported content" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Themes.php:18 -msgid "Theme settings updated." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Themes.php:58 -msgid "No themes found." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Themes.php:114 -msgid "Screenshot" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Themes.php:121 -#: ../../Zotlabs/Module/Admin/Themes.php:155 ../../include/widgets.php:1562 -msgid "Themes" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Themes.php:160 -msgid "[Experimental]" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Themes.php:161 -msgid "[Unsupported]" +"Do you want to authorize this application to access your posts and contacts, " +"and/or create new posts for you?" msgstr "" #: ../../Zotlabs/Module/Events.php:25 @@ -4313,7 +3908,7 @@ msgid "Delete event" msgstr "" #: ../../Zotlabs/Module/Events.php:646 ../../Zotlabs/Module/Cal.php:308 -#: ../../include/text.php:1759 +#: ../../include/text.php:1762 msgid "Link to Source" msgstr "" @@ -4329,6 +3924,18 @@ msgstr "" msgid "Create Event" msgstr "" +#: ../../Zotlabs/Module/Events.php:675 ../../Zotlabs/Module/Events.php:684 +#: ../../Zotlabs/Module/Cal.php:332 ../../Zotlabs/Module/Cal.php:339 +#: ../../Zotlabs/Module/Photos.php:940 +msgid "Previous" +msgstr "" + +#: ../../Zotlabs/Module/Events.php:676 ../../Zotlabs/Module/Events.php:685 +#: ../../Zotlabs/Module/Setup.php:272 ../../Zotlabs/Module/Cal.php:333 +#: ../../Zotlabs/Module/Cal.php:340 ../../Zotlabs/Module/Photos.php:949 +msgid "Next" +msgstr "" + #: ../../Zotlabs/Module/Events.php:677 ../../Zotlabs/Module/Cal.php:334 msgid "Export" msgstr "" @@ -4357,116 +3964,38 @@ msgstr "" msgid "Failed to remove event" msgstr "" -#: ../../Zotlabs/Module/Import.php:33 +#: ../../Zotlabs/Module/Item.php:180 +msgid "Unable to locate original post." +msgstr "" + +#: ../../Zotlabs/Module/Item.php:433 +msgid "Empty post discarded." +msgstr "" + +#: ../../Zotlabs/Module/Item.php:473 +msgid "Executable content type not permitted to this channel." +msgstr "" + +#: ../../Zotlabs/Module/Item.php:858 +msgid "Duplicate post suppressed." +msgstr "" + +#: ../../Zotlabs/Module/Item.php:991 +msgid "System error. Post not saved." +msgstr "" + +#: ../../Zotlabs/Module/Item.php:1112 +msgid "Unable to obtain post information from database." +msgstr "" + +#: ../../Zotlabs/Module/Item.php:1119 #, php-format -msgid "Your service plan only allows %d channels." +msgid "You have reached your limit of %1$.0f top level posts." msgstr "" -#: ../../Zotlabs/Module/Import.php:153 ../../include/import.php:107 -msgid "Cloned channel not found. Import failed." -msgstr "" - -#: ../../Zotlabs/Module/Import.php:163 -msgid "No channel. Import failed." -msgstr "" - -#: ../../Zotlabs/Module/Import.php:520 -#: ../../include/Import/import_diaspora.php:142 -msgid "Import completed." -msgstr "" - -#: ../../Zotlabs/Module/Import.php:542 -msgid "You must be logged in to use this feature." -msgstr "" - -#: ../../Zotlabs/Module/Import.php:547 -msgid "Import Channel" -msgstr "" - -#: ../../Zotlabs/Module/Import.php:548 -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/Import.php:550 -msgid "Or provide the old server/hub details" -msgstr "" - -#: ../../Zotlabs/Module/Import.php:551 -msgid "Your old identity address (xyz@example.com)" -msgstr "" - -#: ../../Zotlabs/Module/Import.php:552 -msgid "Your old login email address" -msgstr "" - -#: ../../Zotlabs/Module/Import.php:553 -msgid "Your old login password" -msgstr "" - -#: ../../Zotlabs/Module/Import.php:554 -msgid "" -"For either option, please choose whether to make this hub your new primary " -"address, or whether your old location should continue this role. You will be " -"able to post from either location, but only one can be marked as the primary " -"location for files, photos, and media." -msgstr "" - -#: ../../Zotlabs/Module/Import.php:555 -msgid "Make this hub my primary location" -msgstr "" - -#: ../../Zotlabs/Module/Import.php:556 -msgid "" -"Import existing posts if possible (experimental - limited by available memory" -msgstr "" - -#: ../../Zotlabs/Module/Import.php:557 -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/New_channel.php:134 -#: ../../Zotlabs/Module/Register.php:237 -msgid "Name or caption" -msgstr "" - -#: ../../Zotlabs/Module/New_channel.php:134 -#: ../../Zotlabs/Module/Register.php:237 -msgid "" -"Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation " -"Group\"" -msgstr "" - -#: ../../Zotlabs/Module/New_channel.php:136 -#: ../../Zotlabs/Module/Register.php:239 -msgid "Choose a short nickname" -msgstr "" - -#: ../../Zotlabs/Module/New_channel.php:136 -#: ../../Zotlabs/Module/Register.php:239 +#: ../../Zotlabs/Module/Item.php:1126 #, php-format -msgid "" -"Your nickname will be used to create an easy to remember channel address e." -"g. nickname%s" -msgstr "" - -#: ../../Zotlabs/Module/New_channel.php:137 -#: ../../Zotlabs/Module/Register.php:240 -msgid "Channel role and privacy" -msgstr "" - -#: ../../Zotlabs/Module/New_channel.php:137 -#: ../../Zotlabs/Module/Register.php:240 -msgid "Select a channel role with your privacy requirements." -msgstr "" - -#: ../../Zotlabs/Module/New_channel.php:137 -#: ../../Zotlabs/Module/Register.php:240 -msgid "Read more about roles" +msgid "You have reached your limit of %1$.0f webpages." msgstr "" #: ../../Zotlabs/Module/New_channel.php:140 @@ -4546,101 +4075,420 @@ msgstr "" msgid "Make this post private" msgstr "" -#: ../../Zotlabs/Module/Register.php:49 -msgid "Maximum daily site registrations exceeded. Please try again tomorrow." +#: ../../Zotlabs/Module/Setup.php:184 +msgid "$Projectname Server - Setup" msgstr "" -#: ../../Zotlabs/Module/Register.php:55 +#: ../../Zotlabs/Module/Setup.php:188 +msgid "Could not connect to database." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:192 msgid "" -"Please indicate acceptance of the Terms of Service. Registration failed." +"Could not connect to specified site URL. Possible SSL certificate or DNS " +"issue." msgstr "" -#: ../../Zotlabs/Module/Register.php:89 -msgid "Passwords do not match." +#: ../../Zotlabs/Module/Setup.php:199 +msgid "Could not create table." msgstr "" -#: ../../Zotlabs/Module/Register.php:131 +#: ../../Zotlabs/Module/Setup.php:204 +msgid "Your site database has been installed." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:208 msgid "" -"Registration successful. Please check your email for validation instructions." +"You may need to import the file \"install/schema_xxx.sql\" manually using a " +"database client." msgstr "" -#: ../../Zotlabs/Module/Register.php:137 -msgid "Your registration is pending approval by the site owner." +#: ../../Zotlabs/Module/Setup.php:209 ../../Zotlabs/Module/Setup.php:271 +#: ../../Zotlabs/Module/Setup.php:734 +msgid "Please see the file \"install/INSTALL.txt\"." msgstr "" -#: ../../Zotlabs/Module/Register.php:140 -msgid "Your registration can not be processed." +#: ../../Zotlabs/Module/Setup.php:268 +msgid "System check" msgstr "" -#: ../../Zotlabs/Module/Register.php:184 -msgid "Registration on this hub is disabled." +#: ../../Zotlabs/Module/Setup.php:273 +msgid "Check again" msgstr "" -#: ../../Zotlabs/Module/Register.php:193 -msgid "Registration on this hub is by approval only." +#: ../../Zotlabs/Module/Setup.php:295 +msgid "Database connection" msgstr "" -#: ../../Zotlabs/Module/Register.php:194 -msgid "Register at another affiliated hub." -msgstr "" - -#: ../../Zotlabs/Module/Register.php:204 +#: ../../Zotlabs/Module/Setup.php:296 msgid "" -"This site has exceeded the number of allowed daily account registrations. " -"Please try again tomorrow." +"In order to install $Projectname we need to know how to connect to your " +"database." msgstr "" -#: ../../Zotlabs/Module/Register.php:221 -msgid "Terms of Service" +#: ../../Zotlabs/Module/Setup.php:297 +msgid "" +"Please contact your hosting provider or site administrator if you have " +"questions about these settings." msgstr "" -#: ../../Zotlabs/Module/Register.php:227 +#: ../../Zotlabs/Module/Setup.php:298 +msgid "" +"The database you specify below should already exist. If it does not, please " +"create it before continuing." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:302 +msgid "Database Server Name" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:302 +msgid "Default is 127.0.0.1" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:303 +msgid "Database Port" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:303 +msgid "Communication port number - use 0 for default" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:304 +msgid "Database Login Name" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:305 +msgid "Database Login Password" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:306 +msgid "Database Name" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:307 +msgid "Database Type" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:309 ../../Zotlabs/Module/Setup.php:355 +msgid "Site administrator email address" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:309 ../../Zotlabs/Module/Setup.php:355 +msgid "" +"Your account email address must match this in order to use the web admin " +"panel." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:310 ../../Zotlabs/Module/Setup.php:357 +msgid "Website URL" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:310 ../../Zotlabs/Module/Setup.php:357 +msgid "Please use SSL (https) URL if available." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:311 ../../Zotlabs/Module/Setup.php:361 +msgid "Please select a default timezone for your website" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:344 +msgid "Site settings" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:400 +msgid "PHP version 5.5 or greater is required." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:401 +msgid "PHP version" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:416 +msgid "Could not find a command line version of PHP in the web server PATH." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:417 +msgid "" +"If you don't have a command line version of PHP installed on server, you " +"will not be able to run background polling via cron." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:421 +msgid "PHP executable path" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:421 +msgid "" +"Enter full path to php executable. You can leave this blank to continue the " +"installation." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:426 +msgid "Command line PHP" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:435 +msgid "" +"The command line version of PHP on your system does not have " +"\"register_argc_argv\" enabled." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:436 +msgid "This is required for message delivery to work." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:439 +msgid "PHP register_argc_argv" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:457 #, php-format -msgid "I accept the %s for this website" -msgstr "" - -#: ../../Zotlabs/Module/Register.php:229 -#, php-format -msgid "I am over 13 years of age and accept the %s for this website" -msgstr "" - -#: ../../Zotlabs/Module/Register.php:233 -msgid "Your email address" -msgstr "" - -#: ../../Zotlabs/Module/Register.php:234 -msgid "Choose a password" -msgstr "" - -#: ../../Zotlabs/Module/Register.php:235 -msgid "Please re-enter your password" -msgstr "" - -#: ../../Zotlabs/Module/Register.php:236 -msgid "Please enter your invitation code" -msgstr "" - -#: ../../Zotlabs/Module/Register.php:241 -msgid "no" -msgstr "" - -#: ../../Zotlabs/Module/Register.php:241 -msgid "yes" -msgstr "" - -#: ../../Zotlabs/Module/Register.php:258 -msgid "Membership on this site is by invitation only." -msgstr "" - -#: ../../Zotlabs/Module/Register.php:270 ../../include/nav.php:152 -#: ../../boot.php:1721 -msgid "Register" -msgstr "" - -#: ../../Zotlabs/Module/Register.php:271 msgid "" -"This site may require email verification after submitting this form. If you " -"are returned to a login page, please check your email for instructions." +"Your max allowed total upload size is set to %s. Maximum size of one file to " +"upload is set to %s. You are allowed to upload up to %d files at once." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:462 +msgid "You can adjust these settings in the servers php.ini." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:464 +msgid "PHP upload limits" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:487 +msgid "" +"Error: the \"openssl_pkey_new\" function on this system is not able to " +"generate encryption keys" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:488 +msgid "" +"If running under Windows, please see \"http://www.php.net/manual/en/openssl." +"installation.php\"." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:491 +msgid "Generate encryption keys" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:503 +msgid "libCurl PHP module" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:504 +msgid "GD graphics PHP module" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:505 +msgid "OpenSSL PHP module" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:506 +msgid "mysqli or postgres PHP module" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:507 +msgid "mb_string PHP module" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:508 +msgid "xml PHP module" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:512 ../../Zotlabs/Module/Setup.php:514 +msgid "Apache mod_rewrite module" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:512 +msgid "" +"Error: Apache webserver mod-rewrite module is required but not installed." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:518 ../../Zotlabs/Module/Setup.php:521 +msgid "proc_open" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:518 +msgid "" +"Error: proc_open is required but is either not installed or has been " +"disabled in php.ini" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:526 +msgid "Error: libCURL PHP module required but not installed." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:530 +msgid "" +"Error: GD graphics PHP module with JPEG support required but not installed." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:534 +msgid "Error: openssl PHP module required but not installed." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:538 +msgid "" +"Error: mysqli or postgres PHP module required but neither are installed." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:542 +msgid "Error: mb_string PHP module required but not installed." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:546 +msgid "Error: xml PHP module required for DAV but not installed." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:564 +msgid "" +"The web installer needs to be able to create a file called \".htconfig.php\" " +"in the top folder of your web server and it is unable to do so." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:565 +msgid "" +"This is most often a permission setting, as the web server may not be able " +"to write files in your folder - even if you can." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:566 +msgid "" +"At the end of this procedure, we will give you a text to save in a file " +"named .htconfig.php in your Red top folder." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:567 +msgid "" +"You can alternatively skip this procedure and perform a manual installation. " +"Please see the file \"install/INSTALL.txt\" for instructions." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:570 +msgid ".htconfig.php is writable" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:584 +msgid "" +"Red uses the Smarty3 template engine to render its web views. Smarty3 " +"compiles templates to PHP to speed up rendering." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:585 +#, php-format +msgid "" +"In order to store these compiled templates, the web server needs to have " +"write access to the directory %s under the top level web folder." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:586 ../../Zotlabs/Module/Setup.php:607 +msgid "" +"Please ensure that the user that your web server runs as (e.g. www-data) has " +"write access to this folder." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:587 +#, php-format +msgid "" +"Note: as a security measure, you should give the web server write access to " +"%s only--not the template files (.tpl) that it contains." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:590 +#, php-format +msgid "%s is writable" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:606 +msgid "" +"This software uses the store directory to save uploaded files. The web " +"server needs to have write access to the store directory under the Red top " +"level folder" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:610 +msgid "store is writable" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:643 +msgid "" +"SSL certificate cannot be validated. Fix certificate or disable https access " +"to this site." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:644 +msgid "" +"If you have https access to your website or allow connections to TCP port " +"443 (the https: port), you MUST use a browser-valid certificate. You MUST " +"NOT use self-signed certificates!" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:645 +msgid "" +"This restriction is incorporated because public posts from you may for " +"example contain references to images on your own hub." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:646 +msgid "" +"If your certificate is not recognized, members of other sites (who may " +"themselves have valid certificates) will get a warning message on their own " +"site complaining about security issues." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:647 +msgid "" +"This can cause usability issues elsewhere (not just on your own site) so we " +"must insist on this requirement." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:648 +msgid "" +"Providers are available that issue free certificates which are browser-valid." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:650 +msgid "" +"If you are confident that the certificate is valid and signed by a trusted " +"authority, check to see if you have failed to install an intermediate cert. " +"These are not normally required by browsers, but are required for server-to-" +"server communications." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:653 +msgid "SSL certificate validation" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:659 +msgid "" +"Url rewrite in .htaccess is not working. Check your server configuration." +"Test: " +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:662 +msgid "Url rewrite is working" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:671 +msgid "" +"The database configuration file \".htconfig.php\" could not be written. " +"Please use the enclosed text to create a configuration file in your web " +"server root." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:695 +msgid "Errors encountered creating database tables." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:732 +msgid "

What next

" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:733 +msgid "" +"IMPORTANT: You will need to [manually] setup a scheduled task for the poller." msgstr "" #: ../../Zotlabs/Module/Oexchange.php:27 @@ -4686,26 +4534,9 @@ msgid "" "to correctly use this feature." msgstr "" -#: ../../Zotlabs/Module/Rate.php:155 ../../Zotlabs/Module/Connedit.php:762 -#: ../../include/js_strings.php:20 -msgid "Rating" -msgstr "" - -#: ../../Zotlabs/Module/Rate.php:156 -msgid "Website:" -msgstr "" - -#: ../../Zotlabs/Module/Rate.php:159 -#, php-format -msgid "Remote Channel [%s] (not yet known on this site)" -msgstr "" - -#: ../../Zotlabs/Module/Rate.php:160 -msgid "Rating (this information is public)" -msgstr "" - -#: ../../Zotlabs/Module/Rate.php:161 -msgid "Optionally explain your rating (this information is public)" +#: ../../Zotlabs/Module/Apps.php:46 ../../include/nav.php:168 +#: ../../include/widgets.php:102 +msgid "Apps" msgstr "" #: ../../Zotlabs/Module/Siteinfo.php:19 @@ -4766,7 +4597,7 @@ msgstr "" msgid "Site Administrators" msgstr "" -#: ../../Zotlabs/Module/Blocks.php:154 ../../include/text.php:2305 +#: ../../Zotlabs/Module/Blocks.php:154 ../../include/text.php:2308 msgid "Blocks" msgstr "" @@ -4774,13 +4605,13 @@ msgstr "" msgid "Block Title" msgstr "" -#: ../../Zotlabs/Module/Layouts.php:183 ../../include/text.php:2307 +#: ../../Zotlabs/Module/Layouts.php:183 ../../include/text.php:2310 msgid "Layouts" msgstr "" #: ../../Zotlabs/Module/Layouts.php:185 ../../Zotlabs/Lib/Apps.php:225 -#: ../../include/help.php:44 ../../include/help.php:49 -#: ../../include/nav.php:164 +#: ../../include/nav.php:164 ../../include/help.php:44 +#: ../../include/help.php:49 msgid "Help" msgstr "" @@ -4796,20 +4627,12 @@ msgstr "" msgid "Download PDL file" msgstr "" -#: ../../Zotlabs/Module/Ratings.php:70 -msgid "No ratings" -msgstr "" - -#: ../../Zotlabs/Module/Ratings.php:98 -msgid "Rating: " -msgstr "" - -#: ../../Zotlabs/Module/Ratings.php:99 -msgid "Website: " -msgstr "" - -#: ../../Zotlabs/Module/Ratings.php:101 -msgid "Description: " +#: ../../Zotlabs/Module/Profile_photo.php:115 +#: ../../Zotlabs/Module/Profile_photo.php:212 +#: ../../Zotlabs/Module/Profile_photo.php:311 +#: ../../Zotlabs/Module/Photos.php:97 ../../Zotlabs/Module/Photos.php:734 +#: ../../include/photo/photo_driver.php:718 +msgid "Profile Photos" msgstr "" #: ../../Zotlabs/Module/Profile_photo.php:186 @@ -4826,7 +4649,7 @@ msgstr "" msgid "Permissions denied." msgstr "" -#: ../../Zotlabs/Module/Cal.php:337 ../../include/text.php:2329 +#: ../../Zotlabs/Module/Cal.php:337 ../../include/text.php:2332 msgid "Import" msgstr "" @@ -4842,197 +4665,362 @@ msgstr "" msgid "No connections in common." msgstr "" -#: ../../Zotlabs/Module/Help.php:27 -msgid "Documentation Search" +#: ../../Zotlabs/Module/Acl.php:313 +msgid "network" msgstr "" -#: ../../Zotlabs/Module/Help.php:57 -msgid "$Projectname Documentation" +#: ../../Zotlabs/Module/Acl.php:323 +msgid "RSS" msgstr "" -#: ../../Zotlabs/Module/Mail.php:38 -msgid "Unable to lookup recipient." +#: ../../Zotlabs/Module/Pubsites.php:24 ../../include/widgets.php:1392 +msgid "Public Hubs" 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:70 -msgid "Selected channel has private message restrictions. Send failed." -msgstr "" - -#: ../../Zotlabs/Module/Mail.php:135 -msgid "Messages" -msgstr "" - -#: ../../Zotlabs/Module/Mail.php:170 -msgid "Message recalled." -msgstr "" - -#: ../../Zotlabs/Module/Mail.php:183 -msgid "Conversation removed." -msgstr "" - -#: ../../Zotlabs/Module/Mail.php:197 ../../Zotlabs/Module/Mail.php:306 -#: ../../Zotlabs/Module/Chat.php:205 ../../include/conversation.php:1183 -msgid "Please enter a link URL:" -msgstr "" - -#: ../../Zotlabs/Module/Mail.php:198 ../../Zotlabs/Module/Mail.php:307 -msgid "Expires YYYY-MM-DD HH:MM" -msgstr "" - -#: ../../Zotlabs/Module/Mail.php:226 -msgid "Requested channel is not in this network" -msgstr "" - -#: ../../Zotlabs/Module/Mail.php:234 -msgid "Send Private Message" -msgstr "" - -#: ../../Zotlabs/Module/Mail.php:235 ../../Zotlabs/Module/Mail.php:360 -msgid "To:" -msgstr "" - -#: ../../Zotlabs/Module/Mail.php:238 ../../Zotlabs/Module/Mail.php:362 -msgid "Subject:" -msgstr "" - -#: ../../Zotlabs/Module/Mail.php:243 ../../Zotlabs/Module/Mail.php:368 -#: ../../include/conversation.php:1243 -msgid "Attach file" -msgstr "" - -#: ../../Zotlabs/Module/Mail.php:245 -msgid "Send" -msgstr "" - -#: ../../Zotlabs/Module/Mail.php:248 ../../Zotlabs/Module/Mail.php:373 -#: ../../include/conversation.php:1288 -msgid "Set expiration date" -msgstr "" - -#: ../../Zotlabs/Module/Mail.php:250 ../../Zotlabs/Module/Mail.php:375 -#: ../../Zotlabs/Module/Chat.php:206 ../../Zotlabs/Lib/ThreadItem.php:724 -#: ../../include/conversation.php:1293 -msgid "Encrypt text" -msgstr "" - -#: ../../Zotlabs/Module/Mail.php:332 -msgid "Delete message" -msgstr "" - -#: ../../Zotlabs/Module/Mail.php:333 -msgid "Delivery report" -msgstr "" - -#: ../../Zotlabs/Module/Mail.php:334 -msgid "Recall message" -msgstr "" - -#: ../../Zotlabs/Module/Mail.php:336 -msgid "Message has been recalled." -msgstr "" - -#: ../../Zotlabs/Module/Mail.php:353 -msgid "Delete Conversation" -msgstr "" - -#: ../../Zotlabs/Module/Mail.php:355 +#: ../../Zotlabs/Module/Pubsites.php:27 msgid "" -"No secure communications available. You may be able to " -"respond from the sender's profile page." +"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/Mail.php:359 -msgid "Send Reply" +#: ../../Zotlabs/Module/Pubsites.php:33 +msgid "Hub URL" msgstr "" -#: ../../Zotlabs/Module/Mail.php:364 +#: ../../Zotlabs/Module/Pubsites.php:33 +msgid "Access Type" +msgstr "" + +#: ../../Zotlabs/Module/Pubsites.php:33 +msgid "Registration Policy" +msgstr "" + +#: ../../Zotlabs/Module/Pubsites.php:33 +msgid "Stats" +msgstr "" + +#: ../../Zotlabs/Module/Pubsites.php:33 +msgid "Software" +msgstr "" + +#: ../../Zotlabs/Module/Pubsites.php:48 +msgid "Rate" +msgstr "" + +#: ../../Zotlabs/Module/Pdledit.php:21 +msgid "Layout updated." +msgstr "" + +#: ../../Zotlabs/Module/Pdledit.php:34 ../../Zotlabs/Module/Chat.php:218 +msgid "Feature disabled." +msgstr "" + +#: ../../Zotlabs/Module/Pdledit.php:42 ../../Zotlabs/Module/Pdledit.php:69 +msgid "Edit System Page Description" +msgstr "" + +#: ../../Zotlabs/Module/Pdledit.php:64 +msgid "Layout not found." +msgstr "" + +#: ../../Zotlabs/Module/Pdledit.php:70 +msgid "Module Name:" +msgstr "" + +#: ../../Zotlabs/Module/Pdledit.php:71 +msgid "Layout Help" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:80 +msgid "Could not access contact record." +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:104 +msgid "Could not locate selected profile." +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:256 +msgid "Connection updated." +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:258 +msgid "Failed to update connection record." +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:308 +msgid "is now connected to" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:440 +msgid "Could not access address book record." +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:460 +msgid "Refresh failed - channel is currently unavailable." +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:475 ../../Zotlabs/Module/Connedit.php:484 +#: ../../Zotlabs/Module/Connedit.php:493 ../../Zotlabs/Module/Connedit.php:502 +#: ../../Zotlabs/Module/Connedit.php:515 +msgid "Unable to set address book parameters." +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:538 +msgid "Connection has been removed." +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:554 ../../Zotlabs/Lib/Apps.php:221 +#: ../../include/nav.php:89 ../../include/conversation.php:955 +msgid "View Profile" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:557 #, php-format -msgid "Your message for %s (%s):" +msgid "View %s's profile" msgstr "" -#: ../../Zotlabs/Module/Item.php:180 -msgid "Unable to locate original post." +#: ../../Zotlabs/Module/Connedit.php:561 +msgid "Refresh Permissions" msgstr "" -#: ../../Zotlabs/Module/Item.php:433 -msgid "Empty post discarded." +#: ../../Zotlabs/Module/Connedit.php:564 +msgid "Fetch updated permissions" msgstr "" -#: ../../Zotlabs/Module/Item.php:473 -msgid "Executable content type not permitted to this channel." +#: ../../Zotlabs/Module/Connedit.php:568 +msgid "Recent Activity" msgstr "" -#: ../../Zotlabs/Module/Item.php:858 -msgid "Duplicate post suppressed." +#: ../../Zotlabs/Module/Connedit.php:571 +msgid "View recent posts and comments" msgstr "" -#: ../../Zotlabs/Module/Item.php:991 -msgid "System error. Post not saved." +#: ../../Zotlabs/Module/Connedit.php:578 +msgid "Block (or Unblock) all communications with this connection" msgstr "" -#: ../../Zotlabs/Module/Item.php:1112 -msgid "Unable to obtain post information from database." +#: ../../Zotlabs/Module/Connedit.php:579 +msgid "This connection is blocked!" msgstr "" -#: ../../Zotlabs/Module/Item.php:1119 +#: ../../Zotlabs/Module/Connedit.php:583 +msgid "Unignore" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:586 +msgid "Ignore (or Unignore) all inbound communications from this connection" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:587 +msgid "This connection is ignored!" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:591 +msgid "Unarchive" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:591 +msgid "Archive" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:594 +msgid "" +"Archive (or Unarchive) this connection - mark channel dead but keep content" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:595 +msgid "This connection is archived!" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:599 +msgid "Unhide" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:599 +msgid "Hide" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:602 +msgid "Hide or Unhide this connection from your other connections" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:603 +msgid "This connection is hidden!" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:610 +msgid "Delete this connection" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:625 ../../include/widgets.php:529 +msgid "Me" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:626 ../../include/widgets.php:530 +msgid "Family" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:627 +#: ../../Zotlabs/Module/Settings/Channel.php:61 +#: ../../Zotlabs/Module/Settings/Channel.php:65 +#: ../../Zotlabs/Module/Settings/Channel.php:66 +#: ../../Zotlabs/Module/Settings/Channel.php:69 +#: ../../Zotlabs/Module/Settings/Channel.php:80 +#: ../../include/selectors.php:123 ../../include/channel.php:402 +#: ../../include/channel.php:403 ../../include/channel.php:410 +#: ../../include/widgets.php:531 +msgid "Friends" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:628 ../../include/widgets.php:532 +msgid "Acquaintances" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:686 +msgid "Approve this connection" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:686 +msgid "Accept connection to allow communication" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:691 +msgid "Set Affinity" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:694 +msgid "Set Profile" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:697 +msgid "Set Affinity & Profile" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:746 +msgid "none" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:750 ../../include/widgets.php:656 +msgid "Connection Default Permissions" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:750 ../../include/items.php:3983 #, php-format -msgid "You have reached your limit of %1$.0f top level posts." +msgid "Connection: %s" msgstr "" -#: ../../Zotlabs/Module/Item.php:1126 +#: ../../Zotlabs/Module/Connedit.php:751 +msgid "Apply these permissions automatically" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:751 +msgid "Connection requests will be approved without your interaction" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:753 +msgid "This connection's primary address is" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:754 +msgid "Available locations:" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:758 +msgid "" +"The permissions indicated on this page will be applied to all new " +"connections." +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:759 +msgid "Connection Tools" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:761 +msgid "Slide to adjust your degree of friendship" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:763 +msgid "Slide to adjust your rating" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:764 ../../Zotlabs/Module/Connedit.php:769 +msgid "Optionally explain your rating" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:766 +msgid "Custom Filter" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:767 +msgid "Only import posts with this text" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:767 ../../Zotlabs/Module/Connedit.php:768 +msgid "" +"words one per line or #tags or /patterns/ or lang=xx, leave blank to import " +"all posts" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:768 +msgid "Do not import posts with this text" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:770 +msgid "This information is public!" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:775 +msgid "Connection Pending Approval" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:778 +#: ../../Zotlabs/Module/Settings/Tokens.php:163 +msgid "inherited" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:780 #, php-format -msgid "You have reached your limit of %1$.0f webpages." -msgstr "" - -#: ../../Zotlabs/Module/Connect.php:61 ../../Zotlabs/Module/Connect.php:109 -msgid "Continue" -msgstr "" - -#: ../../Zotlabs/Module/Connect.php:90 -msgid "Premium Channel Setup" -msgstr "" - -#: ../../Zotlabs/Module/Connect.php:92 -msgid "Enable premium channel connection restrictions" -msgstr "" - -#: ../../Zotlabs/Module/Connect.php:93 msgid "" -"Please enter your restrictions or conditions, such as paypal receipt, usage " -"guidelines, etc." +"Please choose the profile you would like to display to %s when viewing your " +"profile securely." msgstr "" -#: ../../Zotlabs/Module/Connect.php:95 ../../Zotlabs/Module/Connect.php:115 +#: ../../Zotlabs/Module/Connedit.php:782 +#: ../../Zotlabs/Module/Settings/Tokens.php:160 +msgid "Their Settings" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:783 +#: ../../Zotlabs/Module/Settings/Tokens.php:161 +msgid "My Settings" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:785 +#: ../../Zotlabs/Module/Settings/Tokens.php:165 +msgid "Individual Permissions" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:786 +#: ../../Zotlabs/Module/Settings/Tokens.php:166 msgid "" -"This channel may require additional steps or acknowledgement of the " -"following conditions prior to connecting:" +"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/Connect.php:96 +#: ../../Zotlabs/Module/Connedit.php:787 msgid "" -"Potential connections will then see the following text before proceeding:" +"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/Connect.php:97 ../../Zotlabs/Module/Connect.php:118 -msgid "" -"By continuing, I certify that I have complied with any instructions provided " -"on this page." -msgstr "" - -#: ../../Zotlabs/Module/Connect.php:106 -msgid "(No specific instructions have been provided by the channel owner.)" -msgstr "" - -#: ../../Zotlabs/Module/Connect.php:114 -msgid "Restricted or Premium Channel" +#: ../../Zotlabs/Module/Connedit.php:788 +msgid "Last update:" msgstr "" #: ../../Zotlabs/Module/Rbmark.php:94 @@ -5051,6 +5039,10 @@ msgstr "" msgid "Or enter new bookmark folder name" msgstr "" +#: ../../Zotlabs/Module/Regdir.php:49 ../../Zotlabs/Module/Dirsearch.php:25 +msgid "This site is not a directory server" +msgstr "" + #: ../../Zotlabs/Module/Rmagic.php:35 msgid "Authentication failed." msgstr "" @@ -5220,57 +5212,21 @@ msgstr "" msgid "Search results for: %s" msgstr "" -#: ../../Zotlabs/Module/Webpages.php:52 -msgid "Import Webpage Elements" +#: ../../Zotlabs/Module/Channel.php:28 ../../Zotlabs/Module/Wiki.php:20 +#: ../../Zotlabs/Module/Chat.php:25 +msgid "You must be logged in to see this page." msgstr "" -#: ../../Zotlabs/Module/Webpages.php:53 -msgid "Import selected" +#: ../../Zotlabs/Module/Channel.php:40 +msgid "Posts and comments" msgstr "" -#: ../../Zotlabs/Module/Webpages.php:76 -msgid "Export Webpage Elements" +#: ../../Zotlabs/Module/Channel.php:41 +msgid "Only posts" msgstr "" -#: ../../Zotlabs/Module/Webpages.php:77 -msgid "Export selected" -msgstr "" - -#: ../../Zotlabs/Module/Webpages.php:237 ../../Zotlabs/Lib/Apps.php:218 -#: ../../include/nav.php:109 ../../include/conversation.php:1724 -msgid "Webpages" -msgstr "" - -#: ../../Zotlabs/Module/Webpages.php:248 ../../include/page_widgets.php:44 -msgid "Actions" -msgstr "" - -#: ../../Zotlabs/Module/Webpages.php:249 ../../include/page_widgets.php:45 -msgid "Page Link" -msgstr "" - -#: ../../Zotlabs/Module/Webpages.php:250 -msgid "Page Title" -msgstr "" - -#: ../../Zotlabs/Module/Webpages.php:280 -msgid "Invalid file type." -msgstr "" - -#: ../../Zotlabs/Module/Webpages.php:292 -msgid "Error opening zip file" -msgstr "" - -#: ../../Zotlabs/Module/Webpages.php:303 -msgid "Invalid folder path." -msgstr "" - -#: ../../Zotlabs/Module/Webpages.php:330 -msgid "No webpage elements detected." -msgstr "" - -#: ../../Zotlabs/Module/Webpages.php:405 -msgid "Import complete." +#: ../../Zotlabs/Module/Channel.php:101 +msgid "Insufficient permissions. Request redirected to profile page." msgstr "" #: ../../Zotlabs/Module/Service_limits.php:23 @@ -5334,21 +5290,8 @@ msgstr "" msgid "Add Thing to your Profile" msgstr "" -#: ../../Zotlabs/Module/Channel.php:28 ../../Zotlabs/Module/Wiki.php:20 -#: ../../Zotlabs/Module/Chat.php:25 -msgid "You must be logged in to see this page." -msgstr "" - -#: ../../Zotlabs/Module/Channel.php:40 -msgid "Posts and comments" -msgstr "" - -#: ../../Zotlabs/Module/Channel.php:41 -msgid "Only posts" -msgstr "" - -#: ../../Zotlabs/Module/Channel.php:101 -msgid "Insufficient permissions. Request redirected to profile page." +#: ../../Zotlabs/Module/Dirsearch.php:33 +msgid "This directory server requires an access token" msgstr "" #: ../../Zotlabs/Module/Sharedwithme.php:98 @@ -5546,8 +5489,8 @@ msgstr "" msgid "post" msgstr "" -#: ../../Zotlabs/Module/Tagger.php:57 ../../include/text.php:1996 -#: ../../include/conversation.php:150 +#: ../../Zotlabs/Module/Tagger.php:57 ../../include/conversation.php:150 +#: ../../include/text.php:1999 msgid "comment" msgstr "" @@ -5568,292 +5511,281 @@ msgstr "" msgid "Select a tag to remove: " msgstr "" -#: ../../Zotlabs/Module/Connedit.php:80 -msgid "Could not access contact record." +#: ../../Zotlabs/Module/Photos.php:82 +msgid "Page owner information could not be retrieved." msgstr "" -#: ../../Zotlabs/Module/Connedit.php:104 -msgid "Could not locate selected profile." +#: ../../Zotlabs/Module/Photos.php:103 ../../Zotlabs/Module/Photos.php:129 +msgid "Album not found." msgstr "" -#: ../../Zotlabs/Module/Connedit.php:256 -msgid "Connection updated." +#: ../../Zotlabs/Module/Photos.php:112 +msgid "Delete Album" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:258 -msgid "Failed to update connection record." +#: ../../Zotlabs/Module/Photos.php:133 +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/Connedit.php:308 -msgid "is now connected to" +#: ../../Zotlabs/Module/Photos.php:190 ../../Zotlabs/Module/Photos.php:1059 +msgid "Delete Photo" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:440 -msgid "Could not access address book record." +#: ../../Zotlabs/Module/Photos.php:520 +msgid "No photos selected" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:460 -msgid "Refresh failed - channel is currently unavailable." +#: ../../Zotlabs/Module/Photos.php:569 +msgid "Access to this item is restricted." msgstr "" -#: ../../Zotlabs/Module/Connedit.php:475 ../../Zotlabs/Module/Connedit.php:484 -#: ../../Zotlabs/Module/Connedit.php:493 ../../Zotlabs/Module/Connedit.php:502 -#: ../../Zotlabs/Module/Connedit.php:515 -msgid "Unable to set address book parameters." -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:538 -msgid "Connection has been removed." -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:554 ../../Zotlabs/Lib/Apps.php:221 -#: ../../include/nav.php:89 ../../include/conversation.php:955 -msgid "View Profile" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:557 +#: ../../Zotlabs/Module/Photos.php:608 #, php-format -msgid "View %s's profile" +msgid "%1$.2f MB of %2$.2f MB photo storage used." msgstr "" -#: ../../Zotlabs/Module/Connedit.php:561 -msgid "Refresh Permissions" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:564 -msgid "Fetch updated permissions" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:568 -msgid "Recent Activity" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:571 -msgid "View recent posts and comments" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:578 -msgid "Block (or Unblock) all communications with this connection" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:579 -msgid "This connection is blocked!" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:583 -msgid "Unignore" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:586 -msgid "Ignore (or Unignore) all inbound communications from this connection" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:587 -msgid "This connection is ignored!" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:591 -msgid "Unarchive" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:591 -msgid "Archive" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:594 -msgid "" -"Archive (or Unarchive) this connection - mark channel dead but keep content" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:595 -msgid "This connection is archived!" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:599 -msgid "Unhide" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:599 -msgid "Hide" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:602 -msgid "Hide or Unhide this connection from your other connections" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:603 -msgid "This connection is hidden!" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:610 -msgid "Delete this connection" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:625 ../../include/widgets.php:529 -msgid "Me" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:626 ../../include/widgets.php:530 -msgid "Family" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:627 -#: ../../Zotlabs/Module/Settings/Channel.php:61 -#: ../../Zotlabs/Module/Settings/Channel.php:65 -#: ../../Zotlabs/Module/Settings/Channel.php:66 -#: ../../Zotlabs/Module/Settings/Channel.php:69 -#: ../../Zotlabs/Module/Settings/Channel.php:80 ../../include/channel.php:402 -#: ../../include/channel.php:403 ../../include/channel.php:410 -#: ../../include/selectors.php:123 ../../include/widgets.php:531 -msgid "Friends" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:628 ../../include/widgets.php:532 -msgid "Acquaintances" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:686 -msgid "Approve this connection" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:686 -msgid "Accept connection to allow communication" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:691 -msgid "Set Affinity" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:694 -msgid "Set Profile" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:697 -msgid "Set Affinity & Profile" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:746 -msgid "none" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:750 ../../include/widgets.php:656 -msgid "Connection Default Permissions" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:750 ../../include/items.php:3983 +#: ../../Zotlabs/Module/Photos.php:611 #, php-format -msgid "Connection: %s" +msgid "%1$.2f MB photo storage used." msgstr "" -#: ../../Zotlabs/Module/Connedit.php:751 -msgid "Apply these permissions automatically" +#: ../../Zotlabs/Module/Photos.php:647 +msgid "Upload Photos" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:751 -msgid "Connection requests will be approved without your interaction" +#: ../../Zotlabs/Module/Photos.php:651 +msgid "Enter an album name" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:753 -msgid "This connection's primary address is" +#: ../../Zotlabs/Module/Photos.php:652 +msgid "or select an existing album (doubleclick)" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:754 -msgid "Available locations:" +#: ../../Zotlabs/Module/Photos.php:653 +msgid "Create a status post for this upload" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:758 -msgid "" -"The permissions indicated on this page will be applied to all new " -"connections." +#: ../../Zotlabs/Module/Photos.php:654 +msgid "Caption (optional):" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:759 -msgid "Connection Tools" +#: ../../Zotlabs/Module/Photos.php:655 +msgid "Description (optional):" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:761 -msgid "Slide to adjust your degree of friendship" +#: ../../Zotlabs/Module/Photos.php:686 +msgid "Album name could not be decoded" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:763 -msgid "Slide to adjust your rating" +#: ../../Zotlabs/Module/Photos.php:734 +msgid "Contact Photos" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:764 ../../Zotlabs/Module/Connedit.php:769 -msgid "Optionally explain your rating" +#: ../../Zotlabs/Module/Photos.php:757 +msgid "Show Newest First" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:766 -msgid "Custom Filter" +#: ../../Zotlabs/Module/Photos.php:759 +msgid "Show Oldest First" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:767 -msgid "Only import posts with this text" +#: ../../Zotlabs/Module/Photos.php:783 ../../Zotlabs/Module/Photos.php:1337 +#: ../../Zotlabs/Module/Embedphotos.php:141 ../../include/widgets.php:1673 +msgid "View Photo" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:767 ../../Zotlabs/Module/Connedit.php:768 -msgid "" -"words one per line or #tags or /patterns/ or lang=xx, leave blank to import " -"all posts" +#: ../../Zotlabs/Module/Photos.php:814 +#: ../../Zotlabs/Module/Embedphotos.php:157 ../../include/widgets.php:1690 +msgid "Edit Album" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:768 -msgid "Do not import posts with this text" +#: ../../Zotlabs/Module/Photos.php:861 +msgid "Permission denied. Access to this item may be restricted." msgstr "" -#: ../../Zotlabs/Module/Connedit.php:770 -msgid "This information is public!" +#: ../../Zotlabs/Module/Photos.php:863 +msgid "Photo not available" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:775 -msgid "Connection Pending Approval" +#: ../../Zotlabs/Module/Photos.php:921 +msgid "Use as profile photo" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:778 -#: ../../Zotlabs/Module/Settings/Tokens.php:163 -msgid "inherited" +#: ../../Zotlabs/Module/Photos.php:922 +msgid "Use as cover photo" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:780 -#, php-format -msgid "" -"Please choose the profile you would like to display to %s when viewing your " -"profile securely." +#: ../../Zotlabs/Module/Photos.php:929 +msgid "Private Photo" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:782 -#: ../../Zotlabs/Module/Settings/Tokens.php:160 -msgid "Their Settings" +#: ../../Zotlabs/Module/Photos.php:944 +msgid "View Full Size" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:783 -#: ../../Zotlabs/Module/Settings/Tokens.php:161 -msgid "My Settings" +#: ../../Zotlabs/Module/Photos.php:1033 +msgid "Edit photo" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:785 -#: ../../Zotlabs/Module/Settings/Tokens.php:165 -msgid "Individual Permissions" +#: ../../Zotlabs/Module/Photos.php:1035 +msgid "Rotate CW (right)" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:786 -#: ../../Zotlabs/Module/Settings/Tokens.php:166 -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/Photos.php:1036 +msgid "Rotate CCW (left)" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:787 -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/Photos.php:1039 +msgid "Move photo to album" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:788 -msgid "Last update:" +#: ../../Zotlabs/Module/Photos.php:1040 +msgid "Enter a new album name" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:1041 +msgid "or select an existing one (doubleclick)" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:1044 +msgid "Caption" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:1046 +msgid "Add a Tag" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:1054 +msgid "Example: @bob, @Barbara_Jensen, @jim@example.com" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:1057 +msgid "Flag as adult in album view" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:1076 ../../Zotlabs/Lib/ThreadItem.php:263 +msgid "I like this (toggle)" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:1077 ../../Zotlabs/Lib/ThreadItem.php:264 +msgid "I don't like this (toggle)" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:1079 ../../Zotlabs/Lib/ThreadItem.php:399 +#: ../../include/conversation.php:743 +msgid "Please wait" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:1095 ../../Zotlabs/Module/Photos.php:1213 +#: ../../Zotlabs/Lib/ThreadItem.php:709 +msgid "This is you" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:1097 ../../Zotlabs/Module/Photos.php:1215 +#: ../../Zotlabs/Lib/ThreadItem.php:711 ../../include/js_strings.php:6 +msgid "Comment" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:1113 ../../include/conversation.php:577 +msgctxt "title" +msgid "Likes" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:1113 ../../include/conversation.php:577 +msgctxt "title" +msgid "Dislikes" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:1114 ../../include/conversation.php:578 +msgctxt "title" +msgid "Agree" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:1114 ../../include/conversation.php:578 +msgctxt "title" +msgid "Disagree" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:1114 ../../include/conversation.php:578 +msgctxt "title" +msgid "Abstain" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:1115 ../../include/conversation.php:579 +msgctxt "title" +msgid "Attending" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:1115 ../../include/conversation.php:579 +msgctxt "title" +msgid "Not attending" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:1115 ../../include/conversation.php:579 +msgctxt "title" +msgid "Might attend" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:1132 ../../Zotlabs/Module/Photos.php:1144 +#: ../../Zotlabs/Lib/ThreadItem.php:181 ../../Zotlabs/Lib/ThreadItem.php:193 +#: ../../include/conversation.php:1762 +msgid "View all" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:1136 ../../Zotlabs/Lib/ThreadItem.php:185 +#: ../../include/channel.php:1182 ../../include/conversation.php:1786 +#: ../../include/taxonomy.php:403 +msgctxt "noun" +msgid "Like" +msgid_plural "Likes" +msgstr[0] "" +msgstr[1] "" + +#: ../../Zotlabs/Module/Photos.php:1141 ../../Zotlabs/Lib/ThreadItem.php:190 +#: ../../include/conversation.php:1789 +msgctxt "noun" +msgid "Dislike" +msgid_plural "Dislikes" +msgstr[0] "" +msgstr[1] "" + +#: ../../Zotlabs/Module/Photos.php:1241 +msgid "Photo Tools" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:1250 +msgid "In This Photo:" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:1255 +msgid "Map" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:1263 ../../Zotlabs/Lib/ThreadItem.php:388 +msgctxt "noun" +msgid "Likes" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:1264 ../../Zotlabs/Lib/ThreadItem.php:389 +msgctxt "noun" +msgid "Dislikes" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:1269 ../../Zotlabs/Lib/ThreadItem.php:394 +#: ../../include/acl_selectors.php:181 +msgid "Close" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:1343 +msgid "View Album" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:1354 ../../Zotlabs/Module/Photos.php:1367 +#: ../../Zotlabs/Module/Photos.php:1368 +msgid "Recent Photos" msgstr "" #: ../../Zotlabs/Module/Follow.php:34 @@ -5938,6 +5870,74 @@ msgstr "" msgid "Lookup xchan beginning with (or webbie): " msgstr "" +#: ../../Zotlabs/Module/Admin.php:97 +msgid "# Accounts" +msgstr "" + +#: ../../Zotlabs/Module/Admin.php:98 +msgid "# blocked accounts" +msgstr "" + +#: ../../Zotlabs/Module/Admin.php:99 +msgid "# expired accounts" +msgstr "" + +#: ../../Zotlabs/Module/Admin.php:100 +msgid "# expiring accounts" +msgstr "" + +#: ../../Zotlabs/Module/Admin.php:111 +msgid "# Channels" +msgstr "" + +#: ../../Zotlabs/Module/Admin.php:112 +msgid "# primary" +msgstr "" + +#: ../../Zotlabs/Module/Admin.php:113 +msgid "# clones" +msgstr "" + +#: ../../Zotlabs/Module/Admin.php:119 +msgid "Message queues" +msgstr "" + +#: ../../Zotlabs/Module/Admin.php:136 +msgid "Your software should be updated" +msgstr "" + +#: ../../Zotlabs/Module/Admin.php:142 +msgid "Summary" +msgstr "" + +#: ../../Zotlabs/Module/Admin.php:145 +msgid "Registered accounts" +msgstr "" + +#: ../../Zotlabs/Module/Admin.php:146 +msgid "Pending registrations" +msgstr "" + +#: ../../Zotlabs/Module/Admin.php:147 +msgid "Registered channels" +msgstr "" + +#: ../../Zotlabs/Module/Admin.php:148 +msgid "Active plugins" +msgstr "" + +#: ../../Zotlabs/Module/Admin.php:149 +msgid "Version" +msgstr "" + +#: ../../Zotlabs/Module/Admin.php:150 +msgid "Repository version (master)" +msgstr "" + +#: ../../Zotlabs/Module/Admin.php:151 +msgid "Repository version (dev)" +msgstr "" + #: ../../Zotlabs/Module/Settings/Account.php:20 msgid "Not valid email." msgstr "" @@ -7219,307 +7219,6 @@ msgstr "" msgid "MySpace" msgstr "" -#: ../../include/channel.php:33 -msgid "Unable to obtain identity information from database" -msgstr "" - -#: ../../include/channel.php:67 -msgid "Empty name" -msgstr "" - -#: ../../include/channel.php:70 -msgid "Name too long" -msgstr "" - -#: ../../include/channel.php:181 -msgid "No account identifier" -msgstr "" - -#: ../../include/channel.php:193 -msgid "Nickname is required." -msgstr "" - -#: ../../include/channel.php:207 -msgid "Reserved nickname. Please choose another." -msgstr "" - -#: ../../include/channel.php:212 -msgid "" -"Nickname has unsupported characters or is already being used on this site." -msgstr "" - -#: ../../include/channel.php:272 -msgid "Unable to retrieve created identity" -msgstr "" - -#: ../../include/channel.php:341 -msgid "Default Profile" -msgstr "" - -#: ../../include/channel.php:813 -msgid "Requested channel is not available." -msgstr "" - -#: ../../include/channel.php:960 -msgid "Create New Profile" -msgstr "" - -#: ../../include/channel.php:963 ../../include/nav.php:93 -msgid "Edit Profile" -msgstr "" - -#: ../../include/channel.php:980 -msgid "Visible to everybody" -msgstr "" - -#: ../../include/channel.php:1053 ../../include/channel.php:1166 -msgid "Gender:" -msgstr "" - -#: ../../include/channel.php:1054 ../../include/channel.php:1210 -msgid "Status:" -msgstr "" - -#: ../../include/channel.php:1055 ../../include/channel.php:1221 -msgid "Homepage:" -msgstr "" - -#: ../../include/channel.php:1056 -msgid "Online Now" -msgstr "" - -#: ../../include/channel.php:1171 -msgid "Like this channel" -msgstr "" - -#: ../../include/channel.php:1195 -msgid "j F, Y" -msgstr "" - -#: ../../include/channel.php:1196 -msgid "j F" -msgstr "" - -#: ../../include/channel.php:1203 -msgid "Birthday:" -msgstr "" - -#: ../../include/channel.php:1216 -#, php-format -msgid "for %1$d %2$s" -msgstr "" - -#: ../../include/channel.php:1219 -msgid "Sexual Preference:" -msgstr "" - -#: ../../include/channel.php:1225 -msgid "Tags:" -msgstr "" - -#: ../../include/channel.php:1227 -msgid "Political Views:" -msgstr "" - -#: ../../include/channel.php:1229 -msgid "Religion:" -msgstr "" - -#: ../../include/channel.php:1233 -msgid "Hobbies/Interests:" -msgstr "" - -#: ../../include/channel.php:1235 -msgid "Likes:" -msgstr "" - -#: ../../include/channel.php:1237 -msgid "Dislikes:" -msgstr "" - -#: ../../include/channel.php:1239 -msgid "Contact information and Social Networks:" -msgstr "" - -#: ../../include/channel.php:1241 -msgid "My other channels:" -msgstr "" - -#: ../../include/channel.php:1243 -msgid "Musical interests:" -msgstr "" - -#: ../../include/channel.php:1245 -msgid "Books, literature:" -msgstr "" - -#: ../../include/channel.php:1247 -msgid "Television:" -msgstr "" - -#: ../../include/channel.php:1249 -msgid "Film/dance/culture/entertainment:" -msgstr "" - -#: ../../include/channel.php:1251 -msgid "Love/Romance:" -msgstr "" - -#: ../../include/channel.php:1253 -msgid "Work/employment:" -msgstr "" - -#: ../../include/channel.php:1255 -msgid "School/education:" -msgstr "" - -#: ../../include/channel.php:1276 -msgid "Like this thing" -msgstr "" - -#: ../../include/contact_widgets.php:11 -#, php-format -msgid "%d invitation available" -msgid_plural "%d invitations available" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/contact_widgets.php:19 -msgid "Find Channels" -msgstr "" - -#: ../../include/contact_widgets.php:20 -msgid "Enter name or interest" -msgstr "" - -#: ../../include/contact_widgets.php:21 -msgid "Connect/Follow" -msgstr "" - -#: ../../include/contact_widgets.php:22 -msgid "Examples: Robert Morgenstein, Fishing" -msgstr "" - -#: ../../include/contact_widgets.php:26 -msgid "Random Profile" -msgstr "" - -#: ../../include/contact_widgets.php:27 -msgid "Invite Friends" -msgstr "" - -#: ../../include/contact_widgets.php:29 -msgid "Advanced example: name=fred and country=iceland" -msgstr "" - -#: ../../include/contact_widgets.php:53 ../../include/widgets.php:346 -#: ../../include/features.php:97 -msgid "Saved Folders" -msgstr "" - -#: ../../include/contact_widgets.php:56 ../../include/contact_widgets.php:94 -#: ../../include/widgets.php:349 ../../include/widgets.php:468 -msgid "Everything" -msgstr "" - -#: ../../include/contact_widgets.php:91 ../../include/taxonomy.php:188 -#: ../../include/taxonomy.php:270 ../../include/widgets.php:46 -#: ../../include/widgets.php:465 -msgid "Categories" -msgstr "" - -#: ../../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/account.php:35 -msgid "Not a valid email address" -msgstr "" - -#: ../../include/account.php:37 -msgid "Your email domain is not among those allowed on this site" -msgstr "" - -#: ../../include/account.php:43 -msgid "Your email address is already registered at this site." -msgstr "" - -#: ../../include/account.php:75 -msgid "An invitation is required." -msgstr "" - -#: ../../include/account.php:79 -msgid "Invitation could not be verified." -msgstr "" - -#: ../../include/account.php:130 -msgid "Please enter the required information." -msgstr "" - -#: ../../include/account.php:198 -msgid "Failed to store account information." -msgstr "" - -#: ../../include/account.php:258 -#, php-format -msgid "Registration confirmation for %s" -msgstr "" - -#: ../../include/account.php:324 -#, php-format -msgid "Registration request at %s" -msgstr "" - -#: ../../include/account.php:348 -msgid "your registration password" -msgstr "" - -#: ../../include/account.php:351 ../../include/account.php:411 -#, php-format -msgid "Registration details for %s" -msgstr "" - -#: ../../include/account.php:423 -msgid "Account approved." -msgstr "" - -#: ../../include/account.php:463 -#, php-format -msgid "Registration revoked for %s" -msgstr "" - -#: ../../include/account.php:748 ../../include/account.php:750 -msgid "Click here to upgrade." -msgstr "" - -#: ../../include/account.php:756 -msgid "This action exceeds the limits set by your subscription plan." -msgstr "" - -#: ../../include/account.php:761 -msgid "This action is not available under your subscription plan." -msgstr "" - -#: ../../include/connections.php:95 -msgid "New window" -msgstr "" - -#: ../../include/connections.php:96 -msgid "Open the selected location in a different window or browser tab" -msgstr "" - -#: ../../include/connections.php:214 -#, php-format -msgid "User '%s' deleted" -msgstr "" - #: ../../include/photos.php:114 #, php-format msgid "Image exceeds website size limit of %lu bytes" @@ -7551,354 +7250,324 @@ msgstr "" msgid "Upload New Photos" msgstr "" -#: ../../include/text.php:447 -msgid "prev" +#: ../../include/nav.php:85 ../../include/nav.php:118 ../../boot.php:1738 +msgid "Logout" msgstr "" -#: ../../include/text.php:449 -msgid "first" +#: ../../include/nav.php:85 ../../include/nav.php:118 +msgid "End this session" msgstr "" -#: ../../include/text.php:478 -msgid "last" +#: ../../include/nav.php:88 ../../include/nav.php:149 +msgid "Home" msgstr "" -#: ../../include/text.php:481 -msgid "next" +#: ../../include/nav.php:88 +msgid "Your posts and conversations" msgstr "" -#: ../../include/text.php:491 -msgid "older" +#: ../../include/nav.php:89 +msgid "Your profile page" msgstr "" -#: ../../include/text.php:493 -msgid "newer" +#: ../../include/nav.php:91 +msgid "Manage/Edit profiles" msgstr "" -#: ../../include/text.php:886 -msgid "No connections" +#: ../../include/nav.php:93 ../../include/channel.php:963 +msgid "Edit Profile" msgstr "" -#: ../../include/text.php:911 +#: ../../include/nav.php:93 +msgid "Edit your profile" +msgstr "" + +#: ../../include/nav.php:95 +msgid "Your photos" +msgstr "" + +#: ../../include/nav.php:96 +msgid "Your files" +msgstr "" + +#: ../../include/nav.php:99 +msgid "Your chatrooms" +msgstr "" + +#: ../../include/nav.php:105 ../../include/conversation.php:1714 +msgid "Bookmarks" +msgstr "" + +#: ../../include/nav.php:105 +msgid "Your bookmarks" +msgstr "" + +#: ../../include/nav.php:109 +msgid "Your webpages" +msgstr "" + +#: ../../include/nav.php:111 +msgid "Your wiki" +msgstr "" + +#: ../../include/nav.php:115 +msgid "Sign in" +msgstr "" + +#: ../../include/nav.php:132 #, php-format -msgid "View all %s connections" +msgid "%s - click to logout" msgstr "" -#: ../../include/text.php:1056 ../../include/text.php:1061 -msgid "poke" +#: ../../include/nav.php:135 +msgid "Remote authentication" msgstr "" -#: ../../include/text.php:1056 ../../include/text.php:1061 -#: ../../include/conversation.php:243 -msgid "poked" +#: ../../include/nav.php:135 +msgid "Click to authenticate to your home hub" msgstr "" -#: ../../include/text.php:1062 -msgid "ping" +#: ../../include/nav.php:149 +msgid "Home Page" msgstr "" -#: ../../include/text.php:1062 -msgid "pinged" +#: ../../include/nav.php:152 +msgid "Create an account" msgstr "" -#: ../../include/text.php:1063 -msgid "prod" +#: ../../include/nav.php:164 +msgid "Help and documentation" msgstr "" -#: ../../include/text.php:1063 -msgid "prodded" +#: ../../include/nav.php:168 +msgid "Applications, utilities, links, games" msgstr "" -#: ../../include/text.php:1064 -msgid "slap" +#: ../../include/nav.php:170 +msgid "Search site @name, #tag, ?docs, content" msgstr "" -#: ../../include/text.php:1064 -msgid "slapped" +#: ../../include/nav.php:172 +msgid "Channel Directory" msgstr "" -#: ../../include/text.php:1065 -msgid "finger" +#: ../../include/nav.php:184 +msgid "Your grid" msgstr "" -#: ../../include/text.php:1065 -msgid "fingered" +#: ../../include/nav.php:185 +msgid "Mark all grid notifications seen" msgstr "" -#: ../../include/text.php:1066 -msgid "rebuff" +#: ../../include/nav.php:187 +msgid "Channel home" msgstr "" -#: ../../include/text.php:1066 -msgid "rebuffed" +#: ../../include/nav.php:188 +msgid "Mark all channel notifications seen" msgstr "" -#: ../../include/text.php:1078 -msgid "happy" +#: ../../include/nav.php:194 +msgid "Notices" msgstr "" -#: ../../include/text.php:1079 -msgid "sad" +#: ../../include/nav.php:194 +msgid "Notifications" msgstr "" -#: ../../include/text.php:1080 -msgid "mellow" +#: ../../include/nav.php:195 +msgid "See all notifications" msgstr "" -#: ../../include/text.php:1081 -msgid "tired" +#: ../../include/nav.php:198 +msgid "Private mail" msgstr "" -#: ../../include/text.php:1082 -msgid "perky" +#: ../../include/nav.php:199 +msgid "See all private messages" msgstr "" -#: ../../include/text.php:1083 -msgid "angry" +#: ../../include/nav.php:200 +msgid "Mark all private messages seen" msgstr "" -#: ../../include/text.php:1084 -msgid "stupefied" +#: ../../include/nav.php:201 ../../include/widgets.php:700 +msgid "Inbox" msgstr "" -#: ../../include/text.php:1085 -msgid "puzzled" +#: ../../include/nav.php:202 ../../include/widgets.php:705 +msgid "Outbox" msgstr "" -#: ../../include/text.php:1086 -msgid "interested" +#: ../../include/nav.php:203 ../../include/widgets.php:710 +msgid "New Message" msgstr "" -#: ../../include/text.php:1087 -msgid "bitter" +#: ../../include/nav.php:206 +msgid "Event Calendar" msgstr "" -#: ../../include/text.php:1088 -msgid "cheerful" +#: ../../include/nav.php:207 +msgid "See all events" msgstr "" -#: ../../include/text.php:1089 -msgid "alive" +#: ../../include/nav.php:208 +msgid "Mark all events seen" msgstr "" -#: ../../include/text.php:1090 -msgid "annoyed" +#: ../../include/nav.php:211 +msgid "Manage Your Channels" msgstr "" -#: ../../include/text.php:1091 -msgid "anxious" +#: ../../include/nav.php:213 +msgid "Account/Channel Settings" msgstr "" -#: ../../include/text.php:1092 -msgid "cranky" +#: ../../include/nav.php:221 ../../include/widgets.php:1590 +msgid "Admin" msgstr "" -#: ../../include/text.php:1093 -msgid "disturbed" +#: ../../include/nav.php:221 +msgid "Site Setup and Configuration" msgstr "" -#: ../../include/text.php:1094 -msgid "frustrated" +#: ../../include/nav.php:252 ../../include/conversation.php:855 +msgid "Loading..." msgstr "" -#: ../../include/text.php:1095 -msgid "depressed" +#: ../../include/nav.php:257 +msgid "@name, #tag, ?doc, content" msgstr "" -#: ../../include/text.php:1096 -msgid "motivated" +#: ../../include/nav.php:258 +msgid "Please wait..." msgstr "" -#: ../../include/text.php:1097 -msgid "relaxed" +#: ../../include/oembed.php:349 +msgid "Embedded content" msgstr "" -#: ../../include/text.php:1098 -msgid "surprised" +#: ../../include/oembed.php:358 +msgid "Embedding disabled" msgstr "" -#: ../../include/text.php:1282 ../../include/js_strings.php:70 -msgid "Monday" +#: ../../include/permissions.php:35 +msgid "Can view my normal stream and posts" msgstr "" -#: ../../include/text.php:1282 ../../include/js_strings.php:71 -msgid "Tuesday" +#: ../../include/permissions.php:39 +msgid "Can view my webpages" msgstr "" -#: ../../include/text.php:1282 ../../include/js_strings.php:72 -msgid "Wednesday" +#: ../../include/permissions.php:43 +msgid "Can post on my channel page (\"wall\")" msgstr "" -#: ../../include/text.php:1282 ../../include/js_strings.php:73 -msgid "Thursday" +#: ../../include/permissions.php:46 +msgid "Can like/dislike stuff" msgstr "" -#: ../../include/text.php:1282 ../../include/js_strings.php:74 -msgid "Friday" +#: ../../include/permissions.php:46 +msgid "Profiles and things other than posts/comments" msgstr "" -#: ../../include/text.php:1282 ../../include/js_strings.php:75 -msgid "Saturday" +#: ../../include/permissions.php:48 +msgid "Can forward to all my channel contacts via post @mentions" msgstr "" -#: ../../include/text.php:1282 ../../include/js_strings.php:69 -msgid "Sunday" +#: ../../include/permissions.php:48 +msgid "Advanced - useful for creating group forum channels" msgstr "" -#: ../../include/text.php:1286 ../../include/js_strings.php:45 -msgid "January" +#: ../../include/permissions.php:49 +msgid "Can chat with me (when available)" msgstr "" -#: ../../include/text.php:1286 ../../include/js_strings.php:46 -msgid "February" +#: ../../include/permissions.php:50 +msgid "Can write to my file storage and photos" msgstr "" -#: ../../include/text.php:1286 ../../include/js_strings.php:47 -msgid "March" +#: ../../include/permissions.php:51 +msgid "Can edit my webpages" msgstr "" -#: ../../include/text.php:1286 ../../include/js_strings.php:48 -msgid "April" +#: ../../include/permissions.php:53 +msgid "Somewhat advanced - very useful in open communities" msgstr "" -#: ../../include/text.php:1286 -msgid "May" +#: ../../include/permissions.php:55 +msgid "Can administer my channel resources" msgstr "" -#: ../../include/text.php:1286 ../../include/js_strings.php:50 -msgid "June" +#: ../../include/permissions.php:55 +msgid "Extremely advanced. Leave this alone unless you know what you are doing" msgstr "" -#: ../../include/text.php:1286 ../../include/js_strings.php:51 -msgid "July" +#: ../../include/import.php:30 +msgid "" +"Cannot create a duplicate channel identifier on this system. Import failed." msgstr "" -#: ../../include/text.php:1286 ../../include/js_strings.php:52 -msgid "August" +#: ../../include/import.php:97 +msgid "Channel clone failed. Import failed." msgstr "" -#: ../../include/text.php:1286 ../../include/js_strings.php:53 -msgid "September" +#: ../../include/import.php:1441 +msgid "Unable to import element \"" msgstr "" -#: ../../include/text.php:1286 ../../include/js_strings.php:54 -msgid "October" +#: ../../include/items.php:918 ../../include/items.php:963 +msgid "(Unknown)" msgstr "" -#: ../../include/text.php:1286 ../../include/js_strings.php:55 -msgid "November" +#: ../../include/items.php:1162 +msgid "Visible to anybody on the internet." msgstr "" -#: ../../include/text.php:1286 ../../include/js_strings.php:56 -msgid "December" +#: ../../include/items.php:1164 +msgid "Visible to you only." msgstr "" -#: ../../include/text.php:1363 ../../include/text.php:1367 -msgid "Unknown Attachment" +#: ../../include/items.php:1166 +msgid "Visible to anybody in this network." msgstr "" -#: ../../include/text.php:1369 -msgid "unknown" +#: ../../include/items.php:1168 +msgid "Visible to anybody authenticated." msgstr "" -#: ../../include/text.php:1405 -msgid "remove category" +#: ../../include/items.php:1170 +#, php-format +msgid "Visible to anybody on %s." msgstr "" -#: ../../include/text.php:1482 -msgid "remove from file" +#: ../../include/items.php:1172 +msgid "Visible to all connections." msgstr "" -#: ../../include/text.php:1781 ../../include/text.php:1852 -msgid "default" +#: ../../include/items.php:1174 +msgid "Visible to approved connections." msgstr "" -#: ../../include/text.php:1789 -msgid "Page layout" +#: ../../include/items.php:1176 +msgid "Visible to specific connections." msgstr "" -#: ../../include/text.php:1789 -msgid "You can create your own with the layouts tool" +#: ../../include/items.php:3966 +msgid "Privacy group is empty." msgstr "" -#: ../../include/text.php:1831 -msgid "Page content type" +#: ../../include/items.php:3973 +#, php-format +msgid "Privacy group: %s" msgstr "" -#: ../../include/text.php:1864 -msgid "Select an alternate language" +#: ../../include/items.php:3985 +msgid "Connection not found." msgstr "" -#: ../../include/text.php:2001 -msgid "activity" -msgstr "" - -#: ../../include/text.php:2302 -msgid "Design Tools" -msgstr "" - -#: ../../include/text.php:2308 -msgid "Pages" -msgstr "" - -#: ../../include/text.php:2330 -msgid "Import website..." -msgstr "" - -#: ../../include/text.php:2331 -msgid "Select folder to import" -msgstr "" - -#: ../../include/text.php:2332 -msgid "Import from a zipped folder:" -msgstr "" - -#: ../../include/text.php:2333 -msgid "Import from cloud files:" -msgstr "" - -#: ../../include/text.php:2334 -msgid "/cloud/channel/path/to/folder" -msgstr "" - -#: ../../include/text.php:2335 -msgid "Enter path to website files" -msgstr "" - -#: ../../include/text.php:2336 -msgid "Select folder" -msgstr "" - -#: ../../include/text.php:2337 -msgid "Export website..." -msgstr "" - -#: ../../include/text.php:2338 -msgid "Export to a zip file" -msgstr "" - -#: ../../include/text.php:2339 -msgid "website.zip" -msgstr "" - -#: ../../include/text.php:2340 -msgid "Enter a name for the zip file." -msgstr "" - -#: ../../include/text.php:2341 -msgid "Export to cloud files" -msgstr "" - -#: ../../include/text.php:2342 -msgid "/path/to/export/folder" -msgstr "" - -#: ../../include/text.php:2343 -msgid "Enter a path to a cloud files destination." -msgstr "" - -#: ../../include/text.php:2344 -msgid "Specify folder" +#: ../../include/items.php:4338 +msgid "profile photo" msgstr "" #: ../../include/datetime.php:135 @@ -7986,6 +7655,74 @@ msgstr "" msgid "Happy Birthday %1$s" msgstr "" +#: ../../include/account.php:35 +msgid "Not a valid email address" +msgstr "" + +#: ../../include/account.php:37 +msgid "Your email domain is not among those allowed on this site" +msgstr "" + +#: ../../include/account.php:43 +msgid "Your email address is already registered at this site." +msgstr "" + +#: ../../include/account.php:75 +msgid "An invitation is required." +msgstr "" + +#: ../../include/account.php:79 +msgid "Invitation could not be verified." +msgstr "" + +#: ../../include/account.php:130 +msgid "Please enter the required information." +msgstr "" + +#: ../../include/account.php:198 +msgid "Failed to store account information." +msgstr "" + +#: ../../include/account.php:258 +#, php-format +msgid "Registration confirmation for %s" +msgstr "" + +#: ../../include/account.php:324 +#, php-format +msgid "Registration request at %s" +msgstr "" + +#: ../../include/account.php:348 +msgid "your registration password" +msgstr "" + +#: ../../include/account.php:351 ../../include/account.php:411 +#, php-format +msgid "Registration details for %s" +msgstr "" + +#: ../../include/account.php:423 +msgid "Account approved." +msgstr "" + +#: ../../include/account.php:463 +#, php-format +msgid "Registration revoked for %s" +msgstr "" + +#: ../../include/account.php:748 ../../include/account.php:750 +msgid "Click here to upgrade." +msgstr "" + +#: ../../include/account.php:756 +msgid "This action exceeds the limits set by your subscription plan." +msgstr "" + +#: ../../include/account.php:761 +msgid "This action is not available under your subscription plan." +msgstr "" + #: ../../include/selectors.php:30 msgid "Frequently" msgstr "" @@ -8234,21 +7971,90 @@ msgstr "" msgid "Ask me" msgstr "" -#: ../../include/zot.php:700 -msgid "Invalid data packet" +#: ../../include/bbcode.php:123 ../../include/bbcode.php:881 +#: ../../include/bbcode.php:884 ../../include/bbcode.php:889 +#: ../../include/bbcode.php:892 ../../include/bbcode.php:895 +#: ../../include/bbcode.php:898 ../../include/bbcode.php:903 +#: ../../include/bbcode.php:906 ../../include/bbcode.php:911 +#: ../../include/bbcode.php:914 ../../include/bbcode.php:917 +#: ../../include/bbcode.php:920 +msgid "Image/photo" msgstr "" -#: ../../include/zot.php:716 -msgid "Unable to verify channel signature" +#: ../../include/bbcode.php:162 ../../include/bbcode.php:931 +msgid "Encrypted content" msgstr "" -#: ../../include/zot.php:2329 +#: ../../include/bbcode.php:178 #, php-format -msgid "Unable to verify site signature for %s" +msgid "Install %s element: " msgstr "" -#: ../../include/zot.php:3711 -msgid "invalid target signature" +#: ../../include/bbcode.php:182 +#, php-format +msgid "" +"This post contains an installable %s element, however you lack permissions " +"to install it on this site." +msgstr "" + +#: ../../include/bbcode.php:261 +#, php-format +msgid "%1$s wrote the following %2$s %3$s" +msgstr "" + +#: ../../include/bbcode.php:338 ../../include/bbcode.php:346 +msgid "Click to open/close" +msgstr "" + +#: ../../include/bbcode.php:346 +msgid "spoiler" +msgstr "" + +#: ../../include/bbcode.php:619 ../../include/wiki.php:525 +msgid "Different viewers will see this text differently" +msgstr "" + +#: ../../include/bbcode.php:869 +msgid "$1 wrote:" +msgstr "" + +#: ../../include/event.php:22 ../../include/event.php:69 +#: ../../include/bb2diaspora.php:485 +msgid "l F d, Y \\@ g:i A" +msgstr "" + +#: ../../include/event.php:30 ../../include/event.php:73 +#: ../../include/bb2diaspora.php:491 +msgid "Starts:" +msgstr "" + +#: ../../include/event.php:40 ../../include/event.php:77 +#: ../../include/bb2diaspora.php:499 +msgid "Finishes:" +msgstr "" + +#: ../../include/event.php:821 +msgid "This event has been added to your calendar." +msgstr "" + +#: ../../include/event.php:1021 +msgid "Not specified" +msgstr "" + +#: ../../include/event.php:1022 +msgid "Needs Action" +msgstr "" + +#: ../../include/event.php:1023 +msgid "Completed" +msgstr "" + +#: ../../include/event.php:1024 +msgid "In Process" +msgstr "" + +#: ../../include/event.php:1025 +msgid "Cancelled" msgstr "" #: ../../include/security.php:109 @@ -8261,58 +8067,8 @@ msgid "" "form has been opened for too long (>3 hours) before submitting it." msgstr "" -#: ../../include/items.php:918 ../../include/items.php:963 -msgid "(Unknown)" -msgstr "" - -#: ../../include/items.php:1162 -msgid "Visible to anybody on the internet." -msgstr "" - -#: ../../include/items.php:1164 -msgid "Visible to you only." -msgstr "" - -#: ../../include/items.php:1166 -msgid "Visible to anybody in this network." -msgstr "" - -#: ../../include/items.php:1168 -msgid "Visible to anybody authenticated." -msgstr "" - -#: ../../include/items.php:1170 -#, php-format -msgid "Visible to anybody on %s." -msgstr "" - -#: ../../include/items.php:1172 -msgid "Visible to all connections." -msgstr "" - -#: ../../include/items.php:1174 -msgid "Visible to approved connections." -msgstr "" - -#: ../../include/items.php:1176 -msgid "Visible to specific connections." -msgstr "" - -#: ../../include/items.php:3966 -msgid "Privacy group is empty." -msgstr "" - -#: ../../include/items.php:3973 -#, php-format -msgid "Privacy group: %s" -msgstr "" - -#: ../../include/items.php:3985 -msgid "Connection not found." -msgstr "" - -#: ../../include/items.php:4338 -msgid "profile photo" +#: ../../include/help.php:25 +msgid "Help:" msgstr "" #: ../../include/bookmarks.php:35 @@ -8355,8 +8111,66 @@ msgstr "" msgid "add" msgstr "" -#: ../../include/help.php:25 -msgid "Help:" +#: ../../include/attach.php:248 ../../include/attach.php:334 +msgid "Item was not found." +msgstr "" + +#: ../../include/attach.php:500 +msgid "No source file." +msgstr "" + +#: ../../include/attach.php:522 +msgid "Cannot locate file to replace" +msgstr "" + +#: ../../include/attach.php:540 +msgid "Cannot locate file to revise/update" +msgstr "" + +#: ../../include/attach.php:675 +#, php-format +msgid "File exceeds size limit of %d" +msgstr "" + +#: ../../include/attach.php:689 +#, php-format +msgid "You have reached your limit of %1$.0f Mbytes attachment storage." +msgstr "" + +#: ../../include/attach.php:847 +msgid "File upload failed. Possible system limit or action terminated." +msgstr "" + +#: ../../include/attach.php:860 +msgid "Stored file could not be verified. Upload failed." +msgstr "" + +#: ../../include/attach.php:916 ../../include/attach.php:932 +msgid "Path not available." +msgstr "" + +#: ../../include/attach.php:978 ../../include/attach.php:1130 +msgid "Empty pathname" +msgstr "" + +#: ../../include/attach.php:1004 +msgid "duplicate filename or path" +msgstr "" + +#: ../../include/attach.php:1026 +msgid "Path not found." +msgstr "" + +#: ../../include/attach.php:1084 +msgid "mkdir failed." +msgstr "" + +#: ../../include/attach.php:1088 +msgid "database storage failed." +msgstr "" + +#: ../../include/attach.php:1136 +msgid "Empty path" msgstr "" #: ../../include/page_widgets.php:7 @@ -8367,222 +8181,14 @@ msgstr "" msgid "Title" msgstr "" -#: ../../include/wiki.php:525 ../../include/bbcode.php:619 -msgid "Different viewers will see this text differently" -msgstr "" - -#: ../../include/nav.php:85 ../../include/nav.php:118 ../../boot.php:1738 -msgid "Logout" -msgstr "" - -#: ../../include/nav.php:85 ../../include/nav.php:118 -msgid "End this session" -msgstr "" - -#: ../../include/nav.php:88 ../../include/nav.php:149 -msgid "Home" -msgstr "" - -#: ../../include/nav.php:88 -msgid "Your posts and conversations" -msgstr "" - -#: ../../include/nav.php:89 -msgid "Your profile page" -msgstr "" - -#: ../../include/nav.php:91 -msgid "Manage/Edit profiles" -msgstr "" - -#: ../../include/nav.php:93 -msgid "Edit your profile" -msgstr "" - -#: ../../include/nav.php:95 -msgid "Your photos" -msgstr "" - -#: ../../include/nav.php:96 -msgid "Your files" -msgstr "" - -#: ../../include/nav.php:99 -msgid "Your chatrooms" -msgstr "" - -#: ../../include/nav.php:105 ../../include/conversation.php:1714 -msgid "Bookmarks" -msgstr "" - -#: ../../include/nav.php:105 -msgid "Your bookmarks" -msgstr "" - -#: ../../include/nav.php:109 -msgid "Your webpages" -msgstr "" - -#: ../../include/nav.php:111 -msgid "Your wiki" -msgstr "" - -#: ../../include/nav.php:115 -msgid "Sign in" -msgstr "" - -#: ../../include/nav.php:132 -#, php-format -msgid "%s - click to logout" -msgstr "" - -#: ../../include/nav.php:135 -msgid "Remote authentication" -msgstr "" - -#: ../../include/nav.php:135 -msgid "Click to authenticate to your home hub" -msgstr "" - -#: ../../include/nav.php:149 -msgid "Home Page" -msgstr "" - -#: ../../include/nav.php:152 -msgid "Create an account" -msgstr "" - -#: ../../include/nav.php:164 -msgid "Help and documentation" -msgstr "" - -#: ../../include/nav.php:168 -msgid "Applications, utilities, links, games" -msgstr "" - -#: ../../include/nav.php:170 -msgid "Search site @name, #tag, ?docs, content" -msgstr "" - -#: ../../include/nav.php:172 -msgid "Channel Directory" -msgstr "" - -#: ../../include/nav.php:184 -msgid "Your grid" -msgstr "" - -#: ../../include/nav.php:185 -msgid "Mark all grid notifications seen" -msgstr "" - -#: ../../include/nav.php:187 -msgid "Channel home" -msgstr "" - -#: ../../include/nav.php:188 -msgid "Mark all channel notifications seen" -msgstr "" - -#: ../../include/nav.php:194 -msgid "Notices" -msgstr "" - -#: ../../include/nav.php:194 -msgid "Notifications" -msgstr "" - -#: ../../include/nav.php:195 -msgid "See all notifications" -msgstr "" - -#: ../../include/nav.php:198 -msgid "Private mail" -msgstr "" - -#: ../../include/nav.php:199 -msgid "See all private messages" -msgstr "" - -#: ../../include/nav.php:200 -msgid "Mark all private messages seen" -msgstr "" - -#: ../../include/nav.php:201 ../../include/widgets.php:700 -msgid "Inbox" -msgstr "" - -#: ../../include/nav.php:202 ../../include/widgets.php:705 -msgid "Outbox" -msgstr "" - -#: ../../include/nav.php:203 ../../include/widgets.php:710 -msgid "New Message" -msgstr "" - -#: ../../include/nav.php:206 -msgid "Event Calendar" -msgstr "" - -#: ../../include/nav.php:207 -msgid "See all events" -msgstr "" - -#: ../../include/nav.php:208 -msgid "Mark all events seen" -msgstr "" - -#: ../../include/nav.php:211 -msgid "Manage Your Channels" -msgstr "" - -#: ../../include/nav.php:213 -msgid "Account/Channel Settings" -msgstr "" - -#: ../../include/nav.php:221 ../../include/widgets.php:1590 -msgid "Admin" -msgstr "" - -#: ../../include/nav.php:221 -msgid "Site Setup and Configuration" -msgstr "" - -#: ../../include/nav.php:252 ../../include/conversation.php:855 -msgid "Loading..." -msgstr "" - -#: ../../include/nav.php:257 -msgid "@name, #tag, ?doc, content" -msgstr "" - -#: ../../include/nav.php:258 -msgid "Please wait..." -msgstr "" - #: ../../include/bb2diaspora.php:398 msgid "Attachments:" msgstr "" -#: ../../include/bb2diaspora.php:485 ../../include/event.php:22 -#: ../../include/event.php:69 -msgid "l F d, Y \\@ g:i A" -msgstr "" - #: ../../include/bb2diaspora.php:487 msgid "$Projectname event notification:" msgstr "" -#: ../../include/bb2diaspora.php:491 ../../include/event.php:30 -#: ../../include/event.php:73 -msgid "Starts:" -msgstr "" - -#: ../../include/bb2diaspora.php:499 ../../include/event.php:40 -#: ../../include/event.php:77 -msgid "Finishes:" -msgstr "" - #: ../../include/js_strings.php:5 msgid "Delete this item?" msgstr "" @@ -8723,11 +8329,55 @@ msgstr "" msgid "timeago.numbers" msgstr "" +#: ../../include/js_strings.php:45 ../../include/text.php:1289 +msgid "January" +msgstr "" + +#: ../../include/js_strings.php:46 ../../include/text.php:1289 +msgid "February" +msgstr "" + +#: ../../include/js_strings.php:47 ../../include/text.php:1289 +msgid "March" +msgstr "" + +#: ../../include/js_strings.php:48 ../../include/text.php:1289 +msgid "April" +msgstr "" + #: ../../include/js_strings.php:49 msgctxt "long" msgid "May" msgstr "" +#: ../../include/js_strings.php:50 ../../include/text.php:1289 +msgid "June" +msgstr "" + +#: ../../include/js_strings.php:51 ../../include/text.php:1289 +msgid "July" +msgstr "" + +#: ../../include/js_strings.php:52 ../../include/text.php:1289 +msgid "August" +msgstr "" + +#: ../../include/js_strings.php:53 ../../include/text.php:1289 +msgid "September" +msgstr "" + +#: ../../include/js_strings.php:54 ../../include/text.php:1289 +msgid "October" +msgstr "" + +#: ../../include/js_strings.php:55 ../../include/text.php:1289 +msgid "November" +msgstr "" + +#: ../../include/js_strings.php:56 ../../include/text.php:1289 +msgid "December" +msgstr "" + #: ../../include/js_strings.php:57 msgid "Jan" msgstr "" @@ -8777,6 +8427,34 @@ msgstr "" msgid "Dec" msgstr "" +#: ../../include/js_strings.php:69 ../../include/text.php:1285 +msgid "Sunday" +msgstr "" + +#: ../../include/js_strings.php:70 ../../include/text.php:1285 +msgid "Monday" +msgstr "" + +#: ../../include/js_strings.php:71 ../../include/text.php:1285 +msgid "Tuesday" +msgstr "" + +#: ../../include/js_strings.php:72 ../../include/text.php:1285 +msgid "Wednesday" +msgstr "" + +#: ../../include/js_strings.php:73 ../../include/text.php:1285 +msgid "Thursday" +msgstr "" + +#: ../../include/js_strings.php:74 ../../include/text.php:1285 +msgid "Friday" +msgstr "" + +#: ../../include/js_strings.php:75 ../../include/text.php:1285 +msgid "Saturday" +msgstr "" + #: ../../include/js_strings.php:76 msgid "Sun" msgstr "" @@ -8858,6 +8536,299 @@ msgstr "" msgid "Cannot connect to yourself." msgstr "" +#: ../../include/acl_selectors.php:169 +msgid "Who can see this?" +msgstr "" + +#: ../../include/acl_selectors.php:170 +msgid "Custom selection" +msgstr "" + +#: ../../include/acl_selectors.php:171 +msgid "" +"Select \"Show\" to allow viewing. \"Don't show\" lets you override and limit " +"the scope of \"Show\"." +msgstr "" + +#: ../../include/acl_selectors.php:172 +msgid "Show" +msgstr "" + +#: ../../include/acl_selectors.php:173 +msgid "Don't show" +msgstr "" + +#: ../../include/acl_selectors.php:207 +#, 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/channel.php:33 +msgid "Unable to obtain identity information from database" +msgstr "" + +#: ../../include/channel.php:67 +msgid "Empty name" +msgstr "" + +#: ../../include/channel.php:70 +msgid "Name too long" +msgstr "" + +#: ../../include/channel.php:181 +msgid "No account identifier" +msgstr "" + +#: ../../include/channel.php:193 +msgid "Nickname is required." +msgstr "" + +#: ../../include/channel.php:207 +msgid "Reserved nickname. Please choose another." +msgstr "" + +#: ../../include/channel.php:212 +msgid "" +"Nickname has unsupported characters or is already being used on this site." +msgstr "" + +#: ../../include/channel.php:272 +msgid "Unable to retrieve created identity" +msgstr "" + +#: ../../include/channel.php:341 +msgid "Default Profile" +msgstr "" + +#: ../../include/channel.php:813 +msgid "Requested channel is not available." +msgstr "" + +#: ../../include/channel.php:960 +msgid "Create New Profile" +msgstr "" + +#: ../../include/channel.php:980 +msgid "Visible to everybody" +msgstr "" + +#: ../../include/channel.php:1053 ../../include/channel.php:1166 +msgid "Gender:" +msgstr "" + +#: ../../include/channel.php:1054 ../../include/channel.php:1210 +msgid "Status:" +msgstr "" + +#: ../../include/channel.php:1055 ../../include/channel.php:1221 +msgid "Homepage:" +msgstr "" + +#: ../../include/channel.php:1056 +msgid "Online Now" +msgstr "" + +#: ../../include/channel.php:1171 +msgid "Like this channel" +msgstr "" + +#: ../../include/channel.php:1195 +msgid "j F, Y" +msgstr "" + +#: ../../include/channel.php:1196 +msgid "j F" +msgstr "" + +#: ../../include/channel.php:1203 +msgid "Birthday:" +msgstr "" + +#: ../../include/channel.php:1216 +#, php-format +msgid "for %1$d %2$s" +msgstr "" + +#: ../../include/channel.php:1219 +msgid "Sexual Preference:" +msgstr "" + +#: ../../include/channel.php:1225 +msgid "Tags:" +msgstr "" + +#: ../../include/channel.php:1227 +msgid "Political Views:" +msgstr "" + +#: ../../include/channel.php:1229 +msgid "Religion:" +msgstr "" + +#: ../../include/channel.php:1233 +msgid "Hobbies/Interests:" +msgstr "" + +#: ../../include/channel.php:1235 +msgid "Likes:" +msgstr "" + +#: ../../include/channel.php:1237 +msgid "Dislikes:" +msgstr "" + +#: ../../include/channel.php:1239 +msgid "Contact information and Social Networks:" +msgstr "" + +#: ../../include/channel.php:1241 +msgid "My other channels:" +msgstr "" + +#: ../../include/channel.php:1243 +msgid "Musical interests:" +msgstr "" + +#: ../../include/channel.php:1245 +msgid "Books, literature:" +msgstr "" + +#: ../../include/channel.php:1247 +msgid "Television:" +msgstr "" + +#: ../../include/channel.php:1249 +msgid "Film/dance/culture/entertainment:" +msgstr "" + +#: ../../include/channel.php:1251 +msgid "Love/Romance:" +msgstr "" + +#: ../../include/channel.php:1253 +msgid "Work/employment:" +msgstr "" + +#: ../../include/channel.php:1255 +msgid "School/education:" +msgstr "" + +#: ../../include/channel.php:1276 +msgid "Like this thing" +msgstr "" + +#: ../../include/connections.php:95 +msgid "New window" +msgstr "" + +#: ../../include/connections.php:96 +msgid "Open the selected location in a different window or browser tab" +msgstr "" + +#: ../../include/connections.php:214 +#, php-format +msgid "User '%s' deleted" +msgstr "" + +#: ../../include/contact_widgets.php:11 +#, php-format +msgid "%d invitation available" +msgid_plural "%d invitations available" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/contact_widgets.php:19 +msgid "Find Channels" +msgstr "" + +#: ../../include/contact_widgets.php:20 +msgid "Enter name or interest" +msgstr "" + +#: ../../include/contact_widgets.php:21 +msgid "Connect/Follow" +msgstr "" + +#: ../../include/contact_widgets.php:22 +msgid "Examples: Robert Morgenstein, Fishing" +msgstr "" + +#: ../../include/contact_widgets.php:26 +msgid "Random Profile" +msgstr "" + +#: ../../include/contact_widgets.php:27 +msgid "Invite Friends" +msgstr "" + +#: ../../include/contact_widgets.php:29 +msgid "Advanced example: name=fred and country=iceland" +msgstr "" + +#: ../../include/contact_widgets.php:53 ../../include/widgets.php:346 +#: ../../include/features.php:97 +msgid "Saved Folders" +msgstr "" + +#: ../../include/contact_widgets.php:56 ../../include/contact_widgets.php:94 +#: ../../include/widgets.php:349 ../../include/widgets.php:468 +msgid "Everything" +msgstr "" + +#: ../../include/contact_widgets.php:91 ../../include/taxonomy.php:188 +#: ../../include/taxonomy.php:270 ../../include/widgets.php:46 +#: ../../include/widgets.php:465 +msgid "Categories" +msgstr "" + +#: ../../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/auth.php:148 +msgid "Logged out." +msgstr "" + +#: ../../include/auth.php:275 +msgid "Failed authentication" +msgstr "" + +#: ../../include/auth.php:286 +msgid "Login failed." +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/conversation.php:204 #, php-format msgid "%1$s is now connected with %2$s" @@ -8868,6 +8839,11 @@ msgstr "" msgid "%1$s poked %2$s" msgstr "" +#: ../../include/conversation.php:243 ../../include/text.php:1059 +#: ../../include/text.php:1064 +msgid "poked" +msgstr "" + #: ../../include/conversation.php:694 #, php-format msgid "View %s's profile @ %s" @@ -9137,91 +9113,6 @@ msgid_plural "Abstains" msgstr[0] "" msgstr[1] "" -#: ../../include/import.php:30 -msgid "" -"Cannot create a duplicate channel identifier on this system. Import failed." -msgstr "" - -#: ../../include/import.php:97 -msgid "Channel clone failed. Import failed." -msgstr "" - -#: ../../include/import.php:1441 -msgid "Unable to import element \"" -msgstr "" - -#: ../../include/acl_selectors.php:169 -msgid "Who can see this?" -msgstr "" - -#: ../../include/acl_selectors.php:170 -msgid "Custom selection" -msgstr "" - -#: ../../include/acl_selectors.php:171 -msgid "" -"Select \"Show\" to allow viewing. \"Don't show\" lets you override and limit " -"the scope of \"Show\"." -msgstr "" - -#: ../../include/acl_selectors.php:172 -msgid "Show" -msgstr "" - -#: ../../include/acl_selectors.php:173 -msgid "Don't show" -msgstr "" - -#: ../../include/acl_selectors.php:207 -#, 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/auth.php:148 -msgid "Logged out." -msgstr "" - -#: ../../include/auth.php:275 -msgid "Failed authentication" -msgstr "" - -#: ../../include/auth.php:286 -msgid "Login failed." -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/oembed.php:349 -msgid "Embedded content" -msgstr "" - -#: ../../include/oembed.php:358 -msgid "Embedding disabled" -msgstr "" - #: ../../include/taxonomy.php:228 ../../include/taxonomy.php:249 msgid "Tags" msgstr "" @@ -9254,185 +9145,281 @@ msgstr "" msgid "dislikes" msgstr "" -#: ../../include/bbcode.php:123 ../../include/bbcode.php:881 -#: ../../include/bbcode.php:884 ../../include/bbcode.php:889 -#: ../../include/bbcode.php:892 ../../include/bbcode.php:895 -#: ../../include/bbcode.php:898 ../../include/bbcode.php:903 -#: ../../include/bbcode.php:906 ../../include/bbcode.php:911 -#: ../../include/bbcode.php:914 ../../include/bbcode.php:917 -#: ../../include/bbcode.php:920 -msgid "Image/photo" +#: ../../include/text.php:450 +msgid "prev" msgstr "" -#: ../../include/bbcode.php:162 ../../include/bbcode.php:931 -msgid "Encrypted content" +#: ../../include/text.php:452 +msgid "first" msgstr "" -#: ../../include/bbcode.php:178 +#: ../../include/text.php:481 +msgid "last" +msgstr "" + +#: ../../include/text.php:484 +msgid "next" +msgstr "" + +#: ../../include/text.php:494 +msgid "older" +msgstr "" + +#: ../../include/text.php:496 +msgid "newer" +msgstr "" + +#: ../../include/text.php:889 +msgid "No connections" +msgstr "" + +#: ../../include/text.php:914 #, php-format -msgid "Install %s element: " +msgid "View all %s connections" msgstr "" -#: ../../include/bbcode.php:182 -#, php-format -msgid "" -"This post contains an installable %s element, however you lack permissions " -"to install it on this site." +#: ../../include/text.php:1059 ../../include/text.php:1064 +msgid "poke" msgstr "" -#: ../../include/bbcode.php:261 -#, php-format -msgid "%1$s wrote the following %2$s %3$s" +#: ../../include/text.php:1065 +msgid "ping" msgstr "" -#: ../../include/bbcode.php:338 ../../include/bbcode.php:346 -msgid "Click to open/close" +#: ../../include/text.php:1065 +msgid "pinged" msgstr "" -#: ../../include/bbcode.php:346 -msgid "spoiler" +#: ../../include/text.php:1066 +msgid "prod" msgstr "" -#: ../../include/bbcode.php:869 -msgid "$1 wrote:" +#: ../../include/text.php:1066 +msgid "prodded" msgstr "" -#: ../../include/permissions.php:35 -msgid "Can view my normal stream and posts" +#: ../../include/text.php:1067 +msgid "slap" msgstr "" -#: ../../include/permissions.php:39 -msgid "Can view my webpages" +#: ../../include/text.php:1067 +msgid "slapped" msgstr "" -#: ../../include/permissions.php:43 -msgid "Can post on my channel page (\"wall\")" +#: ../../include/text.php:1068 +msgid "finger" msgstr "" -#: ../../include/permissions.php:46 -msgid "Can like/dislike stuff" +#: ../../include/text.php:1068 +msgid "fingered" msgstr "" -#: ../../include/permissions.php:46 -msgid "Profiles and things other than posts/comments" +#: ../../include/text.php:1069 +msgid "rebuff" msgstr "" -#: ../../include/permissions.php:48 -msgid "Can forward to all my channel contacts via post @mentions" +#: ../../include/text.php:1069 +msgid "rebuffed" msgstr "" -#: ../../include/permissions.php:48 -msgid "Advanced - useful for creating group forum channels" +#: ../../include/text.php:1081 +msgid "happy" msgstr "" -#: ../../include/permissions.php:49 -msgid "Can chat with me (when available)" +#: ../../include/text.php:1082 +msgid "sad" msgstr "" -#: ../../include/permissions.php:50 -msgid "Can write to my file storage and photos" +#: ../../include/text.php:1083 +msgid "mellow" msgstr "" -#: ../../include/permissions.php:51 -msgid "Can edit my webpages" +#: ../../include/text.php:1084 +msgid "tired" msgstr "" -#: ../../include/permissions.php:53 -msgid "Somewhat advanced - very useful in open communities" +#: ../../include/text.php:1085 +msgid "perky" msgstr "" -#: ../../include/permissions.php:55 -msgid "Can administer my channel resources" +#: ../../include/text.php:1086 +msgid "angry" msgstr "" -#: ../../include/permissions.php:55 -msgid "Extremely advanced. Leave this alone unless you know what you are doing" +#: ../../include/text.php:1087 +msgid "stupefied" msgstr "" -#: ../../include/event.php:821 -msgid "This event has been added to your calendar." +#: ../../include/text.php:1088 +msgid "puzzled" msgstr "" -#: ../../include/event.php:1021 -msgid "Not specified" +#: ../../include/text.php:1089 +msgid "interested" msgstr "" -#: ../../include/event.php:1022 -msgid "Needs Action" +#: ../../include/text.php:1090 +msgid "bitter" msgstr "" -#: ../../include/event.php:1023 -msgid "Completed" +#: ../../include/text.php:1091 +msgid "cheerful" msgstr "" -#: ../../include/event.php:1024 -msgid "In Process" +#: ../../include/text.php:1092 +msgid "alive" msgstr "" -#: ../../include/event.php:1025 -msgid "Cancelled" +#: ../../include/text.php:1093 +msgid "annoyed" msgstr "" -#: ../../include/attach.php:248 ../../include/attach.php:334 -msgid "Item was not found." +#: ../../include/text.php:1094 +msgid "anxious" msgstr "" -#: ../../include/attach.php:500 -msgid "No source file." +#: ../../include/text.php:1095 +msgid "cranky" msgstr "" -#: ../../include/attach.php:522 -msgid "Cannot locate file to replace" +#: ../../include/text.php:1096 +msgid "disturbed" msgstr "" -#: ../../include/attach.php:540 -msgid "Cannot locate file to revise/update" +#: ../../include/text.php:1097 +msgid "frustrated" msgstr "" -#: ../../include/attach.php:675 -#, php-format -msgid "File exceeds size limit of %d" +#: ../../include/text.php:1098 +msgid "depressed" msgstr "" -#: ../../include/attach.php:689 -#, php-format -msgid "You have reached your limit of %1$.0f Mbytes attachment storage." +#: ../../include/text.php:1099 +msgid "motivated" msgstr "" -#: ../../include/attach.php:847 -msgid "File upload failed. Possible system limit or action terminated." +#: ../../include/text.php:1100 +msgid "relaxed" msgstr "" -#: ../../include/attach.php:860 -msgid "Stored file could not be verified. Upload failed." +#: ../../include/text.php:1101 +msgid "surprised" msgstr "" -#: ../../include/attach.php:916 ../../include/attach.php:932 -msgid "Path not available." +#: ../../include/text.php:1289 +msgid "May" msgstr "" -#: ../../include/attach.php:978 ../../include/attach.php:1130 -msgid "Empty pathname" +#: ../../include/text.php:1366 ../../include/text.php:1370 +msgid "Unknown Attachment" msgstr "" -#: ../../include/attach.php:1004 -msgid "duplicate filename or path" +#: ../../include/text.php:1372 +msgid "unknown" msgstr "" -#: ../../include/attach.php:1026 -msgid "Path not found." +#: ../../include/text.php:1408 +msgid "remove category" msgstr "" -#: ../../include/attach.php:1084 -msgid "mkdir failed." +#: ../../include/text.php:1485 +msgid "remove from file" msgstr "" -#: ../../include/attach.php:1088 -msgid "database storage failed." +#: ../../include/text.php:1784 ../../include/text.php:1855 +msgid "default" msgstr "" -#: ../../include/attach.php:1136 -msgid "Empty path" +#: ../../include/text.php:1792 +msgid "Page layout" +msgstr "" + +#: ../../include/text.php:1792 +msgid "You can create your own with the layouts tool" +msgstr "" + +#: ../../include/text.php:1834 +msgid "Page content type" +msgstr "" + +#: ../../include/text.php:1867 +msgid "Select an alternate language" +msgstr "" + +#: ../../include/text.php:2004 +msgid "activity" +msgstr "" + +#: ../../include/text.php:2305 +msgid "Design Tools" +msgstr "" + +#: ../../include/text.php:2311 +msgid "Pages" +msgstr "" + +#: ../../include/text.php:2333 +msgid "Import website..." +msgstr "" + +#: ../../include/text.php:2334 +msgid "Select folder to import" +msgstr "" + +#: ../../include/text.php:2335 +msgid "Import from a zipped folder:" +msgstr "" + +#: ../../include/text.php:2336 +msgid "Import from cloud files:" +msgstr "" + +#: ../../include/text.php:2337 +msgid "/cloud/channel/path/to/folder" +msgstr "" + +#: ../../include/text.php:2338 +msgid "Enter path to website files" +msgstr "" + +#: ../../include/text.php:2339 +msgid "Select folder" +msgstr "" + +#: ../../include/text.php:2340 +msgid "Export website..." +msgstr "" + +#: ../../include/text.php:2341 +msgid "Export to a zip file" +msgstr "" + +#: ../../include/text.php:2342 +msgid "website.zip" +msgstr "" + +#: ../../include/text.php:2343 +msgid "Enter a name for the zip file." +msgstr "" + +#: ../../include/text.php:2344 +msgid "Export to cloud files" +msgstr "" + +#: ../../include/text.php:2345 +msgid "/path/to/export/folder" +msgstr "" + +#: ../../include/text.php:2346 +msgid "Enter a path to a cloud files destination." +msgstr "" + +#: ../../include/text.php:2347 +msgid "Specify folder" +msgstr "" + +#: ../../include/api.php:1330 +msgid "Public Timeline" msgstr "" #: ../../include/dir_fns.php:141 @@ -9467,10 +9454,6 @@ msgstr "" msgid "Stored post could not be verified." msgstr "" -#: ../../include/api.php:1330 -msgid "Public Timeline" -msgstr "" - #: ../../include/widgets.php:103 msgid "System" msgstr "" @@ -9672,6 +9655,23 @@ msgstr "" msgid "Plugin Features" msgstr "" +#: ../../include/zot.php:700 +msgid "Invalid data packet" +msgstr "" + +#: ../../include/zot.php:716 +msgid "Unable to verify channel signature" +msgstr "" + +#: ../../include/zot.php:2329 +#, php-format +msgid "Unable to verify site signature for %s" +msgstr "" + +#: ../../include/zot.php:3711 +msgid "invalid target signature" +msgstr "" + #: ../../include/features.php:50 msgid "General Features" msgstr "" diff --git a/util/pconfig b/util/pconfig index 1afba8306..1847a5a81 100755 --- a/util/pconfig +++ b/util/pconfig @@ -54,6 +54,13 @@ EndOfOutput; } +if($argc > 2 && strpos($argv[2],'.')) { + $x = explode('.',$argv[2]); + $argv = [ $argv[0], $argv[1], $x[0], $x[1], (($argc > 3) ? $argv[3] : null) ]; + $argc = $argc + 1; +} + + if($argc > 4) { set_pconfig($argv[1],$argv[2],$argv[3],$argv[4]); build_sync_packet($argv[1]);