1
0
Fork 1
mirror of https://github.com/TeamOctolings/Octobot.git synced 2025-04-29 10:39:53 +03:00

Add /ban command v1

Signed-off-by: Octol1ttle <l1ttleofficial@outlook.com>
This commit is contained in:
Octol1ttle 2023-06-08 21:04:17 +05:00
parent a83aa03cf0
commit 806746925e
Signed by: Octol1ttle
GPG key ID: B77C34313AEE1FFF
10 changed files with 275 additions and 81 deletions

32
Messages.Designer.cs generated
View file

@ -243,9 +243,9 @@ namespace Boyfriend {
}
}
internal static string FeedbackUserBanned {
internal static string UserBanned {
get {
return ResourceManager.GetString("FeedbackUserBanned", resourceCulture);
return ResourceManager.GetString("UserBanned", resourceCulture);
}
}
@ -771,15 +771,15 @@ namespace Boyfriend {
}
}
internal static string LocalEventCreatedDescription {
internal static string DescriptionLocalEventCreated {
get {
return ResourceManager.GetString("LocalEventCreatedDescription", resourceCulture);
return ResourceManager.GetString("DescriptionLocalEventCreated", resourceCulture);
}
}
internal static string ExternalEventCreatedDescription {
internal static string DescriptionExternalEventCreated {
get {
return ResourceManager.GetString("ExternalEventCreatedDescription", resourceCulture);
return ResourceManager.GetString("DescriptionExternalEventCreated", resourceCulture);
}
}
@ -795,15 +795,27 @@ namespace Boyfriend {
}
}
internal static string LocalEventStartedDescription {
internal static string DescriptionLocalEventStarted {
get {
return ResourceManager.GetString("LocalEventStartedDescription", resourceCulture);
return ResourceManager.GetString("DescriptionLocalEventStarted", resourceCulture);
}
}
internal static string ExternalEventStartedDescription {
internal static string DescriptionExternalEventStarted {
get {
return ResourceManager.GetString("ExternalEventStartedDescription", resourceCulture);
return ResourceManager.GetString("DescriptionExternalEventStarted", resourceCulture);
}
}
internal static string DescriptionUserBanned {
get {
return ResourceManager.GetString("DescriptionUserBanned", resourceCulture);
}
}
internal static string UserAlreadyBanned {
get {
return ResourceManager.GetString("UserAlreadyBanned", resourceCulture);
}
}
}