@attribute [Route(Routes.ASSISTANT_AI_STUDIO_I18N)] @using AIStudio.Settings @inherits AssistantBaseCore @if (this.isLoading) { @T("The data is being loaded, please wait...") } else if (!this.isLoading && !string.IsNullOrWhiteSpace(this.loadingIssue)) { @T("While loading the I18N data, an issue occurred:") @this.loadingIssue } else if (!this.isLoading && string.IsNullOrWhiteSpace(this.loadingIssue)) { @this.AddedContentText @T("Key") @T("Text")
                    @context.Key
                
@context.Value
@this.RemovedContentText @T("Key") @T("Text")
                    @context.Key
                
@context.Value
@if (this.selectedTargetLanguage is CommonLanguages.EN_US) { @T("Please note: neither is a translation needed nor performed for English (USA). Anyway, you might want to generate the related Lua code.") } else { } @if (this.localizedContent.Count > 0) {
@this.LocalizedContentText @T("Key") @T("Text")
                    @context.Key
                
@context.Value
} }