-
Notifications
You must be signed in to change notification settings - Fork 506
Closed
Description
Summary
Describe the bug
The strings in the search-form
component are not localized. Specifically, the strings "Filters and sorting" and "No saved filters. Saved filter(s) will appear here for you to select once made available." are not being translated or provided through a localization mechanism.
To Reproduce
- Navigate to the
web-mzima-client/src/app/shared/components/search-form/search-form.component.html
file. - Observe the following code on line 240 and 325 respectively:
240: <h3>Filters and sorting</h3>
325: <span class="no-saved-filters" postfix *ngIf="savedSearches?.length === 0">
No saved filters. Saved filter(s) will appear here for you to select once made available.
</span>
Expected behavior
The strings in the search-form
component should be localized and provided through a translation or localization mechanism, allowing the application to support multiple languages.
How to solve
To solve this issue, we will:
-
Identify all the strings in the
search-form
component that need to be localized. -
Ensure that the localization mechanism is properly set up and configured in the application to handle the localization of the
search-form
component.
Screenshots

