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

All: Minor tweaks regarding encryption

This commit is contained in:
Laurent Cozic
2017-01-29 19:29:34 +01:00
parent 685f541bb4
commit 0115e74163
9 changed files with 19 additions and 8 deletions

View File

@ -118,8 +118,12 @@ class ReportService {
for (let i = 0; i < disabledItems.length; i++) {
const row = disabledItems[i];
section.body.push(_('"%s": "%s"', row.item.title, row.syncInfo.sync_disabled_reason));
section.body.push(_('%s (%s): %s', row.item.title, row.item.id, row.syncInfo.sync_disabled_reason));
}
section.body.push('');
section.body.push(_('These items will remain on the device but will not be uploaded to the sync target. In order to find these items, either search for the title or the ID (which is displayed in brackets above).'));
sections.push(section);
}