mirror of
https://github.com/movie-web/movie-web.git
synced 2024-11-11 04:55:07 +01:00
localize connectionsPart
This commit is contained in:
parent
63c509891e
commit
1161ecaca3
@ -107,7 +107,20 @@
|
|||||||
"title": "Captions"
|
"title": "Captions"
|
||||||
},
|
},
|
||||||
"connections": {
|
"connections": {
|
||||||
"title": "Connections"
|
"title": "Connections",
|
||||||
|
"workers": {
|
||||||
|
"label": "Use custom proxy workers",
|
||||||
|
"description": "To make the application function, all traffic is routed through proxies. Enable this if you want to bring your own workers.",
|
||||||
|
"urlLabel": "Worker URLs",
|
||||||
|
"emptyState": "No workers yet, add one below",
|
||||||
|
"urlPlaceholder": "https://",
|
||||||
|
"addButton": "Add new worker"
|
||||||
|
},
|
||||||
|
"server": {
|
||||||
|
"label": "Custom server",
|
||||||
|
"description": "To make the application function, all traffic is routed through proxies. Enable this if you want to bring your own workers.",
|
||||||
|
"urlLabel": "Custom server URL"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"faq": {
|
"faq": {
|
||||||
|
@ -1,4 +1,5 @@
|
|||||||
import { Dispatch, SetStateAction, useCallback } from "react";
|
import { Dispatch, SetStateAction, useCallback } from "react";
|
||||||
|
import { useTranslation } from "react-i18next";
|
||||||
|
|
||||||
import { Button } from "@/components/buttons/Button";
|
import { Button } from "@/components/buttons/Button";
|
||||||
import { Toggle } from "@/components/buttons/Toggle";
|
import { Toggle } from "@/components/buttons/Toggle";
|
||||||
@ -19,6 +20,7 @@ interface BackendEditProps {
|
|||||||
}
|
}
|
||||||
|
|
||||||
function ProxyEdit({ proxyUrls, setProxyUrls }: ProxyEditProps) {
|
function ProxyEdit({ proxyUrls, setProxyUrls }: ProxyEditProps) {
|
||||||
|
const { t } = useTranslation();
|
||||||
const add = useCallback(() => {
|
const add = useCallback(() => {
|
||||||
setProxyUrls((s) => [...(s ?? []), ""]);
|
setProxyUrls((s) => [...(s ?? []), ""]);
|
||||||
}, [setProxyUrls]);
|
}, [setProxyUrls]);
|
||||||
@ -46,10 +48,11 @@ function ProxyEdit({ proxyUrls, setProxyUrls }: ProxyEditProps) {
|
|||||||
<SettingsCard>
|
<SettingsCard>
|
||||||
<div className="flex justify-between items-center gap-4">
|
<div className="flex justify-between items-center gap-4">
|
||||||
<div className="my-3">
|
<div className="my-3">
|
||||||
<p className="text-white font-bold mb-3">Use custom proxy workers</p>
|
<p className="text-white font-bold mb-3">
|
||||||
|
{t("settings.connections.workers.label")}
|
||||||
|
</p>
|
||||||
<p className="max-w-[20rem] font-medium">
|
<p className="max-w-[20rem] font-medium">
|
||||||
To make the application function, all traffic is routed through
|
{t("settings.connections.workers.description")}
|
||||||
proxies. Enable this if you want to bring your own workers.
|
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
<div>
|
<div>
|
||||||
@ -62,11 +65,13 @@ function ProxyEdit({ proxyUrls, setProxyUrls }: ProxyEditProps) {
|
|||||||
{proxyUrls !== null ? (
|
{proxyUrls !== null ? (
|
||||||
<>
|
<>
|
||||||
<Divider marginClass="my-6 px-8 box-content -mx-8" />
|
<Divider marginClass="my-6 px-8 box-content -mx-8" />
|
||||||
<p className="text-white font-bold mb-3">Worker URLs</p>
|
<p className="text-white font-bold mb-3">
|
||||||
|
{t("settings.connections.workers.urlLabel")}
|
||||||
|
</p>
|
||||||
|
|
||||||
<div className="my-6 space-y-2 max-w-md">
|
<div className="my-6 space-y-2 max-w-md">
|
||||||
{(proxyUrls?.length ?? 0) === 0 ? (
|
{(proxyUrls?.length ?? 0) === 0 ? (
|
||||||
<p>No workers yet, add one below</p>
|
<p>{t("settings.connections.workers.emptyState")}</p>
|
||||||
) : null}
|
) : null}
|
||||||
{(proxyUrls ?? []).map((v, i) => (
|
{(proxyUrls ?? []).map((v, i) => (
|
||||||
<div
|
<div
|
||||||
@ -78,7 +83,10 @@ function ProxyEdit({ proxyUrls, setProxyUrls }: ProxyEditProps) {
|
|||||||
<AuthInputBox
|
<AuthInputBox
|
||||||
value={v}
|
value={v}
|
||||||
onChange={(val) => changeItem(i, val)}
|
onChange={(val) => changeItem(i, val)}
|
||||||
placeholder="https://"
|
placeholder={
|
||||||
|
t("settings.connections.workers.urlPlaceholder") ??
|
||||||
|
undefined
|
||||||
|
}
|
||||||
/>
|
/>
|
||||||
<button
|
<button
|
||||||
type="button"
|
type="button"
|
||||||
@ -92,7 +100,7 @@ function ProxyEdit({ proxyUrls, setProxyUrls }: ProxyEditProps) {
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<Button theme="purple" onClick={add}>
|
<Button theme="purple" onClick={add}>
|
||||||
Add new worker
|
{t("settings.connections.workers.addButton")}
|
||||||
</Button>
|
</Button>
|
||||||
</>
|
</>
|
||||||
) : null}
|
) : null}
|
||||||
@ -101,14 +109,16 @@ function ProxyEdit({ proxyUrls, setProxyUrls }: ProxyEditProps) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
function BackendEdit({ backendUrl, setBackendUrl }: BackendEditProps) {
|
function BackendEdit({ backendUrl, setBackendUrl }: BackendEditProps) {
|
||||||
|
const { t } = useTranslation();
|
||||||
return (
|
return (
|
||||||
<SettingsCard>
|
<SettingsCard>
|
||||||
<div className="flex justify-between items-center gap-4">
|
<div className="flex justify-between items-center gap-4">
|
||||||
<div className="my-3">
|
<div className="my-3">
|
||||||
<p className="text-white font-bold mb-3">Custom server</p>
|
<p className="text-white font-bold mb-3">
|
||||||
|
{t("settings.connections.workers.label")}
|
||||||
|
</p>
|
||||||
<p className="max-w-[20rem] font-medium">
|
<p className="max-w-[20rem] font-medium">
|
||||||
To make the application function, all traffic is routed through
|
{t("settings.connections.workers.description")}
|
||||||
proxies. Enable this if you want to bring your own workers.
|
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
<div>
|
<div>
|
||||||
@ -121,7 +131,9 @@ function BackendEdit({ backendUrl, setBackendUrl }: BackendEditProps) {
|
|||||||
{backendUrl !== null ? (
|
{backendUrl !== null ? (
|
||||||
<>
|
<>
|
||||||
<Divider marginClass="my-6 px-8 box-content -mx-8" />
|
<Divider marginClass="my-6 px-8 box-content -mx-8" />
|
||||||
<p className="text-white font-bold mb-3">Custom server URL</p>
|
<p className="text-white font-bold mb-3">
|
||||||
|
{t("settings.connections.workers.urlLabel")}
|
||||||
|
</p>
|
||||||
<AuthInputBox onChange={setBackendUrl} value={backendUrl ?? ""} />
|
<AuthInputBox onChange={setBackendUrl} value={backendUrl ?? ""} />
|
||||||
</>
|
</>
|
||||||
) : null}
|
) : null}
|
||||||
@ -130,9 +142,10 @@ function BackendEdit({ backendUrl, setBackendUrl }: BackendEditProps) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
export function ConnectionsPart(props: BackendEditProps & ProxyEditProps) {
|
export function ConnectionsPart(props: BackendEditProps & ProxyEditProps) {
|
||||||
|
const { t } = useTranslation();
|
||||||
return (
|
return (
|
||||||
<div>
|
<div>
|
||||||
<Heading1 border>Connections</Heading1>
|
<Heading1 border>{t("settings.connections.title")}</Heading1>
|
||||||
<div className="space-y-6">
|
<div className="space-y-6">
|
||||||
<ProxyEdit
|
<ProxyEdit
|
||||||
proxyUrls={props.proxyUrls}
|
proxyUrls={props.proxyUrls}
|
||||||
|
Loading…
Reference in New Issue
Block a user