]> source.dussan.org Git - nextcloud-server.git/commitdiff
Remove entries from locales.json incompatible with punic 21003/head
authorDaniel Kesselberg <mail@danielkesselberg.de>
Sat, 16 May 2020 21:21:22 +0000 (23:21 +0200)
committerDaniel Kesselberg <mail@danielkesselberg.de>
Sat, 16 May 2020 21:21:22 +0000 (23:21 +0200)
As reported at https://github.com/nextcloud/server/issues/20999 the list contains en_US_POSIX as locale but punic is unable to parse such a locale. If you select that locale everyone is confused.

Signed-off-by: Daniel Kesselberg <mail@danielkesselberg.de>
resources/locales.json
resources/update-locales.php

index a65cf53051445d2ed34d3286dfc5ae75850d3fbe..7cf9fa9b89083f7cddfa40d2f630953f2065c3d0 100644 (file)
         "code": "en_US",
         "name": "English (United States)"
     },
-    {
-        "code": "en_US_POSIX",
-        "name": "English (United States, Computer)"
-    },
     {
         "code": "en_VC",
         "name": "English (St. Vincent & Grenadines)"
         "code": "ga",
         "name": "Irish"
     },
+    {
+        "code": "ga_GB",
+        "name": "Irish (United Kingdom)"
+    },
     {
         "code": "ga_IE",
         "name": "Irish (Ireland)"
index d5addd0a9ae91e1b4e9b13e6e48b58435cbbf13e..50d848c76a6881c33d31269dcfd4615f4249127a 100755 (executable)
@@ -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);