From adf93ecfde6cbea5f8a5ecc0578cb0c698561ad5 Mon Sep 17 00:00:00 2001 From: Lio Young Date: Thu, 8 Apr 2021 21:58:39 +0200 Subject: [PATCH 1/4] add initial base translation file --- sample.ts | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 sample.ts diff --git a/sample.ts b/sample.ts new file mode 100644 index 0000000..9f5cc62 --- /dev/null +++ b/sample.ts @@ -0,0 +1,4 @@ +// Base File for translations + + +// TODO: Enter all strings here \ No newline at end of file From 227b46726a7d2071dc6b73019aaffbe4fbfa2d21 Mon Sep 17 00:00:00 2001 From: Lio Young Date: Thu, 8 Apr 2021 21:58:56 +0200 Subject: [PATCH 2/4] add INSUFFICIENT_PERMISSIONS string --- src/en_US.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/en_US.ts b/src/en_US.ts index 12944f8..7b6c718 100644 --- a/src/en_US.ts +++ b/src/en_US.ts @@ -1,3 +1,4 @@ export default { - CHANNEL_NOT_NSFW: "This Channel is not marked as NSFW, please mark it as such an rerun this Command." + CHANNEL_NOT_NSFW: "This Channel is not marked as NSFW, please mark it as such an rerun this Command.", + INSUFFICIENT_PERMISSIONS: `You need \`PERMISSIONS\` Permissions to run this Command ` } \ No newline at end of file From 12732c2a429cef84450c17d31b165d452c4fc926 Mon Sep 17 00:00:00 2001 From: Lio Young Date: Fri, 9 Apr 2021 14:49:25 +0200 Subject: [PATCH 3/4] add cooldown strings --- src/en_US.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/en_US.ts b/src/en_US.ts index 7b6c718..cd60e8f 100644 --- a/src/en_US.ts +++ b/src/en_US.ts @@ -1,4 +1,6 @@ export default { CHANNEL_NOT_NSFW: "This Channel is not marked as NSFW, please mark it as such an rerun this Command.", - INSUFFICIENT_PERMISSIONS: `You need \`PERMISSIONS\` Permissions to run this Command ` + INSUFFICIENT_PERMISSIONS: `You need \`PERMISSIONS\` Permissions to run this Command `, + ON_COOLDOWN: `\`COMMAND\` is on Cooldown.`, + ON_COOLDOWN_DESCRIPTION: `\`COMMAND\` is has a cooldown of \`COOLDOWN\` \n Wait \`TIME\` berore trying to use it again.` } \ No newline at end of file From 8920bbb3d909a76f45760548d1f8ba6c05748f0b Mon Sep 17 00:00:00 2001 From: Lio Young Date: Fri, 9 Apr 2021 15:12:38 +0200 Subject: [PATCH 4/4] add error string --- src/en_US.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/en_US.ts b/src/en_US.ts index cd60e8f..2246821 100644 --- a/src/en_US.ts +++ b/src/en_US.ts @@ -2,5 +2,6 @@ export default { CHANNEL_NOT_NSFW: "This Channel is not marked as NSFW, please mark it as such an rerun this Command.", INSUFFICIENT_PERMISSIONS: `You need \`PERMISSIONS\` Permissions to run this Command `, ON_COOLDOWN: `\`COMMAND\` is on Cooldown.`, - ON_COOLDOWN_DESCRIPTION: `\`COMMAND\` is has a cooldown of \`COOLDOWN\` \n Wait \`TIME\` berore trying to use it again.` + ON_COOLDOWN_DESCRIPTION: `\`COMMAND\` has a cooldown of \`COOLDOWN\` \n Wait \`TIME\` berore trying to use it again.`, + ON_ERROR: `\`COMMAND\` encountered an Error.` } \ No newline at end of file