MDL-69050 lang: Rename the filetypesnotwhitelisted string

Rename the string identifier to filetypesnotallowed, copy all the
existing translations in AMOS and deprecate the original string to be
eventually removed.

AMOS BEGIN
 CPY [filetypesnotwhitelisted,core_form],[filetypesnotallowed,core_form]
AMOS END
This commit is contained in:
David Mudrák
2020-09-24 19:32:40 +02:00
parent e840b14f4c
commit fd18dc14ff
4 changed files with 7 additions and 3 deletions
+1 -1
View File
@@ -11276,7 +11276,7 @@ class admin_setting_filetypes extends admin_setting_configtext {
} else {
$troublemakers = $this->util->get_not_whitelisted($data, $this->onlytypes);
return get_string('filetypesnotwhitelisted', 'core_form', implode(' ', $troublemakers));
return get_string('filetypesnotallowed', 'core_form', implode(' ', $troublemakers));
}
}