mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2025-04-27 22:59:47 +00:00
26 lines
601 B
C#
26 lines
601 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;
|
||
|
|
||
|
#endregion
|
||
|
}
|