diff --git a/.tx/config b/.tx/config deleted file mode 100644 index e869d1a47..000000000 --- a/.tx/config +++ /dev/null @@ -1,8 +0,0 @@ -[main] -host = https://www.transifex.com - -[signal-desktop.messagesjson-electron] -file_filter = _locales//messages.json -source_file = _locales/en/messages.json -source_lang = en -type = CHROME diff --git a/Gruntfile.js b/Gruntfile.js index 86ac32056..bd8e01b9a 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -145,12 +145,6 @@ module.exports = grunt => { }, }, exec: { - 'tx-pull-new': { - cmd: 'tx pull -a --minimum-perc=80', - }, - 'tx-pull': { - cmd: 'tx pull', - }, transpile: { cmd: 'yarn transpile', }, @@ -189,29 +183,6 @@ module.exports = grunt => { } }); - // Transifex does not understand placeholders, so this task patches all non-en - // locales with missing placeholders - grunt.registerTask('locale-patch', () => { - const en = grunt.file.readJSON('_locales/en/messages.json'); - grunt.file.recurse('_locales', (abspath, rootdir, subdir, filename) => { - if (subdir === 'en' || filename !== 'messages.json') { - return; - } - const messages = grunt.file.readJSON(abspath); - - // eslint-disable-next-line no-restricted-syntax - for (const key in messages) { - if (en[key] !== undefined && messages[key] !== undefined) { - if (en[key].placeholders !== undefined && messages[key].placeholders === undefined) { - messages[key].placeholders = en[key].placeholders; - } - } - } - - grunt.file.write(abspath, `${JSON.stringify(messages, null, 4)}\n`); - }); - }); - function updateLocalConfig(update) { const environment = process.env.SIGNAL_ENV || 'development'; const configPath = `config/local-${environment}.json`; @@ -426,7 +397,6 @@ module.exports = grunt => { .then(done); }); - grunt.registerTask('tx', ['exec:tx-pull-new', 'exec:tx-pull', 'locale-patch']); grunt.registerTask('dev', ['default', 'watch']); grunt.registerTask('test', ['unit-tests']); grunt.registerTask('date', ['gitinfo', 'getExpireTime']);