1
0
Fork 1
mirror of https://github.com/TeamOctolings/Octobot.git synced 2025-05-04 04:56:30 +03:00

Add /guildinfo (#152)

Signed-off-by: Macintosh II <mctaylxrs@outlook.com>
This commit is contained in:
Macintxsh 2023-10-06 15:23:45 +03:00 committed by GitHub
parent 6f1e543edb
commit 72f728323e
Signed by: GitHub
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 225 additions and 9 deletions

View file

@ -798,9 +798,9 @@ namespace Octobot {
}
}
internal static string ShowInfoTitle {
internal static string InformationAbout {
get {
return ResourceManager.GetString("ShowInfoTitle", resourceCulture);
return ResourceManager.GetString("InformationAbout", resourceCulture);
}
}
@ -932,5 +932,53 @@ namespace Octobot {
return ResourceManager.GetString("TimestampOffset", resourceCulture);
}
}
internal static string GuildInfoDescription
{
get
{
return ResourceManager.GetString("GuildInfoDescription", resourceCulture);
}
}
internal static string GuildInfoCreatedAt
{
get
{
return ResourceManager.GetString("GuildInfoCreatedAt", resourceCulture);
}
}
internal static string GuildInfoOwner
{
get
{
return ResourceManager.GetString("GuildInfoOwner", resourceCulture);
}
}
internal static string GuildInfoServerBoost
{
get
{
return ResourceManager.GetString("GuildInfoServerBoost", resourceCulture);
}
}
internal static string GuildInfoBoostTier
{
get
{
return ResourceManager.GetString("GuildInfoBoostTier", resourceCulture);
}
}
internal static string GuildInfoBoostCount
{
get
{
return ResourceManager.GetString("GuildInfoBoostCount", resourceCulture);
}
}
}
}