mirror of
https://github.com/element-plus/element-plus.git
synced 2024-11-21 01:02:59 +08:00
11 lines
320 B
TypeScript
11 lines
320 B
TypeScript
import fs from 'fs'
|
|
import path from 'path'
|
|
import { docRoot } from '@element-plus/build-utils'
|
|
|
|
export const languages = fs.readdirSync(path.resolve(__dirname, '../crowdin'))
|
|
|
|
export const ensureLang = (lang: string) => `/${lang}`
|
|
|
|
export const getLang = (id: string) =>
|
|
path.relative(docRoot, id).split(path.sep)[0]
|