aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs
diff options
context:
space:
mode:
authorzotlabs <mike@macgirvin.com>2017-10-08 15:10:44 -0700
committerzotlabs <mike@macgirvin.com>2017-10-08 15:10:44 -0700
commit52b1ea10a1ef4ccec67b4248155651626ec24b44 (patch)
tree4177a3e8de9ed2353bec1ee7e5f470766c12fa39 /Zotlabs
parent27bc8294aecb847e0e87e61ff0c11cf64d4a9c10 (diff)
parentec173e7eb2e0b4a0768606365f6463009900f0ea (diff)
downloadvolse-hubzilla-52b1ea10a1ef4ccec67b4248155651626ec24b44.tar.gz
volse-hubzilla-52b1ea10a1ef4ccec67b4248155651626ec24b44.tar.bz2
volse-hubzilla-52b1ea10a1ef4ccec67b4248155651626ec24b44.zip
Merge branch 'dev' of https://github.com/redmatrix/hubzilla into xdev_merge
Diffstat (limited to 'Zotlabs')
-rw-r--r--Zotlabs/Module/Manage.php2
-rw-r--r--Zotlabs/Module/Ping.php2
-rw-r--r--Zotlabs/Widget/Notifications.php26
3 files changed, 15 insertions, 15 deletions
diff --git a/Zotlabs/Module/Manage.php b/Zotlabs/Module/Manage.php
index 2d8f39ded..9c5c32294 100644
--- a/Zotlabs/Module/Manage.php
+++ b/Zotlabs/Module/Manage.php
@@ -11,7 +11,7 @@ class Manage extends \Zotlabs\Web\Controller {
return;
}
- nav_set_selected('Manage');
+ nav_set_selected('Channel Manager');
require_once('include/security.php');
diff --git a/Zotlabs/Module/Ping.php b/Zotlabs/Module/Ping.php
index e3f430861..5f44b3c20 100644
--- a/Zotlabs/Module/Ping.php
+++ b/Zotlabs/Module/Ping.php
@@ -297,7 +297,7 @@ class Ping extends \Zotlabs\Web\Controller {
killme();
}
- if(argc() > 1 && argv(1) === 'messages') {
+ if(argc() > 1 && argv(1) === 'mail') {
$channel = \App::get_channel();
$t = q("select mail.*, xchan.* from mail left join xchan on xchan_hash = from_xchan
where channel_id = %d and mail_seen = 0 and mail_deleted = 0
diff --git a/Zotlabs/Widget/Notifications.php b/Zotlabs/Widget/Notifications.php
index 85e8e6cac..cac884cd1 100644
--- a/Zotlabs/Widget/Notifications.php
+++ b/Zotlabs/Widget/Notifications.php
@@ -16,15 +16,15 @@ class Notifications {
'type' => 'network',
'icon' => 'th',
'severity' => 'secondary',
- 'label' => t('Activity'),
- 'title' => t('Network Activity Notifications'),
+ 'label' => t('New Network Activity'),
+ 'title' => t('New Network Activity Notifications'),
'viewall' => [
'url' => 'network',
'label' => t('View your network activity')
],
'markall' => [
'url' => '#',
- 'label' => t('Mark all notifications seen')
+ 'label' => t('Mark all notifications read')
]
];
@@ -32,8 +32,8 @@ class Notifications {
'type' => 'home',
'icon' => 'home',
'severity' => 'danger',
- 'label' => t('Home'),
- 'title' => t('Channel Home Notifications'),
+ 'label' => t('New Home Activity'),
+ 'title' => t('New Home Activity Notifications'),
'viewall' => [
'url' => 'channel/' . $channel['channel_address'],
'label' => t('View your home activity')
@@ -45,11 +45,11 @@ class Notifications {
];
$notifications[] = [
- 'type' => 'messages',
+ 'type' => 'mail',
'icon' => 'envelope',
'severity' => 'danger',
- 'label' => t('Mail'),
- 'title' => t('Private mail'),
+ 'label' => t('New Mails'),
+ 'title' => t('New Mails Notifications'),
'viewall' => [
'url' => 'mail/combined',
'label' => t('View your private mails')
@@ -64,8 +64,8 @@ class Notifications {
'type' => 'all_events',
'icon' => 'calendar',
'severity' => 'secondary',
- 'label' => t('Events'),
- 'title' => t('Event Calendar'),
+ 'label' => t('New Events'),
+ 'title' => t('New Events Notifications'),
'viewall' => [
'url' => 'mail/combined',
'label' => t('View events')
@@ -81,7 +81,7 @@ class Notifications {
'icon' => 'users',
'severity' => 'danger',
'label' => t('New Connections'),
- 'title' => t('New Connections'),
+ 'title' => t('New Connections Notifications'),
'viewall' => [
'url' => 'connections',
'label' => t('View all connections')
@@ -93,7 +93,7 @@ class Notifications {
'icon' => 'folder',
'severity' => 'danger',
'label' => t('New Files'),
- 'title' => t('New files shared with me'),
+ 'title' => t('New Files Notifications'),
];
$notifications[] = [
@@ -119,7 +119,7 @@ class Notifications {
'icon' => 'user-o',
'severity' => 'danger',
'label' => t('New Registrations'),
- 'title' => t('New Registrations'),
+ 'title' => t('New Registrations Notifications'),
];
}