@inherits MSGComponentBase @* A drop anywhere in this dialog belongs to the dialog, not to the page behind it: *@ @T("See how we load your file. Review the content before we process it further.") @if (this.Document is null) { } else { } @if (!this.Document?.Exists ?? false) { @T("The specified file could not be found. The file have been moved, deleted, renamed, or is otherwise inaccessible.") } else if (this.isLoadingContent) { @T("Please wait while we load the content of your file. Depending on the file type and size, this may take a moment.") } else if (this.loadFailureMessage is not null) { @this.loadFailureMessage } else { @if (this.previewCutOffCharacters > 0) { @string.Format(T("Your document is large, so we show you only its beginning. We hide the remaining {0:N0} characters here. Rest assured: the AI still receives your entire document."), this.previewCutOffCharacters) } @if (this.Document?.IsImage ?? false) { } else {
}
}
@T("Close")