mirror of
https://github.com/freeCodeCamp/freeCodeCamp.git
synced 2026-06-16 21:06:35 +08:00
chore(i18n): small fixes in translations.json (#48894)
This commit is contained in:
parent
378fff4870
commit
2a473098b4
@ -478,7 +478,7 @@
|
||||
"hint": "Hint",
|
||||
"heart": "Heart",
|
||||
"initial": "Initial",
|
||||
"inputReset": "Clear search terms",
|
||||
"input-reset": "Clear search terms",
|
||||
"info": "Intro Information",
|
||||
"spacer": "Spacer",
|
||||
"toggle": "Toggle Checkmark",
|
||||
@ -709,7 +709,7 @@
|
||||
"Legacy Back End": "Legacy Back End",
|
||||
"legacy-back-end": "Back End Certification",
|
||||
"Legacy Data Visualization": "Legacy Data Visualization",
|
||||
"legacy-data-visualization": " Data Visualization Certification",
|
||||
"legacy-data-visualization": "Data Visualization Certification",
|
||||
"Legacy Information Security and Quality Assurance": "Legacy Information Security and Quality Assurance",
|
||||
"information-security-and-quality-assurance": "Information Security and Quality Assurance Certification",
|
||||
"Legacy Full Stack Certification": "Legacy Full Stack Certification",
|
||||
|
||||
@ -6,7 +6,7 @@ const InputReset = (): JSX.Element => {
|
||||
|
||||
return (
|
||||
<>
|
||||
<span className='sr-only'>{t('icons.inputReset')}</span>
|
||||
<span className='sr-only'>{t('icons.input-reset')}</span>
|
||||
<svg
|
||||
className='ais-SearchBox-resetIcon'
|
||||
height='10'
|
||||
|
||||
@ -188,7 +188,7 @@ export class SearchBar extends Component<SearchBarProps, SearchBarState> {
|
||||
const { isDropdownEnabled, isSearchFocused, innerRef, t } = this.props;
|
||||
const { index } = this.state;
|
||||
const submitTitle = t ? t('icons.magnifier') : '';
|
||||
const resetTitle = t ? t('icons.inputReset') : '';
|
||||
const resetTitle = t ? t('icons.input-reset') : '';
|
||||
const placeholder = t ? t('search.placeholder') : '';
|
||||
|
||||
return (
|
||||
|
||||
Loading…
Reference in New Issue
Block a user