diff --git a/src/lang/en.json b/src/lang/en.json index fd7a1a7f..9ce83fb6 100644 --- a/src/lang/en.json +++ b/src/lang/en.json @@ -478,6 +478,7 @@ "progress": "Progress", "ratio": "Ratio", "save_path": "Directory", + "seeds": "Seeds", "size": "Size", "state": "State", "uploaded": "Uploaded", diff --git a/src/views/Dashboard.vue b/src/views/Dashboard.vue index d33cdd43..89003e84 100644 --- a/src/views/Dashboard.vue +++ b/src/views/Dashboard.vue @@ -187,9 +187,10 @@ export default { { value: 'eta', text: this.$t('modals.sort.sortBy.ETA') }, { value: 'globalSpeed', text: this.$t('modals.sort.sortBy.globalSpeed') }, { value: 'globalVolume', text: this.$t('modals.sort.sortBy.globalVolume') }, + { value: 'last_activity', text: this.$t('modals.sort.sortBy.last_activity') }, { value: 'name', text: this.$t('modals.sort.sortBy.name') }, { value: 'num_leechs', text: this.$t('modals.sort.sortBy.peers') }, - { value: 'last_activity', text: this.$t('modals.sort.sortBy.last_activity') }, + { value: 'num_seeds', text: this.$t('modals.sort.sortBy.seeds') }, { value: 'priority', text: this.$t('modals.sort.sortBy.priority') }, { value: 'progress', text: this.$t('modals.sort.sortBy.progress') }, { value: 'ratio', text: this.$t('modals.sort.sortBy.ratio') },