We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1d25ba5 commit 3dfb8ddCopy full SHA for 3dfb8dd
1 file changed
frontend/viewer/src/project/SyncDialog.svelte
@@ -66,7 +66,7 @@
66
success: (result) => {
67
const fwdataChangesText = $plural(result.syncResult?.fwdataChanges ?? 0, {one: '# change', other: '# changes'});
68
const crdtChangesText = $plural(result.syncResult?.crdtChanges ?? 0, {one: '# change', other: '# changes'});
69
- return $t`${fwdataChangesText} synced to FieldWorks. ${crdtChangesText} synced to FieldWorks Lite.`;
+ return $t`Sync complete. ${fwdataChangesText} were applied to FieldWorks. ${crdtChangesText} were applied to FieldWorks Lite.`;
70
},
71
error: (error) => $t`Failed to synchronize.` + '\n' + (error as Error).message,
72
// TODO: Custom component that can expand or collapse the stacktrace
0 commit comments