diff --git a/dashboard/src/translation/en.json b/dashboard/src/translation/en.json index bf5ded81a..e06575c96 100644 --- a/dashboard/src/translation/en.json +++ b/dashboard/src/translation/en.json @@ -30,6 +30,9 @@ "addApplinkAction": "Add App Link", "filter": { "clearAll": "Clear All" + }, + "apps": { + "count": "Total apps: {{ count }}" } }, "main": { diff --git a/dashboard/src/translation/nl.json b/dashboard/src/translation/nl.json index b5e963409..326a5f130 100644 --- a/dashboard/src/translation/nl.json +++ b/dashboard/src/translation/nl.json @@ -964,14 +964,14 @@ "resources": { "memory": { "title": "Geheugenlimiet", - "description": "Cloudron wijst 50% van deze waarde toe als RAM en 50% als swap.", + "description": "Maximum geheugen dat een app kan gebruiken", "resizeAction": "Grootte wijzigen", "error": "Kan geheugenlimiet niet instellen, probeer minder." }, "cpu": { "setAction": "Vastleggen", - "title": "CPU Shares", - "description": "Percentage CPU-tijd wanneer het systeem zwaar wordt belast." + "title": "CPU Limiet", + "description": "Maximum percentage CPU dat een app kan gebruiken" } }, "storage": { @@ -1214,6 +1214,12 @@ "title": "Redis configuratie", "enable": "Configureer de app om Redis te gebruiken", "disable": "Redis uitschakelen" + }, + "infoTabTitle": "Info", + "info": { + "notes": { + "title": "Notities" + } } }, "network": { diff --git a/dashboard/src/views/apps.html b/dashboard/src/views/apps.html index bdcd5086c..29d6ece8c 100644 --- a/dashboard/src/views/apps.html +++ b/dashboard/src/views/apps.html @@ -253,6 +253,10 @@ +
+
+ {{ 'apps.apps.count' | tr:{ count: (installedApps | selectedGroupAccessFilter:selectedGroup | selectedStateFilter:selectedState | selectedTagFilter:selectedTags | selectedDomainFilter:selectedDomain | appSearchFilter:appSearch).length } }} +