diff --git a/src/i18n/responses.ts b/src/i18n/responses.ts index fd84667..0fdaaf9 100644 --- a/src/i18n/responses.ts +++ b/src/i18n/responses.ts @@ -15,7 +15,7 @@ export const responses: Record => { @@ -27,7 +27,7 @@ export const translate = async( return entitlement.userId === interaction.user.id && entitlement.isActive(); }); - if (!isEntitled && interaction.user.id !== "465650873650118659") { + if (!isEntitled) { await interaction.editReply({ content: i18n("subscription-required", targetLocale), }); @@ -35,7 +35,9 @@ export const translate = async( } if (!supportedLocales.includes(targetLocale)) { - await interaction.editReply(i18n("unsupported-locale", targetLocale)); + await interaction.editReply(i18n("unsupported-locale", targetLocale, { + target: targetLocale, + })); return; }