diff --git a/lib/core/about/about.component.html b/lib/core/about/about.component.html index eb8986bf5a..60753db1c8 100644 --- a/lib/core/about/about.component.html +++ b/lib/core/about/about.component.html @@ -1,49 +1,49 @@
-

Server settings

+

{{ 'ABOUT.SERVER_SETTINGS.TITLE' | translate }}

- The values below are taken from the AppConfigService + {{ 'ABOUT.SERVER_SETTINGS.DESCRIPTION' | translate }} -

Alfresco Process Services URL: {{ bpmHost }}

+

{{ 'ABOUT.SERVER_SETTINGS.PROCESS_SERVICE_HOST' | translate: { value: bpmHost } }}

-

Alfresco Content Services URL: {{ ecmHost }}

+

{{ 'ABOUT.SERVER_SETTINGS.PROCESS_SERVICE_HOST' | translate: { value: ecmHost } }}

Product Versions

-

BPM

- {{ bpmVersion.edition }} +

{{ 'ABOUT.VERSIONS.PROCESS_SERVICE' | translate }}

+ {{ bpmVersion.edition }}

- {{ bpmVersion.majorVersion }}.{{ bpmVersion.minorVersion }}.{{ bpmVersion.revisionVersion }} + {{ bpmVersion.majorVersion }}.{{ bpmVersion.minorVersion }}.{{ bpmVersion.revisionVersion }}
-

ECM

- {{ ecmVersion.edition }} +

{{ 'ABOUT.VERSIONS.CONTENT_SERVICE' | translate }}

+ {{ ecmVersion.edition }}

- {{ ecmVersion.version.display }} + {{ ecmVersion.version.display }}

-

License

+

{{ 'ABOUT.VERSIONS.LABELS.LICENSE' | translate }}

-

Status

+

{{ 'ABOUT.VERSIONS.LABELS.STATUS' | translate }}

-

Modules

+

{{ 'ABOUT.VERSIONS.LABELS.MODULES' | translate }}

-

Source code

- You are running the project based on the following commit: +

{{ 'ABOUT.SOURCE_CODE.TITLE' | translate }}

+ {{ 'ABOUT.SOURCE_CODE.DESCRIPTION' | translate }}
{{githubUrlCommitAlpha}}
-

Packages

- Current project is using the following ADF libraries: +

{{ 'ABOUT.PACKAGES.TITLE' | translate }}

+ {{ 'ABOUT.PACKAGES.DESCRIPTION' | translate }}
diff --git a/lib/core/i18n/en.json b/lib/core/i18n/en.json index 6f7b1d9a43..7c81415a8c 100644 --- a/lib/core/i18n/en.json +++ b/lib/core/i18n/en.json @@ -327,5 +327,32 @@ "TEXT": "Back to home" } } + }, + "ABOUT": { + "SERVER_SETTINGS": { + "TITLE": "Server settings", + "DESCRIPTION": "The values below are taken from the AppConfigService", + "CONTENT_SERVICE_HOST": "Alfresco Content Services URL: {{ value }}", + "PROCESS_SERVICE_HOST": "Alfresco Process Services URL: {{ value }}" + }, + "VERSIONS": { + "CONTENT_SERVICE": "ECM", + "PROCESS_SERVICE": "BPM", + "LABELS": { + "EDITION": "Edition", + "VERSION": "Version", + "LICENSE": "License", + "STATUS": "Status", + "MODULES": "Modules" + } + }, + "SOURCE_CODE": { + "TITLE": "Source code", + "DESCRIPTION": "You are running the project based on the following commit:" + }, + "PACKAGES": { + "TITLE": "Packages", + "DESCRIPTION": "Current project is using the following ADF libraries:" + } } }