diff --git a/shared/components/Form/TransferAssetsForm/messages.json b/shared/components/Form/TransferAssetsForm/messages.json
index 3360add3a..9e01bdece 100644
--- a/shared/components/Form/TransferAssetsForm/messages.json
+++ b/shared/components/Form/TransferAssetsForm/messages.json
@@ -13,8 +13,8 @@
"snd_button_name_nxt" : "下一步",
"snd_title_error_invact" : "账户不存在",
"snd_title_error_psw" : "密码错误",
- "snd_title_error_hinet" : "NET的使用过高",
- "snd_title_error_hicpu" : "CPU的使用过高"
+ "snd_title_error_hinet" : "网络资源不足,请抵押更多的EOS",
+ "snd_title_error_hicpu" : "计算资源不足,请抵押更多的EOS"
},
"en": {
"snd_title_name_accnm" : "Account",
@@ -30,7 +30,7 @@
"snd_button_name_nxt" : "Next",
"snd_title_error_invact" : "Account dose not exist!",
"snd_title_error_psw" : "Invalid password",
- "snd_title_error_hinet" : "net usage of transaction is too high",
- "snd_title_error_hicpu" : "cpu usage of transaction is too high"
+ "snd_title_error_hinet" : "NET usage of transaction is too high",
+ "snd_title_error_hicpu" : "CPU usage of transaction is too high"
}
}
diff --git a/shared/screens/Assets/AssetChart/index.jsx b/shared/screens/Assets/AssetChart/index.jsx
index 4f962dda8..226318d06 100644
--- a/shared/screens/Assets/AssetChart/index.jsx
+++ b/shared/screens/Assets/AssetChart/index.jsx
@@ -135,7 +135,14 @@ export default class AssetChart extends Component {
renderItem={({ item }) => }
onEndReached={this.loadMore}
onEndReachedThreshold={0.5}
- ListFooterComponent={(loaded && hasMore) ? : (loaded && 没有更多数据了)}
+ ListFooterComponent={
+ (loaded && hasMore)
+ ?
+ : (loaded &&
+
+ {messages[locale].token_title_name_nomore}
+ )
+ }
/>
diff --git a/shared/screens/Assets/AssetChart/messages.json b/shared/screens/Assets/AssetChart/messages.json
index 87b9f881c..91b16b176 100644
--- a/shared/screens/Assets/AssetChart/messages.json
+++ b/shared/screens/Assets/AssetChart/messages.json
@@ -1,10 +1,12 @@
{
"zh": {
"token_button_name_send": "转账",
- "token_button_name_receive": "收款"
+ "token_button_name_receive": "收款",
+ "token_title_name_nomore": "没有更多数据了"
},
"en": {
"token_button_name_send": "Send",
- "token_button_name_receive": "Receive"
+ "token_button_name_receive": "Receive",
+ "token_title_name_nomore": "No more data"
}
}
diff --git a/shared/screens/Profile/TransactionHistory/index.jsx b/shared/screens/Profile/TransactionHistory/index.jsx
index 36f6bac02..665049324 100644
--- a/shared/screens/Profile/TransactionHistory/index.jsx
+++ b/shared/screens/Profile/TransactionHistory/index.jsx
@@ -92,7 +92,14 @@ export default class TransationHistory extends Component {
renderItem={({ item }) => }
onEndReached={this.loadMore}
onEndReachedThreshold={0.5}
- ListFooterComponent={(loaded && hasMore) ? : (loaded && 没有更多数据了)}
+ ListFooterComponent={
+ (loaded && hasMore)
+ ?
+ : (loaded &&
+
+ {messages[locale].txhis_sec_time_nomore}
+ )
+ }
/>
diff --git a/shared/screens/Profile/TransactionHistory/messages.json b/shared/screens/Profile/TransactionHistory/messages.json
index a1b00e195..5c9fcf600 100644
--- a/shared/screens/Profile/TransactionHistory/messages.json
+++ b/shared/screens/Profile/TransactionHistory/messages.json
@@ -4,13 +4,15 @@
"txhis_title_txt_date" : "今天",
"txhis_sec_time_mins" : "分钟前",
"txhis_sec_time_hrs" : "小时前",
- "txhis_sec_time_days" : "天前"
+ "txhis_sec_time_days" : "天前",
+ "txhis_sec_time_nomore": "没有更多数据了"
},
"en": {
"txhis_title_name_txhistory" : "Transaction History",
"txhis_title_txt_date" : "Today",
"txhis_sec_time_mins" : "mins ago",
"txhis_sec_time_hrs" : "hours ago",
- "txhis_sec_time_days" : "days ago"
+ "txhis_sec_time_days" : "days ago",
+ "txhis_sec_time_nomore": "No more data"
}
}