Skip to content

Commit 9570dd7

Browse files
committed
fix: update in from expired text status
1 parent 89df507 commit 9570dd7

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

dashboard/public/statics/locales/en.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -618,7 +618,7 @@
618618
"disabled": "disabled",
619619
"expire": "Expire",
620620
"expires": "Expires in {{time}}",
621-
"expired": "Expired in {{time}}",
621+
"expired": "Expired {{time}} ago",
622622
"header.donation": "Donation",
623623
"header.hostSettings": "Host Settings",
624624
"header.logout": "Log out",

dashboard/public/statics/locales/fa.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -505,7 +505,7 @@
505505
"deleteUser.title": "حذف کاربر",
506506
"disabled": "غیر فعال",
507507
"expire": "انقضا",
508-
"expired": "پایان یافته در {{time}}",
508+
"expired": "{{time}} پیش منقضی شده",
509509
"expires": "پایان در {{time}}",
510510
"header.donation": "کمک مالی",
511511
"header.hostSettings": "تنظیمات هاست",

dashboard/public/statics/locales/ru.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -590,7 +590,7 @@
590590
"deleteUser.title": "Удалить пользователя",
591591
"disabled": "disabled",
592592
"expire": "Истекает",
593-
"expired": "Истекло {{time}} назад",
593+
"expired": "Истёк {{time}} назад",
594594
"expires": "Истекает через {{time}}",
595595
"header.donation": "Пожертвование",
596596
"header.hostSettings": "Настройки хоста",

dashboard/public/statics/locales/zh.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -616,7 +616,7 @@
616616
"deleteUser.title": "删除用户",
617617
"disabled": "禁用",
618618
"expire": "过期",
619-
"expired": "已在 {{time}} 前过期",
619+
"expired": "{{time}}前已过期",
620620
"expires": "将在 {{time}} 后过期",
621621
"header.donation": "捐赠",
622622
"header.hostSettings": "设置",

dashboard/src/components/users/filters.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -227,8 +227,8 @@ export const PaginationControls = ({ currentPage, totalPages, itemsPerPage, isLo
227227
<span className="whitespace-nowrap text-sm text-muted-foreground">{t('itemsPerPage')}</span>
228228
</div>
229229

230-
<Pagination dir="ltr" className={`md:justify-end ${dir === 'rtl' ? 'flex-row-reverse' : ''}`}>
231-
<PaginationContent className="max-w-[300px] overflow-x-auto sm:max-w-full">
230+
<Pagination dir="ltr" className={`md:justify-end ic ${dir === 'rtl' ? 'flex-row-reverse' : ''}`}>
231+
<PaginationContent className="w-full overflow-x-auto justify-center">
232232
<PaginationItem>
233233
<PaginationPrevious onClick={() => onPageChange(currentPage - 1)} disabled={currentPage === 0 || isLoading} />
234234
</PaginationItem>

0 commit comments

Comments
 (0)