From 4354ee7ba1c6ac9a9567944ae6169b1664e0ea8a Mon Sep 17 00:00:00 2001 From: Mohamed Bassem Date: Sun, 17 Nov 2024 00:33:28 +0000 Subject: feature: Add i18n support. Fixes #57 (#635) * feature(web): Add basic scaffolding for i18n * refactor: Switch most of the app's strings to use i18n strings * fix: Remove unused i18next-resources-for-ts command * Add user setting * More translations * Drop the german translation for now --- apps/web/components/ui/action-confirming-dialog.tsx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'apps/web/components/ui') diff --git a/apps/web/components/ui/action-confirming-dialog.tsx b/apps/web/components/ui/action-confirming-dialog.tsx index cfd38fc3..e624d287 100644 --- a/apps/web/components/ui/action-confirming-dialog.tsx +++ b/apps/web/components/ui/action-confirming-dialog.tsx @@ -8,6 +8,7 @@ import { DialogTitle, DialogTrigger, } from "@/components/ui/dialog"; +import { useTranslation } from "@/lib/i18n/client"; import { Button } from "./button"; @@ -26,6 +27,7 @@ export default function ActionConfirmingDialog({ actionButton: (setDialogOpen: (open: boolean) => void) => React.ReactNode; children?: React.ReactNode; }) { + const { t } = useTranslation(); const [customIsOpen, setCustomIsOpen] = useState(false); const [isDialogOpen, setDialogOpen] = [ userIsOpen ?? customIsOpen, @@ -42,7 +44,7 @@ export default function ActionConfirmingDialog({ {actionButton(setDialogOpen)} -- cgit v1.2.3-70-g09d2