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>2013-09-15 21:50:13 +0400
committersgiehl <stefan@piwik.org>2013-09-15 21:50:13 +0400
commit542251b37010083e8ecc8af238d101c9e1a06366 (patch)
treef8c4a3433009fb41d9c473a4a1de97a3624c1897 /plugins/MultiSites
parentf9f7693b9b41e9dc53e0e53c0b88c0e43d0c91cf (diff)
cleaned up some more duplicate keys/translations
Diffstat (limited to 'plugins/MultiSites')
-rwxr-xr-xplugins/MultiSites/API.php2
-rw-r--r--plugins/MultiSites/templates/getSitesInfo.twig4
2 files changed, 3 insertions, 3 deletions
diff --git a/plugins/MultiSites/API.php b/plugins/MultiSites/API.php
index d3554ff6f6..439ec87a57 100755
--- a/plugins/MultiSites/API.php
+++ b/plugins/MultiSites/API.php
@@ -446,7 +446,7 @@ class API
if (Common::isGoalPluginEnabled()) {
// goal revenue metric
$metrics[self::GOAL_REVENUE_METRIC] = array(
- self::METRIC_TRANSLATION_KEY => 'Goals_ColumnRevenue',
+ self::METRIC_TRANSLATION_KEY => 'General_ColumnRevenue',
self::METRIC_EVOLUTION_COL_NAME_KEY => self::GOAL_REVENUE_METRIC . '_evolution',
self::METRIC_RECORD_NAME_KEY => Archiver::getRecordName(self::GOAL_REVENUE_METRIC),
self::METRIC_IS_ECOMMERCE_KEY => false,
diff --git a/plugins/MultiSites/templates/getSitesInfo.twig b/plugins/MultiSites/templates/getSitesInfo.twig
index 23c053a317..20d08d9200 100644
--- a/plugins/MultiSites/templates/getSitesInfo.twig
+++ b/plugins/MultiSites/templates/getSitesInfo.twig
@@ -67,7 +67,7 @@
</th>
{% if displayRevenueColumn %}
<th id="revenue" class="multisites-column" style="width: 110px;" onClick="params = setOrderBy(this,allSites, params, 'revenue');">
- <span>{{ 'Goals_ColumnRevenue'|translate }}</span>
+ <span>{{ 'General_ColumnRevenue'|translate }}</span>
<span class="arrow {% if evolutionBy=='revenue' %}multisites_{{ order }}{% endif %}"></span>
</th>
{% endif %}
@@ -80,7 +80,7 @@
<option value="visits" {% if evolutionBy == 'visits' %} selected {% endif %}>{{ 'General_ColumnNbVisits'|translate }}</option>
<option value="pageviews" {% if evolutionBy == 'pageviews' %} selected {% endif %}}>{{ 'General_ColumnPageviews'|translate }}</option>
{% if displayRevenueColumn %}
- <option value="revenue" {% if evolutionBy == 'revenue' %} selected {% endif %}>{{ 'Goals_ColumnRevenue'|translate }}</option>
+ <option value="revenue" {% if evolutionBy == 'revenue' %} selected {% endif %}>{{ 'General_ColumnRevenue'|translate }}</option>
{% endif %}
</select>
</th>