diff --git a/src/components/SyncConflictModal.svelte b/src/components/SyncConflictModal.svelte index fd17a4e1..8e24ea6e 100644 --- a/src/components/SyncConflictModal.svelte +++ b/src/components/SyncConflictModal.svelte @@ -51,6 +51,9 @@ - {numberFormat.format(remoteSize)} KB
{$t('sync.lastModified')}: {remoteFormatted}
+ {#if remoteSize / localSize < 0.3} +{$t('sync.smallSizeWarning')}
+ {/if} @@ -66,6 +69,9 @@ - {numberFormat.format(localSize)} KB{$t('sync.lastModified')}: {localFormatted}
+ {#if localSize / remoteSize < 0.3} +{$t('sync.smallSizeWarning')}
+ {/if} diff --git a/src/locales/en.json b/src/locales/en.json index b75e1d39..15d4285c 100644 --- a/src/locales/en.json +++ b/src/locales/en.json @@ -761,7 +761,8 @@ "useLocalData": "Use Local Browser Data", "download": "Download Both Data", "lastModified": "Last modified", - "or": "OR" + "or": "OR", + "smallSizeWarning": "CAREFUL, THE SIZE IS MUCH SMALLER!" }, "footer": { "affliate": "Paimon.moe is not affiliated with HoYoverse.",