aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric Cheng <[email protected]>2023-07-14 16:01:20 -0400
committerGitHub <[email protected]>2023-07-14 20:01:20 +0000
commit2afa23f32f4bb52aeecb6189282b37c6c48f7c84 (patch)
tree5533a94c11841b7a4584669b8d3702642957253f
parent12a511c9e4781929620dc2906f87661c5f58a480 (diff)
downloadfaker-2afa23f32f4bb52aeecb6189282b37c6c48f7c84.tar.xz
faker-2afa23f32f4bb52aeecb6189282b37c6c48f7c84.zip
feat(locale): add states for Turkey (tr) (#2231)
-rw-r--r--src/locales/tr/location/index.ts2
-rw-r--r--src/locales/tr/location/state.ts83
2 files changed, 85 insertions, 0 deletions
diff --git a/src/locales/tr/location/index.ts b/src/locales/tr/location/index.ts
index 60342173..2c7cf3f6 100644
--- a/src/locales/tr/location/index.ts
+++ b/src/locales/tr/location/index.ts
@@ -9,6 +9,7 @@ import city_pattern from './city_pattern';
import country from './country';
import default_country from './default_country';
import postcode from './postcode';
+import state from './state';
import street_address from './street_address';
import street_name from './street_name';
import street_pattern from './street_pattern';
@@ -20,6 +21,7 @@ const location: LocationDefinition = {
country,
default_country,
postcode,
+ state,
street_address,
street_name,
street_pattern,
diff --git a/src/locales/tr/location/state.ts b/src/locales/tr/location/state.ts
new file mode 100644
index 00000000..a297215a
--- /dev/null
+++ b/src/locales/tr/location/state.ts
@@ -0,0 +1,83 @@
+export default [
+ 'Adana',
+ 'Adıyaman',
+ 'Afyonkarahisar',
+ 'Ağrı',
+ 'Aksaray',
+ 'Amasya',
+ 'Ankara',
+ 'Antalya',
+ 'Ardahan',
+ 'Artvin',
+ 'Aydın',
+ 'Balıkesir',
+ 'Bartın',
+ 'Batman',
+ 'Bayburt',
+ 'Bilecik',
+ 'Bingöl',
+ 'Bitlis',
+ 'Bolu',
+ 'Burdur',
+ 'Bursa',
+ 'Çanakkale',
+ 'Çankırı',
+ 'Çorum',
+ 'Denizli',
+ 'Diyarbakır',
+ 'Düzce',
+ 'Edirne',
+ 'Elazığ',
+ 'Erzincan',
+ 'Erzurum',
+ 'Eskişehir',
+ 'Gaziantep',
+ 'Giresun',
+ 'Gümüşhane',
+ 'Hakkâri',
+ 'Hatay',
+ 'Iğdır',
+ 'Isparta',
+ 'İstanbul',
+ 'İzmir',
+ 'Kahramanmaraş',
+ 'Karabük',
+ 'Karaman',
+ 'Kars',
+ 'Kastamonu',
+ 'Kayseri',
+ 'Kırıkkale',
+ 'Kırklareli',
+ 'Kırşehir',
+ 'Kilis',
+ 'Kocaeli',
+ 'Konya',
+ 'Kütahya',
+ 'Malatya',
+ 'Manisa',
+ 'Mardin',
+ 'Mersin',
+ 'Muğla',
+ 'Muş',
+ 'Nevşehir',
+ 'Niğde',
+ 'Ordu',
+ 'Osmaniye',
+ 'Rize',
+ 'Sakarya',
+ 'Samsun',
+ 'Siirt',
+ 'Sinop',
+ 'Sivas',
+ 'Şanlıurfa',
+ 'Şırnak',
+ 'Tekirdağ',
+ 'Tokat',
+ 'Trabzon',
+ 'Tunceli',
+ 'Uşak',
+ 'Van',
+ 'Yalova',
+ 'Yozgat',
+ 'Zonguldak',
+];