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:
authormattab <matthieu.aubry@gmail.com>2014-01-28 03:46:01 +0400
committermattab <matthieu.aubry@gmail.com>2014-01-28 03:46:01 +0400
commitfe1557f78601f0440cd31faa7794ce6751286ee3 (patch)
tree3d1042e1ca7d4c51fb0007a0acb3f81e46b40f19 /plugins/ExampleSettingsPlugin
parente012b22f224c84b751e949b458627ebe30a4dca9 (diff)
Capitalizing Super User for consistency
Diffstat (limited to 'plugins/ExampleSettingsPlugin')
-rw-r--r--plugins/ExampleSettingsPlugin/Settings.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/ExampleSettingsPlugin/Settings.php b/plugins/ExampleSettingsPlugin/Settings.php
index a25c613518..1da3e541b1 100644
--- a/plugins/ExampleSettingsPlugin/Settings.php
+++ b/plugins/ExampleSettingsPlugin/Settings.php
@@ -117,7 +117,7 @@ class Settings extends \Piwik\Plugin\Settings
$this->metric->type = static::TYPE_STRING;
$this->metric->uiControlType = static::CONTROL_SINGLE_SELECT;
$this->metric->availableValues = array('nb_visits' => 'Visits', 'nb_actions' => 'Actions', 'visitors' => 'Visitors');
- $this->metric->introduction = 'Only super users can change the following settings:';
+ $this->metric->introduction = 'Only Super Users can change the following settings:';
$this->metric->description = 'Choose the metric that should be displayed in the browser tab';
$this->metric->defaultValue = 'nb_visits';