aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormakhtar-sarr <[email protected]>2023-11-14 08:34:47 +0000
committerGitHub <[email protected]>2023-11-14 09:34:47 +0100
commit36fc517d17591c8ea1d5135d9a93c7591e3d1f74 (patch)
tree7b52b568d8f50bcccb74140e1b1496a476640188
parent652da4f004f57ea5c69ecd99740c5718c46eeb2c (diff)
downloadfaker-36fc517d17591c8ea1d5135d9a93c7591e3d1f74.tar.xz
faker-36fc517d17591c8ea1d5135d9a93c7591e3d1f74.zip
feat(locale): add streets to location fr_SN (#2536)
-rw-r--r--src/locales/fr_SN/location/index.ts10
-rw-r--r--src/locales/fr_SN/location/secondary_address.ts1
-rw-r--r--src/locales/fr_SN/location/street_address.ts4
-rw-r--r--src/locales/fr_SN/location/street_pattern.ts1
-rw-r--r--src/locales/fr_SN/location/street_prefix.ts12
-rw-r--r--src/locales/fr_SN/location/street_suffix.ts33
6 files changed, 61 insertions, 0 deletions
diff --git a/src/locales/fr_SN/location/index.ts b/src/locales/fr_SN/location/index.ts
index f46a91ce..c13e4805 100644
--- a/src/locales/fr_SN/location/index.ts
+++ b/src/locales/fr_SN/location/index.ts
@@ -8,7 +8,12 @@ import city_name from './city_name';
import city_pattern from './city_pattern';
import default_country from './default_country';
import postcode from './postcode';
+import secondary_address from './secondary_address';
import state from './state';
+import street_address from './street_address';
+import street_pattern from './street_pattern';
+import street_prefix from './street_prefix';
+import street_suffix from './street_suffix';
const location: LocationDefinition = {
building_number,
@@ -16,7 +21,12 @@ const location: LocationDefinition = {
city_pattern,
default_country,
postcode,
+ secondary_address,
state,
+ street_address,
+ street_pattern,
+ street_prefix,
+ street_suffix,
};
export default location;
diff --git a/src/locales/fr_SN/location/secondary_address.ts b/src/locales/fr_SN/location/secondary_address.ts
new file mode 100644
index 00000000..776ec151
--- /dev/null
+++ b/src/locales/fr_SN/location/secondary_address.ts
@@ -0,0 +1 @@
+export default ['Apt. ###', '# étage'];
diff --git a/src/locales/fr_SN/location/street_address.ts b/src/locales/fr_SN/location/street_address.ts
new file mode 100644
index 00000000..2e1a661d
--- /dev/null
+++ b/src/locales/fr_SN/location/street_address.ts
@@ -0,0 +1,4 @@
+export default {
+ normal: '{{location.buildingNumber}} {{location.street}}',
+ full: '{{location.buildingNumber}} {{location.street}} {{location.secondaryAddress}}',
+};
diff --git a/src/locales/fr_SN/location/street_pattern.ts b/src/locales/fr_SN/location/street_pattern.ts
new file mode 100644
index 00000000..f62f53f0
--- /dev/null
+++ b/src/locales/fr_SN/location/street_pattern.ts
@@ -0,0 +1 @@
+export default ['{{location.street_prefix}} {{location.street_suffix}}'];
diff --git a/src/locales/fr_SN/location/street_prefix.ts b/src/locales/fr_SN/location/street_prefix.ts
new file mode 100644
index 00000000..d03abd97
--- /dev/null
+++ b/src/locales/fr_SN/location/street_prefix.ts
@@ -0,0 +1,12 @@
+export default [
+ 'Allée',
+ 'Voie',
+ 'Rue',
+ 'Avenue',
+ 'Boulevard',
+ 'Quai',
+ 'Place',
+ 'Échangeur',
+ 'Résidence',
+ 'Immeuble',
+];
diff --git a/src/locales/fr_SN/location/street_suffix.ts b/src/locales/fr_SN/location/street_suffix.ts
new file mode 100644
index 00000000..5dff1b5a
--- /dev/null
+++ b/src/locales/fr_SN/location/street_suffix.ts
@@ -0,0 +1,33 @@
+export default [
+ "de l'alternance",
+ "de l'émergence",
+ 'Abdou Aziz Sy Dabakh',
+ 'Amadou Assane Ndoye',
+ 'Birago Diop',
+ 'Blaise Diagne',
+ 'Cheikh Amadou Bamba',
+ 'Cheikh Anta Diop',
+ 'Cheikh Seydi El Hadji Malick Sy',
+ 'Dial Diop',
+ 'Faidherbe',
+ 'Galandou Diouf',
+ 'Houphouët Boigny',
+ 'Lamine Gueye',
+ 'Lat Dior',
+ 'Léopold Sedar Senghor',
+ 'Neslon Mandela',
+ 'Saint Michel',
+ 'St Joseph',
+ 'Sérigne Fallou Mbacké',
+ 'Victor Hugo',
+ 'Wagane Diouf',
+ 'William Ponty',
+ 'Yacine Boubou',
+ 'de Bordeaux',
+ 'de Contournement Nord',
+ 'de Nguinth',
+ 'des Diambars',
+ 'des Jasmins',
+ 'du Baol',
+ 'du Tirailleur',
+];