v3: localization fixes, char counters & limits on all text fields, ux fixes

This commit is contained in:
khannurien
2026-04-03 19:47:37 +00:00
parent 0ce80398a4
commit a69788c15b
48 changed files with 1133 additions and 305 deletions

View File

@@ -1,6 +1,6 @@
import { useEffect, useState } from "react";
import { Link, useLocation, useNavigate, useParams } from "react-router";
import { t } from "@lingui/core/macro"
import { t } from "@lingui/core/macro";
import { Trans } from "@lingui/react/macro";
import { dumpUrl } from "../utils/urls.ts";
import { AddToPlaylistModal } from "../components/AddToPlaylistModal.tsx";
@@ -190,7 +190,9 @@ export function Dump() {
if (dumpState.status === "loading") {
return (
<PageShell>
<p className="page-loading"><Trans>Loading dump</Trans></p>
<p className="page-loading">
<Trans>Loading dump</Trans>
</p>
</PageShell>
);
}
@@ -315,7 +317,9 @@ export function Dump() {
<Trans>Edit</Trans>
</Link>
)}
<Link to="/"><Trans> Back to all dumps</Trans></Link>
<Link to="/">
<Trans> Back to all dumps</Trans>
</Link>
</div>
{/* Comments */}