aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMatt Mayer <[email protected]>2023-03-30 22:21:22 +0700
committerGitHub <[email protected]>2023-03-30 15:21:22 +0000
commit6ba509392365103adcc4b5d6ca62fc74204a39ec (patch)
treeba8a9105d1d80bdf675bdbfef6818395bca09e28 /src
parentb5bfca4043903340dee9ed3cd8965bcdbee85211 (diff)
downloadfaker-6ba509392365103adcc4b5d6ca62fc74204a39ec.tar.xz
faker-6ba509392365103adcc4b5d6ca62fc74204a39ec.zip
feat(locale): add af_ZA and zu_ZA states (#1983)
Diffstat (limited to 'src')
-rw-r--r--src/locales/af_ZA/location/index.ts2
-rw-r--r--src/locales/af_ZA/location/state.ts11
-rw-r--r--src/locales/zu_ZA/location/index.ts2
-rw-r--r--src/locales/zu_ZA/location/state.ts11
4 files changed, 26 insertions, 0 deletions
diff --git a/src/locales/af_ZA/location/index.ts b/src/locales/af_ZA/location/index.ts
index 112133b4..b34a7a06 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 00000000..0de8fc24
--- /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 112133b4..b34a7a06 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 00000000..ea7bf15c
--- /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',
+];