diff --git a/frontend/src/locale/src/de.json b/frontend/src/locale/src/de.json index eb2783e7..b70a72af 100644 --- a/frontend/src/locale/src/de.json +++ b/frontend/src/locale/src/de.json @@ -445,5 +445,11 @@ }, "view-only": { "defaultMessage": "Nur anschauen" + }, + "wildcards-not-permitted": { + "defaultMessage": "Wildcards not permitted for this type" + }, + "wildcards-not-supported": { + "defaultMessage": "Wildcards not supported for this CA" } } diff --git a/frontend/src/locale/src/en.json b/frontend/src/locale/src/en.json index ec12290f..45dbc131 100644 --- a/frontend/src/locale/src/en.json +++ b/frontend/src/locale/src/en.json @@ -623,6 +623,9 @@ "status.ok": { "defaultMessage": "OK" }, + "status.provided": { + "defaultMessage": "Provided" + }, "status.ready": { "defaultMessage": "Ready" }, @@ -724,5 +727,11 @@ }, "view-only": { "defaultMessage": "View Only" + }, + "wildcards-not-permitted": { + "defaultMessage": "Wildcards not permitted for this type" + }, + "wildcards-not-supported": { + "defaultMessage": "Wildcards not supported for this CA" } } diff --git a/frontend/src/locale/src/fa.json b/frontend/src/locale/src/fa.json index 207f6d2a..a9ec09e9 100644 --- a/frontend/src/locale/src/fa.json +++ b/frontend/src/locale/src/fa.json @@ -448,5 +448,11 @@ }, "view-only": { "defaultMessage": "مشاهده فقط" + }, + "wildcards-not-permitted": { + "defaultMessage": "Wildcards not permitted for this type" + }, + "wildcards-not-supported": { + "defaultMessage": "Wildcards not supported for this CA" } } diff --git a/frontend/src/pages/Login/index.tsx b/frontend/src/pages/Login/index.tsx index eafde648..d97f949e 100644 --- a/frontend/src/pages/Login/index.tsx +++ b/frontend/src/pages/Login/index.tsx @@ -12,8 +12,7 @@ import { useColorModeValue, useToast, } from "@chakra-ui/react"; -import { LocalePicker, PrettyButton } from "components"; -import { ThemeSwitcher } from "components/ThemeSwitcher"; +import { LocalePicker, PrettyButton, ThemeSwitcher } from "components"; import { useAuthState } from "context"; import { Formik, Form, Field } from "formik"; import { intl } from "locale";