Skip to content

fix: chiese environment not work #286

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
fix: chiese environment not work
  • Loading branch information
mousheng committed Jul 17, 2023
commit 19076052b8482794c23a2bf8c40e04d7b2fe85bb
2 changes: 1 addition & 1 deletion client/packages/lowcoder-core/lib/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -11270,7 +11270,7 @@ var globalMessages = Object.fromEntries(Object.entries(getDataByLocale(localeDat
}));
var Translator = /** @class */ (function () {
function Translator(fileData, filterLocales, locales) {
var _a = getDataByLocale(fileData, "", filterLocales, locales), data = _a.data, language = _a.language;
var _a = getDataByLocale(fileData, "", filterLocales, locales), data = _.merge( fileData.en, _a.data), language = _a.language;
this.messages = Object.assign({}, data, globalMessages);
this.language = language;
this.trans = this.trans.bind(this);
Expand Down
Loading