Add string to translation

Add string to translation.
This commit is contained in:
nixocio
2020-12-02 16:42:15 -05:00
parent 8e024c234c
commit 8cb9341d8f

View File

@@ -92,6 +92,7 @@ function AdvancedSearch({
isOpen={isPrefixDropdownOpen} isOpen={isPrefixDropdownOpen}
placeholderText={i18n._(t`Set type`)} placeholderText={i18n._(t`Set type`)}
maxHeight="500px" maxHeight="500px"
noResultsFoundText={i18n._(t`No results found`)}
> >
<SelectOption <SelectOption
key="and" key="and"
@@ -129,6 +130,7 @@ function AdvancedSearch({
isCreatable isCreatable
onCreateOption={setKeySelection} onCreateOption={setKeySelection}
maxHeight="500px" maxHeight="500px"
noResultsFoundText={i18n._(t`No results found`)}
> >
{allKeys.map(optionKey => ( {allKeys.map(optionKey => (
<SelectOption key={optionKey} value={optionKey}> <SelectOption key={optionKey} value={optionKey}>
@@ -148,6 +150,7 @@ function AdvancedSearch({
isOpen={isLookupDropdownOpen} isOpen={isLookupDropdownOpen}
placeholderText={i18n._(t`Lookup type`)} placeholderText={i18n._(t`Lookup type`)}
maxHeight="500px" maxHeight="500px"
noResultsFoundText={i18n._(t`No results found`)}
> >
<SelectOption <SelectOption
key="exact" key="exact"