web: move all strings to i18n & improve a11y
- omnibox is now fully usable with a screen reader - back button is now interpreted as such - subtext now accepts line breaks
This commit is contained in:
@@ -1,9 +1,11 @@
|
||||
<script>
|
||||
export let click;
|
||||
import { t } from "$lib/i18n/translations";
|
||||
import IconX from '@tabler/icons-svelte/IconX.svelte';
|
||||
|
||||
export let click;
|
||||
</script>
|
||||
|
||||
<button id="clear-button" on:click={click}>
|
||||
<button id="clear-button" on:click={click} aria-label={$t("a11y.save.clearInput")}>
|
||||
<IconX color="var(--secondary)" size="16px"/>
|
||||
</button>
|
||||
|
||||
|
||||
@@ -1,46 +1,53 @@
|
||||
<script lang="ts">
|
||||
import '@fontsource-variable/noto-sans-mono';
|
||||
import "@fontsource-variable/noto-sans-mono";
|
||||
|
||||
import API from "$lib/api";
|
||||
import { device } from '$lib/device';
|
||||
import { device } from "$lib/device";
|
||||
import { t } from "$lib/i18n/translations";
|
||||
|
||||
export let url: string;
|
||||
|
||||
$: buttonText = '>>';
|
||||
$: buttonText = ">>";
|
||||
$: buttonAltText = $t('a11y.save.download');
|
||||
$: isDisabled = false;
|
||||
|
||||
const changeDownloadButton = (state: string) => {
|
||||
isDisabled = true;
|
||||
switch(state) {
|
||||
switch (state) {
|
||||
case "think":
|
||||
buttonText = '...';
|
||||
buttonText = "...";
|
||||
buttonAltText = $t('a11y.save.downloadThink');
|
||||
break;
|
||||
case "check":
|
||||
buttonText = '..?';
|
||||
buttonText = "..?";
|
||||
buttonAltText = $t('a11y.save.downloadCheck');
|
||||
break;
|
||||
case "done":
|
||||
buttonText = '>>>';
|
||||
buttonText = ">>>";
|
||||
buttonAltText = $t('a11y.save.downloadDone');
|
||||
break;
|
||||
case "error":
|
||||
buttonText = '!!';
|
||||
buttonText = "!!";
|
||||
buttonAltText = $t('a11y.save.downloadError');
|
||||
break;
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
const restoreDownloadButton = () => {
|
||||
setTimeout(() => {
|
||||
buttonText = '>>';
|
||||
buttonText = ">>";
|
||||
isDisabled = false;
|
||||
}, 2500)
|
||||
}
|
||||
buttonAltText = $t('a11y.save.download');
|
||||
}, 2500);
|
||||
};
|
||||
|
||||
const downloadFile = (url: string) => {
|
||||
if (device.is.iOS) {
|
||||
return navigator?.share({ url }).catch(() => {});
|
||||
} else {
|
||||
return window.open(url, '_blank');
|
||||
return window.open(url, "_blank");
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
// alerts are temporary, we don't have an error popup yet >_<
|
||||
export const download = async (link: string) => {
|
||||
@@ -52,7 +59,7 @@
|
||||
changeDownloadButton("error");
|
||||
restoreDownloadButton();
|
||||
|
||||
return alert("couldn't access the api")
|
||||
return alert("couldn't access the api");
|
||||
}
|
||||
|
||||
if (response.status === "error" || response.status === "rate-limit") {
|
||||
@@ -89,7 +96,12 @@
|
||||
};
|
||||
</script>
|
||||
|
||||
<button id="download-button" disabled={isDisabled} on:click={() => download(url)}>
|
||||
<button
|
||||
id="download-button"
|
||||
disabled={isDisabled}
|
||||
on:click={() => download(url)}
|
||||
aria-label={buttonAltText}
|
||||
>
|
||||
<span id="download-state">{buttonText}</span>
|
||||
</button>
|
||||
|
||||
@@ -120,7 +132,8 @@
|
||||
|
||||
#download-state {
|
||||
font-size: 24px;
|
||||
font-family: "Noto Sans Mono Variable", "Noto Sans Mono", "IBM Plex Mono", monospace;
|
||||
font-family: "Noto Sans Mono Variable", "Noto Sans Mono",
|
||||
"IBM Plex Mono", monospace;
|
||||
font-weight: 400;
|
||||
|
||||
text-align: center;
|
||||
|
||||
@@ -1,9 +1,11 @@
|
||||
<script lang="ts">
|
||||
import { t } from "$lib/i18n/translations";
|
||||
|
||||
export let sectionTitle: string;
|
||||
</script>
|
||||
|
||||
<section id="settings-section">
|
||||
<div id="settings-section-title">{sectionTitle}</div>
|
||||
<div id="settings-section-title">{$t(`settings.section.${sectionTitle}`)}</div>
|
||||
<div id="settings-section-categories">
|
||||
<slot></slot>
|
||||
</div>
|
||||
|
||||
@@ -1,6 +1,8 @@
|
||||
<script lang="ts">
|
||||
import { page } from "$app/stores";
|
||||
|
||||
import { t } from "$lib/i18n/translations";
|
||||
|
||||
import IconChevronRight from "@tabler/icons-svelte/IconChevronRight.svelte";
|
||||
|
||||
export let tabName: string;
|
||||
@@ -20,7 +22,7 @@
|
||||
<div class="tab-icon" style="background: var(--{iconColor})">
|
||||
<slot></slot>
|
||||
</div>
|
||||
<span>{tabName}</span>
|
||||
<span>{$t(`settings.page.${tabName}`)}</span>
|
||||
</div>
|
||||
<div class="settings-tab-chevron">
|
||||
<IconChevronRight />
|
||||
|
||||
@@ -13,6 +13,7 @@
|
||||
align-items: center;
|
||||
padding: calc(var(--padding) * 2 - 2px);
|
||||
}
|
||||
|
||||
@media screen and (max-width: 535px) {
|
||||
#cobalt-logo {
|
||||
display: none;
|
||||
|
||||
@@ -46,6 +46,27 @@ export const config: Config = {
|
||||
await import(`$i18n/en/a11y/meowbalt.json`)
|
||||
).default,
|
||||
},
|
||||
{
|
||||
locale: 'en',
|
||||
key: 'settings',
|
||||
loader: async () => (
|
||||
await import(`$i18n/en/settings.json`)
|
||||
).default,
|
||||
},
|
||||
{
|
||||
locale: 'en',
|
||||
key: 'general',
|
||||
loader: async () => (
|
||||
await import(`$i18n/en/general.json`)
|
||||
).default,
|
||||
},
|
||||
{
|
||||
locale: 'en',
|
||||
key: 'a11y.general',
|
||||
loader: async () => (
|
||||
await import(`$i18n/en/a11y/general.json`)
|
||||
).default,
|
||||
},
|
||||
|
||||
{
|
||||
locale: 'ru',
|
||||
@@ -82,6 +103,20 @@ export const config: Config = {
|
||||
await import(`$i18n/ru/a11y/meowbalt.json`)
|
||||
).default,
|
||||
},
|
||||
{
|
||||
locale: 'ru',
|
||||
key: 'general',
|
||||
loader: async () => (
|
||||
await import(`$i18n/ru/general.json`)
|
||||
).default,
|
||||
},
|
||||
{
|
||||
locale: 'ru',
|
||||
key: 'a11y.general',
|
||||
loader: async () => (
|
||||
await import(`$i18n/ru/a11y/general.json`)
|
||||
).default,
|
||||
},
|
||||
],
|
||||
};
|
||||
|
||||
|
||||
@@ -297,5 +297,6 @@
|
||||
color: var(--gray);
|
||||
line-height: 1.4;
|
||||
padding: 0 var(--padding);
|
||||
white-space: pre-line;
|
||||
}
|
||||
</style>
|
||||
|
||||
@@ -1,10 +1,12 @@
|
||||
<script>
|
||||
import { t } from "$lib/i18n/translations";
|
||||
|
||||
import Omnibox from "$components/save/Omnibox.svelte";
|
||||
import MeowbaltLoaf from "$components/meowbalt/MeowbaltLoaf.svelte";
|
||||
</script>
|
||||
|
||||
<svelte:head>
|
||||
<title>cobalt</title>
|
||||
<title>{$t("general.cobalt")}</title>
|
||||
</svelte:head>
|
||||
|
||||
<div id="cobalt-save-container" class="center-column-container">
|
||||
@@ -13,7 +15,7 @@
|
||||
<Omnibox />
|
||||
</main>
|
||||
<div id="terms-note">
|
||||
by continuing you agree to terms and ethics of use
|
||||
{$t("save.termsNote")}
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
@@ -1,10 +1,12 @@
|
||||
<script>
|
||||
import { t } from "$lib/i18n/translations";
|
||||
|
||||
import Placeholder from "$components/misc/Placeholder.svelte";
|
||||
</script>
|
||||
|
||||
<svelte:head>
|
||||
<title>
|
||||
cobalt: about
|
||||
{$t("general.cobalt")}: {$t("tabs.about")}
|
||||
</title>
|
||||
</svelte:head>
|
||||
|
||||
|
||||
@@ -1,10 +1,12 @@
|
||||
<script>
|
||||
import { t } from "$lib/i18n/translations";
|
||||
|
||||
import Placeholder from "$components/misc/Placeholder.svelte";
|
||||
</script>
|
||||
|
||||
<svelte:head>
|
||||
<title>
|
||||
cobalt: donate
|
||||
{$t("general.cobalt")}: {$t("tabs.donate")}
|
||||
</title>
|
||||
</svelte:head>
|
||||
|
||||
|
||||
@@ -1,6 +1,8 @@
|
||||
<script lang="ts">
|
||||
import { page } from "$app/stores";
|
||||
|
||||
import { t } from "$lib/i18n/translations";
|
||||
|
||||
import SettingsTab from "$components/settings/SettingsTab.svelte";
|
||||
import SettingsSection from "$components/settings/SettingsSection.svelte";
|
||||
|
||||
@@ -16,7 +18,7 @@
|
||||
|
||||
$: currentPageTitle = $page.url.pathname.split("/").at(-1);
|
||||
$: stringPageTitle =
|
||||
currentPageTitle !== "settings" ? `/ ${currentPageTitle}` : "";
|
||||
currentPageTitle !== "settings" ? ` / ${$t(`settings.page.${currentPageTitle}`)}` : "";
|
||||
|
||||
$: isMobile = screenWidth <= 750;
|
||||
$: isHome = $page.url.pathname === `/settings`;
|
||||
@@ -24,7 +26,7 @@
|
||||
|
||||
<svelte:head>
|
||||
<title>
|
||||
cobalt: settings {stringPageTitle}
|
||||
{$t("general.cobalt")}: {$t("tabs.settings")}{stringPageTitle}
|
||||
</title>
|
||||
</svelte:head>
|
||||
|
||||
@@ -35,19 +37,26 @@
|
||||
<div id="settings-header" class:back-visible={!isHome && isMobile}>
|
||||
{#if isMobile}
|
||||
{#if !isHome}
|
||||
<a class="back-button" href="/settings">
|
||||
<a
|
||||
class="back-button"
|
||||
href="/settings"
|
||||
role="button"
|
||||
aria-label={$t("a11y.general.back")}
|
||||
>
|
||||
<IconChevronLeft />
|
||||
</a>
|
||||
{/if}
|
||||
<h3 id="settings-page-title" aria-level="1">
|
||||
settings
|
||||
{$t("tabs.settings")}
|
||||
{#if !isHome}
|
||||
<span class="title-slash"> / </span>
|
||||
{currentPageTitle}
|
||||
{$t(`settings.page.${currentPageTitle}`)}
|
||||
{/if}
|
||||
</h3>
|
||||
{:else}
|
||||
<h2 id="settings-page-title" aria-level="1">settings</h2>
|
||||
<h2 id="settings-page-title" aria-level="1">
|
||||
{$t("tabs.settings")}
|
||||
</h2>
|
||||
{/if}
|
||||
</div>
|
||||
<nav id="settings-navigation" class:visible-mobile={isMobile && isHome}>
|
||||
|
||||
@@ -1,44 +1,54 @@
|
||||
<script lang="ts">
|
||||
import { t } from "$lib/i18n/translations";
|
||||
|
||||
import { themeOptions } from "$lib/types/settings";
|
||||
|
||||
import SettingsCategory from "$components/settings/SettingsCategory.svelte";
|
||||
import Switcher from "$components/buttons/Switcher.svelte";
|
||||
import SettingsButton from "$components/buttons/SettingsButton.svelte";
|
||||
import SettingsToggle from "$components/buttons/SettingsToggle.svelte";
|
||||
|
||||
import { themeOptions } from "$lib/types/settings";
|
||||
import LanguageDropdown from "$components/settings/LanguageDropdown.svelte";
|
||||
</script>
|
||||
|
||||
<SettingsCategory title="theme">
|
||||
<SettingsCategory
|
||||
title={$t("settings.theme")}
|
||||
description={$t("settings.theme.description")}
|
||||
>
|
||||
<Switcher big={true}>
|
||||
{#each themeOptions as value}
|
||||
<SettingsButton settingContext="appearance" settingId="theme" settingValue={value}>
|
||||
{value}
|
||||
<SettingsButton
|
||||
settingContext="appearance"
|
||||
settingId="theme"
|
||||
settingValue={value}
|
||||
>
|
||||
{$t(`settings.theme.${value}`)}
|
||||
</SettingsButton>
|
||||
{/each}
|
||||
</Switcher>
|
||||
</SettingsCategory>
|
||||
|
||||
<SettingsCategory title="accessibility">
|
||||
<SettingsCategory title={$t("settings.accessibility")}>
|
||||
<SettingsToggle
|
||||
settingContext="accessibility"
|
||||
settingId="reduceTransparency"
|
||||
title="reduce visual transparency"
|
||||
description="disables blur effects and reduces transparency of surfaces."
|
||||
title={$t("settings.accessibility.transparency.title")}
|
||||
description={$t("settings.accessibility.transparency.description")}
|
||||
/>
|
||||
<SettingsToggle
|
||||
settingContext="accessibility"
|
||||
settingId="reduceAnimations"
|
||||
title="reduce animations"
|
||||
description="replaces rapid animations with smooth transitions."
|
||||
title={$t("settings.accessibility.animations.title")}
|
||||
description={$t("settings.accessibility.animations.description")}
|
||||
/>
|
||||
</SettingsCategory>
|
||||
|
||||
<SettingsCategory title="language">
|
||||
<SettingsCategory title={$t("settings.language")}>
|
||||
<LanguageDropdown />
|
||||
<SettingsToggle
|
||||
settingContext="appearance"
|
||||
settingId="autoLanguage"
|
||||
title="use default browser language"
|
||||
description="automatically picks the best language for you. if preferred browser language isn't available, english is used instead."
|
||||
title={$t("settings.language.auto.title")}
|
||||
description={$t("settings.language.auto.description")}
|
||||
/>
|
||||
</SettingsCategory>
|
||||
|
||||
@@ -1,42 +1,42 @@
|
||||
<script lang="ts">
|
||||
import { t } from "$lib/i18n/translations";
|
||||
|
||||
import { audioFormatOptions } from "$lib/types/settings";
|
||||
|
||||
import SettingsCategory from "$components/settings/SettingsCategory.svelte";
|
||||
import Switcher from "$components/buttons/Switcher.svelte";
|
||||
import SettingsButton from "$components/buttons/SettingsButton.svelte";
|
||||
import SettingsToggle from "$components/buttons/SettingsToggle.svelte";
|
||||
|
||||
import { audioFormatOptions } from "$lib/types/settings";
|
||||
|
||||
const audioDescription = `cobalt converts every format but "best", therefore all formats but "best" will be lossy.`;
|
||||
</script>
|
||||
|
||||
<SettingsCategory
|
||||
title="preferred audio format"
|
||||
description="{audioDescription}"
|
||||
title={$t("settings.audio.format")}
|
||||
description={$t("settings.audio.format.description")}
|
||||
>
|
||||
<Switcher big={true}>
|
||||
{#each audioFormatOptions as value}
|
||||
<SettingsButton settingContext="save" settingId="audioFormat" settingValue={value}>
|
||||
{value}
|
||||
{$t(`settings.audio.format.${value}`)}
|
||||
</SettingsButton>
|
||||
{/each}
|
||||
</Switcher>
|
||||
|
||||
</SettingsCategory>
|
||||
|
||||
<SettingsCategory title="youtube">
|
||||
<SettingsCategory title={$t("settings.audio.youtube.dub")}>
|
||||
<SettingsToggle
|
||||
settingContext="save"
|
||||
settingId="youtubeDubBrowserLang"
|
||||
title="use browser language for dubbed videos"
|
||||
description="works even if cobalt ui isn't translated to your language."
|
||||
title={$t("settings.audio.youtube.dub.title")}
|
||||
description={$t("settings.audio.youtube.dub.description")}
|
||||
/>
|
||||
</SettingsCategory>
|
||||
|
||||
<SettingsCategory title="tiktok">
|
||||
<SettingsCategory title={$t("settings.audio.tiktok.original")}>
|
||||
<SettingsToggle
|
||||
settingContext="save"
|
||||
settingId="tiktokFullAudio"
|
||||
title="use original sound"
|
||||
description="downloads original sound used in the post without any additional changes by the post's author."
|
||||
title={$t("settings.audio.tiktok.original.title")}
|
||||
description={$t("settings.audio.tiktok.original.description")}
|
||||
/>
|
||||
</SettingsCategory>
|
||||
|
||||
@@ -1,40 +1,42 @@
|
||||
<script lang="ts">
|
||||
import { t } from "$lib/i18n/translations";
|
||||
|
||||
import { filenameStyleOptions } from "$lib/types/settings";
|
||||
|
||||
import SettingsCategory from "$components/settings/SettingsCategory.svelte";
|
||||
import Switcher from "$components/buttons/Switcher.svelte";
|
||||
import SettingsButton from "$components/buttons/SettingsButton.svelte";
|
||||
import SettingsToggle from "$components/buttons/SettingsToggle.svelte";
|
||||
|
||||
import { filenameStyleOptions } from "$lib/types/settings";
|
||||
</script>
|
||||
|
||||
<SettingsCategory
|
||||
title="filename style"
|
||||
description="very cool description for every style. bla bla bla."
|
||||
title={$t("settings.metadata.filename")}
|
||||
description={$t("settings.metadata.filename.description")}
|
||||
>
|
||||
<Switcher big={true}>
|
||||
{#each filenameStyleOptions as value}
|
||||
<SettingsButton settingContext="save" settingId="filenameStyle" settingValue={value}>
|
||||
{value}
|
||||
{$t(`settings.metadata.filename.${value}`)}
|
||||
</SettingsButton>
|
||||
{/each}
|
||||
</Switcher>
|
||||
|
||||
</SettingsCategory>
|
||||
|
||||
<SettingsCategory title="file metadata">
|
||||
<SettingsCategory title={$t("settings.metadata.file")}>
|
||||
<SettingsToggle
|
||||
settingContext="save"
|
||||
settingId="disableMetadata"
|
||||
title="disable file metadata"
|
||||
description="cobalt won't add title, artist, and other info to the file."
|
||||
title={$t("settings.metadata.disable.title")}
|
||||
description={$t("settings.metadata.disable.description")}
|
||||
/>
|
||||
</SettingsCategory>
|
||||
|
||||
<SettingsCategory title="saving method">
|
||||
<SettingsCategory title={$t("settings.saving.method")}>
|
||||
<SettingsToggle
|
||||
settingContext="save"
|
||||
settingId="downloadPopup"
|
||||
title="ask how to save"
|
||||
description="cobalt will offer you several ways to save the file instead of opening it in a new tab."
|
||||
title={$t("settings.saving.ask.title")}
|
||||
description={$t("settings.saving.ask.description")}
|
||||
/>
|
||||
</SettingsCategory>
|
||||
|
||||
@@ -1,24 +1,23 @@
|
||||
<script lang="ts">
|
||||
import SettingsCategory from "$components/settings/SettingsCategory.svelte";
|
||||
import Switcher from "$components/buttons/Switcher.svelte";
|
||||
import SettingsButton from "$components/buttons/SettingsButton.svelte";
|
||||
import SettingsToggle from "$components/buttons/SettingsToggle.svelte";
|
||||
import { t } from "$lib/i18n/translations";
|
||||
|
||||
import { videoQualityOptions } from "$lib/types/settings";
|
||||
import { youtubeVideoCodecOptions } from "$lib/types/settings";
|
||||
|
||||
const videoDescription = `if preferred quality isn’t available, closest one is picked instead.`;
|
||||
const codecDescription = `if preferred codec isn’t available, next best is picked instead.`;
|
||||
import SettingsCategory from "$components/settings/SettingsCategory.svelte";
|
||||
import Switcher from "$components/buttons/Switcher.svelte";
|
||||
import SettingsButton from "$components/buttons/SettingsButton.svelte";
|
||||
import SettingsToggle from "$components/buttons/SettingsToggle.svelte";
|
||||
</script>
|
||||
|
||||
<SettingsCategory
|
||||
title="preferred video quality"
|
||||
description="{videoDescription}"
|
||||
title={$t("settings.video.quality")}
|
||||
description={$t("settings.video.quality.description")}
|
||||
>
|
||||
<Switcher big={true}>
|
||||
{#each videoQualityOptions as value}
|
||||
<SettingsButton settingContext="save" settingId="videoQuality" settingValue={value}>
|
||||
{value}
|
||||
{$t(`settings.video.quality.${value}`)}
|
||||
</SettingsButton>
|
||||
{/each}
|
||||
</Switcher>
|
||||
@@ -26,33 +25,33 @@
|
||||
</SettingsCategory>
|
||||
|
||||
<SettingsCategory
|
||||
title="preferred youtube codec"
|
||||
description="{codecDescription}"
|
||||
title={$t("settings.video.youtube.codec")}
|
||||
description={$t("settings.video.youtube.codec.description")}
|
||||
>
|
||||
<Switcher big={true}>
|
||||
{#each youtubeVideoCodecOptions as value}
|
||||
<SettingsButton settingContext="save" settingId="youtubeVideoCodec" settingValue={value}>
|
||||
{value}
|
||||
{$t(`settings.video.youtube.codec.${value}`)}
|
||||
</SettingsButton>
|
||||
{/each}
|
||||
</Switcher>
|
||||
|
||||
</SettingsCategory>
|
||||
|
||||
<SettingsCategory title="twitter">
|
||||
<SettingsCategory title={$t("settings.video.twitter.gif")}>
|
||||
<SettingsToggle
|
||||
settingContext="save"
|
||||
settingId="twitterGif"
|
||||
title="convert looping videos to GIF"
|
||||
description="GIF conversion is very lossy, end result may be low quality."
|
||||
title={$t("settings.video.twitter.gif.title")}
|
||||
description={$t("settings.video.twitter.gif.description")}
|
||||
/>
|
||||
</SettingsCategory>
|
||||
|
||||
<SettingsCategory title="tiktok">
|
||||
<SettingsCategory title={$t("settings.video.tiktok.h265")}>
|
||||
<SettingsToggle
|
||||
settingContext="save"
|
||||
settingId="tiktokH265"
|
||||
title="prefer HEVC/H265 format"
|
||||
description="allows 1080p video downloading at cost of compatibility."
|
||||
title={$t("settings.video.tiktok.h265.title")}
|
||||
description={$t("settings.video.tiktok.h265.description")}
|
||||
/>
|
||||
</SettingsCategory>
|
||||
|
||||
@@ -1,10 +1,12 @@
|
||||
<script>
|
||||
import { t } from "$lib/i18n/translations";
|
||||
|
||||
import Placeholder from "$components/misc/Placeholder.svelte";
|
||||
</script>
|
||||
|
||||
<svelte:head>
|
||||
<title>
|
||||
cobalt: updates
|
||||
{$t("general.cobalt")}: {$t("tabs.donate")}
|
||||
</title>
|
||||
</svelte:head>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user