blob: 806af466dc031745e73151c445450067f50f8b73 (
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 (Switzerland)',
code: 'fr_CH',
country: 'CH',
language: 'fr',
endonym: 'Français (Suisse)',
dir: 'ltr',
script: 'Latn',
};
export default metadata;
|