Foreign Language not Showing in Help Panel

So you've created your connected language folders and have content in them that you can see in the Console, you've updated the application.properties file and translated the guide property files, but still the Help Panel shows the same content that you see for the default language.

Did you update the Embedded Code?

If not, follow the steps listed below:

Instructions

JavaScript:
Add the following line to the Advanced Script:
iridize.lang = document.documentElement.lang == "en" ? "--" : document.documentElement.lang.toLowerCase();In JS 

Add the following line to the Config.js:
iridize.lang = document.documentElement.lang == 'en' ? '--' : document.documentElement.lang.toLowerCase();

Fusion Embed:
Add the following line to the Custom Script:
iridize.lang = document.documentElement.lang == "en" ? "--" : document.documentElement.lang.toLowerCase();