2018-03-02 23:00:01 -05:00
|
|
|
import * as fs from 'fs';
|
2018-03-01 09:19:59 -05:00
|
|
|
import * as _ from 'lodash';
|
|
|
|
import { DictEntry } from './dict-entry';
|
2018-03-02 23:00:01 -05:00
|
|
|
import { dirs } from './dirs';
|
|
|
|
import { listMarkdownFiles } from './extractor';
|
2018-03-02 22:01:57 -05:00
|
|
|
import { indentOf, normalizeLines, repeat } from './utils';
|
2018-03-01 09:19:59 -05:00
|
|
|
|
2018-03-02 19:13:52 -05:00
|
|
|
export const dict = require('./dict-3.json') as DictEntry[];
|
2018-03-01 09:19:59 -05:00
|
|
|
|
|
|
|
export function lookup(english: string, filename: RegExp = /.*/): DictEntry[] {
|
2018-03-03 08:05:33 -05:00
|
|
|
const entries = dict
|
2018-03-02 01:25:07 -05:00
|
|
|
.filter(entry => filename.test(entry.sourceFile))
|
|
|
|
.filter(entry => kernelText(entry.original) === kernelText(english));
|
|
|
|
return _.uniqBy(entries, 'translation');
|
|
|
|
}
|
|
|
|
|
|
|
|
export function kernelText(text: string): string {
|
2018-03-06 19:48:31 -05:00
|
|
|
return text
|
|
|
|
.replace(/[\s\n]+/g, '')
|
|
|
|
.replace(/\.$/g, '')
|
|
|
|
.trim();
|
2018-03-01 09:19:59 -05:00
|
|
|
}
|
2018-03-01 09:52:16 -05:00
|
|
|
|
|
|
|
export function translate(content: string): string[] {
|
2018-03-02 01:25:07 -05:00
|
|
|
const lines = normalizeLines(content)
|
|
|
|
.split(/\n+\s*\n+/);
|
2018-03-01 09:52:16 -05:00
|
|
|
return lines
|
|
|
|
.map(line => {
|
|
|
|
if (!line.trim()) {
|
|
|
|
return line;
|
|
|
|
}
|
2018-03-03 04:47:09 -05:00
|
|
|
const translations = lookup(line);
|
2018-03-01 09:52:16 -05:00
|
|
|
const indent = indentOf(line);
|
|
|
|
const padding = repeat(indent);
|
|
|
|
if (translations.length === 0) {
|
|
|
|
return line;
|
|
|
|
} else if (translations.length === 1) {
|
|
|
|
return line + '\n\n' + padding + translations[0].translation;
|
|
|
|
} else {
|
2018-03-03 04:53:33 -05:00
|
|
|
return line + '\n\n' + padding + translations[translations.length - 1].translation;
|
2018-03-01 09:52:16 -05:00
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
2018-03-02 23:00:01 -05:00
|
|
|
|
|
|
|
export function translateFile(sourceFile: string, targetFile: string): void {
|
|
|
|
const content = fs.readFileSync(sourceFile, 'utf-8');
|
|
|
|
const result = translate(content);
|
2018-03-06 20:41:45 -05:00
|
|
|
fs.writeFileSync(targetFile, result.join('\n\n').trim() + '\n', 'utf-8');
|
2018-03-02 23:00:01 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
export function translateDirectory(sourceDir: string, targetDir: string): void {
|
|
|
|
const files = listMarkdownFiles(sourceDir);
|
|
|
|
files.forEach(fileName => {
|
2018-03-03 04:47:09 -05:00
|
|
|
console.log('translating ...', fileName);
|
2018-03-02 23:00:01 -05:00
|
|
|
translateFile(fileName, fileName.replace(/^.*content-en\//, dirs.content));
|
2018-03-03 04:47:09 -05:00
|
|
|
console.log('translated ', fileName);
|
2018-03-02 23:00:01 -05:00
|
|
|
});
|
|
|
|
}
|