From defc302ac98aa68838d86666162b2cff82eb21a6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=94=D0=BC=D0=B8=D1=82=D1=80=D0=B8=D0=B9=20=D0=A8=D0=B8?= =?UTF-8?q?=D0=BC=D0=B0=D0=BD=D1=81=D0=BA=D0=B8=D0=B9?= Date: Thu, 16 Nov 2023 22:01:14 +0300 Subject: [PATCH] hotfix so stupid error --- Controllers/WeatherForecastController.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Controllers/WeatherForecastController.cs b/Controllers/WeatherForecastController.cs index bc1ccab..6ba5545 100644 --- a/Controllers/WeatherForecastController.cs +++ b/Controllers/WeatherForecastController.cs @@ -28,9 +28,9 @@ namespace DiscordApp.Controllers var message = channel.GetMessagesAsync().LastOrDefaultAsync().Result.FirstOrDefault() as IUserMessage; await message.ModifyAsync(func => { - func.Content = "Успешно оплачено!"; + func.Content = "Successfully paid!"; func.Components = new ComponentBuilder() - .WithButton("Создание заявки", "addBaseOnMapModalSender") + .WithButton("Create request", "addBaseOnMapModalSender") .Build(); });