diff --git a/src/locales/fr_SN/location/index.ts b/src/locales/fr_SN/location/index.ts index f46a91ce126..c13e4805f72 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 00000000000..776ec15169b --- /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 00000000000..2e1a661d418 --- /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 00000000000..f62f53f0931 --- /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 00000000000..d03abd97564 --- /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 00000000000..5dff1b5a62b --- /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', +];