Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions ui/src/app/edge/settings/app/index.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -27,12 +27,12 @@ <h1 style="text-align: center; white-space: initial;">
</div>
</div>
<p *ngIf="false">
<small>Technischer Name: {{ app.appId }}</small><br />
<small>Kategorie:
<small>{{ 'Edge.Config.App.technicalName' | translate }}: {{ app.appId }}</small><br />
<small>{{ 'Edge.Config.App.category' | translate }}:
<a *ngFor="let c of app.categorys">
{{ c.readableName }}
</a></small><br />
<small>Cardinality: {{ app.cardinality }}</small>
<small>{{ 'Edge.Config.App.cardinality' | translate }}: {{ app.cardinality }}</small>
</p>
</ion-card-content>
<ion-accordion-group>
Expand Down
5 changes: 4 additions & 1 deletion ui/src/assets/i18n/de.json
Original file line number Diff line number Diff line change
Expand Up @@ -455,7 +455,10 @@
"successDelete": "App erfolgreich entfernt",
"failDelete": "Entfernen der App fehlgeschlagen: {{error}}",
"DELETE_CONFIRM_HEADLINE": "Sind Sie sicher, dass die App entfernt werden soll?",
"DELETE_CONFIRM_DESCRIPTION": "Beim Entfernen werden alle Komponenten und Einstellungen gelöscht, die von dieser App angelegt wurden."
"DELETE_CONFIRM_DESCRIPTION": "Beim Entfernen werden alle Komponenten und Einstellungen gelöscht, die von dieser App angelegt wurden.",
"technicalName": "Technischer Name",
"category": "Kategorie",
"cardinality": "Kardinalität"
}
},
"Service": {
Expand Down
5 changes: 4 additions & 1 deletion ui/src/assets/i18n/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -457,7 +457,10 @@
"successDelete": "Successfully deleted App",
"failDelete": "Error deleting App '{{error}}'",
"DELETE_CONFIRM_HEADLINE": "Are you sure you wish to uninstall the app?",
"DELETE_CONFIRM_DESCRIPTION": "Uninstalling the app will remove all of its components and delete all settings made by it."
"DELETE_CONFIRM_DESCRIPTION": "Uninstalling the app will remove all of its components and delete all settings made by it.",
"technicalName": "Technical name",
"category": "Category",
"cardinality": "Cardinality"
}
},
"Service": {
Expand Down
5 changes: 4 additions & 1 deletion ui/src/assets/i18n/ja.json
Original file line number Diff line number Diff line change
Expand Up @@ -374,7 +374,10 @@
"deleteApp": "アプリを削除します",
"updateApp": "アプリを更新します",
"errorInstallable": "インストールエラー",
"errorCompatible": "互換性エラー"
"errorCompatible": "互換性エラー",
"technicalName": "技術名",
"category": "カテゴリ",
"cardinality": "カーディナリティ"
}
},
"Service": {
Expand Down
Loading