@konfuzio/document-validation-ui 0.1.19 → 0.1.20-dev.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (143) hide show
  1. package/.eslintrc.js +10 -10
  2. package/.prettierrc.json +1 -1
  3. package/LICENSE +21 -21
  4. package/README.md +24 -24
  5. package/cypress.config.js +13 -13
  6. package/dist/js/app.js +1 -1
  7. package/dist/js/app.js.map +1 -1
  8. package/dist/js/chunk-vendors.js +1 -1
  9. package/dist/js/chunk-vendors.js.map +1 -1
  10. package/jest.config.js +4 -4
  11. package/package.json +66 -66
  12. package/src/api.js +82 -82
  13. package/src/assets/images/AcceptedCheckMark.vue +8 -8
  14. package/src/assets/images/AcceptedUser.vue +8 -8
  15. package/src/assets/images/ActionIcon.vue +60 -60
  16. package/src/assets/images/ArrowDownKey.vue +11 -11
  17. package/src/assets/images/ArrowUpKey.vue +11 -11
  18. package/src/assets/images/CategoryIconImg.vue +13 -13
  19. package/src/assets/images/CheckMark.vue +8 -8
  20. package/src/assets/images/DraggableIcon.vue +14 -14
  21. package/src/assets/images/EditDocIcon.vue +12 -12
  22. package/src/assets/images/EmptyStateImg.vue +129 -129
  23. package/src/assets/images/ErrorIcon.vue +28 -28
  24. package/src/assets/images/EyeIcon.vue +11 -11
  25. package/src/assets/images/FileNameNotSavedImage.vue +26 -26
  26. package/src/assets/images/FileNameSavedImage.vue +14 -14
  27. package/src/assets/images/FitZoomIcon.vue +16 -16
  28. package/src/assets/images/GridIcon.vue +16 -16
  29. package/src/assets/images/KeyboardIcon.vue +16 -16
  30. package/src/assets/images/MagicWandIcon.vue +16 -16
  31. package/src/assets/images/MinusIcon.vue +13 -13
  32. package/src/assets/images/NotFoundIcon.vue +16 -16
  33. package/src/assets/images/NotOptimizedIllustration.vue +651 -651
  34. package/src/assets/images/PlusIcon.vue +13 -13
  35. package/src/assets/images/QuestionMark.vue +12 -12
  36. package/src/assets/images/ServerImage.vue +73 -73
  37. package/src/assets/images/SettingsIcon.vue +14 -14
  38. package/src/assets/images/SplitLines.vue +18 -18
  39. package/src/assets/images/SplitZigZag.vue +49 -49
  40. package/src/assets/images/StarIcon.vue +16 -16
  41. package/src/assets/images/StatusImg.vue +14 -14
  42. package/src/assets/images/TranslateArrows.vue +33 -33
  43. package/src/assets/scss/ann_set_table_options.scss +26 -26
  44. package/src/assets/scss/annotation_details.scss +141 -141
  45. package/src/assets/scss/choose_label_set_modal.scss +65 -65
  46. package/src/assets/scss/document_action_bar.scss +37 -37
  47. package/src/assets/scss/document_annotations.scss +558 -558
  48. package/src/assets/scss/document_category.scss +85 -85
  49. package/src/assets/scss/document_dashboard.scss +52 -52
  50. package/src/assets/scss/document_edit.scss +410 -410
  51. package/src/assets/scss/document_error.scss +81 -81
  52. package/src/assets/scss/document_name.scss +60 -60
  53. package/src/assets/scss/document_page.scss +12 -12
  54. package/src/assets/scss/document_thumbnails.scss +41 -41
  55. package/src/assets/scss/document_toolbar.scss +111 -111
  56. package/src/assets/scss/document_top_bar.scss +171 -171
  57. package/src/assets/scss/document_viewport_modal.scss +25 -25
  58. package/src/assets/scss/documents_list.scss +141 -141
  59. package/src/assets/scss/edit_page_thumbnail.scss +53 -53
  60. package/src/assets/scss/empty_state.scss +34 -34
  61. package/src/assets/scss/extracting_data.scss +35 -35
  62. package/src/assets/scss/imports.scss +1 -1
  63. package/src/assets/scss/multi_ann_table_overlay.scss +38 -38
  64. package/src/assets/scss/multi_ann_table_popup.scss +12 -12
  65. package/src/assets/scss/new_annotation.scss +102 -102
  66. package/src/assets/scss/scrolling_document.scss +19 -19
  67. package/src/assets/scss/theme.scss +801 -801
  68. package/src/assets/scss/variables.scss +66 -66
  69. package/src/components/App.cy.js +7 -7
  70. package/src/components/App.vue +187 -187
  71. package/src/components/DocumentAnnotations/AnnotationActionButtons.vue +152 -152
  72. package/src/components/DocumentAnnotations/AnnotationContent.vue +210 -210
  73. package/src/components/DocumentAnnotations/AnnotationDetails.vue +251 -251
  74. package/src/components/DocumentAnnotations/AnnotationRow.vue +752 -752
  75. package/src/components/DocumentAnnotations/AnnotationSetActionButtons.vue +89 -89
  76. package/src/components/DocumentAnnotations/ChooseLabelSetModal.vue +186 -186
  77. package/src/components/DocumentAnnotations/DocumentAnnotations.cy.js +441 -441
  78. package/src/components/DocumentAnnotations/DocumentAnnotations.vue +534 -534
  79. package/src/components/DocumentAnnotations/DocumentLabel.vue +189 -189
  80. package/src/components/DocumentAnnotations/EmptyAnnotation.vue +193 -193
  81. package/src/components/DocumentAnnotations/EmptyState.vue +21 -21
  82. package/src/components/DocumentAnnotations/ExtractingData.vue +41 -41
  83. package/src/components/DocumentAnnotations/LoadingAnnotations.vue +43 -43
  84. package/src/components/DocumentAnnotations/LoadingLabels.vue +43 -43
  85. package/src/components/DocumentAnnotations/MultiAnnotationTableOverlay.vue +338 -338
  86. package/src/components/DocumentAnnotations/index.js +8 -8
  87. package/src/components/DocumentCategory.vue +281 -281
  88. package/src/components/DocumentDashboard.vue +170 -170
  89. package/src/components/DocumentEdit/DocumentEdit.cy.js +541 -541
  90. package/src/components/DocumentEdit/DocumentEdit.vue +503 -503
  91. package/src/components/DocumentEdit/EditConfirmationModal.vue +55 -55
  92. package/src/components/DocumentEdit/EditPageThumbnail.vue +114 -114
  93. package/src/components/DocumentEdit/EditPages.vue +161 -161
  94. package/src/components/DocumentEdit/EditSidebar.vue +154 -154
  95. package/src/components/DocumentEdit/RenameAndCategorize.vue +184 -184
  96. package/src/components/DocumentEdit/SidebarButtons.vue +53 -53
  97. package/src/components/DocumentEdit/SplitInfoBar.vue +21 -21
  98. package/src/components/DocumentEdit/index.js +4 -4
  99. package/src/components/DocumentModals/DocumentErrorModal.vue +58 -58
  100. package/src/components/DocumentModals/NotOptimizedViewportModal.vue +51 -51
  101. package/src/components/DocumentPage/ActionBar.vue +48 -48
  102. package/src/components/DocumentPage/AnnSetTableOptions.vue +111 -111
  103. package/src/components/DocumentPage/BoxSelection.vue +152 -152
  104. package/src/components/DocumentPage/DocumentPage.cy.js +92 -92
  105. package/src/components/DocumentPage/DocumentPage.vue +568 -568
  106. package/src/components/DocumentPage/DocumentToolbar.cy.js +215 -215
  107. package/src/components/DocumentPage/DocumentToolbar.vue +228 -228
  108. package/src/components/DocumentPage/DummyPage.vue +55 -55
  109. package/src/components/DocumentPage/MultiAnnSelection.vue +371 -371
  110. package/src/components/DocumentPage/NewAnnotation.vue +308 -308
  111. package/src/components/DocumentPage/ScrollingDocument.vue +149 -149
  112. package/src/components/DocumentPage/ScrollingPage.vue +179 -179
  113. package/src/components/DocumentPage/index.js +5 -5
  114. package/src/components/DocumentThumbnails/DocumentThumbnails.cy.js +67 -67
  115. package/src/components/DocumentThumbnails/DocumentThumbnails.vue +132 -132
  116. package/src/components/DocumentThumbnails/LoadingThumbnail.vue +25 -25
  117. package/src/components/DocumentThumbnails/index.js +1 -1
  118. package/src/components/DocumentTopBar/DocumentName.vue +236 -236
  119. package/src/components/DocumentTopBar/DocumentTopBar.cy.js +222 -222
  120. package/src/components/DocumentTopBar/DocumentTopBar.vue +202 -202
  121. package/src/components/DocumentTopBar/DocumentTopBarButtons.vue +183 -183
  122. package/src/components/DocumentTopBar/KeyboardActionsDescription.vue +74 -74
  123. package/src/components/DocumentTopBar/index.js +3 -3
  124. package/src/components/DocumentsList/DocumentsList.vue +121 -121
  125. package/src/components/DocumentsList/index.js +1 -1
  126. package/src/components/ErrorMessage.vue +40 -40
  127. package/src/components/index.js +1 -1
  128. package/src/constants.js +5 -5
  129. package/src/directives/scroll.js +28 -28
  130. package/src/i18n.js +22 -22
  131. package/src/icons.js +45 -45
  132. package/src/locales/de.json +148 -148
  133. package/src/locales/en.json +148 -148
  134. package/src/main.js +26 -26
  135. package/src/store/category.js +191 -191
  136. package/src/store/display.js +311 -311
  137. package/src/store/document.js +1438 -1438
  138. package/src/store/edit.js +316 -316
  139. package/src/store/index.js +21 -21
  140. package/src/store/project.js +143 -143
  141. package/src/store/selection.js +210 -210
  142. package/src/utils/utils.js +54 -54
  143. package/vue.config.js +25 -25
