blob: cbbd35d415d9cb16f6c9f230f58a628dff9af90e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
import type { PreBuiltMetadataDefinitionForCountry } from '../../definitions/metadata';
const metadata: PreBuiltMetadataDefinitionForCountry = {
title: 'Norwegian (Norway)',
code: 'nb_NO',
country: 'NO',
language: 'nb',
endonym: 'Norsk bokmål (Norge)',
dir: 'ltr',
script: 'Latn',
};
export default metadata;
|