aboutsummaryrefslogtreecommitdiffstats
path: root/apps/web/components/settings/DeleteApiKey.tsx
diff options
context:
space:
mode:
authorMohamed Bassem <me@mbassem.com>2024-11-17 00:33:28 +0000
committerGitHub <noreply@github.com>2024-11-17 00:33:28 +0000
commit4354ee7ba1c6ac9a9567944ae6169b1664e0ea8a (patch)
treee27c9070930514d77582bae00b3350274116179c /apps/web/components/settings/DeleteApiKey.tsx
parent9f2c7be23769bb0f4102736a683710b1a1939661 (diff)
downloadkarakeep-4354ee7ba1c6ac9a9567944ae6169b1664e0ea8a.tar.zst
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
Diffstat (limited to 'apps/web/components/settings/DeleteApiKey.tsx')
-rw-r--r--apps/web/components/settings/DeleteApiKey.tsx4
1 files changed, 3 insertions, 1 deletions
diff --git a/apps/web/components/settings/DeleteApiKey.tsx b/apps/web/components/settings/DeleteApiKey.tsx
index e2334c44..4efb7ea8 100644
--- a/apps/web/components/settings/DeleteApiKey.tsx
+++ b/apps/web/components/settings/DeleteApiKey.tsx
@@ -5,6 +5,7 @@ import { ActionButton } from "@/components/ui/action-button";
import ActionConfirmingDialog from "@/components/ui/action-confirming-dialog";
import { Button } from "@/components/ui/button";
import { toast } from "@/components/ui/use-toast";
+import { useTranslation } from "@/lib/i18n/client";
import { api } from "@/lib/trpc";
import { Trash } from "lucide-react";
@@ -15,6 +16,7 @@ export default function DeleteApiKey({
name: string;
id: string;
}) {
+ const { t } = useTranslation();
const router = useRouter();
const mutator = api.apiKeys.revoke.useMutation({
onSuccess: () => {
@@ -43,7 +45,7 @@ export default function DeleteApiKey({
mutator.mutate({ id }, { onSuccess: () => setDialogOpen(false) })
}
>
- Delete
+ {t("actions.delete")}
</ActionButton>
)}
>