Arto Nieminen
Maintainer
Every now and then plugins need to change the way how Moodle behaves. Changes in the behavior may however cause the existing translations to become inconsistent with the new behavior. This plugin makes it possible for plugins to override the existing translations regardless if they're bundled with Moodle or they're originated from a community plugin.
Installation/local/string_override/ directoryEnable the string manager in config.php with:
$CFG->customstringmanager = 'local_string_override_manager';
auth_changepasswordhelp_expl/lang/en/auth.php<type>/<your_plugin>/lang/<lang_code>/<translation_file>.phplocal/lazydog/lang/en/auth.phpAdd the string identifier to the file using the standard translation file syntax
$string['auth_changepasswordhelp_expl'] = 'Your custom translation here';