diff --git a/packages/mask/shared-ui/locales/en-US.json b/packages/mask/shared-ui/locales/en-US.json
index 901f2b8d58de..818f0871562b 100644
--- a/packages/mask/shared-ui/locales/en-US.json
+++ b/packages/mask/shared-ui/locales/en-US.json
@@ -212,7 +212,6 @@
"export": "Export",
"wallet_status_bar_pending": "Pending",
"wallet_load_retry": "Failed to load {{symbol}}. Click to retry.",
- "wallet_status_bar_pending": "Pending",
"wallet_name": "Wallet Name",
"wallet_rename": "Rename Wallet",
"wallet_loading_nft_contract": "Loading NFT contract...",
@@ -252,7 +251,8 @@
"wallet_balance": "Balance",
"wallet_balance_eth": "Balance(ETH)",
"wallet_new": "New Wallet",
- "wallet_status_pending": "Pending{{plural}}",
+ "wallet_status_pending_one": "{{count}} Pending",
+ "wallet_status_pending_other": "{{count}} Pendings",
"wallet_status_pending_clear_all": "Clear All",
"wallet_status_pending_clear": "Clear",
"wallet_status_button_change": "Change",
@@ -340,7 +340,8 @@
"plugin_wallet_on_create": "Create Wallet",
"plugin_wallet_on_connect": "Connect Wallet",
"plugin_wallet_wrong_network": "Wrong Network",
- "plugin_wallet_pending_transactions": "{{count}} Pending{{plural}}",
+ "plugin_wallet_pending_transactions_one": "{{count}} Pending",
+ "plugin_wallet_pending_transactions_other": "{{count}} Pendings",
"plugin_wallet_import_wallet": "Import Wallet",
"plugin_wallet_select_provider_dialog_title": "Connect Wallet",
"plugin_wallet_qr_code_with_wallet_connect": "Scan QR code with a WalletConnect-compatible wallet",
diff --git a/packages/mask/src/components/InjectedComponents/ToolboxUnstyled.tsx b/packages/mask/src/components/InjectedComponents/ToolboxUnstyled.tsx
index d86f569fe75a..a844efcda9cb 100644
--- a/packages/mask/src/components/InjectedComponents/ToolboxUnstyled.tsx
+++ b/packages/mask/src/components/InjectedComponents/ToolboxUnstyled.tsx
@@ -95,7 +95,6 @@ export function ToolboxHintUnstyled(props: ToolboxHintProps) {
function ToolboxHintForApplication(props: ToolboxHintProps) {
const {
ListItemButton = MuiListItemButton,
- ListItemIcon = MuiListItemIcon,
Container = 'div',
Typography = MuiTypography,
iconSize = 24,
@@ -243,7 +242,6 @@ function useToolbox() {
{t('plugin_wallet_pending_transactions', {
count: pendingTransactions.length,
- plural: pendingTransactions.length > 1 ? 's' : '',
})}