namespace NadekoBot.Core.Services
{
///
/// Implemented by classes which provide localized strings in their own ways
///
public interface IBotStringsProvider
{
///
/// 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);
}
}