1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-11-29 22:48:10 +02:00

Desktop: TinyMCE: Added localisation support

This commit is contained in:
Laurent Cozic
2020-05-03 23:55:41 +00:00
parent 20960dbd47
commit f5aec137bd
61 changed files with 19785 additions and 10 deletions

View File

@@ -0,0 +1,12 @@
const fs = require('fs-extra');
async function main() {
const sourceDir = `${__dirname}/../../Modules/TinyMCE/langs`;
const destDir = `${__dirname}/../node_modules/tinymce/langs`;
console.info(`Copying ${sourceDir} => ${destDir}`);
await fs.remove(destDir);
await fs.mkdirp(destDir);
await fs.copy(sourceDir, destDir);
}
module.exports = main;