Skip to content

Commit

Permalink
fix: update _locales and some usage
Browse files Browse the repository at this point in the history
  • Loading branch information
sidvishnoi committed Sep 24, 2024
1 parent 17d729e commit 9a6e922
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions src/_locales/en/messages.json
Original file line number Diff line number Diff line change
Expand Up @@ -98,10 +98,10 @@
"message": "Enter wallet address/payment pointer"
},
"connectWallet_labelGroup_amount": {
"message": "Amount"
"message": "Enter amount to allocate from wallet"
},
"connectWallet_label_amount": {
"message": "Enter amount to allocate from wallet"
"message": "Amount"
},
"connectWallet_label_recurring": {
"message": "Renew monthly"
Expand Down Expand Up @@ -154,7 +154,7 @@
"message": "Failed to connect. Please make sure you have added the key to the correct wallet address."
},
"connectWalletKeyService_error_notImplemented": {
"message": "Automatic key addition is not not implemented for give wallet provider yet"
"message": "Automatic key addition is not not implemented for given wallet provider yet"
},
"allInvalidLinks_state_text": {
"message": "At the moment, you can not pay this website."
Expand Down
4 changes: 2 additions & 2 deletions src/popup/components/ConnectWalletForm.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -221,14 +221,14 @@ export const ConnectWalletForm = ({
)}
>
<legend className="flex items-center px-2 font-medium leading-6 text-medium">
{t('connectWallet_label_amount')}
{t('connectWallet_labelGroup_amount')}
</legend>
<div className="flex items-center gap-6">
<Input
id="connectAmount"
type="text"
inputMode="numeric"
aria-label="Amount"
aria-label={t('connectWallet_label_amount')}
placeholder="5.00"
className="max-w-32"
defaultValue={amount}
Expand Down

0 comments on commit 9a6e922

Please sign in to comment.