14 lines
483 B
TypeScript
14 lines
483 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 |