I'm using Chrome and my user agent string is:
Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.105 Safari/537.36
Edit:
The linked solution didn't exactly work for me. It turns out ckeditor was incorrectly detecting the language for the editor box... I changed:
d = d || navigator.userLanguage || navigator.language || a;
to
d = navigator.language || d || navigator.userLanguage || a;
I don't know why it was sending d = 10 as the language, but changing the order of the or statement made the default select the language "en-US". The problem was the d = "10" failed the regex and errored. It seemed like navigator.language had the value that the regex was looking for... so I just made it the main statement in the or. I don't know if this will bite me in the ass in the future, though.

Click to View Image11 View(s)
I think I have it mostly working under the /forum/ directory in its own standalone project, again. I'm going to try to incorporate it into my project next.
Edited by user
2020-08-03T15:42:38Z
|
Reason: Not specified