-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathEnglish.json
More file actions
1773 lines (1773 loc) · 86.9 KB
/
English.json
File metadata and controls
1773 lines (1773 loc) · 86.9 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"ABOUT": "About",
"ACCURACY": "Accuracy",
"ACRONYM": "Acronym",
"ACTION": "Action",
"ACTION_NODE_SETTINGS": "Action Node Settings",
"ACTION_SELECT": "Action Select",
"ACTION_SETTINGS": "Action Settings",
"ACTIONS": "Actions",
"ACTIVATE": "Activate",
"ACTIVATE_FEATURES": "Activate Features",
"ACTIVATE_FOR_GCW": "Activate For GlobalCapture",
"ACTIVE": "Active Delegation",
"ACTIVE_FULL_LICENSES": "Active Full Licenses",
"ACTIVE_SCANNER": "Active Scanner",
"ACTIVE_TEMPLATE": "Active Template",
"ACTIVE_WEBONLY_LICENSES": "Active Web-Only Licenses",
"ACTIVE_WEBONLY_READONLY_LICENSES": "Active Web-Only Read-Only Licenses",
"ACTIVE_WORKFLOW_DELEGATION": "Delegate My Emails",
"ADD": "Add",
"ADD_ACTION": "Add Action",
"ADD_CONDITION": "Add Condition",
"ADD_ENGINE_WEB_REGISTRATION": "Engine Web Registration",
"ADD_FILEXCHANGE_DRIVE": "Add FileXChange Drive",
"ADD_INTERNAL_USER_INSTRUCTION": "Click \"+\" to add internal users.",
"ADD_MAPPING": "Add Mapping",
"ADD_MARKER": "Add Marker",
"ADD_NESTED_ARCHIVE": "Add Nested Archive",
"ADD_NEW_FIELD": "Add New Field",
"ADD_NEW_LAUNCH_ENTRY": "Add New Launch Entry",
"ADD_NEW_LIST": "Add New List",
"ADD_REPLACEMENT": "Add Replacement",
"ADD_ROLES_USER_INSTRUCTION": "Click \"+\" to add Square 9 users.",
"ADD_ROW": "Add Row",
"ADD_STAMP": "Add Stamp",
"ADD_USER": "Add User",
"ADD_USER_AND_CLOSE": "Add User and Close",
"ADD_USERS": "Add Users",
"ADD_VALUE": "Add Value",
"ADD_VIEW": "Add View",
"ADD_ZONE": "Add Zone",
"ADDED_FIELDS": "Added Fields",
"ADDED_USERS": "Secured Users & Groups",
"ADDED_WORKFLOWS": "Secured Workflows",
"ADM": "Administrator",
"ADMIN": "Admin",
"ADMINISTRATE": "Administrate",
"ADMINISTRATION": "Administration",
"ADVANCED": "Advanced",
"ADVANCED_GROUPING": "Advanced Grouping",
"ADVANCED_SEARCHING": "Advanced Searching",
"ADVANCED_TEXT_EXTRACTION": "Advanced Text Extraction",
"ALL": "All",
"ALL_WORKFLOWS": "All Workflows",
"ALLOCATION_COUNT": "Allocation Count",
"ALLOW_DELIGATION": "Allow Delegation",
"ALPHABETICAL": "Alphabetical",
"ALREADY_APPLIED": "Already applied",
"ANALYTICS": "Analytics",
"ANALYTICS_PORTAL": "Analytics Portal",
"ANALYTICS_SELECT": "Analytics Select",
"ANALYZE": "Analyze",
"ANCHOR": "Anchor",
"ANL": "Analytics",
"ANNOTATE": "Annotate",
"ANNOTATIONS": "Annotations",
"APP_EXTENDER": "GlobalSearch Extensions",
"APP_EXTENDER_ABOUT_CURRENT_APPS": "Currently GlobalSearch Extensions allows you to install the following add-on desktop applications:",
"APP_EXTENDER_ABOUT_SUMMARY": "GlobalSearch Extensions is a desktop tray application that manages a series of available add-on desktop applications designed to better your experience with using the documents and data on your desktop in GlobalSearch.",
"APP_EXTENDER_NOT_CONNECTED": "GlobalSearch Extensions Manager was unable to start. \nPlease check that it is installed and configured correctly. If you have not yet installed it or have recently upgraded GlobalSearch, click Download to begin.",
"APP_EXTENDER_NOT_INSTALLED": "GlobalSearch Extensions is not installed or is not running. Double click to download the install package.",
"APPEARANCE": "Appearance",
"APPEND_TO_EXISTING": "Append To Existing",
"APPEND_TO_MULTIVALUES": "Append to Multi-Values",
"APPENDED": "Appended",
"APPLIED_TEMPLATES": "Applied OCR Templates",
"APPLY": "Apply",
"APPLY_ONLY_TEMPLATES": "Apply Only Selected OCR Templates",
"APPLY_SECURITY": "Apply Security",
"APPROVE": "Approve",
"ARCHIVE": "Archive",
"ARCHIVE_DESTINATION": "Archive Destination",
"ARCHIVE_FIELDS": "Archive Fields",
"ARCHIVE_HISTORY": "Archive History",
"ARCHIVE_HISTORY_FILTER": "Archive History Filter",
"ARCHIVE_HISTORY_RECORDS_PER_PAGE": "Archive History Records Per Page",
"ARCHIVE_NAME": "Archive Name:",
"ARCHIVE_NO_CHILDREN": "Archive has no child archives or searches.",
"ARCHIVE_NOT_FOUND": "Archive Not Found",
"ARCHIVE_RESULTS_ERROR_MSG": "An error occurred while loading archives",
"ARCHIVE_UPDATED_OR_CREATED": "Archive Created/Updated",
"ARCHIVES": "Archives",
"ARE_YOU_SURE": "Are you sure?",
"ARE_YOU_SURE_UPDATE": "are about to be updated. Are you sure you want to perform this update? Updating data incorrectly could lead to massive data loss. It is recommended that the database is backed up before any updates occur.",
"ARGUMENT": "Argument",
"ARGUMENTS": "Arguments",
"ASCENDING": "Ascending",
"ASSEMBLY_BINDING": "Assembly Binding",
"ASSEMBLY_LIST_WARNING": "Assembly Bound List: '{{name}}' was added. Associated DLLs will need to be added before use.",
"ASSEMBLY_NODE": "Assembly Node",
"ASSEMBLY_NODE_SETTINGS": "Assembly Node Settings",
"ASSEMBLY_PARAMETERS": "Assembly Parameters",
"ASSEMBLY_PATH": "Assembly Path",
"ATTACH_DOC": "Attach Document",
"ATTACHMENTS": "Attachments",
"ATTACHMENTS_ONLY": "Attachments Only",
"AUTO": "Auto",
"AUTO_CASE": "Auto Case",
"AUTO_HOR": "Auto Horizontal",
"AUTO_VER": "Auto Vertical",
"AUTOMATIC_APPROVAL": "Automatic Approval",
"AUTOMATIC_APPROVAL_ON_CONFIDENCE": "Automatic Approval on Confidence Threshold",
"AUTORUN_SEARCH_ON_CLICK": "Automatically run default search when clicking archive.",
"AUTOVIEW_WHEN_INDEXING": "Automatically view document when indexing.",
"AVAILABLE_ARCHIVES": "Available Archives",
"AVAILABLE_FIELDS": "Available Fields",
"AVAILABLE_TEMPLATES": "Available OCR Templates",
"AVAILABLE_USERSGROUPS": "Available Users & Groups",
"AVAILABLE_WORKFLOWS": "Available Workflows",
"AVERAGE": "Average",
"AVERAGE_DURATION": "Average Duration",
"AWAITING_VALIDATION": "Awaiting Validation",
"BACK": "Back",
"BARCODE": "Barcode",
"BARCODE_FORMATS": "Barcode Formats",
"BARCODE_RECOGNITION": "Barcode Recognition",
"BASE_PATH": "Base Path",
"BASED_ON_FIELD": "Based on Field",
"BASED_ON_PROPERTY": "Based on Process Field",
"BASED_ON_SEARCH": "Based on Search",
"BASIC": "Basic",
"BATCH": "Batch",
"BATCH_ACTIONS": "Batch Actions",
"BATCH_HISTORY": "Batch History",
"BATCH_ID": "Batch ID",
"BATCH_IN_PROCESS": "Warning: This batch is in process. Performing this action may corrupt your documents. Are you sure you want to continue?",
"BATCH_MANAGER": "Batch Manager",
"BATCH_NAME": "Batch Portal Name",
"BATCH_PORTAL": "Batch Portal",
"BATCH_PORTALS": "Batch Portals",
"BATCH_SELECT": "Batch Select",
"BATCH_URL": "Batch URL",
"BATCHADMIN": "Batch Admin",
"BATCHES": "Batches",
"BCO": "Barcode Operations",
"BCR": "Barcode Recognition",
"BLANK": "Blank",
"BLANK_PAGE": "Blank Page",
"BLANK_THRESHOLD": "Blank Threshold",
"BOTTOM": "Bottom",
"BOTTOM_TO_TOP": "Bottom to Top",
"BREAK_FOR_PREFIX": "Detect Prefix",
"BREAK_HEADER": "Separate on change",
"BROWSE": "Browse",
"BUILD_LIST": "Build List",
"BULK_UPDATE": "Bulk Update",
"BULK_UPDATE_DOCUMENTS": "Bulk Update Documents",
"BULK_UPDATE_NO_SEARCH_INPUT_WARNING": "This search contains static search criteria that does not accept user input. Please be sure that you know what the search will return before using it to update documents.",
"BURST": "Burst",
"BURST_PAGE_S_": "Burst Page(s)",
"CALL": "Call",
"CALL_ASSEMBLY": "Call Assembly",
"CALL_ASSEMBLY_WARNING": "Workflow: '{{name}}' contains one or more call assembly nodes. Associated DLLs will need to be added before use.",
"CAN": "Call Assembly",
"CANCEL": "Cancel",
"CANCEL_AND_RESET": "Cancel ",
"CANCEL_SAVE": "Cancel Save",
"CANNOT_CONNECT": "Cannot Connect to Batch Portal",
"CANNOT_CONNECT_TO_ENGINE": "Cannot Connect to Capture Engine. Please ensure connection to portal and try again.",
"CANNOT_DELETE_PROCESS": "Can not delete process in progress. Please remove document from process before deleting it. Process ID:",
"CANNOT_FIND": "Cannot find text when Keyfree Indexing or RapidAdapt is enabled.",
"CANNOT_REMOVE_PROCESS": "Could not perform action on some of the selected Documents",
"CANNOT_SAVE_INVALID": "Cannot save: Invalid",
"CAPITAL_CASE": "CAPITAL CASE",
"CAPTURE_MULTIPLE_LINES": "Dynamic Line Extraction",
"CAPTURE_WORKFLOW": "Capture Workflow",
"CASE_RECOGNITION_MODE": "Case Recognition Mode",
"CASE_RECOGNITION_MODE_TOOLTIP": "Specifies the mode of letter case recognition.",
"CDM_FILENAME": "File Name",
"CHANGE_API_PORT": "Change API Port:",
"CHANGE_LANGUAGE": "Change Language:",
"CHANGE_PASSWORD": "Change Password",
"CHANGE_SSL_PORT": "Change SSL Port:",
"CHARACTER": "Character",
"CHARACTERS": "Characters",
"CHECK_FOR_UPDATES": "Check for Updates",
"CHECK_IN_CHECK_OUT": "Check-in/Check-out",
"CHECKING_NAME_AVAILABILITY": "Checking name availability...",
"CHECKING_PATH_AVAILABILITY": "Checking file path availability...",
"CHECKING_SPECIAL_CHARACTERS": "Checking for special characters...",
"CHILD_ARCHIVES": "Child Archives",
"CLASSIFIED": "Classified",
"CLASSIFY": "Classify",
"CLASSIFY_NODE": "Classify Node",
"CLASSIFY_NODE_SETTINGS": "Classify Node Settings",
"CLEAR": "Clear",
"CLEAR_ALL_NOTIFICATIONS": "Clear all notifications.",
"CLEAR_COORDINATES": "Clear Coordinates",
"CLEAR_EMAIL_OPTIONS": "Clear Email Options",
"CLEAR_LOGS": "Clear Logs",
"CLEAR_SELECTIONS": "Clear Selections",
"CLICK_DOCUMENT_ICON__TO_SHOW_HISTORY": "Click Document Icon to Show History",
"CLOSE": "Close",
"CLOSE_FIND": "Close Find",
"CLOUD": "Cloud",
"CLS": "Classification",
"COLOR": "Color",
"COLOR_DROPOUT": "Color Dropout",
"COLOR_DROPOUT_SEPARATION": "Force Black and White Detection",
"COLUMN": "Column",
"COLUMN_NAME": "Column Name",
"COLUMN_SETTINGS": "Column Settings",
"COLUMNS": "Columns",
"COMPLETE": "Complete",
"COMPLETED": "Completed",
"COMPONENT_ALREADY_EXISTS": "{{componentType}} name '{{name}}' already exists. Please select a new name for this {{componentType}} or use existing.",
"CONDITION": "Condition",
"CONDITION_SELECT": "Conditional Select",
"CONDITIONAL_NODE": "Conditional Node",
"CONDITIONAL_NODE_SETTINGS": "Conditional Node Settings",
"CONFIDENCE": "Confidence",
"CONFIRM_ACTION": "Confirm Action",
"CONFIRM_ARCHIVE_DELETE": "Are you sure you want to delete ",
"CONFIRM_CHANGES": "Confirm Changes",
"CONFIRM_DELETE": "Are you sure you want to delete the selected item(s)?",
"CONFIRM_DELETE_ARCHIVE_MSG": "You have requested to delete the archive and all index data, this action can not be reversed. To confirm, type the required text as shown into the field provided:",
"CONFIRM_DELETE_DATABASE_MSG": "You have requested to delete the database and all index data, this action can not be reversed. To confirm, type the required text as shown into the field provided:",
"CONFIRM_DELETE_FIELD_MSG": "You have requested to delete the field, this action can not be reversed. To confirm, type the required text as shown into the field provided:",
"CONFIRM_DELETE_INBOX_MSG": "You have requested to delete the inbox, this action can not be reversed. To confirm, type the required text as shown into the field provided:",
"CONFIRM_DELETE_PLACEHOLDER": "Type the required verification here",
"CONFIRM_DELETE_TABLE_FIELD_MSG": "You have requested to delete the table field, this action can not be reversed. To confirm, type the required text as shown into the field provided:",
"CONFIRM_DELETE_TEMPLATE": "Are you sure you want to delete the current workflow?",
"CONFIRM_DELETE_USER_MSG": "You have requested to delete the user. This action can not be reversed. To confirm, type the required text as shown into the field provided:",
"CONFIRM_DIRTY_REFRESH": "Current security selections will be discarded, do you want to continue?",
"CONFIRM_DISCARD_CHANGES_MSG": "Are you sure you wish to discard changes?",
"CONFIRM_FIELDTYPE_CHANGE": "Field type has been changed. Conversion of field type may result in data loss. Do you want to continue?",
"CONFIRM_GENERIC_UNSAVED_CHANGES": "Unsaved changes will be lost, are you sure you want to continue?",
"CONFIRM_LARGE_RECORDS_PER_PAGE_MSG": "This will result in a long processing time. Do you want to proceed?",
"CONFIRM_LOG_DELETE": "Are you sure you want to delete all import logs?",
"CONFIRM_LOSS_OF_CHANGES": "Unsaved changes detected. If you choose to continue with bursting your changes will be lost.",
"CONFIRM_NEW_TEMPLATE": "Creating a new workflow will lose any unsaved changes of your current workflow. Are you sure you want to create a new workflow?",
"CONFIRM_OPEN_TEMPLATE": "Opening a workflow will lose any unsaved changes of your current workflow. Are you sure you want to open a workflow?",
"CONFIRM_PASSWORD": "Confirm Password",
"CONFIRM_REMOVE": "Are you sure you want to remove the selected batches from process? Warning: Mid process interruption of batch may result in corrupt documents.",
"CONFIRM_RESET": "Confirm Reset",
"CONFIRM_REVOKE_LICENSE": "Revoking a user's license type selection will unsecure the user from all databases. Are you sure you want to continue?",
"CONFIRMATION": "Confirmation",
"CONFLICT_FIELDS": "Field Conflicts",
"CONFLICT_GLOBALFORM": "GlobalForm Conflicts",
"CONFLICT_GLOBALFORM_MAPPING": "GlobalForm Mapping Conflicts",
"CONFLICT_GLOBALFORM_RESOURCE": "GlobalForm Resource Conflicts",
"CONFLICT_LISTS": "List Conflicts",
"CONFLICT_S9USER": "Square 9 User Conflicts",
"CONFLICT_TABLEFIELDS": "Table Field Conflicts",
"CONFLICT_TEMPLATEGROUP": "Template Group Conflicts",
"CONFLICT_TEMPLATES": "Template Conflicts",
"CONFLICT_WORKFLOWS": "Workflow Conflicts",
"CONNECT_GLOBALSEARCH": "Connect GlobalSearch",
"CONNECTION_FAILED": "Connection error: command failure",
"CONNECTION_SETTINGS": "Connection Settings",
"CONNECTION_STRING": "Connection String",
"CONNECTION_SUCCESSFUL": "Connection Successful",
"CONTAINS": "Contains",
"CONTENT_ONLY": "Content Only",
"CONTENT_SEARCH": "Content Search",
"CONTENT_SEARCH_ENABLED": "Content Search Enabled",
"CONTENT_SEARCH_OPTIONS": "Content Search Options",
"CONTINUE": "Continue",
"CONTINUE_SCANNING": "Continue Scanning",
"CONVERT": "Convert",
"CONVERT_DOCUMENTS_TO_PDF": "Convert Documents to PDF",
"CONVERT_FORMATS_TO_PDF": "Convert Formats to PDF",
"CONVERT_NODE": "Convert Node",
"CONVERT_NODE_SETTINGS": "Convert Node Settings",
"CONVERT_PDF": "Convert to PDF",
"CONVERT_TO": "Convert to",
"CONVERT_TO_BLACKWHITE": "Convert to Black & White",
"CONVERTED": "Converted",
"COOKIE_DISABLED": "The storing of cookies has been disabled. This site will have limited functionality unless this setting is enabled.",
"COPIED": "Copied",
"COPY": "Copy",
"COPY_DOCUMENTS": "Copy Documents...",
"CORE_LICENSE_COUNT": "Core License Count",
"CORRECT_INVERTED_IMAGE": "Correct Inverted Image",
"CORRECT_INVERTED_IMAGE_TOOLTIP": "Detects whether the image is inverted (white text against black background) \nand corrects it if necessary before recognition.",
"CORRECT_ORIENTATION": "Correct Orientation",
"CORRECT_ORIENTATION_TOOLTIP": "Detects page orientation during page preprocessing.\nIf it differs from normal, document text is read in the presumed direction.",
"CREATE": "Create",
"CREATE_A_NEW_TEMPLATE": "Create a new template",
"CREATE_BROWSE_SEARCH": "Create Browse Search",
"CREATE_DRAFT": "Create Draft",
"CREATE_NEW_DATABASE": "Create New Database",
"CREATE_UNIQUE_FOLDER_NAME": "Create unique folder name",
"CREATED_NEW_TEMPLATE": "Created new template",
"CRITERIA": "Criteria",
"CROP": "Crop",
"CROP_BLACK": "Crop Black",
"CROP_WHITE": "Crop White",
"CSV_CONTAINS_COLUMN_HEADERS": "CSV Contains Column Headers",
"CSV_FILENAME": "CSV Filename",
"CSV_UPDATE": "CSV Update",
"CURRENT": "Current",
"CURRENT_API_PORT": "Current API Port:",
"CURRENT_FILE": "Current File",
"CURRENT_SSL_PORT": "Current SSL Port:",
"CUSTOM": "Custom",
"DATA_DOCS": "Data & Documents",
"DATA_EXTRACTION": "Data Extraction",
"DATA_EXTRACTION_NOT_INSTALLED": "GlobalSearch has detected that Extensions is running, but the Data Extraction extension is not installed. Allowing Key Free Indexing to use local Data Extraction can improve performance.",
"DATA_EXTRACTION_NOT_REGISTERED": "The Data Extraction OCR Engine is installed but not registered. Click here to go to the Extensions web site to re-register the Engine, then try again.",
"DATA_LOOKUP": "Data Lookup",
"DATA_LOOKUP_IN": "Data Lookup in",
"DATA_LOOKUP_NODE": "Data Lookup Node",
"DATA_LOOKUP_NODE_SETTINGS": "Data Lookup Node Settings",
"DATA_MAPPER": "Data Mapper",
"DATA_TYPE": "Data Type",
"DATA_TYPE_ENFORCEMENT": "Data Validation",
"DATA_TYPE_VALIDATION": "Data Validation",
"DATA_TYPE_VALIDATION_FAILED": "Data Validation Failed",
"DATA_XCHANGE": "Data XChange",
"DATA_XCHANGE_ERROR": "Data XChange encountered an error.",
"DATA_XCHANGE_NO_MATCHES": "There was no matching data.",
"DATA_XCHANGE_SOURCE": "Data XChange Source",
"DATA_XCHANGE_SOURCES": "Data XChange Sources",
"DATA_XCHANGE_SOURCES_ERROR": "Data XChange Sources encountered an error.",
"DATA_XCHANGE_SUCCESS": "Data XChange was successful.",
"DATABASE": "Database",
"DATABASE_ACCESS": "Database Access",
"DATABASE_ADMIN": "Database Admin",
"DATABASE_ALREADY_EXISTS": "Database already exists",
"DATABASE_DESTINATION": "Database Destination",
"DATABASE_FIELDS": "Database Fields",
"DATABASE_IMPORT_COMPLETE": "Solution Template Import Complete",
"DATABASE_NO_ARCHIVES": "Database has no archives.",
"DATABASE_QUICK_START": "Database Quick Start",
"DATABASE_SELECT": "Database Select",
"DATABASE_SELECTION": "Database Selection",
"DATABASE_SETUP_WIZARD": "Database Setup Wizard",
"DATABASES": "Databases",
"DATALOOKUP": "Data Lookup",
"DATATYPE_VALIDATION": "Data Validation",
"DATE": "Date",
"DATE_ENTERED": "Date Entered",
"DATE_MASK_INVALID": "Invalid date format",
"DATETIME": "Date/Time",
"DAYS": "Days",
"DB_IMPORT_SUCCESS_MESSAGE": "All selected Solution Templates have been successfully applied.",
"DB_SELECT": "Please Select Your Database",
"DECIMAL": "Decimal",
"DEFAULT": "Default",
"DEFAULT_BASE_PATH": "Default Base Path",
"DEFAULT_PASSWORD": "Default Password",
"DEFAULT_SEARCH": "Default Search",
"DEFAULT_SEARCH_MODE": "Search Mode",
"DELEGATE": "Delegate",
"DELEGATION": "Delegation",
"DELETE": "Delete",
"DELETE_ALL_PAGES": "Delete All Pages",
"DELETE_CONFIRMATION_1": "Are you sure you want to delete the",
"DELETE_CONFIRMATION_2": "selected Document(s)?",
"DELETE_DATABASE": "Delete Database",
"DELETE_DOCUMENT_S_": "Delete Document(s)",
"DELETE_DOCUMENTS": "Delete Document(s)",
"DELETE_EMAILS_ON_IMPORT": "Delete Emails on Import",
"DELETE_ERRORED_BATCHES": "Delete Errored Batches",
"DELETE_FILES_AFTER_RELEASE": "Delete Files After Release",
"DELETE_HIGHLIGHT_ON_CHANGE": "Delete Highlight On Change",
"DELETE_PAGE_S_": "Delete Page(s)",
"DELETE_PAGES": "Delete Pages",
"DELETE_PAGES_NODE": "Delete Pages Node",
"DELETE_PAGES_NODE_SETTINGS": "Delete Pages Node Settings",
"DELETE_PROCESS": "Delete Process",
"DELETE_ROW": "Delete row",
"DELETE_TEMPLATE": "Delete Workflow",
"DELETE_USER": "Delete User",
"DELETE_USERS": "Delete Users",
"DELETE_ZONE": "Delete Zone",
"DELETED": "Deleted",
"DELETED_TEMPLATE": "Deleted template",
"DELETED_TEMPLATE_GROUP": "Deleted template group",
"DELETING_DOCS": "Deleting Documents...",
"DELETION_TYPE": "Deletion Type",
"DELIMITED_FIELDS": "Delimited Fields",
"DELIMITER": "Delimiter",
"DENY": "Deny",
"DESCENDING": "Descending",
"DESCRIPTION": "Description",
"DESELECT_ALL": "Deselect All",
"DESIGN": "Design",
"DESIGNER": "Designer",
"DESKEW": "Deskew",
"DESPECKLE": "Despeckle",
"DETAILED_INFORMATION": "Detailed Information",
"DETECT_MATRIX_PRINTER": "Detect Matrix Printer",
"DETECT_MATRIX_PRINTER_TOOLTIP": "Detects text that is printed from a matrix printer.",
"DETECT_POROUS_TEXT": "Detect Porous Text",
"DETECT_POROUS_TEXT_TOOLTIP": "Detects the regions of the document with porous text.",
"DETECT_TEXT_ON_PICTURES": "Detect Text On Pictures",
"DETECT_TEXT_ON_PICTURES_TOOLTIP": "Detects all text on an image, including text embedded into images.",
"DGN": "Designer",
"DIRECT_SEARCH": "Direct Search",
"DIRECTION": "Direction",
"DIRECTIONAL": "Directional",
"DISABLE": "Disable",
"DISABLE_MULTIPLE_SELECTION": "Disable Multiple Selection",
"DISABLED": "Disabled",
"DISCARD_CHANGES": "Discard Changes",
"DISCARD_INVALID_ROW_ENTRIES_MSG": "Disabling edit mode will discard unsaved invalid entries.",
"DISCARD_PROCESS_FIELD_CHANGES": "Would you like to discard field changes?",
"DISCARDING_INVALID_GRID_SORT_MSG": "Invalid sort settings, clearing saved settings and reloading.",
"DISMISS": "Dismiss",
"DISPLAY_ARCHIVE_VIEW_TABS": "Display Archive View Tabs",
"DISPLAY_CS_HITS": "Displaying Content Search results.",
"DO_NOT_REUSE": "Do Not Reuse",
"DOC": "Doc",
"DOC_WILL_BE_SEND_NOW": "Document will be immediately sent to the recipient's email address.",
"DOC_WILL_BE_SENT_AS_DRAFT": "Document will be sent to your DocuSign account as a draft.",
"DOCUMENT": "Document",
"DOCUMENT_ACTIONS": "Document Actions",
"DOCUMENT_COMPLETION": "Document Completion",
"DOCUMENT_HISTORY": "Document History",
"DOCUMENT_HISTORY_FILTER": "Document History Filter",
"DOCUMENT_REVISIONS": "Revisions",
"DOCUMENT_S": "Document(s)",
"DOCUMENT_TOTAL": "Document Total",
"DOCUMENTS": "Documents",
"DOCUMENTS_IN_WAITING": "Documents in Waiting",
"DOCUMENTS_SCANNED_DUPLEX": "Documents Scanned In Duplex Mode",
"DOCUSIGN_LOGIN": "DocuSign Login",
"DOCUSIGN_PASSWORD": "DocuSign Password",
"DOCUSIGN_USERNAME": "DocuSign Username",
"DOES_NOT_EQUAL": "Does not Equal",
"DOMAIN": "Domain",
"DOWN": "Down",
"DOWNLOAD": "Download",
"DOWNLOAD_AS_SOLUTION_TEMPLATE": "Download as Solution Template",
"DOWNLOAD_LOG": "Download Log",
"DOWNLOAD_SPEED": "Download Speed",
"DOWNLOADED": "Downloaded",
"DOWNLOADING_EXTENSIONS": "Downloading Extensions...",
"DOWNLOADING_EXTENSIONS_MESSAGE": "Complete the installation in Windows. The application will open once the installation is complete.",
"DRAG_ITEMS_HERE": "Drag items here.",
"DRAW_SIGNATURE_BOX": "Draw Signature Box",
"DRAW_ZONE": "Draw Zone",
"DROP_FILES_HERE": "Drop Files Here!",
"DROPDOWN": "Drop Down",
"DUPLICATE_DELIMITERS": "Field delimiter and string delimiter cannot be the same character.",
"DUPLICATE_EMAIL_IMPORT_LOCATION_EXISTS": "Email Server, Port and Username combination exists on a published workflow.",
"DUPLICATE_IMPORT_LOCATION_EXISTS": "Duplicate import location exists",
"DUPLICATE_NAME_EXISTS": "Duplicate name exists",
"DUPLICATE_USER_NOTATION": "Duplicate User detected. Unique User Notation Required.",
"DUPLICATE_VIEW_LABEL": "View label already exists.",
"DURATION": "Duration",
"DUTCH": "Dutch",
"DXC_INVALID_DATE": "An incomplete or invalid date was entered as a Data XChange date time criteria.",
"DYNAMIC_LIST_FIELD_DEPENDS_ON_FIELD": "Dynamic List Field depends on the following field, please ensure this field is added so that dynamic lists fields work properly",
"DYNAMIC_PICK_LIST": "Dynamic Pick List",
"EAST": "East",
"EDIT": "Edit ",
"EDIT_DISABLED_FOR_CHECK_IN_CHECK_OUT": "Edit disabled for Check-in/Check-out archive",
"EDIT_FIELDS": "Edit Fields",
"EDIT_IN_OFFICE_ONLINE": "Edit In Office Online",
"EDIT_LIST_MAPPING": "Edit List Mapping",
"EDIT_NOTIFICATIONS": "Edit Notifications",
"EDIT_VIEWS": "Edit Views",
"EMAIL": "Email",
"EMAIL_FILE_NAME": "Select file name and attachment options:",
"EMAIL_NODE": "Email Node",
"EMAIL_NODE_SETTINGS": "Email Node Settings",
"EMAIL_NOTIFICATION_SETTINGS": "Email Notification Settings",
"EMAIL_SERVER_ADDRESS": "Email Server Address",
"EMAILED": "Emailed",
"EML": "Email Import",
"ENABLE": "Enable",
"ENABLE_AGGRESSIVE_TEXT_EXTRACTION": "Enable Aggressive Text Extraction",
"ENABLE_AGGRESSIVE_TEXT_EXTRACTION_TOOLTIP": "Enables the engine to try to extract as much text on \nthe image as possible. We recommend using this mode \nwhen the image contains some low-quality text.",
"ENABLE_CONTENT_SEARCH": "Enable Content Search",
"ENABLE_EDIT": "Enable Edit",
"ENABLE_EXTRACTION_HIGHLIGHTING": "Enable Extraction Highlighting",
"ENABLE_MULTIPLE_SELECTION": "Enable Multiple Selection",
"ENABLE_REVISION_CONTROL": "Enable Revision Control",
"ENABLE_VIEWS": "Enable Views",
"ENABLED": "Enabled",
"ENCHANCE_BEFORE_REC": "Enhance Document Prior to Recognition",
"END": "End",
"END_ARGUMENT": "End Argument",
"END_NODE": "End Node",
"END_WARNING": "All workflows must eventually connect to this node for the document to be released by the processing engine.",
"ENGINE_NAME": "Engine Name",
"ENGINE_REQUIRED": "Engine Required for Save",
"ENGINE_SELECT": "Engine Select",
"ENGINES": "Engines",
"ENGLISH": "English",
"ENHANCE": "Enhance",
"ENTERED": "Entered",
"EQUALS": "Equals",
"ERROR": "Error: ",
"ERROR_ACCOUNT_HAS_NO_DOCUSIGN_TEMPLATES": "Your DocuSign Account has not defined any Templates.",
"ERROR_ADMIN_FEATURE_LIC": "Admin Feature Not Licensed; Redirected to Database Select Screen",
"ERROR_ADMIN_FEATURE_LIC_UNDETERMINED": "Cannot Verify If Admin Feature Is Licensed; Redirected to Database Select Screen",
"ERROR_ARCHIVE_EXISTS": "Archive Already Exists",
"ERROR_ARCHIVE_NO_NAME": "Cannot Create An Archive With No Name",
"ERROR_BURSTING_ON_EDOC": "Bursting is not allowed on this document type",
"ERROR_BURSTING_REMOVE_ALL_PAGES": "Cannot remove all pages.",
"ERROR_BURSTING_WITH_MULTIPLE_DOCS": "Bursting cannot be done with multiple docs open, please move this document to a new tab",
"ERROR_CANT_CREATE_SIGNATURES": "Cannot create signatures on this document type.",
"ERROR_CANT_GET_ARCHIVE_PERMISSIONS": "Error getting archive permissions: ",
"ERROR_CANT_GET_PREVIOUS_ARCHIVE_PERMISSIONS": "Error getting permissions on previous archives: ",
"ERROR_CANT_OBTAIN_LICENSE": "Error getting new license token.",
"ERROR_CANT_SEND_TO_OFFICE": "This document type cannot be sent to Office Online.",
"ERROR_CHANGING_FIELD": "Error adding/updating field: ",
"ERROR_CHILD_ARCHIVES_EXIST": "Must Delete Child Archives First",
"ERROR_CHILD_NODE_COUNT": "Error getting Number Of Children on Archive ",
"ERROR_CREATING_OR_UPDATING_ARCHIVE": "Error creating/updating archive: ",
"ERROR_CREATING_USER": "Error creating user: ",
"ERROR_CSV_UPDATE_DIRECT_SEARCH_REQUIRED": "A Direct Access Search is required for every Archive specified in the CSV. Missing Archive:",
"ERROR_DATABASE_VALIDATION": "One or more Users & Groups do not have access to the selected Archive's Database",
"ERROR_DELETE": "Could not Delete",
"ERROR_DELETING_FIELD": "Error Deleting Field",
"ERROR_DELETING_LIST": "Error deleting list: ",
"ERROR_DELETING_USER": "Error deleting user",
"ERROR_DOCUSIGN_LOGIN": "Unable to log in to DocuSign. ",
"ERROR_DOCUSIGN_SEND_REQUEST": "Unable to send request to DocuSign. ",
"ERROR_DOCUSIGN_TEMPLATE_ROLES": "Unable to get DocuSign Template Roles.",
"ERROR_DOCUSIGN_TEMPLATES": "Unable to get DocuSign Templates.",
"ERROR_DROPBOX_NO_PERMISSIONS": "You do not have permission to send files to Drop Box.",
"ERROR_DUPLICATE_STAMPS": "Please rename the following duplicated stamp:",
"ERROR_EXCLAMATION": "Error!",
"ERROR_EXPORT_IN_WORKFLOW": "Unable to export documents. One or more of the selected documents are in a workflow.",
"ERROR_EXPORT_NO_LIC": "Export document data can't be performed, Read Only License Detected.",
"ERROR_EXPORT_NO_RESULTS": "Export job returned no results. Export requires both Export Documents and Modify Annotation access permissions.",
"ERROR_EXPORT_PDF_PENDING": "Unable to export documents. One or more of the selected documents are in PDF conversion.",
"ERROR_EXPORT_PDF_WORKFLOW_PENDING": "Unable to export documents. One or more of the selected documents are in PDF conversion and in a workflow.",
"ERROR_EXTENSIONS_NOT_ACTIVATED": "Extensions has not been activated. Please choose GlobalSearch or GlobalCapture below and follow the instructions to activate.",
"ERROR_FAILED_DUE_TO_PERMISSIONS": "Failed to perform operation, due to permissions issue.",
"ERROR_FIELD_NAME_EXISTS": "Field Name Already Exists",
"ERROR_FIELD_SAVE": "Error Saving Field, See Notification For Details",
"ERROR_FILE": "Error File",
"ERROR_FILE_UPLOAD_FAILED": "File upload failed.",
"ERROR_FIND_NO_TEXT_FOUND": "Unable to search file, unable to get text from document",
"ERROR_GET_ARCHIVES": "Error getting archives: ",
"ERROR_GET_BATCHPORTALS": "Cannot get Batch Portals",
"ERROR_GET_DATABASES": "Error getting databases from portal.",
"ERROR_GET_FIELDS": "Error getting Fields: ",
"ERROR_GET_FLOWS": "Error getting Workflows from Portal",
"ERROR_GET_LICENSE": "Error occured getting license:",
"ERROR_GET_LIST_ITEMS": "Error getting list items: ",
"ERROR_GET_LISTS": "Error getting lists: ",
"ERROR_GET_NUMBER_OF_CHILD_ARCHIVES": "Error getting number of child archives: ",
"ERROR_GET_PREVIOUS_ARCHIVES": "Error getting previous archives: ",
"ERROR_GET_USERS": "Error getting users: ",
"ERROR_GET_USERS2": "Getting Users From the Server",
"ERROR_IMPORT": "Error importing document. Ensure you have permissions to perform this action.",
"ERROR_IMPORT_DATALENGTH_MISMATCH": "Index document data can't be performed, field(s) data length is too great.",
"ERROR_IMPORT_DATATYPE_MISMATCH": "Index document data can't be performed, field(s) datatype mismatch",
"ERROR_IMPORT_EMPTY_FILE": "Error importing documents. 0kb File Was Present",
"ERROR_IMPORT_LIMIT_REACHED": "Record count limit reached. No more documents may be indexed without registering the product.",
"ERROR_IMPORT_MISSING_FIELDS": "Index document data can't be performed, missing required field(s)",
"ERROR_INCORRECT_PARAMETERS": "Incorrect Parameter Formatting Passed",
"ERROR_INDETERMINATE_SECURITY": "Search security can not be applied with indeterminate state ( - ). Please check or un-check the \"View\" permission.",
"ERROR_IOEXPORT_CONNECT": "Unable to connect to GlobalSearch Extensions: Please ensure the application is installed and running",
"ERROR_LAUNCHDOC_CONNECT": "Unable to connect to GlobalSearch Extensions: Please ensure the application is installed and running",
"ERROR_LAUNCHDOC_SAVE": "Unable to save launch table",
"ERROR_LAUNCHDOC_STATUS": "Unable to get document launch status",
"ERROR_LICENSE_EXPIRED": "Your License has expired. Please select from the following:",
"ERROR_NO_ARCHIVE_SEARCHES": "No archive searches are available.",
"ERROR_NO_DATABASES": "Could not find Databases, Possible Permissions Issue",
"ERROR_NO_DEFAULT_SEARCH": "Default Search not defined for selected archive.",
"ERROR_NO_DOCUMENTS_SELECTED": "No Documents Selected",
"ERROR_NO_KFI_WORDS": "KeyFree OCR returned no words.",
"ERROR_NO_LOGS_AVAILABLE": "No Logs Available",
"ERROR_NO_THUMBNAIL_SELECTED": "No thumbnail selected",
"ERROR_NO_WORKFLOW_READ_ONLY_LIC": "Document Workflows can't be performed, Read Only License Detected.",
"ERROR_NO_WORKFLOWS_PRESENT": "No Document Workflows available for this Archive.",
"ERROR_NOT_AUTHORIZED": "Not Authorized:",
"ERROR_NOT_CONSUMING_A_LICENSE": "You are not currently consuming a license",
"ERROR_PASSWORD_MISMATCH": "passwords do not match",
"ERROR_PASSWORD_UPDATE": "Error Updating Password",
"ERROR_REQUIRED_FIELD": "Required Field",
"ERROR_RETRIEVING_DOCUSIGN_TEMPLATES": "Error retrieving DocuSign Templates.",
"ERROR_SAVE": "Cannot Save due to Invalid Batch Data",
"ERROR_SAVE_WORKFLOWS": "Error saving workflows to Batch Portal",
"ERROR_SAVING_LIST": "Error Saving List",
"ERROR_SAVING_WORKFLOW": "Error Saving Workflow",
"ERROR_SCAN_CONNECTION": "Unable to connect to GlobalSearch Extensions, it may not be running, not installed, no scanners are installed, or it is running on a different Port.",
"ERROR_SCAN_ERROR": "An error occurred while scanning. ",
"ERROR_SEARCHING_HEADER": "Error Searching:",
"ERROR_SETTING_PERMISISONS": "Error setting user permissions: ",
"ERROR_SSADMIN_DATABASE_SELECTED": "Database permissions for the SSAdmin group can not be changed. Please deselect the SSAdmin user if you wish to apply changes to database security.",
"ERROR_UNABLE_TO_DROPBOX": "Unable to send file to Drop Box. ",
"ERROR_UNABLE_TO_SAVE_CHANGES": "Unable to save changes. ",
"ERROR_UPDATE_REVISION_ARCHIVE": "Document data in a revision Control Archive cannot be updated.",
"ERROR_USER_NEW_USER": "Error updating new user: ",
"ERROR_USER_PASSWORD_LENGTH": "Password must be between 6 and 18 characters",
"ERROR_USER_SETTINGS_UPDATE": "Error updating user settings: ",
"ERRORED": "Errored",
"ERRORED_DOCUMENTS": "Errored Documents",
"EXCHANGE": "Exchange",
"EXE_SAVE_OPERATION": "Executing Save...",
"EXECUTING_SCAN_OPERATION": "Executing Scan Operation...",
"EXPAND": "Expand",
"EXPAND_ARCHIVE": "Expand Archive",
"EXPAND_DATABASE": "Expand Database",
"EXPIRATION": "Expiration",
"EXPLICIT": "Explicit",
"EXPORT": "Export",
"EXPORT_COMPLETE": "Export Complete",
"EXPORT_DATA": "Export Data",
"EXPORT_DATA_NODE": "Export Data Node",
"EXPORT_DATA_NODE_SETTINGS": "Export Data Node Settings",
"EXPORT_DATA_TO_EXCEL": "Export Data to Excel",
"EXPORT_DOCUMENT": "Export Document",
"EXPORT_DOCUMENTS": "Export Documents",
"EXPORT_FOLDER_PATH": "Export Folder Path",
"EXPORT_HISTORY": "Export History",
"EXPORT_PATH": "Export Path",
"EXPORT_REPORT": "Export Report",
"EXPORT_SETTINGS": "Export Settings",
"EXPORT_TO": "Export to",
"EXPORT_TYPE": "Export Type",
"EXPORT_WITH_CSV": "Export with Index Data",
"EXPORTED": "Exported",
"EXPORTED_CSV_FILENAME": "Exported CSV Filename",
"EXPORTED_FILE_NAMES": "Exported File Names",
"EXTENSION": "File Extension",
"EXTENSIONS": "Extensions",
"EXTENSIONS_ACTIVATION_NO_WORK": "Trouble activating Extensions?",
"EXTENSIONS_GSW_ACTIVATION_TEXT": "Open GlobalSearch Web and click on the GlobalSearch Extensions icon as shown below.",
"EXTENSIONS_GSW_MANUAL_ACTIVATION_TEXT": "Click the manual activation button below and fill out the form.",
"EXTRACT": "Extract",
"EXTRACTED": "Extracted",
"EXTRACTION_HIGHLIGHTING": "Extraction Highlighting",
"FAB_LABEL_ARCHIVE": "Create a new top level archive",
"FAB_LABEL_DATABASE": "Create a new database",
"FAILED_CREATE_NEW_TEMPLATE": "Failed to create new template",
"FAILED_DELETE_TEMPLATE": "Failed to delete template",
"FAILED_LOAD_LISTS": "Failed to load lists",
"FAILED_LOAD_TEMPLATE_GROUPS": "Failed to load template groups",
"FAILED_LOAD_TEMPLATES": "Failed to load templates",
"FAILED_TEMPLATE_SAVE": "Failed to save the template.",
"FAILED_TO_GET_PROCESS": "Failed to get process",
"FAILED_TO_LOAD_FIELDS": "Failed to load fields",
"FAILED_TO_LOAD_LISTS": "Failed to load lists",
"FAILED_TO_LOAD_TABLEFIELDS": "Failed to load table fields",
"FAILED_TO_READ_AREA": "Failed to read area",
"FAILED_TO_RETRIEVE_WORKFLOW_DETAIL": "Failed to retreive workflow detail.",
"FAILED_TO_RETRIEVE_WORKFLOWS": "Failed to retrieve workflows.",
"FAR": "Far",
"FAST_OBJECTS_EXTRACTION": "Fast Objects Extraction",
"FAST_OBJECTS_EXTRACTION_TOOLTIP": "Speeds up objects extraction at the potential cost of OCR quality.",
"FEATURES": "Features",
"FEATURES_MSG": "The following features are currently enabled by your license:",
"FIELD": "Field",
"FIELD_CATALOG": "Field Catalog",
"FIELD_DELETED": "Field Deleted",
"FIELD_DELETED_EDIT_SEARCH_MSG": "An Archive Field that this search was created for no longer exists. This search has been modified.",
"FIELD_DELIMITER": "Field Delimiter",
"FIELD_DELIMITER_REQUIRED": "Field delimiter required.",
"FIELD_FOR_FILE_NAME": "Select corresponding field for file name:",
"FIELD_LENGTH_OVER": "Field Length Overflow",
"FIELD_LENGTH_OVERFLOW": "Field Length Overflow",
"FIELD_MAPPING": "Field Mapping",
"FIELD_NAME": "Field Name:",
"FIELD_NAME_LABEL": "Field Name",
"FIELD_NOT_FOUND": "Field Not Found",
"FIELD_NOT_FOUND_IN_CATALOG": "Field not found in catalog",
"FIELD_PROPERTIES": "Field Properties",
"FIELD_SAVED": "Field Saved",
"FIELD_TYPE": "Field Type:",
"FIELD_VALUES": "Field Values",
"FIELD_ZONES": "Field Zones",
"FIELDS": "Fields",
"FIELDS_DELIMITED_BY": "Fields Delimited By",
"FILE": "File",
"FILE_DOES_NOT_EXIST": "File Does Not Exist",
"FILE_FORMAT": "File Format",
"FILE_NAMING_FORMAT": "File Naming Format",
"FILE_PATH": "Filepath",
"FILE_TYPE": "File Type",
"FILENAME": "Filename",
"FILTER": "Search",
"FILTER_ALL_OFF": "Filter All Off",
"FILTER_ALL_ON": "Filter All On",
"FILTER_ATTACHMENTS": "Filter Attachments",
"FILTER_BATCH": "Filter Batch",
"FILTER_BY": "Filter by",
"FILTER_BY_NAME": "Filter By Name",
"FILTER_RESULTS": "Filter Results",
"FILTER_USERSGROUPS": "Filter",
"FILTER_WORKFLOW": "Filter Workflow",
"FIND": "Find",
"FIND_IN_DOCUMENT": "Find in document",
"FIND_TEXT": "Find Text",
"FINISH": "Finish",
"FIRST": "First",
"FIT": "Fit",
"FIT_TO_COLUMN_WIDTH": "Fit to Column Width",
"FIT_TO_PAGE": "Fit to page",
"FIT_TO_WIDTH": "Fit to width",
"FLIP": "Flip",
"FOLDER": "Folder",
"FOOTER": "Footer",
"FORM": "Form",
"FORM_ID": "Form ID",
"FORMAT": "Format",
"FORMATTING": "Formatting",
"FRENCH": "French",
"FREQUENCY": "Frequency",
"FROM": "From",
"FROM_ADDRESS": "From Address",
"FROM_DATE": "From Date",
"FROM_EMAIL_PLACEHOLDER": "noreply@company.com",
"FROM_IMPORT": "From Import",
"FROM_PARENT_EDGE": "From parent edge",
"FROM_URL": "From URL",
"FULL": "Full",
"FULL_ADMIN": "Full Administration",
"FULL_API_ACCESS": "Full API Access",
"FULL_LICENSE": "Full License",
"FULLSCREEN": "Fullscreen",
"FULLY_REGISTERED": "Fully Registered",
"FUZZINESS": "Fuzziness",
"FXC": "File XChange",
"GCE": "Core",
"GDW_APP_PACKAGE_DESC": "Choose one or more business solution template(s) to be added to your database. Optionally, you can upload custom templates that have been provided by an external source by clicking the Upload Template button.",
"GDW_CREATE_DB_DESC": "Provide a descriptive name for your database. For customers with multiple databases, the name you select provides context for the types of documents being stored.",
"GDW_CREATE_MOD_DESC": "Quick start your database with a guided setup process that allows you to streamline the deployment of applications through the use of proven business solution templates.\n\nTo get started, are you creating a new database or adding to an existing database?",
"GDW_MODIFY_DB_DESC": "To add business solution templates to an existing database, select it from the list below.",
"GDW_PASSWORD_DESC": "Provide a default password that will be assigned to users imported with the selected solution template(s). Note that this password is only applied to users that are imported as part of the solution template(s) and not to users added in the next step.",
"GDW_SECURITY_LIST_DESC": "Use this screen to set permissions for each user. Selecting Custom will allow you to set permissions for each business solution template selected.",
"GDW_SECURITYLIST_MESSAGE": "No users were configured during the previous step.\n\nClick Save to continue without importing security.",
"GDW_USERLIST_DESC": "Manually add new users, or import multiple users from a CSV formatted data file.",
"GDW_USERLIST_MESSAGE": "No new users are currently set to be imported. Users may be configured using either the \"Add User\" button or added manually later.",
"GENERAL": "General",
"GENERAL_OPTIONS": "General Options",
"GENERAL_TEXT_EXTRACTION": "General Text Extraction",
"GENERATE_THUMBNAILS": "Generate Thumbnails for Improved Validation",
"GERMAN": "German",
"GF_PORTAL_NOT_FOUND": "Imported Workflow(s) require(s) a GlobalForms Portal be present. Please install GlobalForms Prior to import.",
"GF_PW_UPDATED": "GlobalForms Password Updated",
"GLOBAL_AUTOMATON": "GlobalAction",
"GLOBALACTION_DESIGN_MENU": "GlobalAction Design",
"GLOBALCAPTURE_VALIDATION": "GlobalCapture Validation",
"GLOBALFORM": "GlobalForm",
"GLOBALFORM_MAPPING": "GlobalForm Mapping",
"GLOBALFORM_RESOURCE": "GlobalForm Resource",
"GLOBALFORMS": "GlobalForms",
"GLOBALFORMS_MAPPINGS": "GlobalForms Mappings",
"GLOBALFORMS_PORTAL_NOTFOUND": "GlobalForms Portal was not found.",
"GLOBALFORMS_RESOURCES": "GlobalForms Resources",
"GLOBALFORMS_RESUBMISSION": "GlobalForms Resubmission",
"GLOBALFORMS_USER_NOT_DETECTED": "Current User not detected in GlobalForms, please re-enter your Square 9 password to map your account.",
"GLOBALSEARCH_EXTENSIONS_MOVED": "Scan settings have been moved to the GlobalSearch Extensions page.",
"GLOBALSEARCH_FIELDS": "GlobalSearch Fields",
"GLOBALSEARCH_LICENSE_MANAGER": "GlobalSearch License Manager",
"GO": "Go",
"GO_GLOBALFORMS_WEBSITE": "Launch GlobalForms Designer",
"GO_TO_GLOBALSEARCH_EXTENSIONS": "Go to GlobalSearch Extensions",
"GO_TO_USERADMIN": "Go to User & Group Administration",
"GRANT_PERMISSION_TO_ALL_ARCHIVE_USERS": "Grant permission to all users of this archive",
"GREATER_THAN_OR_EQUAL_TO": "Greater than or Equal to",
"GRID_DISABLE_OPEN_DOCUMENT": "Disable double-click to open document",
"GRID_EXCEEDED_MAX_NUMERIC_MSG": "Value is bigger than the maximum value allowed for Numeric fields.",
"GRID_MENU": "Grid Menu",
"GRID_OPEN_DOCUMENT_IN_NEW_TAB": "Always open documents in new tab",
"GRID_VIEW": "Grid View",
"GROUP": "Group",
"GROUP_ADDED": "Group Added",
"GROUP_BY": "Group by",
"GROUP_NAME": "Group Name",
"GROUP_NAME_QUERY": "Enter a name for the group.",
"GROUP_NODE_SETTINGS": "Group Node Settings",
"GROUPED_TEMPLATES": "Grouped Templates",
"GSE_EDGE_SECURITY_WARNING": "Unable to connect to GlobalSearch Extensions in Microsoft Edge. This may be due to security policies in place on your system.",
"GSE_PORTS_STORED": "GlobalSearch Extensions ports have been stored. Please refresh any open GlobalSearch Web browser tabs to complete the sync. This tab will now close.",
"GSE_WRONG_VERSION": "GlobalSearch requires GlobalSearch Extensions version 3.1.0.0 or higher. Please install the newest version of GlobalSearch Extensions and try again.",
"GUIDED_TOUR": "Guided Tour",
"HEADER": "Header",
"HEADER_OR_FOOTER_REQUIRED_FOR_SEPARATOR": "Separator zone requires header, footer, or both enabled.",
"HEADERS": "Headers",
"HELP": "Help",
"HIDDEN_FIELDS": "Hidden Fields",
"HIDE_ALL_COLUMNS": "Hide All Columns",
"HIDE_DOCUMENT": "Hide Document",
"HIDE_LOG": "Hide Log",
"HIGHLIGHT": "Highlight",
"HISTORY": "History",
"HITS": "Hits:",
"HOURS": "Hours",
"ICON_TOOLBARS": "Display only icons in document viewer toolbars.",
"ID": "ID",
"ID_": "ID:",
"IDLE_WAIT": "Force Idle Wait",
"ILLEGAL_QUOTE": "Illegal Character Detected: \"",
"IMAGE_CLEAN_UP": "Image Cleanup",
"IMAGE_CLEAN_UP_NODE": "Image Cleanup Node",
"IMAGE_CLEAN_UP_NODE_SETTINGS": "Image Cleanup Node Settings",
"IMAGE_DETECTION": "Image Detection",
"IMAGE_XCHANGE_SEARCH_ENABLED": "Image XChange Search Enabled",
"IMAGEXCHANGE": "ImageXChange",
"IMPLICIT": "Implicit",
"IMPORT": "Import",
"IMPORT_BY_FILENAME": "Import by File Name",
"IMPORT_COMPLETE": "Import Complete",
"IMPORT_DATA_AND_DOCUMENTS": "Import Data & Docs",
"IMPORT_EXPORT": "Import Export",
"IMPORT_FILE": "Import File",
"IMPORT_FROM": "Import from",
"IMPORT_LOG_HISTORY": "Import Log History",
"IMPORT_NODE": "Import Node",
"IMPORT_NODE_SETTINGS": "Import Node Settings",
"IMPORT_PROPERTY_FROM": "Import Process Field From",
"IMPORT_REPORT": "Import Report",
"IMPORT_SCAN": "Scan",
"IMPORT_SEPARATED_BY_COMMAS": "Must be separated by commas: pdf, tif, etc",
"IMPORT_SETTINGS": "Import Settings",
"IMPORT_TO_ARCHIVE_GENERATED": "Import to Automatically Generated Child Archive",
"IMPORT_TYPE": "Import Type",
"IMPORT_URL": "Import URL",
"IMPORT_USERS": "Import Users",
"IMPROVE_KEY_FREE_INDEXING": "Improve Key Free Indexing",
"INBOX": "Inbox",
"INBOX_DESTINATION": "Inbox Destination",
"INBOX_NAME": "Inbox Name",
"INBOXES": "Inboxes",
"INCLUDE_HEADERS": "Include Column Headers",
"INCLUDE_PROCESSES": "Include Processes",
"INCLUDE_PROPERTIES": "Include Process Fields",
"INCLUDE_PROPERTIES_INDEXING": "Include Process Fields Indexing",
"INCLUDE_SUBMISSIONS": "Include Submissions",
"INCLUDED_FIELDS": "Included Fields",
"INCLUDES": "Includes",
"INDEX_DOCUMENTS": "Index Documents:",
"INDEX_FIELDS": "Index Fields",
"INDEXED": "Indexed",
"INDEXED_BY": "Indexed By",
"INDEXED_MOVED_APPENDED_DELETED": "Indexed/Moved/Appended/Deleted",
"INDEXER": "Indexer",
"INFO_PANEL_DEFAULT": "Selecting nodes in the main diagram will display information here",
"INFORMATION": "Information",
"INITIATOR": "Initiator",
"INITIATOR_NODE": "Initiator Node",
"INITIATOR_NODE_SETTINGS": "Initiator Node Settings",
"INSERT_FROM_SCANNER": "Insert From Scanner",
"INSERT_ROW": "Insert row",
"INSTALL": "Install",
"INSTALL_APP_EXTENDER": "Install GlobalSearch Extensions",
"INSTALL_DATA_EXTRACTION_NOW": "Would you like to install Data Extraction now?",
"INSTALLED": "Installed",
"INT_DAY_REQUIRED": "Integer Day Required",
"INTERNAL_USER": "Internal User",
"INTERNAL_USER_ADMINISTRATION": "Internal User Administration",
"INVALID": "Invalid",
"INVALID_BATCHID": "An invalid batch ID was entered in the search criteria, search was not run.",
"INVALID_CHARACTER": "Invalid Character",
"INVALID_DATA": "Invalid Data",
"INVALID_DATE": "An invalid date was entered in the search criteria, search was not run.",
"INVALID_DATE_ERROR": "Invalid Date",
"INVALID_DATE_INPUT": "Invalid date input",
"INVALID_DECIMAL": "Invalid Decimal",
"INVALID_DT": "Invalid Date",
"INVALID_DURATION": "Invalid Duration",
"INVALID_EMAIL": "Invalid Email",
"INVALID_ENTRY": "Invalid Entry",
"INVALID_FIELD_CATALOG_REQUEST": "Invalid field catalog request",
"INVALID_FREQUENCY": "Invalid Frequency",
"INVALID_GLOBALFORM_NAME": "GlobalForm and GlobalForm Resource Names may only contain letters, numbers, and hyphens. They can not start or end with a hyphen.",
"INVALID_INT_OR_DEC": "Invalid Integer or Decimal",
"INVALID_INTEGER": "Invalid Integer",
"INVALID_LENGTH": "Invalid Length",
"INVALID_LICENSES": "Invalid Licensing detected. The following licenses are required for imported workflows",
"INVALID_NAME": "Invalid Name",
"INVALID_PATH": "Invalid Path",
"INVALID_PORT": "Invalid Port",
"INVALID_PROCESS_FIELD": "Invalid Process Field. Validation Required.",
"INVALID_PROCESSID": "An invalid Process ID was entered in the search criteria, search was not run.",
"INVALID_WFE": "Invalid WFE file",
"IO": "IO",
"IP_ADDRESS": "IP Address",
"IS_EMPTY": "Is Empty",
"IS_NOT_EMPTY": "Is not Empty",
"ITALIAN": "Italian",
"IXC": "Image XChange",
"JUMP_TO_PAGE": "Jump To Page",
"KEYFREE": "KeyFree",
"KEYFREE_LIST_ITEM_NOT_FOUND": "The selected text was not found in the dropdown list.",
"KEYFREE_LOADING": "Loading KeyFree OCR",
"KEYWORD": "Keyword:",
"KEYWORD_SEARCH": "Keyword Search",
"KFI_ERROR": "Failed to retrieve KeyFree Indexing data.",
"LABEL": "Label",
"LABEL_ADD_INTERNAL_USER": "Add Internal User:",
"LABEL_ADD_ROLES": "Add Square 9 User:",
"LABEL_DELETE_ROLES_CONFIRM": "Delete selected Square 9 users?",
"LABEL_UPDATE_ROLES_PASSWORD": "Update Square 9 User Password",
"LANGUAGE": "Language",
"LANGUAGE_EXTRACTION": "Language Extraction",
"LAST": "Last",
"LAST_MODIFIED": "Last Modified",
"LAUNCH": "Launch",
"LAUNCH_COPY": "Launch Copy",
"LAUNCH_DOCUMENT": "Launch Document",
"LAUNCH_ENTRY": "Launch Entry",
"LAUNCH_TABLE": "Launch Table",
"LAUNCH_TOOLTIP_ARGUMENTS": "Command line arguments to be executed when the document is launched. \\nEntering '{File}' within these arguments will allow the file name to be inserted in that location",
"LAUNCH_TOOLTIP_EXTENSION": "Eg .docx, .pdf or .jpg",
"LAUNCH_TOOLTIP_PATH": "Path to the executable on your local computer. \\nEg 'C:\\\\Program Files\\\\Microsoft Office\\\\WINWORD.EXE'",
"LAYOUT": "Layout",
"LEFT": "Left",
"LEFT_TO_RIGHT": "Left to Right",
"LENGTH": "Length",
"LESS_THAN_OR_EQUAL_TO": "Less than or Equal to",
"LICENSE _EXPIRED": "License Expired",
"LICENSE_ALLOCATION": "License Allocation",
"LICENSE_EXPIRED": "License Expired",
"LICENSE_EXPIRED_MSG": "Your license has expired and must be renewed.",
"LICENSE_EXPIRED_RETRY": "A request was interrupted due to an expired license, retry?",
"LICENSE_ID": "License ID",
"LICENSE_MANAGEMENT": "License Management",
"LICENSE_MANAGER": "License Manager",
"LICENSE_RETRIEVE_FAIL": "Failed to retrieve license",
"LICENSE_RETURNED": "License Returned",
"LICENSE_RULE_NAME_LABEL": "License Rule Name Label",
"LICENSE_RULE_TYPE": "License Rule Type",
"LICENSE_RULES": "License Rules",
"LICENSE_TYPE": "License Type",
"LICENSE_TYPES": "License Types",
"LICENSES": "Licenses",
"LIMIT_OCR": "Limit OCR",
"LIMIT_OF": "Limit of",
"LIMITS": "Limits",
"LINES": "Lines",
"LINK_LABELS": "Link Labels",
"LINK_TO_ARTICLE": "Link to article",
"LIST": "List",
"LIST_EDITOR": "List Editor",
"LIST_NAME": "List Name",
"LIST_OPTIONS": "List Options",
"LIST_SAVED": "List Saved",
"LIST_TYPE": "List Type",
"LIST_VALUES": "List Values",
"LISTS": "Lists",
"LIT_SELECT_ALL": "Select All",
"LIT_SELECT_NONE": "Select None",
"LITERAL": "Literal",
"LOAD": "Load",
"LOAD_CSV_DATA": "Load CSV Data",
"LOAD_CSV_FIELDS": "Load CSV Fields",
"LOAD_DATA": "Load Data",
"LOAD_TEMPLATE": "Load Template",
"LOAD_TEMPLATE_GROUP": "Load Template Group",
"LOAD_TEMPLATE_GROUPS": "Load Template Groups",
"LOADING": "Loading",
"LOCATION": "Location",
"LOG_IN_FAILED": "Log in failed",
"LOG_OUT_FAILED": "Log out failed",
"LOGGED_IN": "Logged in",
"LOGGED_OUT": "Logged out",
"LOGIN": "Login",
"LOGOUT": "Logout",
"LONGEST": "Longest",
"LOOP_DETECTED": "Loop Detected: Link removed",
"LOW_RESOLUTION_MODE": "Low Resolution Mode",
"LOW_RESOLUTION_MODE_TOOLTIP": "Specifies whether text on an image with low resolution is recognized.",
"MANAGE": "Manage",
"MANAGE_STAMPS": "Manage Stamps",
"MANAGEMENT": "Management",
"MANAGER": "Manager",
"MANUAL_ACTIVATION": "Manual Activation",
"MANUAL_REGISTRATION": "Manual Registration",
"MANUALLY_COMPLETED": "Manually Completed",
"MAP_CSV_FIELDS": "Map CSV Fields",
"MAP_EXPORT_FIELDS": "Map Export Fields",
"MAP_FIELDS": "Map Fields",
"MAPPED_FIELDS": "Mapped Fields",
"MARKER": "Marker",
"MATCH": "Match",
"MATRIX": "Matrix",
"MAX": "Max",
"MAX_SIZE": "Max Size",
"MAXIMUM_NUMBER_OF_FIELDS_TO_SHOW": "Maximum Number of Fields to Show",
"MEASURE": "Measure",
"MEASUREMENT": "Measurement",
"MENU": "Menu",
"MERGE_DOCUMENTS": "Merge Documents",
"MESSAGE_ARCHIVE_CHANGES": "Changes have been made to this archive, click OK to save or cancel to continue",
"MESSAGE_ATTACHMENTS": "Message and Attachments",
"MESSAGE_DELETE_CONFIRMATION": "Are you sure you want to delete ",
"MESSAGE_DOCUMENT": "Document ",
"MESSAGE_DOCUMENTS_MATCHING_WORKFLOW": " document(s) matched the workflow's criteria and will be processed.",
"MESSAGE_EXPORT": "Export: ",
"MESSAGE_GETTING_LICENSE": "Getting license token information... Please wait...",
"MESSAGE_INFORMATION": "Information: ",
"MESSAGE_LOADING": "Loading...",
"MESSAGE_NO_DOCUMENTS_MATCHED": "No document matched the workflow's criteria.",
"MESSAGE_SENT_TO_DROPBOX": "Document sent to Dropbox: ",
"MESSAGE_SENT_TO_DROPBOX_PlURAL": " Documents sent to Dropbox: ",
"MESSAGE_THANK_YOU": "Thank you for using GlobalSearch.",
"MESSAGE_UPDATED_USER_SETTINGS": "Successfully updated user settings",
"MESSAGE_USER_DELETED": " was deleted",