fix(i18n): wrap untranslated frontend strings and add i18n lint rule (#37776)

Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
Evan Rusackas
2026-02-23 00:27:37 -05:00
committed by GitHub
parent 672a380587
commit 3f64ad3da5
71 changed files with 65097 additions and 15158 deletions

View File

@@ -451,7 +451,7 @@ const AgGridDataTable: FunctionComponent<AgGridTableProps> = memo(
<div className="search-container">
{serverPagination && (
<div className="search-by-text-container">
<span className="search-by-text"> Search by :</span>
<span className="search-by-text"> {t('Search by')}:</span>
<SearchSelectDropdown
onChange={onSearchColChange}
searchOptions={searchOptions}
@@ -469,7 +469,7 @@ const AgGridDataTable: FunctionComponent<AgGridTableProps> = memo(
}
type="text"
id="filter-text-box"
placeholder="Search"
placeholder={t('Search')}
onInput={onFilterTextBoxChanged}
onFocus={handleSearchFocus}
onBlur={handleSearchBlur}