1
0
Fork 1
mirror of https://github.com/TeamOctolings/Octobot.git synced 2025-05-01 19:49:55 +03:00

Fix issues caused by refactor

This commit is contained in:
Octol1ttle 2022-11-12 11:02:44 +05:00
parent 3b12fb7e41
commit 7dbc4472f7
Signed by: Octol1ttle
GPG key ID: B77C34313AEE1FFF
8 changed files with 28 additions and 108 deletions

View file

@ -716,15 +716,6 @@ namespace Boyfriend {
}
}
/// <summary>
/// Looks up a localized string similar to Admin log channel.
/// </summary>
internal static string SettingsAdminLogChannel {
get {
return ResourceManager.GetString("SettingsAdminLogChannel", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Bot log channel.
/// </summary>
@ -734,33 +725,6 @@ namespace Boyfriend {
}
}
/// <summary>
/// Looks up a localized string similar to Channel for event cancellation notifications.
/// </summary>
internal static string SettingsEventCancelledChannel {
get {
return ResourceManager.GetString("SettingsEventCancelledChannel", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Channel for event completion notifications.
/// </summary>
internal static string SettingsEventCompletedChannel {
get {
return ResourceManager.GetString("SettingsEventCompletedChannel", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Channel for event creation notifications.
/// </summary>
internal static string SettingsEventCreatedChannel {
get {
return ResourceManager.GetString("SettingsEventCreatedChannel", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Early event start notification offset.
/// </summary>
@ -771,20 +735,20 @@ namespace Boyfriend {
}
/// <summary>
/// Looks up a localized string similar to Role for event creation notifications.
/// Looks up a localized string similar to Channel for event notifications.
/// </summary>
internal static string SettingsEventNotifyReceiverRole {
internal static string SettingsEventNotificationChannel {
get {
return ResourceManager.GetString("SettingsEventNotifyReceiverRole", resourceCulture);
return ResourceManager.GetString("SettingsEventNotificationChannel", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Channel for event start notifications.
/// Looks up a localized string similar to Role for event creation notifications.
/// </summary>
internal static string SettingsEventStartedChannel {
internal static string SettingsEventNotificationRole {
get {
return ResourceManager.GetString("SettingsEventStartedChannel", resourceCulture);
return ResourceManager.GetString("SettingsEventNotificationRole", resourceCulture);
}
}