Skip to content

Commit

Permalink
feat(locale): and location to fr_SN (#2533)
Browse files Browse the repository at this point in the history
  • Loading branch information
makhtar-sarr committed Nov 11, 2023
1 parent fa26a44 commit f730125
Show file tree
Hide file tree
Showing 8 changed files with 97 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/locales/fr_SN/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,12 @@
*/
import type { LocaleDefinition } from '../..';
import internet from './internet';
import location from './location';
import metadata from './metadata';

const fr_SN: LocaleDefinition = {
internet,
location,
metadata,
};

Expand Down
1 change: 1 addition & 0 deletions src/locales/fr_SN/location/building_number.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export default ['####', '###', '##', '#'];
53 changes: 53 additions & 0 deletions src/locales/fr_SN/location/city_name.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
export default [
'Bakel',
'Bambey',
'Bargny',
'Bignona',
'Dagana',
'Dahra',
'Dakar',
'Diourbel',
'Fatick',
'Gandiaye',
'Gossas',
'Goudomp',
'Guinguinéo',
'Guédiawaye',
'Joal-Fadiouth',
'Kaffrine',
'Kanel',
'Kaolack',
'Kayar',
'Khombole',
'Kolda',
'Koungheul',
'Kébémer',
'Kédougou',
'Linguère',
'Louga',
'Matam',
'Mbacké',
'Mboro',
'Mbour',
'NDofan',
'Ndioum',
'Ngaaÿ Meckhe',
'Nguékhokh',
'Nioro du Rip',
'Ourossogui',
'Pikine',
'Pout',
'Richard-Toll',
'Rufisque',
'Saint-Louis',
'Sokone',
'Sébikhotane',
'Sédhiou',
'Tambacounda',
'Thiadiaye',
'Thiès',
'Tivaouane',
'Touba',
'Vélingara',
'Ziguinchor',
];
1 change: 1 addition & 0 deletions src/locales/fr_SN/location/city_pattern.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export default ['{{location.city_name}}'];
1 change: 1 addition & 0 deletions src/locales/fr_SN/location/default_country.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export default ['Sénégal'];
22 changes: 22 additions & 0 deletions src/locales/fr_SN/location/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
/*
* This file is automatically generated.
* Run 'pnpm run generate:locales' to update.
*/
import type { LocationDefinition } from '../../..';
import building_number from './building_number';
import city_name from './city_name';
import city_pattern from './city_pattern';
import default_country from './default_country';
import postcode from './postcode';
import state from './state';

const location: LocationDefinition = {
building_number,
city_name,
city_pattern,
default_country,
postcode,
state,
};

export default location;
1 change: 1 addition & 0 deletions src/locales/fr_SN/location/postcode.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export default ['#####'];
16 changes: 16 additions & 0 deletions src/locales/fr_SN/location/state.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
export default [
'Dakar',
'Diourbel',
'Fatick',
'Kaffrine',
'Kaolack',
'Kolda',
'Kédougou',
'Louga',
'Matam',
'Saint-Louis',
'Sédhiou',
'Tambacounda',
'Thiès',
'Ziguinchor',
];

0 comments on commit f730125

Please sign in to comment.