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:
authorNina Pypchenko <22447785+nina-py@users.noreply.github.com>2020-09-26 07:32:28 +0300
committerGitHub <noreply@github.com>2020-09-26 07:32:28 +0300
commita49ed63c5ae9db59d34fa21616d955a064599c6a (patch)
tree66ecadd7006e03226d31b40ad551720851dfd5c8
parent9967583d3368bb93a8f02e8d47a22db5c6353427 (diff)
Replaced 'Piwik' with 'Matomo' in console output (#16475)
-rw-r--r--plugins/CustomDimensions/Commands/AddCustomDimension.php2
-rw-r--r--plugins/CustomDimensions/Commands/RemoveCustomDimension.php2
-rw-r--r--plugins/CustomDimensions/tests/Commands/AddCustomDimensionTest.php4
-rw-r--r--plugins/CustomDimensions/tests/Commands/RemoveCustomDimensionTest.php4
4 files changed, 6 insertions, 6 deletions
diff --git a/plugins/CustomDimensions/Commands/AddCustomDimension.php b/plugins/CustomDimensions/Commands/AddCustomDimension.php
index b30363e5a1..44aee50ac2 100644
--- a/plugins/CustomDimensions/Commands/AddCustomDimension.php
+++ b/plugins/CustomDimensions/Commands/AddCustomDimension.php
@@ -66,7 +66,7 @@ class AddCustomDimension extends ConsoleCommand
$numDimensionsAvailable = $tracking->getNumInstalledIndexes();
$this->writeSuccessMessage($output, array(
- sprintf('Your Piwik is now configured for up to %d Custom Dimensions in scope %s.', $numDimensionsAvailable, $scope)
+ sprintf('Your Matomo is now configured for up to %d Custom Dimensions in scope %s.', $numDimensionsAvailable, $scope)
));
}
diff --git a/plugins/CustomDimensions/Commands/RemoveCustomDimension.php b/plugins/CustomDimensions/Commands/RemoveCustomDimension.php
index 30fdfe7664..e571fb8dc7 100644
--- a/plugins/CustomDimensions/Commands/RemoveCustomDimension.php
+++ b/plugins/CustomDimensions/Commands/RemoveCustomDimension.php
@@ -90,7 +90,7 @@ class RemoveCustomDimension extends ConsoleCommand
$numDimensionsAvailable = $tracking->getNumInstalledIndexes();
$this->writeSuccessMessage($output, array(
- sprintf('Your Piwik is now configured for up to %d Custom Dimensions in scope %s.', $numDimensionsAvailable, $scope)
+ sprintf('Your Matomo is now configured for up to %d Custom Dimensions in scope %s.', $numDimensionsAvailable, $scope)
));
}
diff --git a/plugins/CustomDimensions/tests/Commands/AddCustomDimensionTest.php b/plugins/CustomDimensions/tests/Commands/AddCustomDimensionTest.php
index b96286f0da..20efd88059 100644
--- a/plugins/CustomDimensions/tests/Commands/AddCustomDimensionTest.php
+++ b/plugins/CustomDimensions/tests/Commands/AddCustomDimensionTest.php
@@ -78,7 +78,7 @@ class AddCustomDimensionTest extends IntegrationTestCase
self::assertStringContainsString('Adding 3 Custom Dimension(s) in scope action.', $result);
self::assertStringContainsString('Are you sure you want to perform this action?', $result);
self::assertStringContainsString('Starting to add Custom Dimension(s)', $result);
- self::assertStringContainsString('Your Piwik is now configured for up to 8 Custom Dimensions in scope action.', $result);
+ self::assertStringContainsString('Your Matomo is now configured for up to 8 Custom Dimensions in scope action.', $result);
$logVisit = new LogTable(CustomDimensions::SCOPE_VISIT);
$this->assertSame(range(1,5), $logVisit->getInstalledIndexes());
@@ -106,7 +106,7 @@ class AddCustomDimensionTest extends IntegrationTestCase
self::assertStringContainsString('Adding 2 Custom Dimension(s) in scope visit.', $result);
self::assertStringContainsString('Are you sure you want to perform this action?', $result);
self::assertStringContainsString('Starting to add Custom Dimension(s)', $result);
- self::assertStringContainsString('Your Piwik is now configured for up to 7 Custom Dimensions in scope visit.', $result);
+ self::assertStringContainsString('Your Matomo is now configured for up to 7 Custom Dimensions in scope visit.', $result);
$logVisit = new LogTable(CustomDimensions::SCOPE_VISIT);
$this->assertSame(range(1,7), $logVisit->getInstalledIndexes());
diff --git a/plugins/CustomDimensions/tests/Commands/RemoveCustomDimensionTest.php b/plugins/CustomDimensions/tests/Commands/RemoveCustomDimensionTest.php
index f277fc0034..0295381412 100644
--- a/plugins/CustomDimensions/tests/Commands/RemoveCustomDimensionTest.php
+++ b/plugins/CustomDimensions/tests/Commands/RemoveCustomDimensionTest.php
@@ -86,7 +86,7 @@ class RemoveCustomDimensionTest extends IntegrationTestCase
self::assertStringContainsString('Remove Custom Dimension at index 3 in scope action.', $result);
self::assertStringContainsString('Are you sure you want to perform this action?', $result);
self::assertStringContainsString('Starting to remove this Custom Dimension', $result);
- self::assertStringContainsString('Your Piwik is now configured for up to 4 Custom Dimensions in scope action.', $result);
+ self::assertStringContainsString('Your Matomo is now configured for up to 4 Custom Dimensions in scope action.', $result);
$logVisit = new LogTable(CustomDimensions::SCOPE_VISIT);
$this->assertSame(range(1,5), $logVisit->getInstalledIndexes());
@@ -111,7 +111,7 @@ class RemoveCustomDimensionTest extends IntegrationTestCase
self::assertStringContainsString('Remove Custom Dimension at index 2 in scope visit', $result);
self::assertStringContainsString('Are you sure you want to perform this action?', $result);
self::assertStringContainsString('Starting to remove this Custom Dimension', $result);
- self::assertStringContainsString('Your Piwik is now configured for up to 4 Custom Dimensions in scope visit.', $result);
+ self::assertStringContainsString('Your Matomo is now configured for up to 4 Custom Dimensions in scope visit.', $result);
$logVisit = new LogTable(CustomDimensions::SCOPE_VISIT);
$this->assertSame(array(1,3,4,5), $logVisit->getInstalledIndexes());