mic-bot/bot/lang/en.ts
Dmitry Anderson e6ee3ee695 Minor changes
- Prod dockerfile changes + deno downgrade
- Locale files added
- Trying to make bot working with i18n
2024-10-27 18:49:21 +01:00

15 lines
484 B
TypeScript

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) => `U didn't pass the captcha. U can try again after ${timeout_mins} minutes.`,
}
},
}
export default pack