2020-09-27 15:10:11 +03:00
|
|
|
#!/usr/bin/env node
|
|
|
|
|
|
|
|
// [start-readme]
|
|
|
|
//
|
|
|
|
// This is a convenience script for replacing the contents of translated
|
|
|
|
// files with the English content from their corresponding source file.
|
|
|
|
//
|
|
|
|
// It's intended to be a workaround to temporarily bypass Crowdin parser bugs
|
2020-10-16 22:16:56 +03:00
|
|
|
// while we wait for translators to fix them.
|
2020-09-27 15:10:11 +03:00
|
|
|
//
|
|
|
|
// Usage:
|
2020-10-16 22:16:56 +03:00
|
|
|
// script/reset-translated-file.js <filename>
|
2020-09-27 15:10:11 +03:00
|
|
|
//
|
2020-10-16 22:16:56 +03:00
|
|
|
// Examples:
|
2020-09-27 15:10:11 +03:00
|
|
|
//
|
2020-10-16 22:16:56 +03:00
|
|
|
// $ script/reset-translated-file.js translations/es-XL/content/actions/index.md
|
2020-09-27 15:10:11 +03:00
|
|
|
//
|
|
|
|
// [end-readme]
|
|
|
|
|
2021-07-29 23:28:30 +03:00
|
|
|
import program from 'commander'
|
|
|
|
import { execSync } from 'child_process'
|
|
|
|
import assert from 'assert'
|
|
|
|
import fs from 'fs'
|
|
|
|
import path from 'path'
|
|
|
|
import chalk from 'chalk'
|
|
|
|
|
2021-02-09 18:11:12 +03:00
|
|
|
program
|
|
|
|
.description('reset translated files')
|
2021-07-15 00:35:01 +03:00
|
|
|
.option(
|
|
|
|
'-m, --prefer-main',
|
|
|
|
'Reset file to the translated file, try using the file from `main` branch first, if not found (usually due to renaming), fall back to English source.'
|
|
|
|
)
|
2021-02-09 18:11:12 +03:00
|
|
|
.parse(process.argv)
|
|
|
|
|
2021-03-26 22:21:45 +03:00
|
|
|
const resetToEnglishSource = (translationFilePath) => {
|
2021-07-15 00:35:01 +03:00
|
|
|
assert(
|
|
|
|
translationFilePath.startsWith('translations/'),
|
|
|
|
'path argument must be in the format `translations/<lang>/path/to/file`'
|
|
|
|
)
|
2021-03-26 22:21:45 +03:00
|
|
|
assert(fs.existsSync(translationFilePath), `file does not exist: ${translationFilePath}`)
|
|
|
|
|
|
|
|
const relativePath = translationFilePath.split(path.sep).slice(2).join(path.sep)
|
|
|
|
const englishFile = path.join(process.cwd(), relativePath)
|
|
|
|
assert(fs.existsSync(englishFile), `file does not exist: ${englishFile}`)
|
|
|
|
|
|
|
|
// replace file with English source
|
|
|
|
const englishContent = fs.readFileSync(englishFile, 'utf8')
|
|
|
|
fs.writeFileSync(translationFilePath, englishContent)
|
|
|
|
console.log('-> reverted to English: %s', path.relative(process.cwd(), translationFilePath))
|
|
|
|
}
|
|
|
|
|
2021-02-09 18:11:12 +03:00
|
|
|
const [pathArg] = program.args
|
2020-10-16 22:16:56 +03:00
|
|
|
assert(pathArg, 'first arg must be a target filename')
|
|
|
|
|
|
|
|
// Is the arg a fully-qualified path?
|
2021-07-15 00:35:01 +03:00
|
|
|
const relativePath = fs.existsSync(pathArg) ? path.relative(process.cwd(), pathArg) : pathArg
|
2020-10-16 22:16:56 +03:00
|
|
|
|
2021-05-19 20:32:47 +03:00
|
|
|
if (program.opts().preferMain) {
|
2021-03-26 22:21:45 +03:00
|
|
|
try {
|
|
|
|
execSync(`git checkout main -- ${relativePath}`, { stdio: 'pipe' })
|
|
|
|
console.log('-> reverted to file from main branch: %s', relativePath)
|
|
|
|
} catch (e) {
|
|
|
|
if (e.message.includes('pathspec')) {
|
2021-07-15 00:35:01 +03:00
|
|
|
console.warn(
|
|
|
|
chalk.red(
|
|
|
|
`cannot find ${relativePath} in main branch (likely because it was renamed); falling back to English source file.`
|
|
|
|
)
|
|
|
|
)
|
2021-03-26 22:21:45 +03:00
|
|
|
resetToEnglishSource(relativePath)
|
|
|
|
} else {
|
|
|
|
console.warn(e.message)
|
|
|
|
}
|
2021-02-09 18:11:12 +03:00
|
|
|
}
|
2021-03-26 22:21:45 +03:00
|
|
|
} else {
|
|
|
|
resetToEnglishSource(relativePath)
|
2021-02-09 18:11:12 +03:00
|
|
|
}
|