Also this is incorrect too
wp-content/plugins/guild-armory-roster/WoWArmoryTable.php:364
It has locale set to locale=de_DE
the get_classes method has
if($lang == “”)
$lang = get_locale();
I suggest making a method for all these other methods
function getLang($lang) {
return empty($lang) ? get_locale() : $lang;
}
Then just use $this->getLang() or $this->getLang($lang) wherever you need it