1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-06-15 23:00:36 +02:00

we do not want localization for logging output

/ref https://discourse.joplinapp.org/t/message-in-log-file-translated-by-mistake/4198?u=tessus
This commit is contained in:
Helmut K. C. Tessarek
2019-11-07 16:35:04 -05:00
parent 4e72a8f3a5
commit 40dfb730dc

View File

@ -266,7 +266,7 @@ class Synchronizer {
if (!options) options = {};
if (this.state() != 'idle') {
let error = new Error(_('Synchronisation is already in progress. State: %s', this.state()));
let error = new Error(sprintf('Synchronisation is already in progress. State: %s', this.state()));
error.code = 'alreadyStarted';
throw error;
}