diff options
| author | Fuwn <[email protected]> | 2024-01-10 23:55:29 -0800 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2024-01-10 23:55:29 -0800 |
| commit | 896b35a79697e5ac5259b88745717a7650597998 (patch) | |
| tree | ab302f7d94a1d218cb8f3c4ef7b71edbf609b8eb /src/lib/Settings | |
| parent | feat(attributions): clearer wording (diff) | |
| download | due.moe-896b35a79697e5ac5259b88745717a7650597998.tar.xz due.moe-896b35a79697e5ac5259b88745717a7650597998.zip | |
feat(settings): clearer wording
Diffstat (limited to 'src/lib/Settings')
| -rw-r--r-- | src/lib/Settings/Categories/Cache.svelte | 6 | ||||
| -rw-r--r-- | src/lib/Settings/Categories/Calculation.svelte | 6 | ||||
| -rw-r--r-- | src/lib/Settings/Categories/Debug.svelte | 4 | ||||
| -rw-r--r-- | src/lib/Settings/Categories/Display.svelte | 5 |
4 files changed, 10 insertions, 11 deletions
diff --git a/src/lib/Settings/Categories/Cache.svelte b/src/lib/Settings/Categories/Cache.svelte index 9affabc5..07d7cdce 100644 --- a/src/lib/Settings/Categories/Cache.svelte +++ b/src/lib/Settings/Categories/Cache.svelte @@ -3,13 +3,13 @@ </script> <small style="opacity: 50%;"> - All caches are stored in your browser's <code>localStorage</code>. Clearing your + All caches are stored in your browser's <code>localStorage</code>. Clearing <a href="https://due.moe">due.moe</a>'s site data will clear these caches too. </small> <p /> -<span>Re-cache media lists every</span> +<span>Re-cache AniList media lists every</span> <input type="number" bind:value={$settings.cacheMinutes} @@ -25,7 +25,7 @@ minutes <br /> -<span>Re-cache manga chapter counts every</span> +<span>Re-cache manga data every</span> <input type="number" bind:value={$settings.cacheMangaMinutes} diff --git a/src/lib/Settings/Categories/Calculation.svelte b/src/lib/Settings/Categories/Calculation.svelte index 9f7947c0..36e33f1e 100644 --- a/src/lib/Settings/Categories/Calculation.svelte +++ b/src/lib/Settings/Categories/Calculation.svelte @@ -24,8 +24,8 @@ Out-of-date volume warnings display an alert when there is a mismatch between the chapter progress and number of volumes you have completed for a given title. <br /> - For example, an alert would be shown if you have tracked up to Vol. 5 Ch. 50, but only have 3 volumes - saved when you should have 4. + For example, an alert would be shown if you have tracked a manga up to Vol. 5 Ch. 50, but only have + 3 volumes saved when you should have 4. <br /> @@ -43,7 +43,7 @@ Smart chapter count calculation uses statistical methods to estimate the number of chapters available for a given title based on user submitted progress.<br />Having this setting enabled will disable light novel chapter counts and will disable smart chapter count calculation for - titles which you have higher progress than officially known. + titles which you have higher progress than officially reported. </SettingHint> </SettingCheckboxToggle> diff --git a/src/lib/Settings/Categories/Debug.svelte b/src/lib/Settings/Categories/Debug.svelte index 6b9ae37e..5f6be96b 100644 --- a/src/lib/Settings/Categories/Debug.svelte +++ b/src/lib/Settings/Categories/Debug.svelte @@ -12,6 +12,6 @@ <button on:click={() => localStorage.clear()}>Clear <code>localStorage</code></button> <SettingHint lineBreak> - Resets all of your settings to their default values and clears both media lists and manga chapter - caches + Resets all of your settings to their default values and clears both AniList media list and manga + data caches </SettingHint> diff --git a/src/lib/Settings/Categories/Display.svelte b/src/lib/Settings/Categories/Display.svelte index a1d16630..4dbe356d 100644 --- a/src/lib/Settings/Categories/Display.svelte +++ b/src/lib/Settings/Categories/Display.svelte @@ -67,7 +67,7 @@ <SettingCheckboxToggle setting="displayLimitListHeight" text="Limit panel area to screen height" /> <SettingCheckboxToggle setting="displayHoverCover" - text="Show media cover when hovering media panel entries" + text="Show media cover when hovering on supported media titles" /> <SettingCheckboxToggle setting="displaySocialButton" text="Show social button for anime" /> <SettingCheckboxToggle @@ -143,6 +143,5 @@ Helper </select> Outbound links <SettingHint lineBreak> - This option is in full respect to anime outbound links. If LiveChart.me or AnimeSchedule is - chosen, manga links will default to AniList. + If LiveChart.me or AnimeSchedule is chosen, manga links will default to AniList. </SettingHint> |