@eo-sdk/client 7.12.0-rc.1 → 7.13.0-rc.2
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.
- package/app/eo-framework/app-shell/app-bar/app-search/app-search.component.d.ts +3 -1
- package/app/eo-framework/stored-query/stored-query/stored-query.component.d.ts +3 -1
- package/app/eo-framework/stored-query/stored-query-details/stored-query-details.component.d.ts +3 -1
- package/app/eo-framework/ui/query-scope-select/query-scope-select.component.d.ts +11 -0
- package/app/eo-framework-core/search/app-search.service.d.ts +2 -1
- package/assets/_default/config/main.json +2 -1
- package/assets/_default/i18n/de.json +7 -4
- package/assets/_default/i18n/en.json +158 -155
- package/bundles/eo-sdk-client-projects-eo-sdk-core.umd.js +26 -4
- package/bundles/eo-sdk-client-projects-eo-sdk-core.umd.js.map +1 -1
- package/bundles/eo-sdk-client-projects-eo-sdk-core.umd.min.js +2 -2
- package/bundles/eo-sdk-client-projects-eo-sdk-core.umd.min.js.map +1 -1
- package/bundles/eo-sdk-client.umd.js +133 -76
- package/bundles/eo-sdk-client.umd.js.map +1 -1
- package/bundles/eo-sdk-client.umd.min.js +1 -1
- package/bundles/eo-sdk-client.umd.min.js.map +1 -1
- package/eo-sdk-client.d.ts +63 -62
- package/eo-sdk-client.metadata.json +1 -1
- package/esm2015/app/eo-client/about-state/about-state.component.js +3 -3
- package/esm2015/app/eo-framework/app-shell/app-bar/app-search/app-search.component.js +7 -3
- package/esm2015/app/eo-framework/form-elements/checkbox/checkbox.component.js +2 -2
- package/esm2015/app/eo-framework/grid/extensions/filter/text/text-filter.component.js +5 -5
- package/esm2015/app/eo-framework/stored-query/stored-query/stored-query.component.js +9 -3
- package/esm2015/app/eo-framework/stored-query/stored-query-details/stored-query-details.component.js +7 -2
- package/esm2015/app/eo-framework/ui/query-scope-select/query-scope-select.component.js +31 -0
- package/esm2015/app/eo-framework/ui/ui.module.js +6 -3
- package/esm2015/app/eo-framework-core/search/app-search.service.js +6 -1
- package/esm2015/eo-sdk-client.js +64 -63
- package/esm2015/projects/eo-sdk/core/lib/service/auth/auth.service.js +13 -5
- package/esm2015/projects/eo-sdk/core/lib/service/config/config.service.js +5 -1
- package/esm2015/projects/eo-sdk/core/lib/service/search/search-query.model.js +10 -1
- package/esm2015/projects/eo-sdk/core/lib/service/search/search.service.js +2 -1
- package/esm2015/projects/eo-sdk/core/lib/service/stored-queries/stored-query.model.js +2 -1
- package/fesm2015/eo-sdk-client-projects-eo-sdk-core.js +28 -5
- package/fesm2015/eo-sdk-client-projects-eo-sdk-core.js.map +1 -1
- package/fesm2015/eo-sdk-client.js +67 -16
- package/fesm2015/eo-sdk-client.js.map +1 -1
- package/package.json +2 -2
- package/projects/eo-sdk/core/eo-sdk-client-projects-eo-sdk-core.metadata.json +1 -1
- package/projects/eo-sdk/core/lib/service/auth/auth.service.d.ts +1 -0
- package/projects/eo-sdk/core/lib/service/config/config.service.d.ts +1 -0
- package/projects/eo-sdk/core/lib/service/search/search-query.model.d.ts +9 -0
- package/projects/eo-sdk/core/package.json +1 -1
|
@@ -7,7 +7,7 @@ import { AutoComplete } from 'primeng/primeng';
|
|
|
7
7
|
import { NgForm } from '@angular/forms';
|
|
8
8
|
import { LocaleDatePipe } from '../../../../eo-framework-core/pipes/locale-date.pipe';
|
|
9
9
|
import { AppSearchService } from '../../../../eo-framework-core/search/app-search.service';
|
|
10
|
-
import { UserService, StoredQuery, ObjectType, SearchFilter, SearchQuery, SearchState, SearchService, SystemService, Logger, CapabilitiesService, Capabilities, StoredQueriesService, NotificationsService, PrepareService, TranslateService } from '@eo-sdk/core';
|
|
10
|
+
import { UserService, StoredQuery, ObjectType, SearchFilter, SearchQuery, SearchState, SearchService, SystemService, Logger, CapabilitiesService, Capabilities, StoredQueriesService, NotificationsService, PrepareService, TranslateService, QueryScope } from '@eo-sdk/core';
|
|
11
11
|
export interface IdxSearch {
|
|
12
12
|
type: ObjectType;
|
|
13
13
|
contextFolderType: ObjectType;
|
|
@@ -58,6 +58,7 @@ export declare class AppSearchComponent implements OnInit, AfterViewInit, OnDest
|
|
|
58
58
|
INTERVAL_INCLUDE_FROM: string;
|
|
59
59
|
RANGE: string;
|
|
60
60
|
};
|
|
61
|
+
queryScope: QueryScope;
|
|
61
62
|
searchInput: AutoComplete;
|
|
62
63
|
expertInput: ElementRef;
|
|
63
64
|
indexdataForm: ObjectFormComponent;
|
|
@@ -122,6 +123,7 @@ export declare class AppSearchComponent implements OnInit, AfterViewInit, OnDest
|
|
|
122
123
|
resolveSelection(aggs: any[], key: string, selected: boolean): any[];
|
|
123
124
|
resetExpertModeInput(): void;
|
|
124
125
|
toggleExpertMode(): void;
|
|
126
|
+
setQueryScope(scope: QueryScope): void;
|
|
125
127
|
xpSelectGroup(group: any): void;
|
|
126
128
|
xpSelectType(type: any): void;
|
|
127
129
|
xpAddToTerm(str: any): void;
|
|
@@ -3,7 +3,7 @@ import { ObjectFormHelperService } from "../../object-form/object-form-helper.se
|
|
|
3
3
|
import { ObjectFormControlWrapper } from "../../object-form/object-form/object-form-control-wrapper";
|
|
4
4
|
import { AppSearchService } from "../../../eo-framework-core/search/app-search.service";
|
|
5
5
|
import { ObjectFormGroup } from "../../object-form/object-form/object-form-group";
|
|
6
|
-
import { StoredQueriesService, StoredQuery, SearchService, TranslateService, SystemService } from "@eo-sdk/core";
|
|
6
|
+
import { StoredQueriesService, StoredQuery, SearchService, TranslateService, SystemService, QueryScope } from "@eo-sdk/core";
|
|
7
7
|
export declare class StoredQueryComponent {
|
|
8
8
|
private searchService;
|
|
9
9
|
private elementRef;
|
|
@@ -12,6 +12,7 @@ export declare class StoredQueryComponent {
|
|
|
12
12
|
private storedQueriesService;
|
|
13
13
|
private formHelperService;
|
|
14
14
|
private appSearchService;
|
|
15
|
+
queryScope: QueryScope;
|
|
15
16
|
_storedQuery: StoredQuery;
|
|
16
17
|
queryFormControls: ObjectFormControlWrapper[];
|
|
17
18
|
queryForm: ObjectFormGroup;
|
|
@@ -24,6 +25,7 @@ export declare class StoredQueryComponent {
|
|
|
24
25
|
onQueryExecute: EventEmitter<any>;
|
|
25
26
|
isOpen: boolean;
|
|
26
27
|
constructor(searchService: SearchService, elementRef: ElementRef, translate: TranslateService, systemService: SystemService, storedQueriesService: StoredQueriesService, formHelperService: ObjectFormHelperService, appSearchService: AppSearchService);
|
|
28
|
+
setQueryScope(scope: QueryScope): void;
|
|
27
29
|
createQueryForm(): void;
|
|
28
30
|
private getFormElements;
|
|
29
31
|
private getValue;
|
package/app/eo-framework/stored-query/stored-query-details/stored-query-details.component.d.ts
CHANGED
|
@@ -6,7 +6,7 @@ import { EditForm, NotifyList, Restriction } from '../stored-query.interface';
|
|
|
6
6
|
import { StoredQueryComponent } from '../stored-query/stored-query.component';
|
|
7
7
|
import { SelectionService } from '../../../eo-framework-core/selection/selection.service';
|
|
8
8
|
import { UnsubscribeOnDestroy } from '../../util/unsubscribe/unsubscribe.component';
|
|
9
|
-
import { StoredQuery, StoredQueriesService, SearchFilter, TranslateService, SystemService, UserService, OrgRole, SearchService } from '@eo-sdk/core';
|
|
9
|
+
import { StoredQuery, StoredQueriesService, SearchFilter, TranslateService, SystemService, UserService, OrgRole, SearchService, QueryScope } from '@eo-sdk/core';
|
|
10
10
|
export declare class StoredQueryDetailsComponent extends UnsubscribeOnDestroy implements OnInit {
|
|
11
11
|
private router;
|
|
12
12
|
private searchService;
|
|
@@ -25,6 +25,7 @@ export declare class StoredQueryDetailsComponent extends UnsubscribeOnDestroy im
|
|
|
25
25
|
storedQueryForm: StoredQueryComponent;
|
|
26
26
|
iconTitles: any;
|
|
27
27
|
storedQuery: StoredQuery;
|
|
28
|
+
queryScope: QueryScope;
|
|
28
29
|
editForm: EditForm;
|
|
29
30
|
restrictions: Restriction[];
|
|
30
31
|
editingShare: boolean;
|
|
@@ -40,6 +41,7 @@ export declare class StoredQueryDetailsComponent extends UnsubscribeOnDestroy im
|
|
|
40
41
|
set query(q: StoredQuery);
|
|
41
42
|
notifyList: EventEmitter<NotifyList>;
|
|
42
43
|
constructor(router: Router, searchService: SearchService, userService: UserService, systemService: SystemService, selection: SelectionService, pendingChanges: PendingChangesService, storedQueriesService: StoredQueriesService, formHelperService: ObjectFormHelperService, translate: TranslateService);
|
|
44
|
+
setQueryScope(scope: QueryScope): void;
|
|
43
45
|
setQuery(q: StoredQuery): void;
|
|
44
46
|
private startPending;
|
|
45
47
|
private finishPending;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { EventEmitter } from '@angular/core';
|
|
2
|
+
import { QueryScope } from '@eo-sdk/core';
|
|
3
|
+
export declare class QueryScopeSelectComponent {
|
|
4
|
+
QueryScope: typeof QueryScope;
|
|
5
|
+
private _selectedQueryScope;
|
|
6
|
+
set selectedQueryScope(scope: QueryScope);
|
|
7
|
+
get selectedQueryScope(): QueryScope;
|
|
8
|
+
select: EventEmitter<QueryScope>;
|
|
9
|
+
constructor();
|
|
10
|
+
selectQueryScope(scope: QueryScope): void;
|
|
11
|
+
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Observable } from 'rxjs';
|
|
2
|
-
import { SearchFilter, SearchQuery, SearchState, SystemService, ObjectType, SearchService, EventService } from '@eo-sdk/core';
|
|
2
|
+
import { SearchFilter, SearchQuery, SearchState, SystemService, ObjectType, SearchService, EventService, QueryScope } from '@eo-sdk/core';
|
|
3
3
|
/**
|
|
4
4
|
* AppSearchService is the apps main entry point for searching (used by the appBarSearch component).
|
|
5
5
|
* It provides an `query$` observable components can subscribe to, to
|
|
@@ -43,6 +43,7 @@ export declare class AppSearchService {
|
|
|
43
43
|
*/
|
|
44
44
|
toggleExpertMode(): void;
|
|
45
45
|
setTerm(term: string): void;
|
|
46
|
+
setQueryScope(scope: QueryScope): void;
|
|
46
47
|
setAggs(aggs: any, extend?: boolean): void;
|
|
47
48
|
/**
|
|
48
49
|
* Toggles a type filter.
|
|
@@ -194,6 +194,9 @@
|
|
|
194
194
|
"eo.notifications.filter.resubmission.label": "Wiedervorlage",
|
|
195
195
|
"eo.search.close": "Suche schließen",
|
|
196
196
|
"eo.search.clear.search": "Suche löschen",
|
|
197
|
+
"eo.search.scope.all.label": "Alles",
|
|
198
|
+
"eo.search.scope.content.label": "Nur Dokumentdateien",
|
|
199
|
+
"eo.search.scope.indexdata.label": "Nur Metadaten",
|
|
197
200
|
"eo.add.title.location.subfolder": "Ablage in '{{folder}}'",
|
|
198
201
|
"eo.add.empty.root.types": "Es steht kein Objekttyp zur Verfügung.",
|
|
199
202
|
"eo.sort.by": "Sortieren nach",
|
|
@@ -411,7 +414,7 @@
|
|
|
411
414
|
"eo.object.history.entry.type.OBJECT_DEFINALIZED.description": "Die Finalisierung des Objekts wurde aufgehoben.",
|
|
412
415
|
"eo.object.history.entry.type.MOVED_TO_RECYCLE_BIN.title": "Das Objekt wurde in einen Papierkorb verschoben.",
|
|
413
416
|
"eo.object.history.entry.type.MOVED_TO_RECYCLE_BIN.description": "Das Objekt wurde in den Papierkorb verschoben.",
|
|
414
|
-
"eo.object.history.entry.type.LOCATIONS_RESTORED_FROM_RECYCLE_BIN.title": "Die Ablageorte
|
|
417
|
+
"eo.object.history.entry.type.LOCATIONS_RESTORED_FROM_RECYCLE_BIN.title": "Die Ablageorte wurden aus einem Papierkorb wiederhergestellt.",
|
|
415
418
|
"eo.object.history.entry.type.LOCATIONS_RESTORED_FROM_RECYCLE_BIN.description": "Die Ablageorte des Objekts wurden aus einem Papierkorb wiederhergestellt.",
|
|
416
419
|
"eo.object.history.entry.type.LOCATION_RESTORED_FROM_RECYCLE_BIN.title": "Ein Ablageort wurde aus einem Papierkorb wiederhergestellt.",
|
|
417
420
|
"eo.object.history.entry.type.LOCATION_RESTORED_FROM_RECYCLE_BIN.description": "Ein Ablageort des Objekts wurde aus einem Papierkorb wiederhergestellt.",
|
|
@@ -440,7 +443,7 @@
|
|
|
440
443
|
"eo.object.history.entry.type.OBJECT_COPIED.title": "Das Objekt wurde kopiert.",
|
|
441
444
|
"eo.object.history.entry.type.OBJECT_COPIED.description": "Von diesem Objekt wurde an einem neuen Ablageort eine Kopie angelegt.",
|
|
442
445
|
"eo.object.history.entry.type.OBJECT_CREATED_BY_COPY.title": "Das Objekt wurde durch Kopieren neu angelegt.",
|
|
443
|
-
"eo.object.history.entry.type.OBJECT_CREATED_BY_COPY.description": "Das Objekt wurde neu erstellt, indem eine Kopie
|
|
446
|
+
"eo.object.history.entry.type.OBJECT_CREATED_BY_COPY.description": "Das Objekt wurde neu erstellt, indem eine Kopie des Quellobjekts angelegt wurde.",
|
|
444
447
|
"eo.object.history.entry.type.CONTENT_GROUP_REMOVED.title": "Dokumentdatei entfernt.",
|
|
445
448
|
"eo.object.history.entry.type.CONTENT_GROUP_REMOVED.description": "Die Dokumentdatei des Objekts wurde entfernt.",
|
|
446
449
|
"eo.object.history.entry.type.SHARING_ENABLED_USER.title": "Das Objekt wurde mit einem Benutzer geteilt.",
|
|
@@ -450,7 +453,7 @@
|
|
|
450
453
|
"eo.object.history.entry.type.SHARING_ENABLED_GROUP.title": "Das Objekt wurde mit einer Gruppe geteilt.",
|
|
451
454
|
"eo.object.history.entry.type.SHARING_ENABLED_GROUP.description": "Es ist jetzt sichtbar für die Mitglieder der Gruppe {{orgtitle}}.",
|
|
452
455
|
"eo.object.history.entry.type.SHARING_REVOKED_GROUP.title": "Objekt wird nicht mehr mit einer Gruppe geteilt.",
|
|
453
|
-
"eo.object.history.entry.type.SHARING_REVOKED_GROUP.description": "Es ist jetzt nicht mehr sichtbar die Mitglieder der Gruppe {{orgtitle}}.",
|
|
456
|
+
"eo.object.history.entry.type.SHARING_REVOKED_GROUP.description": "Es ist jetzt nicht mehr sichtbar für die Mitglieder der Gruppe {{orgtitle}}.",
|
|
454
457
|
"eo.object.history.entry.type.CONTENT_RENAMED.title": "Dokumentdatei umbenannt.",
|
|
455
458
|
"eo.object.history.entry.type.CONTENT_RENAMED.description": "Die Dokumentdatei wurde umbenannt in {{contentname}}.",
|
|
456
459
|
"eo.object.history.entry.type.CONTENT_RETENTION_CHANGED.title": "Dokumentdatei Aufbewahrungsfrist geändert.",
|
|
@@ -590,7 +593,7 @@
|
|
|
590
593
|
"eo.process.details.history.entry.type.SETACTIVITYPERFORMER_DEADLINE.title": "Die Fristüberschreitung führte zur Neubestimmung der Empfänger.",
|
|
591
594
|
"eo.process.details.history.entry.type.SETACTIVITYPERFORMER_DYNAMIC.title": "Die Empfänger wurden skriptgesteuert bestimmt.",
|
|
592
595
|
"eo.process.details.history.entry.type.SETACTIVITYPERFORMER_MODEL.title": "Die Empfänger wurden auf Basis der Prozessdefinition bestimmt.",
|
|
593
|
-
"eo.process.details.history.entry.type.SETACTIVITYPERFORMER_ROLLBACK.title": "
|
|
596
|
+
"eo.process.details.history.entry.type.SETACTIVITYPERFORMER_ROLLBACK.title": "Der Empfänger wurde neu bestimmt, da der Prozess zu einem früheren Ausführungszeitpunkt zurückgesetzt wurde.",
|
|
594
597
|
"eo.process.details.history.entry.type.SUBPROCESS_COMPLETED.title": "Ein Subprozess wurde beendet.",
|
|
595
598
|
"eo.process.details.history.entry.type.SUBPROCESS_STARTED.title": "Ein Subprozess wurde gestarte.",
|
|
596
599
|
"eo.process.details.history.entry.type.TRANSITION_EVENT.title": "Das Transitionsereignis wurde ausgelöst.",
|
|
@@ -196,6 +196,9 @@
|
|
|
196
196
|
"eo.notifications.filter.resubmission.label": "Follow-up",
|
|
197
197
|
"eo.search.close": "Close search",
|
|
198
198
|
"eo.search.clear.search": "Delete search",
|
|
199
|
+
"eo.search.scope.all.label": "All",
|
|
200
|
+
"eo.search.scope.content.label": "Document files only",
|
|
201
|
+
"eo.search.scope.indexdata.label": "Metadata only",
|
|
199
202
|
"eo.add.title.location.subfolder": "File to '{{folder}}'",
|
|
200
203
|
"eo.add.empty.root.types": "There are no object types available.",
|
|
201
204
|
"eo.sort.by": "Sort by",
|
|
@@ -374,88 +377,88 @@
|
|
|
374
377
|
"eo.object.history.workflowprocess": "Process model",
|
|
375
378
|
"eo.object.history.activity": "Activity",
|
|
376
379
|
"eo.object.history.version": "Version",
|
|
377
|
-
"eo.object.history.entry.type.ACCESSLOG:DETAILS.description": "The
|
|
378
|
-
"eo.object.history.entry.type.ACCESSLOG:DETAILS.title": "
|
|
379
|
-
"eo.object.history.entry.type.ACCESSLOG:DOWNLOAD.description": "The
|
|
380
|
-
"eo.object.history.entry.type.ACCESSLOG:DOWNLOAD.title": "Document file
|
|
381
|
-
"eo.object.history.entry.type.ACCESSLOG:DOWNLOAD_PDF.description": "The
|
|
382
|
-
"eo.object.history.entry.type.ACCESSLOG:DOWNLOAD_PDF.title": "Document file
|
|
383
|
-
"eo.object.history.entry.type.ACCESSLOG:DOWNLOAD_TIFF.description": "The
|
|
384
|
-
"eo.object.history.entry.type.ACCESSLOG:DOWNLOAD_TIFF.title": "Document file
|
|
385
|
-
"eo.object.history.entry.type.ACCESSLOG:PREVIEW.description": "The preview was
|
|
386
|
-
"eo.object.history.entry.type.ACCESSLOG:PREVIEW.title": "Preview
|
|
387
|
-
"eo.object.history.entry.type.ACCESSLOG:SEND_CONTENT.description": "The
|
|
388
|
-
"eo.object.history.entry.type.ACCESSLOG:SEND_CONTENT.title": "Document file
|
|
389
|
-
"eo.object.history.entry.type.ACCESSLOG:SEND_PDF.description": "The
|
|
390
|
-
"eo.object.history.entry.type.ACCESSLOG:SEND_PDF.title": "Document file
|
|
391
|
-
"eo.object.history.entry.type.ACCESSLOG:UNKNOWN.description": "
|
|
392
|
-
"eo.object.history.entry.type.ACCESSLOG:UNKNOWN.title": "
|
|
393
|
-
"eo.object.history.entry.type.ADDED_TO_PROCESS_FILE.description": "The object was added
|
|
394
|
-
"eo.object.history.entry.type.ADDED_TO_PROCESS_FILE.title": "Added to process file.",
|
|
395
|
-
"eo.object.history.entry.type.CONTENT_GROUP_ARCHIVED.description": "The document
|
|
396
|
-
"eo.object.history.entry.type.CONTENT_GROUP_ARCHIVED.title": "
|
|
397
|
-
"eo.object.history.entry.type.CONTENT_GROUP_CHANGED.description": "The
|
|
398
|
-
"eo.object.history.entry.type.CONTENT_GROUP_CHANGED.title": "
|
|
399
|
-
"eo.object.history.entry.type.CONTENT_GROUP_DEARCHIVED.description": "The document
|
|
400
|
-
"eo.object.history.entry.type.CONTENT_GROUP_DEARCHIVED.title": "
|
|
401
|
-
"eo.object.history.entry.type.CONTENT_GROUP_DELETED_LINK_TARGET.description": "
|
|
402
|
-
"eo.object.history.entry.type.CONTENT_GROUP_DELETED_LINK_TARGET.title": "
|
|
403
|
-
"eo.object.history.entry.type.CONTENT_GROUP_LINKED.description": "This object
|
|
404
|
-
"eo.object.history.entry.type.CONTENT_GROUP_LINKED.title": "
|
|
405
|
-
"eo.object.history.entry.type.CONTENT_GROUP_NEW_LINK_TARGET.description": "
|
|
406
|
-
"eo.object.history.entry.type.CONTENT_GROUP_NEW_LINK_TARGET.title": "Used as
|
|
407
|
-
"eo.object.history.entry.type.CONTENT_GROUP_REMOVED.description": "The
|
|
408
|
-
"eo.object.history.entry.type.CONTENT_GROUP_REMOVED.title": "
|
|
409
|
-
"eo.object.history.entry.type.CONTENT_GROUP_TEMPLATE_APPLIED.description": "
|
|
410
|
-
"eo.object.history.entry.type.CONTENT_GROUP_TEMPLATE_APPLIED.title": "
|
|
411
|
-
"eo.object.history.entry.type.CONTENT_GROUP_UNLINKED.description": "This object
|
|
412
|
-
"eo.object.history.entry.type.CONTENT_GROUP_UNLINKED.title": "
|
|
413
|
-
"eo.object.history.entry.type.CONTENT_RENAMED.description": "The document file was renamed
|
|
380
|
+
"eo.object.history.entry.type.ACCESSLOG:DETAILS.description": "The details view of the object was opened.",
|
|
381
|
+
"eo.object.history.entry.type.ACCESSLOG:DETAILS.title": "Details opened.",
|
|
382
|
+
"eo.object.history.entry.type.ACCESSLOG:DOWNLOAD.description": "The document file was downloaded and saved on the user’s local system.",
|
|
383
|
+
"eo.object.history.entry.type.ACCESSLOG:DOWNLOAD.title": "Document file downloaded.",
|
|
384
|
+
"eo.object.history.entry.type.ACCESSLOG:DOWNLOAD_PDF.description": "The document file was downloaded as a PDF and saved on the user’s local system.",
|
|
385
|
+
"eo.object.history.entry.type.ACCESSLOG:DOWNLOAD_PDF.title": "Document file downloaded as PDF.",
|
|
386
|
+
"eo.object.history.entry.type.ACCESSLOG:DOWNLOAD_TIFF.description": "The document file was downloaded as a TIFF and saved on the user’s local system.",
|
|
387
|
+
"eo.object.history.entry.type.ACCESSLOG:DOWNLOAD_TIFF.title": "Document file downloaded as TIFF.",
|
|
388
|
+
"eo.object.history.entry.type.ACCESSLOG:PREVIEW.description": "The preview was viewed.",
|
|
389
|
+
"eo.object.history.entry.type.ACCESSLOG:PREVIEW.title": "Preview viewed.",
|
|
390
|
+
"eo.object.history.entry.type.ACCESSLOG:SEND_CONTENT.description": "The document file was sent.",
|
|
391
|
+
"eo.object.history.entry.type.ACCESSLOG:SEND_CONTENT.title": "Document file was sent.",
|
|
392
|
+
"eo.object.history.entry.type.ACCESSLOG:SEND_PDF.description": "The document file was sent as a PDF.",
|
|
393
|
+
"eo.object.history.entry.type.ACCESSLOG:SEND_PDF.title": "Document file was sent as PDF.",
|
|
394
|
+
"eo.object.history.entry.type.ACCESSLOG:UNKNOWN.description": "There is no further information on why the call was made.",
|
|
395
|
+
"eo.object.history.entry.type.ACCESSLOG:UNKNOWN.title": "Intent was not specified.",
|
|
396
|
+
"eo.object.history.entry.type.ADDED_TO_PROCESS_FILE.description": "The object was added to the process file.",
|
|
397
|
+
"eo.object.history.entry.type.ADDED_TO_PROCESS_FILE.title": "Added to the process file.",
|
|
398
|
+
"eo.object.history.entry.type.CONTENT_GROUP_ARCHIVED.description": "The object’s document file was archived.",
|
|
399
|
+
"eo.object.history.entry.type.CONTENT_GROUP_ARCHIVED.title": "The document file was archived.",
|
|
400
|
+
"eo.object.history.entry.type.CONTENT_GROUP_CHANGED.description": "The object’s document file was changed.",
|
|
401
|
+
"eo.object.history.entry.type.CONTENT_GROUP_CHANGED.title": "The document file was changed.",
|
|
402
|
+
"eo.object.history.entry.type.CONTENT_GROUP_DEARCHIVED.description": "The document file was retrieved.",
|
|
403
|
+
"eo.object.history.entry.type.CONTENT_GROUP_DEARCHIVED.title": "The object’s document file was retrieved.",
|
|
404
|
+
"eo.object.history.entry.type.CONTENT_GROUP_DELETED_LINK_TARGET.description": "This object is no longer being used as the source of a file link of another object.",
|
|
405
|
+
"eo.object.history.entry.type.CONTENT_GROUP_DELETED_LINK_TARGET.title": "No longer used as a file link",
|
|
406
|
+
"eo.object.history.entry.type.CONTENT_GROUP_LINKED.description": "This object now uses the document file of another object.",
|
|
407
|
+
"eo.object.history.entry.type.CONTENT_GROUP_LINKED.title": "File link created",
|
|
408
|
+
"eo.object.history.entry.type.CONTENT_GROUP_NEW_LINK_TARGET.description": "This object is being used as the source of a file link of another object.",
|
|
409
|
+
"eo.object.history.entry.type.CONTENT_GROUP_NEW_LINK_TARGET.title": "Used as a file link",
|
|
410
|
+
"eo.object.history.entry.type.CONTENT_GROUP_REMOVED.description": "The object’s document file was removed.",
|
|
411
|
+
"eo.object.history.entry.type.CONTENT_GROUP_REMOVED.title": "Document file removed.",
|
|
412
|
+
"eo.object.history.entry.type.CONTENT_GROUP_TEMPLATE_APPLIED.description": "A template was assigned.",
|
|
413
|
+
"eo.object.history.entry.type.CONTENT_GROUP_TEMPLATE_APPLIED.title": "A template was assigned.",
|
|
414
|
+
"eo.object.history.entry.type.CONTENT_GROUP_UNLINKED.description": "This object no longer uses the document file of another object.",
|
|
415
|
+
"eo.object.history.entry.type.CONTENT_GROUP_UNLINKED.title": "File link removed",
|
|
416
|
+
"eo.object.history.entry.type.CONTENT_RENAMED.description": "The document file was renamed {{contentname}}.",
|
|
414
417
|
"eo.object.history.entry.type.CONTENT_RENAMED.title": "Document file renamed.",
|
|
415
|
-
"eo.object.history.entry.type.CONTENT_RETENTION_CHANGED.description": "The
|
|
416
|
-
"eo.object.history.entry.type.CONTENT_RETENTION_CHANGED.title": "
|
|
417
|
-
"eo.object.history.entry.type.END_WITH_PROCESS.description": "The process
|
|
418
|
-
"eo.object.history.entry.type.END_WITH_PROCESS.title": "Process was
|
|
419
|
-
"eo.object.history.entry.type.INDEX_DATA_CHANGED.description": "The metadata
|
|
420
|
-
"eo.object.history.entry.type.INDEX_DATA_CHANGED.title": "
|
|
421
|
-
"eo.object.history.entry.type.LOCATIONS_RESTORED_FROM_RECYCLE_BIN.description": "
|
|
422
|
-
"eo.object.history.entry.type.LOCATIONS_RESTORED_FROM_RECYCLE_BIN.title": "
|
|
423
|
-
"eo.object.history.entry.type.LOCATION_RESTORED_FROM_RECYCLE_BIN.description": "A location of the object was
|
|
424
|
-
"eo.object.history.entry.type.LOCATION_RESTORED_FROM_RECYCLE_BIN.title": "A location was
|
|
425
|
-
"eo.object.history.entry.type.MESSAGE_CONFIRMED.description": "The message
|
|
426
|
-
"eo.object.history.entry.type.MESSAGE_CONFIRMED.title": "
|
|
427
|
-
"eo.object.history.entry.type.MOVED_TO_RECYCLE_BIN.description": "The object was moved
|
|
428
|
-
"eo.object.history.entry.type.MOVED_TO_RECYCLE_BIN.title": "
|
|
429
|
-
"eo.object.history.entry.type.OBJECT_COPIED.description": "
|
|
430
|
-
"eo.object.history.entry.type.OBJECT_COPIED.title": "
|
|
418
|
+
"eo.object.history.entry.type.CONTENT_RETENTION_CHANGED.description": "The retention period was changed to {{newretention}} from the old retention period {{oldretention}}.",
|
|
419
|
+
"eo.object.history.entry.type.CONTENT_RETENTION_CHANGED.title": "Retention period of document file changed.",
|
|
420
|
+
"eo.object.history.entry.type.END_WITH_PROCESS.description": "The process whose file contained the object was ended.",
|
|
421
|
+
"eo.object.history.entry.type.END_WITH_PROCESS.title": "Process was completed",
|
|
422
|
+
"eo.object.history.entry.type.INDEX_DATA_CHANGED.description": "The object’s metadata was changed.",
|
|
423
|
+
"eo.object.history.entry.type.INDEX_DATA_CHANGED.title": "The metadata was changed.",
|
|
424
|
+
"eo.object.history.entry.type.LOCATIONS_RESTORED_FROM_RECYCLE_BIN.description": "The object’s filing locations were recovered from a recycle bin.",
|
|
425
|
+
"eo.object.history.entry.type.LOCATIONS_RESTORED_FROM_RECYCLE_BIN.title": "The filing locations were recovered from a recycle bin.",
|
|
426
|
+
"eo.object.history.entry.type.LOCATION_RESTORED_FROM_RECYCLE_BIN.description": "A filing location of the object was recovered from a recycle bin.",
|
|
427
|
+
"eo.object.history.entry.type.LOCATION_RESTORED_FROM_RECYCLE_BIN.title": "A filing location was recovered from a recycle bin.",
|
|
428
|
+
"eo.object.history.entry.type.MESSAGE_CONFIRMED.description": "The message about the subscribed object was acknowledged.",
|
|
429
|
+
"eo.object.history.entry.type.MESSAGE_CONFIRMED.title": "The message was acknowledged.",
|
|
430
|
+
"eo.object.history.entry.type.MOVED_TO_RECYCLE_BIN.description": "The object was moved into the recycle bin.",
|
|
431
|
+
"eo.object.history.entry.type.MOVED_TO_RECYCLE_BIN.title": "The object was moved into a recycle bin.",
|
|
432
|
+
"eo.object.history.entry.type.OBJECT_COPIED.description": "A copy of this object was created in a new filing location.",
|
|
433
|
+
"eo.object.history.entry.type.OBJECT_COPIED.title": "The object was copied.",
|
|
431
434
|
"eo.object.history.entry.type.OBJECT_CREATED.description": "The object was created.",
|
|
432
|
-
"eo.object.history.entry.type.OBJECT_CREATED.title": "
|
|
433
|
-
"eo.object.history.entry.type.OBJECT_CREATED_BY_COPY.description": "The object was created by creating a copy of
|
|
434
|
-
"eo.object.history.entry.type.OBJECT_CREATED_BY_COPY.title": "
|
|
435
|
-
"eo.object.history.entry.type.OBJECT_DEFINALIZED.description": "The
|
|
436
|
-
"eo.object.history.entry.type.OBJECT_DEFINALIZED.title": "
|
|
437
|
-
"eo.object.history.entry.type.OBJECT_FINALIZED.description": "The object was finalized
|
|
438
|
-
"eo.object.history.entry.type.OBJECT_FINALIZED.title": "
|
|
439
|
-
"eo.object.history.entry.type.OBJECT_LOCATION_ADDED.description": "A new location was added to the object.",
|
|
440
|
-
"eo.object.history.entry.type.OBJECT_LOCATION_ADDED.title": "
|
|
441
|
-
"eo.object.history.entry.type.OBJECT_LOCATION_REMOVED.description": "A location
|
|
442
|
-
"eo.object.history.entry.type.OBJECT_LOCATION_REMOVED.title": "
|
|
435
|
+
"eo.object.history.entry.type.OBJECT_CREATED.title": "The object was created.",
|
|
436
|
+
"eo.object.history.entry.type.OBJECT_CREATED_BY_COPY.description": "The object was created again by creating a copy of the source object.",
|
|
437
|
+
"eo.object.history.entry.type.OBJECT_CREATED_BY_COPY.title": "The object was created again by copying.",
|
|
438
|
+
"eo.object.history.entry.type.OBJECT_DEFINALIZED.description": "The finalization of the object was cleared.",
|
|
439
|
+
"eo.object.history.entry.type.OBJECT_DEFINALIZED.title": "The finalization of the object was cleared.",
|
|
440
|
+
"eo.object.history.entry.type.OBJECT_FINALIZED.description": "The object was finalized.",
|
|
441
|
+
"eo.object.history.entry.type.OBJECT_FINALIZED.title": "The object was finalized.",
|
|
442
|
+
"eo.object.history.entry.type.OBJECT_LOCATION_ADDED.description": "A new filing location was added to the object.",
|
|
443
|
+
"eo.object.history.entry.type.OBJECT_LOCATION_ADDED.title": "A new filing location was added.",
|
|
444
|
+
"eo.object.history.entry.type.OBJECT_LOCATION_REMOVED.description": "A filing location of the object was recovered.",
|
|
445
|
+
"eo.object.history.entry.type.OBJECT_LOCATION_REMOVED.title": "A filing location was removed.",
|
|
443
446
|
"eo.object.history.entry.type.OBJECT_MOVED.description": "The object was moved.",
|
|
444
|
-
"eo.object.history.entry.type.OBJECT_MOVED.title": "
|
|
447
|
+
"eo.object.history.entry.type.OBJECT_MOVED.title": "The object was moved.",
|
|
445
448
|
"eo.object.history.entry.type.REMOVED_FROM_PROCESS_FILE.description": "The object was removed from the process file.",
|
|
446
|
-
"eo.object.history.entry.type.REMOVED_FROM_PROCESS_FILE.title": "Removed from process file.",
|
|
447
|
-
"eo.object.history.entry.type.SHARING_ENABLED_GROUP.description": "
|
|
448
|
-
"eo.object.history.entry.type.SHARING_ENABLED_GROUP.title": "
|
|
449
|
-
"eo.object.history.entry.type.SHARING_ENABLED_USER.description": "
|
|
450
|
-
"eo.object.history.entry.type.SHARING_ENABLED_USER.title": "
|
|
451
|
-
"eo.object.history.entry.type.SHARING_REVOKED_GROUP.description": "
|
|
452
|
-
"eo.object.history.entry.type.SHARING_REVOKED_GROUP.title": "
|
|
453
|
-
"eo.object.history.entry.type.SHARING_REVOKED_USER.description": "
|
|
454
|
-
"eo.object.history.entry.type.SHARING_REVOKED_USER.title": "
|
|
455
|
-
"eo.object.history.entry.type.START_WITH_PROCESS.description": "The object
|
|
456
|
-
"eo.object.history.entry.type.START_WITH_PROCESS.title": "Process was started
|
|
457
|
-
"eo.object.history.entry.type.VERSION_RESTORED.description": "Version{{sourceversion}} was restored and
|
|
458
|
-
"eo.object.history.entry.type.VERSION_RESTORED.title": "
|
|
449
|
+
"eo.object.history.entry.type.REMOVED_FROM_PROCESS_FILE.title": "Removed from the process file.",
|
|
450
|
+
"eo.object.history.entry.type.SHARING_ENABLED_GROUP.description": "It is now visible to members of the group {{orgtitle}}.",
|
|
451
|
+
"eo.object.history.entry.type.SHARING_ENABLED_GROUP.title": "The object was shared with a group.",
|
|
452
|
+
"eo.object.history.entry.type.SHARING_ENABLED_USER.description": "It is now visible to user {{orgtitle}} ({{orgname}}).",
|
|
453
|
+
"eo.object.history.entry.type.SHARING_ENABLED_USER.title": "The object was shared with a user.",
|
|
454
|
+
"eo.object.history.entry.type.SHARING_REVOKED_GROUP.description": "It is no longer visible to members of the group {{orgtitle}}.",
|
|
455
|
+
"eo.object.history.entry.type.SHARING_REVOKED_GROUP.title": "The object is no longer shared with a group.",
|
|
456
|
+
"eo.object.history.entry.type.SHARING_REVOKED_USER.description": "It is no longer visible to user {{orgtitle}} ({{orgname}}).",
|
|
457
|
+
"eo.object.history.entry.type.SHARING_REVOKED_USER.title": "The object is no longer shared with a user.",
|
|
458
|
+
"eo.object.history.entry.type.START_WITH_PROCESS.description": "The object was added upon starting the process file.",
|
|
459
|
+
"eo.object.history.entry.type.START_WITH_PROCESS.title": "Process was started",
|
|
460
|
+
"eo.object.history.entry.type.VERSION_RESTORED.description": "Version {{sourceversion}} was restored and set up as a new active version.",
|
|
461
|
+
"eo.object.history.entry.type.VERSION_RESTORED.title": "A previous version was restored.",
|
|
459
462
|
"eo.object.lock": "locked",
|
|
460
463
|
"eo.object.indexdata.reset": "Discard changes",
|
|
461
464
|
"eo.object.indexdata.save": "Save",
|
|
@@ -523,97 +526,97 @@
|
|
|
523
526
|
"eo.process.details.task.subscription.description": "You have received this notification because you wanted to be informed about changes to the attached business object.",
|
|
524
527
|
"eo.process.details.button.resubmission.remove": "Confirm",
|
|
525
528
|
"eo.process.details.button.subscription.remove": "Confirm",
|
|
526
|
-
"eo.process.details.history.entry.type.ACTIVITY_ABORTONROLLBACK.title": "The task
|
|
527
|
-
"eo.process.details.history.entry.type.ACTIVITY_BEFOREENDEVENT_END.title": "The script
|
|
528
|
-
"eo.process.details.history.entry.type.ACTIVITY_BEFOREENDEVENT_START.title": "The script
|
|
529
|
-
"eo.process.details.history.entry.type.ACTIVITY_BEFORESTARTEVENT_END.title": "The script
|
|
530
|
-
"eo.process.details.history.entry.type.ACTIVITY_BEFORESTARTEVENT_START.title": "The script
|
|
531
|
-
"eo.process.details.history.entry.type.ACTIVITY_CREATE.title": "The task was created.",
|
|
532
|
-
"eo.process.details.history.entry.type.ACTIVITY_CREATE_CONDITION_END.title": "The script
|
|
533
|
-
"eo.process.details.history.entry.type.ACTIVITY_CREATE_CONDITION_START.title": "The script
|
|
534
|
-
"eo.process.details.history.entry.type.ACTIVITY_END.title": "The task was
|
|
535
|
-
"eo.process.details.history.entry.type.ACTIVITY_EXECUTE.title": "The task was
|
|
536
|
-
"eo.process.details.history.entry.type.ACTIVITY_INIT.title": "The task was initialized.",
|
|
529
|
+
"eo.process.details.history.entry.type.ACTIVITY_ABORTONROLLBACK.title": "The task was canceled because the process has been reset to an earlier execution time.",
|
|
530
|
+
"eo.process.details.history.entry.type.ACTIVITY_BEFOREENDEVENT_END.title": "The script for the 'BeforeEndActivity' event was completed.",
|
|
531
|
+
"eo.process.details.history.entry.type.ACTIVITY_BEFOREENDEVENT_START.title": "The script for the 'BeforeEndActivity' event was launched.",
|
|
532
|
+
"eo.process.details.history.entry.type.ACTIVITY_BEFORESTARTEVENT_END.title": "The script for the 'BeforeStartActivity' event was completed.",
|
|
533
|
+
"eo.process.details.history.entry.type.ACTIVITY_BEFORESTARTEVENT_START.title": "The script for the 'BeforeStartActivity' event was launched.",
|
|
534
|
+
"eo.process.details.history.entry.type.ACTIVITY_CREATE.title": "The task was created by the system.",
|
|
535
|
+
"eo.process.details.history.entry.type.ACTIVITY_CREATE_CONDITION_END.title": "The script for the 'ActivityCreateCondition' event was completed.",
|
|
536
|
+
"eo.process.details.history.entry.type.ACTIVITY_CREATE_CONDITION_START.title": "The script for the 'ActivityCreateCondition' event was launched.",
|
|
537
|
+
"eo.process.details.history.entry.type.ACTIVITY_END.title": "The task was completed by the system.",
|
|
538
|
+
"eo.process.details.history.entry.type.ACTIVITY_EXECUTE.title": "The task was made available for editing.",
|
|
539
|
+
"eo.process.details.history.entry.type.ACTIVITY_INIT.title": "The task was initialized by the system.",
|
|
537
540
|
"eo.process.details.history.entry.type.ACTIVITY_MARKDEADLINEBLOCKINGACTIVTYONCREATION.title": "History entry",
|
|
538
541
|
"eo.process.details.history.entry.type.ACTIVITY_MARKDEADLINEBLOCKINGACTIVTYONFIRE.title": "History entry",
|
|
539
|
-
"eo.process.details.history.entry.type.ACTIVITY_RESUME.title": "The task was
|
|
540
|
-
"eo.process.details.history.entry.type.ACTIVITY_RESUMEBLOCKED.title": "
|
|
541
|
-
"eo.process.details.history.entry.type.ACTIVITY_ROLLBACK.title": "The task was
|
|
542
|
-
"eo.process.details.history.entry.type.ACTIVITY_SCOPEABORT.title": "The task
|
|
543
|
-
"eo.process.details.history.entry.type.ACTIVITY_SETDATAFIELDVALUES.title": "The
|
|
544
|
-
"eo.process.details.history.entry.type.ACTIVITY_SUSPEND.title": "The task was
|
|
545
|
-
"eo.process.details.history.entry.type.ACTIVITY_SUSPENDONBLOCKINGPERIOD.title": "The task was
|
|
546
|
-
"eo.process.details.history.entry.type.ACTIVITY_SUSPENDONERROR.title": "The task was
|
|
547
|
-
"eo.process.details.history.entry.type.ACTIVITY_TERMINATE.title": "The task was
|
|
548
|
-
"eo.process.details.history.entry.type.ACTIVITY_WAKEUP.title": "The task was
|
|
549
|
-
"eo.process.details.history.entry.type.BLOCKINGPERIOD_ABORTONROLLBACK.title": "
|
|
550
|
-
"eo.process.details.history.entry.type.BLOCKINGPERIOD_FIRE.title": "The delay
|
|
551
|
-
"eo.process.details.history.entry.type.BLOCKINGPERIOD_FIREEVENT_END.title": "The script
|
|
552
|
-
"eo.process.details.history.entry.type.BLOCKINGPERIOD_FIREEVENT_START.title": "The script
|
|
542
|
+
"eo.process.details.history.entry.type.ACTIVITY_RESUME.title": "The task was continued.",
|
|
543
|
+
"eo.process.details.history.entry.type.ACTIVITY_RESUMEBLOCKED.title": "Continuation of the task was blocked.",
|
|
544
|
+
"eo.process.details.history.entry.type.ACTIVITY_ROLLBACK.title": "The task was reset.",
|
|
545
|
+
"eo.process.details.history.entry.type.ACTIVITY_SCOPEABORT.title": "The scope of the task was canceled.",
|
|
546
|
+
"eo.process.details.history.entry.type.ACTIVITY_SETDATAFIELDVALUES.title": "The task’s index values were set.",
|
|
547
|
+
"eo.process.details.history.entry.type.ACTIVITY_SUSPEND.title": "The task was paused.",
|
|
548
|
+
"eo.process.details.history.entry.type.ACTIVITY_SUSPENDONBLOCKINGPERIOD.title": "The task was paused due to a delay.",
|
|
549
|
+
"eo.process.details.history.entry.type.ACTIVITY_SUSPENDONERROR.title": "The task was paused due to an error.",
|
|
550
|
+
"eo.process.details.history.entry.type.ACTIVITY_TERMINATE.title": "The task was aborted by the system.",
|
|
551
|
+
"eo.process.details.history.entry.type.ACTIVITY_WAKEUP.title": "The task was activated.",
|
|
552
|
+
"eo.process.details.history.entry.type.BLOCKINGPERIOD_ABORTONROLLBACK.title": "When resetting the process to an earlier execution time, the delay was canceled.",
|
|
553
|
+
"eo.process.details.history.entry.type.BLOCKINGPERIOD_FIRE.title": "The delay has ended.",
|
|
554
|
+
"eo.process.details.history.entry.type.BLOCKINGPERIOD_FIREEVENT_END.title": "The script for the 'PeriodFired' event was completed.",
|
|
555
|
+
"eo.process.details.history.entry.type.BLOCKINGPERIOD_FIREEVENT_START.title": "The script for the 'PeriodFired' event was launched.",
|
|
553
556
|
"eo.process.details.history.entry.type.BLOCKINGPERIOD_START.title": "The delay was started.",
|
|
554
|
-
"eo.process.details.history.entry.type.BLOCKINGPERIOD_STOP.title": "The delay was
|
|
557
|
+
"eo.process.details.history.entry.type.BLOCKINGPERIOD_STOP.title": "The delay was canceled.",
|
|
555
558
|
"eo.process.details.history.entry.type.BLOCKINGPERIOD_TIMECHANGE.title": "The delay time was changed.",
|
|
556
|
-
"eo.process.details.history.entry.type.DEADLINE_ABORTONROLLBACK.title": "The deadline was
|
|
557
|
-
"eo.process.details.history.entry.type.DEADLINE_FIRE.title": "The deadline
|
|
558
|
-
"eo.process.details.history.entry.type.DEADLINE_FIREEVENT_END.title": "The script
|
|
559
|
-
"eo.process.details.history.entry.type.DEADLINE_FIREEVENT_START.title": "The script
|
|
560
|
-
"eo.process.details.history.entry.type.DEADLINE_START.title": "The deadline was
|
|
561
|
-
"eo.process.details.history.entry.type.DEADLINE_STOP.title": "The deadline
|
|
562
|
-
"eo.process.details.history.entry.type.DEADLINE_TIMECHANGE.title": "The deadline
|
|
563
|
-
"eo.process.details.history.entry.type.DYNAMIC_BLOCKINGPERIOD_FIREEVENT_END.title": "The script
|
|
564
|
-
"eo.process.details.history.entry.type.DYNAMIC_BLOCKINGPERIOD_FIREEVENT_START.title": "The script
|
|
565
|
-
"eo.process.details.history.entry.type.DYNAMIC_DEADLINE_FIREEVENT_END.title": "The script
|
|
566
|
-
"eo.process.details.history.entry.type.DYNAMIC_DEADLINE_FIREEVENT_START.title": "The script
|
|
567
|
-
"eo.process.details.history.entry.type.FILE_CHANGE_CONTENT.title": "The file
|
|
568
|
-
"eo.process.details.history.entry.type.LOOP_CONDITION_END.title": "The script
|
|
569
|
-
"eo.process.details.history.entry.type.LOOP_CONDITION_START.title": "The script
|
|
570
|
-
"eo.process.details.history.entry.type.LOOP_EXECUTION_STOP.title": "
|
|
559
|
+
"eo.process.details.history.entry.type.DEADLINE_ABORTONROLLBACK.title": "The deadline was canceled by resetting the task.",
|
|
560
|
+
"eo.process.details.history.entry.type.DEADLINE_FIRE.title": "The deadline has been exceeded.",
|
|
561
|
+
"eo.process.details.history.entry.type.DEADLINE_FIREEVENT_END.title": "The script for the 'DeadlineFired' event was completed.",
|
|
562
|
+
"eo.process.details.history.entry.type.DEADLINE_FIREEVENT_START.title": "The script for the 'DeadlineFired' event was launched.",
|
|
563
|
+
"eo.process.details.history.entry.type.DEADLINE_START.title": "The deadline was set.",
|
|
564
|
+
"eo.process.details.history.entry.type.DEADLINE_STOP.title": "The deadline has ended.",
|
|
565
|
+
"eo.process.details.history.entry.type.DEADLINE_TIMECHANGE.title": "The deadline was changed.",
|
|
566
|
+
"eo.process.details.history.entry.type.DYNAMIC_BLOCKINGPERIOD_FIREEVENT_END.title": "The script for the 'PeriodFired' event was completed.",
|
|
567
|
+
"eo.process.details.history.entry.type.DYNAMIC_BLOCKINGPERIOD_FIREEVENT_START.title": "The script for the 'DelayFinished' event was launched.",
|
|
568
|
+
"eo.process.details.history.entry.type.DYNAMIC_DEADLINE_FIREEVENT_END.title": "The script for the 'DeadlineFireEvent' event was completed.",
|
|
569
|
+
"eo.process.details.history.entry.type.DYNAMIC_DEADLINE_FIREEVENT_START.title": "The script for the 'DeadlineFired' event was launched.",
|
|
570
|
+
"eo.process.details.history.entry.type.FILE_CHANGE_CONTENT.title": "The document file was changed.",
|
|
571
|
+
"eo.process.details.history.entry.type.LOOP_CONDITION_END.title": "The script for the 'LoopActivityCreateCondition' event was completed.",
|
|
572
|
+
"eo.process.details.history.entry.type.LOOP_CONDITION_START.title": "The script for the 'LoopActivityCreateCondition' event was launched.",
|
|
573
|
+
"eo.process.details.history.entry.type.LOOP_EXECUTION_STOP.title": "Execution of the loop task was halted.",
|
|
571
574
|
"eo.process.details.history.entry.type.PROCESS_CREATE.title": "The process was created.",
|
|
572
575
|
"eo.process.details.history.entry.type.PROCESS_END.title": "The process was completed.",
|
|
573
|
-
"eo.process.details.history.entry.type.PROCESS_ERRORSUSPEND.title": "The process was
|
|
574
|
-
"eo.process.details.history.entry.type.PROCESS_PROCESSROLLBACK_END.title": "
|
|
575
|
-
"eo.process.details.history.entry.type.PROCESS_PROCESSROLLBACK_START.title": "
|
|
576
|
+
"eo.process.details.history.entry.type.PROCESS_ERRORSUSPEND.title": "The process was aborted due to an error.",
|
|
577
|
+
"eo.process.details.history.entry.type.PROCESS_PROCESSROLLBACK_END.title": "Resetting the process to an earlier execution time was completed.",
|
|
578
|
+
"eo.process.details.history.entry.type.PROCESS_PROCESSROLLBACK_START.title": "Resetting the process to an earlier execution time was initiated.",
|
|
576
579
|
"eo.process.details.history.entry.type.PROCESS_RESUME.title": "The process was resumed.",
|
|
577
580
|
"eo.process.details.history.entry.type.PROCESS_START.title": "The process was started.",
|
|
578
581
|
"eo.process.details.history.entry.type.PROCESS_SUSPEND.title": "The process was suspended.",
|
|
579
582
|
"eo.process.details.history.entry.type.PROCESS_TERMINATE.title": "The process was terminated.",
|
|
580
583
|
"eo.process.details.history.entry.type.SCOPE_ABORT.title": "The scope was aborted.",
|
|
581
|
-
"eo.process.details.history.entry.type.SCOPE_ABORTONROLLBACK.title": "
|
|
582
|
-
"eo.process.details.history.entry.type.SCOPE_END.title": "The scope was
|
|
584
|
+
"eo.process.details.history.entry.type.SCOPE_ABORTONROLLBACK.title": "When resetting the process, the scope was aborted.",
|
|
585
|
+
"eo.process.details.history.entry.type.SCOPE_END.title": "The scope was ended.",
|
|
583
586
|
"eo.process.details.history.entry.type.SCOPE_RESUME.title": "The scope was resumed.",
|
|
584
|
-
"eo.process.details.history.entry.type.SCOPE_RESUME_ROLLBACK.title": "The scope was resumed after a rollback
|
|
585
|
-
"eo.process.details.history.entry.type.SCOPE_START.title": "The scope was
|
|
586
|
-
"eo.process.details.history.entry.type.SCOPE_SUBSCOPECOMPLETEDEVENT_END.title": "The script
|
|
587
|
-
"eo.process.details.history.entry.type.SCOPE_SUBSCOPECOMPLETEDEVENT_START.title": "The script
|
|
588
|
-
"eo.process.details.history.entry.type.SCOPE_SUBSCOPESTARTEVENT_END.title": "The script
|
|
589
|
-
"eo.process.details.history.entry.type.SCOPE_SUBSCOPESTARTEVENT_START.title": "The script
|
|
590
|
-
"eo.process.details.history.entry.type.SETACTIVITYPERFORMER_ADMIN.title": "The
|
|
591
|
-
"eo.process.details.history.entry.type.SETACTIVITYPERFORMER_DEADLINE.title": "The
|
|
592
|
-
"eo.process.details.history.entry.type.SETACTIVITYPERFORMER_DYNAMIC.title": "The
|
|
593
|
-
"eo.process.details.history.entry.type.SETACTIVITYPERFORMER_MODEL.title": "The
|
|
594
|
-
"eo.process.details.history.entry.type.SETACTIVITYPERFORMER_ROLLBACK.title": "The
|
|
587
|
+
"eo.process.details.history.entry.type.SCOPE_RESUME_ROLLBACK.title": "The scope of the process was resumed after a rollback.",
|
|
588
|
+
"eo.process.details.history.entry.type.SCOPE_START.title": "The scope was launched.",
|
|
589
|
+
"eo.process.details.history.entry.type.SCOPE_SUBSCOPECOMPLETEDEVENT_END.title": "The script for the 'SubscopeEnd' event was completed.",
|
|
590
|
+
"eo.process.details.history.entry.type.SCOPE_SUBSCOPECOMPLETEDEVENT_START.title": "The script for the 'SubscopeEnd' event was launched.",
|
|
591
|
+
"eo.process.details.history.entry.type.SCOPE_SUBSCOPESTARTEVENT_END.title": "The script for the 'SubscopeStart' event was completed.",
|
|
592
|
+
"eo.process.details.history.entry.type.SCOPE_SUBSCOPESTARTEVENT_START.title": "The script for the 'SubscopeStart' event was launched.",
|
|
593
|
+
"eo.process.details.history.entry.type.SETACTIVITYPERFORMER_ADMIN.title": "The recipients were determined by the administrator.",
|
|
594
|
+
"eo.process.details.history.entry.type.SETACTIVITYPERFORMER_DEADLINE.title": "The failure to meet the deadline led to a redetermination of the beneficiaries.",
|
|
595
|
+
"eo.process.details.history.entry.type.SETACTIVITYPERFORMER_DYNAMIC.title": "The recipients were determined using a script.",
|
|
596
|
+
"eo.process.details.history.entry.type.SETACTIVITYPERFORMER_MODEL.title": "The recipients were determined based on the process definition.",
|
|
597
|
+
"eo.process.details.history.entry.type.SETACTIVITYPERFORMER_ROLLBACK.title": "The recipients were redetermined because the process has been reset to an earlier execution time.",
|
|
595
598
|
"eo.process.details.history.entry.type.SUBPROCESS_COMPLETED.title": "A subprocess was completed.",
|
|
596
|
-
"eo.process.details.history.entry.type.SUBPROCESS_STARTED.title": "A subprocess was
|
|
597
|
-
"eo.process.details.history.entry.type.TRANSITION_EVENT.title": "The transition event was
|
|
598
|
-
"eo.process.details.history.entry.type.TRANSITION_EXPRESSION_END.title": "The script
|
|
599
|
-
"eo.process.details.history.entry.type.TRANSITION_EXPRESSION_START.title": "The script
|
|
600
|
-
"eo.process.details.history.entry.type.USERDEFINED.title": "
|
|
601
|
-
"eo.process.details.history.entry.type.WORKITEM_CANCELEVENT_END.title": "The script
|
|
602
|
-
"eo.process.details.history.entry.type.WORKITEM_CANCELEVENT_START.title": "The script
|
|
603
|
-
"eo.process.details.history.entry.type.WORKITEM_CANCEL_ADMIN.title": "The task was
|
|
604
|
-
"eo.process.details.history.entry.type.WORKITEM_CANCEL_DEADLINE.title": "The task was
|
|
605
|
-
"eo.process.details.history.entry.type.WORKITEM_CANCEL_SUBSTITUTE.title": "The task was
|
|
606
|
-
"eo.process.details.history.entry.type.WORKITEM_CANCEL_USER.title": "The task was
|
|
607
|
-
"eo.process.details.history.entry.type.WORKITEM_COMPLETE.title": "The task was
|
|
608
|
-
"eo.process.details.history.entry.type.WORKITEM_COMPLETE_DEADLINE.title": "The deadline
|
|
599
|
+
"eo.process.details.history.entry.type.SUBPROCESS_STARTED.title": "A subprocess was launched.",
|
|
600
|
+
"eo.process.details.history.entry.type.TRANSITION_EVENT.title": "The transition event was triggered.",
|
|
601
|
+
"eo.process.details.history.entry.type.TRANSITION_EXPRESSION_END.title": "The script for the 'TransitionCondition' event was completed.",
|
|
602
|
+
"eo.process.details.history.entry.type.TRANSITION_EXPRESSION_START.title": "The script for the 'TransitionExpression' event was launched.",
|
|
603
|
+
"eo.process.details.history.entry.type.USERDEFINED.title": "Individual history entry.",
|
|
604
|
+
"eo.process.details.history.entry.type.WORKITEM_CANCELEVENT_END.title": "The script for the 'WorkitemCanceled' event was completed.",
|
|
605
|
+
"eo.process.details.history.entry.type.WORKITEM_CANCELEVENT_START.title": "The script for the 'ActivityCancel' event is being executed.",
|
|
606
|
+
"eo.process.details.history.entry.type.WORKITEM_CANCEL_ADMIN.title": "The task was canceled by the administrator.",
|
|
607
|
+
"eo.process.details.history.entry.type.WORKITEM_CANCEL_DEADLINE.title": "The task was canceled due to a missed deadline.",
|
|
608
|
+
"eo.process.details.history.entry.type.WORKITEM_CANCEL_SUBSTITUTE.title": "The task was canceled by the substitute.",
|
|
609
|
+
"eo.process.details.history.entry.type.WORKITEM_CANCEL_USER.title": "The task was returned by the editor.",
|
|
610
|
+
"eo.process.details.history.entry.type.WORKITEM_COMPLETE.title": "The task was forwarded.",
|
|
611
|
+
"eo.process.details.history.entry.type.WORKITEM_COMPLETE_DEADLINE.title": "The deadline of the task has been reached.",
|
|
609
612
|
"eo.process.details.history.entry.type.WORKITEM_COMPLETE_SUBSTITUTE.title": "The task was forwarded by the substitute.",
|
|
610
|
-
"eo.process.details.history.entry.type.WORKITEM_PERSONALIZE.title": "The task was
|
|
611
|
-
"eo.process.details.history.entry.type.WORKITEM_PERSONALIZEEVENT_END.title": "The script
|
|
612
|
-
"eo.process.details.history.entry.type.WORKITEM_PERSONALIZEEVENT_START.title": "The script
|
|
613
|
-
"eo.process.details.history.entry.type.WORKITEM_PERSONALIZE_SUBSTITUTE.title": "The task was
|
|
614
|
-
"eo.process.details.history.entry.type.WORKITEM_SAVE.title": "The task was
|
|
615
|
-
"eo.process.details.history.entry.type.WORKITEM_SAVEEVENT_END.title": "The script
|
|
616
|
-
"eo.process.details.history.entry.type.WORKITEM_SAVEEVENT_START.title": "The script
|
|
613
|
+
"eo.process.details.history.entry.type.WORKITEM_PERSONALIZE.title": "The task was accepted by the editor.",
|
|
614
|
+
"eo.process.details.history.entry.type.WORKITEM_PERSONALIZEEVENT_END.title": "The script for the 'Personalization' event was completed.",
|
|
615
|
+
"eo.process.details.history.entry.type.WORKITEM_PERSONALIZEEVENT_START.title": "The script for the 'Personalization' event was launched.",
|
|
616
|
+
"eo.process.details.history.entry.type.WORKITEM_PERSONALIZE_SUBSTITUTE.title": "The task was accepted by the substitute.",
|
|
617
|
+
"eo.process.details.history.entry.type.WORKITEM_SAVE.title": "The task was filed by the editor.",
|
|
618
|
+
"eo.process.details.history.entry.type.WORKITEM_SAVEEVENT_END.title": "The script for the 'ActivitySave' event was completed.",
|
|
619
|
+
"eo.process.details.history.entry.type.WORKITEM_SAVEEVENT_START.title": "The script for the 'WorkitemSaved' event was launched.",
|
|
617
620
|
"eo.process.details.history.entry.type.WORKITEM_SAVE_SUBSTITUTE.title": "The task was saved by the substitute.",
|
|
618
621
|
"eo.bpm.activity.forward.error": "Forwarding error.",
|
|
619
622
|
"eo.process.personalize": "Accept task",
|