generaltranslation 2.0.55 → 2.0.56
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/{cjs/codes → codes}/codes.js +71 -67
- package/dist/{cjs/codes → codes}/getLanguageDirection.js +5 -5
- package/dist/index.js +228 -0
- package/dist/translation/_bundleTranslation.js +95 -0
- package/dist/translation/_intl.js +107 -0
- package/dist/translation/_translate.js +105 -0
- package/dist/translation/_translateReactChildren.js +107 -0
- package/dist/translation/_updateRemoteDictionary.js +83 -0
- package/package.json +7 -7
- package/dist/cjs/index.js +0 -143
- package/dist/cjs/translation/_bundleTranslation.js +0 -42
- package/dist/cjs/translation/_intl.js +0 -52
- package/dist/cjs/translation/_translate.js +0 -51
- package/dist/cjs/translation/_translateReactChildren.js +0 -56
- package/dist/cjs/translation/_updateRemoteDictionary.js +0 -30
- package/dist/mjs/codes/15924/CodeToScript.json +0 -215
- package/dist/mjs/codes/15924/ScriptToCode.json +0 -215
- package/dist/mjs/codes/3166/CodeToRegion.json +0 -296
- package/dist/mjs/codes/3166/RegionToCode.json +0 -296
- package/dist/mjs/codes/639-1/CodeToLanguage.json +0 -185
- package/dist/mjs/codes/639-1/LanguageToCode.json +0 -227
- package/dist/mjs/codes/639-3/CodeToLanguageTriletter.json +0 -186
- package/dist/mjs/codes/639-3/LanguageToCodeTriletter.json +0 -228
- package/dist/mjs/codes/codes.d.ts +0 -8
- package/dist/mjs/codes/codes.js +0 -305
- package/dist/mjs/codes/getLanguageDirection.d.ts +0 -1
- package/dist/mjs/codes/getLanguageDirection.js +0 -68
- package/dist/mjs/codes/predefined/Predefined.json +0 -28
- package/dist/mjs/index.d.ts +0 -153
- package/dist/mjs/index.js +0 -130
- package/dist/mjs/translation/_bundleTranslation.d.ts +0 -22
- package/dist/mjs/translation/_bundleTranslation.js +0 -39
- package/dist/mjs/translation/_intl.d.ts +0 -1
- package/dist/mjs/translation/_intl.js +0 -49
- package/dist/mjs/translation/_translate.d.ts +0 -1
- package/dist/mjs/translation/_translate.js +0 -48
- package/dist/mjs/translation/_translateReactChildren.d.ts +0 -1
- package/dist/mjs/translation/_translateReactChildren.js +0 -53
- package/dist/mjs/translation/_updateRemoteDictionary.d.ts +0 -17
- package/dist/mjs/translation/_updateRemoteDictionary.js +0 -27
- /package/dist/{cjs/codes → codes}/15924/CodeToScript.json +0 -0
- /package/dist/{cjs/codes → codes}/15924/ScriptToCode.json +0 -0
- /package/dist/{cjs/codes → codes}/3166/CodeToRegion.json +0 -0
- /package/dist/{cjs/codes → codes}/3166/RegionToCode.json +0 -0
- /package/dist/{cjs/codes → codes}/639-1/CodeToLanguage.json +0 -0
- /package/dist/{cjs/codes → codes}/639-1/LanguageToCode.json +0 -0
- /package/dist/{cjs/codes → codes}/639-3/CodeToLanguageTriletter.json +0 -0
- /package/dist/{cjs/codes → codes}/639-3/LanguageToCodeTriletter.json +0 -0
- /package/dist/{cjs/codes → codes}/codes.d.ts +0 -0
- /package/dist/{cjs/codes → codes}/getLanguageDirection.d.ts +0 -0
- /package/dist/{cjs/codes → codes}/predefined/Predefined.json +0 -0
- /package/dist/{cjs/index.d.ts → index.d.ts} +0 -0
- /package/dist/{cjs/translation → translation}/_bundleTranslation.d.ts +0 -0
- /package/dist/{cjs/translation → translation}/_intl.d.ts +0 -0
- /package/dist/{cjs/translation → translation}/_translate.d.ts +0 -0
- /package/dist/{cjs/translation → translation}/_translateReactChildren.d.ts +0 -0
- /package/dist/{cjs/translation → translation}/_updateRemoteDictionary.d.ts +0 -0
@@ -1,52 +0,0 @@
|
|
1
|
-
"use strict";
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
-
exports.default = _translate;
|
4
|
-
/**
|
5
|
-
* Translates a single piece of content and caches for use in a public project.
|
6
|
-
* @param {{ baseURL: string, apiKey: string }} gt - The translation service configuration.
|
7
|
-
* @param {string} content - The content to translate.
|
8
|
-
* @param {string} targetLanguage - The target language for the translation.
|
9
|
-
* @param {string} projectID - The ID of the project
|
10
|
-
* @param {{ dictionaryName?: string, notes?: string, timeout?: number, [key: string]: any }} metadata - Additional metadata for the translation request.
|
11
|
-
* @returns {Promise<{ translation: string, error?: Error | unknown }>} - The translated content with optional error information.
|
12
|
-
* @internal
|
13
|
-
*/
|
14
|
-
async function _translate(gt, content, targetLanguage, projectID, metadata) {
|
15
|
-
const controller = new AbortController();
|
16
|
-
const signal = controller.signal;
|
17
|
-
if (metadata.timeout) {
|
18
|
-
setTimeout(() => controller.abort(), metadata.timeout);
|
19
|
-
}
|
20
|
-
try {
|
21
|
-
const response = await fetch(`${gt.baseURL}/translate`, {
|
22
|
-
method: 'POST',
|
23
|
-
headers: {
|
24
|
-
'Content-Type': 'application/json',
|
25
|
-
'gtx-api-key': gt.apiKey,
|
26
|
-
},
|
27
|
-
body: JSON.stringify({
|
28
|
-
content, targetLanguage, projectID, metadata
|
29
|
-
}),
|
30
|
-
signal
|
31
|
-
});
|
32
|
-
if (!response.ok) {
|
33
|
-
throw new Error(`${response.status}: ${await response.text()}`);
|
34
|
-
}
|
35
|
-
const result = await response.json();
|
36
|
-
return result;
|
37
|
-
}
|
38
|
-
catch (error) {
|
39
|
-
if (error instanceof Error && error.name === 'AbortError') {
|
40
|
-
console.error('Request timed out');
|
41
|
-
return {
|
42
|
-
translation: content,
|
43
|
-
error: 'Request timed out'
|
44
|
-
};
|
45
|
-
}
|
46
|
-
console.error(error);
|
47
|
-
return {
|
48
|
-
translation: content,
|
49
|
-
error: error
|
50
|
-
};
|
51
|
-
}
|
52
|
-
}
|
@@ -1,51 +0,0 @@
|
|
1
|
-
"use strict";
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
-
exports.default = _translate;
|
4
|
-
/**
|
5
|
-
* Translates a string.
|
6
|
-
* @param {{ baseURL: string, apiKey: string }} gt - The translation service configuration.
|
7
|
-
* @param {string} content - The content to translate.
|
8
|
-
* @param {string} targetLanguage - The target language for the translation.
|
9
|
-
* @param {{ notes?: string, timeout?: number, [key: string]: any }} metadata - Additional metadata for the translation request.
|
10
|
-
* @returns {Promise<{ translation: string, error?: Error | unknown }>} - The translated content with optional error information.
|
11
|
-
* @internal
|
12
|
-
*/
|
13
|
-
async function _translate(gt, content, targetLanguage, metadata) {
|
14
|
-
const controller = new AbortController();
|
15
|
-
const signal = controller.signal;
|
16
|
-
if (metadata.timeout) {
|
17
|
-
setTimeout(() => controller.abort(), metadata.timeout);
|
18
|
-
}
|
19
|
-
try {
|
20
|
-
const response = await fetch(`${gt.baseURL}/translate`, {
|
21
|
-
method: 'POST',
|
22
|
-
headers: {
|
23
|
-
'Content-Type': 'application/json',
|
24
|
-
'gtx-api-key': gt.apiKey,
|
25
|
-
},
|
26
|
-
body: JSON.stringify({
|
27
|
-
content, targetLanguage, metadata
|
28
|
-
}),
|
29
|
-
signal
|
30
|
-
});
|
31
|
-
if (!response.ok) {
|
32
|
-
throw new Error(`${response.status}: ${await response.text()}`);
|
33
|
-
}
|
34
|
-
const result = await response.json();
|
35
|
-
return result;
|
36
|
-
}
|
37
|
-
catch (error) {
|
38
|
-
if (error instanceof Error && error.name === 'AbortError') {
|
39
|
-
console.error('Request timed out');
|
40
|
-
return {
|
41
|
-
translation: content,
|
42
|
-
error: 'Request timed out'
|
43
|
-
};
|
44
|
-
}
|
45
|
-
console.error(error);
|
46
|
-
return {
|
47
|
-
translation: content,
|
48
|
-
error: error
|
49
|
-
};
|
50
|
-
}
|
51
|
-
}
|
@@ -1,56 +0,0 @@
|
|
1
|
-
"use strict";
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
-
exports.default = _translateReactChildren;
|
4
|
-
/**
|
5
|
-
* Translates the given content into the target language using a specified API.
|
6
|
-
*
|
7
|
-
* @param {{ baseURL: string, apiKey: string }} gt - An object containing baseURL and apiKey for the API.
|
8
|
-
* @param {any} content - The content to be translated. This can be of any type.
|
9
|
-
* @param {string} targetLanguage - The target language code (e.g., 'en', 'fr') for the translation.
|
10
|
-
* @param {{ [key: string]: any }} metadata - Additional metadata to be sent with the translation request.
|
11
|
-
*
|
12
|
-
* @returns {Promise<{ translation: any | null, error?: Error | unknown }>} - A promise that resolves to the translated content as an object, or null if an error occurs.
|
13
|
-
*
|
14
|
-
* @throws {Error} - Throws an error if the response from the API is not ok (status code not in the range 200-299).
|
15
|
-
* @internal
|
16
|
-
**/
|
17
|
-
async function _translateReactChildren(gt, content, targetLanguage, metadata) {
|
18
|
-
const controller = new AbortController();
|
19
|
-
const signal = controller.signal;
|
20
|
-
if (metadata.timeout) {
|
21
|
-
setTimeout(() => controller.abort(), metadata.timeout);
|
22
|
-
}
|
23
|
-
try {
|
24
|
-
const response = await fetch(`${gt.baseURL}/react`, {
|
25
|
-
method: 'POST',
|
26
|
-
headers: {
|
27
|
-
'Content-Type': 'application/json',
|
28
|
-
'gtx-api-key': gt.apiKey,
|
29
|
-
},
|
30
|
-
body: JSON.stringify({
|
31
|
-
content: content,
|
32
|
-
targetLanguage: targetLanguage,
|
33
|
-
metadata: metadata
|
34
|
-
}),
|
35
|
-
signal
|
36
|
-
});
|
37
|
-
if (!response.ok) {
|
38
|
-
throw new Error(`${response.status}: ${await response.text()}`);
|
39
|
-
}
|
40
|
-
return await response.json();
|
41
|
-
}
|
42
|
-
catch (error) {
|
43
|
-
if (error instanceof Error && error.name === 'AbortError') {
|
44
|
-
console.error('Request timed out');
|
45
|
-
return {
|
46
|
-
translation: null,
|
47
|
-
error: 'Request timed out'
|
48
|
-
};
|
49
|
-
}
|
50
|
-
console.error(error);
|
51
|
-
return {
|
52
|
-
translation: null,
|
53
|
-
error: error
|
54
|
-
};
|
55
|
-
}
|
56
|
-
}
|
@@ -1,30 +0,0 @@
|
|
1
|
-
"use strict";
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
-
exports.default = _updateRemoteDictionary;
|
4
|
-
async function _updateRemoteDictionary(gt, updates, languages, projectID, replace) {
|
5
|
-
try {
|
6
|
-
const response = await fetch(`${gt.baseURL}/update`, {
|
7
|
-
method: 'POST',
|
8
|
-
headers: {
|
9
|
-
'Content-Type': 'application/json',
|
10
|
-
'gtx-api-key': gt.apiKey,
|
11
|
-
},
|
12
|
-
body: JSON.stringify({
|
13
|
-
updates, languages, projectID, replace
|
14
|
-
})
|
15
|
-
});
|
16
|
-
if (!response.ok) {
|
17
|
-
throw new Error(`${response.status}: ${await response.text()}`);
|
18
|
-
}
|
19
|
-
const result = await response.json();
|
20
|
-
return result.languages;
|
21
|
-
}
|
22
|
-
catch (error) {
|
23
|
-
if (error instanceof Error && error.name === 'AbortError') {
|
24
|
-
console.error('Request timed out');
|
25
|
-
return [];
|
26
|
-
}
|
27
|
-
console.error(error);
|
28
|
-
return [];
|
29
|
-
}
|
30
|
-
}
|
@@ -1,215 +0,0 @@
|
|
1
|
-
{
|
2
|
-
"Adlm": "Adlam",
|
3
|
-
"Afak": "Afaka",
|
4
|
-
"Aghb": "Caucasian Albanian",
|
5
|
-
"Ahom": "Ahom",
|
6
|
-
"Aran": "Arabic (Nastaliq variant)",
|
7
|
-
"Armi": "Imperial Aramaic",
|
8
|
-
"Armn": "Armenian",
|
9
|
-
"Avst": "Avestan",
|
10
|
-
"Bali": "Balinese",
|
11
|
-
"Bamu": "Bamum",
|
12
|
-
"Bass": "Bassa Vah",
|
13
|
-
"Batk": "Batak",
|
14
|
-
"Beng": "Bengali",
|
15
|
-
"Bhks": "Bhaiksuki",
|
16
|
-
"Blis": "Blissymbols",
|
17
|
-
"Bopo": "Bopomofo",
|
18
|
-
"Brah": "Brahmi",
|
19
|
-
"Brai": "Braille",
|
20
|
-
"Bugi": "Buginese",
|
21
|
-
"Buhd": "Buhid",
|
22
|
-
"Cakm": "Chakma",
|
23
|
-
"Cans": "Unified Canadian Aboriginal Syllabics",
|
24
|
-
"Cari": "Carian",
|
25
|
-
"Cham": "Cham",
|
26
|
-
"Cher": "Cherokee",
|
27
|
-
"Chis": "Chisoi",
|
28
|
-
"Chrs": "Chorasmian",
|
29
|
-
"Cirt": "Cirth",
|
30
|
-
"Copt": "Coptic",
|
31
|
-
"Cpmn": "Cypro-Minoan",
|
32
|
-
"Cprt": "Cypriot syllabary",
|
33
|
-
"Cyrl": "Cyrillic",
|
34
|
-
"Cyrs": "Cyrillic (Old Church Slavonic variant)",
|
35
|
-
"Deva": "Devanagari",
|
36
|
-
"Diak": "Dives Akuru",
|
37
|
-
"Dogr": "Dogra",
|
38
|
-
"Dsrt": "Deseret",
|
39
|
-
"Dupl": "Duployan shorthand",
|
40
|
-
"Egyd": "Egyptian demotic",
|
41
|
-
"Egyh": "Egyptian hieratic",
|
42
|
-
"Egyp": "Egyptian hieroglyphs",
|
43
|
-
"Elba": "Elbasan",
|
44
|
-
"Elym": "Elymaic",
|
45
|
-
"Ethi": "Ethiopic",
|
46
|
-
"Gara": "Garay",
|
47
|
-
"Geok": "Khutsuri (Asomtavruli and Nuskhuri)",
|
48
|
-
"Geor": "Georgian (Mkhedruli and Mtavruli)",
|
49
|
-
"Glag": "Glagolitic",
|
50
|
-
"Gong": "Gunjala Gondi",
|
51
|
-
"Gonm": "Masaram Gondi",
|
52
|
-
"Goth": "Gothic",
|
53
|
-
"Gran": "Grantha",
|
54
|
-
"Grek": "Greek",
|
55
|
-
"Gujr": "Gujarati",
|
56
|
-
"Gukh": "Gurung Khema",
|
57
|
-
"Guru": "Gurmukhi",
|
58
|
-
"Hanb": "Han with Bopomofo",
|
59
|
-
"Hang": "Hangul",
|
60
|
-
"Hani": "Han",
|
61
|
-
"Hano": "Hanunoo",
|
62
|
-
"Hans": "Han (Simplified variant)",
|
63
|
-
"Hant": "Han (Traditional variant)",
|
64
|
-
"Hatr": "Hatran",
|
65
|
-
"Hebr": "Hebrew",
|
66
|
-
"Hira": "Hiragana",
|
67
|
-
"Hluw": "Anatolian Hieroglyphs",
|
68
|
-
"Hmng": "Pahawh Hmong",
|
69
|
-
"Hmnp": "Nyiakeng Puachue Hmong",
|
70
|
-
"Hrkt": "Japanese syllabaries",
|
71
|
-
"Hung": "Old Hungarian",
|
72
|
-
"Inds": "Indus",
|
73
|
-
"Ital": "Old Italic",
|
74
|
-
"Jamo": "Jamo",
|
75
|
-
"Java": "Javanese",
|
76
|
-
"Jpan": "Japanese",
|
77
|
-
"Jurc": "Jurchen",
|
78
|
-
"Kali": "Kayah Li",
|
79
|
-
"Kana": "Katakana",
|
80
|
-
"Kawi": "Kawi",
|
81
|
-
"Khar": "Kharoshthi",
|
82
|
-
"Khmr": "Khmer",
|
83
|
-
"Khoj": "Khojki",
|
84
|
-
"Kitl": "Khitan large script",
|
85
|
-
"Kits": "Khitan small script",
|
86
|
-
"Knda": "Kannada",
|
87
|
-
"Kore": "Korean",
|
88
|
-
"Kpel": "Kpelle",
|
89
|
-
"Krai": "Kirat Rai",
|
90
|
-
"Kthi": "Kaithi",
|
91
|
-
"Lana": "Tai Tham",
|
92
|
-
"Laoo": "Lao",
|
93
|
-
"Latf": "Latin (Fraktur variant)",
|
94
|
-
"Latg": "Latin (Gaelic variant)",
|
95
|
-
"Latn": "Latin",
|
96
|
-
"Leke": "Leke",
|
97
|
-
"Lepc": "Lepcha",
|
98
|
-
"Limb": "Limbu",
|
99
|
-
"Lina": "Linear A",
|
100
|
-
"Linb": "Linear B",
|
101
|
-
"Lisu": "Lisu",
|
102
|
-
"Loma": "Loma",
|
103
|
-
"Lyci": "Lycian",
|
104
|
-
"Lydi": "Lydian",
|
105
|
-
"Mahj": "Mahajani",
|
106
|
-
"Maka": "Makasar",
|
107
|
-
"Mand": "Mandaic",
|
108
|
-
"Mani": "Manichaean",
|
109
|
-
"Marc": "Marchen",
|
110
|
-
"Maya": "Mayan hieroglyphs",
|
111
|
-
"Medf": "Medefaidrin",
|
112
|
-
"Mend": "Mende Kikakui",
|
113
|
-
"Merc": "Meroitic Cursive",
|
114
|
-
"Mero": "Meroitic Hieroglyphs",
|
115
|
-
"Mlym": "Malayalam",
|
116
|
-
"Modi": "Modi",
|
117
|
-
"Mong": "Mongolian",
|
118
|
-
"Moon": "Moon",
|
119
|
-
"Mroo": "Mro",
|
120
|
-
"Mtei": "Meitei Mayek",
|
121
|
-
"Mult": "Multani",
|
122
|
-
"Mymr": "Myanmar",
|
123
|
-
"Nagm": "Nag Mundari",
|
124
|
-
"Nand": "Nandinagari",
|
125
|
-
"Narb": "Old North Arabian",
|
126
|
-
"Nbat": "Nabataean",
|
127
|
-
"Newa": "Newa",
|
128
|
-
"Nkdb": "Naxi Dongba",
|
129
|
-
"Nkgb": "Naxi Geba",
|
130
|
-
"Nkoo": "N’Ko",
|
131
|
-
"Nshu": "Nüshu",
|
132
|
-
"Ogam": "Ogham",
|
133
|
-
"Olck": "Ol Chiki",
|
134
|
-
"Onao": "Ol Onal",
|
135
|
-
"Orkh": "Old Turkic",
|
136
|
-
"Orya": "Oriya",
|
137
|
-
"Osge": "Osage",
|
138
|
-
"Osma": "Osmanya",
|
139
|
-
"Ougr": "Old Uyghur",
|
140
|
-
"Palm": "Palmyrene",
|
141
|
-
"Pauc": "Pau Cin Hau",
|
142
|
-
"Pcun": "Proto-Cuneiform",
|
143
|
-
"Pelm": "Proto-Elamite",
|
144
|
-
"Perm": "Old Permic",
|
145
|
-
"Phag": "Phags-pa",
|
146
|
-
"Phli": "Inscriptional Pahlavi",
|
147
|
-
"Phlp": "Psalter Pahlavi",
|
148
|
-
"Phlv": "Book Pahlavi",
|
149
|
-
"Phnx": "Phoenician",
|
150
|
-
"Piqd": "Klingon",
|
151
|
-
"Plrd": "Miao",
|
152
|
-
"Prti": "Inscriptional Parthian",
|
153
|
-
"Psin": "Proto-Sinaitic",
|
154
|
-
"Ranj": "Ranjana",
|
155
|
-
"Rjng": "Rejang",
|
156
|
-
"Rohg": "Hanifi Rohingya",
|
157
|
-
"Roro": "Rongorongo",
|
158
|
-
"Runr": "Runic",
|
159
|
-
"Samr": "Samaritan",
|
160
|
-
"Sara": "Sarati",
|
161
|
-
"Sarb": "Old South Arabian",
|
162
|
-
"Saur": "Saurashtra",
|
163
|
-
"Sgnw": "SignWriting",
|
164
|
-
"Shaw": "Shavian",
|
165
|
-
"Shrd": "Sharada",
|
166
|
-
"Shui": "Shuishu",
|
167
|
-
"Sidd": "Siddham",
|
168
|
-
"Sidt": "Sidetic",
|
169
|
-
"Sind": "Khudawadi",
|
170
|
-
"Sinh": "Sinhala",
|
171
|
-
"Sogd": "Sogdian",
|
172
|
-
"Sogo": "Old Sogdian",
|
173
|
-
"Sora": "Sora Sompeng",
|
174
|
-
"Soyo": "Soyombo",
|
175
|
-
"Sund": "Sundanese",
|
176
|
-
"Sunu": "Sunuwar",
|
177
|
-
"Sylo": "Syloti Nagri",
|
178
|
-
"Syrc": "Syriac",
|
179
|
-
"Syre": "Syriac (Estrangelo variant)",
|
180
|
-
"Syrj": "Syriac (Western variant)",
|
181
|
-
"Syrn": "Syriac (Eastern variant)",
|
182
|
-
"Tagb": "Tagbanwa",
|
183
|
-
"Takr": "Takri",
|
184
|
-
"Tale": "Tai Le",
|
185
|
-
"Talu": "New Tai Lue",
|
186
|
-
"Taml": "Tamil",
|
187
|
-
"Tang": "Tangut",
|
188
|
-
"Tavt": "Tai Viet",
|
189
|
-
"Tayo": "Tai Yo",
|
190
|
-
"Telu": "Telugu",
|
191
|
-
"Teng": "Tengwar",
|
192
|
-
"Tfng": "Tifinagh",
|
193
|
-
"Tglg": "Tagalog",
|
194
|
-
"Thaa": "Thaana",
|
195
|
-
"Thai": "Thai",
|
196
|
-
"Tibt": "Tibetan",
|
197
|
-
"Tirh": "Tirhuta",
|
198
|
-
"Tnsa": "Tangsa",
|
199
|
-
"Todr": "Todhri",
|
200
|
-
"Tols": "Tolong Siki",
|
201
|
-
"Toto": "Toto",
|
202
|
-
"Tutg": "Tulu-Tigalari",
|
203
|
-
"Ugar": "Ugaritic",
|
204
|
-
"Vaii": "Vai",
|
205
|
-
"Visp": "Visible Speech",
|
206
|
-
"Vith": "Vithkuqi",
|
207
|
-
"Wara": "Warang Citi",
|
208
|
-
"Wcho": "Wancho",
|
209
|
-
"Wole": "Woleai",
|
210
|
-
"Xpeo": "Old Persian",
|
211
|
-
"Xsux": "Sumero-Akkadian cuneiform",
|
212
|
-
"Yezi": "Yezidi",
|
213
|
-
"Yiii": "Yi",
|
214
|
-
"Zanb": "Zanabazar Square"
|
215
|
-
}
|
@@ -1,215 +0,0 @@
|
|
1
|
-
{
|
2
|
-
"adlam": "Adlm",
|
3
|
-
"afaka": "Afak",
|
4
|
-
"caucasian albanian": "Aghb",
|
5
|
-
"ahom": "Ahom",
|
6
|
-
"arabic (nastaliq variant)": "Aran",
|
7
|
-
"imperial aramaic": "Armi",
|
8
|
-
"armenian": "Armn",
|
9
|
-
"avestan": "Avst",
|
10
|
-
"balinese": "Bali",
|
11
|
-
"bamum": "Bamu",
|
12
|
-
"bassa vah": "Bass",
|
13
|
-
"batak": "Batk",
|
14
|
-
"bengali": "Beng",
|
15
|
-
"bhaiksuki": "Bhks",
|
16
|
-
"blissymbols": "Blis",
|
17
|
-
"bopomofo": "Bopo",
|
18
|
-
"brahmi": "Brah",
|
19
|
-
"braille": "Brai",
|
20
|
-
"buginese": "Bugi",
|
21
|
-
"buhid": "Buhd",
|
22
|
-
"chakma": "Cakm",
|
23
|
-
"unified canadian aboriginal syllabics": "Cans",
|
24
|
-
"carian": "Cari",
|
25
|
-
"cham": "Cham",
|
26
|
-
"cherokee": "Cher",
|
27
|
-
"chisoi": "Chis",
|
28
|
-
"chorasmian": "Chrs",
|
29
|
-
"cirth": "Cirt",
|
30
|
-
"coptic": "Copt",
|
31
|
-
"cypro-minoan": "Cpmn",
|
32
|
-
"cypriot syllabary": "Cprt",
|
33
|
-
"cyrillic": "Cyrl",
|
34
|
-
"cyrillic (old church slavonic variant)": "Cyrs",
|
35
|
-
"devanagari": "Deva",
|
36
|
-
"dives akuru": "Diak",
|
37
|
-
"dogra": "Dogr",
|
38
|
-
"deseret": "Dsrt",
|
39
|
-
"duployan shorthand": "Dupl",
|
40
|
-
"egyptian demotic": "Egyd",
|
41
|
-
"egyptian hieratic": "Egyh",
|
42
|
-
"egyptian hieroglyphs": "Egyp",
|
43
|
-
"elbasan": "Elba",
|
44
|
-
"elymaic": "Elym",
|
45
|
-
"ethiopic": "Ethi",
|
46
|
-
"garay": "Gara",
|
47
|
-
"khutsuri (asomtavruli and nuskhuri)": "Geok",
|
48
|
-
"georgian (mkhedruli and mtavruli)": "Geor",
|
49
|
-
"glagolitic": "Glag",
|
50
|
-
"gunjala gondi": "Gong",
|
51
|
-
"masaram gondi": "Gonm",
|
52
|
-
"gothic": "Goth",
|
53
|
-
"grantha": "Gran",
|
54
|
-
"greek": "Grek",
|
55
|
-
"gujarati": "Gujr",
|
56
|
-
"gurung khema": "Gukh",
|
57
|
-
"gurmukhi": "Guru",
|
58
|
-
"han with bopomofo": "Hanb",
|
59
|
-
"hangul": "Hang",
|
60
|
-
"han": "Hani",
|
61
|
-
"hanunoo": "Hano",
|
62
|
-
"han (simplified variant)": "Hans",
|
63
|
-
"han (traditional variant)": "Hant",
|
64
|
-
"hatran": "Hatr",
|
65
|
-
"hebrew": "Hebr",
|
66
|
-
"hiragana": "Hira",
|
67
|
-
"anatolian hieroglyphs": "Hluw",
|
68
|
-
"pahawh hmong": "Hmng",
|
69
|
-
"nyiakeng puachue hmong": "Hmnp",
|
70
|
-
"japanese syllabaries": "Hrkt",
|
71
|
-
"old hungarian": "Hung",
|
72
|
-
"indus": "Inds",
|
73
|
-
"old italic": "Ital",
|
74
|
-
"jamo": "Jamo",
|
75
|
-
"javanese": "Java",
|
76
|
-
"japanese": "Jpan",
|
77
|
-
"jurchen": "Jurc",
|
78
|
-
"kayah li": "Kali",
|
79
|
-
"katakana": "Kana",
|
80
|
-
"kawi": "Kawi",
|
81
|
-
"kharoshthi": "Khar",
|
82
|
-
"khmer": "Khmr",
|
83
|
-
"khojki": "Khoj",
|
84
|
-
"khitan large script": "Kitl",
|
85
|
-
"khitan small script": "Kits",
|
86
|
-
"kannada": "Knda",
|
87
|
-
"korean": "Kore",
|
88
|
-
"kpelle": "Kpel",
|
89
|
-
"kirat rai": "Krai",
|
90
|
-
"kaithi": "Kthi",
|
91
|
-
"tai tham": "Lana",
|
92
|
-
"lao": "Laoo",
|
93
|
-
"latin (fraktur variant)": "Latf",
|
94
|
-
"latin (gaelic variant)": "Latg",
|
95
|
-
"latin": "Latn",
|
96
|
-
"leke": "Leke",
|
97
|
-
"lepcha": "Lepc",
|
98
|
-
"limbu": "Limb",
|
99
|
-
"linear a": "Lina",
|
100
|
-
"linear b": "Linb",
|
101
|
-
"lisu": "Lisu",
|
102
|
-
"loma": "Loma",
|
103
|
-
"lycian": "Lyci",
|
104
|
-
"lydian": "Lydi",
|
105
|
-
"mahajani": "Mahj",
|
106
|
-
"makasar": "Maka",
|
107
|
-
"mandaic": "Mand",
|
108
|
-
"manichaean": "Mani",
|
109
|
-
"marchen": "Marc",
|
110
|
-
"mayan hieroglyphs": "Maya",
|
111
|
-
"medefaidrin": "Medf",
|
112
|
-
"mende kikakui": "Mend",
|
113
|
-
"meroitic cursive": "Merc",
|
114
|
-
"meroitic hieroglyphs": "Mero",
|
115
|
-
"malayalam": "Mlym",
|
116
|
-
"modi": "Modi",
|
117
|
-
"mongolian": "Mong",
|
118
|
-
"moon": "Moon",
|
119
|
-
"mro": "Mroo",
|
120
|
-
"meitei mayek": "Mtei",
|
121
|
-
"multani": "Mult",
|
122
|
-
"myanmar": "Mymr",
|
123
|
-
"nag mundari": "Nagm",
|
124
|
-
"nandinagari": "Nand",
|
125
|
-
"old north arabian": "Narb",
|
126
|
-
"nabataean": "Nbat",
|
127
|
-
"newa": "Newa",
|
128
|
-
"naxi dongba": "Nkdb",
|
129
|
-
"naxi geba": "Nkgb",
|
130
|
-
"n’ko": "Nkoo",
|
131
|
-
"nüshu": "Nshu",
|
132
|
-
"ogham": "Ogam",
|
133
|
-
"ol chiki": "Olck",
|
134
|
-
"ol onal": "Onao",
|
135
|
-
"old turkic": "Orkh",
|
136
|
-
"oriya": "Orya",
|
137
|
-
"osage": "Osge",
|
138
|
-
"osmanya": "Osma",
|
139
|
-
"old uyghur": "Ougr",
|
140
|
-
"palmyrene": "Palm",
|
141
|
-
"pau cin hau": "Pauc",
|
142
|
-
"proto-cuneiform": "Pcun",
|
143
|
-
"proto-elamite": "Pelm",
|
144
|
-
"old permic": "Perm",
|
145
|
-
"phags-pa": "Phag",
|
146
|
-
"inscriptional pahlavi": "Phli",
|
147
|
-
"psalter pahlavi": "Phlp",
|
148
|
-
"book pahlavi": "Phlv",
|
149
|
-
"phoenician": "Phnx",
|
150
|
-
"klingon": "Piqd",
|
151
|
-
"miao": "Plrd",
|
152
|
-
"inscriptional parthian": "Prti",
|
153
|
-
"proto-sinaitic": "Psin",
|
154
|
-
"ranjana": "Ranj",
|
155
|
-
"rejang": "Rjng",
|
156
|
-
"hanifi rohingya": "Rohg",
|
157
|
-
"rongorongo": "Roro",
|
158
|
-
"runic": "Runr",
|
159
|
-
"samaritan": "Samr",
|
160
|
-
"sarati": "Sara",
|
161
|
-
"old south arabian": "Sarb",
|
162
|
-
"saurashtra": "Saur",
|
163
|
-
"signwriting": "Sgnw",
|
164
|
-
"shavian": "Shaw",
|
165
|
-
"sharada": "Shrd",
|
166
|
-
"shuishu": "Shui",
|
167
|
-
"siddham": "Sidd",
|
168
|
-
"sidetic": "Sidt",
|
169
|
-
"khudawadi": "Sind",
|
170
|
-
"sinhala": "Sinh",
|
171
|
-
"sogdian": "Sogd",
|
172
|
-
"old sogdian": "Sogo",
|
173
|
-
"sora sompeng": "Sora",
|
174
|
-
"soyombo": "Soyo",
|
175
|
-
"sundanese": "Sund",
|
176
|
-
"sunuwar": "Sunu",
|
177
|
-
"syloti nagri": "Sylo",
|
178
|
-
"syriac": "Syrc",
|
179
|
-
"syriac (estrangelo variant)": "Syre",
|
180
|
-
"syriac (western variant)": "Syrj",
|
181
|
-
"syriac (eastern variant)": "Syrn",
|
182
|
-
"tagbanwa": "Tagb",
|
183
|
-
"takri": "Takr",
|
184
|
-
"tai le": "Tale",
|
185
|
-
"new tai lue": "Talu",
|
186
|
-
"tamil": "Taml",
|
187
|
-
"tangut": "Tang",
|
188
|
-
"tai viet": "Tavt",
|
189
|
-
"tai yo": "Tayo",
|
190
|
-
"telugu": "Telu",
|
191
|
-
"tengwar": "Teng",
|
192
|
-
"tifinagh": "Tfng",
|
193
|
-
"tagalog": "Tglg",
|
194
|
-
"thaana": "Thaa",
|
195
|
-
"thai": "Thai",
|
196
|
-
"tibetan": "Tibt",
|
197
|
-
"tirhuta": "Tirh",
|
198
|
-
"tangsa": "Tnsa",
|
199
|
-
"todri": "Todr",
|
200
|
-
"tolong siki": "Tols",
|
201
|
-
"toto": "Toto",
|
202
|
-
"tulu-tigalari": "Tutg",
|
203
|
-
"ugaritic": "Ugar",
|
204
|
-
"vai": "Vaii",
|
205
|
-
"visible speech": "Visp",
|
206
|
-
"vithkuqi": "Vith",
|
207
|
-
"warang citi": "Wara",
|
208
|
-
"wancho": "Wcho",
|
209
|
-
"woleai": "Wole",
|
210
|
-
"old persian": "Xpeo",
|
211
|
-
"sumero-akkadian cuneiform": "Xsux",
|
212
|
-
"yezidi": "Yezi",
|
213
|
-
"yi": "Yiii",
|
214
|
-
"zanabazar square": "Zanb"
|
215
|
-
}
|