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:
authorChristian Schmidt <github@chsc.dk>2018-07-27 04:46:58 +0300
committerdiosmosis <diosmosis@users.noreply.github.com>2018-07-27 04:46:58 +0300
commit09c4fcc56a0e86728c3e37c94131312bc4cd703c (patch)
tree0dd8ba18e95018e4d5a6252e65691bd81ac722cc /tests/PHPUnit/Unit
parent70d1b446778909b3beda16ff4dc50fdd968d63ea (diff)
Translate currency names (#13068)
* Translate currency names * Update tests * Fix more tests * Use plural form in config key name * Update screenshots
Diffstat (limited to 'tests/PHPUnit/Unit')
-rw-r--r--tests/PHPUnit/Unit/Metrics/FormatterTest.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/PHPUnit/Unit/Metrics/FormatterTest.php b/tests/PHPUnit/Unit/Metrics/FormatterTest.php
index d9ccc18c6d..97cb7757de 100644
--- a/tests/PHPUnit/Unit/Metrics/FormatterTest.php
+++ b/tests/PHPUnit/Unit/Metrics/FormatterTest.php
@@ -161,9 +161,9 @@ class FormatterTest extends \PHPUnit_Framework_TestCase
{
return array(
array(1, 1, '1 €'),
- array(1.045, 2, '1.04 kr'),
- array(1000.4445, 3, '1000.44 zł'),
- array(1234.56, 4, '$ 1234.56'),
+ array(1.045, 2, 'DKK 1.04'),
+ array(1000.4445, 3, 'PLN 1000.44'),
+ array(1234.56, 4, 'NZ$ 1234.56'),
array(234.76, 5, '¥ 234.76')
);
}