blob: c23367701bfb49a68bce86f46bbf69a1f13f0840 (
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 (Luxembourg)',
code: 'fr_LU',
country: 'LU',
language: 'fr',
endonym: 'Français (Luxembourg)',
dir: 'ltr',
script: 'Latn',
};
export default metadata;
|