updated utils
This commit is contained in:
parent
89a4917986
commit
ed2e644827
1 changed files with 15 additions and 12 deletions
|
@ -1,15 +1,18 @@
|
||||||
const config = require('../config.json');
|
const config = require("../config.json");
|
||||||
|
|
||||||
module.exports = {
|
module.exports = {
|
||||||
giveaway: (config.everyoneMention ? "@everyone\n\n" : "")+"🎉🎉 **GIVEAWAY** 🎉🎉",
|
giveaway:
|
||||||
giveawayEnded: (config.everyoneMention ? "@everyone\n\n" : "")+"🎉🎉 **GIVEAWAY ENDED** 🎉🎉",
|
(config.everyoneMention ? "@everyone\n\n" : "") + "🎉🎉 **GIVEAWAY** 🎉🎉",
|
||||||
|
giveawayEnded:
|
||||||
|
(config.everyoneMention ? "@everyone\n\n" : "") +
|
||||||
|
"🎉🎉 **GIVEAWAY ENDED** 🎉🎉",
|
||||||
inviteToParticipate: "React with 🎉 to participate!",
|
inviteToParticipate: "React with 🎉 to participate!",
|
||||||
dropMessage: "Be the first to react with 🎉 !",
|
dropMessage: "Be the first to react with 🎉 !",
|
||||||
drawing: 'Drawing: {timestamp}',
|
drawing: "Drawing: {timestamp}",
|
||||||
winMessage: "Congratulations, {winners}! You won **{this.prize}**!",
|
winMessage: "Congratulations, {winners}! You won **{this.prize}**!",
|
||||||
embedFooter: "Giveaways",
|
embedFooter: "Giveaways",
|
||||||
noWinner: "Giveaway cancelled, no valid participations.",
|
noWinner: "Giveaway cancelled, no valid participations.",
|
||||||
hostedBy: "Hosted by: {this.hostedBy}",
|
hostedBy: "Hosted by: {this.hostedBy}",
|
||||||
winners: "winner(s)",
|
winners: "winner(s)",
|
||||||
endedAt: "Ended at"
|
endedAt: "Ended at",
|
||||||
};
|
};
|
Loading…
Reference in a new issue