Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(locale): and location to fr_SN #2533

Merged
merged 10 commits into from Nov 11, 2023
2 changes: 2 additions & 0 deletions src/locales/fr_SN/index.ts
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
@@ -0,0 +1 @@
export default ['####', '###', '##', '#'];
53 changes: 53 additions & 0 deletions src/locales/fr_SN/location/city_name.ts
@@ -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
@@ -0,0 +1 @@
export default ['{{location.city_name}}'];
1 change: 1 addition & 0 deletions src/locales/fr_SN/location/default_country.ts
@@ -0,0 +1 @@
export default ['Sénégal'];
22 changes: 22 additions & 0 deletions src/locales/fr_SN/location/index.ts
@@ -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
@@ -0,0 +1 @@
export default ['#####'];
16 changes: 16 additions & 0 deletions src/locales/fr_SN/location/state.ts
@@ -0,0 +1,16 @@
export default [
'Dakar',
'Diourbel',
'Fatick',
'Kaffrine',
'Kaolack',
'Kolda',
'Kédougou',
'Louga',
'Matam',
'Saint-Louis',
'Sédhiou',
'Tambacounda',
'Thiès',
'Ziguinchor',
];