-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Augsorn Chanklad
committed
Jul 9, 2019
1 parent
edd0649
commit 9d97107
Showing
7 changed files
with
79 additions
and
3 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
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,18 @@ | ||
{ | ||
"message": { | ||
"prefix_help": "ทุกคำสั่งกรุณาใส่เครื่องหมาย ! นำหน้าด้วยนะคะ (เช่น !taming)", | ||
"command_not_found": [ | ||
"ไม่รู้จัก{}เลยค่ะ","{}คืออะไรคะ? ' ')?", | ||
"ไม่มี{}นะคะ","{}ไม่มีในความทรงจำของฉันเลยค่ะ", | ||
"ไม่พบคำสั่ง{} ค่ะ ลองพิมพ์ !help เพื่อดูคำสั่งที่ถูกต้องนะคะ" | ||
], | ||
"item_not_found": [ | ||
"ไม่รู้จัก{}เลยค่ะ", | ||
"{}คืออะไรคะ? ' ')?", | ||
"ไม่มี{}นะคะ", | ||
"{}ไม่มีในความทรงจำของฉันเลยค่ะ", | ||
"ไม่พบไอเท็ม{} ค่ะ", | ||
"ไอ้นี่มันมีอยู่จริงๆเหรอคะ?" | ||
] | ||
} | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
{ | ||
"app": { | ||
"message": { | ||
"item_not_found": [ | ||
"ไม่รู้จัก{}เลยค่ะ","{}คืออะไรคะ? ' ')?", | ||
"ไม่มี{}นะคะ","{}ไม่มีในความทรงจำของฉันเลยค่ะ", | ||
"ไม่พบไอเท็ม{} ค่ะ","ไอ้นี่มันมีอยู่จริงๆเหรอคะ?" | ||
], | ||
"prefix_help": "ทุกคำสั่งกรุณาใส่เครื่องหมาย ! นำหน้าด้วยนะคะ (เช่น !taming)", | ||
"command_not_found": [ | ||
"ไม่รู้จัก{}เลยค่ะ","{}คืออะไรคะ? ' ')?", | ||
"ไม่มี{}นะคะ","{}ไม่มีในความทรงจำของฉันเลยค่ะ", | ||
"ไม่พบคำสั่ง{} ค่ะ ลองพิมพ์ !help เพื่อดูคำสั่งที่ถูกต้องนะคะ" | ||
] | ||
} | ||
} | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
const Chance = require('chance') | ||
const config = require('./../global_config.json'); | ||
|
||
module.exports = { | ||
"command_not_found": [ "ไม่รู้จัก{}เลยค่ะ", "{}คืออะไรคะ? ' ')? ", "ไม่มี{}นะคะ", "{}ไม่มีในความทรงจำของฉันเลยค่ะ", "ไม่พบคำสั่ง{} ค่ะ ลองพิมพ์ !help เพื่อดูคำสั่งที่ถูกต้องนะคะ"], | ||
"item_not_found": [ "ไม่รู้จัก{}เลยค่ะ", "{}คืออะไรคะ? ' ')? ", "ไม่มี{}นะคะ", "{}ไม่มีในความทรงจำของฉันเลยค่ะ", "ไม่พบไอเท็ม{} ค่ะ", "ไอ้นี่มันมีอยู่จริงๆเหรอคะ?"] | ||
"command_not_found": config.message.command_not_found, | ||
"item_not_found": config.message.item_not_found | ||
} |