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
this fix should be moved to the places where it's needed. a global use is wrong.
// Fix for country specific languages
if (self.currentLanguage.split("-").length > 1) {
self.currentLanguage =
self.currentLanguage.split("-")[0] +
"_" +
self.currentLanguage.split("-")[1].toUpperCase();
}
The text was updated successfully, but these errors were encountered:
this fix should be moved to the places where it's needed. a global use is wrong.
The text was updated successfully, but these errors were encountered: