blob: 436cb8f7987ce1e4752e3878de909040ccdfbbbd (
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 (Brazil)',
code: 'pt_BR',
country: 'BR',
language: 'pt',
endonym: 'Português (Brasil)',
dir: 'ltr',
script: 'Latn',
};
export default metadata;
|