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>2015-10-03 11:09:12 +0300
committersgiehl <stefan@piwik.org>2015-10-11 15:45:59 +0300
commitdb258371a505f969cb2a997c4d7871d8a3b6ffe5 (patch)
tree8cb0a3e5500562c6a613f6dcf13d7b2cfb786287 /plugins/Intl
parent430234c40ad3b3c26c8869abec289bb44a2a97d9 (diff)
adds currency formats to intl data
Diffstat (limited to 'plugins/Intl')
-rw-r--r--plugins/Intl/Commands/GenerateIntl.php1
-rw-r--r--plugins/Intl/lang/am.json1
-rw-r--r--plugins/Intl/lang/ar.json1
-rw-r--r--plugins/Intl/lang/be.json1
-rw-r--r--plugins/Intl/lang/bg.json1
-rw-r--r--plugins/Intl/lang/bn.json1
-rw-r--r--plugins/Intl/lang/bs.json1
-rw-r--r--plugins/Intl/lang/ca.json1
-rw-r--r--plugins/Intl/lang/cs.json1
-rw-r--r--plugins/Intl/lang/cy.json1
-rw-r--r--plugins/Intl/lang/da.json1
-rw-r--r--plugins/Intl/lang/de.json1
-rw-r--r--plugins/Intl/lang/el.json1
-rw-r--r--plugins/Intl/lang/en.json1
-rw-r--r--plugins/Intl/lang/es.json1
-rw-r--r--plugins/Intl/lang/et.json1
-rw-r--r--plugins/Intl/lang/eu.json1
-rw-r--r--plugins/Intl/lang/fa.json1
-rw-r--r--plugins/Intl/lang/fi.json1
-rw-r--r--plugins/Intl/lang/fr.json1
-rw-r--r--plugins/Intl/lang/gl.json1
-rw-r--r--plugins/Intl/lang/he.json1
-rw-r--r--plugins/Intl/lang/hi.json1
-rw-r--r--plugins/Intl/lang/hr.json1
-rw-r--r--plugins/Intl/lang/hu.json1
-rw-r--r--plugins/Intl/lang/id.json1
-rw-r--r--plugins/Intl/lang/is.json1
-rw-r--r--plugins/Intl/lang/it.json1
-rw-r--r--plugins/Intl/lang/ja.json1
-rw-r--r--plugins/Intl/lang/ka.json1
-rw-r--r--plugins/Intl/lang/ko.json1
-rw-r--r--plugins/Intl/lang/lt.json1
-rw-r--r--plugins/Intl/lang/lv.json1
-rw-r--r--plugins/Intl/lang/nb.json1
-rw-r--r--plugins/Intl/lang/nl.json1
-rw-r--r--plugins/Intl/lang/nn.json1
-rw-r--r--plugins/Intl/lang/pl.json1
-rw-r--r--plugins/Intl/lang/pt-br.json1
-rw-r--r--plugins/Intl/lang/pt.json1
-rw-r--r--plugins/Intl/lang/ro.json1
-rw-r--r--plugins/Intl/lang/ru.json1
-rw-r--r--plugins/Intl/lang/sk.json1
-rw-r--r--plugins/Intl/lang/sl.json1
-rw-r--r--plugins/Intl/lang/sq.json1
-rw-r--r--plugins/Intl/lang/sr.json1
-rw-r--r--plugins/Intl/lang/sv.json1
-rw-r--r--plugins/Intl/lang/ta.json1
-rw-r--r--plugins/Intl/lang/te.json1
-rw-r--r--plugins/Intl/lang/th.json1
-rw-r--r--plugins/Intl/lang/tl.json1
-rw-r--r--plugins/Intl/lang/tr.json1
-rw-r--r--plugins/Intl/lang/uk.json1
-rw-r--r--plugins/Intl/lang/vi.json1
-rw-r--r--plugins/Intl/lang/zh-cn.json1
-rw-r--r--plugins/Intl/lang/zh-tw.json1
55 files changed, 55 insertions, 0 deletions
diff --git a/plugins/Intl/Commands/GenerateIntl.php b/plugins/Intl/Commands/GenerateIntl.php
index 97a00792cc..45637452a8 100644
--- a/plugins/Intl/Commands/GenerateIntl.php
+++ b/plugins/Intl/Commands/GenerateIntl.php
@@ -342,6 +342,7 @@ class GenerateIntl extends ConsoleCommand
$translations['Intl']['NumberSymbolPlus'] = $unitsData['symbols-numberSystem-' . $numberingSystem]['plusSign'];
$translations['Intl']['NumberSymbolMinus'] = $unitsData['symbols-numberSystem-' . $numberingSystem]['minusSign'];
$translations['Intl']['NumberFormatNumber'] = $unitsData['decimalFormats-numberSystem-' . $numberingSystem]['standard'];
+ $translations['Intl']['NumberFormatCurrency'] = $unitsData['currencyFormats-numberSystem-' . $numberingSystem]['standard'];
$translations['Intl']['NumberFormatPercent'] = $unitsData['percentFormats-numberSystem-' . $numberingSystem]['standard'];
$output->writeln('Saved number formatting data for ' . $langCode);
diff --git a/plugins/Intl/lang/am.json b/plugins/Intl/lang/am.json
index 04f60fcd0a..4999259850 100644
--- a/plugins/Intl/lang/am.json
+++ b/plugins/Intl/lang/am.json
@@ -539,6 +539,7 @@
"NMinutesShort": "%s ደቂቃ",
"NSeconds": "%s ሰከንዶች",
"NSecondsShort": "%s ሰ",
+ "NumberFormatCurrency": "¤#,##0.00",
"NumberFormatNumber": "#,##0.###",
"NumberFormatPercent": "#,##0%",
"NumberSymbolDecimal": ".",
diff --git a/plugins/Intl/lang/ar.json b/plugins/Intl/lang/ar.json
index e0fe35ab53..481c4e62ce 100644
--- a/plugins/Intl/lang/ar.json
+++ b/plugins/Intl/lang/ar.json
@@ -555,6 +555,7 @@
"NMinutesShort": "%s د",
"NSeconds": "%s ثانية",
"NSecondsShort": "%s ث",
+ "NumberFormatCurrency": "¤ #,##0.00",
"NumberFormatNumber": "#,##0.###",
"NumberFormatPercent": "#,##0%",
"NumberSymbolDecimal": "٫",
diff --git a/plugins/Intl/lang/be.json b/plugins/Intl/lang/be.json
index 9b23011830..88bb7c14cb 100644
--- a/plugins/Intl/lang/be.json
+++ b/plugins/Intl/lang/be.json
@@ -516,6 +516,7 @@
"NMinutesShort": "%s хв.",
"NSeconds": "%s секунды",
"NSecondsShort": "%sс",
+ "NumberFormatCurrency": "#,##0.00 ¤",
"NumberFormatNumber": "#,##0.###",
"NumberFormatPercent": "#,##0 %",
"NumberSymbolDecimal": ",",
diff --git a/plugins/Intl/lang/bg.json b/plugins/Intl/lang/bg.json
index ea11785a82..02880b589d 100644
--- a/plugins/Intl/lang/bg.json
+++ b/plugins/Intl/lang/bg.json
@@ -555,6 +555,7 @@
"NMinutesShort": "%s min",
"NSeconds": "%s секунди",
"NSecondsShort": "%s s",
+ "NumberFormatCurrency": "#,##0.00 ¤",
"NumberFormatNumber": "#,##0.###",
"NumberFormatPercent": "#,##0%",
"NumberSymbolDecimal": ",",
diff --git a/plugins/Intl/lang/bn.json b/plugins/Intl/lang/bn.json
index 316a8c1a65..2bac13f1be 100644
--- a/plugins/Intl/lang/bn.json
+++ b/plugins/Intl/lang/bn.json
@@ -555,6 +555,7 @@
"NMinutesShort": "%s মিনিট",
"NSeconds": "%s সেকেন্ড",
"NSecondsShort": "%s সেকেন্ড",
+ "NumberFormatCurrency": "#,##,##0.00¤",
"NumberFormatNumber": "#,##,##0.###",
"NumberFormatPercent": "#,##,##0%",
"NumberSymbolDecimal": ".",
diff --git a/plugins/Intl/lang/bs.json b/plugins/Intl/lang/bs.json
index a924c94b9e..89e7950363 100644
--- a/plugins/Intl/lang/bs.json
+++ b/plugins/Intl/lang/bs.json
@@ -555,6 +555,7 @@
"NMinutesShort": "%s min",
"NSeconds": "%s sekundi",
"NSecondsShort": "%s sek",
+ "NumberFormatCurrency": "#,##0.00 ¤",
"NumberFormatNumber": "#,##0.###",
"NumberFormatPercent": "#,##0%",
"NumberSymbolDecimal": ",",
diff --git a/plugins/Intl/lang/ca.json b/plugins/Intl/lang/ca.json
index 76d45c21ea..d2b8a9a26e 100644
--- a/plugins/Intl/lang/ca.json
+++ b/plugins/Intl/lang/ca.json
@@ -555,6 +555,7 @@
"NMinutesShort": "%s min",
"NSeconds": "%s segons",
"NSecondsShort": "%s s",
+ "NumberFormatCurrency": "#,##0.00 ¤",
"NumberFormatNumber": "#,##0.###",
"NumberFormatPercent": "#,##0%",
"NumberSymbolDecimal": ",",
diff --git a/plugins/Intl/lang/cs.json b/plugins/Intl/lang/cs.json
index a033223a23..813e0506ee 100644
--- a/plugins/Intl/lang/cs.json
+++ b/plugins/Intl/lang/cs.json
@@ -555,6 +555,7 @@
"NMinutesShort": "%s min",
"NSeconds": "%s sekund",
"NSecondsShort": "%s s",
+ "NumberFormatCurrency": "#,##0.00 ¤",
"NumberFormatNumber": "#,##0.###",
"NumberFormatPercent": "#,##0 %",
"NumberSymbolDecimal": ",",
diff --git a/plugins/Intl/lang/cy.json b/plugins/Intl/lang/cy.json
index decf4b5bf0..69a71a6022 100644
--- a/plugins/Intl/lang/cy.json
+++ b/plugins/Intl/lang/cy.json
@@ -549,6 +549,7 @@
"NMinutesShort": "%s mun",
"NSeconds": "%s eiliad",
"NSecondsShort": "%s eil",
+ "NumberFormatCurrency": "¤#,##0.00",
"NumberFormatNumber": "#,##0.###",
"NumberFormatPercent": "#,##0%",
"NumberSymbolDecimal": ".",
diff --git a/plugins/Intl/lang/da.json b/plugins/Intl/lang/da.json
index cf46661588..3710ea0c0b 100644
--- a/plugins/Intl/lang/da.json
+++ b/plugins/Intl/lang/da.json
@@ -555,6 +555,7 @@
"NMinutesShort": "%s min.",
"NSeconds": "%s sekunder",
"NSecondsShort": "%s s",
+ "NumberFormatCurrency": "#,##0.00 ¤",
"NumberFormatNumber": "#,##0.###",
"NumberFormatPercent": "#,##0 %",
"NumberSymbolDecimal": ",",
diff --git a/plugins/Intl/lang/de.json b/plugins/Intl/lang/de.json
index b2ebb8f027..813e67dde7 100644
--- a/plugins/Intl/lang/de.json
+++ b/plugins/Intl/lang/de.json
@@ -555,6 +555,7 @@
"NMinutesShort": "%s Min.",
"NSeconds": "%s Sekunden",
"NSecondsShort": "%s s",
+ "NumberFormatCurrency": "#,##0.00 ¤",
"NumberFormatNumber": "#,##0.###",
"NumberFormatPercent": "#,##0 %",
"NumberSymbolDecimal": ",",
diff --git a/plugins/Intl/lang/el.json b/plugins/Intl/lang/el.json
index 7ec469b2ec..2af13ce2f3 100644
--- a/plugins/Intl/lang/el.json
+++ b/plugins/Intl/lang/el.json
@@ -555,6 +555,7 @@
"NMinutesShort": "%s λεπ.",
"NSeconds": "%s δευτερόλεπτα",
"NSecondsShort": "%s δ",
+ "NumberFormatCurrency": "#,##0.00 ¤",
"NumberFormatNumber": "#,##0.###",
"NumberFormatPercent": "#,##0%",
"NumberSymbolDecimal": ",",
diff --git a/plugins/Intl/lang/en.json b/plugins/Intl/lang/en.json
index 5703605403..a52b7b2cf6 100644
--- a/plugins/Intl/lang/en.json
+++ b/plugins/Intl/lang/en.json
@@ -555,6 +555,7 @@
"NMinutesShort": "%s min",
"NSeconds": "%s seconds",
"NSecondsShort": "%ss",
+ "NumberFormatCurrency": "¤#,##0.00",
"NumberFormatNumber": "#,##0.###",
"NumberFormatPercent": "#,##0%",
"NumberSymbolDecimal": ".",
diff --git a/plugins/Intl/lang/es.json b/plugins/Intl/lang/es.json
index dd795468a0..10590cb926 100644
--- a/plugins/Intl/lang/es.json
+++ b/plugins/Intl/lang/es.json
@@ -555,6 +555,7 @@
"NMinutesShort": "%s min",
"NSeconds": "%s segundos",
"NSecondsShort": "%ss",
+ "NumberFormatCurrency": "#,##0.00 ¤",
"NumberFormatNumber": "#,##0.###",
"NumberFormatPercent": "#,##0 %",
"NumberSymbolDecimal": ",",
diff --git a/plugins/Intl/lang/et.json b/plugins/Intl/lang/et.json
index 2455275a6c..db9277a739 100644
--- a/plugins/Intl/lang/et.json
+++ b/plugins/Intl/lang/et.json
@@ -555,6 +555,7 @@
"NMinutesShort": "%s min",
"NSeconds": "%s sekundit",
"NSecondsShort": "%s s",
+ "NumberFormatCurrency": "#,##0.00 ¤",
"NumberFormatNumber": "#,##0.###",
"NumberFormatPercent": "#,##0%",
"NumberSymbolDecimal": ",",
diff --git a/plugins/Intl/lang/eu.json b/plugins/Intl/lang/eu.json
index c544e2ad4e..a102605b6d 100644
--- a/plugins/Intl/lang/eu.json
+++ b/plugins/Intl/lang/eu.json
@@ -525,6 +525,7 @@
"NMinutesShort": "%s min",
"NSeconds": "%s segundo",
"NSecondsShort": "%s s",
+ "NumberFormatCurrency": "#,##0.00 ¤",
"NumberFormatNumber": "#,##0.###",
"NumberFormatPercent": "% #,##0",
"NumberSymbolDecimal": ",",
diff --git a/plugins/Intl/lang/fa.json b/plugins/Intl/lang/fa.json
index 11132366e8..26110dfa0d 100644
--- a/plugins/Intl/lang/fa.json
+++ b/plugins/Intl/lang/fa.json
@@ -555,6 +555,7 @@
"NMinutesShort": "%s دقیقه",
"NSeconds": "%s ثانیه",
"NSecondsShort": "%s ث",
+ "NumberFormatCurrency": "‎¤#,##0.00",
"NumberFormatNumber": "#,##0.###",
"NumberFormatPercent": "#,##0%",
"NumberSymbolDecimal": "٫",
diff --git a/plugins/Intl/lang/fi.json b/plugins/Intl/lang/fi.json
index 92dde341a1..eb8f503320 100644
--- a/plugins/Intl/lang/fi.json
+++ b/plugins/Intl/lang/fi.json
@@ -555,6 +555,7 @@
"NMinutesShort": "%s min",
"NSeconds": "%s sekuntia",
"NSecondsShort": "%ss",
+ "NumberFormatCurrency": "#,##0.00 ¤",
"NumberFormatNumber": "#,##0.###",
"NumberFormatPercent": "#,##0 %",
"NumberSymbolDecimal": ",",
diff --git a/plugins/Intl/lang/fr.json b/plugins/Intl/lang/fr.json
index fd86bb49e4..57438a91f0 100644
--- a/plugins/Intl/lang/fr.json
+++ b/plugins/Intl/lang/fr.json
@@ -555,6 +555,7 @@
"NMinutesShort": "%s min",
"NSeconds": "%s secondes",
"NSecondsShort": "%ss",
+ "NumberFormatCurrency": "#,##0.00 ¤",
"NumberFormatNumber": "#,##0.###",
"NumberFormatPercent": "#,##0 %",
"NumberSymbolDecimal": ",",
diff --git a/plugins/Intl/lang/gl.json b/plugins/Intl/lang/gl.json
index d2559979c1..15c88b8530 100644
--- a/plugins/Intl/lang/gl.json
+++ b/plugins/Intl/lang/gl.json
@@ -523,6 +523,7 @@
"NMinutesShort": "%s min",
"NSeconds": "%s segundos",
"NSecondsShort": "%s s",
+ "NumberFormatCurrency": "¤#,##0.00",
"NumberFormatNumber": "#,##0.###",
"NumberFormatPercent": "#,##0%",
"NumberSymbolDecimal": ",",
diff --git a/plugins/Intl/lang/he.json b/plugins/Intl/lang/he.json
index cbd03f933b..50c63fc1d4 100644
--- a/plugins/Intl/lang/he.json
+++ b/plugins/Intl/lang/he.json
@@ -555,6 +555,7 @@
"NMinutesShort": "%s דק׳",
"NSeconds": "%s שניות",
"NSecondsShort": "%s שנ׳",
+ "NumberFormatCurrency": "#,##0.00 ¤",
"NumberFormatNumber": "#,##0.###",
"NumberFormatPercent": "#,##0%",
"NumberSymbolDecimal": ".",
diff --git a/plugins/Intl/lang/hi.json b/plugins/Intl/lang/hi.json
index f8b107a293..73c68868e8 100644
--- a/plugins/Intl/lang/hi.json
+++ b/plugins/Intl/lang/hi.json
@@ -555,6 +555,7 @@
"NMinutesShort": "%s मि.",
"NSeconds": "%s सेकंड",
"NSecondsShort": "%sसे.",
+ "NumberFormatCurrency": "¤#,##,##0.00",
"NumberFormatNumber": "#,##,##0.###",
"NumberFormatPercent": "#,##,##0%",
"NumberSymbolDecimal": ".",
diff --git a/plugins/Intl/lang/hr.json b/plugins/Intl/lang/hr.json
index 631a993b19..48bcdd8a09 100644
--- a/plugins/Intl/lang/hr.json
+++ b/plugins/Intl/lang/hr.json
@@ -555,6 +555,7 @@
"NMinutesShort": "%s min",
"NSeconds": "%s sekundi",
"NSecondsShort": "%s s",
+ "NumberFormatCurrency": "#,##0.00 ¤",
"NumberFormatNumber": "#,##0.###",
"NumberFormatPercent": "#,##0%",
"NumberSymbolDecimal": ",",
diff --git a/plugins/Intl/lang/hu.json b/plugins/Intl/lang/hu.json
index 289f60dfcb..4df06ba706 100644
--- a/plugins/Intl/lang/hu.json
+++ b/plugins/Intl/lang/hu.json
@@ -555,6 +555,7 @@
"NMinutesShort": "%s min",
"NSeconds": "%s másodperc",
"NSecondsShort": "%s s",
+ "NumberFormatCurrency": "#,##0.00 ¤",
"NumberFormatNumber": "#,##0.###",
"NumberFormatPercent": "#,##0%",
"NumberSymbolDecimal": ",",
diff --git a/plugins/Intl/lang/id.json b/plugins/Intl/lang/id.json
index 702377c9c7..ef6ae7fafa 100644
--- a/plugins/Intl/lang/id.json
+++ b/plugins/Intl/lang/id.json
@@ -555,6 +555,7 @@
"NMinutesShort": "%s mnt",
"NSeconds": "%s detik",
"NSecondsShort": "%s dtk",
+ "NumberFormatCurrency": "¤#,##0.00",
"NumberFormatNumber": "#,##0.###",
"NumberFormatPercent": "#,##0%",
"NumberSymbolDecimal": ",",
diff --git a/plugins/Intl/lang/is.json b/plugins/Intl/lang/is.json
index 179a3a5ad7..1160564dd8 100644
--- a/plugins/Intl/lang/is.json
+++ b/plugins/Intl/lang/is.json
@@ -553,6 +553,7 @@
"NMinutesShort": "%s mín.",
"NSeconds": "%s sekúndur",
"NSecondsShort": "%s sek.",
+ "NumberFormatCurrency": "#,##0.00 ¤",
"NumberFormatNumber": "#,##0.###",
"NumberFormatPercent": "#,##0%",
"NumberSymbolDecimal": ",",
diff --git a/plugins/Intl/lang/it.json b/plugins/Intl/lang/it.json
index d4106a67e4..5f88825369 100644
--- a/plugins/Intl/lang/it.json
+++ b/plugins/Intl/lang/it.json
@@ -555,6 +555,7 @@
"NMinutesShort": "%s min",
"NSeconds": "%s secondi",
"NSecondsShort": "%ss",
+ "NumberFormatCurrency": "#,##0.00 ¤",
"NumberFormatNumber": "#,##0.###",
"NumberFormatPercent": "#,##0%",
"NumberSymbolDecimal": ",",
diff --git a/plugins/Intl/lang/ja.json b/plugins/Intl/lang/ja.json
index 1237b0837b..b1434f36d6 100644
--- a/plugins/Intl/lang/ja.json
+++ b/plugins/Intl/lang/ja.json
@@ -555,6 +555,7 @@
"NMinutesShort": "%s 分",
"NSeconds": "%s 秒",
"NSecondsShort": "%s秒",
+ "NumberFormatCurrency": "¤#,##0.00",
"NumberFormatNumber": "#,##0.###",
"NumberFormatPercent": "#,##0%",
"NumberSymbolDecimal": ".",
diff --git a/plugins/Intl/lang/ka.json b/plugins/Intl/lang/ka.json
index 2bcae0c62c..819f7ba2a0 100644
--- a/plugins/Intl/lang/ka.json
+++ b/plugins/Intl/lang/ka.json
@@ -536,6 +536,7 @@
"NMinutesShort": "%s წთ",
"NSeconds": "%s წამი",
"NSecondsShort": "%sწმ",
+ "NumberFormatCurrency": "#,##0.00 ¤",
"NumberFormatNumber": "#,##0.###",
"NumberFormatPercent": "#,##0 %",
"NumberSymbolDecimal": ",",
diff --git a/plugins/Intl/lang/ko.json b/plugins/Intl/lang/ko.json
index e42483c59f..70b13cb503 100644
--- a/plugins/Intl/lang/ko.json
+++ b/plugins/Intl/lang/ko.json
@@ -555,6 +555,7 @@
"NMinutesShort": "%s분",
"NSeconds": "%s초",
"NSecondsShort": "%s초",
+ "NumberFormatCurrency": "¤#,##0.00",
"NumberFormatNumber": "#,##0.###",
"NumberFormatPercent": "#,##0%",
"NumberSymbolDecimal": ".",
diff --git a/plugins/Intl/lang/lt.json b/plugins/Intl/lang/lt.json
index d49c6ad54e..7dc87c76a1 100644
--- a/plugins/Intl/lang/lt.json
+++ b/plugins/Intl/lang/lt.json
@@ -555,6 +555,7 @@
"NMinutesShort": "%s min.",
"NSeconds": "%s sekundžių",
"NSecondsShort": "%s s",
+ "NumberFormatCurrency": "#,##0.00 ¤",
"NumberFormatNumber": "#,##0.###",
"NumberFormatPercent": "#,##0 %",
"NumberSymbolDecimal": ",",
diff --git a/plugins/Intl/lang/lv.json b/plugins/Intl/lang/lv.json
index e503026355..2a91a4b6fb 100644
--- a/plugins/Intl/lang/lv.json
+++ b/plugins/Intl/lang/lv.json
@@ -555,6 +555,7 @@
"NMinutesShort": "%s min.",
"NSeconds": "%s sekundes",
"NSecondsShort": "%ss",
+ "NumberFormatCurrency": "#0.00 ¤",
"NumberFormatNumber": "#,##0.###",
"NumberFormatPercent": "#,##0%",
"NumberSymbolDecimal": ",",
diff --git a/plugins/Intl/lang/nb.json b/plugins/Intl/lang/nb.json
index 47699e558a..84d427bd0b 100644
--- a/plugins/Intl/lang/nb.json
+++ b/plugins/Intl/lang/nb.json
@@ -555,6 +555,7 @@
"NMinutesShort": "%s min",
"NSeconds": "%s sekunder",
"NSecondsShort": "%ss",
+ "NumberFormatCurrency": "¤ #,##0.00",
"NumberFormatNumber": "#,##0.###",
"NumberFormatPercent": "#,##0 %",
"NumberSymbolDecimal": ",",
diff --git a/plugins/Intl/lang/nl.json b/plugins/Intl/lang/nl.json
index 8ea4f8f24d..8c9cfa5953 100644
--- a/plugins/Intl/lang/nl.json
+++ b/plugins/Intl/lang/nl.json
@@ -555,6 +555,7 @@
"NMinutesShort": "%s min",
"NSeconds": "%s seconden",
"NSecondsShort": "%s s",
+ "NumberFormatCurrency": "¤ #,##0.00;¤ -#,##0.00",
"NumberFormatNumber": "#,##0.###",
"NumberFormatPercent": "#,##0%",
"NumberSymbolDecimal": ",",
diff --git a/plugins/Intl/lang/nn.json b/plugins/Intl/lang/nn.json
index 2bbaa39b18..6f913f08ea 100644
--- a/plugins/Intl/lang/nn.json
+++ b/plugins/Intl/lang/nn.json
@@ -551,6 +551,7 @@
"NMinutesShort": "%s min",
"NSeconds": "%s s",
"NSecondsShort": "%s s",
+ "NumberFormatCurrency": "#,##0.00 ¤",
"NumberFormatNumber": "#,##0.###",
"NumberFormatPercent": "#,##0 %",
"NumberSymbolDecimal": ",",
diff --git a/plugins/Intl/lang/pl.json b/plugins/Intl/lang/pl.json
index 779af3f6b2..7183cd5cbc 100644
--- a/plugins/Intl/lang/pl.json
+++ b/plugins/Intl/lang/pl.json
@@ -555,6 +555,7 @@
"NMinutesShort": "%s min",
"NSeconds": "%s sekundy",
"NSecondsShort": "%s s",
+ "NumberFormatCurrency": "#,##0.00 ¤",
"NumberFormatNumber": "#,##0.###",
"NumberFormatPercent": "#,##0%",
"NumberSymbolDecimal": ",",
diff --git a/plugins/Intl/lang/pt-br.json b/plugins/Intl/lang/pt-br.json
index 2fb5c928d6..4e934e942d 100644
--- a/plugins/Intl/lang/pt-br.json
+++ b/plugins/Intl/lang/pt-br.json
@@ -555,6 +555,7 @@
"NMinutesShort": "%s min",
"NSeconds": "%s segundos",
"NSecondsShort": "%s s",
+ "NumberFormatCurrency": "¤#,##0.00",
"NumberFormatNumber": "#,##0.###",
"NumberFormatPercent": "#,##0%",
"NumberSymbolDecimal": ",",
diff --git a/plugins/Intl/lang/pt.json b/plugins/Intl/lang/pt.json
index 5391e15487..bacafa576d 100644
--- a/plugins/Intl/lang/pt.json
+++ b/plugins/Intl/lang/pt.json
@@ -555,6 +555,7 @@
"NMinutesShort": "%s min",
"NSeconds": "%s segundos",
"NSecondsShort": "%s s",
+ "NumberFormatCurrency": "#,##0.00 ¤",
"NumberFormatNumber": "#,##0.###",
"NumberFormatPercent": "#,##0%",
"NumberSymbolDecimal": ",",
diff --git a/plugins/Intl/lang/ro.json b/plugins/Intl/lang/ro.json
index 90d7a0bf0d..2e8973de30 100644
--- a/plugins/Intl/lang/ro.json
+++ b/plugins/Intl/lang/ro.json
@@ -555,6 +555,7 @@
"NMinutesShort": "%s min.",
"NSeconds": "%s de secunde",
"NSecondsShort": "%s s",
+ "NumberFormatCurrency": "#,##0.00 ¤",
"NumberFormatNumber": "#,##0.###",
"NumberFormatPercent": "#,##0 %",
"NumberSymbolDecimal": ",",
diff --git a/plugins/Intl/lang/ru.json b/plugins/Intl/lang/ru.json
index e4f78b4513..b26d882971 100644
--- a/plugins/Intl/lang/ru.json
+++ b/plugins/Intl/lang/ru.json
@@ -555,6 +555,7 @@
"NMinutesShort": "%s мин",
"NSeconds": "%s секунды",
"NSecondsShort": "%s с",
+ "NumberFormatCurrency": "#,##0.00 ¤",
"NumberFormatNumber": "#,##0.###",
"NumberFormatPercent": "#,##0 %",
"NumberSymbolDecimal": ",",
diff --git a/plugins/Intl/lang/sk.json b/plugins/Intl/lang/sk.json
index 2dd65c7397..d926c8f1bd 100644
--- a/plugins/Intl/lang/sk.json
+++ b/plugins/Intl/lang/sk.json
@@ -555,6 +555,7 @@
"NMinutesShort": "%s min",
"NSeconds": "%s sekúnd",
"NSecondsShort": "%s s",
+ "NumberFormatCurrency": "#,##0.00 ¤",
"NumberFormatNumber": "#,##0.###",
"NumberFormatPercent": "#,##0 %",
"NumberSymbolDecimal": ",",
diff --git a/plugins/Intl/lang/sl.json b/plugins/Intl/lang/sl.json
index 748bbc3592..054f53ca8b 100644
--- a/plugins/Intl/lang/sl.json
+++ b/plugins/Intl/lang/sl.json
@@ -553,6 +553,7 @@
"NMinutesShort": "%s min",
"NSeconds": "%s sekund",
"NSecondsShort": "%s s",
+ "NumberFormatCurrency": "#,##0.00 ¤",
"NumberFormatNumber": "#,##0.###",
"NumberFormatPercent": "#,##0%",
"NumberSymbolDecimal": ",",
diff --git a/plugins/Intl/lang/sq.json b/plugins/Intl/lang/sq.json
index b54d001958..ee9aa0eae3 100644
--- a/plugins/Intl/lang/sq.json
+++ b/plugins/Intl/lang/sq.json
@@ -507,6 +507,7 @@
"NMinutesShort": "%s min.",
"NSeconds": "%s sekonda",
"NSecondsShort": "%s sek.",
+ "NumberFormatCurrency": "#,##0.00 ¤",
"NumberFormatNumber": "#,##0.###",
"NumberFormatPercent": "#,##0%",
"NumberSymbolDecimal": ",",
diff --git a/plugins/Intl/lang/sr.json b/plugins/Intl/lang/sr.json
index 8d9ef65100..003e91483c 100644
--- a/plugins/Intl/lang/sr.json
+++ b/plugins/Intl/lang/sr.json
@@ -555,6 +555,7 @@
"NMinutesShort": "%s мин",
"NSeconds": "%s секунди",
"NSecondsShort": "%s сек",
+ "NumberFormatCurrency": "#,##0.00 ¤",
"NumberFormatNumber": "#,##0.###",
"NumberFormatPercent": "#,##0%",
"NumberSymbolDecimal": ",",
diff --git a/plugins/Intl/lang/sv.json b/plugins/Intl/lang/sv.json
index c92a3e1ebf..c829d88418 100644
--- a/plugins/Intl/lang/sv.json
+++ b/plugins/Intl/lang/sv.json
@@ -555,6 +555,7 @@
"NMinutesShort": "%s min",
"NSeconds": "%s sekunder",
"NSecondsShort": "%ss",
+ "NumberFormatCurrency": "#,##0.00 ¤",
"NumberFormatNumber": "#,##0.###",
"NumberFormatPercent": "#,##0 %",
"NumberSymbolDecimal": ",",
diff --git a/plugins/Intl/lang/ta.json b/plugins/Intl/lang/ta.json
index 477950426b..43708c2ba9 100644
--- a/plugins/Intl/lang/ta.json
+++ b/plugins/Intl/lang/ta.json
@@ -555,6 +555,7 @@
"NMinutesShort": "%s நிமிட",
"NSeconds": "%s விநாடிகள்",
"NSecondsShort": "%s வி.",
+ "NumberFormatCurrency": "¤ #,##,##0.00",
"NumberFormatNumber": "#,##,##0.###",
"NumberFormatPercent": "#,##,##0%",
"NumberSymbolDecimal": ".",
diff --git a/plugins/Intl/lang/te.json b/plugins/Intl/lang/te.json
index fc54933b61..7c9679b3a1 100644
--- a/plugins/Intl/lang/te.json
+++ b/plugins/Intl/lang/te.json
@@ -555,6 +555,7 @@
"NMinutesShort": "%s నిమి.",
"NSeconds": "%s సెకన్లు",
"NSecondsShort": "%sసె",
+ "NumberFormatCurrency": "¤#,##,##0.00",
"NumberFormatNumber": "#,##,##0.###",
"NumberFormatPercent": "#,##0%",
"NumberSymbolDecimal": ".",
diff --git a/plugins/Intl/lang/th.json b/plugins/Intl/lang/th.json
index 0f827fac72..afe4e21c49 100644
--- a/plugins/Intl/lang/th.json
+++ b/plugins/Intl/lang/th.json
@@ -555,6 +555,7 @@
"NMinutesShort": "%s นาที",
"NSeconds": "%s วินาที",
"NSecondsShort": "%sวิ",
+ "NumberFormatCurrency": "¤#,##0.00",
"NumberFormatNumber": "#,##0.###",
"NumberFormatPercent": "#,##0%",
"NumberSymbolDecimal": ".",
diff --git a/plugins/Intl/lang/tl.json b/plugins/Intl/lang/tl.json
index 71abdf6151..caebf74edf 100644
--- a/plugins/Intl/lang/tl.json
+++ b/plugins/Intl/lang/tl.json
@@ -525,6 +525,7 @@
"NMinutesShort": "%s min.",
"NSeconds": "%s na segundo",
"NSecondsShort": "%ss",
+ "NumberFormatCurrency": "¤#,##0.00",
"NumberFormatNumber": "#,##0.###",
"NumberFormatPercent": "#,##0%",
"NumberSymbolDecimal": ".",
diff --git a/plugins/Intl/lang/tr.json b/plugins/Intl/lang/tr.json
index 7a0ae90c1c..0d2b4082e6 100644
--- a/plugins/Intl/lang/tr.json
+++ b/plugins/Intl/lang/tr.json
@@ -555,6 +555,7 @@
"NMinutesShort": "%s dk.",
"NSeconds": "%s saniye",
"NSecondsShort": "%ssn",
+ "NumberFormatCurrency": "#,##0.00 ¤",
"NumberFormatNumber": "#,##0.###",
"NumberFormatPercent": "%#,##0",
"NumberSymbolDecimal": ",",
diff --git a/plugins/Intl/lang/uk.json b/plugins/Intl/lang/uk.json
index cdc38219de..69ec802cbb 100644
--- a/plugins/Intl/lang/uk.json
+++ b/plugins/Intl/lang/uk.json
@@ -555,6 +555,7 @@
"NMinutesShort": "%s хв",
"NSeconds": "%s секунди",
"NSecondsShort": "%s с",
+ "NumberFormatCurrency": "#,##0.00 ¤",
"NumberFormatNumber": "#,##0.###",
"NumberFormatPercent": "#,##0%",
"NumberSymbolDecimal": ",",
diff --git a/plugins/Intl/lang/vi.json b/plugins/Intl/lang/vi.json
index cfaa336635..e89f2f527b 100644
--- a/plugins/Intl/lang/vi.json
+++ b/plugins/Intl/lang/vi.json
@@ -555,6 +555,7 @@
"NMinutesShort": "%s phút",
"NSeconds": "%s giây",
"NSecondsShort": "%s giây",
+ "NumberFormatCurrency": "¤ #,##0.00",
"NumberFormatNumber": "#,##0.###",
"NumberFormatPercent": "#,##0%",
"NumberSymbolDecimal": ",",
diff --git a/plugins/Intl/lang/zh-cn.json b/plugins/Intl/lang/zh-cn.json
index be28705106..5b48c6c6d8 100644
--- a/plugins/Intl/lang/zh-cn.json
+++ b/plugins/Intl/lang/zh-cn.json
@@ -555,6 +555,7 @@
"NMinutesShort": "%s分钟",
"NSeconds": "%s秒钟",
"NSecondsShort": "%s秒",
+ "NumberFormatCurrency": "¤#,##0.00",
"NumberFormatNumber": "#,##0.###",
"NumberFormatPercent": "#,##0%",
"NumberSymbolDecimal": ".",
diff --git a/plugins/Intl/lang/zh-tw.json b/plugins/Intl/lang/zh-tw.json
index 7084fe5d59..5fac85b0ec 100644
--- a/plugins/Intl/lang/zh-tw.json
+++ b/plugins/Intl/lang/zh-tw.json
@@ -555,6 +555,7 @@
"NMinutesShort": "%s 分鐘",
"NSeconds": "%s 秒",
"NSecondsShort": "%s秒",
+ "NumberFormatCurrency": "¤#,##0.00",
"NumberFormatNumber": "#,##0.###",
"NumberFormatPercent": "#,##0%",
"NumberSymbolDecimal": ".",