feat(i18n): separate en-US from en-GB locale (#589)

This commit is contained in:
Jess 2022-12-28 01:50:26 -05:00 committed by GitHub
parent 8fbf4a7628
commit f4de4d3e3b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 374 additions and 8 deletions

View file

@ -7,7 +7,12 @@ const locales: LocaleObject[] = [
{
code: 'en-US',
file: 'en-US.json',
name: 'English',
name: 'English (US)',
},
{
code: 'en-GB',
file: 'en-GB.json',
name: 'English (UK)',
},
{
code: 'de-DE',