diff --git a/packages/shared/lib/units.ts b/packages/shared/lib/units.ts index 4ffb59f9930..390356df739 100644 --- a/packages/shared/lib/units.ts +++ b/packages/shared/lib/units.ts @@ -48,8 +48,8 @@ export const formatUnit = (value: number, decimalPlaces = 2): string => { const getUnit = (value: number): Unit => { let bestUnits: Unit = Unit.i - if (!value) { - return bestUnits + if (!value || value === 0) { + return Unit.Mi } const checkLength = Math.abs(value).toString().length diff --git a/packages/shared/locales/en.json b/packages/shared/locales/en.json index 691c8a043e3..c8af0b6bd27 100644 --- a/packages/shared/locales/en.json +++ b/packages/shared/locales/en.json @@ -472,8 +472,8 @@ "recentActivity": "Recent Activity", "sent": "Sent", "received": "Received", - "sendPayment": "Send payment", - "moveFunds": "Move funds", + "sendPayment": "Send Payment", + "moveFunds": "Internal Transfer", "sendFunds": "Send funds", "sendToAddress": "Send to address", "scanQrOrPaste": "Scan a QR code or paste an Address", @@ -488,7 +488,7 @@ "reference": "Reference", "from": "From", "to": "To", - "receiveFunds": "Receive funds", + "receiveFunds": "Receive Funds", "myAddress": "My Address", "shareAddress": "Share an address", "yourAddress": "Your address", @@ -512,13 +512,13 @@ "totalIn": "Total in", "totalOut": "Total out", "accounts": "Accounts", - "myAccounts": "My accounts", + "myAccounts": "My Accounts", "automaticNodeSelection": "Automatic node selection", "manualNodeSelection": "Manual node selection", "profiles": "Profiles", "developerProfile": "Developer Profile", "dev": "Dev", - "createAccount": "Create an account", + "createAccount": "Create an Account", "accountName": "Account name", "latestTransactions": "Latest Transactions", "transactions": "Transactions", @@ -529,7 +529,7 @@ "help": "Help", "you": "You", "messageId": "Message ID", - "inputAddress": "Input Address", + "inputAddress": "Send Address", "receiveAddress": "Receive Address", "date": "Date", "status": "Status",