mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2025-04-27 15:39:47 +00:00
Some checks are pending
Build and Release / Read metadata (push) Waiting to run
Build and Release / Build app (${{ matrix.dotnet_runtime }}) (-aarch64-apple-darwin, osx-arm64, macos-latest, aarch64-apple-darwin, dmg updater) (push) Blocked by required conditions
Build and Release / Build app (${{ matrix.dotnet_runtime }}) (-aarch64-pc-windows-msvc.exe, win-arm64, windows-latest, aarch64-pc-windows-msvc, nsis updater) (push) Blocked by required conditions
Build and Release / Build app (${{ matrix.dotnet_runtime }}) (-x86_64-apple-darwin, osx-x64, macos-latest, x86_64-apple-darwin, dmg updater) (push) Blocked by required conditions
Build and Release / Build app (${{ matrix.dotnet_runtime }}) (-x86_64-pc-windows-msvc.exe, win-x64, windows-latest, x86_64-pc-windows-msvc, nsis updater) (push) Blocked by required conditions
Build and Release / Build app (${{ matrix.dotnet_runtime }}) (-x86_64-unknown-linux-gnu, linux-x64, ubuntu-22.04, x86_64-unknown-linux-gnu, appimage deb updater) (push) Blocked by required conditions
Build and Release / Build app (linux-arm64) (push) Blocked by required conditions
Build and Release / Prepare & create release (push) Blocked by required conditions
Build and Release / Publish release (push) Blocked by required conditions
130 lines
5.6 KiB
C#
130 lines
5.6 KiB
C#
using Lua;
|
|
|
|
namespace AIStudio.Tools.PluginSystem;
|
|
|
|
public sealed class PluginLanguage : PluginBase, ILanguagePlugin
|
|
{
|
|
private readonly Dictionary<string, string> content = [];
|
|
private readonly List<ILanguagePlugin> otherLanguagePlugins = [];
|
|
private readonly string langCultureTag;
|
|
|
|
private ILanguagePlugin? baseLanguage;
|
|
|
|
public PluginLanguage(bool isInternal, LuaState state, PluginType type) : base(isInternal, state, type)
|
|
{
|
|
if(!this.TryInitIETFTag(out var issue, out this.langCultureTag))
|
|
this.pluginIssues.Add(issue);
|
|
|
|
if (this.TryInitUITextContent(out issue, out var readContent))
|
|
this.content = readContent;
|
|
else
|
|
this.pluginIssues.Add(issue);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Sets the base language plugin. This plugin will be used to fill in missing keys.
|
|
/// </summary>
|
|
/// <param name="baseLanguagePlugin">The base language plugin to use.</param>
|
|
public void SetBaseLanguage(ILanguagePlugin baseLanguagePlugin) => this.baseLanguage = baseLanguagePlugin;
|
|
|
|
/// <summary>
|
|
/// Add another language plugin. This plugin will be used to fill in missing keys.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// Use this method to add (i.e., register) an assistant plugin as a language plugin.
|
|
/// This is necessary because the assistant plugins need to serve their own texts.
|
|
/// </remarks>
|
|
/// <param name="languagePlugin">The language plugin to add.</param>
|
|
public void AddOtherLanguagePlugin(ILanguagePlugin languagePlugin) => this.otherLanguagePlugins.Add(languagePlugin);
|
|
|
|
/// <summary>
|
|
/// Tries to get a text from the language plugin.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// When the key neither in the base language nor in this language exist,
|
|
/// the value will be an empty string. Please note that the key is case-sensitive.
|
|
/// Furthermore, the keys are in the format "root::key". That means that
|
|
/// the keys are hierarchical and separated by "::".
|
|
/// </remarks>
|
|
/// <param name="key">The key to use to get the text.</param>
|
|
/// <param name="value">The desired text.</param>
|
|
/// <returns>True if the key exists, false otherwise.</returns>
|
|
public bool TryGetText(string key, out string value)
|
|
{
|
|
// First, we check if the key is part of the main language pack:
|
|
if (this.content.TryGetValue(key, out value!))
|
|
return true;
|
|
|
|
// Second, we check if the key is part of the other language packs, such as the assistant plugins:
|
|
foreach (var otherLanguagePlugin in this.otherLanguagePlugins)
|
|
if(otherLanguagePlugin.TryGetText(key, out value))
|
|
return true;
|
|
|
|
// Finally, we check if the key is part of the base language pack. This is the case,
|
|
// when a language plugin does not cover all keys. In this case, the base language plugin
|
|
// will be used to fill in the missing keys:
|
|
if(this.baseLanguage is not null && this.baseLanguage.TryGetText(key, out value))
|
|
return true;
|
|
|
|
value = string.Empty;
|
|
return false;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Tries to initialize the IETF tag.
|
|
/// </summary>
|
|
/// <param name="message">The error message, when the IETF tag could not be read.</param>
|
|
/// <param name="readLangCultureTag">The read IETF tag.</param>
|
|
/// <returns>True, when the IETF tag could be read, false otherwise.</returns>
|
|
private bool TryInitIETFTag(out string message, out string readLangCultureTag)
|
|
{
|
|
if (!this.state.Environment["IETF_TAG"].TryRead(out readLangCultureTag))
|
|
{
|
|
message = "The field IETF_TAG does not exist or is not a valid string.";
|
|
readLangCultureTag = string.Empty;
|
|
return false;
|
|
}
|
|
|
|
if (string.IsNullOrWhiteSpace(readLangCultureTag))
|
|
{
|
|
message = "The field IETF_TAG is empty. Use a valid IETF tag like 'en-US'. The first part is the language, the second part is the country code.";
|
|
readLangCultureTag = string.Empty;
|
|
return false;
|
|
}
|
|
|
|
if (readLangCultureTag.Length != 5)
|
|
{
|
|
message = "The field IETF_TAG is not a valid IETF tag. Use a valid IETF tag like 'en-US'. The first part is the language, the second part is the country code.";
|
|
readLangCultureTag = string.Empty;
|
|
return false;
|
|
}
|
|
|
|
if (readLangCultureTag[2] != '-')
|
|
{
|
|
message = "The field IETF_TAG is not a valid IETF tag. Use a valid IETF tag like 'en-US'. The first part is the language, the second part is the country code.";
|
|
readLangCultureTag = string.Empty;
|
|
return false;
|
|
}
|
|
|
|
// Check the first part consists of only lower case letters:
|
|
for (var i = 0; i < 2; i++)
|
|
if (!char.IsLower(readLangCultureTag[i]))
|
|
{
|
|
message = "The field IETF_TAG is not a valid IETF tag. Use a valid IETF tag like 'en-US'. The first part is the language, the second part is the country code.";
|
|
readLangCultureTag = string.Empty;
|
|
return false;
|
|
}
|
|
|
|
// Check the second part consists of only upper case letters:
|
|
for (var i = 3; i < 5; i++)
|
|
if (!char.IsUpper(readLangCultureTag[i]))
|
|
{
|
|
message = "The field IETF_TAG is not a valid IETF tag. Use a valid IETF tag like 'en-US'. The first part is the language, the second part is the country code.";
|
|
readLangCultureTag = string.Empty;
|
|
return false;
|
|
}
|
|
|
|
message = string.Empty;
|
|
return true;
|
|
}
|
|
} |