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:
authorStefan Giehl <stefan@matomo.org>2021-01-05 03:41:51 +0300
committerGitHub <noreply@github.com>2021-01-05 03:41:51 +0300
commitda9c6159702a228c1d50b65b87dd416730c092b0 (patch)
tree668f98c9bdba618df86556fa0afc014a8591e244 /plugins/MultiSites
parent6f60a5ebfa306e66055cf76d0f98d1b5f2f127be (diff)
Adds missing report documentations (#16878)
* Fix report documentation not shown when switching between related reports * Adds report documentation for DevicesDetection reports * Adds some more report documentations * Adds documentation to Event reports * Adds documentation to Content reports * Adds documentation to VisitorFrequency report * Adds documentation to Goals reports * Adds documentation to VisitsSummary report * fixes & test updates * fix typo Co-authored-by: Lukas Winkler <git@lw1.at> * small tweaks to some docs * revising some of the report documentation * fix translation file * updates expected test files Co-authored-by: Lukas Winkler <git@lw1.at> Co-authored-by: diosmosis <diosmosis@users.noreply.github.com>
Diffstat (limited to 'plugins/MultiSites')
-rw-r--r--plugins/MultiSites/Reports/GetAll.php2
-rw-r--r--plugins/MultiSites/Reports/GetOne.php2
-rw-r--r--plugins/MultiSites/lang/en.json4
3 files changed, 5 insertions, 3 deletions
diff --git a/plugins/MultiSites/Reports/GetAll.php b/plugins/MultiSites/Reports/GetAll.php
index 9856f9b7fd..a4de704ba9 100644
--- a/plugins/MultiSites/Reports/GetAll.php
+++ b/plugins/MultiSites/Reports/GetAll.php
@@ -18,7 +18,7 @@ class GetAll extends Base
parent::init();
$this->dimension = new Website();
$this->name = Piwik::translate('General_AllWebsitesDashboard');
- $this->documentation = ''; // TODO
+ $this->documentation = Piwik::translate('MultiSites_AllWebsitesDashboardDocumentation');
$this->constantRowsCount = false;
$this->order = 4;
}
diff --git a/plugins/MultiSites/Reports/GetOne.php b/plugins/MultiSites/Reports/GetOne.php
index 370476fcbf..555cf92b05 100644
--- a/plugins/MultiSites/Reports/GetOne.php
+++ b/plugins/MultiSites/Reports/GetOne.php
@@ -18,7 +18,7 @@ class GetOne extends Base
parent::init();
$this->dimension = new Website();
$this->name = Piwik::translate('General_SingleWebsitesDashboard');
- $this->documentation = ''; // TODO
+ $this->documentation = Piwik::translate('MultiSites_SingleWebsitesDashboardDocumentation');
$this->constantRowsCount = false;
$this->order = 5;
}
diff --git a/plugins/MultiSites/lang/en.json b/plugins/MultiSites/lang/en.json
index b32987bdb0..05ede79a98 100644
--- a/plugins/MultiSites/lang/en.json
+++ b/plugins/MultiSites/lang/en.json
@@ -3,6 +3,8 @@
"Evolution": "Evolution",
"LoadingWebsites": "Loading websites",
"PluginDescription": "View and compare all your websites and apps in this useful 'All Websites' dashboard. ",
- "TopLinkTooltip": "Compare Web Analytics stats for all of your Websites."
+ "TopLinkTooltip": "Compare Web Analytics stats for all of your Websites.",
+ "SingleWebsitesDashboardDocumentation": "This report gives you an informational overview for a specific website, containing the most general metrics about your visitors.",
+ "AllWebsitesDashboardDocumentation": "This report gives you an informational overview for each of your websites, containing the most general metrics about your visitors."
}
} \ No newline at end of file