@diondesigns it worked by calling the functions in this order:
load_textdomain() // The specific mo file with overrides
load_plugin_textdomain() // Point to the plugin's languages/ folder
Example code if is helpful for someone else:
function your_language_domain_init()
{
// Load override language file first
load_textdomain(
'plugin-text-domain',
'path/to/file.mo'
);
// Loads translated strings from plugin's languages/ folder
load_plugin_textdomain(
'plugin-text-domain',
null,
dirname(plugin_basename(__FILE__)) . '/languages/'
);
}
add_action( 'init', 'your_language_domain_init' );
____
Thanks for your help!