From 3dbd0646fb7ea503622eaa9ea698ac627fee5769 Mon Sep 17 00:00:00 2001 From: Macintosh II Date: Thu, 28 Sep 2023 14:20:28 +0300 Subject: [PATCH] ill return to that later Signed-off-by: Macintosh II --- locale/Messages.ru.resx | 2 +- src/Commands/AboutCommandGroup.cs | 3 +-- src/Extensions.cs | 1 + 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/locale/Messages.ru.resx b/locale/Messages.ru.resx index b7812a7..343d660 100644 --- a/locale/Messages.ru.resx +++ b/locale/Messages.ru.resx @@ -601,6 +601,6 @@ Все настройки были сброшены - Открыть сообщение: {0} + Перейти к сообщению: {0} diff --git a/src/Commands/AboutCommandGroup.cs b/src/Commands/AboutCommandGroup.cs index 8285e1c..53e0d2a 100644 --- a/src/Commands/AboutCommandGroup.cs +++ b/src/Commands/AboutCommandGroup.cs @@ -95,8 +95,7 @@ public class AboutCommandGroup : CommandGroup builder.AppendLine($"- {tag} — {$"AboutDeveloper@{Developers[i]}".Localized()}"); } - builder.Append("### [").Append(Messages.AboutTitleRepository) - .Append("](https://github.com/LabsDevelopment/Boyfriend)"); + builder.Append($"### [{Messages.AboutTitleRepository}](https://github.com/LabsDevelopment/Boyfriend)"); var embed = new EmbedBuilder().WithSmallTitle(Messages.AboutBot, currentUser) .WithDescription(builder.ToString()) diff --git a/src/Extensions.cs b/src/Extensions.cs index 9a05e80..0efba21 100644 --- a/src/Extensions.cs +++ b/src/Extensions.cs @@ -23,6 +23,7 @@ public static class Extensions /// The builder to add the footer to. /// The user whose tag and avatar to add. /// The builder with the added footer. + // ReSharper disable once UnusedMember.Global public static EmbedBuilder WithUserFooter(this EmbedBuilder builder, IUser user) { var avatarUrlResult = CDN.GetUserAvatarUrl(user, imageSize: 256);