This repository has been archived by the owner on Dec 6, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Add default locales - Add logger class without chalk dependency - Add responder helper - Add default middleware - Add built-in command and base classes - Add emoji JSON to prevent node-emoji dependency - Add more tests - Various fixes
- Loading branch information
pyraxo
committed
Jan 1, 2017
1 parent
4148aad
commit d3b659e
Showing
28 changed files
with
1,987 additions
and
335 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,6 +7,5 @@ node_modules | |
|
||
test/auth.json | ||
|
||
assets | ||
docs | ||
build |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
{ | ||
"errors": { | ||
"INSUFFICIENT_ARGS": "insufficient arguments supplied - {{requiredArgs}} expected, but only {{argsCount}} found.", | ||
"NO_END_QUOTE": "you have a missing end quote.", | ||
"ON_COOLDOWN": "please cool down! ({{time}} seconds left)", | ||
"NO_PERMS": "you need the permissions {{perms}} to run this command!", | ||
"NO_PERMS_BOT": "I need the permissions {{perms}} to run this command!", | ||
"NO_PMS": "this command can't be run in PMs." | ||
}, | ||
"menus": { | ||
"EXIT": "Enter {{cancel}} to exit the menu.", | ||
"ERRORED": "the menu has closed:", | ||
"EXITED": "you have exited the menu.", | ||
"SELECTION": "Selection Menu", | ||
"ERROR": "Unknown Error", | ||
"INPUT": "Type the number of your choice into chat or '{{cancel}}' to cancel.", | ||
"MORE_RESULTS": "And {{num}} more..." | ||
}, | ||
"collector": { | ||
"timeout": "Timeout after {{time}}s", | ||
"max": "Exceeded {{max}} tries", | ||
"maxMatches": "Exceeded {{maxMatches}} matches" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.