From 462ae005069f0cb182f1e2f56e7b4c35c04461e8 Mon Sep 17 00:00:00 2001 From: "johannes.vos" Date: Tue, 26 May 2026 14:49:10 +0200 Subject: [PATCH] feat(settings): move settings.json to src and remove example content --- public/settings.json | 55 ----------------------------- src/features/settings/settings.json | 3 ++ 2 files changed, 3 insertions(+), 55 deletions(-) delete mode 100644 public/settings.json create mode 100644 src/features/settings/settings.json diff --git a/public/settings.json b/public/settings.json deleted file mode 100644 index 8a87a57..0000000 --- a/public/settings.json +++ /dev/null @@ -1,55 +0,0 @@ -{ - "contents": [ - { - "name": "general", - "type": "section", - "i18n": "preferences.settings.sections.general.name", - "description": "preferences.settings.sections.general.description", - "content": [ - { - "type": "bool", - "name": "darkMode", - "i18n": "preferences.darkMode", - "default": true - }, - { - "type": "selection", - "name": "language", - "i18n": "preferences.settings.language", - "description": "preferences.settings.language.description", - "default": "en", - "allowMultiple": false, - "options": [ - { - "name": "en", - "i18n": "preferences.locale.languages.en" - }, - { - "name": "de", - "i18n": "preferences.locale.languages.de" - } - ] - }, - { - "type": "section", - "name": "exampleSection", - "description": "preferences.settings.sections.exampleSection.description", - "content": [ - { - "type": "number", - "name": "aNumber", - "i18n": "preferences.settings.sections.exampleSection.content.aNumber", - "default": 42 - } - ] - } - ] - }, - { - "name": "exampleStandaloneConfiguration", - "type": "bool", - "i18n": "preferences.settings.exampleStandalone.name", - "default": false - } - ] -} \ No newline at end of file diff --git a/src/features/settings/settings.json b/src/features/settings/settings.json new file mode 100644 index 0000000..1e36b85 --- /dev/null +++ b/src/features/settings/settings.json @@ -0,0 +1,3 @@ +{ + "contents": [] +} \ No newline at end of file