|
Locale-Sensitive JavaScript MethodInternationalization (I18n) Method OverviewThis method returns a copy of the string converted to lowercase letters; the lowercase rules are based on the default locale.
It works similarly to Click here (w3schools) and here (MDN) for additional method details. I18n Issues
Suggested ReplacementIf the string will have non-English characters, and you want the application to be able to run in a locale that is other than the browser's locale, you will need to either handle casing in server-side code, or use a 3rd party JavaScript library which can support casing based on a locale parameter. Globalyzer will detect this method and report it as an I18n issue. If you have determined that the call is being handled correctly, you can use Globalyzer's Ignore Comment functionality to ensure that it isn't picked up in a subsequent scan.
|