Skip to content

Commit

Permalink
Update max reminder time to one year
Browse files Browse the repository at this point in the history
  • Loading branch information
Iapetus-11 committed Dec 14, 2023
1 parent 801a4a5 commit 674dde2
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion bot/cogs/commands/useful.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ async def reminders_add_logic(self, ctx: Ctx, duration_str: str, reminder: str):

at = arrow.utcnow() + duration

if at > arrow.utcnow().shift(weeks=8):
if at > arrow.utcnow().shift(days=365):
await ctx.reply_embed(ctx.l.useful.remind.time_max)
return

Expand Down
2 changes: 1 addition & 1 deletion bot/data/text/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -1704,7 +1704,7 @@
"remind": {
"reminder_max": "You cannot have more than {max} reminders at once.",
"stupid_1": "You used invalid formatting, example: `{0}remindme 1w2d3h4m this is an example` will remind you in one week, two days, three hours, and four minutes.",
"time_max": "You cannot set a reminder more than eight weeks in advance.",
"time_max": "You cannot set a reminder for more than one year in advance.",
"remind": "{0} reminding you {1}.",
"reminder": "{0}, you wanted me to remind you: *{1}*",
"none": "*You have no reminders...*",
Expand Down
2 changes: 1 addition & 1 deletion bot/data/text/es.json
Original file line number Diff line number Diff line change
Expand Up @@ -1704,7 +1704,7 @@
"remind": {
"reminder_max": "No puedes tener mas de {max} recordatorios a la vez.",
"stupid_1": "Has usado un formato invalido, ejemplo: `{0}remindme 1w2d3h4m esto es un ejemplo` te recordará en una semana, dos días, tres horas y cuatro minutos.",
"time_max": "No puedes poner un recordatorio para mas de ocho semanas.",
"time_max": "No puede fijar un recordatorio con más de un año de antelación.",
"remind": "{0} recordatorio {1}.",
"reminder": "{0}, querías que te recuerde: *{1}*",
"none": "*No tienes recordatorios...*",
Expand Down
2 changes: 1 addition & 1 deletion bot/data/text/fr.json
Original file line number Diff line number Diff line change
Expand Up @@ -1704,7 +1704,7 @@
"remind": {
"reminder_max": "Tu ne peux pas avoir plus de {max} rappels à la fois.",
"stupid_1": "Tu as utilisé un format invalide, exemple : `{0}remindme 1w2d3h4m ceci est un exemple` te fera un rappel dans une semaine, deux jours, trois heures, et quatre minutes.",
"time_max": "Tu ne peux pas créer un rappel plus de huit semaines en avance.",
"time_max": "Tu ne peux pas faire un rappel plus que un an à l’avance.",
"remind": "{0} rappel {1}.",
"reminder": "{0}, tu voulais que je te rappelle : *{1}*",
"none": "Tu n’a aucun rappels...",
Expand Down
2 changes: 1 addition & 1 deletion bot/data/text/pt.json
Original file line number Diff line number Diff line change
Expand Up @@ -1704,7 +1704,7 @@
"remind": {
"reminder_max": "Você não pode ter mais de {max} lembretes de uma vez.",
"stupid_1": "Você usou uma formatação inválida, exemplo: `{0}remindme 1w2d3h4m isso é um exemplo` irá lembrá-lo em uma semana, dois dias, três horas e quatro minutos.",
"time_max": "Você não pode definir um lembrete com mais de oito semanas de antecedência.",
"time_max": "Não é possível definir um lembrete com mais de um ano de antecedência.",
"remind": "{0} será lembrado em {1}.",
"reminder": "{0}, você queria que eu te lembrasse: *{1}*",
"none": "*Você não tem lembretes...*",
Expand Down

0 comments on commit 674dde2

Please sign in to comment.