Skip to content

Commit

Permalink
feat(locale): add streets to location fr_SN (#2536)
Browse files Browse the repository at this point in the history
  • Loading branch information
makhtar-sarr authored Nov 14, 2023
1 parent 652da4f commit 36fc517
Show file tree
Hide file tree
Showing 6 changed files with 61 additions and 0 deletions.
10 changes: 10 additions & 0 deletions src/locales/fr_SN/location/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,25 @@ 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,
city_name,
city_pattern,
default_country,
postcode,
secondary_address,
state,
street_address,
street_pattern,
street_prefix,
street_suffix,
};

export default location;
1 change: 1 addition & 0 deletions src/locales/fr_SN/location/secondary_address.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export default ['Apt. ###', '# étage'];
4 changes: 4 additions & 0 deletions src/locales/fr_SN/location/street_address.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
export default {
normal: '{{location.buildingNumber}} {{location.street}}',
full: '{{location.buildingNumber}} {{location.street}} {{location.secondaryAddress}}',
};
1 change: 1 addition & 0 deletions src/locales/fr_SN/location/street_pattern.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export default ['{{location.street_prefix}} {{location.street_suffix}}'];
12 changes: 12 additions & 0 deletions src/locales/fr_SN/location/street_prefix.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
export default [
'Allée',
'Voie',
'Rue',
'Avenue',
'Boulevard',
'Quai',
'Place',
'Échangeur',
'Résidence',
'Immeuble',
];
33 changes: 33 additions & 0 deletions src/locales/fr_SN/location/street_suffix.ts
Original file line number Diff line number Diff line change
@@ -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',
];

0 comments on commit 36fc517

Please sign in to comment.