1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-11-29 22:48:10 +02:00

Button styling

This commit is contained in:
Laurent Cozic
2017-07-16 00:30:54 +01:00
parent 12c163ef73
commit e2d426a986
3 changed files with 59 additions and 8 deletions

View File

@@ -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 + ']');