Merge branch 'dev' into oauth2

This commit is contained in:
Andrew Manning 2018-02-28 20:47:14 -05:00
commit 39fe80a196
13 changed files with 305 additions and 202 deletions

View File

@ -138,7 +138,7 @@ class Enotify {
$itemlink = $params['link']; $itemlink = $params['link'];
$action = 'commented on'; $action = t('commented on');
if(array_key_exists('item',$params) && in_array($params['item']['verb'], [ACTIVITY_LIKE, ACTIVITY_DISLIKE])) { if(array_key_exists('item',$params) && in_array($params['item']['verb'], [ACTIVITY_LIKE, ACTIVITY_DISLIKE])) {
@ -149,10 +149,10 @@ class Enotify {
} }
if(activity_match($params['verb'], ACTIVITY_LIKE)) if(activity_match($params['verb'], ACTIVITY_LIKE))
$action = 'liked'; $action = t('liked');
if(activity_match($params['verb'], ACTIVITY_DISLIKE)) if(activity_match($params['verb'], ACTIVITY_DISLIKE))
$action = 'disliked'; $action = t('disliked');
} }

View File

@ -220,9 +220,10 @@ class Site {
$realm = get_directory_realm(); $realm = get_directory_realm();
// directory server should not be set or settable unless we are a directory client // directory server should not be set or settable unless we are a directory client
// avoid older redmatrix servers which don't have modern encryption
if($dirmode == DIRECTORY_MODE_NORMAL) { if($dirmode == DIRECTORY_MODE_NORMAL) {
$x = q("select site_url from site where site_flags in (%d,%d) and site_realm = '%s' and site_dead = 0", $x = q("select site_url from site where site_flags in (%d,%d) and site_realm = '%s' and site_dead = 0 and site_project != 'redmatrix'",
intval(DIRECTORY_MODE_SECONDARY), intval(DIRECTORY_MODE_SECONDARY),
intval(DIRECTORY_MODE_PRIMARY), intval(DIRECTORY_MODE_PRIMARY),
dbesc($realm) dbesc($realm)

View File

@ -61,7 +61,8 @@ class Featured {
$tpl = get_markup_template("settings_addons.tpl"); $tpl = get_markup_template("settings_addons.tpl");
$o .= replace_macros($tpl, array( $o .= replace_macros($tpl, array(
'$form_security_token' => get_form_security_token("settings_featured"), '$form_security_token' => get_form_security_token("settings_featured"),
'$title' => t('Feature/Addon Settings'), '$title' => t('Addon Settings'),
'$descrip' => t('Please save/submit changes to any panel before opening another.'),
'$settings_addons' => $settings_addons '$settings_addons' => $settings_addons
)); ));
return $o; return $o;

24
Zotlabs/Update/_1206.php Normal file
View File

@ -0,0 +1,24 @@
<?php
namespace Zotlabs\Update;
class _1206 {
function run() {
if(ACTIVE_DBTYPE == DBTYPE_MYSQL) {
$r = q("ALTER TABLE item
ADD INDEX uid_resource_type (uid, resource_type)
");
if($r)
return UPDATE_SUCCESS;
return UPDATE_FAILED;
}
else {
return UPDATE_SUCCESS;
}
}
}

View File

@ -54,7 +54,7 @@ class Settings_menu {
} }
$tabs[] = array( $tabs[] = array(
'label' => t('Feature/Addon settings'), 'label' => t('Addon settings'),
'url' => z_root().'/settings/featured', 'url' => z_root().'/settings/featured',
'selected' => ((argv(1) === 'featured') ? 'active' : ''), 'selected' => ((argv(1) === 'featured') ? 'active' : ''),
); );
@ -79,7 +79,7 @@ class Settings_menu {
'selected' => '' 'selected' => ''
); );
if(get_account_techlevel() > 0) { if(feature_enabled(local_channel(),'oauth_clients')) {
$tabs[] = array( $tabs[] = array(
'label' => t('Connected apps'), 'label' => t('Connected apps'),
'url' => z_root() . '/settings/oauth', 'url' => z_root() . '/settings/oauth',
@ -87,7 +87,7 @@ class Settings_menu {
); );
} }
if(get_account_techlevel() > 2) { if(feature_enabled(local_channel(),'access_tokens')) {
$tabs[] = array( $tabs[] = array(
'label' => t('Guest Access Tokens'), 'label' => t('Guest Access Tokens'),
'url' => z_root() . '/settings/tokens', 'url' => z_root() . '/settings/tokens',

View File

@ -50,10 +50,10 @@ require_once('include/attach.php');
require_once('include/bbcode.php'); require_once('include/bbcode.php');
define ( 'PLATFORM_NAME', 'hubzilla' ); define ( 'PLATFORM_NAME', 'hubzilla' );
define ( 'STD_VERSION', '3.2RC' ); define ( 'STD_VERSION', '3.3' );
define ( 'ZOT_REVISION', '1.3' ); define ( 'ZOT_REVISION', '1.3' );
define ( 'DB_UPDATE_VERSION', 1205 ); define ( 'DB_UPDATE_VERSION', 1206 );
define ( 'PROJECT_BASE', __DIR__ ); define ( 'PROJECT_BASE', __DIR__ );
@ -84,8 +84,6 @@ define ( 'DIRECTORY_FALLBACK_MASTER', 'https://gravizot.de');
$DIRECTORY_FALLBACK_SERVERS = array( $DIRECTORY_FALLBACK_SERVERS = array(
'https://hubzilla.zottel.net', 'https://hubzilla.zottel.net',
'https://my.federated.social',
//'https://hubzilla.nl',
'https://gravizot.de' 'https://gravizot.de'
); );
@ -1688,11 +1686,16 @@ function remote_channel() {
function can_view_public_stream() { function can_view_public_stream() {
if((observer_prohibited(true)) if(observer_prohibited(true)) {
|| (! (intval(get_config('system','open_pubstream',1))) && get_observer_hash())) {
return false; return false;
} }
if(! (intval(get_config('system','open_pubstream',1)))) {
if(! get_observer_hash()) {
return false;
}
}
$site_firehose = ((intval(get_config('system','site_firehose',0))) ? true : false); $site_firehose = ((intval(get_config('system','site_firehose',0))) ? true : false);
$net_firehose = ((get_config('system','disable_discover_tab',1)) ? false : true); $net_firehose = ((get_config('system','disable_discover_tab',1)) ? false : true);

View File

@ -54,14 +54,6 @@ function get_features($filtered = true) {
t('General Features'), t('General Features'),
[
'multi_profiles',
t('Multiple Profiles'),
t('Ability to create multiple profiles'),
false,
get_config('feature_lock','multi_profiles'),
feature_level('multi_profiles',3),
],
[ [
'advanced_profiles', 'advanced_profiles',
@ -163,14 +155,6 @@ function get_features($filtered = true) {
feature_level('ajaxchat',1), feature_level('ajaxchat',1),
], ],
[
'permcats',
t('Permission Groups'),
t('Provide alternate connection permission roles.'),
false,
get_config('feature_lock','permcats'),
feature_level('permcats',2),
],
[ [
'smart_birthdays', 'smart_birthdays',
@ -219,6 +203,58 @@ function get_features($filtered = true) {
], ],
], ],
'access_control' => [
t('Access Control and Permissions'),
[
'groups',
t('Privacy Groups'),
t('Enable management and selection of privacy groups'),
true,
get_config('feature_lock','groups'),
feature_level('groups',0),
],
[
'multi_profiles',
t('Multiple Profiles'),
t('Ability to create multiple profiles'),
false,
get_config('feature_lock','multi_profiles'),
feature_level('multi_profiles',3),
],
[
'permcats',
t('Permission Groups'),
t('Provide alternate connection permission roles.'),
false,
get_config('feature_lock','permcats'),
feature_level('permcats',2),
],
[
'oauth_clients',
t('OAuth Clients'),
t('Manage authenticatication tokens for mobile and remote apps.'),
false,
get_config('feature_lock','oauth_clients'),
feature_level('oauth_clients',1),
],
[
'access_tokens',
t('Access Tokens'),
t('Create access tokens so that non-members can access private content.'),
false,
get_config('feature_lock','access_tokens'),
feature_level('access_tokens',2),
],
],
// Post composition // Post composition
'composition' => [ 'composition' => [
@ -312,14 +348,6 @@ function get_features($filtered = true) {
feature_level('archives',1), feature_level('archives',1),
], ],
[
'groups',
t('Privacy Groups'),
t('Enable management and selection of privacy groups'),
true,
get_config('feature_lock','groups'),
feature_level('groups',0),
],
[ [
'savedsearch', 'savedsearch',

View File

@ -2464,7 +2464,7 @@ function tag_deliver($uid, $item_id) {
// this is an update (edit) to a post which was already processed by us and has a second delivery chain // this is an update (edit) to a post which was already processed by us and has a second delivery chain
// Just start the second delivery chain to deliver the updated post // Just start the second delivery chain to deliver the updated post
// after resetting ownership and permission bits // after resetting ownership and permission bits
logger('updating edited tag_deliver post for ' . $u[0]['channel_address']);
start_delivery_chain($u[0], $item, $item_id, 0); start_delivery_chain($u[0], $item, $item_id, 0);
return; return;
} }
@ -2767,6 +2767,16 @@ function tgroup_check($uid, $item) {
return false; return false;
} }
// see if we already have this item. Maybe it is being updated.
$r = q("select id from item where mid = '%s' and uid = %d limit 1",
dbesc($item['mid']),
intval($uid)
);
if($r)
return true;
if(! perm_is_allowed($uid,$item['author_xchan'],'tag_deliver')) if(! perm_is_allowed($uid,$item['author_xchan'],'tag_deliver'))
return false; return false;

View File

@ -2019,18 +2019,37 @@ function item_post_type($item) {
return $post_type; return $post_type;
} }
// This needs to be fixed to use quoted tag strings
function undo_post_tagging($s) { function undo_post_tagging($s) {
$matches = null; $matches = null;
// undo tags and mentions
$cnt = preg_match_all('/([@#])(\!*)\[zrl=(.*?)\](.*?)\[\/zrl\]/ism',$s,$matches,PREG_SET_ORDER); $cnt = preg_match_all('/([@#])(\!*)\[zrl=(.*?)\](.*?)\[\/zrl\]/ism',$s,$matches,PREG_SET_ORDER);
if($cnt) { if($cnt) {
foreach($matches as $mtch) { foreach($matches as $mtch) {
$s = str_replace($mtch[0], $mtch[1] . $mtch[2] . str_replace(' ','_',$mtch[4]),$s); $s = str_replace($mtch[0], $mtch[1] . $mtch[2] . quote_tag($mtch[4]),$s);
} }
} }
// undo forum tags
$cnt = preg_match_all('/\!\[zrl=(.*?)\](.*?)\[\/zrl\]/ism',$s,$matches,PREG_SET_ORDER);
if($cnt) {
foreach($matches as $mtch) {
$s = str_replace($mtch[0], '!' . quote_tag($mtch[2]),$s);
}
}
return $s; return $s;
} }
function quote_tag($s) {
if(strpos($s,' ') !== false)
return '&quot;' . $s . '&quot;';
return $s;
}
function fix_mce_lf($s) { function fix_mce_lf($s) {
$s = str_replace("\r\n","\n",$s); $s = str_replace("\r\n","\n",$s);
// $s = str_replace("\n\n","\n",$s); // $s = str_replace("\n\n","\n",$s);

View File

@ -658,6 +658,7 @@ CREATE TABLE IF NOT EXISTS `item` (
KEY `uid_item_starred` (`uid`, `item_starred`), KEY `uid_item_starred` (`uid`, `item_starred`),
KEY `uid_item_retained` (`uid`, `item_retained`), KEY `uid_item_retained` (`uid`, `item_retained`),
KEY `uid_item_private` (`uid`, `item_private`), KEY `uid_item_private` (`uid`, `item_private`),
KEY `uid_resource_type` (`uid`, `resource_type`),
KEY `aid` (`aid`), KEY `aid` (`aid`),
KEY `owner_xchan` (`owner_xchan`), KEY `owner_xchan` (`owner_xchan`),
KEY `author_xchan` (`author_xchan`), KEY `author_xchan` (`author_xchan`),

View File

@ -62,13 +62,16 @@ class AutonameTest extends TestCase {
/** /**
* test with a length, that may be too short * test with a length, that may be too short
* length is maximum - autoname can return something shorter.
*/ */
public function testAutonameLength1() { public function testAutonameLength1() {
$autoname1=autoname(1); $autoname1=autoname(1);
$this->assertEquals(1, strlen($autoname1)); $test = ((strlen($autoname1) < 2) ? 1 : 0);
$this->assertEquals(1, $test);
$autoname2=autoname(1); $autoname2=autoname(1);
$this->assertEquals(1, strlen($autoname2)); $test = ((strlen($autoname2) < 2) ? 1 : 0);
$this->assertEquals(1, $test);
// The following test is problematic, with only 26 possibilities // The following test is problematic, with only 26 possibilities
// generating the same thing twice happens often aka // generating the same thing twice happens often aka

View File

@ -6,9 +6,9 @@
#, fuzzy #, fuzzy
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: 3.2RC\n" "Project-Id-Version: 3.3\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-02-26 20:28+0100\n" "POT-Creation-Date: 2018-02-28 08:31+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n"
@ -235,7 +235,7 @@ msgstr ""
#: ../../include/attach.php:380 ../../include/attach.php:387 #: ../../include/attach.php:380 ../../include/attach.php:387
#: ../../include/attach.php:469 ../../include/attach.php:1019 #: ../../include/attach.php:469 ../../include/attach.php:1019
#: ../../include/attach.php:1093 ../../include/attach.php:1258 #: ../../include/attach.php:1093 ../../include/attach.php:1258
#: ../../include/items.php:3646 ../../include/photos.php:27 #: ../../include/items.php:3656 ../../include/photos.php:27
msgid "Permission denied." msgid "Permission denied."
msgstr "" msgstr ""
@ -244,7 +244,7 @@ msgstr ""
msgid "Block Name" msgid "Block Name"
msgstr "" msgstr ""
#: ../../Zotlabs/Module/Blocks.php:154 ../../include/text.php:2383 #: ../../Zotlabs/Module/Blocks.php:154 ../../include/text.php:2402
msgid "Blocks" msgid "Blocks"
msgstr "" msgstr ""
@ -407,7 +407,7 @@ msgstr ""
#: ../../Zotlabs/Module/Admin/Logs.php:84 #: ../../Zotlabs/Module/Admin/Logs.php:84
#: ../../Zotlabs/Module/Admin/Channels.php:147 #: ../../Zotlabs/Module/Admin/Channels.php:147
#: ../../Zotlabs/Module/Admin/Themes.php:158 #: ../../Zotlabs/Module/Admin/Themes.php:158
#: ../../Zotlabs/Module/Admin/Site.php:288 #: ../../Zotlabs/Module/Admin/Site.php:289
#: ../../Zotlabs/Module/Admin/Profs.php:157 #: ../../Zotlabs/Module/Admin/Profs.php:157
#: ../../Zotlabs/Module/Admin/Account_edit.php:74 #: ../../Zotlabs/Module/Admin/Account_edit.php:74
#: ../../Zotlabs/Module/Admin/Security.php:104 #: ../../Zotlabs/Module/Admin/Security.php:104
@ -1048,7 +1048,7 @@ msgstr ""
#: ../../Zotlabs/Module/Mitem.php:162 ../../Zotlabs/Module/Mitem.php:163 #: ../../Zotlabs/Module/Mitem.php:162 ../../Zotlabs/Module/Mitem.php:163
#: ../../Zotlabs/Module/Mitem.php:240 ../../Zotlabs/Module/Mitem.php:241 #: ../../Zotlabs/Module/Mitem.php:240 ../../Zotlabs/Module/Mitem.php:241
#: ../../Zotlabs/Module/Events.php:470 ../../Zotlabs/Module/Events.php:471 #: ../../Zotlabs/Module/Events.php:470 ../../Zotlabs/Module/Events.php:471
#: ../../Zotlabs/Module/Removeme.php:63 ../../Zotlabs/Module/Admin/Site.php:251 #: ../../Zotlabs/Module/Removeme.php:63 ../../Zotlabs/Module/Admin/Site.php:252
#: ../../Zotlabs/Module/Settings/Channel.php:305 #: ../../Zotlabs/Module/Settings/Channel.php:305
#: ../../Zotlabs/Module/Settings/Display.php:100 #: ../../Zotlabs/Module/Settings/Display.php:100
#: ../../Zotlabs/Module/Api.php:99 ../../Zotlabs/Module/Photos.php:697 #: ../../Zotlabs/Module/Api.php:99 ../../Zotlabs/Module/Photos.php:697
@ -1058,7 +1058,7 @@ msgstr ""
#: ../../Zotlabs/Module/Defperms.php:180 ../../Zotlabs/Module/Profiles.php:681 #: ../../Zotlabs/Module/Defperms.php:180 ../../Zotlabs/Module/Profiles.php:681
#: ../../Zotlabs/Module/Filestorage.php:155 #: ../../Zotlabs/Module/Filestorage.php:155
#: ../../Zotlabs/Module/Filestorage.php:163 #: ../../Zotlabs/Module/Filestorage.php:163
#: ../../Zotlabs/Storage/Browser.php:397 ../../boot.php:1589 #: ../../Zotlabs/Storage/Browser.php:397 ../../boot.php:1587
#: ../../view/theme/redbasic_c/php/config.php:100 #: ../../view/theme/redbasic_c/php/config.php:100
#: ../../view/theme/redbasic_c/php/config.php:115 #: ../../view/theme/redbasic_c/php/config.php:115
#: ../../view/theme/redbasic/php/config.php:98 #: ../../view/theme/redbasic/php/config.php:98
@ -1098,7 +1098,7 @@ msgstr ""
#: ../../Zotlabs/Module/Mitem.php:162 ../../Zotlabs/Module/Mitem.php:163 #: ../../Zotlabs/Module/Mitem.php:162 ../../Zotlabs/Module/Mitem.php:163
#: ../../Zotlabs/Module/Mitem.php:240 ../../Zotlabs/Module/Mitem.php:241 #: ../../Zotlabs/Module/Mitem.php:240 ../../Zotlabs/Module/Mitem.php:241
#: ../../Zotlabs/Module/Events.php:470 ../../Zotlabs/Module/Events.php:471 #: ../../Zotlabs/Module/Events.php:470 ../../Zotlabs/Module/Events.php:471
#: ../../Zotlabs/Module/Removeme.php:63 ../../Zotlabs/Module/Admin/Site.php:253 #: ../../Zotlabs/Module/Removeme.php:63 ../../Zotlabs/Module/Admin/Site.php:254
#: ../../Zotlabs/Module/Settings/Channel.php:305 #: ../../Zotlabs/Module/Settings/Channel.php:305
#: ../../Zotlabs/Module/Settings/Display.php:100 #: ../../Zotlabs/Module/Settings/Display.php:100
#: ../../Zotlabs/Module/Api.php:98 ../../Zotlabs/Module/Photos.php:697 #: ../../Zotlabs/Module/Api.php:98 ../../Zotlabs/Module/Photos.php:697
@ -1108,7 +1108,7 @@ msgstr ""
#: ../../Zotlabs/Module/Profiles.php:681 #: ../../Zotlabs/Module/Profiles.php:681
#: ../../Zotlabs/Module/Filestorage.php:155 #: ../../Zotlabs/Module/Filestorage.php:155
#: ../../Zotlabs/Module/Filestorage.php:163 #: ../../Zotlabs/Module/Filestorage.php:163
#: ../../Zotlabs/Storage/Browser.php:397 ../../boot.php:1589 #: ../../Zotlabs/Storage/Browser.php:397 ../../boot.php:1587
#: ../../view/theme/redbasic_c/php/config.php:100 #: ../../view/theme/redbasic_c/php/config.php:100
#: ../../view/theme/redbasic_c/php/config.php:115 #: ../../view/theme/redbasic_c/php/config.php:115
#: ../../view/theme/redbasic/php/config.php:98 #: ../../view/theme/redbasic/php/config.php:98
@ -2229,7 +2229,7 @@ msgstr ""
#: ../../Zotlabs/Module/Admin/Themes.php:72 ../../Zotlabs/Module/Thing.php:89 #: ../../Zotlabs/Module/Admin/Themes.php:72 ../../Zotlabs/Module/Thing.php:89
#: ../../Zotlabs/Module/Viewsrc.php:25 ../../Zotlabs/Module/Display.php:46 #: ../../Zotlabs/Module/Viewsrc.php:25 ../../Zotlabs/Module/Display.php:46
#: ../../Zotlabs/Module/Display.php:409 ../../Zotlabs/Module/Filestorage.php:24 #: ../../Zotlabs/Module/Display.php:409 ../../Zotlabs/Module/Filestorage.php:24
#: ../../Zotlabs/Module/Admin.php:62 ../../include/items.php:3559 #: ../../Zotlabs/Module/Admin.php:62 ../../include/items.php:3569
msgid "Item not found." msgid "Item not found."
msgstr "" msgstr ""
@ -2260,7 +2260,7 @@ msgstr ""
#: ../../Zotlabs/Module/Admin/Channels.php:145 #: ../../Zotlabs/Module/Admin/Channels.php:145
#: ../../Zotlabs/Module/Admin/Themes.php:122 #: ../../Zotlabs/Module/Admin/Themes.php:122
#: ../../Zotlabs/Module/Admin/Themes.php:156 #: ../../Zotlabs/Module/Admin/Themes.php:156
#: ../../Zotlabs/Module/Admin/Site.php:286 #: ../../Zotlabs/Module/Admin/Site.php:287
#: ../../Zotlabs/Module/Admin/Security.php:86 #: ../../Zotlabs/Module/Admin/Security.php:86
#: ../../Zotlabs/Module/Admin.php:136 #: ../../Zotlabs/Module/Admin.php:136
msgid "Administration" msgid "Administration"
@ -2633,7 +2633,7 @@ msgstr ""
#: ../../Zotlabs/Module/Admin/Site.php:184 #: ../../Zotlabs/Module/Admin/Site.php:184
#: ../../view/theme/redbasic_c/php/config.php:15 #: ../../view/theme/redbasic_c/php/config.php:15
#: ../../view/theme/redbasic/php/config.php:15 ../../include/text.php:3063 #: ../../view/theme/redbasic/php/config.php:15 ../../include/text.php:3082
msgid "Default" msgid "Default"
msgstr "" msgstr ""
@ -2655,438 +2655,438 @@ msgstr ""
msgid "unsupported" msgid "unsupported"
msgstr "" msgstr ""
#: ../../Zotlabs/Module/Admin/Site.php:252 #: ../../Zotlabs/Module/Admin/Site.php:253
msgid "Yes - with approval" msgid "Yes - with approval"
msgstr "" msgstr ""
#: ../../Zotlabs/Module/Admin/Site.php:258 #: ../../Zotlabs/Module/Admin/Site.php:259
msgid "My site is not a public server" msgid "My site is not a public server"
msgstr "" msgstr ""
#: ../../Zotlabs/Module/Admin/Site.php:259 #: ../../Zotlabs/Module/Admin/Site.php:260
msgid "My site has paid access only" msgid "My site has paid access only"
msgstr "" msgstr ""
#: ../../Zotlabs/Module/Admin/Site.php:260 #: ../../Zotlabs/Module/Admin/Site.php:261
msgid "My site has free access only" msgid "My site has free access only"
msgstr "" msgstr ""
#: ../../Zotlabs/Module/Admin/Site.php:261 #: ../../Zotlabs/Module/Admin/Site.php:262
msgid "My site offers free accounts with optional paid upgrades" msgid "My site offers free accounts with optional paid upgrades"
msgstr "" msgstr ""
#: ../../Zotlabs/Module/Admin/Site.php:273 #: ../../Zotlabs/Module/Admin/Site.php:274
msgid "Beginner/Basic" msgid "Beginner/Basic"
msgstr "" msgstr ""
#: ../../Zotlabs/Module/Admin/Site.php:274 #: ../../Zotlabs/Module/Admin/Site.php:275
msgid "Novice - not skilled but willing to learn" msgid "Novice - not skilled but willing to learn"
msgstr "" msgstr ""
#: ../../Zotlabs/Module/Admin/Site.php:275 #: ../../Zotlabs/Module/Admin/Site.php:276
msgid "Intermediate - somewhat comfortable" msgid "Intermediate - somewhat comfortable"
msgstr "" msgstr ""
#: ../../Zotlabs/Module/Admin/Site.php:276 #: ../../Zotlabs/Module/Admin/Site.php:277
msgid "Advanced - very comfortable" msgid "Advanced - very comfortable"
msgstr "" msgstr ""
#: ../../Zotlabs/Module/Admin/Site.php:277 #: ../../Zotlabs/Module/Admin/Site.php:278
msgid "Expert - I can write computer code" msgid "Expert - I can write computer code"
msgstr "" msgstr ""
#: ../../Zotlabs/Module/Admin/Site.php:278 #: ../../Zotlabs/Module/Admin/Site.php:279
msgid "Wizard - I probably know more than you do" msgid "Wizard - I probably know more than you do"
msgstr "" msgstr ""
#: ../../Zotlabs/Module/Admin/Site.php:287 ../../Zotlabs/Widget/Admin.php:22 #: ../../Zotlabs/Module/Admin/Site.php:288 ../../Zotlabs/Widget/Admin.php:22
msgid "Site" msgid "Site"
msgstr "" msgstr ""
#: ../../Zotlabs/Module/Admin/Site.php:289 #: ../../Zotlabs/Module/Admin/Site.php:290
#: ../../Zotlabs/Module/Register.php:271 #: ../../Zotlabs/Module/Register.php:271
msgid "Registration" msgid "Registration"
msgstr "" msgstr ""
#: ../../Zotlabs/Module/Admin/Site.php:290 #: ../../Zotlabs/Module/Admin/Site.php:291
msgid "File upload" msgid "File upload"
msgstr "" msgstr ""
#: ../../Zotlabs/Module/Admin/Site.php:291 #: ../../Zotlabs/Module/Admin/Site.php:292
msgid "Policies" msgid "Policies"
msgstr "" msgstr ""
#: ../../Zotlabs/Module/Admin/Site.php:292 ../../include/contact_widgets.php:16 #: ../../Zotlabs/Module/Admin/Site.php:293 ../../include/contact_widgets.php:16
msgid "Advanced" msgid "Advanced"
msgstr "" msgstr ""
#: ../../Zotlabs/Module/Admin/Site.php:296 #: ../../Zotlabs/Module/Admin/Site.php:297
#: ../../addon/statusnet/statusnet.php:891 #: ../../addon/statusnet/statusnet.php:891
msgid "Site name" msgid "Site name"
msgstr "" msgstr ""
#: ../../Zotlabs/Module/Admin/Site.php:298 #: ../../Zotlabs/Module/Admin/Site.php:299
msgid "Site default technical skill level" msgid "Site default technical skill level"
msgstr "" msgstr ""
#: ../../Zotlabs/Module/Admin/Site.php:298 #: ../../Zotlabs/Module/Admin/Site.php:299
msgid "Used to provide a member experience matched to technical comfort level" msgid "Used to provide a member experience matched to technical comfort level"
msgstr "" msgstr ""
#: ../../Zotlabs/Module/Admin/Site.php:300 #: ../../Zotlabs/Module/Admin/Site.php:301
msgid "Lock the technical skill level setting" msgid "Lock the technical skill level setting"
msgstr "" msgstr ""
#: ../../Zotlabs/Module/Admin/Site.php:300 #: ../../Zotlabs/Module/Admin/Site.php:301
msgid "Members can set their own technical comfort level by default" msgid "Members can set their own technical comfort level by default"
msgstr "" msgstr ""
#: ../../Zotlabs/Module/Admin/Site.php:302 #: ../../Zotlabs/Module/Admin/Site.php:303
msgid "Banner/Logo" msgid "Banner/Logo"
msgstr "" msgstr ""
#: ../../Zotlabs/Module/Admin/Site.php:302 #: ../../Zotlabs/Module/Admin/Site.php:303
msgid "Unfiltered HTML/CSS/JS is allowed" msgid "Unfiltered HTML/CSS/JS is allowed"
msgstr "" msgstr ""
#: ../../Zotlabs/Module/Admin/Site.php:303 #: ../../Zotlabs/Module/Admin/Site.php:304
msgid "Administrator Information" msgid "Administrator Information"
msgstr "" msgstr ""
#: ../../Zotlabs/Module/Admin/Site.php:303 #: ../../Zotlabs/Module/Admin/Site.php:304
msgid "" msgid ""
"Contact information for site administrators. Displayed on siteinfo page. " "Contact information for site administrators. Displayed on siteinfo page. "
"BBCode can be used here" "BBCode can be used here"
msgstr "" msgstr ""
#: ../../Zotlabs/Module/Admin/Site.php:304 ../../Zotlabs/Module/Siteinfo.php:21 #: ../../Zotlabs/Module/Admin/Site.php:305 ../../Zotlabs/Module/Siteinfo.php:21
msgid "Site Information" msgid "Site Information"
msgstr "" msgstr ""
#: ../../Zotlabs/Module/Admin/Site.php:304 #: ../../Zotlabs/Module/Admin/Site.php:305
msgid "" msgid ""
"Publicly visible description of this site. Displayed on siteinfo page. " "Publicly visible description of this site. Displayed on siteinfo page. "
"BBCode can be used here" "BBCode can be used here"
msgstr "" msgstr ""
#: ../../Zotlabs/Module/Admin/Site.php:305 #: ../../Zotlabs/Module/Admin/Site.php:306
msgid "System language" msgid "System language"
msgstr "" msgstr ""
#: ../../Zotlabs/Module/Admin/Site.php:306 #: ../../Zotlabs/Module/Admin/Site.php:307
msgid "System theme" msgid "System theme"
msgstr "" msgstr ""
#: ../../Zotlabs/Module/Admin/Site.php:306 #: ../../Zotlabs/Module/Admin/Site.php:307
msgid "" msgid ""
"Default system theme - may be over-ridden by user profiles - <a href='#' " "Default system theme - may be over-ridden by user profiles - <a href='#' "
"id='cnftheme'>change theme settings</a>" "id='cnftheme'>change theme settings</a>"
msgstr "" msgstr ""
#: ../../Zotlabs/Module/Admin/Site.php:307 #: ../../Zotlabs/Module/Admin/Site.php:308
msgid "Mobile system theme" msgid "Mobile system theme"
msgstr "" msgstr ""
#: ../../Zotlabs/Module/Admin/Site.php:307 #: ../../Zotlabs/Module/Admin/Site.php:308
msgid "Theme for mobile devices" msgid "Theme for mobile devices"
msgstr "" msgstr ""
#: ../../Zotlabs/Module/Admin/Site.php:309 #: ../../Zotlabs/Module/Admin/Site.php:310
msgid "Allow Feeds as Connections" msgid "Allow Feeds as Connections"
msgstr "" msgstr ""
#: ../../Zotlabs/Module/Admin/Site.php:309 #: ../../Zotlabs/Module/Admin/Site.php:310
msgid "(Heavy system resource usage)" msgid "(Heavy system resource usage)"
msgstr "" msgstr ""
#: ../../Zotlabs/Module/Admin/Site.php:310 #: ../../Zotlabs/Module/Admin/Site.php:311
msgid "Maximum image size" msgid "Maximum image size"
msgstr "" msgstr ""
#: ../../Zotlabs/Module/Admin/Site.php:310 #: ../../Zotlabs/Module/Admin/Site.php:311
msgid "" msgid ""
"Maximum size in bytes of uploaded images. Default is 0, which means no " "Maximum size in bytes of uploaded images. Default is 0, which means no "
"limits." "limits."
msgstr "" msgstr ""
#: ../../Zotlabs/Module/Admin/Site.php:311 #: ../../Zotlabs/Module/Admin/Site.php:312
msgid "Does this site allow new member registration?" msgid "Does this site allow new member registration?"
msgstr "" msgstr ""
#: ../../Zotlabs/Module/Admin/Site.php:312 #: ../../Zotlabs/Module/Admin/Site.php:313
msgid "Invitation only" msgid "Invitation only"
msgstr "" msgstr ""
#: ../../Zotlabs/Module/Admin/Site.php:312 #: ../../Zotlabs/Module/Admin/Site.php:313
msgid "" msgid ""
"Only allow new member registrations with an invitation code. Above register " "Only allow new member registrations with an invitation code. Above register "
"policy must be set to Yes." "policy must be set to Yes."
msgstr "" msgstr ""
#: ../../Zotlabs/Module/Admin/Site.php:313 #: ../../Zotlabs/Module/Admin/Site.php:314
msgid "Minimum age" msgid "Minimum age"
msgstr "" msgstr ""
#: ../../Zotlabs/Module/Admin/Site.php:313 #: ../../Zotlabs/Module/Admin/Site.php:314
msgid "Minimum age (in years) for who may register on this site." msgid "Minimum age (in years) for who may register on this site."
msgstr "" msgstr ""
#: ../../Zotlabs/Module/Admin/Site.php:314 #: ../../Zotlabs/Module/Admin/Site.php:315
msgid "Which best describes the types of account offered by this hub?" msgid "Which best describes the types of account offered by this hub?"
msgstr "" msgstr ""
#: ../../Zotlabs/Module/Admin/Site.php:315 #: ../../Zotlabs/Module/Admin/Site.php:316
msgid "Register text" msgid "Register text"
msgstr "" msgstr ""
#: ../../Zotlabs/Module/Admin/Site.php:315 #: ../../Zotlabs/Module/Admin/Site.php:316
msgid "Will be displayed prominently on the registration page." msgid "Will be displayed prominently on the registration page."
msgstr "" msgstr ""
#: ../../Zotlabs/Module/Admin/Site.php:316 #: ../../Zotlabs/Module/Admin/Site.php:317
msgid "Site homepage to show visitors (default: login box)" msgid "Site homepage to show visitors (default: login box)"
msgstr "" msgstr ""
#: ../../Zotlabs/Module/Admin/Site.php:316 #: ../../Zotlabs/Module/Admin/Site.php:317
msgid "" msgid ""
"example: 'public' to show public stream, 'page/sys/home' to show a system " "example: 'public' to show public stream, 'page/sys/home' to show a system "
"webpage called 'home' or 'include:home.html' to include a file." "webpage called 'home' or 'include:home.html' to include a file."
msgstr "" msgstr ""
#: ../../Zotlabs/Module/Admin/Site.php:317 #: ../../Zotlabs/Module/Admin/Site.php:318
msgid "Preserve site homepage URL" msgid "Preserve site homepage URL"
msgstr "" msgstr ""
#: ../../Zotlabs/Module/Admin/Site.php:317 #: ../../Zotlabs/Module/Admin/Site.php:318
msgid "" msgid ""
"Present the site homepage in a frame at the original location instead of " "Present the site homepage in a frame at the original location instead of "
"redirecting" "redirecting"
msgstr "" msgstr ""
#: ../../Zotlabs/Module/Admin/Site.php:318 #: ../../Zotlabs/Module/Admin/Site.php:319
msgid "Accounts abandoned after x days" msgid "Accounts abandoned after x days"
msgstr "" msgstr ""
#: ../../Zotlabs/Module/Admin/Site.php:318 #: ../../Zotlabs/Module/Admin/Site.php:319
msgid "" msgid ""
"Will not waste system resources polling external sites for abandonded " "Will not waste system resources polling external sites for abandonded "
"accounts. Enter 0 for no time limit." "accounts. Enter 0 for no time limit."
msgstr "" msgstr ""
#: ../../Zotlabs/Module/Admin/Site.php:319 #: ../../Zotlabs/Module/Admin/Site.php:320
msgid "Allowed friend domains" msgid "Allowed friend domains"
msgstr "" msgstr ""
#: ../../Zotlabs/Module/Admin/Site.php:319 #: ../../Zotlabs/Module/Admin/Site.php:320
msgid "" msgid ""
"Comma separated list of domains which are allowed to establish friendships " "Comma separated list of domains which are allowed to establish friendships "
"with this site. Wildcards are accepted. Empty to allow any domains" "with this site. Wildcards are accepted. Empty to allow any domains"
msgstr "" msgstr ""
#: ../../Zotlabs/Module/Admin/Site.php:320 #: ../../Zotlabs/Module/Admin/Site.php:321
msgid "Verify Email Addresses" msgid "Verify Email Addresses"
msgstr "" msgstr ""
#: ../../Zotlabs/Module/Admin/Site.php:320 #: ../../Zotlabs/Module/Admin/Site.php:321
msgid "" msgid ""
"Check to verify email addresses used in account registration (recommended)." "Check to verify email addresses used in account registration (recommended)."
msgstr "" msgstr ""
#: ../../Zotlabs/Module/Admin/Site.php:321 #: ../../Zotlabs/Module/Admin/Site.php:322
msgid "Force publish" msgid "Force publish"
msgstr "" msgstr ""
#: ../../Zotlabs/Module/Admin/Site.php:321 #: ../../Zotlabs/Module/Admin/Site.php:322
msgid "" msgid ""
"Check to force all profiles on this site to be listed in the site directory." "Check to force all profiles on this site to be listed in the site directory."
msgstr "" msgstr ""
#: ../../Zotlabs/Module/Admin/Site.php:322 #: ../../Zotlabs/Module/Admin/Site.php:323
msgid "Import Public Streams" msgid "Import Public Streams"
msgstr "" msgstr ""
#: ../../Zotlabs/Module/Admin/Site.php:322 #: ../../Zotlabs/Module/Admin/Site.php:323
msgid "" msgid ""
"Import and allow access to public content pulled from other sites. Warning: " "Import and allow access to public content pulled from other sites. Warning: "
"this content is unmoderated." "this content is unmoderated."
msgstr "" msgstr ""
#: ../../Zotlabs/Module/Admin/Site.php:323 #: ../../Zotlabs/Module/Admin/Site.php:324
msgid "Site only Public Streams" msgid "Site only Public Streams"
msgstr "" msgstr ""
#: ../../Zotlabs/Module/Admin/Site.php:323 #: ../../Zotlabs/Module/Admin/Site.php:324
msgid "" msgid ""
"Allow access to public content originating only from this site if Imported " "Allow access to public content originating only from this site if Imported "
"Public Streams are disabled." "Public Streams are disabled."
msgstr "" msgstr ""
#: ../../Zotlabs/Module/Admin/Site.php:324 #: ../../Zotlabs/Module/Admin/Site.php:325
msgid "Allow anybody on the internet to access the Public streams" msgid "Allow anybody on the internet to access the Public streams"
msgstr "" msgstr ""
#: ../../Zotlabs/Module/Admin/Site.php:324 #: ../../Zotlabs/Module/Admin/Site.php:325
msgid "" msgid ""
"Disable to require authentication before viewing. Warning: this content is " "Disable to require authentication before viewing. Warning: this content is "
"unmoderated." "unmoderated."
msgstr "" msgstr ""
#: ../../Zotlabs/Module/Admin/Site.php:325 #: ../../Zotlabs/Module/Admin/Site.php:326
msgid "Login on Homepage" msgid "Login on Homepage"
msgstr "" msgstr ""
#: ../../Zotlabs/Module/Admin/Site.php:325 #: ../../Zotlabs/Module/Admin/Site.php:326
msgid "" msgid ""
"Present a login box to visitors on the home page if no other content has " "Present a login box to visitors on the home page if no other content has "
"been configured." "been configured."
msgstr "" msgstr ""
#: ../../Zotlabs/Module/Admin/Site.php:326 #: ../../Zotlabs/Module/Admin/Site.php:327
msgid "Enable context help" msgid "Enable context help"
msgstr "" msgstr ""
#: ../../Zotlabs/Module/Admin/Site.php:326 #: ../../Zotlabs/Module/Admin/Site.php:327
msgid "" msgid ""
"Display contextual help for the current page when the help button is pressed." "Display contextual help for the current page when the help button is pressed."
msgstr "" msgstr ""
#: ../../Zotlabs/Module/Admin/Site.php:328 #: ../../Zotlabs/Module/Admin/Site.php:329
msgid "Reply-to email address for system generated email." msgid "Reply-to email address for system generated email."
msgstr "" msgstr ""
#: ../../Zotlabs/Module/Admin/Site.php:329 #: ../../Zotlabs/Module/Admin/Site.php:330
msgid "Sender (From) email address for system generated email." msgid "Sender (From) email address for system generated email."
msgstr "" msgstr ""
#: ../../Zotlabs/Module/Admin/Site.php:330 #: ../../Zotlabs/Module/Admin/Site.php:331
msgid "Name of email sender for system generated email." msgid "Name of email sender for system generated email."
msgstr "" msgstr ""
#: ../../Zotlabs/Module/Admin/Site.php:332 #: ../../Zotlabs/Module/Admin/Site.php:333
msgid "Directory Server URL" msgid "Directory Server URL"
msgstr "" msgstr ""
#: ../../Zotlabs/Module/Admin/Site.php:332 #: ../../Zotlabs/Module/Admin/Site.php:333
msgid "Default directory server" msgid "Default directory server"
msgstr "" msgstr ""
#: ../../Zotlabs/Module/Admin/Site.php:334 #: ../../Zotlabs/Module/Admin/Site.php:335
msgid "Proxy user" msgid "Proxy user"
msgstr "" msgstr ""
#: ../../Zotlabs/Module/Admin/Site.php:335 #: ../../Zotlabs/Module/Admin/Site.php:336
msgid "Proxy URL" msgid "Proxy URL"
msgstr "" msgstr ""
#: ../../Zotlabs/Module/Admin/Site.php:336 #: ../../Zotlabs/Module/Admin/Site.php:337
msgid "Network timeout" msgid "Network timeout"
msgstr "" msgstr ""
#: ../../Zotlabs/Module/Admin/Site.php:336 #: ../../Zotlabs/Module/Admin/Site.php:337
msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." msgid "Value is in seconds. Set to 0 for unlimited (not recommended)."
msgstr "" msgstr ""
#: ../../Zotlabs/Module/Admin/Site.php:337 #: ../../Zotlabs/Module/Admin/Site.php:338
msgid "Delivery interval" msgid "Delivery interval"
msgstr "" msgstr ""
#: ../../Zotlabs/Module/Admin/Site.php:337 #: ../../Zotlabs/Module/Admin/Site.php:338
msgid "" msgid ""
"Delay background delivery processes by this many seconds to reduce system " "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 " "load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 "
"for large dedicated servers." "for large dedicated servers."
msgstr "" msgstr ""
#: ../../Zotlabs/Module/Admin/Site.php:338 #: ../../Zotlabs/Module/Admin/Site.php:339
msgid "Deliveries per process" msgid "Deliveries per process"
msgstr "" msgstr ""
#: ../../Zotlabs/Module/Admin/Site.php:338 #: ../../Zotlabs/Module/Admin/Site.php:339
msgid "" msgid ""
"Number of deliveries to attempt in a single operating system process. Adjust " "Number of deliveries to attempt in a single operating system process. Adjust "
"if necessary to tune system performance. Recommend: 1-5." "if necessary to tune system performance. Recommend: 1-5."
msgstr "" msgstr ""
#: ../../Zotlabs/Module/Admin/Site.php:339 #: ../../Zotlabs/Module/Admin/Site.php:340
msgid "Queue Threshold" msgid "Queue Threshold"
msgstr "" msgstr ""
#: ../../Zotlabs/Module/Admin/Site.php:339 #: ../../Zotlabs/Module/Admin/Site.php:340
msgid "" msgid ""
"Always defer immediate delivery if queue contains more than this number of " "Always defer immediate delivery if queue contains more than this number of "
"entries." "entries."
msgstr "" msgstr ""
#: ../../Zotlabs/Module/Admin/Site.php:340 #: ../../Zotlabs/Module/Admin/Site.php:341
msgid "Poll interval" msgid "Poll interval"
msgstr "" msgstr ""
#: ../../Zotlabs/Module/Admin/Site.php:340 #: ../../Zotlabs/Module/Admin/Site.php:341
msgid "" msgid ""
"Delay background polling processes by this many seconds to reduce system " "Delay background polling processes by this many seconds to reduce system "
"load. If 0, use delivery interval." "load. If 0, use delivery interval."
msgstr "" msgstr ""
#: ../../Zotlabs/Module/Admin/Site.php:341 #: ../../Zotlabs/Module/Admin/Site.php:342
msgid "Path to ImageMagick convert program" msgid "Path to ImageMagick convert program"
msgstr "" msgstr ""
#: ../../Zotlabs/Module/Admin/Site.php:341 #: ../../Zotlabs/Module/Admin/Site.php:342
msgid "" msgid ""
"If set, use this program to generate photo thumbnails for huge images ( > " "If set, use this program to generate photo thumbnails for huge images ( > "
"4000 pixels in either dimension), otherwise memory exhaustion may occur. " "4000 pixels in either dimension), otherwise memory exhaustion may occur. "
"Example: /usr/bin/convert" "Example: /usr/bin/convert"
msgstr "" msgstr ""
#: ../../Zotlabs/Module/Admin/Site.php:342 #: ../../Zotlabs/Module/Admin/Site.php:343
msgid "Allow SVG thumbnails in file browser" msgid "Allow SVG thumbnails in file browser"
msgstr "" msgstr ""
#: ../../Zotlabs/Module/Admin/Site.php:342 #: ../../Zotlabs/Module/Admin/Site.php:343
msgid "WARNING: SVG images may contain malicious code." msgid "WARNING: SVG images may contain malicious code."
msgstr "" msgstr ""
#: ../../Zotlabs/Module/Admin/Site.php:343 #: ../../Zotlabs/Module/Admin/Site.php:344
msgid "Maximum Load Average" msgid "Maximum Load Average"
msgstr "" msgstr ""
#: ../../Zotlabs/Module/Admin/Site.php:343 #: ../../Zotlabs/Module/Admin/Site.php:344
msgid "" msgid ""
"Maximum system load before delivery and poll processes are deferred - " "Maximum system load before delivery and poll processes are deferred - "
"default 50." "default 50."
msgstr "" msgstr ""
#: ../../Zotlabs/Module/Admin/Site.php:344 #: ../../Zotlabs/Module/Admin/Site.php:345
msgid "Expiration period in days for imported (grid/network) content" msgid "Expiration period in days for imported (grid/network) content"
msgstr "" msgstr ""
#: ../../Zotlabs/Module/Admin/Site.php:344 #: ../../Zotlabs/Module/Admin/Site.php:345
msgid "0 for no expiration of imported content" msgid "0 for no expiration of imported content"
msgstr "" msgstr ""
#: ../../Zotlabs/Module/Admin/Site.php:346 #: ../../Zotlabs/Module/Admin/Site.php:347
msgid "" msgid ""
"Public servers: Optional landing (marketing) webpage for new registrants" "Public servers: Optional landing (marketing) webpage for new registrants"
msgstr "" msgstr ""
#: ../../Zotlabs/Module/Admin/Site.php:346 #: ../../Zotlabs/Module/Admin/Site.php:347
#, php-format #, php-format
msgid "Create this page first. Default is %s/register" msgid "Create this page first. Default is %s/register"
msgstr "" msgstr ""
#: ../../Zotlabs/Module/Admin/Site.php:347 #: ../../Zotlabs/Module/Admin/Site.php:348
msgid "Page to display after creating a new channel" msgid "Page to display after creating a new channel"
msgstr "" msgstr ""
#: ../../Zotlabs/Module/Admin/Site.php:347 #: ../../Zotlabs/Module/Admin/Site.php:348
msgid "Recommend: profiles, go, or settings" msgid "Recommend: profiles, go, or settings"
msgstr "" msgstr ""
#: ../../Zotlabs/Module/Admin/Site.php:349 #: ../../Zotlabs/Module/Admin/Site.php:350
msgid "Optional: site location" msgid "Optional: site location"
msgstr "" msgstr ""
#: ../../Zotlabs/Module/Admin/Site.php:349 #: ../../Zotlabs/Module/Admin/Site.php:350
msgid "Region or country" msgid "Region or country"
msgstr "" msgstr ""
@ -4331,7 +4331,7 @@ msgstr ""
msgid "Authentication failed." msgid "Authentication failed."
msgstr "" msgstr ""
#: ../../Zotlabs/Module/Rmagic.php:75 ../../boot.php:1585 #: ../../Zotlabs/Module/Rmagic.php:75 ../../boot.php:1583
#: ../../include/channel.php:2307 #: ../../include/channel.php:2307
msgid "Remote Authentication" msgid "Remote Authentication"
msgstr "" msgstr ""
@ -4348,7 +4348,7 @@ msgstr ""
msgid "Permissions denied." msgid "Permissions denied."
msgstr "" msgstr ""
#: ../../Zotlabs/Module/Cal.php:344 ../../include/text.php:2407 #: ../../Zotlabs/Module/Cal.php:344 ../../include/text.php:2426
msgid "Import" msgid "Import"
msgstr "" msgstr ""
@ -5541,7 +5541,7 @@ msgstr ""
msgid "Connection Default Permissions" msgid "Connection Default Permissions"
msgstr "" msgstr ""
#: ../../Zotlabs/Module/Connedit.php:850 ../../include/items.php:4154 #: ../../Zotlabs/Module/Connedit.php:850 ../../include/items.php:4164
#, php-format #, php-format
msgid "Connection: %s" msgid "Connection: %s"
msgstr "" msgstr ""
@ -5762,7 +5762,7 @@ msgstr ""
msgid "Submit and proceed" msgid "Submit and proceed"
msgstr "" msgstr ""
#: ../../Zotlabs/Module/Menu.php:107 ../../include/text.php:2384 #: ../../Zotlabs/Module/Menu.php:107 ../../include/text.php:2403
msgid "Menus" msgid "Menus"
msgstr "" msgstr ""
@ -5814,7 +5814,7 @@ msgstr ""
msgid "Allow bookmarks" msgid "Allow bookmarks"
msgstr "" msgstr ""
#: ../../Zotlabs/Module/Layouts.php:184 ../../include/text.php:2385 #: ../../Zotlabs/Module/Layouts.php:184 ../../include/text.php:2404
msgid "Layouts" msgid "Layouts"
msgstr "" msgstr ""
@ -5922,7 +5922,7 @@ msgid "Could not create privacy group."
msgstr "" msgstr ""
#: ../../Zotlabs/Module/Group.php:42 ../../Zotlabs/Module/Group.php:143 #: ../../Zotlabs/Module/Group.php:42 ../../Zotlabs/Module/Group.php:143
#: ../../include/items.php:4121 #: ../../include/items.php:4131
msgid "Privacy group not found." msgid "Privacy group not found."
msgstr "" msgstr ""
@ -7169,7 +7169,7 @@ msgstr ""
msgid "Membership on this site is by invitation only." msgid "Membership on this site is by invitation only."
msgstr "" msgstr ""
#: ../../Zotlabs/Module/Register.php:288 ../../boot.php:1565 #: ../../Zotlabs/Module/Register.php:288 ../../boot.php:1563
#: ../../include/nav.php:164 #: ../../include/nav.php:164
msgid "Register" msgid "Register"
msgstr "" msgstr ""
@ -7185,25 +7185,25 @@ msgstr ""
msgid "Cover Photos" msgid "Cover Photos"
msgstr "" msgstr ""
#: ../../Zotlabs/Module/Cover_photo.php:237 ../../include/items.php:4498 #: ../../Zotlabs/Module/Cover_photo.php:237 ../../include/items.php:4508
msgid "female" msgid "female"
msgstr "" msgstr ""
#: ../../Zotlabs/Module/Cover_photo.php:238 ../../include/items.php:4499 #: ../../Zotlabs/Module/Cover_photo.php:238 ../../include/items.php:4509
#, php-format #, php-format
msgid "%1$s updated her %2$s" msgid "%1$s updated her %2$s"
msgstr "" msgstr ""
#: ../../Zotlabs/Module/Cover_photo.php:239 ../../include/items.php:4500 #: ../../Zotlabs/Module/Cover_photo.php:239 ../../include/items.php:4510
msgid "male" msgid "male"
msgstr "" msgstr ""
#: ../../Zotlabs/Module/Cover_photo.php:240 ../../include/items.php:4501 #: ../../Zotlabs/Module/Cover_photo.php:240 ../../include/items.php:4511
#, php-format #, php-format
msgid "%1$s updated his %2$s" msgid "%1$s updated his %2$s"
msgstr "" msgstr ""
#: ../../Zotlabs/Module/Cover_photo.php:242 ../../include/items.php:4503 #: ../../Zotlabs/Module/Cover_photo.php:242 ../../include/items.php:4513
#, php-format #, php-format
msgid "%1$s updated their %2$s" msgid "%1$s updated their %2$s"
msgstr "" msgstr ""
@ -7498,7 +7498,7 @@ msgid ""
"Password reset failed." "Password reset failed."
msgstr "" msgstr ""
#: ../../Zotlabs/Module/Lostpass.php:91 ../../boot.php:1593 #: ../../Zotlabs/Module/Lostpass.php:91 ../../boot.php:1591
msgid "Password Reset" msgid "Password Reset"
msgstr "" msgstr ""
@ -7600,7 +7600,7 @@ msgstr ""
msgid "Suggest Channels" msgid "Suggest Channels"
msgstr "" msgstr ""
#: ../../Zotlabs/Lib/Apps.php:239 ../../boot.php:1584 ../../include/nav.php:126 #: ../../Zotlabs/Lib/Apps.php:239 ../../boot.php:1582 ../../include/nav.php:126
#: ../../include/nav.php:130 #: ../../include/nav.php:130
msgid "Login" msgid "Login"
msgstr "" msgstr ""
@ -7929,6 +7929,18 @@ msgstr ""
msgid "Please visit %s to view and/or reply to your private messages." msgid "Please visit %s to view and/or reply to your private messages."
msgstr "" msgstr ""
#: ../../Zotlabs/Lib/Enotify.php:141
msgid "commented on"
msgstr ""
#: ../../Zotlabs/Lib/Enotify.php:152
msgid "liked"
msgstr ""
#: ../../Zotlabs/Lib/Enotify.php:155
msgid "disliked"
msgstr ""
#: ../../Zotlabs/Lib/Enotify.php:198 #: ../../Zotlabs/Lib/Enotify.php:198
#, php-format #, php-format
msgid "%1$s, %2$s %3$s [zrl=%4$s]a %5$s[/zrl]" msgid "%1$s, %2$s %3$s [zrl=%4$s]a %5$s[/zrl]"
@ -8361,7 +8373,7 @@ msgstr ""
msgid "parent" msgid "parent"
msgstr "" msgstr ""
#: ../../Zotlabs/Storage/Browser.php:131 ../../include/text.php:2802 #: ../../Zotlabs/Storage/Browser.php:131 ../../include/text.php:2821
msgid "Collection" msgid "Collection"
msgstr "" msgstr ""
@ -8886,50 +8898,50 @@ msgstr ""
msgid "Source channel not found." msgid "Source channel not found."
msgstr "" msgstr ""
#: ../../boot.php:1564 #: ../../boot.php:1562
msgid "Create an account to access services and applications" msgid "Create an account to access services and applications"
msgstr "" msgstr ""
#: ../../boot.php:1583 ../../include/nav.php:111 ../../include/nav.php:140 #: ../../boot.php:1581 ../../include/nav.php:111 ../../include/nav.php:140
#: ../../include/nav.php:159 #: ../../include/nav.php:159
msgid "Logout" msgid "Logout"
msgstr "" msgstr ""
#: ../../boot.php:1587 #: ../../boot.php:1585
msgid "Login/Email" msgid "Login/Email"
msgstr "" msgstr ""
#: ../../boot.php:1588 #: ../../boot.php:1586
msgid "Password" msgid "Password"
msgstr "" msgstr ""
#: ../../boot.php:1589 #: ../../boot.php:1587
msgid "Remember me" msgid "Remember me"
msgstr "" msgstr ""
#: ../../boot.php:1592 #: ../../boot.php:1590
msgid "Forgot your password?" msgid "Forgot your password?"
msgstr "" msgstr ""
#: ../../boot.php:2344 #: ../../boot.php:2347
#, php-format #, php-format
msgid "[$Projectname] Website SSL error for %s" msgid "[$Projectname] Website SSL error for %s"
msgstr "" msgstr ""
#: ../../boot.php:2349 #: ../../boot.php:2352
msgid "Website SSL certificate is not valid. Please correct." msgid "Website SSL certificate is not valid. Please correct."
msgstr "" msgstr ""
#: ../../boot.php:2465 #: ../../boot.php:2468
#, php-format #, php-format
msgid "[$Projectname] Cron tasks not running on %s" msgid "[$Projectname] Cron tasks not running on %s"
msgstr "" msgstr ""
#: ../../boot.php:2470 #: ../../boot.php:2473
msgid "Cron/Scheduled tasks not running." msgid "Cron/Scheduled tasks not running."
msgstr "" msgstr ""
#: ../../boot.php:2471 ../../include/datetime.php:232 #: ../../boot.php:2474 ../../include/datetime.php:232
msgid "never" msgid "never"
msgstr "" msgstr ""
@ -12331,75 +12343,75 @@ msgstr ""
msgid "activity" msgid "activity"
msgstr "" msgstr ""
#: ../../include/text.php:2080 #: ../../include/text.php:2099
msgid "a-z, 0-9, -, and _ only" msgid "a-z, 0-9, -, and _ only"
msgstr "" msgstr ""
#: ../../include/text.php:2380 #: ../../include/text.php:2399
msgid "Design Tools" msgid "Design Tools"
msgstr "" msgstr ""
#: ../../include/text.php:2386 #: ../../include/text.php:2405
msgid "Pages" msgid "Pages"
msgstr "" msgstr ""
#: ../../include/text.php:2408 #: ../../include/text.php:2427
msgid "Import website..." msgid "Import website..."
msgstr "" msgstr ""
#: ../../include/text.php:2409 #: ../../include/text.php:2428
msgid "Select folder to import" msgid "Select folder to import"
msgstr "" msgstr ""
#: ../../include/text.php:2410 #: ../../include/text.php:2429
msgid "Import from a zipped folder:" msgid "Import from a zipped folder:"
msgstr "" msgstr ""
#: ../../include/text.php:2411 #: ../../include/text.php:2430
msgid "Import from cloud files:" msgid "Import from cloud files:"
msgstr "" msgstr ""
#: ../../include/text.php:2412 #: ../../include/text.php:2431
msgid "/cloud/channel/path/to/folder" msgid "/cloud/channel/path/to/folder"
msgstr "" msgstr ""
#: ../../include/text.php:2413 #: ../../include/text.php:2432
msgid "Enter path to website files" msgid "Enter path to website files"
msgstr "" msgstr ""
#: ../../include/text.php:2414 #: ../../include/text.php:2433
msgid "Select folder" msgid "Select folder"
msgstr "" msgstr ""
#: ../../include/text.php:2415 #: ../../include/text.php:2434
msgid "Export website..." msgid "Export website..."
msgstr "" msgstr ""
#: ../../include/text.php:2416 #: ../../include/text.php:2435
msgid "Export to a zip file" msgid "Export to a zip file"
msgstr "" msgstr ""
#: ../../include/text.php:2417 #: ../../include/text.php:2436
msgid "website.zip" msgid "website.zip"
msgstr "" msgstr ""
#: ../../include/text.php:2418 #: ../../include/text.php:2437
msgid "Enter a name for the zip file." msgid "Enter a name for the zip file."
msgstr "" msgstr ""
#: ../../include/text.php:2419 #: ../../include/text.php:2438
msgid "Export to cloud files" msgid "Export to cloud files"
msgstr "" msgstr ""
#: ../../include/text.php:2420 #: ../../include/text.php:2439
msgid "/path/to/export/folder" msgid "/path/to/export/folder"
msgstr "" msgstr ""
#: ../../include/text.php:2421 #: ../../include/text.php:2440
msgid "Enter a path to a cloud files destination." msgid "Enter a path to a cloud files destination."
msgstr "" msgstr ""
#: ../../include/text.php:2422 #: ../../include/text.php:2441
msgid "Specify folder" msgid "Specify folder"
msgstr "" msgstr ""
@ -12875,34 +12887,34 @@ msgstr ""
msgid "Visible to specific connections." msgid "Visible to specific connections."
msgstr "" msgstr ""
#: ../../include/items.php:4137 #: ../../include/items.php:4147
msgid "Privacy group is empty." msgid "Privacy group is empty."
msgstr "" msgstr ""
#: ../../include/items.php:4144 #: ../../include/items.php:4154
#, php-format #, php-format
msgid "Privacy group: %s" msgid "Privacy group: %s"
msgstr "" msgstr ""
#: ../../include/items.php:4156 #: ../../include/items.php:4166
msgid "Connection not found." msgid "Connection not found."
msgstr "" msgstr ""
#: ../../include/items.php:4505 #: ../../include/items.php:4515
msgid "profile photo" msgid "profile photo"
msgstr "" msgstr ""
#: ../../include/items.php:4696 #: ../../include/items.php:4706
#, php-format #, php-format
msgid "[Edited %s]" msgid "[Edited %s]"
msgstr "" msgstr ""
#: ../../include/items.php:4696 #: ../../include/items.php:4706
msgctxt "edit_activity" msgctxt "edit_activity"
msgid "Post" msgid "Post"
msgstr "" msgstr ""
#: ../../include/items.php:4696 #: ../../include/items.php:4706
msgctxt "edit_activity" msgctxt "edit_activity"
msgid "Comment" msgid "Comment"
msgstr "" msgstr ""

View File

@ -1,5 +1,6 @@
<div class="generic-content-wrapper"> <div class="generic-content-wrapper">
<div class="section-title-wrapper"> <div class="section-title-wrapper">
<div class="descriptive-text pull-right">{{$descrip}}</div>
<h2>{{$title}}</h2> <h2>{{$title}}</h2>
</div> </div>
<form action="settings/featured" method="post" autocomplete="off"> <form action="settings/featured" method="post" autocomplete="off">