diff --git a/src/translation/en.json b/src/translation/en.json index efa403697..91131393b 100644 --- a/src/translation/en.json +++ b/src/translation/en.json @@ -12,7 +12,11 @@ }, "username": "Username", "displayName": "Display name", - "actions": "Actions" + "actions": "Actions", + "table": { + "actions": "Actions", + "date": "Date" + } }, "appstore": { "title": "App Store" @@ -110,7 +114,41 @@ } }, "backups": { - "title": "Backups" + "title": "Backups", + "location": { + "title": "Location", + "description": "Cloudron makes a complete backup of your system at the configured location.", + "disabledList": "The following apps have automatic backups disabled:", + "provider": "Provider", + "location": "Location", + "endpoint": "Endpoint", + "format": "Storage Format", + "configure": "Configure" + }, + "schedule": { + "title": "Schedule and Retention", + "description": "Cloudron makes a complete backup of your system based on this scheduled interval and keeps backups with the specified retention policy.", + "schedule": "Schedule", + "retentionPolicy": "Retention Policy", + "configure": "Configure" + }, + "listing": { + "title": "Listing", + "noBackups": "No backups have been made yet", + "contents": "Contents", + "version": "Version", + "noApps": "No apps", + "appCount": "{{ contents.length }} apps", + "tooltipDownloadBackupConfig": "Download Backup Configuration", + "cleanupBackups": "Cleanup Backups", + "backupNow": "Backup now", + "stopTask": "Stop {{ taskType === 'backup' ? 'Backup' : 'Cleanup' }}" + }, + "logs": { + "title": "Logs", + "description": "Please be careful when uploading these logs to a public server since they may contain sensitive information.", + "showLogs": "Show Logs" + } }, "branding": { "title": "Branding" diff --git a/src/views/backups.html b/src/views/backups.html index 2204ef130..565aa9d7e 100644 --- a/src/views/backups.html +++ b/src/views/backups.html @@ -332,13 +332,13 @@
Cloudron makes a complete backup of your system at the configured location. +
{{ 'backups.location.description' | tr }}
- The following apps have automatic backups disabled:
+ {{ 'backups.location.disabledList' | tr }}
{{app.label || app.fqdn}},
@@ -349,7 +349,7 @@
Cloudron makes a complete backup of your system based on this scheduled interval and keeps backups with the specified retention policy. {{ 'backups.schedule.description' | tr }} No backups have been made yet {{ 'backups.listing.noBackups' | tr }}
- Please be careful when uploading these logs to a public server since they may contain sensitive information.
- {{ 'backups.logs.description' | tr }}Schedule and Retention
+ {{ 'backups.schedule.title' | tr }}
Listing
+ {{ 'backups.listing.title' | tr }}
-
@@ -448,11 +448,11 @@
Version
- Date
- Contents
- Actions
+ {{ 'backups.listing.version' | tr }}
+ {{ 'main.table.date' | tr }}
+ {{ 'backups.listing.contents' | tr }}
+ {{ 'main.table.actions' | tr }}
v{{ backup.packageVersion }}
{{ backup.creationTime | prettyDate }}
- No apps
- {{ backup.contents.length }} apps
+ {{ 'backups.listing.noApps' | tr }}
+ {{ 'backups.listing.appCount' | tr:backups }}
-
+
@@ -479,24 +479,22 @@
Logs
+ {{ 'backups.logs.title' | tr }}