diff --git a/src/i18n/en.json b/src/i18n/en.json index c2f933a..cc72591 100644 --- a/src/i18n/en.json +++ b/src/i18n/en.json @@ -67,8 +67,8 @@ "open-orders": "Open Orders", "condition-orders": "Order Conditions", "history-orders": "Order History", - "limit": "Limit", - "market": "Market", + "limit": "Limit order", + "market": "Market order", "stop-limit": "Stop Limit", "stop-market": "Stop Market", "limit-type": "Limit", @@ -202,7 +202,7 @@ "enter-price": "Enter the Price", "enter-amount": "Enter the amount", "enter-total": "Enter the Total", - "at-best-price": "Execute at the best available price", + "at-best-price": "Market price", "trigger-price": "Enter the Trigger Price", "min": "min", "hour": "hour", diff --git a/src/views/contract/exchange-store.vue b/src/views/contract/exchange-store.vue index f5be947..f6a3d4f 100644 --- a/src/views/contract/exchange-store.vue +++ b/src/views/contract/exchange-store.vue @@ -83,7 +83,7 @@ @click="form.type == 1 ? (form.type = 2) : (form.type = 1)" class="btn btn-sm btn-outline-primary ml-2 text-nowrap" > - {{ form.type == 1 ? $t("contract.e0") : $t("contract.d9") }} + {{ form.type == 1 ? $t("common.limit") : $t("common.market") }}