Skip to content

Commit

Permalink
Merge pull request #1692 from pschiffe/1.13
Browse files Browse the repository at this point in the history
TLN Make `Search options` string translatable in `SearchBox.js`
  • Loading branch information
GuySartorelli authored Mar 4, 2024
2 parents 7918318 + 09b51af commit e3f6570
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion client/dist/js/bundle.js

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions client/lang/src/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
"Admin.NO_OPTIONS": "No options",
"Admin.NO_SIZE": "N/A",
"Admin.REMOVE_LINK": "Remove link",
"Admin.SEARCH_OPTIONS": "Search options",
"Admin.SELECTONEPAGE": "Please select at least one page",
"Admin.TYPE_TO_SEARCH": "Type to search",
"Admin.VALIDATIONERROR": "Validation Error",
Expand Down
2 changes: 1 addition & 1 deletion client/src/components/Search/SearchBox.js
Original file line number Diff line number Diff line change
Expand Up @@ -290,7 +290,7 @@ class SearchBox extends Component {
className={classes}
title={i18n._t('Admin.ADVANCED', 'Advanced')}
>
<span className={spanClass}>Search options</span>
<span className={spanClass}>{i18n._t('Admin.SEARCH_OPTIONS', 'Search options')}</span>
</Button>);
}

Expand Down

0 comments on commit e3f6570

Please sign in to comment.