mic-bot/bot/lang/en.ts

14 lines
483 B
TypeScript
Raw Normal View History

2024-10-19 10:00:35 +00:00
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}`,
2024-10-19 10:47:33 +00:00
failed: (timeout_mins: number) => `U didn't pass the captcha. U can try again after ${timeout_mins} minutes.`,
2024-10-19 10:00:35 +00:00
}
},
}
export default pack