remove tx not used

pull/1783/head
Audric Ackermann 4 years ago
parent e5a60af93f
commit a547922e01
No known key found for this signature in database
GPG Key ID: 999F434D76324AD4

@ -1,8 +0,0 @@
[main]
host = https://www.transifex.com
[signal-desktop.messagesjson-electron]
file_filter = _locales/<lang>/messages.json
source_file = _locales/en/messages.json
source_lang = en
type = CHROME

@ -145,12 +145,6 @@ module.exports = grunt => {
}, },
}, },
exec: { exec: {
'tx-pull-new': {
cmd: 'tx pull -a --minimum-perc=80',
},
'tx-pull': {
cmd: 'tx pull',
},
transpile: { transpile: {
cmd: 'yarn 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) { function updateLocalConfig(update) {
const environment = process.env.SIGNAL_ENV || 'development'; const environment = process.env.SIGNAL_ENV || 'development';
const configPath = `config/local-${environment}.json`; const configPath = `config/local-${environment}.json`;
@ -426,7 +397,6 @@ module.exports = grunt => {
.then(done); .then(done);
}); });
grunt.registerTask('tx', ['exec:tx-pull-new', 'exec:tx-pull', 'locale-patch']);
grunt.registerTask('dev', ['default', 'watch']); grunt.registerTask('dev', ['default', 'watch']);
grunt.registerTask('test', ['unit-tests']); grunt.registerTask('test', ['unit-tests']);
grunt.registerTask('date', ['gitinfo', 'getExpireTime']); grunt.registerTask('date', ['gitinfo', 'getExpireTime']);

Loading…
Cancel
Save