diff --git a/public/locales/en/settings/customization/accessibility.json b/public/locales/en/settings/customization/accessibility.json
deleted file mode 100644
index ce1086664..000000000
--- a/public/locales/en/settings/customization/accessibility.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "disablePulse": {
- "label": "Disable ping pulse",
- "description": "By default, ping indicators in Homarr will pulse. This may be irritating. This slider will deactivate the animation"
- },
- "replaceIconsWithDots": {
- "label": "Replace ping dots with icons",
- "description": "For colorblind users, ping dots may be unrecognizable. This will replace indicators with icons"
- },
- "alert": "Are you missing something? We'll gladly extend the accessibility of Homarr"
-}
\ No newline at end of file
diff --git a/public/locales/en/user/preferences.json b/public/locales/en/user/preferences.json
new file mode 100644
index 000000000..ae9fda8bb
--- /dev/null
+++ b/public/locales/en/user/preferences.json
@@ -0,0 +1,20 @@
+{
+ "accessibility": {
+ "disablePulse": {
+ "label": "Disable ping pulse",
+ "description": "By default, ping indicators in Homarr will pulse. This may be irritating. This slider will deactivate the animation"
+ },
+ "replaceIconsWithDots": {
+ "label": "Replace ping dots with icons",
+ "description": "For colorblind users, ping dots may be unrecognizable. This will replace indicators with icons"
+ }
+ },
+ "localization": {
+ "language": {
+ "label": "Language"
+ },
+ "firstDayOfWeek": {
+ "label": "First day of the week"
+ }
+ }
+}
\ No newline at end of file
diff --git a/src/components/Settings/Customization/Accessibility/AccessibilitySettings.tsx b/src/components/Settings/Customization/Accessibility/AccessibilitySettings.tsx
index 2a5bdddfe..618a45b0d 100644
--- a/src/components/Settings/Customization/Accessibility/AccessibilitySettings.tsx
+++ b/src/components/Settings/Customization/Accessibility/AccessibilitySettings.tsx
@@ -1,10 +1,9 @@
-import { Alert, Stack, Switch } from '@mantine/core';
-import { IconInfoCircle } from '@tabler/icons-react';
+import { Stack, Switch } from '@mantine/core';
import { useTranslation } from 'react-i18next';
import { useFormContext } from '~/pages/user/preferences';
export const AccessibilitySettings = () => {
- const { t } = useTranslation('settings/customization/accessibility');
+ const { t } = useTranslation('user/preferences');
const form = useFormContext();
@@ -21,10 +20,6 @@ export const AccessibilitySettings = () => {
description={t('replaceIconsWithDots.description')}
{...form.getInputProps('replaceDotsWithIcons', { type: 'checkbox' })}
/>
-
-