mirror of
https://github.com/outline/outline.git
synced 2026-06-27 18:24:23 +03:00
3f3a70d996
* migration * Auto detect language and adjust line-height accordingly * Remove accidental commit * Remove unneccessary adjustment * test * mock
19 lines
303 B
JavaScript
19 lines
303 B
JavaScript
// Mock for iso-639-3 language code conversion library
|
|
const iso6393To1 = {
|
|
eng: "en",
|
|
fra: "fr",
|
|
deu: "de",
|
|
spa: "es",
|
|
ita: "it",
|
|
por: "pt",
|
|
rus: "ru",
|
|
jpn: "ja",
|
|
zho: "zh",
|
|
ara: "ar",
|
|
hin: "hi",
|
|
ben: "bn",
|
|
und: undefined, // undetermined
|
|
};
|
|
|
|
module.exports = { iso6393To1 };
|