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:
authorStefan Giehl <stefan@piwik.org>2017-07-17 00:49:20 +0300
committerMatthieu Aubry <mattab@users.noreply.github.com>2017-07-17 00:49:20 +0300
commitb0546878bd83d5ca36d43a8db8ac903d8548dec1 (patch)
tree6426400bbe899b0add2214bb5e5ae7761a0b3bd5 /plugins/Intl
parentb9c953e43758815f016e11b96c9e7f6a303a8691 (diff)
Use localized format to display hour in Visits per time reports (#11747)
* Use localized format to display hour in Visits per time reports * updates cldr data * update test files
Diffstat (limited to 'plugins/Intl')
-rw-r--r--plugins/Intl/Commands/GenerateIntl.php2
-rw-r--r--plugins/Intl/DateTimeFormatProvider.php20
-rw-r--r--plugins/Intl/lang/am.json4
-rw-r--r--plugins/Intl/lang/ar.json4
-rw-r--r--plugins/Intl/lang/be.json2
-rw-r--r--plugins/Intl/lang/bg.json6
-rw-r--r--plugins/Intl/lang/bn.json4
-rw-r--r--plugins/Intl/lang/bs.json4
-rw-r--r--plugins/Intl/lang/ca.json4
-rw-r--r--plugins/Intl/lang/cs.json4
-rw-r--r--plugins/Intl/lang/cy.json4
-rw-r--r--plugins/Intl/lang/da.json2
-rw-r--r--plugins/Intl/lang/de.json4
-rw-r--r--plugins/Intl/lang/el.json4
-rw-r--r--plugins/Intl/lang/en.json4
-rw-r--r--plugins/Intl/lang/es.json4
-rw-r--r--plugins/Intl/lang/et.json4
-rw-r--r--plugins/Intl/lang/eu.json4
-rw-r--r--plugins/Intl/lang/fa.json2
-rw-r--r--plugins/Intl/lang/fi.json4
-rw-r--r--plugins/Intl/lang/fr.json4
-rw-r--r--plugins/Intl/lang/gl.json4
-rw-r--r--plugins/Intl/lang/he.json4
-rw-r--r--plugins/Intl/lang/hi.json4
-rw-r--r--plugins/Intl/lang/hr.json4
-rw-r--r--plugins/Intl/lang/hu.json6
-rw-r--r--plugins/Intl/lang/id.json4
-rw-r--r--plugins/Intl/lang/is.json2
-rw-r--r--plugins/Intl/lang/it.json6
-rw-r--r--plugins/Intl/lang/ja.json4
-rw-r--r--plugins/Intl/lang/ka.json4
-rw-r--r--plugins/Intl/lang/ko.json2
-rw-r--r--plugins/Intl/lang/lt.json2
-rw-r--r--plugins/Intl/lang/lv.json8
-rw-r--r--plugins/Intl/lang/nb.json4
-rw-r--r--plugins/Intl/lang/nl.json4
-rw-r--r--plugins/Intl/lang/nn.json2
-rw-r--r--plugins/Intl/lang/pl.json2
-rw-r--r--plugins/Intl/lang/pt-br.json4
-rw-r--r--plugins/Intl/lang/pt.json2
-rw-r--r--plugins/Intl/lang/ro.json4
-rw-r--r--plugins/Intl/lang/ru.json2
-rw-r--r--plugins/Intl/lang/sk.json4
-rw-r--r--plugins/Intl/lang/sl.json4
-rw-r--r--plugins/Intl/lang/sq.json4
-rw-r--r--plugins/Intl/lang/sr.json2
-rw-r--r--plugins/Intl/lang/sv.json2
-rw-r--r--plugins/Intl/lang/ta.json4
-rw-r--r--plugins/Intl/lang/te.json4
-rw-r--r--plugins/Intl/lang/th.json4
-rw-r--r--plugins/Intl/lang/tl.json4
-rw-r--r--plugins/Intl/lang/tr.json4
-rw-r--r--plugins/Intl/lang/uk.json4
-rw-r--r--plugins/Intl/lang/vi.json4
-rw-r--r--plugins/Intl/lang/zh-cn.json4
-rw-r--r--plugins/Intl/lang/zh-tw.json4
56 files changed, 172 insertions, 52 deletions
diff --git a/plugins/Intl/Commands/GenerateIntl.php b/plugins/Intl/Commands/GenerateIntl.php
index d9710f5977..59b79ae30e 100644
--- a/plugins/Intl/Commands/GenerateIntl.php
+++ b/plugins/Intl/Commands/GenerateIntl.php
@@ -265,6 +265,8 @@ class GenerateIntl extends ConsoleCommand
$translations['Intl']['Format_Time'] = '{time}';
$translations['Intl']['Format_Time_12'] = $calendarData['dateTimeFormats']['availableFormats']['hms'];
$translations['Intl']['Format_Time_24'] = $calendarData['dateTimeFormats']['availableFormats']['Hms'];
+ $translations['Intl']['Format_Hour_12'] = $calendarData['dateTimeFormats']['availableFormats']['h'];
+ $translations['Intl']['Format_Hour_24'] = $calendarData['dateTimeFormats']['availableFormats']['H'];
$translations['Intl']['Format_Date_Long'] = $calendarData['dateFormats']['full'];
$translations['Intl']['Format_Date_Day_Month'] = $calendarData['dateTimeFormats']['availableFormats']['MMMEd'];
$translations['Intl']['Format_Date_Short'] = $calendarData['dateFormats']['medium'];
diff --git a/plugins/Intl/DateTimeFormatProvider.php b/plugins/Intl/DateTimeFormatProvider.php
index 19fcd7acca..afe8a303c2 100644
--- a/plugins/Intl/DateTimeFormatProvider.php
+++ b/plugins/Intl/DateTimeFormatProvider.php
@@ -106,13 +106,9 @@ class DateTimeFormatProvider extends \Piwik\Intl\Data\Provider\DateTimeFormatPro
protected function getTimeFormat()
{
- if (is_null($this->use12HourClock)) {
- $this->use12HourClock = LanguagesManager::uses12HourClockForCurrentUser();
- }
-
$timeFormat = 'Intl_Format_Time_24';
- if ($this->use12HourClock) {
+ if ($this->uses12HourClock()) {
$timeFormat = 'Intl_Format_Time_12';
}
@@ -122,6 +118,20 @@ class DateTimeFormatProvider extends \Piwik\Intl\Data\Provider\DateTimeFormatPro
}
/**
+ * Returns if time is present as 12 hour clock (eg am/pm)
+ *
+ * @return bool
+ */
+ public function uses12HourClock()
+ {
+ if (is_null($this->use12HourClock)) {
+ $this->use12HourClock = LanguagesManager::uses12HourClockForCurrentUser();
+ }
+
+ return $this->use12HourClock;
+ }
+
+ /**
* For testing purpose only: Overwrites time format
*
* @param bool $use12HourClock
diff --git a/plugins/Intl/lang/am.json b/plugins/Intl/lang/am.json
index 4ea641a511..26aa0adb84 100644
--- a/plugins/Intl/lang/am.json
+++ b/plugins/Intl/lang/am.json
@@ -63,7 +63,7 @@
"Country_CW": "ኩራሳዎ",
"Country_CX": "የገና ደሴት",
"Country_CY": "ሳይፕረስ",
- "Country_CZ": "ቼክ ሪፑብሊክ",
+ "Country_CZ": "ቼቺያ",
"Country_DE": "ጀርመን",
"Country_DJ": "ጂቡቲ",
"Country_DK": "ዴንማርክ",
@@ -305,6 +305,8 @@
"Format_Date_Day_Month": "E፣ MMM d",
"Format_Date_Long": "EEEE ፣d MMMM y",
"Format_Date_Short": "d MMM y",
+ "Format_Hour_12": "h a",
+ "Format_Hour_24": "H",
"Format_Interval_Long_D": "MMMM d–d፣ y",
"Format_Interval_Long_M": "MMMM d – MMMM d፣ y",
"Format_Interval_Long_Y": "MMMM d፣ y – MMMM d፣ y",
diff --git a/plugins/Intl/lang/ar.json b/plugins/Intl/lang/ar.json
index c82d41c5be..5041cce381 100644
--- a/plugins/Intl/lang/ar.json
+++ b/plugins/Intl/lang/ar.json
@@ -63,7 +63,7 @@
"Country_CW": "كوراساو",
"Country_CX": "جزيرة الكريسماس",
"Country_CY": "قبرص",
- "Country_CZ": "جمهورية التشيك",
+ "Country_CZ": "التشيك",
"Country_DE": "ألمانيا",
"Country_DJ": "جيبوتي",
"Country_DK": "الدانمرك",
@@ -305,6 +305,8 @@
"Format_Date_Day_Month": "E، d MMM",
"Format_Date_Long": "EEEE، d MMMM، y",
"Format_Date_Short": "dd‏\/MM‏\/y",
+ "Format_Hour_12": "h a",
+ "Format_Hour_24": "HH",
"Format_Interval_Long_D": "d–d MMMM، y",
"Format_Interval_Long_M": "d MMMM – d MMMM، y",
"Format_Interval_Long_Y": "d MMMM، y – d MMMM، y",
diff --git a/plugins/Intl/lang/be.json b/plugins/Intl/lang/be.json
index 49eaf85f47..deea5d3a6b 100644
--- a/plugins/Intl/lang/be.json
+++ b/plugins/Intl/lang/be.json
@@ -305,6 +305,8 @@
"Format_Date_Day_Month": "E, d MMM",
"Format_Date_Long": "EEEE, d MMMM y 'г'.",
"Format_Date_Short": "d.MM.y",
+ "Format_Hour_12": "hh a",
+ "Format_Hour_24": "HH",
"Format_Interval_Long_D": "d–d MMMM y",
"Format_Interval_Long_M": "d MMMM – d MMMM y",
"Format_Interval_Long_Y": "d MMMM y – d MMMM y",
diff --git a/plugins/Intl/lang/bg.json b/plugins/Intl/lang/bg.json
index c440f820e6..216e5dee89 100644
--- a/plugins/Intl/lang/bg.json
+++ b/plugins/Intl/lang/bg.json
@@ -63,7 +63,7 @@
"Country_CW": "Кюрасао",
"Country_CX": "Остров Рождество",
"Country_CY": "Кипър",
- "Country_CZ": "Чешка република",
+ "Country_CZ": "Чехия",
"Country_DE": "Германия",
"Country_DJ": "Джибути",
"Country_DK": "Дания",
@@ -305,6 +305,8 @@
"Format_Date_Day_Month": "E, d.MM",
"Format_Date_Long": "EEEE, d MMMM y 'г'.",
"Format_Date_Short": "d.MM.y 'г'.",
+ "Format_Hour_12": "h a",
+ "Format_Hour_24": "H",
"Format_Interval_Long_D": "d – d MMMM y 'г'.",
"Format_Interval_Long_M": "d MMMM – d MMMM y 'г'.",
"Format_Interval_Long_Y": "d MMMM y 'г'. – d MMMM y 'г'.",
@@ -557,7 +559,7 @@
"NMinutesShort": "%s min",
"NSeconds": "%s секунди",
"NSecondsShort": "%s s",
- "NumberFormatCurrency": "#0.00 ¤",
+ "NumberFormatCurrency": "0.00 ¤",
"NumberFormatNumber": "#,##0.###",
"NumberFormatPercent": "#,##0%",
"NumberSymbolDecimal": ",",
diff --git a/plugins/Intl/lang/bn.json b/plugins/Intl/lang/bn.json
index 9a19537976..bcc6b97621 100644
--- a/plugins/Intl/lang/bn.json
+++ b/plugins/Intl/lang/bn.json
@@ -63,7 +63,7 @@
"Country_CW": "কিউরাসাও",
"Country_CX": "ক্রিসমাস দ্বীপ",
"Country_CY": "সাইপ্রাস",
- "Country_CZ": "চেক প্রজাতন্ত্র",
+ "Country_CZ": "চেচিয়া",
"Country_DE": "জার্মানি",
"Country_DJ": "জিবুতি",
"Country_DK": "ডেনমার্ক",
@@ -305,6 +305,8 @@
"Format_Date_Day_Month": "E d MMM",
"Format_Date_Long": "EEEE, d MMMM, y",
"Format_Date_Short": "d MMM, y",
+ "Format_Hour_12": "h a",
+ "Format_Hour_24": "HH",
"Format_Interval_Long_D": "d–d MMMM, y",
"Format_Interval_Long_M": "d MMMM – d MMMM, y",
"Format_Interval_Long_Y": "d MMMM, y – d MMMM, y",
diff --git a/plugins/Intl/lang/bs.json b/plugins/Intl/lang/bs.json
index 3c776babd7..899daef98b 100644
--- a/plugins/Intl/lang/bs.json
+++ b/plugins/Intl/lang/bs.json
@@ -63,7 +63,7 @@
"Country_CW": "Kurasao",
"Country_CX": "Božićna Ostrva",
"Country_CY": "Kipar",
- "Country_CZ": "Češka Republika",
+ "Country_CZ": "Češka",
"Country_DE": "Njemačka",
"Country_DJ": "Džibuti",
"Country_DK": "Danska",
@@ -305,6 +305,8 @@
"Format_Date_Day_Month": "E, d. MMM",
"Format_Date_Long": "EEEE, d. MMMM y.",
"Format_Date_Short": "d. MMM. y.",
+ "Format_Hour_12": "h a",
+ "Format_Hour_24": "HH",
"Format_Interval_Long_D": "d. – d. MMMM y.",
"Format_Interval_Long_M": "d. MMMM – d. MMMM y.",
"Format_Interval_Long_Y": "d. MMMM y. – d. MMMM y.",
diff --git a/plugins/Intl/lang/ca.json b/plugins/Intl/lang/ca.json
index 614fe35f72..a48b09d244 100644
--- a/plugins/Intl/lang/ca.json
+++ b/plugins/Intl/lang/ca.json
@@ -63,7 +63,7 @@
"Country_CW": "Curaçao",
"Country_CX": "Illa Christmas",
"Country_CY": "Xipre",
- "Country_CZ": "República Txeca",
+ "Country_CZ": "Txèquia",
"Country_DE": "Alemanya",
"Country_DJ": "Djibouti",
"Country_DK": "Dinamarca",
@@ -305,6 +305,8 @@
"Format_Date_Day_Month": "E, d MMM",
"Format_Date_Long": "EEEE, d MMMM 'de' y",
"Format_Date_Short": "d MMM y",
+ "Format_Hour_12": "h a",
+ "Format_Hour_24": "H",
"Format_Interval_Long_D": "d–d MMMM 'de' y",
"Format_Interval_Long_M": "d MMMM – d MMMM 'de' y",
"Format_Interval_Long_Y": "d MMMM 'de' y – d MMMM 'de' y",
diff --git a/plugins/Intl/lang/cs.json b/plugins/Intl/lang/cs.json
index 885d852428..39d03a45ac 100644
--- a/plugins/Intl/lang/cs.json
+++ b/plugins/Intl/lang/cs.json
@@ -63,7 +63,7 @@
"Country_CW": "Curaçao",
"Country_CX": "Vánoční ostrov",
"Country_CY": "Kypr",
- "Country_CZ": "Česká republika",
+ "Country_CZ": "Česko",
"Country_DE": "Německo",
"Country_DJ": "Džibutsko",
"Country_DK": "Dánsko",
@@ -305,6 +305,8 @@
"Format_Date_Day_Month": "E d. M.",
"Format_Date_Long": "EEEE d. MMMM y",
"Format_Date_Short": "d. M. y",
+ "Format_Hour_12": "h a",
+ "Format_Hour_24": "H",
"Format_Interval_Long_D": "d.–d. M. y",
"Format_Interval_Long_M": "d. M. – d. M. y",
"Format_Interval_Long_Y": "d. M. y – d. M. y",
diff --git a/plugins/Intl/lang/cy.json b/plugins/Intl/lang/cy.json
index 4b98f7551a..0b7f67eaf3 100644
--- a/plugins/Intl/lang/cy.json
+++ b/plugins/Intl/lang/cy.json
@@ -63,7 +63,7 @@
"Country_CW": "Curaçao",
"Country_CX": "Ynys y Nadolig",
"Country_CY": "Cyprus",
- "Country_CZ": "Gweriniaeth Tsiec",
+ "Country_CZ": "Tsiecia",
"Country_DE": "Yr Almaen",
"Country_DJ": "Djibouti",
"Country_DK": "Denmarc",
@@ -305,6 +305,8 @@
"Format_Date_Day_Month": "E, d MMM",
"Format_Date_Long": "EEEE, d MMMM y",
"Format_Date_Short": "d MMM y",
+ "Format_Hour_12": "h a",
+ "Format_Hour_24": "HH",
"Format_Interval_Long_D": "d–d MMMM y",
"Format_Interval_Long_M": "d MMMM – d MMMM y",
"Format_Interval_Long_Y": "d MMMM, y – d MMMM y",
diff --git a/plugins/Intl/lang/da.json b/plugins/Intl/lang/da.json
index 18fdff2299..ef3d26a411 100644
--- a/plugins/Intl/lang/da.json
+++ b/plugins/Intl/lang/da.json
@@ -305,6 +305,8 @@
"Format_Date_Day_Month": "E d. MMM",
"Format_Date_Long": "EEEE 'den' d. MMMM y",
"Format_Date_Short": "d. MMM y",
+ "Format_Hour_12": "h a",
+ "Format_Hour_24": "HH",
"Format_Interval_Long_D": "d.–d. MMMM y",
"Format_Interval_Long_M": "d. MMMM.–d. MMMM y",
"Format_Interval_Long_Y": "d. MMMM y–d. MMMM y",
diff --git a/plugins/Intl/lang/de.json b/plugins/Intl/lang/de.json
index 8de4c29cef..cbc32832ee 100644
--- a/plugins/Intl/lang/de.json
+++ b/plugins/Intl/lang/de.json
@@ -63,7 +63,7 @@
"Country_CW": "Curaçao",
"Country_CX": "Weihnachtsinsel",
"Country_CY": "Zypern",
- "Country_CZ": "Tschechische Republik",
+ "Country_CZ": "Tschechien",
"Country_DE": "Deutschland",
"Country_DJ": "Dschibuti",
"Country_DK": "Dänemark",
@@ -305,6 +305,8 @@
"Format_Date_Day_Month": "E, d. MMM",
"Format_Date_Long": "EEEE, d. MMMM y",
"Format_Date_Short": "dd.MM.y",
+ "Format_Hour_12": "h 'Uhr' a",
+ "Format_Hour_24": "HH 'Uhr'",
"Format_Interval_Long_D": "d.–d. MMMM y",
"Format_Interval_Long_M": "d. MMMM – d. MMMM y",
"Format_Interval_Long_Y": "d. MMMM y – d. MMMM y",
diff --git a/plugins/Intl/lang/el.json b/plugins/Intl/lang/el.json
index c0fdc46284..edb78624f6 100644
--- a/plugins/Intl/lang/el.json
+++ b/plugins/Intl/lang/el.json
@@ -63,7 +63,7 @@
"Country_CW": "Κουρασάο",
"Country_CX": "Νήσος των Χριστουγέννων",
"Country_CY": "Κύπρος",
- "Country_CZ": "Τσεχική Δημοκρατία",
+ "Country_CZ": "Τσεχία",
"Country_DE": "Γερμανία",
"Country_DJ": "Τζιμπουτί",
"Country_DK": "Δανία",
@@ -305,6 +305,8 @@
"Format_Date_Day_Month": "E, d MMM",
"Format_Date_Long": "EEEE, d MMMM y",
"Format_Date_Short": "d MMM y",
+ "Format_Hour_12": "h a",
+ "Format_Hour_24": "HH",
"Format_Interval_Long_D": "dd–dd MMMM y",
"Format_Interval_Long_M": "dd MMMM – dd MMMM y",
"Format_Interval_Long_Y": "dd MMMM y – dd MMMM y",
diff --git a/plugins/Intl/lang/en.json b/plugins/Intl/lang/en.json
index 063bf9187c..07e367ce8c 100644
--- a/plugins/Intl/lang/en.json
+++ b/plugins/Intl/lang/en.json
@@ -63,7 +63,7 @@
"Country_CW": "Curaçao",
"Country_CX": "Christmas Island",
"Country_CY": "Cyprus",
- "Country_CZ": "Czech Republic",
+ "Country_CZ": "Czechia",
"Country_DE": "Germany",
"Country_DJ": "Djibouti",
"Country_DK": "Denmark",
@@ -305,6 +305,8 @@
"Format_Date_Day_Month": "E, MMM d",
"Format_Date_Long": "EEEE, MMMM d, y",
"Format_Date_Short": "MMM d, y",
+ "Format_Hour_12": "h a",
+ "Format_Hour_24": "HH",
"Format_Interval_Long_D": "MMMM d – d, y",
"Format_Interval_Long_M": "MMMM d – MMMM d, y",
"Format_Interval_Long_Y": "MMMM d, y – MMMM d, y",
diff --git a/plugins/Intl/lang/es.json b/plugins/Intl/lang/es.json
index edcde23bb1..1753d1729e 100644
--- a/plugins/Intl/lang/es.json
+++ b/plugins/Intl/lang/es.json
@@ -63,7 +63,7 @@
"Country_CW": "Curazao",
"Country_CX": "Isla de Navidad",
"Country_CY": "Chipre",
- "Country_CZ": "República Checa",
+ "Country_CZ": "Chequia",
"Country_DE": "Alemania",
"Country_DJ": "Yibuti",
"Country_DK": "Dinamarca",
@@ -305,6 +305,8 @@
"Format_Date_Day_Month": "E, d MMM",
"Format_Date_Long": "EEEE, d 'de' MMMM 'de' y",
"Format_Date_Short": "d MMM y",
+ "Format_Hour_12": "h a",
+ "Format_Hour_24": "H",
"Format_Interval_Long_D": "d–d 'de' MMMM 'de' y",
"Format_Interval_Long_M": "d 'de' MMMM–d 'de' MMMM 'de' y",
"Format_Interval_Long_Y": "d 'de' MMMM 'de' y–d 'de' MMMM 'de' y",
diff --git a/plugins/Intl/lang/et.json b/plugins/Intl/lang/et.json
index d1a921756b..14c2106703 100644
--- a/plugins/Intl/lang/et.json
+++ b/plugins/Intl/lang/et.json
@@ -63,7 +63,7 @@
"Country_CW": "Curaçao",
"Country_CX": "Jõulusaar",
"Country_CY": "Küpros",
- "Country_CZ": "Tšehhi",
+ "Country_CZ": "Tšehhia",
"Country_DE": "Saksamaa",
"Country_DJ": "Djibouti",
"Country_DK": "Taani",
@@ -305,6 +305,8 @@
"Format_Date_Day_Month": "E, d. MMM",
"Format_Date_Long": "EEEE, d. MMMM y",
"Format_Date_Short": "d. MMM y",
+ "Format_Hour_12": "h a",
+ "Format_Hour_24": "HH",
"Format_Interval_Long_D": "d.–d. MMMM y",
"Format_Interval_Long_M": "d. MMMM – d. MMMM y",
"Format_Interval_Long_Y": "d. MMMM y – d. MMMM y",
diff --git a/plugins/Intl/lang/eu.json b/plugins/Intl/lang/eu.json
index e61a18ea4d..a186b7354e 100644
--- a/plugins/Intl/lang/eu.json
+++ b/plugins/Intl/lang/eu.json
@@ -63,7 +63,7 @@
"Country_CW": "Curaçao",
"Country_CX": "Christmas uhartea",
"Country_CY": "Zipre",
- "Country_CZ": "Txekiar Errepublika",
+ "Country_CZ": "Txekia",
"Country_DE": "Alemania",
"Country_DJ": "Djibuti",
"Country_DK": "Danimarka",
@@ -305,6 +305,8 @@
"Format_Date_Day_Month": "MMM d, E",
"Format_Date_Long": "y('e')'ko' MMMM d, EEEE",
"Format_Date_Short": "y MMM d",
+ "Format_Hour_12": "h a",
+ "Format_Hour_24": "HH",
"Format_Interval_Long_D": "y('e')'ko' MMMM d–d",
"Format_Interval_Long_M": "y('e')'ko' MMMM d – MMMM d",
"Format_Interval_Long_Y": "y('e')'ko' MMMM d – y('e')'ko' MMMM d",
diff --git a/plugins/Intl/lang/fa.json b/plugins/Intl/lang/fa.json
index 9edb2ecb7f..8dc4e63106 100644
--- a/plugins/Intl/lang/fa.json
+++ b/plugins/Intl/lang/fa.json
@@ -305,6 +305,8 @@
"Format_Date_Day_Month": "E d LLL",
"Format_Date_Long": "EEEE d MMMM y",
"Format_Date_Short": "d MMM y",
+ "Format_Hour_12": "h a",
+ "Format_Hour_24": "H",
"Format_Interval_Long_D": "d تا d MMMM y",
"Format_Interval_Long_M": "d LLLL تا d MMMM y",
"Format_Interval_Long_Y": "d MMMM y تا d MMMM y",
diff --git a/plugins/Intl/lang/fi.json b/plugins/Intl/lang/fi.json
index c1ac3de33a..f926d41b0a 100644
--- a/plugins/Intl/lang/fi.json
+++ b/plugins/Intl/lang/fi.json
@@ -63,7 +63,7 @@
"Country_CW": "Curaçao",
"Country_CX": "Joulusaari",
"Country_CY": "Kypros",
- "Country_CZ": "Tšekki",
+ "Country_CZ": "Tšekinmaa",
"Country_DE": "Saksa",
"Country_DJ": "Djibouti",
"Country_DK": "Tanska",
@@ -305,6 +305,8 @@
"Format_Date_Day_Month": "ccc d. MMM",
"Format_Date_Long": "cccc d. MMMM y",
"Format_Date_Short": "d.M.y",
+ "Format_Hour_12": "h a",
+ "Format_Hour_24": "H",
"Format_Interval_Long_D": "d.–d. MMMM y",
"Format_Interval_Long_M": "d. MMMM – d. MMMM y",
"Format_Interval_Long_Y": "d. MMMM y – d. MMMM y",
diff --git a/plugins/Intl/lang/fr.json b/plugins/Intl/lang/fr.json
index 9a2fd48a53..fe69b0ac95 100644
--- a/plugins/Intl/lang/fr.json
+++ b/plugins/Intl/lang/fr.json
@@ -63,7 +63,7 @@
"Country_CW": "Curaçao",
"Country_CX": "Île Christmas",
"Country_CY": "Chypre",
- "Country_CZ": "République tchèque",
+ "Country_CZ": "Tchéquie",
"Country_DE": "Allemagne",
"Country_DJ": "Djibouti",
"Country_DK": "Danemark",
@@ -305,6 +305,8 @@
"Format_Date_Day_Month": "E d MMM",
"Format_Date_Long": "EEEE d MMMM y",
"Format_Date_Short": "d MMM y",
+ "Format_Hour_12": "h a",
+ "Format_Hour_24": "HH 'h'",
"Format_Interval_Long_D": "d–d MMMM y",
"Format_Interval_Long_M": "d MMMM – d MMMM y",
"Format_Interval_Long_Y": "d MMMM y – d MMMM y",
diff --git a/plugins/Intl/lang/gl.json b/plugins/Intl/lang/gl.json
index 4b500e2221..5a58b3c716 100644
--- a/plugins/Intl/lang/gl.json
+++ b/plugins/Intl/lang/gl.json
@@ -63,7 +63,7 @@
"Country_CW": "Curaçao",
"Country_CX": "Illa de Nadal",
"Country_CY": "Chipre",
- "Country_CZ": "República Checa",
+ "Country_CZ": "Chequia",
"Country_DE": "Alemaña",
"Country_DJ": "Djibuti",
"Country_DK": "Dinamarca",
@@ -305,6 +305,8 @@
"Format_Date_Day_Month": "ccc, d 'de' MMM",
"Format_Date_Long": "EEEE, d 'de' MMMM 'de' y",
"Format_Date_Short": "d 'de' MMM 'de' y",
+ "Format_Hour_12": "h a",
+ "Format_Hour_24": "HH",
"Format_Interval_Long_D": "d–d 'de' MMMM 'de' y",
"Format_Interval_Long_M": "d MMMM – d MMMM 'de' y",
"Format_Interval_Long_Y": "d MMMM y – d MMMM y",
diff --git a/plugins/Intl/lang/he.json b/plugins/Intl/lang/he.json
index c3367fb439..98c7ca0bc9 100644
--- a/plugins/Intl/lang/he.json
+++ b/plugins/Intl/lang/he.json
@@ -63,7 +63,7 @@
"Country_CW": "קוראסאו",
"Country_CX": "האי כריסטמס",
"Country_CY": "קפריסין",
- "Country_CZ": "הרפובליקה הצ׳כית",
+ "Country_CZ": "צ׳כיה",
"Country_DE": "גרמניה",
"Country_DJ": "ג׳יבוטי",
"Country_DK": "דנמרק",
@@ -305,6 +305,8 @@
"Format_Date_Day_Month": "E, d בMMM",
"Format_Date_Long": "EEEE, d בMMMM y",
"Format_Date_Short": "d בMMM y",
+ "Format_Hour_12": "‏h a",
+ "Format_Hour_24": "H",
"Format_Interval_Long_D": "d–d בMMMM y",
"Format_Interval_Long_M": "d MMMM – d MMMM y",
"Format_Interval_Long_Y": "d MMMM y – d MMMM y",
diff --git a/plugins/Intl/lang/hi.json b/plugins/Intl/lang/hi.json
index 8d84e5b37c..9926758981 100644
--- a/plugins/Intl/lang/hi.json
+++ b/plugins/Intl/lang/hi.json
@@ -63,7 +63,7 @@
"Country_CW": "क्यूरासाओ",
"Country_CX": "क्रिसमस द्वीप",
"Country_CY": "साइप्रस",
- "Country_CZ": "चेक गणराज्य",
+ "Country_CZ": "चेकिया",
"Country_DE": "जर्मनी",
"Country_DJ": "जिबूती",
"Country_DK": "डेनमार्क",
@@ -305,6 +305,8 @@
"Format_Date_Day_Month": "E, d MMM",
"Format_Date_Long": "EEEE, d MMMM y",
"Format_Date_Short": "dd\/MM\/y",
+ "Format_Hour_12": "h a",
+ "Format_Hour_24": "HH",
"Format_Interval_Long_D": "d–d MMMM y",
"Format_Interval_Long_M": "d MMMM – d MMMM y",
"Format_Interval_Long_Y": "d MMMM y – d MMMM y",
diff --git a/plugins/Intl/lang/hr.json b/plugins/Intl/lang/hr.json
index 49c566262c..0b65845da2 100644
--- a/plugins/Intl/lang/hr.json
+++ b/plugins/Intl/lang/hr.json
@@ -63,7 +63,7 @@
"Country_CW": "Curaçao",
"Country_CX": "Božićni otok",
"Country_CY": "Cipar",
- "Country_CZ": "Češka Republika",
+ "Country_CZ": "Češka",
"Country_DE": "Njemačka",
"Country_DJ": "Džibuti",
"Country_DK": "Danska",
@@ -305,6 +305,8 @@
"Format_Date_Day_Month": "E, d. MMM",
"Format_Date_Long": "EEEE, d. MMMM y.",
"Format_Date_Short": "d. MMM y.",
+ "Format_Hour_12": "h a",
+ "Format_Hour_24": "HH",
"Format_Interval_Long_D": "dd. – dd. MMMM y.",
"Format_Interval_Long_M": "dd. MMMM – dd. MMMM y.",
"Format_Interval_Long_Y": "dd. MMMM y. – dd. MMMM y.",
diff --git a/plugins/Intl/lang/hu.json b/plugins/Intl/lang/hu.json
index 11c04ef705..e8a3bd1261 100644
--- a/plugins/Intl/lang/hu.json
+++ b/plugins/Intl/lang/hu.json
@@ -305,6 +305,8 @@
"Format_Date_Day_Month": "MMM d., E",
"Format_Date_Long": "y. MMMM d., EEEE",
"Format_Date_Short": "y. MMM d.",
+ "Format_Hour_12": "a h",
+ "Format_Hour_24": "H",
"Format_Interval_Long_D": "y. MMMM d–d.",
"Format_Interval_Long_M": "y. MMMM d. – MMMM d.",
"Format_Interval_Long_Y": "y. MMMM d. – y. MMMM d.",
@@ -428,12 +430,12 @@
"Language_mt": "Máltai",
"Language_my": "Burmai",
"Language_na": "Naurui",
- "Language_nb": "Norvég (bokmál)",
+ "Language_nb": "Norvég (bokmål)",
"Language_nd": "Északi ndebele",
"Language_ne": "Nepáli",
"Language_ng": "Ndonga",
"Language_nl": "Holland",
- "Language_nn": "Norvég (nynrosk)",
+ "Language_nn": "Norvég (nynorsk)",
"Language_no": "Norvég",
"Language_nr": "Déli ndebele",
"Language_nv": "Navahó",
diff --git a/plugins/Intl/lang/id.json b/plugins/Intl/lang/id.json
index eefdadfcf4..5b7c0fc725 100644
--- a/plugins/Intl/lang/id.json
+++ b/plugins/Intl/lang/id.json
@@ -63,7 +63,7 @@
"Country_CW": "Curaçao",
"Country_CX": "Pulau Christmas",
"Country_CY": "Siprus",
- "Country_CZ": "Republik Cheska",
+ "Country_CZ": "Cheska",
"Country_DE": "Jerman",
"Country_DJ": "Jibuti",
"Country_DK": "Denmark",
@@ -305,6 +305,8 @@
"Format_Date_Day_Month": "E, d MMM",
"Format_Date_Long": "EEEE, dd MMMM y",
"Format_Date_Short": "d MMM y",
+ "Format_Hour_12": "h a",
+ "Format_Hour_24": "HH",
"Format_Interval_Long_D": "d–d MMMM y",
"Format_Interval_Long_M": "d MMMM – d MMMM y",
"Format_Interval_Long_Y": "d MMMM y – d MMMM y",
diff --git a/plugins/Intl/lang/is.json b/plugins/Intl/lang/is.json
index 278e92d010..6424ba8f55 100644
--- a/plugins/Intl/lang/is.json
+++ b/plugins/Intl/lang/is.json
@@ -305,6 +305,8 @@
"Format_Date_Day_Month": "E, d. MMM",
"Format_Date_Long": "EEEE, d. MMMM y",
"Format_Date_Short": "d. MMM y",
+ "Format_Hour_12": "h a",
+ "Format_Hour_24": "HH",
"Format_Interval_Long_D": "d.–d. MMMM y",
"Format_Interval_Long_M": "d. MMMM – d. MMMM y",
"Format_Interval_Long_Y": "d. MMMM y – d. MMMM y",
diff --git a/plugins/Intl/lang/it.json b/plugins/Intl/lang/it.json
index 73a419fc11..b5226d723e 100644
--- a/plugins/Intl/lang/it.json
+++ b/plugins/Intl/lang/it.json
@@ -63,7 +63,7 @@
"Country_CW": "Curaçao",
"Country_CX": "Isola Christmas",
"Country_CY": "Cipro",
- "Country_CZ": "Repubblica Ceca",
+ "Country_CZ": "Cèchia",
"Country_DE": "Germania",
"Country_DJ": "Gibuti",
"Country_DK": "Danimarca",
@@ -228,7 +228,7 @@
"Country_TH": "Thailandia",
"Country_TJ": "Tagikistan",
"Country_TK": "Tokelau",
- "Country_TL": "Timor Leste",
+ "Country_TL": "Timor Est",
"Country_TM": "Turkmenistan",
"Country_TN": "Tunisia",
"Country_TO": "Tonga",
@@ -305,6 +305,8 @@
"Format_Date_Day_Month": "E d MMM",
"Format_Date_Long": "EEEE d MMMM y",
"Format_Date_Short": "dd MMM y",
+ "Format_Hour_12": "h a",
+ "Format_Hour_24": "HH",
"Format_Interval_Long_D": "dd–dd MMMM y",
"Format_Interval_Long_M": "dd MMMM – dd MMMM y",
"Format_Interval_Long_Y": "dd MMMM y – dd MMMM y",
diff --git a/plugins/Intl/lang/ja.json b/plugins/Intl/lang/ja.json
index e6f685bfc1..99dd2fb62a 100644
--- a/plugins/Intl/lang/ja.json
+++ b/plugins/Intl/lang/ja.json
@@ -63,7 +63,7 @@
"Country_CW": "キュラソー",
"Country_CX": "クリスマス島",
"Country_CY": "キプロス",
- "Country_CZ": "チェコ共和国",
+ "Country_CZ": "チェコ",
"Country_DE": "ドイツ",
"Country_DJ": "ジブチ",
"Country_DK": "デンマーク",
@@ -305,6 +305,8 @@
"Format_Date_Day_Month": "M月d日(E)",
"Format_Date_Long": "y年M月d日EEEE",
"Format_Date_Short": "y\/MM\/dd",
+ "Format_Hour_12": "aK時",
+ "Format_Hour_24": "H時",
"Format_Interval_Long_D": "y年M月d日~d日",
"Format_Interval_Long_M": "y年M月d日~M月d日",
"Format_Interval_Long_Y": "y年M月d日~y年M月d日",
diff --git a/plugins/Intl/lang/ka.json b/plugins/Intl/lang/ka.json
index f7ba2b9a72..5f2632617d 100644
--- a/plugins/Intl/lang/ka.json
+++ b/plugins/Intl/lang/ka.json
@@ -63,7 +63,7 @@
"Country_CW": "კიურასაო",
"Country_CX": "შობის კუნძული",
"Country_CY": "კვიპროსი",
- "Country_CZ": "ჩეხეთის რესპუბლიკა",
+ "Country_CZ": "ჩეხეთი",
"Country_DE": "გერმანია",
"Country_DJ": "ჯიბუტი",
"Country_DK": "დანია",
@@ -305,6 +305,8 @@
"Format_Date_Day_Month": "E, d MMM",
"Format_Date_Long": "EEEE, dd MMMM, y",
"Format_Date_Short": "d MMM. y",
+ "Format_Hour_12": "h a",
+ "Format_Hour_24": "HH",
"Format_Interval_Long_D": "d–d MMMM, y",
"Format_Interval_Long_M": "dd MMMM. – dd MMMM. y",
"Format_Interval_Long_Y": "dd MMMM. y – d MMMM. y",
diff --git a/plugins/Intl/lang/ko.json b/plugins/Intl/lang/ko.json
index 0855521b95..dad90d0008 100644
--- a/plugins/Intl/lang/ko.json
+++ b/plugins/Intl/lang/ko.json
@@ -305,6 +305,8 @@
"Format_Date_Day_Month": "MMM d일 (E)",
"Format_Date_Long": "y년 M월 d일 EEEE",
"Format_Date_Short": "y. M. d.",
+ "Format_Hour_12": "a h시",
+ "Format_Hour_24": "H시",
"Format_Interval_Long_D": "y년 M월 d일~d일",
"Format_Interval_Long_M": "y년 M월 d일 ~ M월 d일",
"Format_Interval_Long_Y": "y년 M월 d일 ~ y년 M월 d일",
diff --git a/plugins/Intl/lang/lt.json b/plugins/Intl/lang/lt.json
index 0df15e67f0..03ff52afa8 100644
--- a/plugins/Intl/lang/lt.json
+++ b/plugins/Intl/lang/lt.json
@@ -305,6 +305,8 @@
"Format_Date_Day_Month": "MM-dd, E",
"Format_Date_Long": "y 'm'. MMMM d 'd'., EEEE",
"Format_Date_Short": "y-MM-dd",
+ "Format_Hour_12": "hh a",
+ "Format_Hour_24": "HH",
"Format_Interval_Long_D": "y MMMM d–d",
"Format_Interval_Long_M": "y MMMM d – MMMM d",
"Format_Interval_Long_Y": "y MMMM d – y MMMM d",
diff --git a/plugins/Intl/lang/lv.json b/plugins/Intl/lang/lv.json
index 4a33374724..884fc7638e 100644
--- a/plugins/Intl/lang/lv.json
+++ b/plugins/Intl/lang/lv.json
@@ -63,7 +63,7 @@
"Country_CW": "Kirasao",
"Country_CX": "Ziemsvētku sala",
"Country_CY": "Kipra",
- "Country_CZ": "Čehijas Republika",
+ "Country_CZ": "Čehija",
"Country_DE": "Vācija",
"Country_DJ": "Džibutija",
"Country_DK": "Dānija",
@@ -116,7 +116,7 @@
"Country_IO": "Indijas okeāna Britu teritorija",
"Country_IQ": "Irāka",
"Country_IR": "Irāna",
- "Country_IS": "Īslande",
+ "Country_IS": "Islande",
"Country_IT": "Itālija",
"Country_JE": "Džērsija",
"Country_JM": "Jamaika",
@@ -305,6 +305,8 @@
"Format_Date_Day_Month": "E, d. MMM",
"Format_Date_Long": "EEEE, y. 'gada' d. MMMM",
"Format_Date_Short": "y. 'gada' d. MMM",
+ "Format_Hour_12": "h a",
+ "Format_Hour_24": "HH",
"Format_Interval_Long_D": "y. 'gada' d.–d. MMMM",
"Format_Interval_Long_M": "y. 'gada' d. MMMM – d. MMMM",
"Format_Interval_Long_Y": "y. 'gada' d. MMMM – y. 'gada' d. MMMM",
@@ -388,7 +390,7 @@
"Language_ii": "Sičuaņas ji",
"Language_ik": "Inupiaku",
"Language_io": "Ido",
- "Language_is": "Īslandiešu",
+ "Language_is": "Islandiešu",
"Language_it": "Itāļu",
"Language_iu": "Inuītu",
"Language_ja": "Japāņu",
diff --git a/plugins/Intl/lang/nb.json b/plugins/Intl/lang/nb.json
index b7fa781a4d..38d5d9dd76 100644
--- a/plugins/Intl/lang/nb.json
+++ b/plugins/Intl/lang/nb.json
@@ -63,7 +63,7 @@
"Country_CW": "Curaçao",
"Country_CX": "Christmasøya",
"Country_CY": "Kypros",
- "Country_CZ": "Den tsjekkiske republikk",
+ "Country_CZ": "Tsjekkia",
"Country_DE": "Tyskland",
"Country_DJ": "Djibouti",
"Country_DK": "Danmark",
@@ -305,6 +305,8 @@
"Format_Date_Day_Month": "E d. MMM",
"Format_Date_Long": "EEEE d. MMMM y",
"Format_Date_Short": "d. MMM y",
+ "Format_Hour_12": "h a",
+ "Format_Hour_24": "HH",
"Format_Interval_Long_D": "d.–d. MMMM y",
"Format_Interval_Long_M": "d. MMMM–d. MMMM y",
"Format_Interval_Long_Y": "d. MMMM y–d. MMMM y",
diff --git a/plugins/Intl/lang/nl.json b/plugins/Intl/lang/nl.json
index 3d5fbab51d..b620e278a9 100644
--- a/plugins/Intl/lang/nl.json
+++ b/plugins/Intl/lang/nl.json
@@ -63,7 +63,7 @@
"Country_CW": "Curaçao",
"Country_CX": "Christmaseiland",
"Country_CY": "Cyprus",
- "Country_CZ": "Tsjechië",
+ "Country_CZ": "Tsjechische Republiek",
"Country_DE": "Duitsland",
"Country_DJ": "Djibouti",
"Country_DK": "Denemarken",
@@ -305,6 +305,8 @@
"Format_Date_Day_Month": "E d MMM",
"Format_Date_Long": "EEEE d MMMM y",
"Format_Date_Short": "d MMM y",
+ "Format_Hour_12": "h a",
+ "Format_Hour_24": "HH",
"Format_Interval_Long_D": "d–d MMMM y",
"Format_Interval_Long_M": "d MMMM – d MMMM y",
"Format_Interval_Long_Y": "d MMMM y – d MMMM y",
diff --git a/plugins/Intl/lang/nn.json b/plugins/Intl/lang/nn.json
index 95406e4a67..9c2fe0373a 100644
--- a/plugins/Intl/lang/nn.json
+++ b/plugins/Intl/lang/nn.json
@@ -304,6 +304,8 @@
"Format_Date_Day_Month": "E d. MMM",
"Format_Date_Long": "EEEE d. MMMM y",
"Format_Date_Short": "d. MMM y",
+ "Format_Hour_12": "h a",
+ "Format_Hour_24": "HH",
"Format_Interval_Long_D": "d.–d. MMMM y",
"Format_Interval_Long_M": "d. MMMM–d. MMMM y",
"Format_Interval_Long_Y": "d. MMMM y–d. MMMM y",
diff --git a/plugins/Intl/lang/pl.json b/plugins/Intl/lang/pl.json
index b3bc1f32fd..89f64fcbfa 100644
--- a/plugins/Intl/lang/pl.json
+++ b/plugins/Intl/lang/pl.json
@@ -305,6 +305,8 @@
"Format_Date_Day_Month": "E, d MMM",
"Format_Date_Long": "EEEE, d MMMM y",
"Format_Date_Short": "d MMM y",
+ "Format_Hour_12": "h a",
+ "Format_Hour_24": "HH",
"Format_Interval_Long_D": "d–d MMMM y",
"Format_Interval_Long_M": "d MMMM – d MMMM y",
"Format_Interval_Long_Y": "d MMMM y – d MMMM y",
diff --git a/plugins/Intl/lang/pt-br.json b/plugins/Intl/lang/pt-br.json
index b52e1555a4..934d5ef107 100644
--- a/plugins/Intl/lang/pt-br.json
+++ b/plugins/Intl/lang/pt-br.json
@@ -63,7 +63,7 @@
"Country_CW": "Curaçao",
"Country_CX": "Ilha Christmas",
"Country_CY": "Chipre",
- "Country_CZ": "República Tcheca",
+ "Country_CZ": "Tchéquia",
"Country_DE": "Alemanha",
"Country_DJ": "Djibuti",
"Country_DK": "Dinamarca",
@@ -305,6 +305,8 @@
"Format_Date_Day_Month": "E, d 'de' MMM",
"Format_Date_Long": "EEEE, d 'de' MMMM 'de' y",
"Format_Date_Short": "d 'de' MMM 'de' y",
+ "Format_Hour_12": "h a",
+ "Format_Hour_24": "HH",
"Format_Interval_Long_D": "d – d 'de' MMMM 'de' y",
"Format_Interval_Long_M": "d 'de' MMMM – d 'de' MMMM 'de' y",
"Format_Interval_Long_Y": "d 'de' MMMM 'de' y – d 'de' MMMM 'de' y",
diff --git a/plugins/Intl/lang/pt.json b/plugins/Intl/lang/pt.json
index d82075c57f..ab43bc3df0 100644
--- a/plugins/Intl/lang/pt.json
+++ b/plugins/Intl/lang/pt.json
@@ -305,6 +305,8 @@
"Format_Date_Day_Month": "E, d\/MM",
"Format_Date_Long": "EEEE, d 'de' MMMM 'de' y",
"Format_Date_Short": "dd\/MM\/y",
+ "Format_Hour_12": "h a",
+ "Format_Hour_24": "HH",
"Format_Interval_Long_D": "d–d 'de' MMMM 'de' y",
"Format_Interval_Long_M": "d 'de' MMMM – d 'de' MMMM 'de' y",
"Format_Interval_Long_Y": "d 'de' MMMM 'de' y – d 'de' MMMM 'de' y",
diff --git a/plugins/Intl/lang/ro.json b/plugins/Intl/lang/ro.json
index 663d42f3ab..733cf78e7b 100644
--- a/plugins/Intl/lang/ro.json
+++ b/plugins/Intl/lang/ro.json
@@ -63,7 +63,7 @@
"Country_CW": "Curaçao",
"Country_CX": "Insula Christmas",
"Country_CY": "Cipru",
- "Country_CZ": "Republica Cehă",
+ "Country_CZ": "Cehia",
"Country_DE": "Germania",
"Country_DJ": "Djibouti",
"Country_DK": "Danemarca",
@@ -305,6 +305,8 @@
"Format_Date_Day_Month": "E, d MMM",
"Format_Date_Long": "EEEE, d MMMM y",
"Format_Date_Short": "d MMM y",
+ "Format_Hour_12": "h a",
+ "Format_Hour_24": "HH",
"Format_Interval_Long_D": "d–d MMMM y",
"Format_Interval_Long_M": "d MMMM – d MMMM y",
"Format_Interval_Long_Y": "d MMMM y – d MMMM y",
diff --git a/plugins/Intl/lang/ru.json b/plugins/Intl/lang/ru.json
index e3d47e4dc4..8a3dc80345 100644
--- a/plugins/Intl/lang/ru.json
+++ b/plugins/Intl/lang/ru.json
@@ -305,6 +305,8 @@
"Format_Date_Day_Month": "ccc, d MMM",
"Format_Date_Long": "EEEE, d MMMM y 'г'.",
"Format_Date_Short": "d MMM y 'г'.",
+ "Format_Hour_12": "h a",
+ "Format_Hour_24": "H",
"Format_Interval_Long_D": "d–d MMMM y 'г'.",
"Format_Interval_Long_M": "d MMMM – d MMMM y 'г'.",
"Format_Interval_Long_Y": "d MMMM y 'г'. – d MMMM y 'г'.",
diff --git a/plugins/Intl/lang/sk.json b/plugins/Intl/lang/sk.json
index 3efd518b7e..f9397c9ae2 100644
--- a/plugins/Intl/lang/sk.json
+++ b/plugins/Intl/lang/sk.json
@@ -63,7 +63,7 @@
"Country_CW": "Curaçao",
"Country_CX": "Vianočný ostrov",
"Country_CY": "Cyprus",
- "Country_CZ": "Česká republika",
+ "Country_CZ": "Česko",
"Country_DE": "Nemecko",
"Country_DJ": "Džibutsko",
"Country_DK": "Dánsko",
@@ -305,6 +305,8 @@
"Format_Date_Day_Month": "E d. M.",
"Format_Date_Long": "EEEE, d. MMMM y",
"Format_Date_Short": "d. M. y",
+ "Format_Hour_12": "h a",
+ "Format_Hour_24": "H",
"Format_Interval_Long_D": "d. – d. M. y",
"Format_Interval_Long_M": "d. M. – d. M. y",
"Format_Interval_Long_Y": "d. M. y – d. M. y",
diff --git a/plugins/Intl/lang/sl.json b/plugins/Intl/lang/sl.json
index 805a679a08..bd55af10ad 100644
--- a/plugins/Intl/lang/sl.json
+++ b/plugins/Intl/lang/sl.json
@@ -305,6 +305,8 @@
"Format_Date_Day_Month": "E, d. MMM",
"Format_Date_Long": "EEEE, dd. MMMM y",
"Format_Date_Short": "d. MMM y",
+ "Format_Hour_12": "h a",
+ "Format_Hour_24": "HH'h'",
"Format_Interval_Long_D": "d.–d. MMMM y",
"Format_Interval_Long_M": "d. MMMM–d. MMMM y",
"Format_Interval_Long_Y": "d. MMMM y–d. MMMM y",
@@ -561,7 +563,7 @@
"NumberFormatPercent": "#,##0 %",
"NumberSymbolDecimal": ",",
"NumberSymbolGroup": ".",
- "NumberSymbolMinus": "–",
+ "NumberSymbolMinus": "−",
"NumberSymbolPercent": "%",
"NumberSymbolPlus": "+",
"OneDay": "1 dan",
diff --git a/plugins/Intl/lang/sq.json b/plugins/Intl/lang/sq.json
index 6a5954b2df..0ac3b260f0 100644
--- a/plugins/Intl/lang/sq.json
+++ b/plugins/Intl/lang/sq.json
@@ -63,7 +63,7 @@
"Country_CW": "Kuraçao",
"Country_CX": "Ishulli i Krishtlindjes",
"Country_CY": "Qipro",
- "Country_CZ": "Republika Çeke",
+ "Country_CZ": "Çeki",
"Country_DE": "Gjermani",
"Country_DJ": "Xhibuti",
"Country_DK": "Danimarkë",
@@ -305,6 +305,8 @@
"Format_Date_Day_Month": "E, d MMM",
"Format_Date_Long": "EEEE, d MMMM y",
"Format_Date_Short": "d MMM y",
+ "Format_Hour_12": "h a",
+ "Format_Hour_24": "HH",
"Format_Interval_Long_D": "d – d MMMM y",
"Format_Interval_Long_M": "d MMMM – d MMMM y",
"Format_Interval_Long_Y": "d MMMM y – d MMMM y",
diff --git a/plugins/Intl/lang/sr.json b/plugins/Intl/lang/sr.json
index aaf5b36f1f..e13fb8bad2 100644
--- a/plugins/Intl/lang/sr.json
+++ b/plugins/Intl/lang/sr.json
@@ -305,6 +305,8 @@
"Format_Date_Day_Month": "E d. MMM",
"Format_Date_Long": "EEEE, dd. MMMM y.",
"Format_Date_Short": "dd.MM.y.",
+ "Format_Hour_12": "h a",
+ "Format_Hour_24": "HH",
"Format_Interval_Long_D": "dd.–dd. MMMM y.",
"Format_Interval_Long_M": "dd. MMMM – dd. MMMM y.",
"Format_Interval_Long_Y": "dd. MMMM y. – dd. MMMM y.",
diff --git a/plugins/Intl/lang/sv.json b/plugins/Intl/lang/sv.json
index 5313dded02..a53a7c252e 100644
--- a/plugins/Intl/lang/sv.json
+++ b/plugins/Intl/lang/sv.json
@@ -305,6 +305,8 @@
"Format_Date_Day_Month": "E d MMM",
"Format_Date_Long": "EEEE d MMMM y",
"Format_Date_Short": "d MMM y",
+ "Format_Hour_12": "h a",
+ "Format_Hour_24": "HH",
"Format_Interval_Long_D": "d–d MMMM y",
"Format_Interval_Long_M": "d MMMM–d MMMM y",
"Format_Interval_Long_Y": "d MMMM y–d MMMM y",
diff --git a/plugins/Intl/lang/ta.json b/plugins/Intl/lang/ta.json
index 35dbccb1e9..72367ea9eb 100644
--- a/plugins/Intl/lang/ta.json
+++ b/plugins/Intl/lang/ta.json
@@ -63,7 +63,7 @@
"Country_CW": "குராகவ்",
"Country_CX": "கிறிஸ்துமஸ் தீவு",
"Country_CY": "சைப்ரஸ்",
- "Country_CZ": "செக் குடியரசு",
+ "Country_CZ": "செசியா",
"Country_DE": "ஜெர்மனி",
"Country_DJ": "ஜிபௌட்டி",
"Country_DK": "டென்மார்க்",
@@ -305,6 +305,8 @@
"Format_Date_Day_Month": "MMM d, E",
"Format_Date_Long": "EEEE, d MMMM, y",
"Format_Date_Short": "d MMM, y",
+ "Format_Hour_12": "a h",
+ "Format_Hour_24": "HH",
"Format_Interval_Long_D": "d – d MMMM, y",
"Format_Interval_Long_M": "d MMMM – d MMMM, y",
"Format_Interval_Long_Y": "d MMMM, y – d MMMM, y",
diff --git a/plugins/Intl/lang/te.json b/plugins/Intl/lang/te.json
index 2442a474f5..d9fbe08276 100644
--- a/plugins/Intl/lang/te.json
+++ b/plugins/Intl/lang/te.json
@@ -63,7 +63,7 @@
"Country_CW": "కురాకవో",
"Country_CX": "క్రిస్మస్ దీవి",
"Country_CY": "సైప్రస్",
- "Country_CZ": "చెక్ రిపబ్లిక్",
+ "Country_CZ": "చెక్‌చియ",
"Country_DE": "జర్మనీ",
"Country_DJ": "జిబౌటి",
"Country_DK": "డెన్మార్క్",
@@ -305,6 +305,8 @@
"Format_Date_Day_Month": "E, d MMM",
"Format_Date_Long": "d, MMMM y, EEEE",
"Format_Date_Short": "d MMM, y",
+ "Format_Hour_12": "h a",
+ "Format_Hour_24": "HH",
"Format_Interval_Long_D": "d–d MMMM, y",
"Format_Interval_Long_M": "d MMMM – d MMMM, y",
"Format_Interval_Long_Y": "d MMMM, y – d MMMM, y",
diff --git a/plugins/Intl/lang/th.json b/plugins/Intl/lang/th.json
index f31a27b455..f1a73cf34e 100644
--- a/plugins/Intl/lang/th.json
+++ b/plugins/Intl/lang/th.json
@@ -63,7 +63,7 @@
"Country_CW": "คูราเซา",
"Country_CX": "เกาะคริสต์มาส",
"Country_CY": "ไซปรัส",
- "Country_CZ": "สาธารณรัฐเช็ก",
+ "Country_CZ": "เช็ก",
"Country_DE": "เยอรมนี",
"Country_DJ": "จิบูตี",
"Country_DK": "เดนมาร์ก",
@@ -305,6 +305,8 @@
"Format_Date_Day_Month": "E d MMM",
"Format_Date_Long": "EEEEที่ d MMMM G y",
"Format_Date_Short": "d MMM y",
+ "Format_Hour_12": "h a",
+ "Format_Hour_24": "HH",
"Format_Interval_Long_D": "d–d MMMM G y",
"Format_Interval_Long_M": "d MMMM – d MMMM G y",
"Format_Interval_Long_Y": "d MMMM G y – d MMMM y",
diff --git a/plugins/Intl/lang/tl.json b/plugins/Intl/lang/tl.json
index 50f776d514..24fcf6ee75 100644
--- a/plugins/Intl/lang/tl.json
+++ b/plugins/Intl/lang/tl.json
@@ -63,7 +63,7 @@
"Country_CW": "Curaçao",
"Country_CX": "Christmas Island",
"Country_CY": "Cyprus",
- "Country_CZ": "Czech Republic",
+ "Country_CZ": "Czechia",
"Country_DE": "Germany",
"Country_DJ": "Djibouti",
"Country_DK": "Denmark",
@@ -305,6 +305,8 @@
"Format_Date_Day_Month": "E, MMM d",
"Format_Date_Long": "EEEE, MMMM d, y",
"Format_Date_Short": "MMM d, y",
+ "Format_Hour_12": "h a",
+ "Format_Hour_24": "HH",
"Format_Interval_Long_D": "MMMM d–d, y",
"Format_Interval_Long_M": "MMMM d – MMMM d, y",
"Format_Interval_Long_Y": "MMMM d, y – MMMM d, y",
diff --git a/plugins/Intl/lang/tr.json b/plugins/Intl/lang/tr.json
index f94ba5e001..1aa9c650fe 100644
--- a/plugins/Intl/lang/tr.json
+++ b/plugins/Intl/lang/tr.json
@@ -63,7 +63,7 @@
"Country_CW": "Curaçao",
"Country_CX": "Christmas Adası",
"Country_CY": "Kıbrıs",
- "Country_CZ": "Çek Cumhuriyeti",
+ "Country_CZ": "Çekya",
"Country_DE": "Almanya",
"Country_DJ": "Cibuti",
"Country_DK": "Danimarka",
@@ -305,6 +305,8 @@
"Format_Date_Day_Month": "d MMMM E",
"Format_Date_Long": "d MMMM y EEEE",
"Format_Date_Short": "d MMM y",
+ "Format_Hour_12": "a h",
+ "Format_Hour_24": "HH",
"Format_Interval_Long_D": "d–d MMMM y",
"Format_Interval_Long_M": "d MMMM – d MMMM y",
"Format_Interval_Long_Y": "d MMMM y – d MMMM y",
diff --git a/plugins/Intl/lang/uk.json b/plugins/Intl/lang/uk.json
index e6f3e902e5..be5710fe76 100644
--- a/plugins/Intl/lang/uk.json
+++ b/plugins/Intl/lang/uk.json
@@ -63,7 +63,7 @@
"Country_CW": "Кюрасао",
"Country_CX": "Острів Різдва",
"Country_CY": "Кіпр",
- "Country_CZ": "Чеська Республіка",
+ "Country_CZ": "Чехія",
"Country_DE": "Німеччина",
"Country_DJ": "Джибуті",
"Country_DK": "Данія",
@@ -305,6 +305,8 @@
"Format_Date_Day_Month": "E, d MMM",
"Format_Date_Long": "EEEE, d MMMM y 'р'.",
"Format_Date_Short": "d MMM y 'р'.",
+ "Format_Hour_12": "h a",
+ "Format_Hour_24": "HH",
"Format_Interval_Long_D": "d–d MMMM y",
"Format_Interval_Long_M": "d MMMM – d MMMM y",
"Format_Interval_Long_Y": "d MMMM y – d MMMM y",
diff --git a/plugins/Intl/lang/vi.json b/plugins/Intl/lang/vi.json
index d90239f519..bd64a85921 100644
--- a/plugins/Intl/lang/vi.json
+++ b/plugins/Intl/lang/vi.json
@@ -63,7 +63,7 @@
"Country_CW": "Curaçao",
"Country_CX": "Đảo Giáng Sinh",
"Country_CY": "Síp",
- "Country_CZ": "Cộng hòa Séc",
+ "Country_CZ": "Czechia",
"Country_DE": "Đức",
"Country_DJ": "Djibouti",
"Country_DK": "Đan Mạch",
@@ -305,6 +305,8 @@
"Format_Date_Day_Month": "E, d MMM",
"Format_Date_Long": "EEEE, d MMMM, y",
"Format_Date_Short": "d MMM, y",
+ "Format_Hour_12": "h a",
+ "Format_Hour_24": "HH",
"Format_Interval_Long_D": "d – d MMMM, y",
"Format_Interval_Long_M": "d MMMM – d MMMM, y",
"Format_Interval_Long_Y": "'Ngày' dd 'tháng' M 'năm' y - 'Ngày' dd 'tháng' M 'năm' y",
diff --git a/plugins/Intl/lang/zh-cn.json b/plugins/Intl/lang/zh-cn.json
index 954b5b4d13..ee37bb0e57 100644
--- a/plugins/Intl/lang/zh-cn.json
+++ b/plugins/Intl/lang/zh-cn.json
@@ -63,7 +63,7 @@
"Country_CW": "库拉索",
"Country_CX": "圣诞岛",
"Country_CY": "塞浦路斯",
- "Country_CZ": "捷克共和国",
+ "Country_CZ": "捷克",
"Country_DE": "德国",
"Country_DJ": "吉布提",
"Country_DK": "丹麦",
@@ -305,6 +305,8 @@
"Format_Date_Day_Month": "M月d日E",
"Format_Date_Long": "y年M月d日EEEE",
"Format_Date_Short": "y年M月d日",
+ "Format_Hour_12": "ah时",
+ "Format_Hour_24": "H时",
"Format_Interval_Long_D": "y年M月d日至d日",
"Format_Interval_Long_M": "y年M月d日至M月d日",
"Format_Interval_Long_Y": "y年M月d日至y年M月d日",
diff --git a/plugins/Intl/lang/zh-tw.json b/plugins/Intl/lang/zh-tw.json
index c4a345a33a..fcbc0cf3ff 100644
--- a/plugins/Intl/lang/zh-tw.json
+++ b/plugins/Intl/lang/zh-tw.json
@@ -63,7 +63,7 @@
"Country_CW": "庫拉索",
"Country_CX": "聖誕島",
"Country_CY": "賽普勒斯",
- "Country_CZ": "捷克共和國",
+ "Country_CZ": "捷克",
"Country_DE": "德國",
"Country_DJ": "吉布地",
"Country_DK": "丹麥",
@@ -305,6 +305,8 @@
"Format_Date_Day_Month": "M月d日 E",
"Format_Date_Long": "y年M月d日 EEEE",
"Format_Date_Short": "y年M月d日",
+ "Format_Hour_12": "ah時",
+ "Format_Hour_24": "H時",
"Format_Interval_Long_D": "y年M月d日至d日",
"Format_Interval_Long_M": "y年M月d日至M月d日",
"Format_Interval_Long_Y": "y年M月d日至y年M月d日",