From 12dc0657bae205cd0f0d3bb03458736c7d551ce0 Mon Sep 17 00:00:00 2001 From: freearhey Date: Mon, 8 Feb 2021 13:25:29 +0300 Subject: [PATCH] Update utils.js --- scripts/utils.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/scripts/utils.js b/scripts/utils.js index f48e79474e..cdb6dfe151 100644 --- a/scripts/utils.js +++ b/scripts/utils.js @@ -20,6 +20,8 @@ utils.code2flag = function (code) { switch (code) { case 'UK': return '🇬🇧' + case 'INT': + return '🌍' case 'UNSORTED': return '' default: @@ -38,6 +40,7 @@ utils.code2name = function (code) { code = code.toUpperCase() if (regions[code]) return regions[code].name if (code === 'US') return 'United States' + if (code === 'INT') return 'International' return intlDisplayNames.of(code) } catch (e) { return null