Hi David,
Sometimes I would like to edit a certain translated string directory after reading Moodle code.
For example, reading the following "blocks/private_files/block_private_files.php" code and would like to change the translated string "areauserpersonal" on lang file "repository.php".
class block_private_files extends block_base {
function init() {
$this->title = get_string('areauserpersonal', 'repository');
}
Is there any good way to do this?
Mits