I18n admin (#22)

* New translation keys in en-US locale

* New translation keys in de-DE locale

* New translation keys in fr-FR locale

* New translation keys in it-IT locale

* New translation keys in pl-PL locale

* New translation keys in pt-PT locale

* New translation keys in tr-TR locale

* Add translation keys in app/admin

* Fix build

---------

Co-authored-by: Lokowitz <marvinlokowitz@gmail.com>
This commit is contained in:
vlalx 2025-05-17 19:04:19 +03:00 committed by GitHub
parent 96bfc3cf36
commit d2d84be99a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
27 changed files with 1028 additions and 306 deletions

View file

@ -56,16 +56,14 @@ import CopyTextBox from "@app/components/CopyTextBox";
import PermissionsSelectBox from "@app/components/PermissionsSelectBox";
import { useTranslations } from "next-intl";
const t = useTranslations();
const createFormSchema = z.object({
name: z
.string()
.min(2, {
message: t('nameMin', {len: 2})
message: "Name must be at least 2 characters."
})
.max(255, {
message: t('nameMax', {len: 255})
message: "Name must not be longer than 255 characters."
})
});
@ -80,7 +78,7 @@ const copiedFormSchema = z
return data.copied;
},
{
message: t('apiKeysConfirmCopy2'),
message: "You must confirm that you have copied the API key.",
path: ["copied"]
}
);
@ -113,6 +111,8 @@ export default function Page() {
}
});
const t = useTranslations();
async function onSubmit(data: CreateFormValues) {
setCreateLoading(true);
@ -125,7 +125,7 @@ export default function Page() {
.catch((e) => {
toast({
variant: "destructive",
title: t('apiKeysErrorCreate'),
title: "Error creating API key",
description: formatAxiosError(e)
});
});
@ -146,10 +146,10 @@ export default function Page() {
)
})
.catch((e) => {
console.error(t('apiKeysErrorSetPermission'), e);
console.error("Error setting permissions", e);
toast({
variant: "destructive",
title: t('apiKeysErrorSetPermission'),
title: "Error setting permissions",
description: formatAxiosError(e)
});
});
@ -191,7 +191,7 @@ export default function Page() {
router.push(`/admin/api-keys`);
}}
>
See All API Keys
{t('apiKeysSeeAll')}
</Button>
</div>