RED-3146: Added new IMAGE_ANALYZING state
This commit is contained in:
parent
ad50aa12b6
commit
9a95847d0e
@ -14,6 +14,7 @@ export const processingFileStatusTranslations: { [key in ProcessingFileStatus]:
|
||||
DELETED: _('file-status.deleted'),
|
||||
ERROR: _('file-status.error'),
|
||||
FULLREPROCESS: _('file-status.full-reprocess'),
|
||||
IMAGE_ANALYZING: _('file-status.image-analyzing'),
|
||||
INDEXING: _('file-status.indexing'),
|
||||
OCR_PROCESSING: _('file-status.ocr-processing'),
|
||||
PROCESSING: _('file-status.processing'),
|
||||
|
||||
@ -142,9 +142,6 @@
|
||||
},
|
||||
"annotation": "Annotation",
|
||||
"annotation-actions": {
|
||||
"force-hint": {
|
||||
"label": "Force Hint"
|
||||
},
|
||||
"accept-recommendation": {
|
||||
"label": "Accept Recommendation"
|
||||
},
|
||||
@ -154,6 +151,9 @@
|
||||
"edit-reason": {
|
||||
"label": "Edit Reason"
|
||||
},
|
||||
"force-hint": {
|
||||
"label": "Force Hint"
|
||||
},
|
||||
"force-redaction": {
|
||||
"label": "Force Redaction"
|
||||
},
|
||||
@ -473,13 +473,13 @@
|
||||
"analysisColor": "Analysis",
|
||||
"defaultColor": "Default Color",
|
||||
"dictionaryRequestColor": "Dictionary Request",
|
||||
"ignoredHintColor": "Ignored Hint",
|
||||
"manualRedactionColor": "Manual Redaction",
|
||||
"notRedacted": "Skipped",
|
||||
"previewColor": "Preview",
|
||||
"requestAdd": "Request Add",
|
||||
"requestRemove": "Request Remove",
|
||||
"updatedColor": "Updated",
|
||||
"ignoredHintColor": "Ignored Hint"
|
||||
"updatedColor": "Updated"
|
||||
}
|
||||
},
|
||||
"dev-mode": "DEV",
|
||||
@ -1114,6 +1114,7 @@
|
||||
"deleted": "Deleted",
|
||||
"error": "Re-processing required",
|
||||
"full-reprocess": "Processing",
|
||||
"image-analyzing": "Image Analyzing",
|
||||
"indexing": "Processing",
|
||||
"new": "New",
|
||||
"ocr-processing": "OCR Processing",
|
||||
@ -1287,8 +1288,8 @@
|
||||
"header": {
|
||||
"dictionary": "Add to dictionary",
|
||||
"false-positive": "Set false positive",
|
||||
"force-redaction": "Force Redaction",
|
||||
"force-hint": "Force Hint",
|
||||
"force-redaction": "Force Redaction",
|
||||
"redaction": "Redaction",
|
||||
"request-dictionary": "Request add to dictionary",
|
||||
"request-false-positive": "Request false positive",
|
||||
|
||||
@ -14,6 +14,7 @@ export const ProcessingFileStatuses = {
|
||||
DELETED: 'DELETED',
|
||||
ERROR: 'ERROR',
|
||||
FULLREPROCESS: 'FULLREPROCESS',
|
||||
IMAGE_ANALYZING: 'IMAGE_ANALYZING',
|
||||
INDEXING: 'INDEXING',
|
||||
OCR_PROCESSING: 'OCR_PROCESSING',
|
||||
PROCESSED: 'PROCESSED',
|
||||
@ -28,6 +29,7 @@ export const isProcessingStatuses: List<ProcessingFileStatus> = [
|
||||
ProcessingFileStatuses.REPROCESS,
|
||||
ProcessingFileStatuses.FULLREPROCESS,
|
||||
ProcessingFileStatuses.OCR_PROCESSING,
|
||||
ProcessingFileStatuses.IMAGE_ANALYZING,
|
||||
ProcessingFileStatuses.INDEXING,
|
||||
ProcessingFileStatuses.PROCESSING,
|
||||
] as const;
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user