Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordiosmosis <diosmosis@users.noreply.github.com>2018-05-24 07:32:40 +0300
committerGitHub <noreply@github.com>2018-05-24 07:32:40 +0300
commit623bbf6fc331e5588e88666d0040857ae493f985 (patch)
treee9a6be0a51357a783b059e15c2f43707b8d9f742 /plugins/CoreHome/Categories/ActionsCategory.php
parent617de25752c965ca7a8ff1979419a43b2e90c7a1 (diff)
Rename Actions category to Behavior + Referrers category to Acquisition (#12950)
* Rename Actions category to Behavior + Referrers category to Acquisition while retaining category ID. * quick fix * Update expected system test files. * Updating screenshots & fixing test. * fix dashboard test * Update screenshots again.
Diffstat (limited to 'plugins/CoreHome/Categories/ActionsCategory.php')
-rw-r--r--plugins/CoreHome/Categories/ActionsCategory.php6
1 files changed, 6 insertions, 0 deletions
diff --git a/plugins/CoreHome/Categories/ActionsCategory.php b/plugins/CoreHome/Categories/ActionsCategory.php
index a7f1c57276..d7e604d06c 100644
--- a/plugins/CoreHome/Categories/ActionsCategory.php
+++ b/plugins/CoreHome/Categories/ActionsCategory.php
@@ -9,10 +9,16 @@
namespace Piwik\Plugins\CoreHome\Categories;
use Piwik\Category\Category;
+use Piwik\Piwik;
class ActionsCategory extends Category
{
protected $id = 'General_Actions';
protected $order = 10;
protected $icon = 'icon-reporting-actions';
+
+ public function getDisplayName()
+ {
+ return Piwik::translate('Actions_Behaviour');
+ }
}