This repository has been archived on 2026-07-19. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
espocrm-base/js/lang.js
T
2023-12-31 10:49:50 +02:00

294 lines
9.7 KiB
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
/************************************************************************
* This file is part of EspoCRM.
*
* EspoCRM Open Source CRM application.
* Copyright (C) 2014-2024 Yurii Kuznietsov, Taras Machyshyn, Oleksii Avramenko
* Website: https://www.espocrm.com
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*
* The interactive user interfaces in modified source and object code versions
* of this program must display Appropriate Legal Notices, as required under
* Section 5 of the GNU Affero General Public License version 3.
*
* In accordance with Section 7(b) of the GNU Affero General Public License version 3,
* these Appropriate Legal Notices must retain the display of the "EspoCRM" word.
************************************************************************/
const fs = require('fs');
const nodePath = require('path');
const PO = require('pofile');
const os = require('os');
/**
* Builds language files from a PO file.
*/
class Lang
{
constructor (language, poPath, espoPath, onlyModuleName) {
this.baseLanguage = 'en_US';
this.language = language;
this.poPath = poPath;
this.ignoreList = [
'Global.options.language',
];
this.espoPath = espoPath;
if (this.espoPath.slice(-1) !== '/') {
this.espoPath += '/';
}
this.moduleList = ['Crm'];
if (onlyModuleName) {
this.moduleList = [onlyModuleName];
}
let dirNames = this.dirNames = {};
let coreDir = this.espoPath + 'application/Espo/Resources/i18n/' + this.baseLanguage + '/';
let dirs = [coreDir];
dirNames[coreDir] = 'application/Espo/Resources/i18n/' + this.language + '/';
let installDir = this.espoPath + 'install/core/i18n/' + this.baseLanguage + '/';
dirs.push(installDir);
dirNames[installDir] = 'install/core/i18n/' + this.language + '/';
let templatesDir = this.espoPath + 'application/Espo/Core/Templates/i18n/' + this.baseLanguage + '/';
dirs.push(templatesDir);
dirNames[templatesDir] = 'application/Espo/Core/Templates/i18n/' + this.language + '/';
if (onlyModuleName) {
dirs = [];
}
this.moduleList.forEach(moduleName => {
let path1 = this.espoPath + 'application/Espo/Modules/' + moduleName;
let path2 = this.espoPath + 'custom/Espo/Modules/' + moduleName;
let baseDir = fs.existsSync(path1) ? path1 : path2;
let dir = baseDir + '/Resources/i18n/' + this.baseLanguage + '/';
dirs.push(dir);
dirNames[dir] = fs.existsSync(path1) ?
'application/Espo/Modules/' + moduleName + '/Resources/i18n/' + this.language + '/' :
'custom/Espo/Modules/' + moduleName + '/Resources/i18n/' + this.language + '/';
});
this.moduleList.forEach(moduleName => {
let dir = this.espoPath + 'application/Espo/Modules/' + moduleName + '/Resources/i18n/' +
this.baseLanguage + '/';
dirs.push(dir);
dirNames[dir] = 'application/Espo/Modules/' + moduleName +
'/Resources/i18n/' + this.language + '/';
});
this.dirs = dirs;
this.isWin = /^win/.test(os.platform());
}
escape (string) {
return string.replace(/[-\/\\^$*+?.()|[\]{}]/g, '\\$&');
}
run () {
let translationData = {};
let dirs = this.dirs;
const isWin = this.isWin;
const language = this.language;
PO.load(this.poPath, (err, po) => {
if (err) {
throw new Error("Could not parse " + this.poPath + ".");
}
po.items.forEach(item => {
if (!item.msgctxt) {
return;
}
//let key = item.msgctxt + '__' + item.msgid;
let file = item.msgctxt.split('.')[0];
let path = item.msgctxt.split('.').slice(1);
let o = {
stringOriginal: item.msgid,
stringTranslated: item.msgstr[0],
context: item.msgctxt,
file: file,
path: path,
};
translationData[file] = translationData[file] || [];
translationData[file].push(o);
});
dirs.forEach(path =>{
let resDirPath = this.dirNames[path];
let resPath = this.espoPath + 'build/' + language + '/' + resDirPath;
if (!fs.existsSync(resPath)) {
let d = '';
resPath.split('/').forEach(f =>{
if (!f) {
return;
}
if (isWin) {
d = nodePath.join(d, f);
} else {
d += '/' + f;
}
if (!fs.existsSync(d)) {
fs.mkdirSync(d);
}
});
}
let list = fs.readdirSync(path);
list.forEach(fileName => {
let filePath = path + fileName;
let resFilePath = resPath + '/' + fileName;
let contents = fs.readFileSync(filePath, 'utf8');
let fileKey = fileName.split('.')[0];
let fileObject = JSON.parse(contents);
let targetFileObject = {};
if (!(fileKey in translationData)) {
return;
}
translationData[fileKey].forEach(item => {
let isArray = false;
let isMet = true;
let c = fileObject;
let path = item.path.slice(0);
if (
this.baseLanguage !== this.language &&
~this.ignoreList.indexOf(fileKey + '.' + path.join('.'))
) {
return;
}
for (let i in item.path) {
let key = item.path[i];
if (key in c) {
c = c[key];
if (Array.isArray(c)) {
isArray = true;
break;
}
} else {
isMet = false;
}
}
let pathList = [];
if (isMet) {
if (!isArray) {
isMet = false;
for (let k in c) {
if (c[k] === item.stringOriginal) {
let p = path.slice(0);
p.push(k);
pathList.push(p);
isMet = true;
}
}
} else {
pathList.push(path);
}
}
if (!isMet) {
return;
}
let targetValue = item.stringTranslated;
if (targetValue === '') {
return;
}
else {
if (item.stringOriginal === item.stringTranslated) {
return;
}
}
if (isArray) {
try {
targetValue = JSON.parse('[' + targetValue + ']');
} catch (e) {
targetValue = null;
}
}
if (targetValue == null) {
return;
}
pathList.forEach(path => {
let c = targetFileObject;
path.forEach((pathKey, i) => {
if (i < path.length - 1) {
c[pathKey] = c[pathKey] || {};
c = c[pathKey];
} else {
c[pathKey] = targetValue;
}
});
});
});
contents = JSON.stringify(targetFileObject, null, ' ');
if (fs.existsSync(resFilePath)) {
fs.unlinkSync(resFilePath);
}
fs.writeFileSync(resFilePath, contents);
});
});
});
}
}
module.exports = Lang;