fix: add admin panel scheduled description and locales for it

This commit is contained in:
DecDuck
2025-06-08 12:11:25 +10:00
parent 361da30a93
commit c3e7f3192e
2 changed files with 8 additions and 1 deletions

View File

@ -415,7 +415,10 @@
"cleanupSessionsName": "Clean up sessions.", "cleanupSessionsName": "Clean up sessions.",
"cleanupSessionsDescription": "Cleans up expired sessions to save space and ensure security.", "cleanupSessionsDescription": "Cleans up expired sessions to save space and ensure security.",
"checkUpdateName": "Check update.", "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", "runningTasksTitle": "Running tasks",
"noTasksRunning": "No tasks currently running", "noTasksRunning": "No tasks currently running",

View File

@ -230,5 +230,9 @@ const scheduledTasks: {
name: "", name: "",
description: "", description: "",
}, },
"ludusavi:import": {
name: t("tasks.admin.scheduled.ludusaviImportName"),
description: t("tasks.admin.scheduled.ludusaviImportDescription"),
},
}; };
</script> </script>