aboutsummaryrefslogtreecommitdiff
path: root/src/routes/settings/+page.svelte
diff options
context:
space:
mode:
authorFuwn <[email protected]>2024-02-12 09:24:40 -0800
committerFuwn <[email protected]>2024-02-12 09:24:40 -0800
commita737a7483d77a1a61cb0303a75697a09c157da71 (patch)
treefcebad9d6f2a923cde7b7ab20938160c2223c90c /src/routes/settings/+page.svelte
parentfeat(settings): settings sync category (diff)
downloaddue.moe-a737a7483d77a1a61cb0303a75697a09c157da71.tar.xz
due.moe-a737a7483d77a1a61cb0303a75697a09c157da71.zip
feat(settings): localise settings sync
Diffstat (limited to 'src/routes/settings/+page.svelte')
-rw-r--r--src/routes/settings/+page.svelte10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/routes/settings/+page.svelte b/src/routes/settings/+page.svelte
index f45fa5cd..b682cb39 100644
--- a/src/routes/settings/+page.svelte
+++ b/src/routes/settings/+page.svelte
@@ -103,10 +103,10 @@
});
}}
>
- Pull Remote Configuration
+ {$locale().settings.settingsSync.buttons.pull.title}
</button>
<SettingHint lineBreak>
- Enable settings sync and overwrite any local settings with your remote configuration
+ {$locale().settings.settingsSync.buttons.pull.hint}
</SettingHint>
<p />
<button
@@ -127,10 +127,10 @@
});
}}
>
- Push Local Configuration
+ {$locale().settings.settingsSync.buttons.push.title}
</button>
<SettingHint lineBreak>
- Enable settings sync and overwrite any remote configuration with your local settings
+ {$locale().settings.settingsSync.buttons.push.hint}
</SettingHint>
{:else}
<button
@@ -144,7 +144,7 @@
);
}}
>
- Disable &amp; Keep Local Configuration
+ {$locale().settings.settingsSync.buttons.disable}
</button>
{/if}
</Category>