1
0
Fork 1
mirror of https://github.com/TeamOctolings/Octobot.git synced 2025-04-19 16:33:36 +03:00

resolve conversations

Signed-off-by: mctaylors <cantsendmails@mctaylors.ru>
This commit is contained in:
Macintxsh 2023-12-20 19:49:04 +03:00
parent cf0c5fd4b6
commit 334b792571
Signed by: mctaylors
GPG key ID: 7181BEBE676903C1
5 changed files with 2 additions and 17 deletions

View file

@ -588,9 +588,6 @@
<data name="DefaultLeaveMessage" xml:space="preserve"> <data name="DefaultLeaveMessage" xml:space="preserve">
<value>See you soon, {0}!</value> <value>See you soon, {0}!</value>
</data> </data>
<data name="SettingsSendLeaveMessages" xml:space="preserve">
<value>Send leave messages</value>
</data>
<data name="SettingsLeaveMessage" xml:space="preserve"> <data name="SettingsLeaveMessage" xml:space="preserve">
<value>Leave message</value> <value>Leave message</value>
</data> </data>

View file

@ -588,9 +588,6 @@
<data name="DefaultLeaveMessage" xml:space="preserve"> <data name="DefaultLeaveMessage" xml:space="preserve">
<value>До скорой встречи, {0}!</value> <value>До скорой встречи, {0}!</value>
</data> </data>
<data name="SettingsSendLeaveMessages" xml:space="preserve">
<value>Отправлять сообщения о выходе</value>
</data>
<data name="SettingsLeaveMessage" xml:space="preserve"> <data name="SettingsLeaveMessage" xml:space="preserve">
<value>Сообщение о выходе</value> <value>Сообщение о выходе</value>
</data> </data>

View file

@ -588,9 +588,6 @@
<data name="DefaultLeaveMessage" xml:space="preserve"> <data name="DefaultLeaveMessage" xml:space="preserve">
<value>ну, мы потеряли {0}</value> <value>ну, мы потеряли {0}</value>
</data> </data>
<data name="SettingsSendLeaveMessages" xml:space="preserve">
<value>разглашать о том что сбежал шизоид</value>
</data>
<data name="SettingsLeaveMessage" xml:space="preserve"> <data name="SettingsLeaveMessage" xml:space="preserve">
<value>до свидания (типо настройка)</value> <value>до свидания (типо настройка)</value>
</data> </data>

View file

@ -13,7 +13,7 @@ public static class GuildSettings
public static readonly LanguageOption Language = new("Language", "en"); public static readonly LanguageOption Language = new("Language", "en");
/// <summary> /// <summary>
/// Controls what message should be sent in <see cref="PublicFeedbackChannel" /> when a new member joins the server. /// Controls what message should be sent in <see cref="PublicFeedbackChannel" /> when a new member joins the guild.
/// </summary> /// </summary>
/// <remarks> /// <remarks>
/// <list type="bullet"> /// <list type="bullet">
@ -25,7 +25,7 @@ public static class GuildSettings
public static readonly Option<string> WelcomeMessage = new("WelcomeMessage", "default"); public static readonly Option<string> WelcomeMessage = new("WelcomeMessage", "default");
/// <summary> /// <summary>
/// Controls what message should be sent in <see cref="PublicFeedbackChannel" /> when member leaves the server. /// Controls what message should be sent in <see cref="PublicFeedbackChannel" /> when a member leaves the guild.
/// </summary> /// </summary>
/// <remarks> /// <remarks>
/// <list type="bullet"> /// <list type="bullet">

View file

@ -1048,11 +1048,5 @@ namespace Octobot {
return ResourceManager.GetString("SettingsLeaveMessage", resourceCulture); return ResourceManager.GetString("SettingsLeaveMessage", resourceCulture);
} }
} }
internal static string SettingsSendLeaveMessages {
get {
return ResourceManager.GetString("SettingsSendLeaveMessages", resourceCulture);
}
}
} }
} }