// import fs from 'fs' import path from 'path' import { docRoot } from '@kankan-components/build-utils' // export const languages = fs.readdirSync(path.resolve(__dirname, '../crowdin')) export const languages = ['zh-CN'] export const ensureLang = (lang: string) => `/${lang}` export const getLang = (id: string) => path.relative(docRoot, id).split(path.sep)[0]