blob: 94cf70d498fc96a56fbf12f04d1e884792aa28a9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
import type { PreBuiltMetadataDefinitionForCountry } from '../../definitions/metadata';
const metadata: PreBuiltMetadataDefinitionForCountry = {
title: 'French (Senegal)',
code: 'fr_SN',
country: 'SN',
language: 'fr',
endonym: 'Français (Sénégal)',
dir: 'ltr',
script: 'Latn',
};
export default metadata;
|