mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-10 17:28:27 -04:00
15 lines
490 B
C#
15 lines
490 B
C#
using System.Globalization;
|
|
|
|
namespace NadekoBot.Medusa;
|
|
|
|
/// <summary>
|
|
/// Defines methods to retrieve and reload medusa strings
|
|
/// </summary>
|
|
public interface IMedusaStrings
|
|
{
|
|
// string GetText(string key, ulong? guildId = null, params object[] data);
|
|
string? GetText(string key, CultureInfo locale, params object[] data);
|
|
void Reload();
|
|
CommandStrings GetCommandStrings(string commandName, CultureInfo cultureInfo);
|
|
string? GetDescription(CultureInfo? locale);
|
|
} |