blob: c2333cab9064b7c709f58cb87849ef9a96317325 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
import type { PreBuiltMetadataDefinitionForCountry } from '../../definitions/metadata';
const metadata: PreBuiltMetadataDefinitionForCountry = {
title: 'Portuguese (Portugal)',
code: 'pt_PT',
country: 'PT',
language: 'pt',
endonym: 'Português (Portugal)',
dir: 'ltr',
script: 'Latn',
};
export default metadata;
|