From 6ba509392365103adcc4b5d6ca62fc74204a39ec Mon Sep 17 00:00:00 2001 From: Matt Mayer <152770+matthewmayer@users.noreply.github.com> Date: Thu, 30 Mar 2023 22:21:22 +0700 Subject: [PATCH] feat(locale): add af_ZA and zu_ZA states (#1983) --- src/locales/af_ZA/location/index.ts | 2 ++ src/locales/af_ZA/location/state.ts | 11 +++++++++++ src/locales/zu_ZA/location/index.ts | 2 ++ src/locales/zu_ZA/location/state.ts | 11 +++++++++++ 4 files changed, 26 insertions(+) create mode 100644 src/locales/af_ZA/location/state.ts create mode 100644 src/locales/zu_ZA/location/state.ts diff --git a/src/locales/af_ZA/location/index.ts b/src/locales/af_ZA/location/index.ts index 112133b4b72..b34a7a06b0c 100644 --- a/src/locales/af_ZA/location/index.ts +++ b/src/locales/af_ZA/location/index.ts @@ -6,12 +6,14 @@ import type { LocationDefinitions } from '../../..'; import city from './city'; import default_country from './default_country'; import postcode from './postcode'; +import state from './state'; import street from './street'; const location: LocationDefinitions = { city, default_country, postcode, + state, street, }; diff --git a/src/locales/af_ZA/location/state.ts b/src/locales/af_ZA/location/state.ts new file mode 100644 index 00000000000..0de8fc24739 --- /dev/null +++ b/src/locales/af_ZA/location/state.ts @@ -0,0 +1,11 @@ +export default [ + 'Gauteng', + 'KwaZulu-Natal', + 'Limpopo', + 'Mpumalanga', + 'Noord-Kaap', + 'Noordwes', + 'Oos-Kaap', + 'Vrystaat', + 'Wes-Kaap', +]; diff --git a/src/locales/zu_ZA/location/index.ts b/src/locales/zu_ZA/location/index.ts index 112133b4b72..b34a7a06b0c 100644 --- a/src/locales/zu_ZA/location/index.ts +++ b/src/locales/zu_ZA/location/index.ts @@ -6,12 +6,14 @@ import type { LocationDefinitions } from '../../..'; import city from './city'; import default_country from './default_country'; import postcode from './postcode'; +import state from './state'; import street from './street'; const location: LocationDefinitions = { city, default_country, postcode, + state, street, }; diff --git a/src/locales/zu_ZA/location/state.ts b/src/locales/zu_ZA/location/state.ts new file mode 100644 index 00000000000..ea7bf15c7be --- /dev/null +++ b/src/locales/zu_ZA/location/state.ts @@ -0,0 +1,11 @@ +export default [ + 'EGoli', + 'IFuleyisitata', + 'IKwaZulu-Natali', + 'ILimpopo', + 'IMpumalanga Kapa', + 'IMpumalanga', + 'INtshonalanga Kapa', + 'INyakatho Kapa', + 'INyakatho-Ntshonalanga', +];