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:
authorAltamash Shaikh <altu9594@gmail.com>2022-03-24 13:51:07 +0300
committerGitHub <noreply@github.com>2022-03-24 13:51:07 +0300
commit738333d186a5587413a388ecca7d8aafff1d570f (patch)
treee6ef2fb6cd091a9258f3aa736c9abbb91aff7165 /plugins/VisitTime
parent1a3d0de2d7a7b287de0acc04df7c586fe9f6a53d (diff)
Started renaming dimensions and segments with Server time to Site Time/Time in UTC (#18956)
* Started renaming dimensions and segments with Server time to Site Time/Time in UTC * Fixed test cases * Fixed testcases * Updated testcases * fix test cases * Updated test cases * Reverted segment name update change * Removed unwanted test case files created due to segment name change * Updated test cases * Revert adding unneeded test files * Updated translation key name from Site to UTC * update submodules Co-authored-by: sgiehl <stefan@matomo.org>
Diffstat (limited to 'plugins/VisitTime')
-rw-r--r--plugins/VisitTime/Reports/GetVisitInformationPerServerTime.php4
-rw-r--r--plugins/VisitTime/lang/en.json17
2 files changed, 19 insertions, 2 deletions
diff --git a/plugins/VisitTime/Reports/GetVisitInformationPerServerTime.php b/plugins/VisitTime/Reports/GetVisitInformationPerServerTime.php
index 33bb4aa017..85cca6163c 100644
--- a/plugins/VisitTime/Reports/GetVisitInformationPerServerTime.php
+++ b/plugins/VisitTime/Reports/GetVisitInformationPerServerTime.php
@@ -22,8 +22,8 @@ class GetVisitInformationPerServerTime extends Base
{
parent::init();
$this->dimension = new VisitFirstActionTime();
- $this->name = Piwik::translate('VisitTime_ServerTime');
- $this->documentation = Piwik::translate('VisitTime_WidgetServerTimeDocumentation', array('<strong>', '</strong>'));
+ $this->name = Piwik::translate('VisitTime_SiteTime');
+ $this->documentation = Piwik::translate('VisitTime_WidgetSiteTimeDocumentation', array('<strong>', '</strong>'));
$this->constantRowsCount = true;
$this->hasGoalMetrics = true;
$this->order = 20;
diff --git a/plugins/VisitTime/lang/en.json b/plugins/VisitTime/lang/en.json
index c81aa794ee..d5dc99db8a 100644
--- a/plugins/VisitTime/lang/en.json
+++ b/plugins/VisitTime/lang/en.json
@@ -5,25 +5,41 @@
"ColumnLocalMinute": "Local time - minute (Start of visit)",
"ColumnServerTime": "Server time",
"ColumnServerHour": "Server time - hour",
+ "ColumnSiteHour": "Site time - hour",
"ColumnVisitEndServerHour": "Server time - hour (Time of last action)",
+ "ColumnVisitEndSiteHour": "Site time - hour (Time of last action)",
"ColumnVisitEndServerMinute": "Server time - minute (Time of last action)",
+ "ColumnVisitEndUTCMinute": "Time in UTC - minute (Time of last action)",
"ColumnVisitStartServerHour": "Server time - hour (Start of visit)",
+ "ColumnVisitStartSiteHour": "Site time - hour (Start of visit)",
"ColumnVisitStartServerMinute": "Server time - minute (Start of visit)",
+ "ColumnVisitStartUTCMinute": "Time in UTC - minute (Start of visit)",
"ColumnVisitEndServerDate": "Server time - date (Time of last action)",
+ "ColumnVisitEndUTCDate": "Time in UTC - date (Time of last action)",
"ColumnVisitEndServerDayOfMonth": "Server time - day of month (Time of last action)",
+ "ColumnVisitEndUTCDayOfMonth": "Time in UTC - day of month (Time of last action)",
"ColumnVisitEndServerDayOfWeek": "Server time - day of week (Time of last action)",
+ "ColumnVisitEndUTCDayOfWeek": "Time in UTC - day of week (Time of last action)",
"ColumnVisitEndServerDayOfYear": "Server time - day of year (Time of last action)",
+ "ColumnVisitEndUTCDayOfYear": "Time in UTC - day of year (Time of last action)",
"ColumnVisitEndServerQuarter": "Server time - quarter (Time of last action)",
+ "ColumnVisitEndUTCQuarter": "Time in UTC - quarter (Time of last action)",
"ColumnVisitEndServerSecond": "Server time - second (Time of last action)",
+ "ColumnVisitEndUTCSecond": "Time in UTC - second (Time of last action)",
"ColumnVisitEndServerWeekOfYear": "Server time - week of year (Time of last action)",
+ "ColumnVisitEndUTCWeekOfYear": "Time in UTC - week of year (Time of last action)",
"ColumnVisitEndServerMonth": "Server time - month (Time of last action)",
+ "ColumnVisitEndUTCMonth": "Time in UTC - month (Time of last action)",
"ColumnVisitEndServerYear": "Server time - year (Time of last action)",
+ "ColumnVisitEndUTCYear": "Time in UTC - year (Time of last action)",
"ColumnServerMinute": "Server time - minute",
+ "ColumnUTCMinute": "Time in UTC - minute",
"DayOfWeek": "Day of the week",
"LocalTime": "Visits per local time",
"NHour": "%sh",
"PluginDescription": "Reports the local time and the server time when your visitors view your website or app.",
"ServerTime": "Visits per server time",
+ "SiteTime": "Visits per hour in the site's timezone",
"SubmenuTimes": "Times",
"VisitsByDayOfWeek": "Visits by Day of Week",
"WidgetByDayOfWeekDocumentation": "This graph shows the number of visits your website received on each day of the week.",
@@ -31,6 +47,7 @@
"WidgetLocalTimeDocumentation": "This graph shows what time it was in the %1$s visitors' time zones %2$s during their visits.",
"WidgetServerTime": "Visits by Server Time",
"WidgetServerTimeDocumentation": "This graph shows what time it was in the %1$s server's time zone %2$s during the visits.",
+ "WidgetSiteTimeDocumentation": "This graph shows what time it was in the %1$s site's time zone %2$s during the visits.",
"TimesSubcategoryHelp": "The Times section shows you when people are visiting your site. You can see the most popular local times your users visit at, so you can understand where your site fits into their life. Additionally, it shows the most popular server times, which can reveal demands on your technology stack."
}
} \ No newline at end of file