diff options
author | Morris Jobke <hey@morrisjobke.de> | 2020-05-18 11:48:10 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-18 11:48:10 +0200 |
commit | 0a21f0f2959f4cded1284e50e3ca536b5cfab088 (patch) | |
tree | 36fb7ba1d74ecb7bacd038a288d331e2393cd195 | |
parent | 72cd146322797baca93d2c23ec2fe609d7b534b8 (diff) | |
parent | 3d85b91a3cca891f52bea1f16d298e2204c499ee (diff) | |
download | nextcloud-server-0a21f0f2959f4cded1284e50e3ca536b5cfab088.tar.gz nextcloud-server-0a21f0f2959f4cded1284e50e3ca536b5cfab088.zip |
Merge pull request #21003 from nextcloud/enh/noid/validate-locale
Remove entries from locales.json incompatible with punic
-rw-r--r-- | resources/locales.json | 8 | ||||
-rwxr-xr-x | resources/update-locales.php | 10 |
2 files changed, 13 insertions, 5 deletions
diff --git a/resources/locales.json b/resources/locales.json index a65cf530514..7cf9fa9b890 100644 --- a/resources/locales.json +++ b/resources/locales.json @@ -912,10 +912,6 @@ "name": "English (United States)" }, { - "code": "en_US_POSIX", - "name": "English (United States, Computer)" - }, - { "code": "en_VC", "name": "English (St. Vincent & Grenadines)" }, @@ -1400,6 +1396,10 @@ "name": "Irish" }, { + "code": "ga_GB", + "name": "Irish (United Kingdom)" + }, + { "code": "ga_IE", "name": "Irish (Ireland)" }, diff --git a/resources/update-locales.php b/resources/update-locales.php index d5addd0a9ae..50d848c76a6 100755 --- a/resources/update-locales.php +++ b/resources/update-locales.php @@ -29,13 +29,21 @@ if (!extension_loaded('intl')) { exit(1); } -$locales = array_map(function (string $localeCode) { +require '../3rdparty/autoload.php'; + +$locales = array_map(static function (string $localeCode) { return [ 'code' => $localeCode, 'name' => Locale::getDisplayName($localeCode, 'en') ]; }, ResourceBundle::getLocales('')); +$locales = array_filter($locales, static function (array $locale) { + return is_array(Punic\Data::explodeLocale($locale['code'])); +}); + +$locales = array_values($locales); + if (file_put_contents(__DIR__ . '/locales.json', json_encode($locales, JSON_PRETTY_PRINT)) === false) { echo 'Failed to update locales.json'; exit(1); |