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:
authorsgiehl <stefan@piwik.org>2014-10-24 00:30:43 +0400
committersgiehl <stefan@piwik.org>2014-10-24 00:30:43 +0400
commite7cdc753bda503dedebe6e0be08aa9d399694dab (patch)
tree58f6cc3302e7c3d26f295c85fc3a2071e5002375 /plugins/DevicesDetection/Reports/GetBrowserVersions.php
parente29f10786f81051216076a8f8195cb82d20dacdb (diff)
rename reports 'GetBrowserFamilies' to 'GetBrowsers' as families are more like engines and not browsers without versions
Diffstat (limited to 'plugins/DevicesDetection/Reports/GetBrowserVersions.php')
-rw-r--r--plugins/DevicesDetection/Reports/GetBrowserVersions.php10
1 files changed, 5 insertions, 5 deletions
diff --git a/plugins/DevicesDetection/Reports/GetBrowserVersions.php b/plugins/DevicesDetection/Reports/GetBrowserVersions.php
index 22105ff8ac..24c64d052f 100644
--- a/plugins/DevicesDetection/Reports/GetBrowserVersions.php
+++ b/plugins/DevicesDetection/Reports/GetBrowserVersions.php
@@ -18,23 +18,23 @@ class GetBrowserVersions extends Base
{
parent::init();
$this->dimension = new BrowserVersion();
- $this->name = Piwik::translate('DevicesDetection_BrowserVersions');
+ $this->name = Piwik::translate('UserSettings_WidgetBrowserVersion');
$this->documentation = ''; // TODO
- $this->order = 6;
- $this->widgetTitle = 'DevicesDetection_BrowserVersions';
+ $this->order = 2;
+ $this->widgetTitle = 'UserSettings_WidgetBrowserVersion';
}
public function configureView(ViewDataTable $view)
{
$view->config->show_search = false;
$view->config->show_exclude_low_population = false;
- $view->config->addTranslation('label', Piwik::translate("UserSettings_ColumnBrowserVersion"));
+ $view->config->addTranslation('label', $this->dimension->getName());
}
public function getRelatedReports()
{
return array(
- new GetBrowserFamilies()
+ new GetBrowsers()
);
}
}