mirror of
https://github.com/VueTorrent/VueTorrent.git
synced 2024-11-25 10:55:50 +03:00
perf: Add seeds sort options (#711)
This commit is contained in:
parent
a583b42d68
commit
2c3afa5799
2 changed files with 3 additions and 1 deletions
|
@ -478,6 +478,7 @@
|
|||
"progress": "Progress",
|
||||
"ratio": "Ratio",
|
||||
"save_path": "Directory",
|
||||
"seeds": "Seeds",
|
||||
"size": "Size",
|
||||
"state": "State",
|
||||
"uploaded": "Uploaded",
|
||||
|
|
|
@ -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') },
|
||||
|
|
Loading…
Reference in a new issue