Skip to content

Commit

Permalink
fix: offers and activities in nft details have no data (#10446)
Browse files Browse the repository at this point in the history
* New translations en-US.json (Quenya) (#10441)

docs(i18n): sync translation en-US.json for Quenya

* docs(i18n): sync i18n files from Crowdin (#10443)

* fix: offers and activities in nft details have no data

---------

Co-authored-by: Jack Works <jackworks@protonmail.com>
  • Loading branch information
lelenei and Jack-Works committed Aug 17, 2023
1 parent 11ef000 commit 5b87f4f
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 1 deletion.
1 change: 1 addition & 0 deletions packages/dashboard/src/locales/zh-CN.json
Original file line number Diff line number Diff line change
Expand Up @@ -275,6 +275,7 @@
"settings_backup_preview_contacts": "联系人",
"settings_backup_preview_file": "文件",
"settings_backup_preview_wallets": "Mask钱包",
"settings_backup_preview_set_payment_password": "您需要先设置密码才能启用钱包功能完成备份。 <settings> 转到设置 </settings>",
"settings_backup_preview_created_at": "备份时间",
"settings_language_title": "语言",
"settings_language_desc": "选择您要使用的语言",
Expand Down
1 change: 1 addition & 0 deletions packages/mask/shared-ui/locales/qya-AA.json
Original file line number Diff line number Diff line change
Expand Up @@ -946,6 +946,7 @@
"popups_wallet_backup_json_file_confirm_password_tip": "crwdns7803:0crwdne7803:0",
"popups_wallet_backup_private_key_tip": "crwdns7805:0crwdne7805:0",
"popups_wallet_backup_input_password": "crwdns7807:0crwdne7807:0",
"popups_wallet_logout_input_payment_password": "crwdns22169:0crwdne22169:0",
"popups_wallet_backup_json_file_drag_tip": "crwdns7809:0crwdne7809:0",
"popups_wallet_backup_json_file_click_tip": "crwdns7811:0crwdne7811:0",
"popups_wallet_enter_your_wallet_name": "crwdns7813:0crwdne7813:0",
Expand Down
3 changes: 3 additions & 0 deletions packages/mask/shared-ui/locales/zh-CN.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@
"available_balance": "可用余额",
"available_amount": "{{- amount}} 可用",
"failed_to_transfer_token": "发送 Token 失败: {{- message}}",
"failed_to_transfer_nft": "网络错误或执行智能合同失败。",
"operation": "操作",
"gas_limit": "Gas 限制",
"gas_price": "Gas 价格",
Expand Down Expand Up @@ -944,6 +945,7 @@
"popups_wallet_backup_json_file_confirm_password_tip": "此文件已使用您当前的支付密码加密保存。 导入钱包时请使用当前支付密码解密此文件。",
"popups_wallet_backup_private_key_tip": "请不要向任何人暴露您的私钥。私钥不需要解密即可在任何支持EVM兼容的链上钱包中使用。",
"popups_wallet_backup_input_password": "输入您的密码",
"popups_wallet_logout_input_payment_password": "请输入密码。",
"popups_wallet_backup_json_file_drag_tip": "将您的文件拖动到这里…",
"popups_wallet_backup_json_file_click_tip": "点击选择或拖放文件到这里",
"popups_wallet_enter_your_wallet_name": "输入钱包名称",
Expand Down Expand Up @@ -1058,6 +1060,7 @@
"popups_encrypted_friends_search_no_result": "找不到搜索结果。",
"popups_encrypted_friends_no_friends": "没有任何加密好友,您可以尝试搜索。",
"popups_encrypted_friends_add_friends": "添加",
"popups_encrypted_friends_no_associated_accounts": "无关联账号",
"popups_select_wallet": "选择钱包",
"popups_switch_persona": "切换 Persona",
"popups_recovery": "恢复",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ export function OffersList(props: OffersListProps) {
<LoadingBase />
</div>
)
if (error || !offers.length)
if (error && offers.length === 0)
return (
<div className={classes.wrapper}>
<ReloadStatus onRetry={onRetry} />
Expand Down
1 change: 1 addition & 0 deletions packages/plugins/Tips/src/locales/zh-CN.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
"gas_fee": "Gas Fee",
"token_insufficient_balance": "余额不足",
"manage_wallet": "钱包管理",
"failed_to_transfer_nft": "网络错误或执行智能合同失败。",
"save": "保存",
"save_successfully": "保存成功",
"save_failed": "保存失败",
Expand Down

0 comments on commit 5b87f4f

Please sign in to comment.