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:
authorThomas Steur <thomas.steur@googlemail.com>2014-08-28 13:55:14 +0400
committerThomas Steur <thomas.steur@googlemail.com>2014-08-28 13:55:14 +0400
commitf9219dff1bcb5b21bccc56c5b09b5de68cdc3a2b (patch)
tree583fd99247b75643d8c51e8f8dc25a21100706f8 /plugins/Contents/Contents.php
parent10ecff50c3e25cab6501dbc73a1c64131e21db7e (diff)
refs #4996 I learned the secondary dimension is not needed in my case. Makes it simpler and now the correct label is displayed in a subtable. I should not copy/paste code that I do not understand :)
Diffstat (limited to 'plugins/Contents/Contents.php')
-rw-r--r--plugins/Contents/Contents.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/Contents/Contents.php b/plugins/Contents/Contents.php
index 5a81979ed3..0fd5993742 100644
--- a/plugins/Contents/Contents.php
+++ b/plugins/Contents/Contents.php
@@ -22,8 +22,8 @@ class Contents extends \Piwik\Plugin
public function addMetricTranslations(&$translations)
{
- $translations['nb_impressions'] = 'Contents_Impressions';
- $translations['nb_interactions'] = 'Contents_Interactions';
+ $translations['nb_impressions'] = 'Contents_Impressions';
+ $translations['nb_interactions'] = 'Contents_Interactions';
$translations['interaction_rate'] = 'Contents_InteractionRate';
}