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:
Diffstat (limited to 'plugins/Transitions')
-rw-r--r--plugins/Transitions/Categories/TransitionsSubcategory.php6
-rw-r--r--plugins/Transitions/lang/en.json4
2 files changed, 9 insertions, 1 deletions
diff --git a/plugins/Transitions/Categories/TransitionsSubcategory.php b/plugins/Transitions/Categories/TransitionsSubcategory.php
index d801ab1ba3..e58c992d1d 100644
--- a/plugins/Transitions/Categories/TransitionsSubcategory.php
+++ b/plugins/Transitions/Categories/TransitionsSubcategory.php
@@ -9,6 +9,7 @@
namespace Piwik\Plugins\Transitions\Categories;
use Piwik\Category\Subcategory;
+use Piwik\Piwik;
class TransitionsSubcategory extends Subcategory
{
@@ -16,4 +17,9 @@ class TransitionsSubcategory extends Subcategory
protected $id = 'Transitions_Transitions';
protected $order = 46;
+ public function getHelp()
+ {
+ return '<p>' . Piwik::translate('Transitions_TransitionsSubcategoryHelp1') . '</p>'
+ . '<p><a href="https://matomo.org/docs/transitions/" rel="noreferrer noopener" target="_blank">' . Piwik::translate('Transitions_TransitionsSubcategoryHelp2') . '</a></p>';
+ }
}
diff --git a/plugins/Transitions/lang/en.json b/plugins/Transitions/lang/en.json
index 3fece8c57e..321557d613 100644
--- a/plugins/Transitions/lang/en.json
+++ b/plugins/Transitions/lang/en.json
@@ -33,6 +33,8 @@
"ToFollowingSiteSearchesInline": "%s internal searches",
"XOfAllPageviews": "%s of all views of this page",
"XOutOfYVisits": "%1$s (out of %2$s)",
- "PageURLTransitions": "Page URL Transitions"
+ "PageURLTransitions": "Page URL Transitions",
+ "TransitionsSubcategoryHelp1": "Transitions gives you a report that shows the things your visitors did directly before and after viewing a certain page. This page will explain how to access, understand, and use the powerful Transitions report.",
+ "TransitionsSubcategoryHelp2": "More Details"
}
} \ No newline at end of file