From 02db288db287a3d423a4c14e946cfb6a44cc2ed9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9mi=20Marseault?= <22910497+Larsluph@users.noreply.github.com> Date: Fri, 30 Dec 2022 14:20:45 +0100 Subject: [PATCH] perf: Add "Completed On" to dashboard customization settings (#578) --- src/components/Settings/Tabs/VueTorrent/Dashboard.vue | 3 ++- src/lang/en.js | 1 + 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/src/components/Settings/Tabs/VueTorrent/Dashboard.vue b/src/components/Settings/Tabs/VueTorrent/Dashboard.vue index 7caa86ea..ee661594 100644 --- a/src/components/Settings/Tabs/VueTorrent/Dashboard.vue +++ b/src/components/Settings/Tabs/VueTorrent/Dashboard.vue @@ -91,7 +91,8 @@ export default { Tags: i18n.t(`${localePrefix}.tags`), AddedOn: i18n.t(`${localePrefix}.addedOn`), Availability: i18n.t(`${localePrefix}.availability`), - LastActivity: i18n.t(`${localePrefix}.last_activity`) + LastActivity: i18n.t(`${localePrefix}.last_activity`), + CompletedOn: i18n.t(`${localePrefix}.completion_on`) } return properties.map(property => ({ ...property, label: localeMap[property.name] })) diff --git a/src/lang/en.js b/src/lang/en.js index b10abdd8..740b51ba 100644 --- a/src/lang/en.js +++ b/src/lang/en.js @@ -178,6 +178,7 @@ const locale = { category: 'Category', tags: 'Tags', completed: 'Completed', + completion_on: 'Completed On', downloaded: 'Downloaded', ETA: 'ETA', name: 'Name',