diff --git a/public/locales/de-DE/translation.json b/public/locales/de-DE/translation.json index ab1b27c..76724e3 100644 --- a/public/locales/de-DE/translation.json +++ b/public/locales/de-DE/translation.json @@ -14,7 +14,8 @@ "defaultSuccess": "Erfolgreich übernommen!", "loading": "Lädt...", "actionNotUndoable": "Diese Aktion kann nicht rückgängig gemacht werden!", - "copyError": "Konnte nicht in Zwischenable kopieren. Bitte kopiere den Text manuell." + "copyError": "Konnte nicht in Zwischenable kopieren. Bitte kopiere den Text manuell.", + "experimentalFeature": "Diese Funktion ist experimentell und kann Fehler verursachen." }, "routes": { diff --git a/public/locales/en-US/translation.json b/public/locales/en-US/translation.json index cabe0cd..bcb6f13 100644 --- a/public/locales/en-US/translation.json +++ b/public/locales/en-US/translation.json @@ -14,7 +14,8 @@ "defaultSuccess": "Success!", "loading": "Loading...", "actionNotUndoable": "This action cannot be undone!", - "copyError": "Copying to clipboard did not work. Please copy the text manually." + "copyError": "Copying to clipboard did not work. Please copy the text manually.", + "experimentalFeature": "This is an experimental feature." }, "routes": { diff --git a/src/route-widgets/SettingsRoute/AliasesPreferencesForm.tsx b/src/route-widgets/SettingsRoute/AliasesPreferencesForm.tsx index 58338d8..e9bd7c0 100644 --- a/src/route-widgets/SettingsRoute/AliasesPreferencesForm.tsx +++ b/src/route-widgets/SettingsRoute/AliasesPreferencesForm.tsx @@ -7,6 +7,7 @@ import React, {ReactElement, useContext} from "react" import {useMutation} from "@tanstack/react-query" import { + Alert, Checkbox, Collapse, FormControlLabel, @@ -220,6 +221,12 @@ export default function AliasesPreferencesForm(): ReactElement { {(formik.touched.proxyImages && formik.errors.proxyImages) || t("relations.alias.settings.proxyImages.helperText")} + + {t("general.experimentalFeature")} + + + {t("general.experimentalFeature")} +