Skip to content
This repository has been archived by the owner on Feb 5, 2025. It is now read-only.

Commit

Permalink
feat: add missing time sorting for connections
Browse files Browse the repository at this point in the history
  • Loading branch information
pompurin404 committed Feb 4, 2025
1 parent 0c1d259 commit 116c83e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/renderer/src/locales/en-US.json
Original file line number Diff line number Diff line change
Expand Up @@ -574,6 +574,7 @@
"closed": "Closed",
"filter": "Filter",
"orderBy": "Order By",
"time": "Time",
"uploadAmount": "Upload Amount",
"downloadAmount": "Download Amount",
"uploadSpeed": "Upload Speed",
Expand Down
1 change: 1 addition & 0 deletions src/renderer/src/locales/zh-CN.json
Original file line number Diff line number Diff line change
Expand Up @@ -574,6 +574,7 @@
"closed": "已关闭",
"filter": "筛选过滤",
"orderBy": "连接排序方式",
"time": "时间",
"uploadAmount": "上传量",
"downloadAmount": "下载量",
"uploadSpeed": "上传速度",
Expand Down
1 change: 1 addition & 0 deletions src/renderer/src/pages/connections.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -247,6 +247,7 @@ const Connections: React.FC = () => {
})
}}
>
<SelectItem key="time">{t('connections.time')}</SelectItem>
<SelectItem key="upload">{t('connections.uploadAmount')}</SelectItem>
<SelectItem key="download">{t('connections.downloadAmount')}</SelectItem>
<SelectItem key="uploadSpeed">{t('connections.uploadSpeed')}</SelectItem>
Expand Down

0 comments on commit 116c83e

Please sign in to comment.