@@ -1,148 +1,148 @@
1
- {
2
- "no_label_sets_found": "Keine Label Sets vorhanden",
3
- "no_label_sets_found_description": "In diesem Dokument sind keine Label Sets vorhanden.",
4
- "no_labels_found": "Keine Labels vorhanden",
5
- "no_labels_description": "In diesem Label Set sind keine Labels vorhanden.",
6
- "resolution_not_supported": "Die aktuelle Auflösung wird nicht unterstützt",
7
- "upload_documents": "Laden Sie Ihre Dokumente hoch",
8
- "request_trial": "Fordern Sie Ihren Probezugang an",
9
- "warning_message": "Die KI kann nicht trainiert werden, wenn Sie den Text manuell ändern.",
10
- "category": "Kategorie",
11
- "status": "Status",
12
- "preparation": "Vorbereitung",
13
- "training": "Training",
14
- "test": "Test",
15
- "excluded": "Ausgenommen",
16
- "set_status": "Setzen Sie bitte einen Status",
17
- "status_error": "Wir konnten den Status nicht ändern. Bitte versuchen Sie es später erneut.",
18
- "edit": "Bearbeiten",
19
- "save": "Speichern",
20
- "autosaving": "Automatisches Speichern...",
21
- "saved": "Gespeichert",
22
- "not_saved": "Konnte nicht gespeichert werden. Versuchen Sie es noch einmal",
23
- "handover": "Übergeben",
24
- "handover_document": "Übergabedokument",
25
- "type_email": "Bitte geben Sie eine E-Mail ein",
26
- "invalid_email": "Bitte geben Sie eine gültige E-Mail-Adresse ein.",
27
- "members": "Mitglieder",
28
- "select": "Auswählen",
29
- "document_successfully_handed": "Dokument erfolgreich zugewiesen an",
30
- "handover_not_possible": "Eine Zuweisung war nicht möglich. Bitte versuchen Sie es später erneut.",
31
- "small_viewport_title": "Kleine Fenstergröße",
32
- "small_viewport_info": "Es tut uns leid, aber Konfuzio ist nicht für diese Fenstergröße optimiert. Für eine bessere Bedienbarkeit öffnen Sie es bitte in einem größeren Ansichtsfenster.",
33
- "ok": "Ok",
34
- "no_data_found": "Zum Bearbeiten anklicken...",
35
- "draw_box_document": "Find <i>{label_name}</i> in the document",
36
- "confidence": "Konfidenz",
37
- "not_found_in_document": "Im Dokument nicht gefunden",
38
- "approved_by": "Genehmigt von",
39
- "approved": "Genehmigt",
40
- "created_by": "Erstellt von",
41
- "edited_by": "Bearbeitet durch",
42
- "edited": "Bearbeitet",
43
- "created": "Manuell erzeugt",
44
- "not_revised_yet": "Noch nicht geprüft",
45
- "rotate_pages": "Seiten drehen",
46
- "rotate_all": "Alles drehen",
47
- "cancel": "Beenden",
48
- "apply": "Anwenden",
49
- "data_being_extracted": "Neue Daten werden extrahiert",
50
- "analysing_document": "Wir analysieren Ihr Dokument.",
51
- "few_minutes": "Dies könnte ein paar Minuten dauern.",
52
- "missing_annotation": "Als fehlend markieren",
53
- "ann_exists": "Eine Annotation für dieses Label und Label-Set existiert bereits.",
54
- "lite_mode": "Schreibgeschützt",
55
- "limited_functionalities": "Sie verwenden die schreibgeschützte Version mit begrenzte Funktionalität.",
56
- "split": "Aufteilen",
57
- "reorder": "Sortieren",
58
- "rotate": "Rotieren",
59
- "edit_error": "Die Änderungen konnten nicht gespeichert werden. Bitte versuchen Sie es später erneut.",
60
- "select_pages": "Sie können nun Seiten drehen, neu sortieren und Dokumente teilen.",
61
- "edit_document": "Dokument bearbeiten (Early Access)",
62
- "edit_early_access": "Sie sind einer der Nutzer, die Zugang zu diesen Funktionalitäten vor dem offiziellen Erscheinungstermin erhalten.",
63
- "selected": "ausgewählt",
64
- "rotate_selected": "Ausgewählte Seite drehen",
65
- "edit_not_available": "Dokumente mit dem Status 'Vorbereitung', 'Training' oder 'Test' sowie Dokumente mit dem Status 'Geprüft' können nicht bearbeitet werden.",
66
- "rotate_split_reorder": "Rotieren, teilen oder sortieren",
67
- "rename_and_categorize": "Umbenennen und kategorisieren",
68
- "submit": "Senden",
69
- "next": "Nächster Schritt: Umbenennen und kategorisieren",
70
- "back_to_annotations": "Züruck zur Hauptansicht",
71
- "select_label": "Label auswählen",
72
- "select_annotation_set": "Wähle Annotation Set",
73
- "accept": "Akzeptieren",
74
- "document_error_title": "Dokumentenfehler",
75
- "document_error_info": "Es tut uns leid, das Dokument ist auf ein Problem gestoßen und seine Daten können nicht wiederhergestellt werden.",
76
- "contact_support": "Support kontaktieren",
77
- "finish_review": "Nachprüfung beenden",
78
- "review_error": "Beim Abschluss der Überprüfung ist etwas schief gelaufen. Bitte versuchen Sie es später erneut.",
79
- "document_reviewed": "Eine Bearbeitung ist nicht mehr möglich, da das Dokument bereits geprüft wurde.",
80
- "reviewed_mode": "Geprüft",
81
- "error_creating_annotation": "Die Annotation konnte nicht erzeugt werden. Bitte versuchen Sie es später erneut.",
82
- "categorize_document_title": "Dokument Kategorisieren",
83
- "categorized_as": "Dieses Dokument ist kategorisiert als",
84
- "not_categorized": "Nicht kategorisiert. Bitte wählen Sie vor dem Annotieren eine Kategorie aus: ",
85
- "choose_category": "Wählen Sie bitte eine Kategorie",
86
- "select_category": "Wählen Sie bitte die richtige Kategorie aus",
87
- "categorized_error": "Wenn dies nicht die richtige Kategorie ist, ändern Sie diese bitte und wir fahren mit der erneuten Extraktion fort.",
88
- "categorize_document_no_category_description": "Bitten Sie den Projektmanager, eine Beschreibung dieser Kategorie hinzuzufügen, um mehr über diese Kategorie zu erfahren.",
89
- "annotations_pending": "Ausstehende Annotationen",
90
- "annotations_accepted": "Akzeptierte Annotationen",
91
- "mark_all_missing": "Alle leeren als fehlend markieren",
92
- "no_labels_to_choose": "Keine Labels",
93
- "accept_group": "Alle akzeptieren",
94
- "use_your_keyboard": "Benutze deine Tastatur",
95
- "arrow_keys": "Navigieren",
96
- "esc_key": "Exit",
97
- "enter_key": "Akzeptieren oder Speichern",
98
- "decline": "Ablehnen",
99
- "server_error": "Wir haben derzeit ein Serverproblem. Bitte versuchen Sie es später noch einmal oder",
100
- "get_support": "Hole dir Unterstützung",
101
- "no_labels_available": "Das ausgewählte Annotations-Set enthält keine nicht ausgefüllten oder multiplen Labels. Weitere Informationen finden Sie unter <a href='https://help.konfuzio.com/modules/labels/index.html#multiple' target='_blank'>diesem Link</a>.",
102
- "new_ann_set_title": "Neues Annotations-Set",
103
- "new_ann_set_description": "Wählen Sie ein Datenmodell aus den vorhandenen aus. Das neue Annotations-Set enthält dieselben Beschriftungen.",
104
- "select_label_set": "Wählen Sie das Label-Set-Modell aus",
105
- "new_ann_set_hint": "Das neue Set wird erst in dem Moment erstellt, in dem Sie Ihre Annotationen speichern.",
106
- "new": "Neu",
107
- "continue": "Weiter",
108
- "new_multi_ann_title": "Erstellen Sie mehrere Annotationen",
109
- "new_multi_ann_description": "Wählen Sie ein Datenmodell aus den vorhandenen aus und deaktivieren Sie dann die Labels, die in diesem Dokument nicht vorhanden sind.",
110
- "drag_drop_columns_multi_ann": "Drag and Drop, um die Reihenfolge der Labels zu ändern",
111
- "error_creating_multi_ann": "Nicht alle Annotationen wurden erfolgreich erstellt.",
112
- "no_multi_ann_labelset_model": "Es gibt keine verfügbaren Label Sets, die mehrfach in diesem Dokument zu finden sind. Weitere Informationen finden Sie unter <a href='https://help.konfuzio.com/tutorials/advanced-document-extraction/index.html#multiple-annotation-sets' target='_blank'>diesem Link</a>.",
113
- "single_category_in_project": "Das aktuelle Projekt hat nur eine Kategorie. Um sie ändern zu können, sollte die neue zuerst dem Projekt hinzugefügt werden. Einzelheiten dazu finden Sie unter <a href='https://help.konfuzio.com/modules/categories/index.html#add-a-category' target='_blank'>diesem Link</a>.",
114
- "approved_annotations": "Die Kategorie kann nicht geändert werden, da bereits akzeptierte Annotationen oder manuell erstellte Annotationen zu diesem Dokument vorhanden sind.",
115
- "restore": "Wiederherstellen",
116
- "disabled_finish_review": "Das Beenden der Dokumentenprüfung ist erst möglich, nachdem alle Annotationen überarbeitet wurden, unabhängig davon, ob sie akzeptiert oder als fehlend markiert wurden.",
117
- "split_modal_title": "Dokument aufteilen",
118
- "split_modal_body": "Wir haben Ihre Datei gescannt und <strong>{number_of_split_documents}</strong> verschiedene Dokumente gefunde. <strong>Wir empfehlen dringend,</strong> sie zu diesem Zeitpunkt aufzuteilen, da sonst alle Fortschritte, die Sie gemacht haben, aufgrund der erneuten Extraktion der Dokumentdaten verloren gehen.",
119
- "do_it_later": "Ich werde es später machen",
120
- "review_now": "Jetzt überprüfen",
121
- "recommended": "Empfohlen",
122
- "smart_split": "Smart Split",
123
- "smart_split_suggestions": "Unsere Smart Split-Vorschläge sind grün hervorgehoben",
124
- "no_splitting_suggestions": "Dieses Dokument enthält keine Split-Vorschläge",
125
- "confirm_splitting": "Sind Sie sicher, dass Sie die Änderungen bestätigen möchten?",
126
- "splitting_warning": "Beachten Sie bitte, dass alle Annotationen, die Sie in diesem Dokument gemacht haben, nicht gespeichert werden, wenn Sie fortfahren.",
127
- "no": "Nein",
128
- "yes": "Ja",
129
- "split_modal_no_suggestions": "Soll das Dokument geteilt werden? Wir <strong>empfehlen</strong> das Dokument jetzt zuteilen, da sonst alle Fortschritte, die in der Zwischenzeit gemacht werden,verloren gehen.",
130
- "missing_from_document": "Fehlt im Dokument",
131
- "edit_label": "Label editieren",
132
- "delete_label": "Label löschen",
133
- "table": "Tabelle",
134
- "prepare_document": "Dokument vorbereiten",
135
- "delete_table": "Tabelle löschen",
136
- "error_downloading_file": "Die Datei konnte nicht heruntergeladen werden.",
137
- "original_file": "Originaldatei",
138
- "pdf_file": "PDF Datei",
139
- "no_labels_in_set": "Dieser Annotationssatz hat keine Beschriftungen.",
140
- "link_to_add_labels": "Sehen Sie <a href='https://help.konfuzio.com/modules/labels/index.html#add-a-label' target='_blank'>hier</a>, wie Sie sie hinzufügen.",
141
- "no_annotations_in_annotation_set": "Dieser Annotationssatz enthält keine extrahierten Annotationen für die jeweiligen Beschriftungen.",
142
- "wait_title": "Bitte warten...",
143
- "redirecting_to_documents_list": "Wir führen Sie zur Dokumentenliste, sodass Sie Ihre Dokumente weiter überprüfen können, während wir die vorgenommenen Änderungen verarbeiten.",
144
- "translated_string_title": "Übersetzter Text",
145
- "no_translated_string": "Es existiert noch keine Übersetzung.",
146
- "add_translation": "Klicken Sie zum hinzufügen",
147
- "edit_translation": "Zum Bearbeiten anklicken"
148
- }
1
+ {
2
+ "no_label_sets_found": "Keine Label Sets vorhanden",
3
+ "no_label_sets_found_description": "In diesem Dokument sind keine Label Sets vorhanden.",
4
+ "no_labels_found": "Keine Labels vorhanden",
5
+ "no_labels_description": "In diesem Label Set sind keine Labels vorhanden.",
6
+ "resolution_not_supported": "Die aktuelle Auflösung wird nicht unterstützt",
7
+ "upload_documents": "Laden Sie Ihre Dokumente hoch",
8
+ "request_trial": "Fordern Sie Ihren Probezugang an",
9
+ "warning_message": "Die KI kann nicht trainiert werden, wenn Sie den Text manuell ändern.",
10
+ "category": "Kategorie",
11
+ "status": "Status",
12
+ "preparation": "Vorbereitung",
13
+ "training": "Training",
14
+ "test": "Test",
15
+ "excluded": "Ausgenommen",
16
+ "set_status": "Setzen Sie bitte einen Status",
17
+ "status_error": "Wir konnten den Status nicht ändern. Bitte versuchen Sie es später erneut.",
18
+ "edit": "Bearbeiten",
19
+ "save": "Speichern",
20
+ "autosaving": "Automatisches Speichern...",
21
+ "saved": "Gespeichert",
22
+ "not_saved": "Konnte nicht gespeichert werden. Versuchen Sie es noch einmal",
23
+ "handover": "Übergeben",
24
+ "handover_document": "Übergabedokument",
25
+ "type_email": "Bitte geben Sie eine E-Mail ein",
26
+ "invalid_email": "Bitte geben Sie eine gültige E-Mail-Adresse ein.",
27
+ "members": "Mitglieder",
28
+ "select": "Auswählen",
29
+ "document_successfully_handed": "Dokument erfolgreich zugewiesen an",
30
+ "handover_not_possible": "Eine Zuweisung war nicht möglich. Bitte versuchen Sie es später erneut.",
31
+ "small_viewport_title": "Kleine Fenstergröße",
32
+ "small_viewport_info": "Es tut uns leid, aber Konfuzio ist nicht für diese Fenstergröße optimiert. Für eine bessere Bedienbarkeit öffnen Sie es bitte in einem größeren Ansichtsfenster.",
33
+ "ok": "Ok",
34
+ "no_data_found": "Zum Bearbeiten anklicken...",
35
+ "draw_box_document": "Find <i>{label_name}</i> in the document",
36
+ "confidence": "Konfidenz",
37
+ "not_found_in_document": "Im Dokument nicht gefunden",
38
+ "approved_by": "Genehmigt von",
39
+ "approved": "Genehmigt",
40
+ "created_by": "Erstellt von",
41
+ "edited_by": "Bearbeitet durch",
42
+ "edited": "Bearbeitet",
43
+ "created": "Manuell erzeugt",
44
+ "not_revised_yet": "Noch nicht geprüft",
45
+ "rotate_pages": "Seiten drehen",
46
+ "rotate_all": "Alles drehen",
47
+ "cancel": "Beenden",
48
+ "apply": "Anwenden",
49
+ "data_being_extracted": "Neue Daten werden extrahiert",
50
+ "analysing_document": "Wir analysieren Ihr Dokument.",
51
+ "few_minutes": "Dies könnte ein paar Minuten dauern.",
52
+ "missing_annotation": "Als fehlend markieren",
53
+ "ann_exists": "Eine Annotation für dieses Label und Label-Set existiert bereits.",
54
+ "lite_mode": "Schreibgeschützt",
55
+ "limited_functionalities": "Sie verwenden die schreibgeschützte Version mit begrenzte Funktionalität.",
56
+ "split": "Aufteilen",
57
+ "reorder": "Sortieren",
58
+ "rotate": "Rotieren",
59
+ "edit_error": "Die Änderungen konnten nicht gespeichert werden. Bitte versuchen Sie es später erneut.",
60
+ "select_pages": "Sie können nun Seiten drehen, neu sortieren und Dokumente teilen.",
61
+ "edit_document": "Dokument bearbeiten (Early Access)",
62
+ "edit_early_access": "Sie sind einer der Nutzer, die Zugang zu diesen Funktionalitäten vor dem offiziellen Erscheinungstermin erhalten.",
63
+ "selected": "ausgewählt",
64
+ "rotate_selected": "Ausgewählte Seite drehen",
65
+ "edit_not_available": "Dokumente mit dem Status 'Vorbereitung', 'Training' oder 'Test' sowie Dokumente mit dem Status 'Geprüft' können nicht bearbeitet werden.",
66
+ "rotate_split_reorder": "Rotieren, teilen oder sortieren",
67
+ "rename_and_categorize": "Umbenennen und kategorisieren",
68
+ "submit": "Senden",
69
+ "next": "Nächster Schritt: Umbenennen und kategorisieren",
70
+ "back_to_annotations": "Züruck zur Hauptansicht",
71
+ "select_label": "Label auswählen",
72
+ "select_annotation_set": "Wähle Annotation Set",
73
+ "accept": "Akzeptieren",
74
+ "document_error_title": "Dokumentenfehler",
75
+ "document_error_info": "Es tut uns leid, das Dokument ist auf ein Problem gestoßen und seine Daten können nicht wiederhergestellt werden.",
76
+ "contact_support": "Support kontaktieren",
77
+ "finish_review": "Nachprüfung beenden",
78
+ "review_error": "Beim Abschluss der Überprüfung ist etwas schief gelaufen. Bitte versuchen Sie es später erneut.",
79
+ "document_reviewed": "Eine Bearbeitung ist nicht mehr möglich, da das Dokument bereits geprüft wurde.",
80
+ "reviewed_mode": "Geprüft",
81
+ "error_creating_annotation": "Die Annotation konnte nicht erzeugt werden. Bitte versuchen Sie es später erneut.",
82
+ "categorize_document_title": "Dokument Kategorisieren",
83
+ "categorized_as": "Dieses Dokument ist kategorisiert als",
84
+ "not_categorized": "Nicht kategorisiert. Bitte wählen Sie vor dem Annotieren eine Kategorie aus: ",
85
+ "choose_category": "Wählen Sie bitte eine Kategorie",
86
+ "select_category": "Wählen Sie bitte die richtige Kategorie aus",
87
+ "categorized_error": "Wenn dies nicht die richtige Kategorie ist, ändern Sie diese bitte und wir fahren mit der erneuten Extraktion fort.",
88
+ "categorize_document_no_category_description": "Bitten Sie den Projektmanager, eine Beschreibung dieser Kategorie hinzuzufügen, um mehr über diese Kategorie zu erfahren.",
89
+ "annotations_pending": "Ausstehende Annotationen",
90
+ "annotations_accepted": "Akzeptierte Annotationen",
91
+ "mark_all_missing": "Alle leeren als fehlend markieren",
92
+ "no_labels_to_choose": "Keine Labels",
93
+ "accept_group": "Alle akzeptieren",
94
+ "use_your_keyboard": "Benutze deine Tastatur",
95
+ "arrow_keys": "Navigieren",
96
+ "esc_key": "Exit",
97
+ "enter_key": "Akzeptieren oder Speichern",
98
+ "decline": "Ablehnen",
99
+ "server_error": "Wir haben derzeit ein Serverproblem. Bitte versuchen Sie es später noch einmal oder",
100
+ "get_support": "Hole dir Unterstützung",
101
+ "no_labels_available": "Das ausgewählte Annotations-Set enthält keine nicht ausgefüllten oder multiplen Labels. Weitere Informationen finden Sie unter <a href='https://help.konfuzio.com/modules/labels/index.html#multiple' target='_blank'>diesem Link</a>.",
102
+ "new_ann_set_title": "Neues Annotations-Set",
103
+ "new_ann_set_description": "Wählen Sie ein Datenmodell aus den vorhandenen aus. Das neue Annotations-Set enthält dieselben Beschriftungen.",
104
+ "select_label_set": "Wählen Sie das Label-Set-Modell aus",
105
+ "new_ann_set_hint": "Das neue Set wird erst in dem Moment erstellt, in dem Sie Ihre Annotationen speichern.",
106
+ "new": "Neu",
107
+ "continue": "Weiter",
108
+ "new_multi_ann_title": "Erstellen Sie mehrere Annotationen",
109
+ "new_multi_ann_description": "Wählen Sie ein Datenmodell aus den vorhandenen aus und deaktivieren Sie dann die Labels, die in diesem Dokument nicht vorhanden sind.",
110
+ "drag_drop_columns_multi_ann": "Drag and Drop, um die Reihenfolge der Labels zu ändern",
111
+ "error_creating_multi_ann": "Nicht alle Annotationen wurden erfolgreich erstellt.",
112
+ "no_multi_ann_labelset_model": "Es gibt keine verfügbaren Label Sets, die mehrfach in diesem Dokument zu finden sind. Weitere Informationen finden Sie unter <a href='https://help.konfuzio.com/tutorials/advanced-document-extraction/index.html#multiple-annotation-sets' target='_blank'>diesem Link</a>.",
113
+ "single_category_in_project": "Das aktuelle Projekt hat nur eine Kategorie. Um sie ändern zu können, sollte die neue zuerst dem Projekt hinzugefügt werden. Einzelheiten dazu finden Sie unter <a href='https://help.konfuzio.com/modules/categories/index.html#add-a-category' target='_blank'>diesem Link</a>.",
114
+ "approved_annotations": "Die Kategorie kann nicht geändert werden, da bereits akzeptierte Annotationen oder manuell erstellte Annotationen zu diesem Dokument vorhanden sind.",
115
+ "restore": "Wiederherstellen",
116
+ "disabled_finish_review": "Das Beenden der Dokumentenprüfung ist erst möglich, nachdem alle Annotationen überarbeitet wurden, unabhängig davon, ob sie akzeptiert oder als fehlend markiert wurden.",
117
+ "split_modal_title": "Dokument aufteilen",
118
+ "split_modal_body": "Wir haben Ihre Datei gescannt und <strong>{number_of_split_documents}</strong> verschiedene Dokumente gefunde. <strong>Wir empfehlen dringend,</strong> sie zu diesem Zeitpunkt aufzuteilen, da sonst alle Fortschritte, die Sie gemacht haben, aufgrund der erneuten Extraktion der Dokumentdaten verloren gehen.",
119
+ "do_it_later": "Ich werde es später machen",
120
+ "review_now": "Jetzt überprüfen",
121
+ "recommended": "Empfohlen",
122
+ "smart_split": "Smart Split",
123
+ "smart_split_suggestions": "Unsere Smart Split-Vorschläge sind grün hervorgehoben",
124
+ "no_splitting_suggestions": "Dieses Dokument enthält keine Split-Vorschläge",
125
+ "confirm_splitting": "Sind Sie sicher, dass Sie die Änderungen bestätigen möchten?",
126
+ "splitting_warning": "Beachten Sie bitte, dass alle Annotationen, die Sie in diesem Dokument gemacht haben, nicht gespeichert werden, wenn Sie fortfahren.",
127
+ "no": "Nein",
128
+ "yes": "Ja",
129
+ "split_modal_no_suggestions": "Soll das Dokument geteilt werden? Wir <strong>empfehlen</strong> das Dokument jetzt zuteilen, da sonst alle Fortschritte, die in der Zwischenzeit gemacht werden,verloren gehen.",
130
+ "missing_from_document": "Fehlt im Dokument",
131
+ "edit_label": "Label editieren",
132
+ "delete_label": "Label löschen",
133
+ "table": "Tabelle",
134
+ "prepare_document": "Dokument vorbereiten",
135
+ "delete_table": "Tabelle löschen",
136
+ "error_downloading_file": "Die Datei konnte nicht heruntergeladen werden.",
137
+ "original_file": "Originaldatei",
138
+ "pdf_file": "PDF Datei",
139
+ "no_labels_in_set": "Dieser Annotationssatz hat keine Beschriftungen.",
140
+ "link_to_add_labels": "Sehen Sie <a href='https://help.konfuzio.com/modules/labels/index.html#add-a-label' target='_blank'>hier</a>, wie Sie sie hinzufügen.",
141
+ "no_annotations_in_annotation_set": "Dieser Annotationssatz enthält keine extrahierten Annotationen für die jeweiligen Beschriftungen.",
142
+ "wait_title": "Bitte warten...",
143
+ "redirecting_to_documents_list": "Wir führen Sie zur Dokumentenliste, sodass Sie Ihre Dokumente weiter überprüfen können, während wir die vorgenommenen Änderungen verarbeiten.",
144
+ "translated_string_title": "Übersetzter Text",
145
+ "no_translated_string": "Es existiert noch keine Übersetzung.",
146
+ "add_translation": "Klicken Sie zum hinzufügen",
147
+ "edit_translation": "Zum Bearbeiten anklicken"
148
+ }
@@ -1,148 +1,148 @@
1
- {
2
- "no_label_sets_found": "No annotation sets found",
3
- "no_label_sets_found_description": "There are no annotation sets in this document.",
4
- "no_labels_found": "No labels found",
5
- "no_labels_description": "There are no labels in this label set.",
6
- "resolution_not_supported": "App not supported on this resolution",
7
- "upload_documents": "Upload your own documents",
8
- "request_trial": "Request trial access",
9
- "warning_message": "AI can’t be trained if you change the text manually.",
10
- "category": "Category",
11
- "status": "Status",
12
- "preparation": "Preparation",
13
- "training": "Training",
14
- "test": "Test",
15
- "excluded": "Excluded",
16
- "set_status": "Set a status",
17
- "status_error": "We couldn’t change the status. Please try again later.",
18
- "edit": "Edit",
19
- "save": "Save",
20
- "autosaving": "Auto saving...",
21
- "saved": "Saved",
22
- "not_saved": "Could not save. Try again",
23
- "handover": "Handover",
24
- "handover_document": "Handover document",
25
- "type_email": "Type an email",
26
- "invalid_email": "Please enter a valid email address.",
27
- "members": "MEMBERS",
28
- "select": "Select",
29
- "document_successfully_handed": "Document successfully handed over to",
30
- "handover_not_possible": "Handover was not possible. Please try again later.",
31
- "small_viewport_title": "Small viewport size",
32
- "small_viewport_info": "We’re sorry, but Konfuzio is not optimized to this viewport size. For a better experience, please open it on a bigger viewport.",
33
- "ok": "Ok, got it",
34
- "no_data_found": "Click to edit...",
35
- "draw_box_document": "Find <i>{label_name}</i> in the document",
36
- "confidence": "Confidence",
37
- "not_found_in_document": "Not found in the document",
38
- "approved_by": "Approved by",
39
- "approved": "Approved",
40
- "created_by": "Created by",
41
- "edited_by": "Edited by",
42
- "edited": "Edited",
43
- "created": "Created manually",
44
- "not_revised_yet": "Not revised yet",
45
- "rotate_pages": "Rotate pages",
46
- "rotate_all": "Rotate all",
47
- "cancel": "Cancel",
48
- "apply": "Apply",
49
- "next": "Next: Rename and Categorize",
50
- "back_to_annotations": "Back to annotation view",
51
- "submit": "Submit",
52
- "data_being_extracted": "New data is being extracted",
53
- "analysing_document": "We are analysing your document.",
54
- "few_minutes": "This might take a few minutes.",
55
- "missing_annotation": "Mark as Missing",
56
- "ann_exists": "An annotation for this label and label set already exists.",
57
- "lite_mode": "Read Only",
58
- "limited_functionalities": "You are using the Read Only version with limited functionalities.",
59
- "accept": "Accept",
60
- "split": "Split",
61
- "reorder": "Reorder",
62
- "rotate": "Rotate",
63
- "edit_error": "The changes couldn’t be saved, please try again later.",
64
- "select_pages": "You can now rotate pages, reorder and split documents.",
65
- "edit_document": "Edit document (Early Access)",
66
- "edit_early_access": "You are one of the users who have access to these functionalities before the release date.",
67
- "selected": "selected",
68
- "rotate_selected": "Rotate selected",
69
- "edit_not_available": "Editing is not possible for documents with a status of 'Preparation', 'Training' or 'Test', or documents that are 'Reviewed'",
70
- "rotate_split_reorder": "Rotate, split or reorder",
71
- "rename_and_categorize": "Rename and Categorize",
72
- "select_label": "Select Label",
73
- "select_annotation_set": "Select Annotation Set",
74
- "document_error_title": "Document error",
75
- "document_error_info": "We’re sorry, the document ran into a problem and its data can’t be restored.",
76
- "contact_support": "Contact support",
77
- "finish_review": "Finish review",
78
- "review_error": "Something went wrong finishing the review. Please try again later.",
79
- "document_reviewed": "Editing is no longer possible since the document has already been reviewed.",
80
- "reviewed_mode": "Reviewed",
81
- "error_creating_annotation": "The annotation could not be created. Please try again later.",
82
- "categorize_document_title": "Categorize the Document",
83
- "categorized_as": "This document is currently categorized as",
84
- "not_categorized": "This document is currently not categorized. Please select a category before annotating: ",
85
- "choose_category": "Choose a category",
86
- "select_category": "Select the correct category",
87
- "categorized_error": "If this is not the correct category, please change it and we'll proceed with the re-extraction.",
88
- "categorize_document_no_category_description": "Ask the Project Manager to add a description of this Category to know more about this category.",
89
- "annotations_pending": "pending",
90
- "annotations_accepted": "accepted",
91
- "mark_all_missing": "Mark all empty as Missing",
92
- "no_labels_to_choose": "No Labels",
93
- "accept_group": "Accept all",
94
- "new_ann_set_title": "New annotation set",
95
- "new_ann_set_description": "Select a data model from the existing ones. The new annotation set will contain the same labels.",
96
- "select_label_set": "Select label-set model",
97
- "new_ann_set_hint": "The new set will only be created in the moment you save your annotation.",
98
- "new": "New",
99
- "continue": "Continue",
100
- "use_your_keyboard": "Use your keyboard",
101
- "arrow_keys": "to Navigate",
102
- "esc_key": "Exit",
103
- "enter_key": "Accept or Save",
104
- "decline": "Decline",
105
- "server_error": "We are currently experiencing a server issue. Please try again later or",
106
- "get_support": "Get Support",
107
- "no_labels_available": "There are no unfilled or multiple labels in the selected annotation set. For more details, you can visit <a href='https://help.konfuzio.com/modules/labels/index.html#multiple' target='_blank'>this link</a>.",
108
- "new_multi_ann_title": "Create multiple annotations",
109
- "new_multi_ann_description": "Select a data model from the existing ones, then deselect the labels that don't exist in this document.",
110
- "drag_drop_columns_multi_ann": "Drag and drop to change the order of the labels",
111
- "error_creating_multi_ann": "Not all annotation sets were created successfully.",
112
- "disabled_finish_review": "Finishing the document review is only possible after all annotations have been revised, whether they are accepted or marked as missing.",
113
- "no_multi_ann_labelset_model": "There are no available label sets that can be found multiple times in this document. For more details, you can visit <a href='https://help.konfuzio.com/tutorials/advanced-document-extraction/index.html#multiple-annotation-sets' target='_blank'>this link</a>.",
114
- "single_category_in_project": "The current project has only one category. To be able to change it, the new one should be first added to the project. For details on how to do this, visit <a href='https://help.konfuzio.com/modules/categories/index.html#add-a-category' target='_blank'>this link</a>.",
115
- "approved_annotations": "It is not possible to change the current category since the document has approved or manually created annotations.",
116
- "restore": "Restore",
117
- "split_modal_title": "Split the document",
118
- "split_modal_body": "We've scanned your file and found <strong>{number_of_split_documents}</strong> different documents. <strong>We strongly recommend</strong> splitting it at this stage, otherwise all the progress you’ve made will be lost due to document data re-extraction.",
119
- "do_it_later": "I'll do it later",
120
- "review_now": "Review now",
121
- "recommended": "Recommended",
122
- "smart_split": "Smart Split",
123
- "smart_split_suggestions": "Our Smart Split suggestions are highlighted in green",
124
- "no_splitting_suggestions": "This document does not have splitting suggestions",
125
- "confirm_splitting": "Are you sure you want to confirm the changes?",
126
- "splitting_warning": "Be aware that any annotations you have made in this document will not be saved if you proceed.",
127
- "no": "No",
128
- "yes": "Yes",
129
- "prepare_document": "Prepare the document",
130
- "split_modal_no_suggestions": "Do you need to split the document? <strong>We strongly recommend</strong> splitting it at this stage, otherwise all the progress you’ve made will be lost in the future.",
131
- "missing_from_document": "Missing from the document",
132
- "edit_label": "Edit label",
133
- "delete_label": "Delete label",
134
- "table": "Table",
135
- "delete_table": "Delete table",
136
- "error_downloading_file": "The file could not be downloaded.",
137
- "original_file": "Original file",
138
- "pdf_file": "PDF file",
139
- "no_labels_in_set": "This annotation set has no labels.",
140
- "link_to_add_labels": "See how to add them <a href='https://help.konfuzio.com/modules/labels/index.html#add-a-label' target='_blank'>here</a>.",
141
- "no_annotations_in_annotation_set": "This annotation set has no annotations extracted for its respective labels.",
142
- "wait_title": "Please wait...",
143
- "redirecting_to_documents_list": "We are taking you to the documents list, so you can continue reviewing your documents while we process the changes made.",
144
- "translated_string_title": "Translated text",
145
- "no_translated_string": "No translation exists yet.",
146
- "add_translation": "Click to add one",
147
- "edit_translation": "Click to edit"
148
- }
1
+ {
2
+ "no_label_sets_found": "No annotation sets found",
3
+ "no_label_sets_found_description": "There are no annotation sets in this document.",
4
+ "no_labels_found": "No labels found",
5
+ "no_labels_description": "There are no labels in this label set.",
6
+ "resolution_not_supported": "App not supported on this resolution",
7
+ "upload_documents": "Upload your own documents",
8
+ "request_trial": "Request trial access",
9
+ "warning_message": "AI can’t be trained if you change the text manually.",
10
+ "category": "Category",
11
+ "status": "Status",
12
+ "preparation": "Preparation",
13
+ "training": "Training",
14
+ "test": "Test",
15
+ "excluded": "Excluded",
16
+ "set_status": "Set a status",
17
+ "status_error": "We couldn’t change the status. Please try again later.",
18
+ "edit": "Edit",
19
+ "save": "Save",
20
+ "autosaving": "Auto saving...",
21
+ "saved": "Saved",
22
+ "not_saved": "Could not save. Try again",
23
+ "handover": "Handover",
24
+ "handover_document": "Handover document",
25
+ "type_email": "Type an email",
26
+ "invalid_email": "Please enter a valid email address.",
27
+ "members": "MEMBERS",
28
+ "select": "Select",
29
+ "document_successfully_handed": "Document successfully handed over to",
30
+ "handover_not_possible": "Handover was not possible. Please try again later.",
31
+ "small_viewport_title": "Small viewport size",
32
+ "small_viewport_info": "We’re sorry, but Konfuzio is not optimized to this viewport size. For a better experience, please open it on a bigger viewport.",
33
+ "ok": "Ok, got it",
34
+ "no_data_found": "Click to edit...",
35
+ "draw_box_document": "Find <i>{label_name}</i> in the document",
36
+ "confidence": "Confidence",
37
+ "not_found_in_document": "Not found in the document",
38
+ "approved_by": "Approved by",
39
+ "approved": "Approved",
40
+ "created_by": "Created by",
41
+ "edited_by": "Edited by",
42
+ "edited": "Edited",
43
+ "created": "Created manually",
44
+ "not_revised_yet": "Not revised yet",
45
+ "rotate_pages": "Rotate pages",
46
+ "rotate_all": "Rotate all",
47
+ "cancel": "Cancel",
48
+ "apply": "Apply",
49
+ "next": "Next: Rename and Categorize",
50
+ "back_to_annotations": "Back to annotation view",
51
+ "submit": "Submit",
52
+ "data_being_extracted": "New data is being extracted",
53
+ "analysing_document": "We are analysing your document.",
54
+ "few_minutes": "This might take a few minutes.",
55
+ "missing_annotation": "Mark as Missing",
56
+ "ann_exists": "An annotation for this label and label set already exists.",
57
+ "lite_mode": "Read Only",
58
+ "limited_functionalities": "You are using the Read Only version with limited functionalities.",
59
+ "accept": "Accept",
60
+ "split": "Split",
61
+ "reorder": "Reorder",
62
+ "rotate": "Rotate",
63
+ "edit_error": "The changes couldn’t be saved, please try again later.",
64
+ "select_pages": "You can now rotate pages, reorder and split documents.",
65
+ "edit_document": "Edit document (Early Access)",
66
+ "edit_early_access": "You are one of the users who have access to these functionalities before the release date.",
67
+ "selected": "selected",
68
+ "rotate_selected": "Rotate selected",
69
+ "edit_not_available": "Editing is not possible for documents with a status of 'Preparation', 'Training' or 'Test', or documents that are 'Reviewed'",
70
+ "rotate_split_reorder": "Rotate, split or reorder",
71
+ "rename_and_categorize": "Rename and Categorize",
72
+ "select_label": "Select Label",
73
+ "select_annotation_set": "Select Annotation Set",
74
+ "document_error_title": "Document error",
75
+ "document_error_info": "We’re sorry, the document ran into a problem and its data can’t be restored.",
76
+ "contact_support": "Contact support",
77
+ "finish_review": "Finish review",
78
+ "review_error": "Something went wrong finishing the review. Please try again later.",
79
+ "document_reviewed": "Editing is no longer possible since the document has already been reviewed.",
80
+ "reviewed_mode": "Reviewed",
81
+ "error_creating_annotation": "The annotation could not be created. Please try again later.",
82
+ "categorize_document_title": "Categorize the Document",
83
+ "categorized_as": "This document is currently categorized as",
84
+ "not_categorized": "This document is currently not categorized. Please select a category before annotating: ",
85
+ "choose_category": "Choose a category",
86
+ "select_category": "Select the correct category",
87
+ "categorized_error": "If this is not the correct category, please change it and we'll proceed with the re-extraction.",
88
+ "categorize_document_no_category_description": "Ask the Project Manager to add a description of this Category to know more about this category.",
89
+ "annotations_pending": "pending",
90
+ "annotations_accepted": "accepted",
91
+ "mark_all_missing": "Mark all empty as Missing",
92
+ "no_labels_to_choose": "No Labels",
93
+ "accept_group": "Accept all",
94
+ "new_ann_set_title": "New annotation set",
95
+ "new_ann_set_description": "Select a data model from the existing ones. The new annotation set will contain the same labels.",
96
+ "select_label_set": "Select label-set model",
97
+ "new_ann_set_hint": "The new set will only be created in the moment you save your annotation.",
98
+ "new": "New",
99
+ "continue": "Continue",
100
+ "use_your_keyboard": "Use your keyboard",
101
+ "arrow_keys": "to Navigate",
102
+ "esc_key": "Exit",
103
+ "enter_key": "Accept or Save",
104
+ "decline": "Decline",
105
+ "server_error": "We are currently experiencing a server issue. Please try again later or",
106
+ "get_support": "Get Support",
107
+ "no_labels_available": "There are no unfilled or multiple labels in the selected annotation set. For more details, you can visit <a href='https://help.konfuzio.com/modules/labels/index.html#multiple' target='_blank'>this link</a>.",
108
+ "new_multi_ann_title": "Create multiple annotations",
109
+ "new_multi_ann_description": "Select a data model from the existing ones, then deselect the labels that don't exist in this document.",
110
+ "drag_drop_columns_multi_ann": "Drag and drop to change the order of the labels",
111
+ "error_creating_multi_ann": "Not all annotation sets were created successfully.",
112
+ "disabled_finish_review": "Finishing the document review is only possible after all annotations have been revised, whether they are accepted or marked as missing.",
113
+ "no_multi_ann_labelset_model": "There are no available label sets that can be found multiple times in this document. For more details, you can visit <a href='https://help.konfuzio.com/tutorials/advanced-document-extraction/index.html#multiple-annotation-sets' target='_blank'>this link</a>.",
114
+ "single_category_in_project": "The current project has only one category. To be able to change it, the new one should be first added to the project. For details on how to do this, visit <a href='https://help.konfuzio.com/modules/categories/index.html#add-a-category' target='_blank'>this link</a>.",
115
+ "approved_annotations": "It is not possible to change the current category since the document has approved or manually created annotations.",
116
+ "restore": "Restore",
117
+ "split_modal_title": "Split the document",
118
+ "split_modal_body": "We've scanned your file and found <strong>{number_of_split_documents}</strong> different documents. <strong>We strongly recommend</strong> splitting it at this stage, otherwise all the progress you’ve made will be lost due to document data re-extraction.",
119
+ "do_it_later": "I'll do it later",
120
+ "review_now": "Review now",
121
+ "recommended": "Recommended",
122
+ "smart_split": "Smart Split",
123
+ "smart_split_suggestions": "Our Smart Split suggestions are highlighted in green",
124
+ "no_splitting_suggestions": "This document does not have splitting suggestions",
125
+ "confirm_splitting": "Are you sure you want to confirm the changes?",
126
+ "splitting_warning": "Be aware that any annotations you have made in this document will not be saved if you proceed.",
127
+ "no": "No",
128
+ "yes": "Yes",
129
+ "prepare_document": "Prepare the document",
130
+ "split_modal_no_suggestions": "Do you need to split the document? <strong>We strongly recommend</strong> splitting it at this stage, otherwise all the progress you’ve made will be lost in the future.",
131
+ "missing_from_document": "Missing from the document",
132
+ "edit_label": "Edit label",
133
+ "delete_label": "Delete label",
134
+ "table": "Table",
135
+ "delete_table": "Delete table",
136
+ "error_downloading_file": "The file could not be downloaded.",
137
+ "original_file": "Original file",
138
+ "pdf_file": "PDF file",
139
+ "no_labels_in_set": "This annotation set has no labels.",
140
+ "link_to_add_labels": "See how to add them <a href='https://help.konfuzio.com/modules/labels/index.html#add-a-label' target='_blank'>here</a>.",
141
+ "no_annotations_in_annotation_set": "This annotation set has no annotations extracted for its respective labels.",
142
+ "wait_title": "Please wait...",
143
+ "redirecting_to_documents_list": "We are taking you to the documents list, so you can continue reviewing your documents while we process the changes made.",
144
+ "translated_string_title": "Translated text",
145
+ "no_translated_string": "No translation exists yet.",
146
+ "add_translation": "Click to add one",
147
+ "edit_translation": "Click to edit"
148
+ }