Fix setting lang codes directly to xe object, not xe.lang

This commit is contained in:
Kijin Sung 2025-05-23 20:51:36 +09:00
parent dbd46edcc2
commit 0be03f216f
8 changed files with 46 additions and 46 deletions

View file

@ -102,7 +102,7 @@ CKEDITOR.plugins.add('rx_paste', {
* Display an error message.
*/
const displayError = function(type, message) {
alert(window.xe.msg_file_upload_error + ' (Type ' + type + ")\n" + message);
alert(Rhymix.lang('msg_file_upload_error') + ' (Type ' + type + ")\n" + message);
};
}