load_plugin_textdomain needs to be called in the init hook. The plugin calls the function during setup() from the class constructor but not in a hook.
Function load_plugin_textdomain was called incorrectly. Attempted to load translations for the limit-login-attempts-reloaded domain too early. Translations should be loaded after the after_setup_theme action has fired, to ensure that the current user is already set up. (This message was added in version 6.7.0.)
load_plugin_textdomain
needs to be called in theinit
hook. The plugin calls the function duringsetup()
from the class constructor but not in a hook.