From c3e7f3192e303035777e57ccb289bb005ef46d84 Mon Sep 17 00:00:00 2001 From: DecDuck Date: Sun, 8 Jun 2025 12:11:25 +1000 Subject: [PATCH] fix: add admin panel scheduled description and locales for it --- i18n/locales/en_us.json | 5 ++++- pages/admin/task/index.vue | 4 ++++ 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/i18n/locales/en_us.json b/i18n/locales/en_us.json index c7f9bda..bf20968 100644 --- a/i18n/locales/en_us.json +++ b/i18n/locales/en_us.json @@ -415,7 +415,10 @@ "cleanupSessionsName": "Clean up sessions.", "cleanupSessionsDescription": "Cleans up expired sessions to save space and ensure security.", "checkUpdateName": "Check update.", - "checkUpdateDescription": "Check if Drop has an update." + "checkUpdateDescription": "Check if Drop has an update.", + + "ludusaviImportName": "Imports the latest Ludusavi manifest.", + "ludusaviImportDescription": "Downloads and imports the latest Ludusavi manifest, to improve cloud save compatibility with new games and updates." }, "runningTasksTitle": "Running tasks", "noTasksRunning": "No tasks currently running", diff --git a/pages/admin/task/index.vue b/pages/admin/task/index.vue index 710fd39..49aba55 100644 --- a/pages/admin/task/index.vue +++ b/pages/admin/task/index.vue @@ -230,5 +230,9 @@ const scheduledTasks: { name: "", description: "", }, + "ludusavi:import": { + name: t("tasks.admin.scheduled.ludusaviImportName"), + description: t("tasks.admin.scheduled.ludusaviImportDescription"), + }, };