You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The string "This is the single point tooltip template" on line 23 in the activity-timeline.component.html file needs to be localized to support multiple languages.
To Reproduce
Navigate to the apps/web-mzima-client/src/app/activity/activity-timeline/activity-timeline.component.html file.
Locate the following code block on line 23:
<ng-template#tooltipTemplatelet-model="model">
This is the single point tooltip template
<pre>{{ model | json }}</pre></ng-template>
Expected behavior
The "This is the single point tooltip template" string should be localized and retrieved from a translation file or service, so that it can be displayed in the user's preferred language.
How to solve
In the activity-timeline.component.html file, replace the hardcoded "This is the single point tooltip template" string with a translation key (something like., {{ 'ACTIVITY.TOOLTIP_TEMPLATE' | translate }}).
Screenshots
The text was updated successfully, but these errors were encountered:
kivuvarosekivuvan
changed the title
Localization of "This is the single point tooltip template" string in activity-timeline.component.html
[Accessibility] Localization of "This is the single point tooltip template" string in activity-timeline.component.html
Jul 26, 2024
Summary
Describe the bug
The string "This is the single point tooltip template" on line 23 in the
activity-timeline.component.html
file needs to be localized to support multiple languages.To Reproduce
apps/web-mzima-client/src/app/activity/activity-timeline/activity-timeline.component.html
file.Expected behavior
The "This is the single point tooltip template" string should be localized and retrieved from a translation file or service, so that it can be displayed in the user's preferred language.
How to solve
activity-timeline.component.html
file, replace the hardcoded "This is the single point tooltip template" string with a translation key (something like.,{{ 'ACTIVITY.TOOLTIP_TEMPLATE' | translate }}
).Screenshots
The text was updated successfully, but these errors were encountered: