From cf2ce6830d42a1a91c1a2defcc02d86c1a782cf8 Mon Sep 17 00:00:00 2001 From: ST-DDT Date: Tue, 7 Mar 2023 17:36:26 +0100 Subject: fix: consistent locale names (#1884) --- src/definitions/definitions.ts | 2 +- src/locales/dv/index.ts | 2 +- src/locales/en_NG/index.ts | 2 +- src/locales/fr_BE/index.ts | 2 +- src/locales/hr/index.ts | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) (limited to 'src') diff --git a/src/definitions/definitions.ts b/src/definitions/definitions.ts index 65753ba7..afec8b28 100644 --- a/src/definitions/definitions.ts +++ b/src/definitions/definitions.ts @@ -55,7 +55,7 @@ export interface Definitions { */ export type LocaleDefinition = { /** - * The name of the language. + * The English name of the language (and the specific country, if defined). */ title: string; } & LocaleEntry; diff --git a/src/locales/dv/index.ts b/src/locales/dv/index.ts index 9ba28b8a..67314227 100644 --- a/src/locales/dv/index.ts +++ b/src/locales/dv/index.ts @@ -13,7 +13,7 @@ import person from './person'; import phone_number from './phone_number'; const dv: LocaleDefinition = { - title: 'Dhivehi', + title: 'Maldivian', cell_phone, color, company, diff --git a/src/locales/en_NG/index.ts b/src/locales/en_NG/index.ts index 91c1c64f..249b287b 100644 --- a/src/locales/en_NG/index.ts +++ b/src/locales/en_NG/index.ts @@ -10,7 +10,7 @@ import person from './person'; import phone_number from './phone_number'; const en_NG: LocaleDefinition = { - title: 'Nigeria (English)', + title: 'English (Nigeria)', company, internet, location, diff --git a/src/locales/fr_BE/index.ts b/src/locales/fr_BE/index.ts index cfbcf64b..927ba711 100644 --- a/src/locales/fr_BE/index.ts +++ b/src/locales/fr_BE/index.ts @@ -10,7 +10,7 @@ import person from './person'; import phone_number from './phone_number'; const fr_BE: LocaleDefinition = { - title: 'Français (Belgique)', + title: 'French (Belgium)', cell_phone, internet, location, diff --git a/src/locales/hr/index.ts b/src/locales/hr/index.ts index 1ef899b5..1bcbaa1c 100644 --- a/src/locales/hr/index.ts +++ b/src/locales/hr/index.ts @@ -11,7 +11,7 @@ import person from './person'; import phone_number from './phone_number'; const hr: LocaleDefinition = { - title: 'Hrvatski', + title: 'Croatian', cell_phone, date, internet, -- cgit v1.2.3