blob: 7c5dbd333fc82ccd9228ab60fd0e639cba580d3e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
import type { PreBuiltMetadataDefinitionForCountry } from '../../definitions/metadata';
const metadata: PreBuiltMetadataDefinitionForCountry = {
title: 'Tamil (India)',
code: 'ta_IN',
language: 'ta',
country: 'IN',
endonym: 'தமிழ் (இந்தியா)',
dir: 'ltr',
script: 'Taml',
};
export default metadata;
|