Initial Commit

This commit is contained in:
OleSTEEP 2023-12-29 23:09:55 +03:00
commit ec5c71b3ac
1712 changed files with 1767257 additions and 0 deletions

View file

@ -0,0 +1,22 @@
(function ($) {
const Alias_getTextData = $.getTextData;
$.getTextData = function (file, name, language) {
// Set Default Language
if (language === undefined) { language = this._language; }
if (!this._data[language].text[file][name])
return data = {
faceset: "",
faceindex: 0,
background: 0,
position: 2,
text: "This message doesn't exist " + file + ' ' + name + ' ' + language
};
// Return Text Data
return Alias_getTextData.call(this, file, name, language);
};
})(LanguageManager);