namespace NadekoBot.Medusa;
///
/// Implemented by classes which provide localized strings in their own ways
///
public interface IMedusaStringsProvider
{
///
/// Gets localized string
///
/// Language name
/// String key
/// Localized string
string? GetText(string localeName, string key);
///
/// Reloads string cache
///
void Reload();
// ///
// /// Gets command arg examples and description
// ///
// /// Language name
// /// Command name
// CommandStrings GetCommandStrings(string localeName, string commandName);
CommandStrings? GetCommandStrings(string localeName, string commandName);
}