feat: vertalingen

This commit is contained in:
laurejablonski 2025-03-29 12:01:07 +01:00
parent 3bf1c5b62e
commit e1f4d854c2
5 changed files with 14 additions and 3 deletions

View file

@ -52,7 +52,7 @@
const codeRules = [
(value: string | undefined) => {
if (value !== undefined && validate(value) && version(value) === 4) return true;
return "Invalid format.";
return t("invalidFormat");
},
];
// Submitting a code will send a request if the code is valid
@ -146,7 +146,7 @@
type="submit"
@click="submitCode"
block
>Submit</v-btn
>{{ t("submitCode") }}</v-btn
>
</v-form>
</v-sheet>