mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2025-04-28 18:39:48 +00:00
28 lines
694 B
C#
28 lines
694 B
C#
using Lua;
|
|
|
|
namespace AIStudio.Tools.PluginSystem;
|
|
|
|
public sealed class NoPluginLanguage : PluginBase, ILanguagePlugin
|
|
{
|
|
public static readonly NoPluginLanguage INSTANCE = new();
|
|
|
|
private NoPluginLanguage() : base(true, LuaState.Create(), PluginType.LANGUAGE, string.Empty)
|
|
{
|
|
}
|
|
|
|
#region Implementation of ILanguagePlugin
|
|
|
|
public bool TryGetText(string key, out string value, bool logWarning = false)
|
|
{
|
|
value = string.Empty;
|
|
return true;
|
|
}
|
|
|
|
public string IETFTag => string.Empty;
|
|
|
|
public string LangName => string.Empty;
|
|
|
|
public IReadOnlyDictionary<string, string> Content => new Dictionary<string, string>();
|
|
|
|
#endregion
|
|
} |