mic-bot/bot/lang/lang_pack.ts

20 lines
470 B
TypeScript
Raw Normal View History

2024-10-19 10:00:35 +00:00
export const LANG_RU = "ru"
export const LANG_EN = "en"
export const LANG_UA = "ua"
export const LANG_HU = "hu"
export const LANG_RS = "rs"
export const LANG_HR = "hr"
export const LANG_PL = "pl"
export interface LangPack {
code: string,
btn_labels: null,
replies: {
captcha: {
already_in_chat: string,
passed: (invite_link: string) => string,
failed: (timeout_mins: number) => string,
}
},
}