@using AIStudio.Settings.DataModel @inherits MSGComponentBase @if (!this.IsFileAvailable) { @T("The file chosen for the data source does not exist anymore. Please edit the data source and choose another file or correct the path.") } else { @T("The file chosen for the data source exists.") } @if (this.IsCloudEmbedding) { @string.Format(T("The embedding runs in the cloud. All your data within the file '{0}' will be sent to the cloud."), this.DataSource.FilePath) } else { @T("The embedding runs locally or in your organization. Your data is not sent to the cloud.") } @T("Close")