diff --git a/docs/README.md b/docs/README.md index 2282cd71ed..3abe069214 100644 --- a/docs/README.md +++ b/docs/README.md @@ -113,6 +113,7 @@ A collection of Angular components for generic use. | [Json Cell component](core/components/json-cell.component.md) | Shows a JSON-formatted value inside a datatable component. | [Source](../lib/core/src/lib/datatable/components/json-cell/json-cell.component.ts) | | [Language Menu component](core/components/language-menu.component.md) | Displays all the languages that are present in "app.config.json" and the default (EN). | [Source](../lib/core/src/lib/language-menu/language-menu.component.ts) | | [Login Dialog Panel component](core/components/login-dialog-panel.component.md) | Shows and manages a login dialog. | [Source](../lib/core/src/lib/login/components/login-dialog-panel.component.ts) | +| [Login Dialog component](core/components/login-dialog.component.md) | Allows a user to perform a login via a dialog. | [Source](../lib/core/src/lib/login/components/login-dialog.component.ts) | | [Login component](core/components/login.component.md) | Authenticates to Alfresco Content Services and Alfresco Process Services. | [Source](../lib/core/src/lib/login/components/login.component.ts) | | [Notification History component](core/components/notification-history.component.md) ![Experimental](docassets/images/ExperimentalIcon.png) | This component is in the current status just an experimental component. The main purpose of the Notification history component is list all the notification received in the current session. They will disappear from the list after the refresh. | [Source](../lib/core/src/lib/notifications/components/notification-history.component.ts) | | | [Pagination Component](core/components/pagination.component.md) | Adds pagination to the component it is used with. | [Source](../lib/core/src/lib/pagination/pagination.component.ts) | @@ -476,6 +477,7 @@ for more information about installing and using the source code. | [Edit Task Filter Cloud component](process-services-cloud/components/edit-task-filter-cloud.component.md) ![Experimental](docassets/images/ExperimentalIcon.png) | Edits task filter details. | [Source](../lib/process-services-cloud/src/lib/task/task-filters/components/edit-task-filters/edit-task-filter-cloud.component.ts) | | [Form cloud custom outcomes component](process-services-cloud/components/form-cloud-custom-outcome.component.md) | Supplies custom outcome buttons to be included in Form cloud component. | [Source](../lib/process-services-cloud/src/lib/form/components/form-cloud-custom-outcomes.component.ts) | | [Form cloud component](process-services-cloud/components/form-cloud.component.md) | Shows a form from Process Services. | [Source](../lib/process-services-cloud/src/lib/form/components/form-cloud.component.ts) | +| [Form Definition Selector Cloud](process-services-cloud/components/form-definition-selector-cloud.component.md) | Allows one form to be selected from a dropdown list. For forms to be displayed in this component they will need to be compatible with standAlone tasks. | [Source](../lib/process-services-cloud/src/lib/form/components/form-definition-selector-cloud.component.ts) | | [Group Cloud component](process-services-cloud/components/group-cloud.component.md) ![Experimental](docassets/images/ExperimentalIcon.png) | Searches Groups. | [Source](../lib/process-services-cloud/src/lib/group/components/group-cloud.component.ts) | | [](process-services-cloud/components/people-cloud.component.md) | Title: People Cloud Component | | diff --git a/docs/core/components/login-dialog-panel.component.md b/docs/core/components/login-dialog-panel.component.md index 27b7b22089..2f2790043a 100644 --- a/docs/core/components/login-dialog-panel.component.md +++ b/docs/core/components/login-dialog-panel.component.md @@ -17,3 +17,11 @@ Shows and manages a login dialog. | ---- | ---- | ----------- | | success | [`EventEmitter`](https://angular.io/api/core/EventEmitter)`<`[`LoginSuccessEvent`](../../../lib/core/src/lib/login/models/login-success.event.ts)`>` | Emitted when the login succeeds. | +## Details + +This component has similar features to the [Login Dialog component](login-dialog.component.md) +but it also creates and manages the dialog for you. + +## See also + +- [Login Dialog component](login-dialog.component.md) diff --git a/docs/core/components/login-dialog.component.md b/docs/core/components/login-dialog.component.md index b7b416eddf..98126589d8 100644 --- a/docs/core/components/login-dialog.component.md +++ b/docs/core/components/login-dialog.component.md @@ -7,8 +7,6 @@ Last reviewed: 2018-10-02 # [Login Dialog component](../../../lib/core/src/lib/login/components/login-dialog.component.ts "Defined in login-dialog.component.ts") -This component is deprecated and will removed because it's unused. - Allows a user to perform a login via a dialog. ## Details diff --git a/docs/process-services-cloud/components/form-definition-selector-cloud.component.md b/docs/process-services-cloud/components/form-definition-selector-cloud.component.md index 1cfb5a3405..d75f8afe7a 100644 --- a/docs/process-services-cloud/components/form-definition-selector-cloud.component.md +++ b/docs/process-services-cloud/components/form-definition-selector-cloud.component.md @@ -8,9 +8,6 @@ Status: Active Allows one form to be selected from a dropdown list. For forms to be displayed in this component they will need to be compatible with standAlone tasks. -This component will be removed because it's unused. - - ## Basic Usage ```html diff --git a/docs/versionIndex.md b/docs/versionIndex.md index 1c3c471208..dcfb75a78c 100644 --- a/docs/versionIndex.md +++ b/docs/versionIndex.md @@ -395,6 +395,7 @@ backend services have been tested with each released version of ADF. - [Login dialog panel component](core/components/login-dialog-panel.component.md) +- [Login dialog component](core/components/login-dialog.component.md) - [Login dialog service](core/services/login-dialog.service.md) diff --git a/lib/core/src/lib/i18n/ar.json b/lib/core/src/lib/i18n/ar.json index b69ba7ad1d..c3e40b415d 100755 --- a/lib/core/src/lib/i18n/ar.json +++ b/lib/core/src/lib/i18n/ar.json @@ -285,6 +285,11 @@ "ACTION": { "HELP": "بحاجة لمساعدة؟", "REGISTER": "تسجيل" + }, + "DIALOG": { + "CANCEL": "إلغاء", + "CHOOSE": "اختيار", + "LOGIN": "تسجيل دخول" } }, "ADF-DATATABLE": { diff --git a/lib/core/src/lib/i18n/cs.json b/lib/core/src/lib/i18n/cs.json index 43a4bc6727..8eb7e2f0d4 100755 --- a/lib/core/src/lib/i18n/cs.json +++ b/lib/core/src/lib/i18n/cs.json @@ -285,6 +285,11 @@ "ACTION": { "HELP": "Potřebujete pomoc?", "REGISTER": "Zaregistrovat" + }, + "DIALOG": { + "CANCEL": "Zrušit", + "CHOOSE": "Vybrat", + "LOGIN": "Přihlásit se" } }, "ADF-DATATABLE": { diff --git a/lib/core/src/lib/i18n/da.json b/lib/core/src/lib/i18n/da.json index beb120aa85..89f8199e7e 100755 --- a/lib/core/src/lib/i18n/da.json +++ b/lib/core/src/lib/i18n/da.json @@ -285,6 +285,11 @@ "ACTION": { "HELP": "Har du brug for hjælp?", "REGISTER": "Tilmeld" + }, + "DIALOG": { + "CANCEL": "Annuller", + "CHOOSE": "Vælg", + "LOGIN": "Log ind" } }, "ADF-DATATABLE": { diff --git a/lib/core/src/lib/i18n/de.json b/lib/core/src/lib/i18n/de.json index 4fe5de40c0..bf35f70295 100644 --- a/lib/core/src/lib/i18n/de.json +++ b/lib/core/src/lib/i18n/de.json @@ -364,6 +364,11 @@ "ACTION": { "HELP": "Brauchen Sie Hilfe?", "REGISTER": "Registrieren" + }, + "DIALOG": { + "CANCEL": "Abbrechen", + "CHOOSE": "Auswählen", + "LOGIN": "Anmelden" } }, "ADF-DATATABLE": { diff --git a/lib/core/src/lib/i18n/en.json b/lib/core/src/lib/i18n/en.json index 2d8251dcf7..aaba8782e1 100644 --- a/lib/core/src/lib/i18n/en.json +++ b/lib/core/src/lib/i18n/en.json @@ -364,6 +364,11 @@ "ACTION": { "HELP": "NEED HELP?", "REGISTER": "REGISTER" + }, + "DIALOG": { + "CANCEL": "Cancel", + "CHOOSE": "Choose", + "LOGIN": "Sign in" } }, "ADF-DATATABLE": { diff --git a/lib/core/src/lib/i18n/es.json b/lib/core/src/lib/i18n/es.json index dbbba076b7..3a6c7e5028 100644 --- a/lib/core/src/lib/i18n/es.json +++ b/lib/core/src/lib/i18n/es.json @@ -364,6 +364,11 @@ "ACTION": { "HELP": "¿Necesita ayuda?", "REGISTER": "Registrarse" + }, + "DIALOG": { + "CANCEL": "Cancelar", + "CHOOSE": "Elegir", + "LOGIN": "Iniciar sesión" } }, "ADF-DATATABLE": { diff --git a/lib/core/src/lib/i18n/fi.json b/lib/core/src/lib/i18n/fi.json index eb17f0fe25..cb92a2c677 100755 --- a/lib/core/src/lib/i18n/fi.json +++ b/lib/core/src/lib/i18n/fi.json @@ -285,6 +285,11 @@ "ACTION": { "HELP": "Tarvitsetko apua?", "REGISTER": "Rekisteröidy" + }, + "DIALOG": { + "CANCEL": "Peruuta", + "CHOOSE": "Valitse", + "LOGIN": "Kirjaudu sisään" } }, "ADF-DATATABLE": { diff --git a/lib/core/src/lib/i18n/fr.json b/lib/core/src/lib/i18n/fr.json index 8605f7d20c..4f42f7f534 100644 --- a/lib/core/src/lib/i18n/fr.json +++ b/lib/core/src/lib/i18n/fr.json @@ -364,6 +364,11 @@ "ACTION": { "HELP": "Besoin d'aide ?", "REGISTER": "S'inscrire" + }, + "DIALOG": { + "CANCEL": "Annuler", + "CHOOSE": "Choisir", + "LOGIN": "Connexion" } }, "ADF-DATATABLE": { diff --git a/lib/core/src/lib/i18n/it.json b/lib/core/src/lib/i18n/it.json index f49d2c3c01..4150d80b1e 100644 --- a/lib/core/src/lib/i18n/it.json +++ b/lib/core/src/lib/i18n/it.json @@ -364,6 +364,11 @@ "ACTION": { "HELP": "Hai bisogno di aiuto?", "REGISTER": "Registrati" + }, + "DIALOG": { + "CANCEL": "Annulla", + "CHOOSE": "Scegli", + "LOGIN": "Accedi" } }, "ADF-DATATABLE": { diff --git a/lib/core/src/lib/i18n/ja.json b/lib/core/src/lib/i18n/ja.json index 0e4032e141..e26d30d314 100755 --- a/lib/core/src/lib/i18n/ja.json +++ b/lib/core/src/lib/i18n/ja.json @@ -285,6 +285,11 @@ "ACTION": { "HELP": "ヘルプが必要ですか?", "REGISTER": "登録" + }, + "DIALOG": { + "CANCEL": "キャンセル", + "CHOOSE": "選択", + "LOGIN": "サインイン" } }, "ADF-DATATABLE": { diff --git a/lib/core/src/lib/i18n/nb.json b/lib/core/src/lib/i18n/nb.json index eaf62089ae..2614aff03b 100755 --- a/lib/core/src/lib/i18n/nb.json +++ b/lib/core/src/lib/i18n/nb.json @@ -285,6 +285,11 @@ "ACTION": { "HELP": "Trenger hjelp?", "REGISTER": "Registrer" + }, + "DIALOG": { + "CANCEL": "Avbryt", + "CHOOSE": "Velg", + "LOGIN": "Logg på" } }, "ADF-DATATABLE": { diff --git a/lib/core/src/lib/i18n/nl.json b/lib/core/src/lib/i18n/nl.json index d5b445cb7f..7549b1d8f6 100755 --- a/lib/core/src/lib/i18n/nl.json +++ b/lib/core/src/lib/i18n/nl.json @@ -285,6 +285,11 @@ "ACTION": { "HELP": "Hulp nodig?", "REGISTER": "Registreren" + }, + "DIALOG": { + "CANCEL": "Annuleren", + "CHOOSE": "Kiezen", + "LOGIN": "Aanmelden" } }, "ADF-DATATABLE": { diff --git a/lib/core/src/lib/i18n/pt-BR.json b/lib/core/src/lib/i18n/pt-BR.json index 443edb7b46..a4d24d67a4 100755 --- a/lib/core/src/lib/i18n/pt-BR.json +++ b/lib/core/src/lib/i18n/pt-BR.json @@ -285,6 +285,11 @@ "ACTION": { "HELP": "Precisa de ajuda?", "REGISTER": "Registrar" + }, + "DIALOG": { + "CANCEL": "Cancelar", + "CHOOSE": "Escolher", + "LOGIN": "Entrar" } }, "ADF-DATATABLE": { diff --git a/lib/core/src/lib/i18n/pt.json b/lib/core/src/lib/i18n/pt.json index 04fde7c008..bb40bf73f3 100644 --- a/lib/core/src/lib/i18n/pt.json +++ b/lib/core/src/lib/i18n/pt.json @@ -364,6 +364,11 @@ "ACTION": { "HELP": "PRECISA DE AJUDA?", "REGISTER": "REGISTAR" + }, + "DIALOG": { + "CANCEL": "Cancelar", + "CHOOSE": "Escolher", + "LOGIN": "Iniciar sessão" } }, "ADF-DATATABLE": { diff --git a/lib/core/src/lib/i18n/ru.json b/lib/core/src/lib/i18n/ru.json index 7e5400d5d3..7a39467f1e 100755 --- a/lib/core/src/lib/i18n/ru.json +++ b/lib/core/src/lib/i18n/ru.json @@ -285,6 +285,11 @@ "ACTION": { "HELP": "Справка?", "REGISTER": "Регистрация" + }, + "DIALOG": { + "CANCEL": "Отмена", + "CHOOSE": "Выбрать", + "LOGIN": "Войти" } }, "ADF-DATATABLE": { diff --git a/lib/core/src/lib/i18n/sv.json b/lib/core/src/lib/i18n/sv.json index 25801b367f..6354167e15 100755 --- a/lib/core/src/lib/i18n/sv.json +++ b/lib/core/src/lib/i18n/sv.json @@ -285,6 +285,11 @@ "ACTION": { "HELP": "Behöver du hjälp?", "REGISTER": "Registrera" + }, + "DIALOG": { + "CANCEL": "Avbryt", + "CHOOSE": "Välj", + "LOGIN": "Logga in" } }, "ADF-DATATABLE": { diff --git a/lib/core/src/lib/i18n/zh-CN.json b/lib/core/src/lib/i18n/zh-CN.json index ef8e436f71..4a24c399fe 100755 --- a/lib/core/src/lib/i18n/zh-CN.json +++ b/lib/core/src/lib/i18n/zh-CN.json @@ -285,6 +285,11 @@ "ACTION": { "HELP": "是否需要帮助?", "REGISTER": "注册" + }, + "DIALOG": { + "CANCEL": "取消", + "CHOOSE": "选择", + "LOGIN": "登录" } }, "ADF-DATATABLE": { diff --git a/lib/core/src/lib/login/components/login-dialog/login-dialog.component.ts b/lib/core/src/lib/login/components/login-dialog/login-dialog.component.ts index 705466c14d..bd152e9be7 100644 --- a/lib/core/src/lib/login/components/login-dialog/login-dialog.component.ts +++ b/lib/core/src/lib/login/components/login-dialog/login-dialog.component.ts @@ -22,7 +22,7 @@ import { TranslatePipe } from '@ngx-translate/core'; import { LoginDialogPanelComponent } from '../login-dialog-panel/login-dialog-panel.component'; import { LoginDialogComponentData } from './login-dialog-component-data.interface'; -/** @deprecated this component will be removed because it's unused */ +/** @deprecated this component will be removed because it's unused https://hyland.atlassian.net/browse/ACS-10178 */ @Component({ selector: 'adf-login-dialog', templateUrl: './login-dialog.component.html', diff --git a/lib/process-services-cloud/src/lib/app/components/app-details-cloud/app-details-cloud.component.ts b/lib/process-services-cloud/src/lib/app/components/app-details-cloud/app-details-cloud.component.ts index a77bcd1a37..5b0eed6abb 100644 --- a/lib/process-services-cloud/src/lib/app/components/app-details-cloud/app-details-cloud.component.ts +++ b/lib/process-services-cloud/src/lib/app/components/app-details-cloud/app-details-cloud.component.ts @@ -18,11 +18,10 @@ import { Component, EventEmitter, Input, Output, ViewEncapsulation } from '@angular/core'; import { ApplicationInstanceModel, DEFAULT_APP_INSTANCE_ICON, DEFAULT_APP_INSTANCE_THEME } from '../../models/application-instance.model'; import { CommonModule } from '@angular/common'; -import { TranslatePipe } from '@ngx-translate/core'; import { MatIconModule } from '@angular/material/icon'; import { MatCardModule } from '@angular/material/card'; -/** @deprecated this component will be removed because it's unused */ +/** @deprecated this component will be removed because it's unused https://hyland.atlassian.net/browse/ACS-10178 */ @Component({ selector: 'adf-cloud-app-details', imports: [CommonModule, MatIconModule, MatCardModule], diff --git a/lib/process-services-cloud/src/lib/app/components/app-list-cloud/app-list-cloud.component.ts b/lib/process-services-cloud/src/lib/app/components/app-list-cloud/app-list-cloud.component.ts index 801bf8770c..ca7711a8e7 100644 --- a/lib/process-services-cloud/src/lib/app/components/app-list-cloud/app-list-cloud.component.ts +++ b/lib/process-services-cloud/src/lib/app/components/app-list-cloud/app-list-cloud.component.ts @@ -33,7 +33,7 @@ export const LAYOUT_LIST: string = 'LIST'; export const LAYOUT_GRID: string = 'GRID'; export const DEPLOYED_STATUS: string = 'DEPLOYED'; -/** @deprecated this component will be removed because it's unused */ +/** @deprecated this component will be removed because it's unused https://hyland.atlassian.net/browse/ACS-10178 */ @Component({ selector: 'adf-cloud-app-list', imports: [ diff --git a/lib/process-services-cloud/src/lib/form/components/form-definition-selector-cloud.component.ts b/lib/process-services-cloud/src/lib/form/components/form-definition-selector-cloud.component.ts index 77e91c0afe..81991a37a2 100644 --- a/lib/process-services-cloud/src/lib/form/components/form-definition-selector-cloud.component.ts +++ b/lib/process-services-cloud/src/lib/form/components/form-definition-selector-cloud.component.ts @@ -23,7 +23,7 @@ import { FormRepresentation } from '../../services/form-fields.interfaces'; import { CommonModule } from '@angular/common'; import { TranslatePipe } from '@ngx-translate/core'; -/** @deprecated this component will be removed because it's unused */ +/** @deprecated this component will be removed because it's unused https://hyland.atlassian.net/browse/ACS-10178 */ @Component({ selector: 'adf-cloud-form-definition-selector', imports: [CommonModule, TranslatePipe, MatSelectModule], diff --git a/lib/process-services-cloud/src/lib/i18n/ar.json b/lib/process-services-cloud/src/lib/i18n/ar.json index 22130027a3..0f89a7cfc5 100644 --- a/lib/process-services-cloud/src/lib/i18n/ar.json +++ b/lib/process-services-cloud/src/lib/i18n/ar.json @@ -53,6 +53,16 @@ } }, "ADF_CLOUD_TASK_LIST": { + "APPS": { + "NO_APPS": { + "TITLE": "لم يتم العثور على تطبيقات", + "SUBTITLE": "أنشئ تطبيقًا جديدًا تريد العثور عليه بسهولة لاحقًا" + }, + "ERROR": { + "TITLE": "حدث خطأ", + "SUBTITLE": "تأكد أن لديك الإذن بالوصول إلى التطبيق" + } + }, "START_TASK": { "FORM": { "TITLE": "بدء مهمة", diff --git a/lib/process-services-cloud/src/lib/i18n/cs.json b/lib/process-services-cloud/src/lib/i18n/cs.json index 3ee78b45cd..0019514d2c 100644 --- a/lib/process-services-cloud/src/lib/i18n/cs.json +++ b/lib/process-services-cloud/src/lib/i18n/cs.json @@ -53,6 +53,16 @@ } }, "ADF_CLOUD_TASK_LIST": { + "APPS": { + "NO_APPS": { + "TITLE": "Nenalezeny žádné aplikace", + "SUBTITLE": "Pro lepší přehlednost vytvořte novou aplikaci" + }, + "ERROR": { + "TITLE": "Došlo k chybě", + "SUBTITLE": "Ověřte svá oprávnění pro přístup k aplikacím" + } + }, "START_TASK": { "FORM": { "TITLE": "Zahájit úkol", diff --git a/lib/process-services-cloud/src/lib/i18n/da.json b/lib/process-services-cloud/src/lib/i18n/da.json index 81ca2f84fe..6d1a0ff4df 100644 --- a/lib/process-services-cloud/src/lib/i18n/da.json +++ b/lib/process-services-cloud/src/lib/i18n/da.json @@ -53,6 +53,16 @@ } }, "ADF_CLOUD_TASK_LIST": { + "APPS": { + "NO_APPS": { + "TITLE": "Der blev ikke fundet nogen programmer", + "SUBTITLE": "Opret et nyt program, som skal være nemt at finde senere" + }, + "ERROR": { + "TITLE": "Der opstod en fejl", + "SUBTITLE": "Kontrollér, at du har adgangstilladelse til disse apps" + } + }, "START_TASK": { "FORM": { "TITLE": "Start opgave", diff --git a/lib/process-services-cloud/src/lib/i18n/de.json b/lib/process-services-cloud/src/lib/i18n/de.json index 0de9a2d47a..775fa01534 100644 --- a/lib/process-services-cloud/src/lib/i18n/de.json +++ b/lib/process-services-cloud/src/lib/i18n/de.json @@ -53,6 +53,16 @@ } }, "ADF_CLOUD_TASK_LIST": { + "APPS": { + "NO_APPS": { + "TITLE": "Keine Anwendungen gefunden", + "SUBTITLE": "Erstellen Sie eine neue Anwendung, die sich später leicht wiederfinden lässt" + }, + "ERROR": { + "TITLE": "Es ist ein Fehler aufgetreten", + "SUBTITLE": "Überprüfen Sie, ob Sie zum Zugriff auf die Anwendungen berechtigt sind" + } + }, "START_TASK": { "FORM": { "TITLE": "Aufgabe starten", diff --git a/lib/process-services-cloud/src/lib/i18n/en.json b/lib/process-services-cloud/src/lib/i18n/en.json index b36a4f7c1e..5bce112575 100644 --- a/lib/process-services-cloud/src/lib/i18n/en.json +++ b/lib/process-services-cloud/src/lib/i18n/en.json @@ -53,6 +53,16 @@ } }, "ADF_CLOUD_TASK_LIST": { + "APPS": { + "NO_APPS": { + "TITLE": "No Applications Found", + "SUBTITLE": "Create a new application that you want to easily find later" + }, + "ERROR": { + "TITLE": "There was an error", + "SUBTITLE": "Check you have permission to access the apps" + } + }, "START_TASK": { "FORM": { "TITLE": "Start Task", diff --git a/lib/process-services-cloud/src/lib/i18n/es.json b/lib/process-services-cloud/src/lib/i18n/es.json index d4d80532f9..62a1d25ddb 100644 --- a/lib/process-services-cloud/src/lib/i18n/es.json +++ b/lib/process-services-cloud/src/lib/i18n/es.json @@ -53,6 +53,16 @@ } }, "ADF_CLOUD_TASK_LIST": { + "APPS": { + "NO_APPS": { + "TITLE": "No se han encontrado aplicaciones", + "SUBTITLE": "Cree una nueva aplicación que desee encontrar fácilmente después" + }, + "ERROR": { + "TITLE": "Se ha producido un error", + "SUBTITLE": "Compruebe que dispone de permiso de acceso a las aplicaciones" + } + }, "START_TASK": { "FORM": { "TITLE": "Iniciar tarea", diff --git a/lib/process-services-cloud/src/lib/i18n/fi.json b/lib/process-services-cloud/src/lib/i18n/fi.json index 88607c5d3e..32d610bd47 100644 --- a/lib/process-services-cloud/src/lib/i18n/fi.json +++ b/lib/process-services-cloud/src/lib/i18n/fi.json @@ -53,6 +53,16 @@ } }, "ADF_CLOUD_TASK_LIST": { + "APPS": { + "NO_APPS": { + "TITLE": "Yhtään sovellusta ei löydy", + "SUBTITLE": "Luo uusi sovellus, jonka löydät helposti myöhemmin" + }, + "ERROR": { + "TITLE": "Tapahtui virhe", + "SUBTITLE": "Tarkista, että sinulla on oikeus käyttää sovelluksia" + } + }, "START_TASK": { "FORM": { "TITLE": "Aloita tehtävä", diff --git a/lib/process-services-cloud/src/lib/i18n/fr.json b/lib/process-services-cloud/src/lib/i18n/fr.json index f0f721be41..9ad69f0451 100644 --- a/lib/process-services-cloud/src/lib/i18n/fr.json +++ b/lib/process-services-cloud/src/lib/i18n/fr.json @@ -53,6 +53,16 @@ } }, "ADF_CLOUD_TASK_LIST": { + "APPS": { + "NO_APPS": { + "TITLE": "Aucune application trouvée", + "SUBTITLE": "Créer une nouvelle application à laquelle vous pourrez accéder facilement par la suite" + }, + "ERROR": { + "TITLE": "Une erreur est survenue", + "SUBTITLE": "Vérifiez que vous avez les droits d'accès aux applications" + } + }, "START_TASK": { "FORM": { "TITLE": "Démarrer la tâche", diff --git a/lib/process-services-cloud/src/lib/i18n/it.json b/lib/process-services-cloud/src/lib/i18n/it.json index 93170bd595..2ba64553f4 100644 --- a/lib/process-services-cloud/src/lib/i18n/it.json +++ b/lib/process-services-cloud/src/lib/i18n/it.json @@ -53,6 +53,16 @@ } }, "ADF_CLOUD_TASK_LIST": { + "APPS": { + "NO_APPS": { + "TITLE": "Nessuna applicazione trovata", + "SUBTITLE": "Creare una nuova applicazione per trovarla facilmente più tardi" + }, + "ERROR": { + "TITLE": "Si è verificato un errore", + "SUBTITLE": "Verificare di disporre dell'autorizzazione per accedere alle app" + } + }, "START_TASK": { "FORM": { "TITLE": "Avvia compito", diff --git a/lib/process-services-cloud/src/lib/i18n/ja.json b/lib/process-services-cloud/src/lib/i18n/ja.json index 222907b637..09e5c48910 100644 --- a/lib/process-services-cloud/src/lib/i18n/ja.json +++ b/lib/process-services-cloud/src/lib/i18n/ja.json @@ -53,6 +53,16 @@ } }, "ADF_CLOUD_TASK_LIST": { + "APPS": { + "NO_APPS": { + "TITLE": "アプリケーションが見つかりません", + "SUBTITLE": "後で簡単に見つけられるよう、新しいアプリケーションを作成してください" + }, + "ERROR": { + "TITLE": "エラーが発生しました", + "SUBTITLE": "アプリケーションにアクセスする権限があることを確認してください" + } + }, "START_TASK": { "FORM": { "TITLE": "タスクの開始", diff --git a/lib/process-services-cloud/src/lib/i18n/nb.json b/lib/process-services-cloud/src/lib/i18n/nb.json index b5d03f29af..e4430119cd 100644 --- a/lib/process-services-cloud/src/lib/i18n/nb.json +++ b/lib/process-services-cloud/src/lib/i18n/nb.json @@ -53,6 +53,16 @@ } }, "ADF_CLOUD_TASK_LIST": { + "APPS": { + "NO_APPS": { + "TITLE": "Ingen applikasjoner funnet", + "SUBTITLE": "Opprett en ny applikasjon som er lett å finne senere" + }, + "ERROR": { + "TITLE": "Det oppstod en feil", + "SUBTITLE": "Sjekk at du har tillatelse til å gå inn i appene" + } + }, "START_TASK": { "FORM": { "TITLE": "Start oppgave", diff --git a/lib/process-services-cloud/src/lib/i18n/nl.json b/lib/process-services-cloud/src/lib/i18n/nl.json index 153501c19c..3dfa623a7c 100644 --- a/lib/process-services-cloud/src/lib/i18n/nl.json +++ b/lib/process-services-cloud/src/lib/i18n/nl.json @@ -53,6 +53,16 @@ } }, "ADF_CLOUD_TASK_LIST": { + "APPS": { + "NO_APPS": { + "TITLE": "Geen toepassingen gevonden", + "SUBTITLE": "Maak een nieuwe toepassing die u later gemakkelijk wilt kunnen vinden" + }, + "ERROR": { + "TITLE": "Er is een fout opgetreden", + "SUBTITLE": "Controleer of u rechten hebt voor toegang tot de apps" + } + }, "START_TASK": { "FORM": { "TITLE": "Taak starten", diff --git a/lib/process-services-cloud/src/lib/i18n/pl.json b/lib/process-services-cloud/src/lib/i18n/pl.json index 5d168b7309..13e0256aea 100644 --- a/lib/process-services-cloud/src/lib/i18n/pl.json +++ b/lib/process-services-cloud/src/lib/i18n/pl.json @@ -53,6 +53,16 @@ } }, "ADF_CLOUD_TASK_LIST": { + "APPS": { + "NO_APPS": { + "TITLE": "Nie znaleziono aplikacji.", + "SUBTITLE": "Utwórz nową aplikację, którą później będzie łatwo znaleźć." + }, + "ERROR": { + "TITLE": "Wystąpił błąd", + "SUBTITLE": "Sprawdź, czy masz uprawnienie dostępu do aplikacji" + } + }, "START_TASK": { "FORM": { "TITLE": "Rozpocznij zadanie", diff --git a/lib/process-services-cloud/src/lib/i18n/pt-BR.json b/lib/process-services-cloud/src/lib/i18n/pt-BR.json index c532c19d04..975ba52fe4 100644 --- a/lib/process-services-cloud/src/lib/i18n/pt-BR.json +++ b/lib/process-services-cloud/src/lib/i18n/pt-BR.json @@ -53,6 +53,16 @@ } }, "ADF_CLOUD_TASK_LIST": { + "APPS": { + "NO_APPS": { + "TITLE": "Nenhum Aplicativo Encontrado", + "SUBTITLE": "Crie um aplicativo que você possa identificar com facilidade depois" + }, + "ERROR": { + "TITLE": "Houve um erro", + "SUBTITLE": "Verifique se você tem permissão para acessar os aplicativos" + } + }, "START_TASK": { "FORM": { "TITLE": "Iniciar tarefa", diff --git a/lib/process-services-cloud/src/lib/i18n/pt.json b/lib/process-services-cloud/src/lib/i18n/pt.json index e0d59fb79a..73b61ba6c4 100644 --- a/lib/process-services-cloud/src/lib/i18n/pt.json +++ b/lib/process-services-cloud/src/lib/i18n/pt.json @@ -53,6 +53,16 @@ } }, "ADF_CLOUD_TASK_LIST": { + "APPS": { + "NO_APPS": { + "TITLE": "Não foram encontradas aplicaçõe", + "SUBTITLE": "Crie uma nova aplicação que pretenda encontrar facilmente mais tarde" + }, + "ERROR": { + "TITLE": "Ocorreu um erro", + "SUBTITLE": "Verifique se tem permissão para aceder às aplicações" + } + }, "START_TASK": { "FORM": { "TITLE": "Iniciar tarefa", diff --git a/lib/process-services-cloud/src/lib/i18n/ru.json b/lib/process-services-cloud/src/lib/i18n/ru.json index b537502f7a..13a971f025 100644 --- a/lib/process-services-cloud/src/lib/i18n/ru.json +++ b/lib/process-services-cloud/src/lib/i18n/ru.json @@ -53,6 +53,16 @@ } }, "ADF_CLOUD_TASK_LIST": { + "APPS": { + "NO_APPS": { + "TITLE": "Приложения не найдены", + "SUBTITLE": "Создайте новое приложение, которое вы сможете легко найти позже" + }, + "ERROR": { + "TITLE": "Произошла ошибка", + "SUBTITLE": "Убедитесь, что у вас есть разрешение на доступ к приложениям" + } + }, "START_TASK": { "FORM": { "TITLE": "Начать задачу", diff --git a/lib/process-services-cloud/src/lib/i18n/sv.json b/lib/process-services-cloud/src/lib/i18n/sv.json index 592713dd14..8b1e9d78cf 100644 --- a/lib/process-services-cloud/src/lib/i18n/sv.json +++ b/lib/process-services-cloud/src/lib/i18n/sv.json @@ -53,6 +53,16 @@ } }, "ADF_CLOUD_TASK_LIST": { + "APPS": { + "NO_APPS": { + "TITLE": "Inga program hittades", + "SUBTITLE": "Skapa ett nytt program som du enkelt hittar senare" + }, + "ERROR": { + "TITLE": "Ett fel uppstod", + "SUBTITLE": "Kontrollera att du har behörighet att öppna programmen" + } + }, "START_TASK": { "FORM": { "TITLE": "Starta uppgift", diff --git a/lib/process-services-cloud/src/lib/i18n/zh-CN.json b/lib/process-services-cloud/src/lib/i18n/zh-CN.json index 8b98215e44..43b32584a6 100644 --- a/lib/process-services-cloud/src/lib/i18n/zh-CN.json +++ b/lib/process-services-cloud/src/lib/i18n/zh-CN.json @@ -53,6 +53,16 @@ } }, "ADF_CLOUD_TASK_LIST": { + "APPS": { + "NO_APPS": { + "TITLE": "找不到应用程序", + "SUBTITLE": "创建您想要今后轻松查找的新应用程序" + }, + "ERROR": { + "TITLE": "存在错误", + "SUBTITLE": "请确定您是否有访问应用程序的权限" + } + }, "START_TASK": { "FORM": { "TITLE": "启动任务",