diff --git a/backend/src/main/resources/i18n/messages.properties b/backend/src/main/resources/i18n/messages.properties index 1c207ee38..7cadee855 100644 --- a/backend/src/main/resources/i18n/messages.properties +++ b/backend/src/main/resources/i18n/messages.properties @@ -384,6 +384,18 @@ label.email=Email label.role=Role label.delete=Delete? +label.metadata-resolver-history=Metadata resolver history +label.metadata-version-history=Metadata Version History +label.select-version=Select Version +label.version=Version +label.save-date=Save Date +label.changed-by=Changed By +label.actions=Actions +label.check-to-select=Check to select +label.current=Current +label.restore=Restore +label.compare-selected=Compare Selected + message.delete-user-title=Delete User? message.delete-user-body=You are requesting to delete a user. If you complete this process the user will be removed. This cannot be undone. Do you wish to continue? diff --git a/ui/src/app/metadata/version/component/history-list.component.html b/ui/src/app/metadata/version/component/history-list.component.html index 4ad46cf19..6fa941e6e 100644 --- a/ui/src/app/metadata/version/component/history-list.component.html +++ b/ui/src/app/metadata/version/component/history-list.component.html @@ -1,12 +1,14 @@ - + - - - - - + + + + + @@ -15,23 +17,23 @@
- +
Metadata Version HistoryMetadata Version History
Select VersionVersionSave DateChanged ByActions + Select Version + VersionSave DateChanged ByActions
Current (v{{ version.versionNumber }})Current (v{{ version.versionNumber }}) v{{ version.versionNumber }} {{ version.saveDate | date }} {{ version.changedBy }}
\ No newline at end of file diff --git a/ui/src/app/metadata/version/container/version-history.component.html b/ui/src/app/metadata/version/container/version-history.component.html index 9e245a9a0..099841308 100644 --- a/ui/src/app/metadata/version/container/version-history.component.html +++ b/ui/src/app/metadata/version/container/version-history.component.html @@ -6,7 +6,7 @@
- Metadata resolver history + Metadata resolver history
diff --git a/ui/src/app/metadata/version/version.module.ts b/ui/src/app/metadata/version/version.module.ts index c48f45682..2e3d36fb5 100644 --- a/ui/src/app/metadata/version/version.module.ts +++ b/ui/src/app/metadata/version/version.module.ts @@ -5,6 +5,7 @@ import { HistoryListComponent } from './component/history-list.component'; import { CommonModule } from '@angular/common'; import { VersionHistoryComponent } from './container/version-history.component'; import { HistoryService } from './service/history.service'; +import { I18nModule } from '../../i18n/i18n.module'; @NgModule({ declarations: [ @@ -13,7 +14,8 @@ import { HistoryService } from './service/history.service'; ], entryComponents: [], imports: [ - CommonModule + CommonModule, + I18nModule ], exports: [], providers: []