You've already forked joplin
mirror of
https://github.com/laurent22/joplin.git
synced 2025-11-29 22:48:10 +02:00
Button styling
This commit is contained in:
@@ -53,7 +53,7 @@ class Synchronizer {
|
||||
if (report.updatedRemote) lines.push(_('Updated remote items: %d.', report.updatedRemote));
|
||||
if (report.deleteLocal) lines.push(_('Deleted local items: %d.', report.deleteLocal));
|
||||
if (report.deleteRemote) lines.push(_('Deleted remote items: %d.', report.deleteRemote));
|
||||
if (report.state) lines.push(_('State: %s.', report.state));
|
||||
if (report.state) lines.push(_('State: %s.', report.state.replace(/_/g, ' ')));
|
||||
return lines;
|
||||
}
|
||||
|
||||
@@ -154,7 +154,7 @@ class Synchronizer {
|
||||
|
||||
let synchronizationId = time.unixMs().toString();
|
||||
|
||||
this.state_ = 'started';
|
||||
this.state_ = 'in_progress';
|
||||
|
||||
this.logSyncOperation('starting', null, null, 'Starting synchronization... [' + synchronizationId + ']');
|
||||
|
||||
|
||||
Reference in New Issue
Block a user