Skip to content

Commit

Permalink
[NO CHANGELOG] [Add Tokens Widget] Fix/add tokens make input pronounce (
Browse files Browse the repository at this point in the history
  • Loading branch information
mimi-imtbl authored Dec 2, 2024
1 parent ab48649 commit 8657c3f
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion packages/checkout/widgets-lib/src/locales/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -652,7 +652,7 @@
},
"ADD_TOKENS": {
"tokenSelection": {
"buttonText": "Add Token",
"buttonText": "Choose a token you want",
"tokenLabel": "Add",
"drawerHeading": "Add Token",
"searchPlaceholder": "Search tokens"
Expand Down
2 changes: 1 addition & 1 deletion packages/checkout/widgets-lib/src/locales/ja.json
Original file line number Diff line number Diff line change
Expand Up @@ -635,7 +635,7 @@
},
"ADD_TOKENS": {
"tokenSelection": {
"buttonText": "トークンを追加",
"buttonText": "選択したいトークンをお選びください",
"tokenLabel": "追加",
"drawerHeading": "トークンを追加",
"searchPlaceholder": "トークンを検索"
Expand Down
2 changes: 1 addition & 1 deletion packages/checkout/widgets-lib/src/locales/ko.json
Original file line number Diff line number Diff line change
Expand Up @@ -632,7 +632,7 @@
},
"ADD_TOKENS": {
"tokenSelection": {
"buttonText": "토큰 추가",
"buttonText": "원하는 토큰을 선택하세요",
"tokenLabel": "추가",
"drawerHeading": "토큰 추가",
"searchPlaceholder": "토큰 검색"
Expand Down
2 changes: 1 addition & 1 deletion packages/checkout/widgets-lib/src/locales/zh.json
Original file line number Diff line number Diff line change
Expand Up @@ -632,7 +632,7 @@
},
"ADD_TOKENS": {
"tokenSelection": {
"buttonText": "添加代币",
"buttonText": "请选择您想要的代币",
"tokenLabel": "添加",
"drawerHeading": "添加代币",
"searchPlaceholder": "搜索代币"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ export const PULSE_SHADOW = keyframes`
box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.3);
}
50% {
box-shadow: 0 0 10px 2px rgba(54, 210, 227, 0.2);
box-shadow: 0 0 13px 2px rgba(54, 210, 227, 0.5);
}
100% {
box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -601,7 +601,7 @@ export function AddTokens({
addTokensDispatch={addTokensDispatch}
/>
{showInitialEmptyState ? (
<Body>{t('views.ADD_TOKENS.tokenSelection.buttonText')}</Body>
<Body weight="bold">{t('views.ADD_TOKENS.tokenSelection.buttonText')}</Body>
) : (
<HeroFormControl
validationStatus={validateToAmount(inputValue).isValid || inputValue === '' ? 'success' : 'error'}
Expand Down

0 comments on commit 8657c3f

Please sign in to comment.