{i18n.translate(
@@ -76,6 +77,7 @@ export const FlyoutBody: React.FC = () => {
{i18n.translate(
@@ -80,14 +77,16 @@ export const FlyoutBody: React.FC = () => {
onChange={(files) => setFileInput(files?.length ? files[0] : null)}
accept="application/json"
fullWidth
+ isLoading={isUploading}
+ isInvalid={errors.length > 0}
/>
{message} {message}
+ {i18n.translate(
+ 'xpack.enterpriseSearch.appSearch.documentCreation.showSummary.otherDocuments',
+ {
+ defaultMessage:
+ 'and {documents, number} other {documents, plural, one {document} other {documents}}.',
+ values: { documents },
+ }
+ )}
+
+ {i18n.translate('xpack.enterpriseSearch.appSearch.documentCreation.showSummary.title', {
+ defaultMessage: 'Indexing summary',
+ })}
+
+
+ {i18n.translate(
+ 'xpack.enterpriseSearch.appSearch.documentCreation.showSummary.documentNotIndexed',
+ { defaultMessage: 'This document was not indexed!' }
+ )}
+
+