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);