I work with angular 7
I build my project using this command to ensure that take the last update
and clean cache :
node --max_old_space_size=8192 node_modules/@angular/cli/bin/ng build --prod --aot --output-hashing=all
I have for example in my html component this code :
<h2 class="content-header-title float-right mb-0 active">
الإحالات المرسلة
</h2>
When the users work with any browser in the desktop they don’t have any problem
But some users when they use chrome browser in the Iphone
the message became : الحالات المرسلة
the browser change الإحالات by الحالات
I didn’t khnow why .
I thing that related to auto translate or auto correction in the browser of Iphone
or the word not exist in the dictionary of the browser.
I want to do a solution in my code to prevent this kind of error.
I tried without success to add translate="no"
in index.html
can someone help me to find a solution for this error