feat(dashboard): show the user whoe redeemed the gift code

This commit is contained in:
Aaron Liu 2025-08-21 13:29:58 +08:00
parent 2827c6bc2e
commit 778518ed9f
5 changed files with 5 additions and 0 deletions

View File

@ -726,6 +726,7 @@
"giftCodeAmount": "Amount", "giftCodeAmount": "Amount",
"giftCode": "Gift Code", "giftCode": "Gift Code",
"giftCodeStatus": "Status", "giftCodeStatus": "Status",
"giftCodeUsedBy": "Used by",
"giftCodeUsed": "Used", "giftCodeUsed": "Used",
"giftCodeUnused": "Available", "giftCodeUnused": "Available",
"giftCodeDeleted": "Gift code deleted successfully", "giftCodeDeleted": "Gift code deleted successfully",

View File

@ -719,6 +719,7 @@
"giftCodeAmount": "数量", "giftCodeAmount": "数量",
"giftCode": "ギフトコード", "giftCode": "ギフトコード",
"giftCodeStatus": "状態", "giftCodeStatus": "状態",
"giftCodeUsedBy": "利用者",
"giftCodeUsed": "使用済み", "giftCodeUsed": "使用済み",
"giftCodeUnused": "使用可能", "giftCodeUnused": "使用可能",
"giftCodeDeleted": "ギフトコードが正常に削除されました", "giftCodeDeleted": "ギフトコードが正常に削除されました",

View File

@ -718,6 +718,7 @@
"giftCodeAmount": "数量", "giftCodeAmount": "数量",
"giftCode": "礼品码", "giftCode": "礼品码",
"giftCodeStatus": "状态", "giftCodeStatus": "状态",
"giftCodeUsedBy": "使用者",
"giftCodeUsed": "已使用", "giftCodeUsed": "已使用",
"giftCodeUnused": "可用", "giftCodeUnused": "可用",
"giftCodeDeleted": "礼品码已成功删除", "giftCodeDeleted": "礼品码已成功删除",

View File

@ -715,6 +715,7 @@
"giftCodeAmount": "數量", "giftCodeAmount": "數量",
"giftCode": "禮品碼", "giftCode": "禮品碼",
"giftCodeStatus": "狀態", "giftCodeStatus": "狀態",
"giftCodeUsedBy": "使用者",
"giftCodeUsed": "已使用", "giftCodeUsed": "已使用",
"giftCodeUnused": "可用", "giftCodeUnused": "可用",
"giftCodeDeleted": "禮品碼已成功刪除", "giftCodeDeleted": "禮品碼已成功刪除",

View File

@ -82,6 +82,7 @@ const GiftCodes = ({ storageProductsConfig, groupProductsConfig }: GiftCodesProp
<NoWrapCell>{t("giftCodes.giftCodeAmount")}</NoWrapCell> <NoWrapCell>{t("giftCodes.giftCodeAmount")}</NoWrapCell>
<NoWrapCell>{t("giftCodes.giftCode")}</NoWrapCell> <NoWrapCell>{t("giftCodes.giftCode")}</NoWrapCell>
<NoWrapCell>{t("giftCodes.giftCodeStatus")}</NoWrapCell> <NoWrapCell>{t("giftCodes.giftCodeStatus")}</NoWrapCell>
<NoWrapCell>{t("giftCodes.giftCodeUsedBy")}</NoWrapCell>
<NoWrapCell align="right"></NoWrapCell> <NoWrapCell align="right"></NoWrapCell>
</TableRow> </TableRow>
</TableHead> </TableHead>