mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2025-08-21 01:52:57 +00:00
Fix null reference in I18N language handling
This commit is contained in:
parent
cfc2103b43
commit
16251a8abe
@ -5,7 +5,7 @@ public class I18N : ILang
|
|||||||
public static readonly I18N I = new();
|
public static readonly I18N I = new();
|
||||||
private static readonly ILogger<I18N> LOG = Program.LOGGER_FACTORY.CreateLogger<I18N>();
|
private static readonly ILogger<I18N> LOG = Program.LOGGER_FACTORY.CreateLogger<I18N>();
|
||||||
|
|
||||||
private ILanguagePlugin language = PluginFactory.BaseLanguage;
|
private ILanguagePlugin? language = PluginFactory.BaseLanguage;
|
||||||
|
|
||||||
private I18N()
|
private I18N()
|
||||||
{
|
{
|
||||||
@ -18,12 +18,18 @@ public class I18N : ILang
|
|||||||
public string T(string fallbackEN)
|
public string T(string fallbackEN)
|
||||||
{
|
{
|
||||||
LOG.LogWarning("Using I18N.I.T without namespace and type is probably wrong, because the I18N key collection process of the build system will not find those keys.");
|
LOG.LogWarning("Using I18N.I.T without namespace and type is probably wrong, because the I18N key collection process of the build system will not find those keys.");
|
||||||
return this.GetText(this.language, fallbackEN);
|
if(this.language is not null)
|
||||||
|
return this.GetText(this.language, fallbackEN);
|
||||||
|
|
||||||
|
return fallbackEN;
|
||||||
}
|
}
|
||||||
|
|
||||||
public string T(string fallbackEN, string? typeNamespace, string? typeName)
|
public string T(string fallbackEN, string? typeNamespace, string? typeName)
|
||||||
{
|
{
|
||||||
return this.GetText(this.language, fallbackEN, typeNamespace, typeName);
|
if(this.language is not null)
|
||||||
|
return this.GetText(this.language, fallbackEN, typeNamespace, typeName);
|
||||||
|
|
||||||
|
return fallbackEN;
|
||||||
}
|
}
|
||||||
|
|
||||||
#endregion
|
#endregion
|
||||||
|
Loading…
Reference in New Issue
Block a user