forked from saul-jb/discord-application-bot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstrings.js
20 lines (20 loc) · 1.25 KB
/
strings.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
module.exports = {
unknownCommand: "I could not run that command.",
notInGuild: "This command can only be used in a guild.",
notAuth: "This command can only be used by an admin.",
error: "I could not run that command, please contact your server administrator.",
adminRole: "Admin",
unknownRole: "This server is missing the admin role, please contact your server administrator.",
notSettingUpEnd: "You have not setup the form.",
setSubmissionsReply: "Form submissions will now be sent to you.",
setSubmissionsChannelReply: "Form submissions will now be posted in this channel.",
submissionsNotSet: "Submissions have not been set, please contact your server administrator",
applicationCancel: "Application canceled.",
applicationFormFalseCancel: "You have not started an application form yet.",
applicationSent: "Congratulations your application has been sent!",
formSetupInProgress: "Someone else is already configuring the form.",
newFormSetup: "The new form has been setup.",
formReceiveMessage: params => `${params.user} has submitted a form.`,
formApplyMessage: params => `Application commands: \`\`\`${params.botChar}cancel, ${params.botChar}redo\`\`\``,
formSetupMessage: params => `Enter questions and enter \`${params.botChar}endsetup\` when done.`
}