@using AIStudio.Settings.DataModel @inherits MSGComponentBase @if (!this.IsDirectoryAvailable) { @T("The directory chosen for the data source does not exist anymore. Please edit the data source and correct the path.") } else { @T("The directory chosen for the data source exists.") } @if (this.IsCloudEmbedding) { @string.Format(T("The embedding runs in the cloud. All your data from the folder '{0}' and all its subdirectories will be sent to the cloud."), this.DataSource.Path) } else { @T("The embedding runs locally or in your organization. Your data is not sent to the cloud.") } @if (this.directorySizeNumFiles > 100) { @string.Format(T("For performance reasons, only the first 100 files are shown. The directory contains {0} files in total."), this.NumberFilesInDirectory) } @if (this.IsOperationInProgress) { } @T("Close")