forked from MapComplete/MapComplete
		
	
		
			
				
	
	
		
			46 lines
		
	
	
		
			No EOL
		
	
	
		
			1.2 KiB
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			46 lines
		
	
	
		
			No EOL
		
	
	
		
			1.2 KiB
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
import * as fs from "fs";
 | 
						|
import {Utils} from "../Utils";
 | 
						|
 | 
						|
function isTranslation(tr: any): boolean {
 | 
						|
    for (const key in tr) {
 | 
						|
        if (typeof tr[key] !== "string") {
 | 
						|
            return false;
 | 
						|
        }
 | 
						|
    }
 | 
						|
    return true;
 | 
						|
}
 | 
						|
 | 
						|
function transformTranslation(obj: any, depth = 1) {
 | 
						|
 | 
						|
    if (isTranslation(obj)) {
 | 
						|
        return `new Translation( ${JSON.stringify(obj)} )`
 | 
						|
    }
 | 
						|
 | 
						|
    let values = ""
 | 
						|
    for (const key in obj) {
 | 
						|
        if(key === "#"){
 | 
						|
            continue;
 | 
						|
        }
 | 
						|
        if(key.match("^[a-zA-Z0-9_]*$") === null){
 | 
						|
            throw "Invalid character in key: "+key
 | 
						|
        }
 | 
						|
        values += (Utils.Times((_) => "  ", depth)) + key + ": " + transformTranslation(obj[key], depth + 1) + ",\n"
 | 
						|
    }
 | 
						|
    return `{${values}}`;
 | 
						|
 | 
						|
}
 | 
						|
 | 
						|
function genTranslations() {
 | 
						|
    const translations = JSON.parse(fs.readFileSync("./assets/translations.json", "utf-8"))
 | 
						|
    const transformed = transformTranslation(translations);
 | 
						|
 | 
						|
    let module = `import {Translation} from "../../UI/i18n/Translation"\n\nexport default class CompiledTranslations {\n\n`;
 | 
						|
    module += " public static t = " + transformed;
 | 
						|
    module += "}"
 | 
						|
 | 
						|
    fs.writeFileSync("./assets/generated/CompiledTranslations.ts", module);
 | 
						|
 | 
						|
 | 
						|
}
 | 
						|
 | 
						|
genTranslations() |