import { LANG_EN, LangPack } from "./lang_pack.ts"; const pack: LangPack = { code: LANG_EN, btn_labels: null, replies: { captcha: { already_in_chat: "You are already in chat", passed: (invite_link: string) => `Captcha passed! Now u can join to the community: ${invite_link}`, failed: (timeout_mins: number) => `Капча не пройдена. Вы сможете попробовать снова через ${timeout_mins} минут.`, } }, } export default pack